From 1add7d381d67708fe4b85fee3a7022e361f704ce Mon Sep 17 00:00:00 2001
From: marijus <mario@localhost.localdomain>
Date: Wed, 11 Dec 2013 19:05:50 +0100
Subject: this saves notes on the fly. i think this is appropriate behavior for
 a notes widget. btw... one would get mad at oneself if noting something
 important and forget to save it. with this behavior one can at least get mad
 at the developer if something goes wrong :)

---
 view/tpl/notes.tpl | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

(limited to 'view')

diff --git a/view/tpl/notes.tpl b/view/tpl/notes.tpl
index 7300779f4..09932e545 100644
--- a/view/tpl/notes.tpl
+++ b/view/tpl/notes.tpl
@@ -1,13 +1,10 @@
 <div class="widget">
 <script>
-function notePost() {
-	$('#note-rotator').spin('tiny');
-	$.post('notes', { 'note_text' : $('#note-text').val() },function(data) { $('#note-rotator').spin(false); });
-}
+$("#note-text").live('input paste',function(e){
+	$.post('notes', { 'note_text' : $('#note-text').val() });
+});
 </script>
 
 <h3>{{$banner}}</h3>
 <textarea name="note_text" id="note-text">{{$text}}</textarea>
-<input type="submit" name="submit" id="note-save" value="{{$save}}" onclick="notePost(); return true;">
-<div id="note-rotator"></div>
 </div>
-- 
cgit v1.2.3


From 88761ec9ecf46dd3a3468fbff8a83651480c2a22 Mon Sep 17 00:00:00 2001
From: marijus <mario@localhost.localdomain>
Date: Wed, 11 Dec 2013 20:02:17 +0100
Subject: we dont use doubble tagging in /network and /channel anymore...
 remove it from /search as well

---
 view/tpl/search_item.tpl | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

(limited to 'view')

diff --git a/view/tpl/search_item.tpl b/view/tpl/search_item.tpl
index 3018fc747..c5acfa4a4 100755
--- a/view/tpl/search_item.tpl
+++ b/view/tpl/search_item.tpl
@@ -29,13 +29,7 @@
 		<div class="wall-item-content" id="wall-item-content-{{$item.id}}" >
 			<div class="wall-item-title" id="wall-item-title-{{$item.id}}">{{$item.title}}</div>
 			<div class="wall-item-title-end"></div>
-			<div class="wall-item-body" id="wall-item-body-{{$item.id}}" >{{$item.body}}
-				<div class="body-tag">
-				{{foreach $item.tags as $tag}}
-					<span class='tag'>{{$tag}}</span>
-				{{/foreach}}
-				</div>
-			</div>
+			<div class="wall-item-body" id="wall-item-body-{{$item.id}}" >{{$item.body}}</div>
 		</div>
 		<div class="wall-item-tools" id="wall-item-tools-{{$item.id}}">
 			<div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-{{$item.id}}" >
-- 
cgit v1.2.3


From dd7fea10c1b70534b76bc4d5ea044187cd4cb77b Mon Sep 17 00:00:00 2001
From: marijus <mario@localhost.localdomain>
Date: Wed, 11 Dec 2013 21:28:42 +0100
Subject: split out widgets.css

---
 view/css/widgets.css              |  98 +++++++++++++++++++++++++++++++++
 view/php/theme_init.php           |   1 +
 view/theme/redbasic/css/style.css | 112 +++++++++++---------------------------
 3 files changed, 132 insertions(+), 79 deletions(-)
 create mode 100644 view/css/widgets.css

(limited to 'view')

diff --git a/view/css/widgets.css b/view/css/widgets.css
new file mode 100644
index 000000000..3eb72eafc
--- /dev/null
+++ b/view/css/widgets.css
@@ -0,0 +1,98 @@
+.widget {
+	padding: 8px;
+	margin-top: 5px;
+}
+
+/* suggest */
+
+.suggest-widget-more {
+	margin-top: 10px;
+}
+
+/* follow */
+
+#side-follow-url {
+	margin-top: 5px;
+}
+
+#side-follow-submit {
+	margin-top: 15px;
+}
+
+/* notes */ 
+
+#note-text {
+	width: 190px;
+	max-width: 190px;
+	height: 150px;
+}
+
+#note-save {
+	margin-top: 10px;
+}
+
+/* saved searches */
+
+.saved-search-li {
+	margin-top: 3px;
+}
+
+.saved-search-li i {
+	opacity: 0;
+}
+
+.saved-search-li:hover i {
+	opacity: 1;
+}
+
+.savedsearchdrop {
+	opacity: 0;
+}
+
+/* fileas */
+
+.fileas-ul li {
+	margin-top: 10px;
+}
+
+.fileas-link {
+	margin-left: 24px;
+}
+
+.fileas-all {
+	margin-left: 0px;
+}
+
+/* posted date */
+
+#datebrowse-sidebar select {
+	margin-left: 25px;
+	opacity: 0.3;
+	filter:alpha(opacity=30);
+}
+
+#datebrowse-sidebar select:hover {
+	opacity: 1.0;
+	filter:alpha(opacity=100);
+}
+
+#posted-date-selector {
+	margin-left: 30px !important;
+	margin-top: 5px !important;
+	margin-right: 0px !important;
+	margin-bottom: 0px !important;
+}
+
+/* categories */
+
+.categories-ul li {
+	margin-top: 10px;
+}
+
+.categories-link {
+	margin-left: 24px;
+}
+
+.categories-all {
+	margin-left: 0px;
+}
diff --git a/view/php/theme_init.php b/view/php/theme_init.php
index a2024d658..e1625b3e5 100644
--- a/view/php/theme_init.php
+++ b/view/php/theme_init.php
@@ -13,6 +13,7 @@ head_add_css('library/colorbox/colorbox.css');
 // head_add_css('library/font_awesome/css/font-awesome.min.css');
 head_add_css('view/css/conversation.css');
 head_add_css('view/css/bootstrap-red.css');
+head_add_css('view/css/widgets.css');
 
 head_add_js('js/jquery.js');
 head_add_js('library/bootstrap/js/bootstrap.min.js');
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index e13bc1edb..d716680ce 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -331,7 +331,8 @@ footer {
 	margin-bottom: 10px;
 }
 
-.group-selected, .nets-selected, .fileas-selected, .categories-selected, .search-selected, .active {
+/*TODO: we should use .active class for all this, nets-selected probably obsolete */
+.group-selected, /* .nets-selected, */ .fileas-selected, .categories-selected, .search-selected, .active {
 	color: #444444 !important;
 }
 
@@ -671,36 +672,6 @@ footer {
     box-shadow: $shadowpx $shadowpx $shadowpx 0 #444444;
 }
 
-
-#datebrowse-sidebar select {
-    margin-left: 25px;
-    border-radius: $radiuspx;
-    -moz-border-radius: $radiuspx;
-    opacity: 0.3;
-    filter:alpha(opacity=30);
-}
-
-#datebrowse-sidebar select:hover {
-    opacity: 1.0;
-    filter:alpha(opacity=100);
-}
-
-#posted-date-selector {
-    margin-left: 30px !important;
-    margin-top: 5px !important;
-    margin-right: 0px !important;
-    margin-bottom: 0px !important;
-}
-
-#posted-date-selector:hover {
-    box-shadow: 4px 4px 3px 0 #444444;
-    margin-left: 25px !important;
-    margin-top: 0px !important;
-    margin-right: 5px !important;
-    margin-bottom: 5px !important;
-
-}
-
 #side-bar-photos-albums {
 	margin-top: 15px;
 }
@@ -777,17 +748,16 @@ footer {
 	width: 12px;
 }
 
-#sidebar-group-list li, 
-.saved-search-li {
+#sidebar-group-list li {
 	margin-top: 3px;
 }
 
-
-.nets-ul, .fileas-ul, .categories-ul {
+/* might be obsolete
+.nets-ul {
 	list-style-type: none;
 }
 
-.nets-ul li, .fileas-ul li, .categories-ul li {
+.nets-ul li {
 	margin-top: 10px;
 }
 
@@ -797,14 +767,7 @@ footer {
 .nets-all {
 	margin-left: 42px;
 }
-
-.fileas-link, .categories-link {
-	margin-left: 24px;
-}
-
-.fileas-all, .categories-all {
-	margin-left: 0px;
-}
+*/
 
 #search-save {
 	margin-left: 5px;
@@ -813,20 +776,6 @@ footer {
 	margin-right: 10px;
 }
 
-#saved-search-ul {
-	list-style-type: none;
-}
-
-.saved-search-li i {
-	opacity: 0;
-}
-
-.saved-search-li:hover i {
-	opacity: 1;
-}
-
-
-
 .savedsearchterm {
 	margin-left: 10px;
 }
@@ -835,7 +784,8 @@ footer {
 #side-follow-wrapper {
 	margin-top: 20px;
 }
-#side-follow-url, #side-peoplefind-url {
+
+#side-peoplefind-url {
 	margin-top: 5px;
 }
 
@@ -851,7 +801,7 @@ footer {
 	font-family: FontAwesome;
 }
 
-#side-follow-submit, #side-peoplefind-submit {
+#side-peoplefind-submit {
 	margin-top: 15px;
 }
 
@@ -860,7 +810,7 @@ footer {
 }
 
 
-.widget, .pmenu {
+.pmenu {
 	border-bottom: 1px solid #eec;
 	padding: 8px;
 	margin-top: 5px;
@@ -1679,12 +1629,6 @@ div.jGrowl div.info {
 	text-overflow: ellipsis;
 }
 
-#datebrowse-sidebar select {
-	margin-left: 25px;
-}
-
-
-
 .jslider .jslider-scale ins {
     color: #333;
 	font-size: $body_font_size;
@@ -2255,8 +2199,7 @@ text-decoration: none;
 	list-style-type: none;
 }
 
-.group-edit-icon,
-.savedsearchdrop {
+.group-edit-icon {
 	opacity: 0;
 }
 
@@ -2395,8 +2338,6 @@ img.mail-list-sender-photo {
 	max-width: $converse_width;
 }
 
-/* conv_item */
-
 .wall-item-content-wrapper {
 	border-radius: $radiuspx;
 	background-color: $item_colour;
@@ -2500,8 +2441,6 @@ img.mail-list-sender-photo {
 	color: $toolicon_colour;
 }
 
-/* comment_item */
-
 .my-comment-photo {
     border-radius: $radiuspx;
     -moz-border-radius: $radiuspx;
@@ -2538,14 +2477,29 @@ img.mail-list-sender-photo {
 .comment-edit-text-full {
 	color: black;
 }
-.suggest-widget-more { margin-top: 10px; }
 
+/* widgets */
 
-#note-text {
-	width: 190px;
-	max-width: 190px;
-	height: 150px;
+.widget {
+	border-bottom: 1px solid #eec;
+	-moz-border-radius: $radiuspx;
+	-webkit-border-radius: $radiuspx;
+	border-radius: $radiuspx;
+}
+
+#saved-search-ul {
+	list-style-type: none;
 }
-#note-save { margin-top: 10px; }
 
+.fileas-ul {
+	list-style-type: none;
+}
 
+#datebrowse-sidebar select {
+	border-radius: $radiuspx;
+	-moz-border-radius: $radiuspx;
+}
+
+.categories-ul {
+	list-style-type: none;
+}
-- 
cgit v1.2.3


From 169266b4547460296355b63c06dd0643667093d0 Mon Sep 17 00:00:00 2001
From: marijus <mario@localhost.localdomain>
Date: Wed, 11 Dec 2013 21:46:03 +0100
Subject: unify styling a little

---
 view/css/widgets.css              | 18 +++---------------
 view/theme/redbasic/css/style.css |  7 +++++++
 2 files changed, 10 insertions(+), 15 deletions(-)

(limited to 'view')

diff --git a/view/css/widgets.css b/view/css/widgets.css
index 3eb72eafc..117751e43 100644
--- a/view/css/widgets.css
+++ b/view/css/widgets.css
@@ -66,21 +66,9 @@
 /* posted date */
 
 #datebrowse-sidebar select {
-	margin-left: 25px;
-	opacity: 0.3;
-	filter:alpha(opacity=30);
-}
-
-#datebrowse-sidebar select:hover {
-	opacity: 1.0;
-	filter:alpha(opacity=100);
-}
-
-#posted-date-selector {
-	margin-left: 30px !important;
-	margin-top: 5px !important;
-	margin-right: 0px !important;
-	margin-bottom: 0px !important;
+	width: 190px;
+	max-width: 190px;
+	height: 150px;
 }
 
 /* categories */
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index d716680ce..ce13fa94c 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -2487,6 +2487,12 @@ img.mail-list-sender-photo {
 	border-radius: $radiuspx;
 }
 
+#note-text {
+	border: 1px solid #ccc;
+	border-radius: $radiuspx;
+	-moz-border-radius: $radiuspx;
+}
+
 #saved-search-ul {
 	list-style-type: none;
 }
@@ -2496,6 +2502,7 @@ img.mail-list-sender-photo {
 }
 
 #datebrowse-sidebar select {
+	border: 1px solid #ccc;
 	border-radius: $radiuspx;
 	-moz-border-radius: $radiuspx;
 }
-- 
cgit v1.2.3


From ebc788a69af4ee93bf683a856ac02956d413aec8 Mon Sep 17 00:00:00 2001
From: marijus <mario@localhost.localdomain>
Date: Wed, 11 Dec 2013 22:02:46 +0100
Subject: also add group widget to widgets.css

---
 view/css/widgets.css              | 28 ++++++++++++++++++++++++++++
 view/theme/redbasic/css/style.css | 36 +++++-------------------------------
 2 files changed, 33 insertions(+), 31 deletions(-)

(limited to 'view')

diff --git a/view/css/widgets.css b/view/css/widgets.css
index 117751e43..2008b10e0 100644
--- a/view/css/widgets.css
+++ b/view/css/widgets.css
@@ -45,6 +45,10 @@
 	opacity: 1;
 }
 
+.savedsearchterm {
+	margin-left: 10px;
+}
+
 .savedsearchdrop {
 	opacity: 0;
 }
@@ -84,3 +88,27 @@
 .categories-all {
 	margin-left: 0px;
 }
+
+/* group */
+
+#group-sidebar {
+	margin-bottom: 10px;
+}
+
+#sidebar-group-list .icon, #sidebar-group-list .iconspacer {
+	display: inline-block;
+	height: 12px;
+	width: 12px;
+}
+
+#sidebar-group-list li {
+	margin-top: 3px;
+}
+
+.groupsideedit {
+	margin-right: 10px;
+}
+
+.group-edit-icon {
+	opacity: 0;
+}
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index ce13fa94c..4df791e73 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -327,11 +327,7 @@ footer {
 	margin-bottom: 15px;
 }
 
-#group-sidebar {
-	margin-bottom: 10px;
-}
-
-/*TODO: we should use .active class for all this, nets-selected probably obsolete */
+/*TODO: we should use .selected class for all this, nets-selected probably obsolete */
 .group-selected, /* .nets-selected, */ .fileas-selected, .categories-selected, .search-selected, .active {
 	color: #444444 !important;
 }
@@ -738,20 +734,6 @@ footer {
 
 #netsearch-box { margin-bottom: 5px; }
 
-#sidebar-group-list ul {
-	list-style-type: none;
-}
-
-#sidebar-group-list .icon, #sidebar-group-list .iconspacer {
-	display: inline-block;
-	height: 12px;
-	width: 12px;
-}
-
-#sidebar-group-list li {
-	margin-top: 3px;
-}
-
 /* might be obsolete
 .nets-ul {
 	list-style-type: none;
@@ -772,14 +754,6 @@ footer {
 #search-save {
 	margin-left: 5px;
 }
-.groupsideedit {
-	margin-right: 10px;
-}
-
-.savedsearchterm {
-	margin-left: 10px;
-}
-
 
 #side-follow-wrapper {
 	margin-top: 20px;
@@ -2199,10 +2173,6 @@ text-decoration: none;
 	list-style-type: none;
 }
 
-.group-edit-icon {
-	opacity: 0;
-}
-
 .admin-icons {
 	color: $toolicon_colour;
 	margin-right: 10px;
@@ -2510,3 +2480,7 @@ img.mail-list-sender-photo {
 .categories-ul {
 	list-style-type: none;
 }
+
+#sidebar-group-list ul {
+	list-style-type: none;
+}
-- 
cgit v1.2.3


From e8821d78d517c838a630766bfc3bafb145a6be15 Mon Sep 17 00:00:00 2001
From: marijus <mario@localhost.localdomain>
Date: Wed, 11 Dec 2013 22:11:06 +0100
Subject: .selected is in use for something else already

---
 view/theme/redbasic/css/style.css | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 4df791e73..fa5bf51ef 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -327,7 +327,7 @@ footer {
 	margin-bottom: 15px;
 }
 
-/*TODO: we should use .selected class for all this, nets-selected probably obsolete */
+/*TODO: we should use one class for all this, nets-selected probably obsolete */
 .group-selected, /* .nets-selected, */ .fileas-selected, .categories-selected, .search-selected, .active {
 	color: #444444 !important;
 }
-- 
cgit v1.2.3


From 1fa4133d430d2cb2753a9fd7e6bf9bfcdc35659b Mon Sep 17 00:00:00 2001
From: marijus <mario@localhost.localdomain>
Date: Wed, 11 Dec 2013 23:52:34 +0100
Subject: this is not needed anymore

---
 view/css/widgets.css        | 4 ----
 view/tpl/saved_searches.tpl | 2 +-
 2 files changed, 1 insertion(+), 5 deletions(-)

(limited to 'view')

diff --git a/view/css/widgets.css b/view/css/widgets.css
index 2008b10e0..a95152888 100644
--- a/view/css/widgets.css
+++ b/view/css/widgets.css
@@ -49,10 +49,6 @@
 	margin-left: 10px;
 }
 
-.savedsearchdrop {
-	opacity: 0;
-}
-
 /* fileas */
 
 .fileas-ul li {
diff --git a/view/tpl/saved_searches.tpl b/view/tpl/saved_searches.tpl
index bdff72ba1..d0f9e2b0e 100644
--- a/view/tpl/saved_searches.tpl
+++ b/view/tpl/saved_searches.tpl
@@ -5,7 +5,7 @@
 	<ul id="saved-search-ul">
 		{{foreach $saved as $search}}
 		<li id="search-term-{{$search.id}}" class="saved-search-li clear">
-			<a title="{{$search.delete}}" onclick="return confirmDelete();" id="drop-saved-search-term-{{$search.id}}" href="{{$search.dellink}}"><i id="dropicon-saved-search-term-{{$search.id}}" class="icon-remove drop-icons iconspacer savedsearchdrop" ></i></a>
+			<a title="{{$search.delete}}" onclick="return confirmDelete();" id="drop-saved-search-term-{{$search.id}}" href="{{$search.dellink}}"><i id="dropicon-saved-search-term-{{$search.id}}" class="icon-remove drop-icons iconspacer" ></i></a>
 			<a id="saved-search-term-{{$search.id}}" class="savedsearchterm{{if $search.selected}} search-selected{{/if}}" href="{{$search.srchlink}}">{{$search.displayterm}}</a>
 		</li>
 		{{/foreach}}
-- 
cgit v1.2.3


From 40e2900326a25ba0e2feedb802d38b7052b194cc Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Wed, 11 Dec 2013 14:54:36 -0800
Subject: comanchify all the simple cases - those that only load a profile.
 Rework permission checks for the profile sidebar so that it is all done
 internally. Remove crepair which we aren't using.

---
 view/css/mod_connections.css      | 50 -------------------------------------
 view/pdl/mod_common.pdl           |  3 +++
 view/pdl/mod_profile_photo.pdl    |  3 +++
 view/pdl/mod_profiles.pdl         |  3 +++
 view/pdl/mod_profperm.pdl         |  3 +++
 view/pdl/mod_viewconnections.pdl  |  3 +++
 view/theme/redbasic/css/style.css | 52 +++++++++++++++++++++++++++++++++++++++
 7 files changed, 67 insertions(+), 50 deletions(-)
 create mode 100644 view/pdl/mod_common.pdl
 create mode 100644 view/pdl/mod_profile_photo.pdl
 create mode 100644 view/pdl/mod_profiles.pdl
 create mode 100644 view/pdl/mod_profperm.pdl
 create mode 100644 view/pdl/mod_viewconnections.pdl

(limited to 'view')

diff --git a/view/css/mod_connections.css b/view/css/mod_connections.css
index ee2ea52ac..d133a1b99 100644
--- a/view/css/mod_connections.css
+++ b/view/css/mod_connections.css
@@ -38,56 +38,6 @@
 	margin-bottom: 20px;
 }
 
-.contact-entry-wrapper {
-	float: left;
-	width: 120px;
-	height: 120px;
-	padding: 10px;
-}
-
-#contacts-search {
-	font-size: 1em;
-	width: 300px;
-}
-
-#contacts-search-end {
-	margin-bottom: 10px;
-}
-
-.contact-entry-photo img {
-	border: none;
-}
-.contact-entry-photo-end {
-	clear: both;
-}
-.contact-entry-name {
-	float: left;
-	margin-left: 0px;
-	margin-right: 10px;
-	width: 120px;
-	overflow: hidden;
-}
-.contact-entry-edit-links {
-	margin-top: 6px;
-	margin-left: 10px;
-	width: 16px;
-}
-.contact-entry-nav-wrapper {
-	float: left;
-	margin-left: 10px;
-}
-
-.contact-entry-edit-links img {
-	border: none;
-	margin-right: 15px;
-}
-.contact-entry-photo {
-	float: left;
-	position: relative;
-}
-.contact-entry-end {
-	clear: both;
-}
 
 
 #contact-edit-wrapper {
diff --git a/view/pdl/mod_common.pdl b/view/pdl/mod_common.pdl
new file mode 100644
index 000000000..f12bf39c3
--- /dev/null
+++ b/view/pdl/mod_common.pdl
@@ -0,0 +1,3 @@
+[region=aside]
+[widget=fullprofile][/widget]
+[/region]
diff --git a/view/pdl/mod_profile_photo.pdl b/view/pdl/mod_profile_photo.pdl
new file mode 100644
index 000000000..f12bf39c3
--- /dev/null
+++ b/view/pdl/mod_profile_photo.pdl
@@ -0,0 +1,3 @@
+[region=aside]
+[widget=fullprofile][/widget]
+[/region]
diff --git a/view/pdl/mod_profiles.pdl b/view/pdl/mod_profiles.pdl
new file mode 100644
index 000000000..f12bf39c3
--- /dev/null
+++ b/view/pdl/mod_profiles.pdl
@@ -0,0 +1,3 @@
+[region=aside]
+[widget=fullprofile][/widget]
+[/region]
diff --git a/view/pdl/mod_profperm.pdl b/view/pdl/mod_profperm.pdl
new file mode 100644
index 000000000..f12bf39c3
--- /dev/null
+++ b/view/pdl/mod_profperm.pdl
@@ -0,0 +1,3 @@
+[region=aside]
+[widget=fullprofile][/widget]
+[/region]
diff --git a/view/pdl/mod_viewconnections.pdl b/view/pdl/mod_viewconnections.pdl
new file mode 100644
index 000000000..f12bf39c3
--- /dev/null
+++ b/view/pdl/mod_viewconnections.pdl
@@ -0,0 +1,3 @@
+[region=aside]
+[widget=fullprofile][/widget]
+[/region]
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index e13bc1edb..b7883f42e 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -2549,3 +2549,55 @@ img.mail-list-sender-photo {
 #note-save { margin-top: 10px; }
 
 
+/* need to put these back in the theme for now - used in more than one module */
+
+.contact-entry-wrapper {
+	float: left;
+	width: 120px;
+	height: 120px;
+	padding: 10px;
+}
+
+#contacts-search {
+	font-size: 1em;
+	width: 300px;
+}
+
+#contacts-search-end {
+	margin-bottom: 10px;
+}
+
+.contact-entry-photo img {
+	border: none;
+}
+.contact-entry-photo-end {
+	clear: both;
+}
+.contact-entry-name {
+	float: left;
+	margin-left: 0px;
+	margin-right: 10px;
+	width: 120px;
+	overflow: hidden;
+}
+.contact-entry-edit-links {
+	margin-top: 6px;
+	margin-left: 10px;
+	width: 16px;
+}
+.contact-entry-nav-wrapper {
+	float: left;
+	margin-left: 10px;
+}
+
+.contact-entry-edit-links img {
+	border: none;
+	margin-right: 15px;
+}
+.contact-entry-photo {
+	float: left;
+	position: relative;
+}
+.contact-entry-end {
+	clear: both;
+}
-- 
cgit v1.2.3


From 4d187918528f12256ee7ae145b0e0e25578df8b4 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Wed, 11 Dec 2013 15:42:28 -0800
Subject: missing brace in redbasic style.css

---
 view/css/widgets.css              | 1 +
 view/theme/redbasic/css/style.css | 1 +
 2 files changed, 2 insertions(+)

(limited to 'view')

diff --git a/view/css/widgets.css b/view/css/widgets.css
index a95152888..2e424a8dc 100644
--- a/view/css/widgets.css
+++ b/view/css/widgets.css
@@ -97,6 +97,7 @@
 	width: 12px;
 }
 
+
 #sidebar-group-list li {
 	margin-top: 3px;
 }
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 9b45102cf..a67742c81 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -2529,6 +2529,7 @@ img.mail-list-sender-photo {
 }
 .contact-entry-end {
 	clear: both;
+}
 
 .categories-ul {
 	list-style-type: none;
-- 
cgit v1.2.3


From b4e1e8a4a43721d0134e41944afaa9f45bcd8aa8 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Wed, 11 Dec 2013 19:43:41 -0800
Subject: The affinity tool is not a "traditional" widget. But it is
 nevertheless a widget. It just makes fewer page layout decisions which are
 hard-coded. If you want to shrink it down and put it on the sidebar in your
 theme, go for it.

---
 view/pdl/mod_network.pdl | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/pdl/mod_network.pdl b/view/pdl/mod_network.pdl
index 168ca6acb..7624ace01 100644
--- a/view/pdl/mod_network.pdl
+++ b/view/pdl/mod_network.pdl
@@ -1,4 +1,5 @@
 [region=nav]$nav[/region]
+
 [region=aside]
 [widget=collections][/widget]
 [widget=archive][/widget]
@@ -7,4 +8,8 @@
 [widget=filer][/widget]
 [widget=notes][/widget]
 [/region]
-[region=section]$content[/region]
\ No newline at end of file
+
+[region=content]
+[widget=affinity][/widget]
+$content
+[/region]
\ No newline at end of file
-- 
cgit v1.2.3


From 8f6af66a730250c7688168eecf8ba9b99df2536b Mon Sep 17 00:00:00 2001
From: marijus <mario@localhost.localdomain>
Date: Thu, 12 Dec 2013 14:39:21 +0100
Subject: move affinity slider to widgets.css and minor cleanup

---
 view/css/widgets.css              | 14 +++++++++++++-
 view/theme/redbasic/css/style.css | 30 +++++++-----------------------
 2 files changed, 20 insertions(+), 24 deletions(-)

(limited to 'view')

diff --git a/view/css/widgets.css b/view/css/widgets.css
index 2e424a8dc..a34508961 100644
--- a/view/css/widgets.css
+++ b/view/css/widgets.css
@@ -97,7 +97,6 @@
 	width: 12px;
 }
 
-
 #sidebar-group-list li {
 	margin-top: 3px;
 }
@@ -109,3 +108,16 @@
 .group-edit-icon {
 	opacity: 0;
 }
+
+/* affinity - slider */
+
+#main-slider {
+	position: relative; 
+	left: 5px; 
+	width: 90%;
+}
+
+.slider {
+	margin-top: 10px;
+	margin-bottom: 45px;
+}
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index a67742c81..e02f55520 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -1610,21 +1610,6 @@ div.jGrowl div.info {
 	text-align: center;
 }
 
-
-.slider {
-	margin-top: 10px;
-	margin-bottom: 45px;
-}
-
-
-#main-slider {
-	position: relative; 
-	left: 5px; 
-	width: 90%;
-
-}
-
-
 #contact-slider {
 	position: relative; 
 	left: 5%; 
@@ -2477,6 +2462,13 @@ img.mail-list-sender-photo {
 	-moz-border-radius: $radiuspx;
 }
 
+.categories-ul {
+	list-style-type: none;
+}
+
+#sidebar-group-list ul {
+	list-style-type: none;
+}
 
 /* need to put these back in the theme for now - used in more than one module */
 
@@ -2530,11 +2522,3 @@ img.mail-list-sender-photo {
 .contact-entry-end {
 	clear: both;
 }
-
-.categories-ul {
-	list-style-type: none;
-}
-
-#sidebar-group-list ul {
-	list-style-type: none;
-}
-- 
cgit v1.2.3


From b994faee9d24a6290e342b6389c56fa7f9ecfac1 Mon Sep 17 00:00:00 2001
From: marijus <mario@localhost.localdomain>
Date: Thu, 12 Dec 2013 15:15:01 +0100
Subject: mark some things for deletion

---
 view/theme/redbasic/css/style.css | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index e02f55520..0db9caa4e 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -676,7 +676,7 @@ footer {
 	list-style: none;
 }
 
-.contact-entry-photo img, .profile-match-photo img, #photo-photo img, .directory-photo-img, .photo-album-photo, .photo-top-photo {
+/* .contact-entry-photo img, */ .profile-match-photo img, #photo-photo img, .directory-photo-img, .photo-album-photo, .photo-top-photo {
     border-radius: $radiuspx;
     -moz-border-radius: $radiuspx;
     box-shadow: $shadowpx $shadowpx $shadowpx 0 #444444;
@@ -2488,12 +2488,16 @@ img.mail-list-sender-photo {
 	margin-bottom: 10px;
 }
 
+/* seems oblolete
 .contact-entry-photo img {
 	border: none;
 }
+*/
+
 .contact-entry-photo-end {
 	clear: both;
 }
+
 .contact-entry-name {
 	float: left;
 	margin-left: 0px;
@@ -2501,11 +2505,14 @@ img.mail-list-sender-photo {
 	width: 120px;
 	overflow: hidden;
 }
+
+/* seems obsolete
 .contact-entry-edit-links {
 	margin-top: 6px;
 	margin-left: 10px;
 	width: 16px;
 }
+
 .contact-entry-nav-wrapper {
 	float: left;
 	margin-left: 10px;
@@ -2515,10 +2522,13 @@ img.mail-list-sender-photo {
 	border: none;
 	margin-right: 15px;
 }
+
 .contact-entry-photo {
 	float: left;
 	position: relative;
 }
+*/
+
 .contact-entry-end {
 	clear: both;
 }
-- 
cgit v1.2.3


From c00f0d4b282f2242b9c2e154a5381029cf0dc812 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sat, 14 Dec 2013 13:26:40 -0800
Subject: a couple more comanche conversions

---
 view/pdl/mod_message.pdl  | 3 +++
 view/pdl/mod_settings.pdl | 4 ++++
 2 files changed, 7 insertions(+)
 create mode 100644 view/pdl/mod_message.pdl
 create mode 100644 view/pdl/mod_settings.pdl

(limited to 'view')

diff --git a/view/pdl/mod_message.pdl b/view/pdl/mod_message.pdl
new file mode 100644
index 000000000..2efb3de79
--- /dev/null
+++ b/view/pdl/mod_message.pdl
@@ -0,0 +1,3 @@
+[region=aside]
+[widget=mailmenu][/widget]
+[/region]
diff --git a/view/pdl/mod_settings.pdl b/view/pdl/mod_settings.pdl
new file mode 100644
index 000000000..0b0a99638
--- /dev/null
+++ b/view/pdl/mod_settings.pdl
@@ -0,0 +1,4 @@
+[region=aside]
+[widget=settings_menu][/widget]
+[/region]
+
-- 
cgit v1.2.3


From d14e2db6b436b3190db0c506cf5f907bd1a7fcc9 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sat, 14 Dec 2013 17:03:37 -0800
Subject: make home.html fullpage mode - make directory search work for
 non-logged in, but leave off suggest and invite

---
 view/tpl/peoplefind.tpl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'view')

diff --git a/view/tpl/peoplefind.tpl b/view/tpl/peoplefind.tpl
index aef341d41..45b3d7d4b 100755
--- a/view/tpl/peoplefind.tpl
+++ b/view/tpl/peoplefind.tpl
@@ -7,8 +7,8 @@
 	</form>
 	<br />
 	{{if $similar}}<a href="match" >{{$similar}}</a><br />{{/if}}
-	<a href="suggest" >{{$suggest}}</a><br />
+	{{if $loggedin}}<a href="suggest" >{{$suggest}}</a><br />{{/if}}
 	<a href="randprof" >{{$random}}</a><br />
-	{{if $inv}}<a href="invite" >{{$inv}}</a>{{/if}}
+	{{if $loggedin}}{{if $inv}}<a href="invite" >{{$inv}}</a>{{/if}}{{/if}}
 </div>
 
-- 
cgit v1.2.3


From 0272ab4cd9a6428396489d88c7a1a89be76e5810 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sun, 15 Dec 2013 14:36:43 -0800
Subject: Provide a fallback channel to probe for magic-auth when we have no
 prior communications with a site. This will be a system channel if one
 exists, otherwise any channel will do. We'll try to use the first valid
 channel on the site because that was probably created when the site was
 installed and is the closest thing to a system channel we've got.

---
 view/css/mod_profiles.css | 6 ++++--
 view/tpl/profile_edit.tpl | 2 ++
 2 files changed, 6 insertions(+), 2 deletions(-)

(limited to 'view')

diff --git a/view/css/mod_profiles.css b/view/css/mod_profiles.css
index 8378245d2..6d935ee4d 100644
--- a/view/css/mod_profiles.css
+++ b/view/css/mod_profiles.css
@@ -35,9 +35,11 @@
 	margin-top: 10px;
 }
 
-#profile-edit-with-label {
+#profile-edit-with-label, #profile-edit-howlong-label {
+
 	width: 175px;
-	margin-left: 20px;
+	margin-left: 50px;
+	margin-bottom: 20px;
 }
 
 #profile-edit-profile-name-label,
diff --git a/view/tpl/profile_edit.tpl b/view/tpl/profile_edit.tpl
index 183389b9b..196b3ac6d 100755
--- a/view/tpl/profile_edit.tpl
+++ b/view/tpl/profile_edit.tpl
@@ -108,8 +108,10 @@
 <label id="profile-edit-marital-label" for="profile-edit-marital" >{{$lbl_marital}} </label>
 {{$marital}}
 </div>
+<div class="clear"></div>
 <label id="profile-edit-with-label" for="profile-edit-with" > {{$lbl_with}} </label>
 <input type="text" size="32" name="with" id="profile-edit-with" title="{{$lbl_ex1}}" value="{{$with}}" />
+<div class="clear"></div>
 <label id="profile-edit-howlong-label" for="profile-edit-howlong" > {{$lbl_howlong}} </label>
 <input type="text" size="32" name="howlong" id="profile-edit-howlong" title="{{$lbl_howlong}}" value="{{$howlong}}" />
 
-- 
cgit v1.2.3


From 61a7bfb9426c36b7cac0058f5fe5a0c5c6d4ae71 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sun, 15 Dec 2013 20:30:37 -0800
Subject: use 'a' ACL search instead of 'm' ACL search for mod_sources

---
 view/js/mod_sources.js | 2 ++
 1 file changed, 2 insertions(+)

(limited to 'view')

diff --git a/view/js/mod_sources.js b/view/js/mod_sources.js
index fda952cae..2efc7ad5d 100644
--- a/view/js/mod_sources.js
+++ b/view/js/mod_sources.js
@@ -10,4 +10,6 @@ $(document).ready(function() {
 		}			
 	});
 
+	a.setOptions({ autoSubmit: true, params: { type: 'a' }});
+
 }); 
-- 
cgit v1.2.3


From 5a3a72604bf0e1c7ec04fbdbdee7a08c2a340c5a Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sun, 15 Dec 2013 20:59:52 -0800
Subject: some re-work of mod_sources

---
 view/js/mod_sources.js    | 4 ++--
 view/tpl/sources_edit.tpl | 2 +-
 view/tpl/sources_new.tpl  | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

(limited to 'view')

diff --git a/view/js/mod_sources.js b/view/js/mod_sources.js
index 2efc7ad5d..49880b38f 100644
--- a/view/js/mod_sources.js
+++ b/view/js/mod_sources.js
@@ -6,10 +6,10 @@ $(document).ready(function() {
 		width: 250,
 		id: 'id-name-ac',
 		onSelect: function(value,data) {
-			$("#id_xchan").val(data);
+			$("#id_abook").val(data);
 		}			
 	});
 
-	a.setOptions({ autoSubmit: true, params: { type: 'a' }});
+	a.setOptions({ params: { type: 'a' }});
 
 }); 
diff --git a/view/tpl/sources_edit.tpl b/view/tpl/sources_edit.tpl
index 6e9cee32b..34023e03f 100644
--- a/view/tpl/sources_edit.tpl
+++ b/view/tpl/sources_edit.tpl
@@ -4,7 +4,7 @@
 
 <form action="sources" method="post">
 <input type="hidden" name="source" value="{{$id}}" />
-<input type="hidden" id="id_xchan" name="xchan" value="{{$xchan}}" />
+<input type="hidden" id="id_abook" name="abook" value="{{$abook}}" />
 {{include file="field_input.tpl" field=$name}}
 {{include file="field_textarea.tpl" field=$words}}
 
diff --git a/view/tpl/sources_new.tpl b/view/tpl/sources_new.tpl
index 267245ae4..3c6a4be30 100644
--- a/view/tpl/sources_new.tpl
+++ b/view/tpl/sources_new.tpl
@@ -3,7 +3,7 @@
 <div class="descriptive-text">{{$desc}}</div>
 
 <form action="sources" method="post">
-<input type="hidden" id="id_xchan" name="xchan" value="{{$xchan}}" />
+<input type="hidden" id="id_abook" name="abook" value="{{$abook}}" />
 {{include file="field_input.tpl" field=$name}}
 {{include file="field_textarea.tpl" field=$words}}
 
-- 
cgit v1.2.3


From ae95269c6dd5b354d5f807c96a4b237b543a9b53 Mon Sep 17 00:00:00 2001
From: marijus <mario@localhost.localdomain>
Date: Mon, 16 Dec 2013 15:41:23 +0100
Subject: remove some cruft and a typo

---
 view/theme/redbasic/css/style.css | 61 +++------------------------------------
 1 file changed, 4 insertions(+), 57 deletions(-)

(limited to 'view')

diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 0db9caa4e..7c7d450aa 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -234,7 +234,7 @@ header #banner #logo-text {
 	background-color: #aec0d3;
 	color: #565854;		
 	-moz-border-radius: $radiuspx;
-	border-radius: $radiuspx;;	
+	border-radius: $radiuspx;
 }
 
 nav .nav-link {
@@ -327,8 +327,8 @@ footer {
 	margin-bottom: 15px;
 }
 
-/*TODO: we should use one class for all this, nets-selected probably obsolete */
-.group-selected, /* .nets-selected, */ .fileas-selected, .categories-selected, .search-selected, .active {
+/*TODO: we should use one class for all this. */
+.group-selected, .fileas-selected, .categories-selected, .search-selected, .active {
 	color: #444444 !important;
 }
 
@@ -676,7 +676,7 @@ footer {
 	list-style: none;
 }
 
-/* .contact-entry-photo img, */ .profile-match-photo img, #photo-photo img, .directory-photo-img, .photo-album-photo, .photo-top-photo {
+.profile-match-photo img, #photo-photo img, .directory-photo-img, .photo-album-photo, .photo-top-photo {
     border-radius: $radiuspx;
     -moz-border-radius: $radiuspx;
     box-shadow: $shadowpx $shadowpx $shadowpx 0 #444444;
@@ -734,23 +734,6 @@ footer {
 
 #netsearch-box { margin-bottom: 5px; }
 
-/* might be obsolete
-.nets-ul {
-	list-style-type: none;
-}
-
-.nets-ul li {
-	margin-top: 10px;
-}
-
-.nets-link {
-	margin-left: 24px;
-}
-.nets-all {
-	margin-left: 42px;
-}
-*/
-
 #search-save {
 	margin-left: 5px;
 }
@@ -2002,13 +1985,6 @@ ul.menu-popup {
 .reshared-content { margin-left: 30px; }
 .shared_header img { margin-right: 10px; }
 
-/* might be obsolete
-span.mail-delete {
-float: left;
-width: 30px;
-}
-*/
-
 .tag1 {
     font-size : 1.0em !important;
   }
@@ -2488,12 +2464,6 @@ img.mail-list-sender-photo {
 	margin-bottom: 10px;
 }
 
-/* seems oblolete
-.contact-entry-photo img {
-	border: none;
-}
-*/
-
 .contact-entry-photo-end {
 	clear: both;
 }
@@ -2506,29 +2476,6 @@ img.mail-list-sender-photo {
 	overflow: hidden;
 }
 
-/* seems obsolete
-.contact-entry-edit-links {
-	margin-top: 6px;
-	margin-left: 10px;
-	width: 16px;
-}
-
-.contact-entry-nav-wrapper {
-	float: left;
-	margin-left: 10px;
-}
-
-.contact-entry-edit-links img {
-	border: none;
-	margin-right: 15px;
-}
-
-.contact-entry-photo {
-	float: left;
-	position: relative;
-}
-*/
-
 .contact-entry-end {
 	clear: both;
 }
-- 
cgit v1.2.3


From afc86875d242027434cb4ffca10e086d53cbbbb8 Mon Sep 17 00:00:00 2001
From: marijus <mario@localhost.localdomain>
Date: Mon, 16 Dec 2013 15:46:18 +0100
Subject: move some stuff back to mod_connections.css

---
 view/css/mod_connections.css      | 31 +++++++++++++++++++++++++++++++
 view/theme/redbasic/css/style.css | 34 ----------------------------------
 2 files changed, 31 insertions(+), 34 deletions(-)

(limited to 'view')

diff --git a/view/css/mod_connections.css b/view/css/mod_connections.css
index d133a1b99..c460fec28 100644
--- a/view/css/mod_connections.css
+++ b/view/css/mod_connections.css
@@ -104,3 +104,34 @@
 	margin-top: 20px;
 }
 
+.contact-entry-wrapper {
+	float: left;
+	width: 120px;
+	height: 120px;
+	padding: 10px;
+}
+
+#contacts-search {
+	font-size: 1em;
+	width: 300px;
+}
+
+#contacts-search-end {
+	margin-bottom: 10px;
+}
+
+.contact-entry-photo-end {
+	clear: both;
+}
+
+.contact-entry-name {
+	float: left;
+	margin-left: 0px;
+	margin-right: 10px;
+	width: 120px;
+	overflow: hidden;
+}
+
+.contact-entry-end {
+	clear: both;
+}
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 7c7d450aa..9ac021a54 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -2445,37 +2445,3 @@ img.mail-list-sender-photo {
 #sidebar-group-list ul {
 	list-style-type: none;
 }
-
-/* need to put these back in the theme for now - used in more than one module */
-
-.contact-entry-wrapper {
-	float: left;
-	width: 120px;
-	height: 120px;
-	padding: 10px;
-}
-
-#contacts-search {
-	font-size: 1em;
-	width: 300px;
-}
-
-#contacts-search-end {
-	margin-bottom: 10px;
-}
-
-.contact-entry-photo-end {
-	clear: both;
-}
-
-.contact-entry-name {
-	float: left;
-	margin-left: 0px;
-	margin-right: 10px;
-	width: 120px;
-	overflow: hidden;
-}
-
-.contact-entry-end {
-	clear: both;
-}
-- 
cgit v1.2.3


From 98b0e0221d66fe93104328e7027efe77f9c84008 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Tue, 17 Dec 2013 20:03:45 -0800
Subject: more comanche stuff

---
 view/pdl/mod_new_channel.pdl | 1 +
 view/pdl/mod_register.pdl    | 1 +
 view/php/mod_new_channel.php | 3 ---
 view/php/mod_register.php    | 3 ---
 4 files changed, 2 insertions(+), 6 deletions(-)
 create mode 100644 view/pdl/mod_new_channel.pdl
 create mode 100644 view/pdl/mod_register.pdl
 delete mode 100644 view/php/mod_new_channel.php
 delete mode 100644 view/php/mod_register.php

(limited to 'view')

diff --git a/view/pdl/mod_new_channel.pdl b/view/pdl/mod_new_channel.pdl
new file mode 100644
index 000000000..733bc248a
--- /dev/null
+++ b/view/pdl/mod_new_channel.pdl
@@ -0,0 +1 @@
+[layout]full[/layout]
diff --git a/view/pdl/mod_register.pdl b/view/pdl/mod_register.pdl
new file mode 100644
index 000000000..733bc248a
--- /dev/null
+++ b/view/pdl/mod_register.pdl
@@ -0,0 +1 @@
+[layout]full[/layout]
diff --git a/view/php/mod_new_channel.php b/view/php/mod_new_channel.php
deleted file mode 100644
index e7709cbd8..000000000
--- a/view/php/mod_new_channel.php
+++ /dev/null
@@ -1,3 +0,0 @@
-<?php
-
-$a->page['template'] = 'full';
diff --git a/view/php/mod_register.php b/view/php/mod_register.php
deleted file mode 100644
index e7709cbd8..000000000
--- a/view/php/mod_register.php
+++ /dev/null
@@ -1,3 +0,0 @@
-<?php
-
-$a->page['template'] = 'full';
-- 
cgit v1.2.3


From 38fd8410eb5c66928cb24bb87ad38657f53aec3a Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Wed, 18 Dec 2013 01:00:08 -0800
Subject: split off mod_connections into mod_connections & mod_connedit - lots
 of links to fix

---
 view/css/mod_connedit.css | 137 ++++++++++++++++++++++++++++++++++++++++++++++
 view/tpl/abook_edit.tpl   |   2 +-
 2 files changed, 138 insertions(+), 1 deletion(-)
 create mode 100644 view/css/mod_connedit.css

(limited to 'view')

diff --git a/view/css/mod_connedit.css b/view/css/mod_connedit.css
new file mode 100644
index 000000000..c460fec28
--- /dev/null
+++ b/view/css/mod_connedit.css
@@ -0,0 +1,137 @@
+
+.field_abook_help {
+	color: #000;
+}
+.abook-them {
+	margin-left: 375px;
+	margin-bottom: 15px;
+}
+.abook-me {
+	margin-left: 36px;
+	margin-bottom: 15px;
+}
+.acheckbox {
+	margin-bottom: 5px !important;
+}
+
+.abook-pending-contact {
+	background: orange;
+	font-weight: bold;
+	margin: 10px;
+	padding: 20px 5px 10px;
+}
+
+#contact-slider {
+	width: 600px !important;
+}
+
+.abook-edit-them, .abook-edit-me {
+	float: left;
+	width: 100px !important;
+}
+.field_abook_help {
+	float: left;
+}
+
+#contacts-main {
+	margin-top: 20px;
+	margin-bottom: 20px;
+}
+
+
+
+#contact-edit-wrapper {
+	margin-top: 10px;
+}
+
+#contact-edit-banner-name {
+	font-size: 1.4em;
+	font-weight: bold;
+}
+
+#contact-edit-poll-wrapper {
+	margin-top: 15px;
+}
+
+#contact-edit-poll-text {
+	margin-top: 15px;
+	margin-bottom: 5px;
+}
+
+#contact-edit-update-now {
+	margin-top: 15px;
+}
+
+#contact-edit-links{
+	clear: both;
+}
+
+#contact-edit-links ul {
+	list-style: none;
+	list-style-type: none;
+	margin-left: 0px;
+	padding-left: 0px;
+}
+
+#contact-edit-links li {
+	margin-top: 5px;
+}
+
+#contact-edit-drop-link {
+	float: right;
+	margin-right: 20px;
+}
+
+#contact-edit-nav-end {
+	clear: both;
+}
+
+#contact-edit-wrapper {
+	width: 100%;
+}
+
+#contact-edit-end {
+	clear: both;
+	margin-top: 15px;
+}
+
+#contact-profile-selector {
+	width: 175px;
+	margin-left: 175px;
+}
+
+.contact-edit-submit {
+	margin-top: 20px;
+}
+
+.contact-entry-wrapper {
+	float: left;
+	width: 120px;
+	height: 120px;
+	padding: 10px;
+}
+
+#contacts-search {
+	font-size: 1em;
+	width: 300px;
+}
+
+#contacts-search-end {
+	margin-bottom: 10px;
+}
+
+.contact-entry-photo-end {
+	clear: both;
+}
+
+.contact-entry-name {
+	float: left;
+	margin-left: 0px;
+	margin-right: 10px;
+	width: 120px;
+	overflow: hidden;
+}
+
+.contact-entry-end {
+	clear: both;
+}
diff --git a/view/tpl/abook_edit.tpl b/view/tpl/abook_edit.tpl
index 30abcc6b3..23368f2f7 100755
--- a/view/tpl/abook_edit.tpl
+++ b/view/tpl/abook_edit.tpl
@@ -30,7 +30,7 @@
 <h3>{{$permlbl}}</h3>
 <div id="perm-desc" class="descriptive-text">{{$permnote}}</div>
 
-<form id="abook-edit-form" action="connections/{{$contact_id}}" method="post" >
+<form id="abook-edit-form" action="connedit/{{$contact_id}}" method="post" >
 <input type="hidden" name="contact_id" value="{{$contact_id}}">
 <input id="contact-closeness-mirror" type="hidden" name="closeness" value="{{$close}}" />
 
-- 
cgit v1.2.3


From b6bb3c02525843caeaee3f6409f1b97b160ea8a2 Mon Sep 17 00:00:00 2001
From: marijus <mario@localhost.localdomain>
Date: Wed, 18 Dec 2013 19:47:00 +0100
Subject: fix a typo

---
 view/css/conversation.css         | 2 +-
 view/theme/redbasic/css/style.css | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

(limited to 'view')

diff --git a/view/css/conversation.css b/view/css/conversation.css
index 5bf6a3607..5abc9c66a 100644
--- a/view/css/conversation.css
+++ b/view/css/conversation.css
@@ -110,7 +110,7 @@
 
 /* conversation */
 
-.thread-wrapper .toplevel_item {
+.thread-wrapper.toplevel_item {
 	width: 92%;
 }
 
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 9ac021a54..68ddcf7a2 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -2265,7 +2265,7 @@ img.mail-list-sender-photo {
 	border-left: 2px solid #eee;
 }
 
-.thread-wrapper .toplevel_item {
+.thread-wrapper.toplevel_item {
 	max-width: $converse_width;
 }
 
-- 
cgit v1.2.3


From 6e28c40c2732daa40d4e54ad3231af5798964fa2 Mon Sep 17 00:00:00 2001
From: marijus <mario@localhost.localdomain>
Date: Wed, 18 Dec 2013 20:22:22 +0100
Subject: we make this with css now

---
 view/theme/redbasic/js/redbasic.js | 12 +-----------
 1 file changed, 1 insertion(+), 11 deletions(-)

(limited to 'view')

diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js
index e89c51119..e41fde2b8 100644
--- a/view/theme/redbasic/js/redbasic.js
+++ b/view/theme/redbasic/js/redbasic.js
@@ -47,16 +47,6 @@ $('.savedsearchdrop').hover(
 		$(this).css('opacity','0');}
 	);
 
-$('.savedsearchterm').hover(
-	function() {
-		id = $(this).attr('id');
-		$('#dropicon-' + id).css('opacity','1.0');},
-
-	function() {
-		id = $(this).attr('id');
-		$('#dropicon-' + id).css('opacity','0');
-	});
-
 });
 
 
@@ -72,4 +62,4 @@ $(document).ready(function(){
 		}
 	};
 	setInterval(function () {checkNotify();}, 10 * 1000);
-});
\ No newline at end of file
+});
-- 
cgit v1.2.3


From 176fe3256428c8a2226030c4e1de89723e37cca7 Mon Sep 17 00:00:00 2001
From: marijus <mario@localhost.localdomain>
Date: Wed, 18 Dec 2013 21:13:48 +0100
Subject: show drop-icon on wall-item hover only

---
 view/css/conversation.css         | 8 ++++++++
 view/theme/redbasic/css/style.css | 8 ++------
 2 files changed, 10 insertions(+), 6 deletions(-)

(limited to 'view')

diff --git a/view/css/conversation.css b/view/css/conversation.css
index 5abc9c66a..8125b6278 100644
--- a/view/css/conversation.css
+++ b/view/css/conversation.css
@@ -125,6 +125,14 @@
 	position: relative;
 }
 
+.wall-item-content-wrapper .wall-item-delete-wrapper {
+	opacity: 0;
+}
+
+.wall-item-content-wrapper:hover .wall-item-delete-wrapper {
+	opacity: 1;
+}
+
 .wall-item-info {
 	display: block;
 	float: left;
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 68ddcf7a2..411356d80 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -2087,12 +2087,12 @@ margin-right: 50px;
 }
 
 a .drop-icons {
-	color: #777;
+	color: $toolicon_colour;;
 	font-size: 1.2em;
 	text-decoration: none;
 }
  
-.drop-icons:hover {
+a .drop-icons:hover {
 	color: #FF0000;
 }
 
@@ -2364,10 +2364,6 @@ img.mail-list-sender-photo {
 	color: $toolicon_activecolour;
 }
 
-.drop-icons.item-tool {
-	color: $toolicon_colour;
-}
-
 .like-rotator {
 	color: $toolicon_colour;
 }
-- 
cgit v1.2.3


From 2089a1379a57ba5c27e220e664cb76ffb0acc1dd Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Wed, 18 Dec 2013 18:29:53 -0800
Subject: provide git revision in siteinfo if possible and if not instructed
 otherwise

---
 view/tpl/siteinfo.tpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/tpl/siteinfo.tpl b/view/tpl/siteinfo.tpl
index f6647110c..a60b406cf 100755
--- a/view/tpl/siteinfo.tpl
+++ b/view/tpl/siteinfo.tpl
@@ -2,7 +2,7 @@
 <p></p>
 <p>{{$description}}</p>
 {{if $version}}
-<p>{{$version}}</p>
+<p>{{$version}}{{if $commit}}+{{$commit}}{{/if}}</p>
 {{/if}}
 <p>{{$web_location}}</p>
 <p>{{$visit}}</p>
-- 
cgit v1.2.3


From 125543adedfe00b3d5cea8548d1a66096a173a6b Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Thu, 19 Dec 2013 02:16:14 -0800
Subject: more comanche migration

---
 view/pdl/mod_blocks.pdl           | 3 +++
 view/pdl/mod_layouts.pdl          | 3 +++
 view/pdl/mod_menu.pdl             | 3 +++
 view/pdl/mod_webpages.pdl         | 3 +++
 view/theme/redbasic/css/style.css | 4 ++++
 view/tpl/design_tools.tpl         | 2 ++
 6 files changed, 18 insertions(+)
 create mode 100644 view/pdl/mod_blocks.pdl
 create mode 100644 view/pdl/mod_layouts.pdl
 create mode 100644 view/pdl/mod_menu.pdl
 create mode 100644 view/pdl/mod_webpages.pdl

(limited to 'view')

diff --git a/view/pdl/mod_blocks.pdl b/view/pdl/mod_blocks.pdl
new file mode 100644
index 000000000..cef69f194
--- /dev/null
+++ b/view/pdl/mod_blocks.pdl
@@ -0,0 +1,3 @@
+[region=aside]
+[widget=design_tools][/widget]
+[/region]
\ No newline at end of file
diff --git a/view/pdl/mod_layouts.pdl b/view/pdl/mod_layouts.pdl
new file mode 100644
index 000000000..cef69f194
--- /dev/null
+++ b/view/pdl/mod_layouts.pdl
@@ -0,0 +1,3 @@
+[region=aside]
+[widget=design_tools][/widget]
+[/region]
\ No newline at end of file
diff --git a/view/pdl/mod_menu.pdl b/view/pdl/mod_menu.pdl
new file mode 100644
index 000000000..cef69f194
--- /dev/null
+++ b/view/pdl/mod_menu.pdl
@@ -0,0 +1,3 @@
+[region=aside]
+[widget=design_tools][/widget]
+[/region]
\ No newline at end of file
diff --git a/view/pdl/mod_webpages.pdl b/view/pdl/mod_webpages.pdl
new file mode 100644
index 000000000..cef69f194
--- /dev/null
+++ b/view/pdl/mod_webpages.pdl
@@ -0,0 +1,3 @@
+[region=aside]
+[widget=design_tools][/widget]
+[/region]
\ No newline at end of file
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 411356d80..5f532a861 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -2122,6 +2122,10 @@ a .drop-icons:hover {
 	margin-right: 10px;
 }
 
+.design-tools ul {
+	list-style-type: none;
+}
+
 .design-icons {
 	margin-right: 10px;
 }
diff --git a/view/tpl/design_tools.tpl b/view/tpl/design_tools.tpl
index eb082dc37..80a538231 100644
--- a/view/tpl/design_tools.tpl
+++ b/view/tpl/design_tools.tpl
@@ -1,7 +1,9 @@
 <div id="design-tools" class="widget design-tools">
 <h3>{{$title}}</h3>
+<ul>
 <li><a href="blocks/{{$who}}">{{$blocks}}</a></li>
 <li><a href="menu">{{$menus}}</a></li>
 <li><a href="layouts/{{$who}}">{{$layout}}</a></li>
 <li><a href="webpages/{{$who}}">{{$pages}}</a></li>
+</ul>
 </div>
-- 
cgit v1.2.3


From b28a37c38e3fc68b1d0a59e4f5e6054ce13cb680 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Thu, 19 Dec 2013 02:25:44 -0800
Subject: more comanche

---
 view/pdl/mod_suggest.pdl | 4 ++++
 1 file changed, 4 insertions(+)
 create mode 100644 view/pdl/mod_suggest.pdl

(limited to 'view')

diff --git a/view/pdl/mod_suggest.pdl b/view/pdl/mod_suggest.pdl
new file mode 100644
index 000000000..c2889f2fe
--- /dev/null
+++ b/view/pdl/mod_suggest.pdl
@@ -0,0 +1,4 @@
+[region=aside]
+[widget=follow][/widget]
+[widget=findpeople][/widget]
+[/region]
\ No newline at end of file
-- 
cgit v1.2.3


From 825492407e3e064b6cd806b3ed7d484d2cc9f50e Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Thu, 19 Dec 2013 02:35:45 -0800
Subject: more comanche

---
 view/pdl/mod_connections.pdl | 5 +++++
 1 file changed, 5 insertions(+)
 create mode 100644 view/pdl/mod_connections.pdl

(limited to 'view')

diff --git a/view/pdl/mod_connections.pdl b/view/pdl/mod_connections.pdl
new file mode 100644
index 000000000..fc86e4490
--- /dev/null
+++ b/view/pdl/mod_connections.pdl
@@ -0,0 +1,5 @@
+[region=aside]
+[widget=follow][/widget]
+[widget=suggestions][/widget]
+[widget=findpeople][/widget]
+[/region]
-- 
cgit v1.2.3


From 564f431551672d706136559a4fed3a3c4f98c0ec Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Thu, 19 Dec 2013 17:36:31 -0800
Subject: comanchificate mod_photos

---
 view/pdl/mod_photos.pdl | 4 ++++
 1 file changed, 4 insertions(+)
 create mode 100644 view/pdl/mod_photos.pdl

(limited to 'view')

diff --git a/view/pdl/mod_photos.pdl b/view/pdl/mod_photos.pdl
new file mode 100644
index 000000000..c37cf02fe
--- /dev/null
+++ b/view/pdl/mod_photos.pdl
@@ -0,0 +1,4 @@
+[region=aside]
+[widget=vcard][/widget]
+[widget=photo_albums][/widget]
+[/region]
-- 
cgit v1.2.3


From bccc20f38c3919d453b0dee1ed354aa4eb13b398 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Thu, 19 Dec 2013 19:16:46 -0800
Subject: default photo issue, and connections page showing deleted accounts.
 Also show last updated on connedit page

---
 view/tpl/abook_edit.tpl | 4 ++++
 1 file changed, 4 insertions(+)

(limited to 'view')

diff --git a/view/tpl/abook_edit.tpl b/view/tpl/abook_edit.tpl
index 23368f2f7..590213fd3 100755
--- a/view/tpl/abook_edit.tpl
+++ b/view/tpl/abook_edit.tpl
@@ -16,6 +16,10 @@
 
 <div id="contact-edit-wrapper">
 
+{{if $last_update}}
+{{$lastupdtext}} {{$last_update}}
+{{/if}}
+
 {{if $notself}}
 {{if $slide}}
 <h3>{{$lbl_slider}}</h3>
-- 
cgit v1.2.3


From 2c0fbc508e44ebc96b00e4e8a5e166324fbcf9b3 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Thu, 19 Dec 2013 23:56:37 -0800
Subject: comanchify connedit, group

---
 view/pdl/mod_connedit.pdl | 6 ++++++
 view/pdl/mod_group.pdl    | 3 +++
 2 files changed, 9 insertions(+)
 create mode 100644 view/pdl/mod_connedit.pdl
 create mode 100644 view/pdl/mod_group.pdl

(limited to 'view')

diff --git a/view/pdl/mod_connedit.pdl b/view/pdl/mod_connedit.pdl
new file mode 100644
index 000000000..4b468e34c
--- /dev/null
+++ b/view/pdl/mod_connedit.pdl
@@ -0,0 +1,6 @@
+[region=aside]
+[widget=vcard][/widget]
+[widget=collections][var=mode]abook[/var][/widget]
+[widget=suggestions][/widget]
+[widget=findpeople][/widget]
+[/region]
diff --git a/view/pdl/mod_group.pdl b/view/pdl/mod_group.pdl
new file mode 100644
index 000000000..8db29cf78
--- /dev/null
+++ b/view/pdl/mod_group.pdl
@@ -0,0 +1,3 @@
+[region=aside]
+[widget=collections][var=mode]groups[/var][/widget]
+[/region]
-- 
cgit v1.2.3


From a084a3fa47879f00a535501f14f32c3ff55f7d29 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Fri, 20 Dec 2013 01:39:42 -0800
Subject: comanchify mod_search - we've got three modules left to Comanchify:
 admin, directory and message - each of which introduces "interesting
 challenges"

---
 view/pdl/mod_search.pdl | 3 +++
 1 file changed, 3 insertions(+)
 create mode 100644 view/pdl/mod_search.pdl

(limited to 'view')

diff --git a/view/pdl/mod_search.pdl b/view/pdl/mod_search.pdl
new file mode 100644
index 000000000..7de4a270f
--- /dev/null
+++ b/view/pdl/mod_search.pdl
@@ -0,0 +1,3 @@
+[region=aside]
+[widget=savedsearch][/widget]
+[/region]
-- 
cgit v1.2.3


From aa312f72bf48f3ffeb62606541b39e5243ce819e Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Fri, 20 Dec 2013 12:43:04 -0800
Subject: comanchify mod_directory. Two modules remaining. Actually three
 because message needs to be split.

---
 view/pdl/mod_directory.pdl | 7 +++++++
 1 file changed, 7 insertions(+)
 create mode 100644 view/pdl/mod_directory.pdl

(limited to 'view')

diff --git a/view/pdl/mod_directory.pdl b/view/pdl/mod_directory.pdl
new file mode 100644
index 000000000..0bc8ed936
--- /dev/null
+++ b/view/pdl/mod_directory.pdl
@@ -0,0 +1,7 @@
+[region=aside]
+[widget=findpeople][/widget]
+[widget=dirsafemode][/widget]
+[widget=dirsort][/widget]
+[widget=dirtags][/widget]
+[widget=suggestions][/widget]
+[/region]
-- 
cgit v1.2.3


From d32bbaf599c77aa415ee403a896b77f091f0e9fc Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sat, 21 Dec 2013 23:47:44 -0800
Subject: split private messages into two modules - "message" is just for
 message lists, "mail" is for reading and writing conversations. This is so we
 can Comanchify it cleanly.

---
 view/css/mod_mail.css    | 100 +++++++++++++++++++++++++++++++++++++++++++++++
 view/js/mod_mail.js      |  13 ++++++
 view/pdl/mod_mail.pdl    |   3 ++
 view/tpl/mail_conv.tpl   |   4 +-
 view/tpl/mail_list.tpl   |   2 +-
 view/tpl/prv_message.tpl |   2 +-
 6 files changed, 120 insertions(+), 4 deletions(-)
 create mode 100644 view/css/mod_mail.css
 create mode 100644 view/js/mod_mail.js
 create mode 100644 view/pdl/mod_mail.pdl

(limited to 'view')

diff --git a/view/css/mod_mail.css b/view/css/mod_mail.css
new file mode 100644
index 000000000..c278f4d53
--- /dev/null
+++ b/view/css/mod_mail.css
@@ -0,0 +1,100 @@
+/* message */
+
+#mail-list-wrapper {
+	border-top: 1px solid #ccc;
+	padding: 5px 5px 5px 5px;
+}
+
+span.mail-list {
+	float: left;
+	width: 20%;
+}
+
+img.mail-list-sender-photo {
+	height: 24px;
+	width: 24px;
+	float: left;
+	margin-right: 30px;
+}
+
+.mail-list-remove {
+	width: 5% !important;
+}
+
+/* message/new */
+
+#prvmail-to-label,
+#prvmail-subject-label,
+#prvmail-expires-label,
+#prvmail-message-label {
+	margin-bottom: 10px;
+	margin-top: 20px;
+}
+
+#prvmail-submit {
+	float: left;
+	margin-top: 10px;
+	margin-right: 30px;
+}
+
+#prvmail-upload-wrapper,
+#prvmail-attach-wrapper,
+#prvmail-link-wrapper,
+#prvmail-expire-wrapper,
+#prvmail-encrypt-wrapper,
+#prvmail-rotator-wrapper {
+	float: left;
+	margin-top: 10px;
+	margin-right: 10px;
+	width: 24px;
+	cursor: pointer;
+}
+
+#prvmail-end {
+	clear: both;
+}
+
+/* message/id */
+
+.mail-conv-outside-wrapper {
+	margin-top: 30px;
+}
+
+.mail-conv-sender,
+.mail-conv-detail {
+	float: left;
+}
+
+.mail-conv-detail {
+	margin-left: 20px;
+	width: 500px;
+}
+
+.mail-conv-subject {
+    font-size: 1.4em;
+    margin: 10px 0;
+}
+
+.mail-conv-delete-wrapper {
+	float: right;
+	margin-right: 30px;
+	margin-top: 15px;
+}
+
+.mail-conv-delete-icon {
+	border: none;
+}
+
+.mail-conv-recall-wrapper {
+	float: right;
+	margin-right: 10px;
+	margin-top: 15px;
+}
+
+.mail-conv-outside-wrapper-end {
+	clear: both;
+}
+
+.mail-conv-break {
+	clear: both;
+}
diff --git a/view/js/mod_mail.js b/view/js/mod_mail.js
new file mode 100644
index 000000000..82f60f46f
--- /dev/null
+++ b/view/js/mod_mail.js
@@ -0,0 +1,13 @@
+$(document).ready(function() { 
+	var a; 
+	a = $("#recip").autocomplete({ 
+		serviceUrl: baseurl + '/acl',
+		minChars: 2,
+		width: 250,
+		id: 'recip-ac',
+		onSelect: function(value,data) {
+			$("#recip-complete").val(data);
+		},
+	});
+
+}); 
diff --git a/view/pdl/mod_mail.pdl b/view/pdl/mod_mail.pdl
new file mode 100644
index 000000000..d8f50ad7a
--- /dev/null
+++ b/view/pdl/mod_mail.pdl
@@ -0,0 +1,3 @@
+[region=aside]
+[widget=vcard][/widget]
+[/region]
diff --git a/view/tpl/mail_conv.tpl b/view/tpl/mail_conv.tpl
index 84bdb451a..f794ffc78 100755
--- a/view/tpl/mail_conv.tpl
+++ b/view/tpl/mail_conv.tpl
@@ -8,9 +8,9 @@
 		<div class="mail-conv-date">{{$mail.date}}</div>
 		<div class="mail-conv-subject">{{$mail.subject}}</div>
 		<div class="mail-conv-body">{{$mail.body}}</div>
-	<div class="mail-conv-delete-wrapper" id="mail-conv-delete-wrapper-{{$mail.id}}" ><a href="message/drop/{{$mail.id}}" onclick="return confirmDelete();" title="{{$mail.delete}}" id="mail-conv-delete-icon-{{$mail.id}}" class="mail-conv-delete-icon" ><i class="icon-remove mail-icons drop-icons"></i></a></div><div class="mail-conv-delete-end"></div>
+	<div class="mail-conv-delete-wrapper" id="mail-conv-delete-wrapper-{{$mail.id}}" ><a href="mail/drop/{{$mail.id}}" onclick="return confirmDelete();" title="{{$mail.delete}}" id="mail-conv-delete-icon-{{$mail.id}}" class="mail-conv-delete-icon" ><i class="icon-remove mail-icons drop-icons"></i></a></div><div class="mail-conv-delete-end"></div>
 	{{if $mail.can_recall}}
-	<div class="mail-conv-recall-wrapper" id="mail-conv-recall-wrapper-{{$mail.id}}" ><a href="message/recall/{{$mail.id}}" title="{{$mail.recall}}" id="mail-conv-recall-icon-{{$mail.id}}" class="mail-conv-recall-icon" ><i class="icon-undo mail-icons drop-icons"></i></a></div><div class="mail-conv-recall-end"></div>
+	<div class="mail-conv-recall-wrapper" id="mail-conv-recall-wrapper-{{$mail.id}}" ><a href="mail/recall/{{$mail.id}}" title="{{$mail.recall}}" id="mail-conv-recall-icon-{{$mail.id}}" class="mail-conv-recall-icon" ><i class="icon-undo mail-icons drop-icons"></i></a></div><div class="mail-conv-recall-end"></div>
 	{{/if}}
 	<div class="mail-conv-outside-wrapper-end"></div>
 </div>
diff --git a/view/tpl/mail_list.tpl b/view/tpl/mail_list.tpl
index c96827996..e17a206a0 100755
--- a/view/tpl/mail_list.tpl
+++ b/view/tpl/mail_list.tpl
@@ -1,7 +1,7 @@
 <div class="generic-content-wrapper" id="mail-list-wrapper">
 	<a href="{{$from_url}}" class ="mail-list" ><img class="mail-list-sender-photo" src="{{$from_photo}}" alt="{{$from_name}}" /></a>
 	<span class="mail-list">{{$from_name}}</span>
-	<span class="mail-list {{if $seen}}seen{{else}}unseen{{/if}}"><a href="message/{{$id}}" class="mail-link">{{$subject}}</a></span>
+	<span class="mail-list {{if $seen}}seen{{else}}unseen{{/if}}"><a href="mail/{{$id}}" class="mail-link">{{$subject}}</a></span>
 	<span class="mail-list" title="{{$date}}">{{$date}}</span>
 	<span class="mail-list mail-list-remove"><a href="message/dropconv/{{$id}}" onclick="return confirmDelete();"  title="{{$delete}}" ><i class="icon-remove mail-icons drop-icons"></i></a></span>
 	<div class="clear">&nbsp;</div>
diff --git a/view/tpl/prv_message.tpl b/view/tpl/prv_message.tpl
index b7654dc2d..3330a338f 100755
--- a/view/tpl/prv_message.tpl
+++ b/view/tpl/prv_message.tpl
@@ -1,7 +1,7 @@
 <h3>{{$header}}</h3>
 
 <div id="prvmail-wrapper" >
-<form id="prvmail-form" action="message" method="post" >
+<form id="prvmail-form" action="mail" method="post" >
 
 {{$parent}}
 
-- 
cgit v1.2.3


From 0366991b45a9b54da66850bce44b4b9dc1d939a7 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sun, 22 Dec 2013 02:04:55 -0800
Subject: appears that I missed a few files for Comanchification. so here's
 mitem.

---
 view/pdl/mod_mitem.pdl | 4 ++++
 1 file changed, 4 insertions(+)
 create mode 100644 view/pdl/mod_mitem.pdl

(limited to 'view')

diff --git a/view/pdl/mod_mitem.pdl b/view/pdl/mod_mitem.pdl
new file mode 100644
index 000000000..c210606d0
--- /dev/null
+++ b/view/pdl/mod_mitem.pdl
@@ -0,0 +1,4 @@
+[region=aside]
+[widget=design_tools][/widget]
+[widget=menu_preview][/widget]
+[/region]
\ No newline at end of file
-- 
cgit v1.2.3


From 7e7b5bfa4930493a8feae10b0550e29797956c70 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sun, 22 Dec 2013 02:16:45 -0800
Subject: last remaining files to be Comanchified with the exception of
 mod_admin. Though I should probably take a third look to see if anything else
 uses widgets. In fact - it appears that the flattrwidget does.

---
 view/pdl/mod_chanview.pdl | 3 +++
 view/pdl/mod_connect.pdl  | 3 +++
 2 files changed, 6 insertions(+)
 create mode 100644 view/pdl/mod_chanview.pdl
 create mode 100644 view/pdl/mod_connect.pdl

(limited to 'view')

diff --git a/view/pdl/mod_chanview.pdl b/view/pdl/mod_chanview.pdl
new file mode 100644
index 000000000..d8f50ad7a
--- /dev/null
+++ b/view/pdl/mod_chanview.pdl
@@ -0,0 +1,3 @@
+[region=aside]
+[widget=vcard][/widget]
+[/region]
diff --git a/view/pdl/mod_connect.pdl b/view/pdl/mod_connect.pdl
new file mode 100644
index 000000000..6b1d2a15e
--- /dev/null
+++ b/view/pdl/mod_connect.pdl
@@ -0,0 +1,3 @@
+[region=aside]
+[widget=profile][/widget]
+[/region]
-- 
cgit v1.2.3


From 25a533bd72c34e9775af71c010a39db6caf7b633 Mon Sep 17 00:00:00 2001
From: Christian Vogeley <christian.vogeley@hotmail.de>
Date: Sun, 22 Dec 2013 14:21:57 +0100
Subject: New modal dialog for item expiry

---
 view/php/theme_init.php |  8 +++++++-
 view/tpl/jot-header.tpl | 24 ++++++++++++++++++++++--
 view/tpl/jot.tpl        | 35 ++++++++++++++++++++++++++++++++++-
 3 files changed, 63 insertions(+), 4 deletions(-)

(limited to 'view')

diff --git a/view/php/theme_init.php b/view/php/theme_init.php
index f2f0af5f1..da64ce08e 100644
--- a/view/php/theme_init.php
+++ b/view/php/theme_init.php
@@ -10,7 +10,12 @@ head_add_css('library/jgrowl/jquery.jgrowl.css');
 head_add_css('library/jslider/css/jslider.css');
 head_add_css('library/prettyphoto/css/prettyPhoto.css');
 head_add_css('library/colorbox/colorbox.css');
+
 // head_add_css('library/font_awesome/css/font-awesome.min.css');
+head_add_css('view/css/conversation.css');
+head_add_css('view/css/bootstrap-red.css');
+head_add_css('view/css/widgets.css');
+head_add_css('library/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css');
 
 head_add_js('js/jquery.js');
 head_add_js('library/bootstrap/js/bootstrap.min.js');
@@ -40,7 +45,8 @@ head_add_js('library/jslider/bin/jquery.slider.min.js');
 head_add_js('docready.js');
 head_add_js('library/prettyphoto/js/jquery.prettyPhoto.js');
 head_add_js('library/colorbox/jquery.colorbox-min.js');
-
+head_add_js('library/bootstrap-datetimepicker/js/moment.js');
+head_add_js('library/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js');
 /**
  * Those who require this feature will know what to do with it.
  * Those who don't, won't.
diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl
index 1ceca04c6..09d035979 100755
--- a/view/tpl/jot-header.tpl
+++ b/view/tpl/jot-header.tpl
@@ -194,10 +194,17 @@ function enableOnUser(){
 	}
 
 	function jotGetExpiry() {
-		reply = prompt("{{$expirewhen}}", $('#jot-expire').val());
-		if(reply && reply.length) {
+		//reply = prompt("{{$expirewhen}}", $('#jot-expire').val());
+		$('#expiryModal').modal();
+		$('#expiry-modal-OKButton').on('click', function() {
+    	reply=$('#expiration-date').val();
+    	if(reply && reply.length) {
 			$('#jot-expire').val(reply);
+			$('#expiryModal').modal('hide');
 		}
+})
+		
+		
 	}
 
 	function jotShare(id) {
@@ -299,3 +306,16 @@ function enableOnUser(){
 
 </script>
 
+<!-- 
+<script>
+$( document ).on( "click", ".wall-item-delete-link", function(e) {
+	var link = $(this).attr("href"); // "get" the intended link in a var
+    e.preventDefault();
+  	bootbox.confirm("<h4>Delete item?</h4>", function(result) {
+    				if (result) {
+      				document.location.href = link;}
+      				});
+    });
+</script>
+ -->
+
diff --git a/view/tpl/jot.tpl b/view/tpl/jot.tpl
index ef91f45be..72553f944 100755
--- a/view/tpl/jot.tpl
+++ b/view/tpl/jot.tpl
@@ -90,9 +90,42 @@
 			{{$jotnets}}
 		</div>
 	</div>
+<!-- Modal for item expiry-->
+<div class="modal fade" id="expiryModal" tabindex="-1" role="dialog" aria-labelledby="expiryModalLabel" aria-hidden="true">
+  <div class="modal-dialog">
+    <div class="modal-content">
+      <div class="modal-header">
+        <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
+        <h4 class="modal-title" id="expiryModalLabel">{{$expires}}</h4>
+      </div>
+     <!--  <div class="modal-body"> -->
+            <div class="modal-body form-group" style="width:90%">
+                <div class="input-group input-group-sm date" id="datetimepicker1">
+                    <span class="input-group-addon"><span class="glyphicon glyphicon-calendar"></span>
+                    </span>
+                    <input id="expiration-date" type='text' class="form-control" data-format="YYYY-MM-DD HH:mm" size="20"/>
+                </div>
+            </div>
+      <!-- </div> -->
+      <div class="modal-footer">
+        <button type="button" class="btn btn-default" data-dismiss="modal">{{$expiryModalCANCEL}}</button>
+        <button id="expiry-modal-OKButton" type="button" class="btn btn-primary">{{$expiryModalOK}}</button>
+      </div>
+    </div><!-- /.modal-content -->
+  </div><!-- /.modal-dialog -->
+</div><!-- /.modal -->
+<script type="text/javascript">
+  $(function() {
+    $('#datetimepicker1').datetimepicker({
+      language: 'us'
+    });
+  });
+</script>
+</div>
+
+
 
 
-</div>
 
 <div id="profile-jot-end"></div>
 </form>
-- 
cgit v1.2.3


From 242bae5acda15b12cb87379cf6173daa16807930 Mon Sep 17 00:00:00 2001
From: Christian Vogeley <christian.vogeley@hotmail.de>
Date: Sun, 22 Dec 2013 14:55:28 +0100
Subject: Merge

---
 view/tpl/saved_searches_aside.tpl | 1 +
 1 file changed, 1 insertion(+)

(limited to 'view')

diff --git a/view/tpl/saved_searches_aside.tpl b/view/tpl/saved_searches_aside.tpl
index 615eca39d..c670ee3fa 100755
--- a/view/tpl/saved_searches_aside.tpl
+++ b/view/tpl/saved_searches_aside.tpl
@@ -12,3 +12,4 @@
 	</ul>
 	<div class="clear"></div>
 </div>
+
-- 
cgit v1.2.3


From 1a72239af040551817813ce056640ebba6ab1ccb Mon Sep 17 00:00:00 2001
From: Christian Vogeley <christian.vogeley@hotmail.de>
Date: Sun, 22 Dec 2013 14:58:27 +0100
Subject: Correction

---
 view/tpl/_conv_item.tpl            | 118 -------------------------------------
 view/tpl/_group_side.tpl           |  33 -----------
 view/tpl/_saved_searches_aside.tpl |  15 -----
 3 files changed, 166 deletions(-)
 delete mode 100755 view/tpl/_conv_item.tpl
 delete mode 100755 view/tpl/_group_side.tpl
 delete mode 100755 view/tpl/_saved_searches_aside.tpl

(limited to 'view')

diff --git a/view/tpl/_conv_item.tpl b/view/tpl/_conv_item.tpl
deleted file mode 100755
index b6e3df7c4..000000000
--- a/view/tpl/_conv_item.tpl
+++ /dev/null
@@ -1,118 +0,0 @@
-{{if $item.comment_firstcollapsed}}
-	<div class="hide-comments-outer">
-	<span id="hide-comments-total-{{$item.id}}" class="hide-comments-total">{{$item.num_comments}}</span> <span id="hide-comments-{{$item.id}}" class="hide-comments fakelink" onclick="showHideComments({{$item.id}});">{{$item.hide_text}}</span>
-	</div>
-	<div id="collapsed-comments-{{$item.id}}" class="collapsed-comments" style="display: none;">
-{{/if}}
-<div id="thread-wrapper-{{$item.id}}" class="thread-wrapper {{$item.toplevel}}">
-<a name="{{$item.id}}" ></a>
-<div class="wall-item-outside-wrapper {{$item.indent}}{{$item.previewing}}{{if $item.owner_url}} wallwall{{/if}}" id="wall-item-outside-wrapper-{{$item.id}}" >
-	<div class="wall-item-content-wrapper {{$item.indent}}" id="wall-item-content-wrapper-{{$item.id}}" >
-		<div class="wall-item-info{{if $item.owner_url}} wallwall{{/if}}" id="wall-item-info-{{$item.id}}">
-			{{if $item.owner_url}}
-			<div class="wall-item-photo-wrapper wwto" id="wall-item-ownerphoto-wrapper-{{$item.id}}" >
-				<a href="{{$item.owner_url}}" title="{{$item.olinktitle}}" class="wall-item-photo-link" id="wall-item-ownerphoto-link-{{$item.id}}">
-				<img src="{{$item.owner_photo}}" class="wall-item-photo{{$item.osparkle}}" id="wall-item-ownerphoto-{{$item.id}}" style="height: 80px; width: 80px;" alt="{{$item.owner_name}}" /></a>
-			</div>
-			<div class="wall-item-arrowphoto-wrapper" ><img src="images/larrow.gif" alt="{{$item.wall}}" /></div>
-			{{/if}}
-			<div class="wall-item-photo-wrapper{{if $item.owner_url}} wwfrom{{/if}}" id="wall-item-photo-wrapper-{{$item.id}}" 
-				onmouseover="if (typeof t{{$item.id}} != 'undefined') clearTimeout(t{{$item.id}}); openMenu('wall-item-photo-menu-button-{{$item.id}}')"
-                onmouseout="t{{$item.id}}=setTimeout('closeMenu(\'wall-item-photo-menu-button-{{$item.id}}\'); closeMenu(\'wall-item-photo-menu-{{$item.id}}\');',200)">
-				<a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-photo-link" id="wall-item-photo-link-{{$item.id}}">
-				<img src="{{$item.thumb}}" class="wall-item-photo{{$item.sparkle}}" id="wall-item-photo-{{$item.id}}" style="height: 80px; width: 80px;" alt="{{$item.name}}" /></a>
-				<span onclick="openClose('wall-item-photo-menu-{{$item.id}}');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-{{$item.id}}">menu</span>
-                <div class="wall-item-photo-menu" id="wall-item-photo-menu-{{$item.id}}">
-                    <ul>
-                        {{$item.item_photo_menu}}
-                    </ul>
-                </div>
-
-			</div>
-			<div class="wall-item-photo-end"></div>
-			<div class="wall-item-wrapper" id="wall-item-wrapper-{{$item.id}}" >
-				{{if $item.lock}}<i class="wall-item-lock icon-lock lockview" title="{{$item.lock}}" onclick="lockview(event,{{$item.id}});" ></i>
-				{{else}}<div class="wall-item-lock"></div>{{/if}}	
-				<div class="wall-item-location" id="wall-item-location-{{$item.id}}">{{$item.location}}</div>
-			</div>
-		</div>
-		<div class="wall-item-author">
-				<a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-name-link"><span class="wall-item-name{{$item.sparkle}}" id="wall-item-name-{{$item.id}}" >{{$item.name}}</span></a>{{if $item.owner_url}} {{$item.via}} <a href="{{$item.owner_url}}" title="{{$item.olinktitle}}" class="wall-item-name-link"><span class="wall-item-name{{$item.osparkle}}" id="wall-item-ownername-{{$item.id}}">{{$item.owner_name}}</span></a>{{/if}}<br />
-
-				<div class="wall-item-ago"  id="wall-item-ago-{{$item.id}}">{{if $item.verified}}<i class="icon-ok" title="{{$item.verified}}"></i>&nbsp;{{/if}}<span class="autotime" title="{{$item.isotime}}">{{$item.localtime}}{{if $item.editedtime}} {{$item.editedtime}}{{/if}}</span>{{if $item.app}}<span class="item.app">{{$item.str_app}}</span>{{/if}}</div>
-		</div>			
-		<div class="wall-item-content" id="wall-item-content-{{$item.id}}" >
-			<div class="wall-item-title" id="wall-item-title-{{$item.id}}">{{$item.title}}</div>
-			<div class="wall-item-title-end"></div>
-			<div class="wall-item-body" id="wall-item-body-{{$item.id}}" >{{$item.body}}
-					<div class="body-tag">
-						{{foreach $item.tags as $tag}}
-							<span class='tag'>{{$tag}}</span>
-						{{/foreach}}
-					</div>
-			{{if $item.has_cats}}
-			<div class="categorytags"><span>{{$item.txt_cats}} {{foreach $item.categories as $cat}}{{$cat.name}} <a href="{{$cat.removeurl}}" title="{{$remove}}">[{{$remove}}]</a> {{if $cat.last}}{{else}}, {{/if}}{{/foreach}}
-			</div>
-			{{/if}}
-
-			{{if $item.has_folders}}
-			<div class="filesavetags"><span>{{$item.txt_folders}} {{foreach $item.folders as $cat}}{{$cat.name}} <a href="{{$cat.removeurl}}" title="{{$remove}}">[{{$remove}}]</a> {{if $cat.last}}{{else}}, {{/if}}{{/foreach}}
-			</div>
-			{{/if}}
-			</div>
-		</div>
-		<div class="wall-item-tools" id="wall-item-tools-{{$item.id}}">
-			{{if $item.like}}
-				<i class="icon-thumbs-up-alt item-tool" title="{{$item.like.0}}" onclick="dolike({{$item.id}},'like'); return false"></i>
-			{{/if}}
-			{{if $item.dislike}}
-				<i class="icon-thumbs-down-alt item-tool" title="{{$item.dislike.0}}" onclick="dolike({{$item.id}},'dislike'); return false"></i>
-			{{/if}}
-			{{if $item.share}}
-				<i class="icon-retweet item-tool" title="{{$item.share.0}}" onclick="jotShare({{$item.id}}); return false"></i>
-			{{/if}}
-			{{if $item.plink}}
-				<i class="icon-external-link item-tool" onclick="window.location.href='{{$item.plink.href}}'; return false;" title="{{$item.plink.title}}"></i>
-			{{/if}}
-			{{if $item.edpost}}
-				<i class="editpost icon-pencil item-tool" onclick="window.location.href='{{$item.edpost.0}}'; return false;" title="{{$item.edpost.1}}"></i>
-			{{/if}}			 
-			{{if $item.star}}
-			<i id="starred-{{$item.id}}" onclick="dostar({{$item.id}}); return false;" class="star-item item-tool {{$item.star.isstarred}}" title="{{$item.star.toggle}}"></i>
-			{{/if}}
-			{{if $item.tagger}}
-			<i id="tagger-{{$item.id}}" onclick="itemTag({{$item.id}}); return false;" class="tag-item icon-tag item-tool" title="{{$item.tagger.tagit}}"></i>
-			{{/if}}
-			{{if $item.filer}}
-			<i id="filer-{{$item.id}}" onclick="itemFiler({{$item.id}}); return false;" class="filer-item icon-folder-open item-tool" title="{{$item.filer}}"></i>
-			{{/if}}			
-			<div id="like-rotator-{{$item.id}}" class="like-rotator"></div>
-
-			<div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-{{$item.id}}" >
-				{{if $item.drop.dropping}}<a class="wall-item-delete-link" id="wall-item-delete-link-{{$item.id}}" href="item/drop/{{$item.id}}" title="{{$item.drop.delete}}" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ><i class="icon-remove drop-icons item-tool"></i></a>{{/if}}
-			</div>
-				{{if $item.drop.pagedrop}}<input type="checkbox" onclick="checkboxhighlight(this);" title="{{$item.drop.select}}" class="item-select" name="itemselected[]" value="{{$item.id}}" />{{/if}}
-			<div class="wall-item-delete-end"></div>
-			<div class="wall-item-like {{$item.indent}}" id="wall-item-like-{{$item.id}}">{{$item.showlike}}</div>
-			<div class="wall-item-dislike {{$item.indent}}" id="wall-item-dislike-{{$item.id}}">{{$item.showdislike}}</div>
-
-		</div>
-	</div>	
-
-	<div class="wall-item-wrapper-end"></div>
-
-<div class="wall-item-outside-wrapper-end {{$item.indent}}" ></div>
-</div>
-{{if $item.toplevel}}
-{{foreach $item.children as $child}}
-	{{include file="{{$child.template}}" item=$child}}
-{{/foreach}}
-{{/if}}
-
-<div class="wall-item-comment-wrapper" >
-	{{$item.comment}}
-</div>
-
-
-</div>
-{{if $item.comment_lastcollapsed}}</div>{{/if}}
diff --git a/view/tpl/_group_side.tpl b/view/tpl/_group_side.tpl
deleted file mode 100755
index e350087f0..000000000
--- a/view/tpl/_group_side.tpl
+++ /dev/null
@@ -1,33 +0,0 @@
-<div class="panel panel-default" id="group-sidebar">
-<div class="panel-heading"><h3 class="panel-title">{{$title}}</h3></div>
-
-<div class="panel-body" id="sidebar-group-list">
-	<ul id="sidebar-group-ul">
-		{{foreach $groups as $group}}
-			<li class="sidebar-group-li">
-				{{if $group.cid}}
-					<input type="checkbox" 
-						class="{{if $group.selected}}ticked{{else}}unticked {{/if}} action" 
-						onclick="contactgroupChangeMember('{{$group.id}}','{{$group.cid}}');return true;"
-						{{if $group.ismember}}checked="checked"{{/if}}
-					/>
-				{{/if}}			
-				{{if $group.edit}}
-					<a class="groupsideedit" href="{{$group.edit.href}}" title="{{$edittext}}"><span id="edit-sidebar-group-element-{{$group.id}}" class="group-edit-icon iconspacer small-pencil"></span></a>
-				{{/if}}
-				<a id="sidebar-group-element-{{$group.id}}" class="sidebar-group-element {{if $group.selected}}group-selected{{/if}}" href="{{$group.href}}">{{$group.text}}</a>
-			</li>
-		{{/foreach}}
-	</ul>
-  <div id="sidebar-new-group">
-  <a href="group/new">{{$createtext}}</a>
-  </div>
-  {{if $ungrouped}}
-  <div id="sidebar-ungrouped">
-  <a href="nogroup">{{$ungrouped}}</a>
-  </div>
-  {{/if}}	
-	</div>
-</div>
-
-
diff --git a/view/tpl/_saved_searches_aside.tpl b/view/tpl/_saved_searches_aside.tpl
deleted file mode 100755
index 2ca2ef6ea..000000000
--- a/view/tpl/_saved_searches_aside.tpl
+++ /dev/null
@@ -1,15 +0,0 @@
-<div class="panel panel-default" id="saved-search-list">
-<div class="panel-heading">	<h3 class="panel-title" id="search">{{$title}}</h3></div>
-<div class="panel-body">
-	{{$searchbox}}
-	
-	<ul id="saved-search-ul">
-		{{foreach $saved as $search}}
-		<li id="search-term-{{$search.id}}" class="saved-search-li clear">
-			<a title="{{$search.delete}}" onclick="return confirmDelete();" id="drop-saved-search-term-{{$search.id}}" href="network/?f=&amp;remove=1&amp;search={{$search.encodedterm}}"><i id="dropicon-saved-search-term-{{$search.id}}" class="icon-remove drop-icons iconspacer savedsearchdrop" ></i></a>
-			<a id="saved-search-term-{{$search.id}}" class="savedsearchterm" href="network/?f=&amp;search={{$search.encodedterm}}">{{$search.displayterm}}</a>
-		</li>
-		{{/foreach}}
-	</ul></div>
-	<div class="clear"></div>
-</div>
-- 
cgit v1.2.3


From 0f4b6ba3718445e17de0d56017e55ab099b6f61d Mon Sep 17 00:00:00 2001
From: Christian Vogeley <christian.vogeley@hotmail.de>
Date: Sun, 22 Dec 2013 15:05:56 +0100
Subject: Merge correction

---
 view/php/theme_init.php           | 3 ---
 view/tpl/saved_searches_aside.tpl | 1 -
 2 files changed, 4 deletions(-)

(limited to 'view')

diff --git a/view/php/theme_init.php b/view/php/theme_init.php
index 509df8fef..4aecb8ecf 100644
--- a/view/php/theme_init.php
+++ b/view/php/theme_init.php
@@ -15,10 +15,7 @@ head_add_css('library/colorbox/colorbox.css');
 head_add_css('view/css/conversation.css');
 head_add_css('view/css/bootstrap-red.css');
 head_add_css('view/css/widgets.css');
-<<<<<<< HEAD
 head_add_css('library/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css');
-=======
->>>>>>> upstream/master
 
 head_add_js('js/jquery.js');
 head_add_js('library/bootstrap/js/bootstrap.min.js');
diff --git a/view/tpl/saved_searches_aside.tpl b/view/tpl/saved_searches_aside.tpl
index c670ee3fa..615eca39d 100755
--- a/view/tpl/saved_searches_aside.tpl
+++ b/view/tpl/saved_searches_aside.tpl
@@ -12,4 +12,3 @@
 	</ul>
 	<div class="clear"></div>
 </div>
-
-- 
cgit v1.2.3


From 6480e14a910252f550929d3e1d7520a966dfbb09 Mon Sep 17 00:00:00 2001
From: Christian Vogeley <christian.vogeley@hotmail.de>
Date: Sun, 22 Dec 2013 20:01:18 +0100
Subject: Use the red matrix icons

---
 view/tpl/jot.tpl | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

(limited to 'view')

diff --git a/view/tpl/jot.tpl b/view/tpl/jot.tpl
index abe1c0924..a0bc9c805 100755
--- a/view/tpl/jot.tpl
+++ b/view/tpl/jot.tpl
@@ -101,7 +101,8 @@
      <!--  <div class="modal-body"> -->
             <div class="modal-body form-group" style="width:90%">
                 <div class="input-group input-group-sm date" id="datetimepicker1">
-                    <span class="input-group-addon"><span class="glyphicon glyphicon-calendar"></span>
+                    <span class="input-group-addon"><!-- <span class="glyphicon glyphicon-calendar"></span> -->
+                    <span class="icon-calendar"></span>
                     </span>
                     <input id="expiration-date" type='text' class="form-control" data-format="YYYY-MM-DD HH:mm" size="20"/>
                 </div>
@@ -117,7 +118,13 @@
 <script type="text/javascript">
   $(function() {
     $('#datetimepicker1').datetimepicker({
-      language: 'us'
+      language: 'us',
+      icons: {
+					time: "icon-time",
+					date: "icon-calendar",
+					up: "icon-arrow-up",
+					down: "icon-arrow-down"
+				}
     });
   });
 </script>
-- 
cgit v1.2.3


From 77fdb4a1eee6d7e2d3b0d3d50896a0100eccf373 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sun, 22 Dec 2013 13:49:32 -0800
Subject: js functions behind quick permission links were lost in
 comanchification process - because the js didn't get relocated to the new
 connedit module

---
 view/js/mod_connections.js | 82 ----------------------------------------------
 view/js/mod_connedit.js    | 82 ++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 82 insertions(+), 82 deletions(-)
 create mode 100644 view/js/mod_connedit.js

(limited to 'view')

diff --git a/view/js/mod_connections.js b/view/js/mod_connections.js
index 404010636..8a8f2fee6 100644
--- a/view/js/mod_connections.js
+++ b/view/js/mod_connections.js
@@ -21,85 +21,3 @@ $(".autocomplete-w1 .selected").keyup(function(event){
 		}
 });
 
-
-function connectFullShare() {
-	$('.abook-edit-me').each(function() {
-		if(! $(this).is(':disabled'))
-			$(this).removeAttr('checked');
-	});
-	$('#me_id_perms_view_stream').attr('checked','checked');
-	$('#me_id_perms_view_profile').attr('checked','checked');
-	$('#me_id_perms_view_photos').attr('checked','checked');
-	$('#me_id_perms_view_contacts').attr('checked','checked');
-	$('#me_id_perms_view_storage').attr('checked','checked');
-	$('#me_id_perms_view_pages').attr('checked','checked');
-	$('#me_id_perms_send_stream').attr('checked','checked');
-	$('#me_id_perms_post_wall').attr('checked','checked');
-	$('#me_id_perms_post_comments').attr('checked','checked');
-	$('#me_id_perms_post_mail').attr('checked','checked');
-	$('#me_id_perms_chat').attr('checked','checked');
-	$('#me_id_perms_view_storage').attr('checked','checked');
-	$('#me_id_perms_republish').attr('checked','checked');
-}
-
-function connectCautiousShare() {
-	$('.abook-edit-me').each(function() {
-		if(! $(this).is(':disabled'))
-			$(this).removeAttr('checked');
-	});
-
-	$('#me_id_perms_view_stream').attr('checked','checked');
-	$('#me_id_perms_view_profile').attr('checked','checked');
-	$('#me_id_perms_view_photos').attr('checked','checked');
-	$('#me_id_perms_view_storage').attr('checked','checked');
-	$('#me_id_perms_view_pages').attr('checked','checked');
-	$('#me_id_perms_send_stream').attr('checked','checked');
-	$('#me_id_perms_post_comments').attr('checked','checked');
-	$('#me_id_perms_post_mail').attr('checked','checked');
-}
-
-function connectForum() {
-	$('.abook-edit-me').each(function() {
-		if(! $(this).is(':disabled'))
-			$(this).removeAttr('checked');
-	});
-
-	$('#me_id_perms_view_stream').attr('checked','checked');
-	$('#me_id_perms_view_profile').attr('checked','checked');
-	$('#me_id_perms_view_photos').attr('checked','checked');
-	$('#me_id_perms_view_contacts').attr('checked','checked');
-	$('#me_id_perms_view_storage').attr('checked','checked');
-	$('#me_id_perms_view_pages').attr('checked','checked');
-	$('#me_id_perms_send_stream').attr('checked','checked');
-	$('#me_id_perms_post_wall').attr('checked','checked');
-	$('#me_id_perms_post_comments').attr('checked','checked');
-	$('#me_id_perms_post_mail').attr('checked','checked');
-	$('#me_id_perms_tag_deliver').attr('checked','checked');
-	$('#me_id_perms_republish').attr('checked','checked');
-
-}
-
-function connectSoapBox() {
-	$('.abook-edit-me').each(function() {
-		if(! $(this).is(':disabled'))
-			$(this).removeAttr('checked');
-	});
-
-	$('#me_id_perms_view_stream').attr('checked','checked');
-	$('#me_id_perms_view_profile').attr('checked','checked');
-	$('#me_id_perms_view_photos').attr('checked','checked');
-	$('#me_id_perms_view_contacts').attr('checked','checked');
-	$('#me_id_perms_view_storage').attr('checked','checked');
-	$('#me_id_perms_view_pages').attr('checked','checked');
-}
-
-
-function connectFollowOnly() {
-	$('.abook-edit-me').each(function() {
-		if(! $(this).is(':disabled'))
-			$(this).removeAttr('checked');
-	});
-
-	$('#me_id_perms_send_stream').attr('checked','checked');
-}
-
diff --git a/view/js/mod_connedit.js b/view/js/mod_connedit.js
new file mode 100644
index 000000000..51dbcf4bf
--- /dev/null
+++ b/view/js/mod_connedit.js
@@ -0,0 +1,82 @@
+
+function connectFullShare() {
+	$('.abook-edit-me').each(function() {
+		if(! $(this).is(':disabled'))
+			$(this).removeAttr('checked');
+	});
+	$('#me_id_perms_view_stream').attr('checked','checked');
+	$('#me_id_perms_view_profile').attr('checked','checked');
+	$('#me_id_perms_view_photos').attr('checked','checked');
+	$('#me_id_perms_view_contacts').attr('checked','checked');
+	$('#me_id_perms_view_storage').attr('checked','checked');
+	$('#me_id_perms_view_pages').attr('checked','checked');
+	$('#me_id_perms_send_stream').attr('checked','checked');
+	$('#me_id_perms_post_wall').attr('checked','checked');
+	$('#me_id_perms_post_comments').attr('checked','checked');
+	$('#me_id_perms_post_mail').attr('checked','checked');
+	$('#me_id_perms_chat').attr('checked','checked');
+	$('#me_id_perms_view_storage').attr('checked','checked');
+	$('#me_id_perms_republish').attr('checked','checked');
+}
+
+function connectCautiousShare() {
+	$('.abook-edit-me').each(function() {
+		if(! $(this).is(':disabled'))
+			$(this).removeAttr('checked');
+	});
+
+	$('#me_id_perms_view_stream').attr('checked','checked');
+	$('#me_id_perms_view_profile').attr('checked','checked');
+	$('#me_id_perms_view_photos').attr('checked','checked');
+	$('#me_id_perms_view_storage').attr('checked','checked');
+	$('#me_id_perms_view_pages').attr('checked','checked');
+	$('#me_id_perms_send_stream').attr('checked','checked');
+	$('#me_id_perms_post_comments').attr('checked','checked');
+	$('#me_id_perms_post_mail').attr('checked','checked');
+}
+
+function connectForum() {
+	$('.abook-edit-me').each(function() {
+		if(! $(this).is(':disabled'))
+			$(this).removeAttr('checked');
+	});
+
+	$('#me_id_perms_view_stream').attr('checked','checked');
+	$('#me_id_perms_view_profile').attr('checked','checked');
+	$('#me_id_perms_view_photos').attr('checked','checked');
+	$('#me_id_perms_view_contacts').attr('checked','checked');
+	$('#me_id_perms_view_storage').attr('checked','checked');
+	$('#me_id_perms_view_pages').attr('checked','checked');
+	$('#me_id_perms_send_stream').attr('checked','checked');
+	$('#me_id_perms_post_wall').attr('checked','checked');
+	$('#me_id_perms_post_comments').attr('checked','checked');
+	$('#me_id_perms_post_mail').attr('checked','checked');
+	$('#me_id_perms_tag_deliver').attr('checked','checked');
+	$('#me_id_perms_republish').attr('checked','checked');
+
+}
+
+function connectSoapBox() {
+	$('.abook-edit-me').each(function() {
+		if(! $(this).is(':disabled'))
+			$(this).removeAttr('checked');
+	});
+
+	$('#me_id_perms_view_stream').attr('checked','checked');
+	$('#me_id_perms_view_profile').attr('checked','checked');
+	$('#me_id_perms_view_photos').attr('checked','checked');
+	$('#me_id_perms_view_contacts').attr('checked','checked');
+	$('#me_id_perms_view_storage').attr('checked','checked');
+	$('#me_id_perms_view_pages').attr('checked','checked');
+}
+
+
+function connectFollowOnly() {
+	$('.abook-edit-me').each(function() {
+		if(! $(this).is(':disabled'))
+			$(this).removeAttr('checked');
+	});
+
+	$('#me_id_perms_send_stream').attr('checked','checked');
+}
+
-- 
cgit v1.2.3


From c1a85ccbec8f0c41b4e5927846bf1dce0db93dd4 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sun, 22 Dec 2013 14:29:15 -0800
Subject: add ability to set created date/time from the api

---
 view/tpl/jot.tpl | 1 -
 1 file changed, 1 deletion(-)

(limited to 'view')

diff --git a/view/tpl/jot.tpl b/view/tpl/jot.tpl
index a0bc9c805..9038155be 100755
--- a/view/tpl/jot.tpl
+++ b/view/tpl/jot.tpl
@@ -12,7 +12,6 @@
 		<input type="hidden" name="post_id" value="{{$post_id}}" />
 		<input type="hidden" name="webpage" value="{{$webpage}}" />
 		<input type="hidden" name="preview" id="jot-preview" value="0" />
-
 		{{$mimeselect}}
 		{{$layoutselect}}
 
-- 
cgit v1.2.3


From 79f002d943a87c9f8160f1f8e476f4d9f3f3a986 Mon Sep 17 00:00:00 2001
From: Tobias Diekershoff <tobias.diekershoff@gmx.net>
Date: Mon, 23 Dec 2013 13:33:31 +0100
Subject: DE: update to the strings

---
 view/de/messages.po | 8046 +++++++++++++++++++++++++--------------------------
 view/de/strings.php |  997 +++----
 2 files changed, 4392 insertions(+), 4651 deletions(-)

(limited to 'view')

diff --git a/view/de/messages.po b/view/de/messages.po
index 2221d039d..3d726adbb 100644
--- a/view/de/messages.po
+++ b/view/de/messages.po
@@ -19,9 +19,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Red Matrix\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-11-29 00:03-0800\n"
-"PO-Revision-Date: 2013-12-05 18:04+0000\n"
-"Last-Translator: zottel <transifex@zottel.net>\n"
+"POT-Creation-Date: 2013-12-20 00:02-0800\n"
+"PO-Revision-Date: 2013-12-23 10:43+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"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -64,217 +64,249 @@ msgstr "Besuche %1$s's %2$s"
 msgid "%1$s has an updated %2$s, changing %3$s."
 msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert."
 
-#: ../../include/enotify.php:36
+#: ../../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:37
+#: ../../include/enotify.php:41
 msgid "redmatrix"
 msgstr "redmatrix"
 
-#: ../../include/enotify.php:39
+#: ../../include/enotify.php:43
 msgid "Thank You,"
 msgstr "Danke."
 
-#: ../../include/enotify.php:41
+#: ../../include/enotify.php:45
 #, php-format
 msgid "%s Administrator"
 msgstr "%s Administrator"
 
-#: ../../include/enotify.php:76
+#: ../../include/enotify.php:80
 #, php-format
 msgid "%s <!item_type!>"
 msgstr "%s <!item_type!>"
 
-#: ../../include/enotify.php:80
+#: ../../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:82
+#: ../../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:83
+#: ../../include/enotify.php:87
 #, php-format
 msgid "%1$s sent you %2$s."
 msgstr "%1$s hat dir %2$s geschickt."
 
-#: ../../include/enotify.php:83
+#: ../../include/enotify.php:87
 msgid "a private message"
 msgstr "eine private Nachricht"
 
-#: ../../include/enotify.php:84
+#: ../../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:135
+#: ../../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:143
+#: ../../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:152
+#: ../../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:163
+#: ../../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:164
+#: ../../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:167 ../../include/enotify.php:186
-#: ../../include/enotify.php:212 ../../include/enotify.php:231
-#: ../../include/enotify.php:245
+#: ../../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:174
+#: ../../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:176
+#: ../../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:178
+#: ../../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:205
+#: ../../include/enotify.php:206
 #, php-format
 msgid "[Red:Notify] %s tagged you"
 msgstr "[Red Notify] %s hat dich getaggt"
 
-#: ../../include/enotify.php:206
+#: ../../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/enotify.php:207
+#: ../../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/enotify.php:220
+#: ../../include/enotify.php:221
 #, php-format
 msgid "[Red:Notify] %1$s poked you"
 msgstr "[Red Notify] %1$s hat dich angestupst"
 
-#: ../../include/enotify.php:221
+#: ../../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/enotify.php:222
+#: ../../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/enotify.php:238
+#: ../../include/enotify.php:239
 #, php-format
 msgid "[Red:Notify] %s tagged your post"
 msgstr "[Red:Hinweis] %s hat Dich getagged"
 
-#: ../../include/enotify.php:239
+#: ../../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/enotify.php:240
+#: ../../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/enotify.php:252
+#: ../../include/enotify.php:253
 msgid "[Red:Notify] Introduction received"
 msgstr "[Red:Notify] Vorstellung erhalten"
 
-#: ../../include/enotify.php:253
+#: ../../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/enotify.php:254
+#: ../../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/enotify.php:258 ../../include/enotify.php:277
+#: ../../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/enotify.php:260
+#: ../../include/enotify.php:261
 #, php-format
 msgid "Please visit %s to approve or reject the introduction."
 msgstr "Bitte besuche %s um sie anzunehmen oder abzulehnen."
 
-#: ../../include/enotify.php:267
+#: ../../include/enotify.php:268
 msgid "[Red:Notify] Friend suggestion received"
 msgstr "[Red:Hinweis] Freundschaftsvorschlag erhalten"
 
-#: ../../include/enotify.php:268
+#: ../../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/enotify.php:269
+#: ../../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/enotify.php:275
+#: ../../include/enotify.php:276
 msgid "Name:"
 msgstr "Name:"
 
-#: ../../include/enotify.php:276
+#: ../../include/enotify.php:277
 msgid "Photo:"
 msgstr "Foto:"
 
-#: ../../include/enotify.php:279
+#: ../../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/ItemObject.php:88 ../../mod/photos.php:952
+#: ../../include/ItemObject.php:88 ../../mod/photos.php:959
 msgid "Private Message"
 msgstr "Private Nachricht"
 
 #: ../../include/ItemObject.php:95 ../../include/page_widgets.php:8
-#: ../../mod/webpages.php:101 ../../mod/settings.php:713 ../../mod/menu.php:55
-#: ../../mod/layouts.php:102 ../../mod/editlayout.php:100
-#: ../../mod/editwebpage.php:119 ../../mod/blocks.php:93
+#: ../../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/ItemObject.php:107 ../../include/conversation.php:628
-#: ../../mod/settings.php:714 ../../mod/admin.php:690 ../../mod/group.php:182
-#: ../../mod/photos.php:1130 ../../mod/connections.php:374
-#: ../../mod/filestorage.php:82
+#: ../../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/ItemObject.php:113 ../../include/conversation.php:627
+#: ../../include/ItemObject.php:113 ../../include/conversation.php:631
 msgid "Select"
 msgstr "Auswählen"
 
@@ -298,7 +330,7 @@ msgstr "Stern-Status umschalten"
 msgid "starred"
 msgstr "markiert"
 
-#: ../../include/ItemObject.php:160 ../../include/conversation.php:638
+#: ../../include/ItemObject.php:160 ../../include/conversation.php:642
 msgid "Message is verified"
 msgstr "Nachricht überprüft"
 
@@ -306,7 +338,7 @@ msgstr "Nachricht überprüft"
 msgid "add tag"
 msgstr "Schlagwort hinzufügen"
 
-#: ../../include/ItemObject.php:174 ../../mod/photos.php:1058
+#: ../../include/ItemObject.php:174 ../../mod/photos.php:1065
 msgid "I like this (toggle)"
 msgstr "Ich mag das (Umschalter)"
 
@@ -314,7 +346,7 @@ msgstr "Ich mag das (Umschalter)"
 msgid "like"
 msgstr "Gefällt-mir"
 
-#: ../../include/ItemObject.php:175 ../../mod/photos.php:1059
+#: ../../include/ItemObject.php:175 ../../mod/photos.php:1066
 msgid "I don't like this (toggle)"
 msgstr "Ich mag das nicht (Umschalter)"
 
@@ -351,20 +383,20 @@ msgstr "Wall-to-Wall"
 msgid "via Wall-To-Wall:"
 msgstr "via Wall-To-Wall:"
 
-#: ../../include/ItemObject.php:216 ../../include/conversation.php:682
+#: ../../include/ItemObject.php:216 ../../include/conversation.php:686
 #, php-format
 msgid " from %s"
 msgstr "von %s"
 
-#: ../../include/ItemObject.php:219 ../../include/conversation.php:685
+#: ../../include/ItemObject.php:219 ../../include/conversation.php:689
 #, php-format
 msgid "last edited: %s"
 msgstr "zuletzt bearbeitet: %s"
 
-#: ../../include/ItemObject.php:246 ../../include/conversation.php:702
-#: ../../include/conversation.php:1112 ../../mod/photos.php:1061
-#: ../../mod/message.php:332 ../../mod/message.php:516
-#: ../../mod/editlayout.php:109 ../../mod/editwebpage.php:128
+#: ../../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"
@@ -377,35 +409,34 @@ msgstr[0] "%d Kommentar"
 msgstr[1] "%d Kommentare"
 
 #: ../../include/ItemObject.php:268 ../../include/js_strings.php:7
-#: ../../include/contact_widgets.php:148
+#: ../../include/contact_widgets.php:125
 msgid "show more"
 msgstr "mehr zeigen"
 
-#: ../../include/ItemObject.php:527 ../../mod/photos.php:1077
-#: ../../mod/photos.php:1164
+#: ../../include/ItemObject.php:527 ../../mod/photos.php:1084
+#: ../../mod/photos.php:1171
 msgid "This is you"
 msgstr "Das bist du"
 
 #: ../../include/ItemObject.php:529 ../../include/js_strings.php:6
-#: ../../mod/photos.php:1079 ../../mod/photos.php:1166
+#: ../../mod/photos.php:1086 ../../mod/photos.php:1173
 msgid "Comment"
 msgstr "Kommentar"
 
-#: ../../include/ItemObject.php:530 ../../mod/events.php:458
-#: ../../mod/thing.php:190 ../../mod/invite.php:154 ../../mod/setup.php:302
-#: ../../mod/setup.php:345 ../../mod/settings.php:651
-#: ../../mod/settings.php:763 ../../mod/settings.php:791
-#: ../../mod/settings.php:815 ../../mod/settings.php:886
-#: ../../mod/settings.php:1054 ../../mod/connect.php:96
-#: ../../mod/sources.php:83 ../../mod/sources.php:110 ../../mod/admin.php:418
-#: ../../mod/admin.php:683 ../../mod/admin.php:823 ../../mod/admin.php:1022
-#: ../../mod/admin.php:1109 ../../mod/group.php:87 ../../mod/photos.php:685
-#: ../../mod/photos.php:779 ../../mod/photos.php:1040
-#: ../../mod/photos.php:1080 ../../mod/photos.php:1167
-#: ../../mod/message.php:333 ../../mod/message.php:515
-#: ../../mod/connections.php:452 ../../mod/profiles.php:529
-#: ../../mod/import.php:385 ../../mod/crepair.php:166 ../../mod/poke.php:166
-#: ../../mod/fsuggest.php:108 ../../mod/mood.php:137
+#: ../../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
@@ -445,62 +476,188 @@ msgstr "Link"
 msgid "Video"
 msgstr "Video"
 
-#: ../../include/ItemObject.php:539 ../../include/conversation.php:1075
-#: ../../mod/webpages.php:105 ../../mod/photos.php:1081
-#: ../../mod/editlayout.php:129 ../../mod/editwebpage.php:150
+#: ../../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/ItemObject.php:542 ../../include/conversation.php:1139
-#: ../../mod/message.php:338 ../../mod/message.php:521
+#: ../../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/Contact.php:87 ../../include/contact_widgets.php:23
-#: ../../mod/match.php:58 ../../mod/suggest.php:56 ../../mod/directory.php:198
-#: ../../boot.php:1741
+#: ../../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
 msgid "Connect"
 msgstr "Verbinden"
 
-#: ../../include/Contact.php:103
+#: ../../include/Contact.php:120
 msgid "New window"
 msgstr "Neues Fenster"
 
-#: ../../include/Contact.php:104
+#: ../../include/Contact.php:121
 msgid "Open the selected location in a different window or browser tab"
 msgstr "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab"
 
-#: ../../include/Contact.php:524 ../../include/conversation.php:930
-msgid "Poke"
-msgstr "Anstupsen"
+#: ../../include/widgets.php:26 ../../include/contact_widgets.php:87
+msgid "Categories"
+msgstr "Kategorien"
 
-#: ../../include/Contact.php:525 ../../include/conversation.php:924
-msgid "View Status"
-msgstr "Status ansehen"
+#: ../../include/widgets.php:114 ../../mod/suggest.php:53
+msgid "Ignore/Hide"
+msgstr "Ignorieren/Verstecken"
 
-#: ../../include/Contact.php:526 ../../include/nav.php:76
-#: ../../include/conversation.php:925 ../../mod/connections.php:327
-#: ../../mod/connections.php:441
-msgid "View Profile"
-msgstr "Profil ansehen"
+#: ../../include/widgets.php:120 ../../mod/connections.php:236
+msgid "Suggestions"
+msgstr "Vorschläge"
 
-#: ../../include/Contact.php:527 ../../include/conversation.php:926
-msgid "View Photos"
-msgstr "Fotos ansehen"
+#: ../../include/widgets.php:121
+msgid "See more..."
+msgstr "Mehr anzeigen..."
 
-#: ../../include/Contact.php:528
-msgid "Network Posts"
-msgstr "Netzwerkbeiträge"
+#: ../../include/widgets.php:143
+#, php-format
+msgid "You have %1$.0f of %2$.0f allowed connections."
+msgstr "Du bist %1$.0f von %2$.0f erlaubten Verbindungen eingegangen."
 
-#: ../../include/Contact.php:529 ../../include/conversation.php:928
-msgid "Edit Contact"
-msgstr "Kontakt bearbeiten"
+#: ../../include/widgets.php:149
+msgid "Add New Connection"
+msgstr "Neue Verbindung hinzufügen"
 
-#: ../../include/Contact.php:530 ../../include/conversation.php:929
-msgid "Send PM"
-msgstr "Sende PN"
+#: ../../include/widgets.php:150
+msgid "Enter the channel address"
+msgstr "Adresse des Kanals eingeben"
+
+#: ../../include/widgets.php:151
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara"
+
+#: ../../include/widgets.php:168
+msgid "Notes"
+msgstr "Notizen"
+
+#: ../../include/widgets.php:170 ../../include/text.php:738
+#: ../../include/text.php:752 ../../mod/filer.php:36
+msgid "Save"
+msgstr "Speichern"
+
+#: ../../include/widgets.php:240 ../../mod/search.php:20
+msgid "Remove term"
+msgstr "Eintrag löschen"
+
+#: ../../include/widgets.php:249 ../../include/features.php:48
+#: ../../mod/search.php:17
+msgid "Saved Searches"
+msgstr "Gesicherte Suchanfragen"
+
+#: ../../include/widgets.php:250 ../../include/group.php:290
+msgid "add"
+msgstr "hinzufügen"
+
+#: ../../include/widgets.php:280 ../../include/features.php:62
+#: ../../include/contact_widgets.php:53
+msgid "Saved Folders"
+msgstr "Gesicherte Ordner"
+
+#: ../../include/widgets.php:283 ../../include/contact_widgets.php:56
+#: ../../include/contact_widgets.php:90
+msgid "Everything"
+msgstr "Alles"
+
+#: ../../include/widgets.php:315 ../../include/items.php:3558
+msgid "Archives"
+msgstr "Archive"
+
+#: ../../include/widgets.php:367
+msgid "Refresh"
+msgstr "Aktualisieren"
+
+#: ../../include/widgets.php:368 ../../mod/connedit.php:386
+msgid "Me"
+msgstr "Ich"
+
+#: ../../include/widgets.php:369 ../../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
+msgid "Friends"
+msgstr "Freunde"
+
+#: ../../include/widgets.php:371
+msgid "Co-workers"
+msgstr "Kollegen"
+
+#: ../../include/widgets.php:372 ../../mod/connedit.php:390
+msgid "Former Friends"
+msgstr "ehem. Freunde"
+
+#: ../../include/widgets.php:373 ../../mod/connedit.php:391
+msgid "Acquaintances"
+msgstr "Bekanntschaften"
+
+#: ../../include/widgets.php:374
+msgid "Everybody"
+msgstr "Jeder"
+
+#: ../../include/widgets.php:406
+msgid "Account settings"
+msgstr "Konto-Einstellungen"
+
+#: ../../include/widgets.php:412
+msgid "Channel settings"
+msgstr "Kanal-Einstellungen"
+
+#: ../../include/widgets.php:418
+msgid "Additional features"
+msgstr "Zusätzliche Funktionen"
+
+#: ../../include/widgets.php:424
+msgid "Feature settings"
+msgstr "Funktions-Einstellungen"
+
+#: ../../include/widgets.php:430
+msgid "Display settings"
+msgstr "Anzeige-Einstellungen"
+
+#: ../../include/widgets.php:436
+msgid "Connected apps"
+msgstr "Verbundene Apps"
+
+#: ../../include/widgets.php:442
+msgid "Export channel"
+msgstr "Kanal exportieren"
+
+#: ../../include/widgets.php:454
+msgid "Automatic Permissions (Advanced)"
+msgstr "Automatische Berechtigungen (Erweitert)"
+
+#: ../../include/widgets.php:464
+msgid "Premium Channel Settings"
+msgstr "Prämium-Kanal Einstellungen"
+
+#: ../../include/widgets.php:473 ../../include/features.php:39
+#: ../../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
+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"
@@ -562,8 +719,8 @@ msgstr "OStatus"
 msgid "RSS/Atom"
 msgstr "RSS/Atom"
 
-#: ../../include/contact_selectors.php:77 ../../mod/admin.php:686
-#: ../../mod/admin.php:695 ../../boot.php:1461
+#: ../../include/contact_selectors.php:77 ../../mod/admin.php:689
+#: ../../mod/admin.php:698 ../../boot.php:1418
 msgid "Email"
 msgstr "E-Mail"
 
@@ -681,1932 +838,1875 @@ msgstr "Beginnt:"
 msgid "Finishes:"
 msgstr "Endet:"
 
-#: ../../include/event.php:40 ../../include/bb2diaspora.php:455
-#: ../../mod/events.php:450 ../../mod/directory.php:173 ../../boot.php:1791
+#: ../../include/event.php:40 ../../include/identity.php:664
+#: ../../include/bb2diaspora.php:455 ../../mod/events.php:463
+#: ../../mod/directory.php:172
 msgid "Location:"
 msgstr "Ort:"
 
-#: ../../include/features.php:21
-msgid "General Features"
-msgstr "Allgemeine Funktionen"
+#: ../../include/group.php:25
+msgid ""
+"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."
+msgstr "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."
 
-#: ../../include/features.php:23
-msgid "Content Expiration"
-msgstr "Verfall von Inhalten"
+#: ../../include/group.php:223
+msgid "Default privacy group for new contacts"
+msgstr "Standard-Privatsphärengruppe für neue Kontakte"
 
-#: ../../include/features.php:23
-msgid "Remove posts/comments and/or private messages at a future time"
-msgstr "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum."
+#: ../../include/group.php:242 ../../mod/admin.php:698
+msgid "All Channels"
+msgstr "Alle Kanäle"
 
-#: ../../include/features.php:24
-msgid "Multiple Profiles"
-msgstr "Mehrfachprofile"
+#: ../../include/group.php:264
+msgid "edit"
+msgstr "Bearbeiten"
 
-#: ../../include/features.php:24
-msgid "Ability to create multiple profiles"
-msgstr "Mehrfachprofile anlegen können"
+#: ../../include/group.php:285
+msgid "Collections"
+msgstr "Sammlungen"
 
-#: ../../include/features.php:25
-msgid "Web Pages"
-msgstr "Webseiten"
+#: ../../include/group.php:286
+msgid "Edit collection"
+msgstr "Bearbeite Sammlungen"
 
-#: ../../include/features.php:25
-msgid "Provide managed web pages on your channel"
-msgstr "Stelle verwaltete Webseiten in Deinem Kanal zur Verfügung"
+#: ../../include/group.php:287
+msgid "Create a new collection"
+msgstr "Neue Sammlung erzeugen"
 
-#: ../../include/features.php:26
-msgid "Enhanced Photo Albums"
-msgstr "Erweitertes Fotoalbum"
+#: ../../include/group.php:288
+msgid "Channels not in any collection"
+msgstr "Kanäle, die nicht in einer Sammlung sind"
 
-#: ../../include/features.php:26
-msgid "Enable photo album with enhanced features"
-msgstr "Aktiviere Fotoalbum mit erweiterten Funktionen"
+#: ../../include/js_strings.php:5
+msgid "Delete this item?"
+msgstr "Dieses Element löschen?"
 
-#: ../../include/features.php:28
-msgid "Extended Identity Sharing"
-msgstr "Erweitertes Teilen von Identitäten"
+#: ../../include/js_strings.php:8
+msgid "show fewer"
+msgstr "Zeige weniger"
 
-#: ../../include/features.php:28 ../../include/js_strings.php:30
-msgid " "
-msgstr " "
+#: ../../include/js_strings.php:9
+msgid "Password too short"
+msgstr "Kennwort zu kurz"
 
-#: ../../include/features.php:29
-msgid "Expert Mode"
-msgstr "Expertenmodus"
+#: ../../include/js_strings.php:10
+msgid "Passwords do not match"
+msgstr "Kennwörter stimmen nicht überein"
 
-#: ../../include/features.php:29
-msgid "Enable Expert Mode to provide advanced configuration options"
-msgstr "Aktiviere Expertenmodus, um fortgeschrittene Konfiguration zur Verfügung zu stellen"
+#: ../../include/js_strings.php:11 ../../mod/photos.php:39
+msgid "everybody"
+msgstr "alle"
 
-#: ../../include/features.php:30
-msgid "Premium Channel"
-msgstr "Premium-Kanal"
+#: ../../include/js_strings.php:12
+msgid "Secret Passphrase"
+msgstr "geheime Passwort-Phrase"
 
-#: ../../include/features.php:30
-msgid ""
+#: ../../include/js_strings.php:13
+msgid "Passphrase hint"
+msgstr "Hinweis zur Phrase"
+
+#: ../../include/js_strings.php:15
+msgid "timeago.prefixAgo"
+msgstr "timeago.prefixAgo"
+
+#: ../../include/js_strings.php:16
+msgid "timeago.suffixAgo"
+msgstr "timeago.suffixAgo"
+
+#: ../../include/js_strings.php:17
+msgid "ago"
+msgstr "her"
+
+#: ../../include/js_strings.php:18
+msgid "from now"
+msgstr "von jetzt"
+
+#: ../../include/js_strings.php:19
+msgid "less than a minute"
+msgstr "weniger als eine Minute"
+
+#: ../../include/js_strings.php:20
+msgid "about a minute"
+msgstr "ungefähr eine Minute"
+
+#: ../../include/js_strings.php:21
+#, php-format
+msgid "%d minutes"
+msgstr "%d Minuten"
+
+#: ../../include/js_strings.php:22
+msgid "about an hour"
+msgstr "ungefähr eine Stunde"
+
+#: ../../include/js_strings.php:23
+#, php-format
+msgid "about %d hours"
+msgstr "ungefähr %d Stunden"
+
+#: ../../include/js_strings.php:24
+msgid "a day"
+msgstr "ein Tag"
+
+#: ../../include/js_strings.php:25
+#, php-format
+msgid "%d days"
+msgstr "%d Tage"
+
+#: ../../include/js_strings.php:26
+msgid "about a month"
+msgstr "ungefähr ein Monat"
+
+#: ../../include/js_strings.php:27
+#, php-format
+msgid "%d months"
+msgstr "%d Monate"
+
+#: ../../include/js_strings.php:28
+msgid "about a year"
+msgstr "ungefähr ein Jahr"
+
+#: ../../include/js_strings.php:29
+#, php-format
+msgid "%d years"
+msgstr "%d Jahre"
+
+#: ../../include/js_strings.php:30 ../../include/features.php:29
+msgid " "
+msgstr " "
+
+#: ../../include/js_strings.php:31
+msgid "timeago.numbers"
+msgstr "timeago.numbers"
+
+#: ../../include/message.php:18
+msgid "No recipient provided."
+msgstr "Kein Empfänger angegeben"
+
+#: ../../include/message.php:23
+msgid "[no subject]"
+msgstr "[no subject]"
+
+#: ../../include/message.php:42
+msgid "Unable to determine sender."
+msgstr "Kann Absender nicht bestimmen."
+
+#: ../../include/message.php:143
+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
+#: ../../mod/profile_photo.php:78 ../../mod/profile_photo.php:225
+#: ../../mod/profile_photo.php:336
+msgid "Profile Photos"
+msgstr "Profilfotos"
+
+#: ../../include/network.php:640
+msgid "view full size"
+msgstr "In Vollbildansicht anschauen"
+
+#: ../../include/bbcode.php:94 ../../include/bbcode.php:494
+#: ../../include/bbcode.php:497
+msgid "Image/photo"
+msgstr "Bild/Foto"
+
+#: ../../include/bbcode.php:126 ../../include/bbcode.php:502
+msgid "Encrypted content"
+msgstr "Verschlüsselter Inhalt"
+
+#: ../../include/bbcode.php:173
+#, 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
+msgid "post"
+msgstr "Beitrag"
+
+#: ../../include/bbcode.php:454 ../../include/bbcode.php:474
+msgid "$1 wrote:"
+msgstr "$1 schrieb:"
+
+#: ../../include/oembed.php:150
+msgid "Embedded content"
+msgstr "Eingebetteter Inhalt"
+
+#: ../../include/oembed.php:159
+msgid "Embedding disabled"
+msgstr "Einbetten ausgeschaltet"
+
+#: ../../include/features.php:21
+msgid "General Features"
+msgstr "Allgemeine Funktionen"
+
+#: ../../include/features.php:23
+msgid "Content Expiration"
+msgstr "Verfall von Inhalten"
+
+#: ../../include/features.php:23
+msgid "Remove posts/comments and/or private messages at a future time"
+msgstr "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum."
+
+#: ../../include/features.php:24
+msgid "Multiple Profiles"
+msgstr "Mehrfachprofile"
+
+#: ../../include/features.php:24
+msgid "Ability to create multiple profiles"
+msgstr "Mehrfachprofile anlegen können"
+
+#: ../../include/features.php:25
+msgid "Web Pages"
+msgstr "Webseiten"
+
+#: ../../include/features.php:25
+msgid "Provide managed web pages on your channel"
+msgstr "Stelle verwaltete Webseiten in Deinem Kanal zur Verfügung"
+
+#: ../../include/features.php:26
+msgid "Private Notes"
+msgstr "private Notizen"
+
+#: ../../include/features.php:26
+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
+msgid "Extended Identity Sharing"
+msgstr "Erweitertes Teilen von Identitäten"
+
+#: ../../include/features.php:30
+msgid "Expert Mode"
+msgstr "Expertenmodus"
+
+#: ../../include/features.php:30
+msgid "Enable Expert Mode to provide advanced configuration options"
+msgstr "Aktiviere Expertenmodus, um fortgeschrittene Konfiguration zur Verfügung zu stellen"
+
+#: ../../include/features.php:31
+msgid "Premium Channel"
+msgstr "Premium-Kanal"
+
+#: ../../include/features.php:31
+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:35
+#: ../../include/features.php:36
 msgid "Post Composition Features"
 msgstr "Nachbearbeitungsfunktionen"
 
-#: ../../include/features.php:36
+#: ../../include/features.php:37
 msgid "Richtext Editor"
 msgstr "Formatierungseditor"
 
-#: ../../include/features.php:36
+#: ../../include/features.php:37
 msgid "Enable richtext editor"
 msgstr "Aktiviere Formatierungseditor"
 
-#: ../../include/features.php:37
+#: ../../include/features.php:38
 msgid "Post Preview"
 msgstr "Voransicht"
 
-#: ../../include/features.php:37
+#: ../../include/features.php:38
 msgid "Allow previewing posts and comments before publishing them"
 msgstr "Erlaube Voransicht von Beiträgen und Kommentaren vor Veröffentlichung"
 
-#: ../../include/features.php:38 ../../mod/settings.php:120
-#: ../../mod/sources.php:67
-msgid "Channel Sources"
-msgstr "Kanal Quellen"
-
-#: ../../include/features.php:38
+#: ../../include/features.php:39
 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:39
+#: ../../include/features.php:40
 msgid "Even More Encryption"
 msgstr "Noch mehr Verschlüsselung"
 
-#: ../../include/features.php:39
+#: ../../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:44
+#: ../../include/features.php:45
 msgid "Network and Stream Filtering"
 msgstr "Netzwerk- und Stream-Filter"
 
-#: ../../include/features.php:45
+#: ../../include/features.php:46
 msgid "Search by Date"
 msgstr "Suche nach Datum"
 
-#: ../../include/features.php:45
+#: ../../include/features.php:46
 msgid "Ability to select posts by date ranges"
 msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen"
 
-#: ../../include/features.php:46
+#: ../../include/features.php:47
 msgid "Collections Filter"
 msgstr "Filter für Sammlung"
 
-#: ../../include/features.php:46
+#: ../../include/features.php:47
 msgid "Enable widget to display Network posts only from selected collections"
 msgstr "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen"
 
-#: ../../include/features.php:47 ../../mod/search.php:17
-#: ../../mod/network.php:173
-msgid "Saved Searches"
-msgstr "Gesicherte Suchanfragen"
-
-#: ../../include/features.php:47
+#: ../../include/features.php:48
 msgid "Save search terms for re-use"
 msgstr "Gesicherte Suchbegriffe zur Wiederverwendung"
 
-#: ../../include/features.php:48
+#: ../../include/features.php:49
 msgid "Network Personal Tab"
 msgstr "Persönlicher Netzwerkreiter"
 
-#: ../../include/features.php:48
+#: ../../include/features.php:49
 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:49
+#: ../../include/features.php:50
 msgid "Network New Tab"
 msgstr "Netzwerkreiter Neu"
 
-#: ../../include/features.php:49
+#: ../../include/features.php:50
 msgid "Enable tab to display all new Network activity"
 msgstr "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen"
 
-#: ../../include/features.php:50
+#: ../../include/features.php:51
 msgid "Affinity Tool"
 msgstr "Beziehungs-Tool"
 
-#: ../../include/features.php:50
+#: ../../include/features.php:51
 msgid "Filter stream activity by depth of relationships"
 msgstr "Filter Aktivitätenstream nach Tiefe der Beziehung"
 
-#: ../../include/features.php:55
+#: ../../include/features.php:52
+msgid "Suggest Channels"
+msgstr "Kanäle Vorschlagen"
+
+#: ../../include/features.php:52
+msgid "Show channel suggestions"
+msgstr "Kanal-Vorschläge anzeigen"
+
+#: ../../include/features.php:57
 msgid "Post/Comment Tools"
 msgstr "Beitrag-/Kommentar-Tools"
 
-#: ../../include/features.php:57
+#: ../../include/features.php:59
 msgid "Edit Sent Posts"
 msgstr "Bearbeite gesendete Beiträge"
 
-#: ../../include/features.php:57
+#: ../../include/features.php:59
 msgid "Edit and correct posts and comments after sending"
 msgstr "Bearbeite und korrigiere Beiträge und Kommentare nach dem Senden"
 
-#: ../../include/features.php:58
+#: ../../include/features.php:60
 msgid "Tagging"
 msgstr "Verschlagworten"
 
-#: ../../include/features.php:58
+#: ../../include/features.php:60
 msgid "Ability to tag existing posts"
 msgstr "Möglichkeit, um existierende Beiträge zu verschlagworten"
 
-#: ../../include/features.php:59
+#: ../../include/features.php:61
 msgid "Post Categories"
 msgstr "Beitrags-Kategorien"
 
-#: ../../include/features.php:59
+#: ../../include/features.php:61
 msgid "Add categories to your posts"
 msgstr "Kategorien für Beiträge"
 
-#: ../../include/features.php:60 ../../include/contact_widgets.php:76
-msgid "Saved Folders"
-msgstr "Gesicherte Ordner"
-
-#: ../../include/features.php:60
+#: ../../include/features.php:62
 msgid "Ability to file posts under folders"
 msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln"
 
-#: ../../include/features.php:61
+#: ../../include/features.php:63
 msgid "Dislike Posts"
 msgstr "Gefällt-mir-nicht Beiträge"
 
-#: ../../include/features.php:61
+#: ../../include/features.php:63
 msgid "Ability to dislike posts/comments"
 msgstr "Möglichkeit für Gefällt-mir-nicht für Beiträge/Kommentare"
 
-#: ../../include/features.php:62
+#: ../../include/features.php:64
 msgid "Star Posts"
 msgstr "Beiträge mit Sternchen versehen"
 
-#: ../../include/features.php:62
+#: ../../include/features.php:64
 msgid "Ability to mark special posts with a star indicator"
 msgstr "Möglichkeit, spezielle Beiträge mit Sternchen-Symbol zu markieren"
 
-#: ../../include/features.php:63
+#: ../../include/features.php:65
 msgid "Tag Cloud"
 msgstr "Tag Wolke"
 
-#: ../../include/features.php:63
+#: ../../include/features.php:65
 msgid "Provide a personal tag cloud on your channel page"
 msgstr "Persönliche Schlagwort-Wolke für deine Kanal-Seite anlegen"
 
-#: ../../include/group.php:25
-msgid ""
-"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."
-msgstr "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."
+#: ../../include/notify.php:23
+msgid "created a new post"
+msgstr "Neuer Beitrag wurde erzeugt"
 
-#: ../../include/group.php:223
-msgid "Default privacy group for new contacts"
-msgstr "Standard-Privatsphärengruppe für neue Kontakte"
+#: ../../include/notify.php:24
+#, php-format
+msgid "commented on %s's post"
+msgstr "hat %s's Beitrag kommentiert"
 
-#: ../../include/group.php:242 ../../mod/admin.php:695
-msgid "All Channels"
-msgstr "Alle Kanäle"
+#: ../../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
+#: ../../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/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/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
+msgid "Permission denied."
+msgstr "Zugang verweigert"
 
-#: ../../include/group.php:264
-msgid "edit"
-msgstr "Bearbeiten"
+#: ../../include/photos.php:88
+#, php-format
+msgid "Image exceeds website size limit of %lu bytes"
+msgstr "Bild überschreitet das Limit der Webseite von %lu bytes"
 
-#: ../../include/group.php:285
-msgid "Collections"
-msgstr "Sammlungen"
+#: ../../include/photos.php:95
+msgid "Image file is empty."
+msgstr "Bilddatei ist leer."
 
-#: ../../include/group.php:286
-msgid "Edit collection"
-msgstr "Bearbeite Sammlungen"
+#: ../../include/photos.php:124 ../../mod/profile_photo.php:147
+msgid "Unable to process image"
+msgstr "Kann Bild nicht verarbeiten"
 
-#: ../../include/group.php:287
-msgid "Create a new collection"
-msgstr "Neue Sammlung erzeugen"
+#: ../../include/photos.php:186
+msgid "Photo storage failed."
+msgstr "Foto speichern schlug fehl"
 
-#: ../../include/group.php:288
-msgid "Channels not in any collection"
-msgstr "Kanäle, die nicht in einer Sammlung sind"
+#: ../../include/photos.php:296 ../../include/conversation.php:1457
+msgid "Photo Albums"
+msgstr "Fotoalben"
 
-#: ../../include/group.php:290 ../../mod/network.php:174
-msgid "add"
-msgstr "hinzufügen"
+#: ../../include/photos.php:300 ../../mod/photos.php:809
+#: ../../mod/photos.php:1283
+msgid "Upload New Photos"
+msgstr "Lade neue Fotos hoch"
 
-#: ../../include/js_strings.php:5
-msgid "Delete this item?"
-msgstr "Dieses Element löschen?"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Männlich"
 
-#: ../../include/js_strings.php:8
-msgid "show fewer"
-msgstr "Zeige weniger"
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Weiblich"
 
-#: ../../include/js_strings.php:9
-msgid "Password too short"
-msgstr "Kennwort zu kurz"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Momentan männlich"
 
-#: ../../include/js_strings.php:10
-msgid "Passwords do not match"
-msgstr "Kennwörter stimmen nicht überein"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Momentan weiblich"
 
-#: ../../include/js_strings.php:11 ../../mod/photos.php:45
-msgid "everybody"
-msgstr "alle"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Größtenteils männlich"
 
-#: ../../include/js_strings.php:12
-msgid "Secret Passphrase"
-msgstr "geheime Passwort-Phrase"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Größtenteils weiblich"
 
-#: ../../include/js_strings.php:13
-msgid "Passphrase hint"
-msgstr "Hinweis zur Phrase"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transsexuell"
 
-#: ../../include/js_strings.php:15
-msgid "timeago.prefixAgo"
-msgstr "timeago.prefixAgo"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Zwischengeschlechtlich"
 
-#: ../../include/js_strings.php:16
-msgid "timeago.suffixAgo"
-msgstr "timeago.suffixAgo"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transsexuell"
 
-#: ../../include/js_strings.php:17
-msgid "ago"
-msgstr "her"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Zwitter"
 
-#: ../../include/js_strings.php:18
-msgid "from now"
-msgstr "von jetzt"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Geschlechtslos"
 
-#: ../../include/js_strings.php:19
-msgid "less than a minute"
-msgstr "weniger als eine Minute"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "unklar"
 
-#: ../../include/js_strings.php:20
-msgid "about a minute"
-msgstr "ungefähr eine Minute"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Anders"
 
-#: ../../include/js_strings.php:21
-#, php-format
-msgid "%d minutes"
-msgstr "%d Minuten"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Unentschieden"
 
-#: ../../include/js_strings.php:22
-msgid "about an hour"
-msgstr "ungefähr eine Stunde"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Männer"
 
-#: ../../include/js_strings.php:23
-#, php-format
-msgid "about %d hours"
-msgstr "ungefähr %d Stunden"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Frauen"
 
-#: ../../include/js_strings.php:24
-msgid "a day"
-msgstr "ein Tag"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Schwul"
 
-#: ../../include/js_strings.php:25
-#, php-format
-msgid "%d days"
-msgstr "%d Tage"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbisch"
 
-#: ../../include/js_strings.php:26
-msgid "about a month"
-msgstr "ungefähr ein Monat"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Keine Bevorzugung"
 
-#: ../../include/js_strings.php:27
-#, php-format
-msgid "%d months"
-msgstr "%d Monate"
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bisexuell"
 
-#: ../../include/js_strings.php:28
-msgid "about a year"
-msgstr "ungefähr ein Jahr"
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autosexuell"
 
-#: ../../include/js_strings.php:29
-#, php-format
-msgid "%d years"
-msgstr "%d Jahre"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Enthaltsam"
 
-#: ../../include/js_strings.php:31
-msgid "timeago.numbers"
-msgstr "timeago.numbers"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Jungfräulich"
 
-#: ../../include/message.php:18
-msgid "No recipient provided."
-msgstr "Kein Empfänger angegeben"
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Abweichend"
 
-#: ../../include/message.php:23
-msgid "[no subject]"
-msgstr "[no subject]"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetisch"
 
-#: ../../include/message.php:42
-msgid "Unable to determine sender."
-msgstr "Kann Absender nicht bestimmen."
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Unmengen"
 
-#: ../../include/message.php:143
-msgid "Stored post could not be verified."
-msgstr "Gespeicherter Beitrag konnten nicht überprüft werden."
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Sexlos"
 
-#: ../../include/network.php:1113
-msgid "view full size"
-msgstr "In Vollbildansicht anschauen"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Single"
 
-#: ../../include/photo/photo_driver.php:609 ../../include/photos.php:51
-#: ../../mod/photos.php:97 ../../mod/photos.php:764 ../../mod/photos.php:786
-#: ../../mod/profile_photo.php:88 ../../mod/profile_photo.php:235
-#: ../../mod/profile_photo.php:346
-msgid "Profile Photos"
-msgstr "Profilfotos"
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Einsam"
 
-#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:118
-#: ../../mod/profperm.php:112
-msgid "Profile"
-msgstr "Profil"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Verfügbar"
 
-#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1062
-msgid "Full Name:"
-msgstr "Voller Name:"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Nicht verfügbar"
 
-#: ../../include/profile_advanced.php:17 ../../mod/directory.php:175
-#: ../../boot.php:1793
-msgid "Gender:"
-msgstr "Geschlecht:"
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "Verguckt"
 
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "j F, Y"
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "Verknallt"
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "j F"
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Lerne gerade jemanden kennen"
 
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "Geburtstag:"
-
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Alter:"
-
-#: ../../include/profile_advanced.php:37 ../../mod/directory.php:177
-#: ../../boot.php:1794
-msgid "Status:"
-msgstr "Status:"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Treulos"
 
-#: ../../include/profile_advanced.php:43
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "für %1$d %2$s"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Sexabhängig"
 
-#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:549
-msgid "Sexual Preference:"
-msgstr "Sexuelle Orientierung:"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Freunde/Begünstigte"
 
-#: ../../include/profile_advanced.php:48 ../../mod/directory.php:179
-#: ../../boot.php:1795
-msgid "Homepage:"
-msgstr "Homepage:"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Lose"
 
-#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:551
-msgid "Hometown:"
-msgstr "Heimatstadt:"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Verlobt"
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Schlagworte:"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Verheiratet"
 
-#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:552
-msgid "Political Views:"
-msgstr "Politische Ansichten:"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "Gewissermaßen verheiratet"
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Religion:"
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partner"
 
-#: ../../include/profile_advanced.php:58 ../../mod/directory.php:181
-msgid "About:"
-msgstr "Über:"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "Lebensgemeinschaft"
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Hobbys/Interessen:"
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "Informelle Ehe"
 
-#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:555
-msgid "Likes:"
-msgstr "Gefällt-mir:"
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Glücklich"
 
-#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:556
-msgid "Dislikes:"
-msgstr "Gefällt-mir-nicht:"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Nicht Ausschau haltend"
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Kontaktinformation und soziale Netzwerke:"
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Swinger"
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Musikalische Interessen:"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Betrogen"
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Bücher, Literatur:"
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Getrennt"
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Fernsehen:"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Labil"
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Film/Tanz/Kultur/Unterhaltung:"
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Geschieden"
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Liebe/Romantik:"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "Gewissermaßen geschieden"
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Arbeit/Anstellung:"
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Verwitwet"
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "Schule/Ausbildung:"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Ungewiss"
 
-#: ../../include/text.php:312
-msgid "prev"
-msgstr "vorherige"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "Es ist kompliziert"
 
-#: ../../include/text.php:314
-msgid "first"
-msgstr "erste"
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Interessiert mich nicht"
 
-#: ../../include/text.php:343
-msgid "last"
-msgstr "letzte"
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Frag mich mal"
 
-#: ../../include/text.php:346
-msgid "next"
-msgstr "nächste"
+#: ../../include/attach.php:184 ../../include/attach.php:232
+msgid "Item was not found."
+msgstr "Beitrag wurde nicht gefunden."
 
-#: ../../include/text.php:358
-msgid "older"
-msgstr "älter"
+#: ../../include/attach.php:285
+msgid "No source file."
+msgstr "Keine Quelldatei."
 
-#: ../../include/text.php:360
-msgid "newer"
-msgstr "neuer"
+#: ../../include/attach.php:302
+msgid "Cannot locate file to replace"
+msgstr "Kann Datei zum Ersetzen nicht finden"
 
-#: ../../include/text.php:651
-msgid "No connections"
-msgstr "Keine Verbindungen"
+#: ../../include/attach.php:320
+msgid "Cannot locate file to revise/update"
+msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden"
 
-#: ../../include/text.php:662
+#: ../../include/attach.php:331
 #, php-format
-msgid "%d Connection"
-msgid_plural "%d Connections"
-msgstr[0] "%d Verbindung"
-msgstr[1] "%d Verbindungen"
+msgid "File exceeds size limit of %d"
+msgstr "Datei überschreitet das Größen-Limit von %d"
 
-#: ../../include/text.php:674
-msgid "View Connections"
-msgstr "Zeige Verbindungen"
+#: ../../include/attach.php:342
+#, 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/text.php:733 ../../include/nav.php:135
-#: ../../mod/search.php:96
-msgid "Search"
-msgstr "Suche"
+#: ../../include/attach.php:424
+msgid "File upload failed. Possible system limit or action terminated."
+msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."
 
-#: ../../include/text.php:735 ../../mod/filer.php:36
-msgid "Save"
-msgstr "Speichern"
+#: ../../include/attach.php:436
+msgid "Stored file could not be verified. Upload failed."
+msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."
 
-#: ../../include/text.php:773
-msgid "poke"
-msgstr "anstupsen"
+#: ../../include/attach.php:480 ../../include/attach.php:497
+msgid "Path not available."
+msgstr "Pfad nicht verfügbar."
 
-#: ../../include/text.php:773 ../../include/conversation.php:236
-msgid "poked"
-msgstr "stupste"
+#: ../../include/attach.php:544
+msgid "Empty pathname"
+msgstr "leere Pfadangabe"
 
-#: ../../include/text.php:774
-msgid "ping"
-msgstr "anpingen"
+#: ../../include/attach.php:562
+msgid "duplicate filename or path"
+msgstr "doppelter Dateiname oder Pfad"
 
-#: ../../include/text.php:774
-msgid "pinged"
-msgstr "pingte"
+#: ../../include/attach.php:584
+msgid "Path not found."
+msgstr "Pfad nicht gefunden."
 
-#: ../../include/text.php:775
-msgid "prod"
-msgstr "knuffen"
+#: ../../include/attach.php:628
+msgid "mkdir failed."
+msgstr "mkdir fehlgeschlagen."
 
-#: ../../include/text.php:775
-msgid "prodded"
-msgstr "knuffte"
+#: ../../include/attach.php:632
+msgid "database storage failed."
+msgstr "Speichern in der Datenbank fehlgeschlagen."
 
-#: ../../include/text.php:776
-msgid "slap"
-msgstr "ohrfeigen"
+#: ../../include/zot.php:545
+msgid "Invalid data packet"
+msgstr "Ungültiges Datenpaket"
 
-#: ../../include/text.php:776
-msgid "slapped"
-msgstr "ohrfeigte"
+#: ../../include/zot.php:555
+msgid "Unable to verify channel signature"
+msgstr "Konnte die Signatur des Kanals nicht verifizieren"
 
-#: ../../include/text.php:777
-msgid "finger"
-msgstr "befummeln"
+#: ../../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/text.php:777
-msgid "fingered"
-msgstr "befummelte"
+#: ../../include/nav.php:72 ../../include/nav.php:87 ../../boot.php:1415
+msgid "Logout"
+msgstr "Abmelden"
 
-#: ../../include/text.php:778
-msgid "rebuff"
-msgstr "eine Abfuhr erteilen"
+#: ../../include/nav.php:72 ../../include/nav.php:87
+msgid "End this session"
+msgstr "Beende diese Sitzung"
 
-#: ../../include/text.php:778
-msgid "rebuffed"
-msgstr "abfuhrerteilte"
+#: ../../include/nav.php:75 ../../include/nav.php:121
+msgid "Home"
+msgstr "Home"
 
-#: ../../include/text.php:790
-msgid "happy"
-msgstr "glücklich"
+#: ../../include/nav.php:75
+msgid "Your posts and conversations"
+msgstr "Deine Beiträge und Unterhaltungen"
 
-#: ../../include/text.php:791
-msgid "sad"
-msgstr "traurig"
+#: ../../include/nav.php:76 ../../include/conversation.php:929
+#: ../../mod/connedit.php:309 ../../mod/connedit.php:423
+msgid "View Profile"
+msgstr "Profil ansehen"
 
-#: ../../include/text.php:792
-msgid "mellow"
-msgstr "sanft"
+#: ../../include/nav.php:76
+msgid "Your profile page"
+msgstr "Deine Profilseite"
 
-#: ../../include/text.php:793
-msgid "tired"
-msgstr "müde"
+#: ../../include/nav.php:78
+msgid "Edit Profiles"
+msgstr "Profile bearbeiten"
 
-#: ../../include/text.php:794
-msgid "perky"
-msgstr "frech"
+#: ../../include/nav.php:78
+msgid "Manage/Edit Profiles"
+msgstr "Verwalte/Bearbeite Profile"
 
-#: ../../include/text.php:795
-msgid "angry"
-msgstr "sauer"
+#: ../../include/nav.php:79 ../../include/conversation.php:1454
+#: ../../mod/fbrowser.php:25
+msgid "Photos"
+msgstr "Fotos"
 
-#: ../../include/text.php:796
-msgid "stupified"
-msgstr "verblüfft"
+#: ../../include/nav.php:79
+msgid "Your photos"
+msgstr "Deine Bilder"
 
-#: ../../include/text.php:797
-msgid "puzzled"
-msgstr "verwirrt"
+#: ../../include/nav.php:85 ../../boot.php:1416
+msgid "Login"
+msgstr "Anmelden"
 
-#: ../../include/text.php:798
-msgid "interested"
-msgstr "interessiert"
+#: ../../include/nav.php:85
+msgid "Sign in"
+msgstr "Anmelden"
 
-#: ../../include/text.php:799
-msgid "bitter"
-msgstr "verbittert"
+#: ../../include/nav.php:102
+#, php-format
+msgid "%s - click to logout"
+msgstr "%s - Klick zum Abmelden"
 
-#: ../../include/text.php:800
-msgid "cheerful"
-msgstr "fröhlich"
+#: ../../include/nav.php:107
+msgid "Click to authenticate to your home hub"
+msgstr "Klick zum Authentifizieren bei Deinem Heimat-Hub"
 
-#: ../../include/text.php:801
-msgid "alive"
-msgstr "lebendig"
+#: ../../include/nav.php:121
+msgid "Home Page"
+msgstr "Homepage"
 
-#: ../../include/text.php:802
-msgid "annoyed"
-msgstr "verärgert"
+#: ../../include/nav.php:125 ../../mod/register.php:195 ../../boot.php:1392
+msgid "Register"
+msgstr "Registrieren"
 
-#: ../../include/text.php:803
-msgid "anxious"
-msgstr "unruhig"
+#: ../../include/nav.php:125
+msgid "Create an account"
+msgstr "Erzeuge ein Konto"
 
-#: ../../include/text.php:804
-msgid "cranky"
-msgstr "schrullig"
+#: ../../include/nav.php:130 ../../mod/help.php:60 ../../mod/help.php:64
+msgid "Help"
+msgstr "Hilfe"
 
-#: ../../include/text.php:805
-msgid "disturbed"
-msgstr "verstört"
+#: ../../include/nav.php:130
+msgid "Help and documentation"
+msgstr "Hilfe und Dokumentation"
 
-#: ../../include/text.php:806
-msgid "frustrated"
-msgstr "frustriert"
+#: ../../include/nav.php:133
+msgid "Apps"
+msgstr "Apps"
 
-#: ../../include/text.php:807
-msgid "motivated"
-msgstr "motiviert"
+#: ../../include/nav.php:133
+msgid "Addon applications, utilities, games"
+msgstr "Addon Programme, Helferlein, Spiele"
 
-#: ../../include/text.php:808
-msgid "relaxed"
-msgstr "entspannt"
+#: ../../include/nav.php:135 ../../include/text.php:736
+#: ../../include/text.php:750 ../../mod/search.php:96
+msgid "Search"
+msgstr "Suche"
 
-#: ../../include/text.php:809
-msgid "surprised"
-msgstr "überrascht"
+#: ../../include/nav.php:135
+msgid "Search site content"
+msgstr "Durchsuche Seiten-Inhalt"
 
-#: ../../include/text.php:973
-msgid "Monday"
-msgstr "Montag"
+#: ../../include/nav.php:138 ../../mod/directory.php:226
+msgid "Directory"
+msgstr "Verzeichnis"
 
-#: ../../include/text.php:973
-msgid "Tuesday"
-msgstr "Dienstag"
+#: ../../include/nav.php:138
+msgid "Channel Locator"
+msgstr "Kanal-Anzeiger"
 
-#: ../../include/text.php:973
-msgid "Wednesday"
-msgstr "Mittwoch"
+#: ../../include/nav.php:149
+msgid "Matrix"
+msgstr "Matrix"
 
-#: ../../include/text.php:973
-msgid "Thursday"
-msgstr "Donnerstag"
+#: ../../include/nav.php:149
+msgid "Your matrix"
+msgstr "Deine Matrix"
 
-#: ../../include/text.php:973
-msgid "Friday"
-msgstr "Freitag"
+#: ../../include/nav.php:150
+msgid "Mark all matrix notifications seen"
+msgstr "Markiere alle Matrix-Benachrichtigungen als angesehen"
 
-#: ../../include/text.php:973
-msgid "Saturday"
-msgstr "Samstag"
+#: ../../include/nav.php:152
+msgid "Channel Home"
+msgstr "Mein Kanal"
 
-#: ../../include/text.php:973
-msgid "Sunday"
-msgstr "Sonntag"
+#: ../../include/nav.php:152
+msgid "Channel home"
+msgstr "Mein Kanal"
 
-#: ../../include/text.php:977
-msgid "January"
-msgstr "Januar"
+#: ../../include/nav.php:153
+msgid "Mark all channel notifications seen"
+msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen"
 
-#: ../../include/text.php:977
-msgid "February"
-msgstr "Februar"
+#: ../../include/nav.php:156
+msgid "Intros"
+msgstr "Vorstellungen"
 
-#: ../../include/text.php:977
-msgid "March"
-msgstr "März"
+#: ../../include/nav.php:156 ../../mod/connections.php:242
+msgid "New Connections"
+msgstr "Neue Verbindungen"
 
-#: ../../include/text.php:977
-msgid "April"
-msgstr "April"
+#: ../../include/nav.php:159
+msgid "Notices"
+msgstr "Benachrichtigungen"
 
-#: ../../include/text.php:977
-msgid "May"
-msgstr "Mai"
+#: ../../include/nav.php:159
+msgid "Notifications"
+msgstr "Benachrichtigungen"
 
-#: ../../include/text.php:977
-msgid "June"
-msgstr "Juni"
+#: ../../include/nav.php:160
+msgid "See all notifications"
+msgstr "Alle Benachrichtigungen ansehen"
 
-#: ../../include/text.php:977
-msgid "July"
-msgstr "Juli"
+#: ../../include/nav.php:161
+msgid "Mark all system notifications seen"
+msgstr "Markiere alle System-Benachrichtigungen als gesehen"
 
-#: ../../include/text.php:977
-msgid "August"
-msgstr "August"
+#: ../../include/nav.php:163
+msgid "Mail"
+msgstr "Mail"
 
-#: ../../include/text.php:977
-msgid "September"
-msgstr "September"
+#: ../../include/nav.php:163
+msgid "Private mail"
+msgstr "Persönliche Mail"
 
-#: ../../include/text.php:977
-msgid "October"
-msgstr "Oktober"
+#: ../../include/nav.php:164
+msgid "See all private messages"
+msgstr "Alle persönlichen Nachrichten ansehen"
 
-#: ../../include/text.php:977
-msgid "November"
-msgstr "November"
+#: ../../include/nav.php:165
+msgid "Mark all private messages seen"
+msgstr "Markiere alle persönlichen Nachrichten als gesehen"
 
-#: ../../include/text.php:977
-msgid "December"
-msgstr "Dezember"
+#: ../../include/nav.php:166
+msgid "Inbox"
+msgstr "Eingang"
 
-#: ../../include/text.php:1055 ../../mod/message.php:453
-msgid "unknown.???"
-msgstr "unbekannt.???"
+#: ../../include/nav.php:167
+msgid "Outbox"
+msgstr "Ausgang"
 
-#: ../../include/text.php:1056 ../../mod/message.php:454
-msgid "bytes"
-msgstr "Bytes"
+#: ../../include/nav.php:171 ../../include/conversation.php:1465
+#: ../../mod/events.php:354
+msgid "Events"
+msgstr "Veranstaltungen"
 
-#: ../../include/text.php:1091
-msgid "remove category"
-msgstr "Kategorie entfernen"
+#: ../../include/nav.php:171
+msgid "Event Calendar"
+msgstr "Veranstaltungskalender"
 
-#: ../../include/text.php:1113
-msgid "remove from file"
-msgstr "aus der Datei entfernen"
+#: ../../include/nav.php:172
+msgid "See all events"
+msgstr "Alle Ereignisse ansehen"
 
-#: ../../include/text.php:1167 ../../include/text.php:1179
-msgid "Click to open/close"
-msgstr "Klicke zum Öffnen/Schließen"
+#: ../../include/nav.php:173
+msgid "Mark all events seen"
+msgstr "Markiere alle Ereignisse als gesehen"
 
-#: ../../include/text.php:1355 ../../mod/events.php:326
-msgid "link to source"
-msgstr "Link zum Originalbeitrag"
+#: ../../include/nav.php:175
+msgid "Channel Select"
+msgstr "Kanal-Auswahl"
 
-#: ../../include/text.php:1374
-msgid "Select a page layout: "
-msgstr "Ein Seiten-Layout auswählen"
+#: ../../include/nav.php:175
+msgid "Manage Your Channels"
+msgstr "Verwalte Deine Kanäle"
 
-#: ../../include/text.php:1377 ../../include/text.php:1442
-msgid "default"
-msgstr "Standard"
+#: ../../include/nav.php:177
+msgid "Account/Channel Settings"
+msgstr "Konto-/Kanal-Einstellungen"
 
-#: ../../include/text.php:1413
-msgid "Page content type: "
-msgstr "Content-Typ der Seite"
+#: ../../include/nav.php:179 ../../mod/connections.php:349
+msgid "Connections"
+msgstr "Verbindungen"
 
-#: ../../include/text.php:1454
-msgid "Select an alternate language"
-msgstr "Wähle eine alternative Sprache"
+#: ../../include/nav.php:179
+msgid "Manage/Edit Friends and Connections"
+msgstr "Verwalte/Bearbeite Freunde und Verbindungen"
 
-#: ../../include/text.php:1606 ../../include/conversation.php:117
-#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:45
-msgid "photo"
-msgstr "Foto"
+#: ../../include/nav.php:186 ../../mod/admin.php:111
+msgid "Admin"
+msgstr "Admin"
 
-#: ../../include/text.php:1609 ../../include/conversation.php:120
-#: ../../mod/tagger.php:49
-msgid "event"
-msgstr "Ereignis"
+#: ../../include/nav.php:186
+msgid "Site Setup and Configuration"
+msgstr "Seiten-Einrichtung und -Konfiguration"
 
-#: ../../include/text.php:1612 ../../include/conversation.php:145
-#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:53
-msgid "status"
-msgstr "Status"
+#: ../../include/nav.php:212
+msgid "Nothing new here"
+msgstr "Nichts Neues hier"
 
-#: ../../include/text.php:1614 ../../include/conversation.php:147
-#: ../../mod/tagger.php:55
-msgid "comment"
-msgstr "Kommentar"
+#: ../../include/nav.php:217
+msgid "Please wait..."
+msgstr "Bitte warten..."
 
-#: ../../include/text.php:1619
-msgid "activity"
-msgstr "Aktivität"
+#: ../../include/taxonomy.php:210
+msgid "Tags"
+msgstr "Tags"
 
-#: ../../include/text.php:1881
-msgid "Design"
-msgstr "Design"
+#: ../../include/taxonomy.php:224
+msgid "Keywords"
+msgstr "Schlüsselbegriffe"
 
-#: ../../include/text.php:1883
-msgid "Blocks"
-msgstr "Blöcke"
+#: ../../include/taxonomy.php:249
+msgid "have"
+msgstr "habe"
 
-#: ../../include/text.php:1884
-msgid "Menus"
-msgstr "Menüs"
+#: ../../include/taxonomy.php:249
+msgid "has"
+msgstr "hat"
 
-#: ../../include/text.php:1885
-msgid "Layouts"
-msgstr "Layouts"
+#: ../../include/taxonomy.php:250
+msgid "want"
+msgstr "will"
 
-#: ../../include/text.php:1886
-msgid "Pages"
-msgstr "Seiten"
+#: ../../include/taxonomy.php:250
+msgid "wants"
+msgstr "will"
 
-#: ../../include/api.php:972
-msgid "Public Timeline"
-msgstr "Öffentliche Zeitleiste"
+#: ../../include/taxonomy.php:251
+msgid "likes"
+msgstr "Gefällt-mir"
 
-#: ../../include/identity.php:14 ../../mod/item.php:1148
-msgid "Unable to obtain identity information from database"
-msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen"
+#: ../../include/taxonomy.php:252
+msgid "dislikes"
+msgstr "Gefällt-mir-nicht"
 
-#: ../../include/identity.php:36
-msgid "Empty name"
-msgstr "Namensfeld leer"
+#: ../../include/account.php:23
+msgid "Not a valid email address"
+msgstr "Ungültige E-Mail-Adresse"
 
-#: ../../include/identity.php:38
-msgid "Name too long"
-msgstr "Name ist zu lang"
+#: ../../include/account.php:25
+msgid "Your email domain is not among those allowed on this site"
+msgstr "Deine E-Mail-Adresse ist nicht unter denen, die auf dieser Seite erlaubt sind"
 
-#: ../../include/identity.php:80
-msgid "No account identifier"
-msgstr "Keine Account-Kennung"
+#: ../../include/account.php:31
+msgid "Your email address is already registered at this site."
+msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."
 
-#: ../../include/identity.php:90
-msgid "Nickname is required."
-msgstr "Spitzname ist erforderlich."
+#: ../../include/account.php:64
+msgid "An invitation is required."
+msgstr "Eine Einladung wird benötigt"
 
-#: ../../include/identity.php:104
-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/account.php:68
+msgid "Invitation could not be verified."
+msgstr "Die Einladung konnte nicht bestätigt werden"
 
-#: ../../include/identity.php:163
-msgid "Unable to retrieve created identity"
-msgstr "Kann die erstellte Identität nicht empfangen"
+#: ../../include/account.php:118
+msgid "Please enter the required information."
+msgstr "Bitte gib die benötigten Informationen ein."
 
-#: ../../include/identity.php:220
-msgid "Default Profile"
-msgstr "Standard-Profil"
+#: ../../include/account.php:186
+msgid "Failed to store account information."
+msgstr "Speichern der Account-Informationen fehlgeschlagen"
 
-#: ../../include/identity.php:245 ../../include/profile_selectors.php:42
-#: ../../mod/network.php:387 ../../mod/connections.php:407
-msgid "Friends"
-msgstr "Freunde"
+#: ../../include/account.php:272
+#, php-format
+msgid "Registration request at %s"
+msgstr "Registrierungsanfrage auf %s"
 
-#: ../../include/bbcode.php:94 ../../include/bbcode.php:494
-#: ../../include/bbcode.php:497
-msgid "Image/photo"
-msgstr "Bild/Foto"
+#: ../../include/account.php:274 ../../include/account.php:301
+#: ../../include/account.php:358
+msgid "Administrator"
+msgstr "Administrator"
 
-#: ../../include/bbcode.php:126 ../../include/bbcode.php:502
-msgid "Encrypted content"
-msgstr "Verschlüsselter Inhalt"
+#: ../../include/account.php:296
+msgid "your registration password"
+msgstr "dein Registrierungspasswort"
 
-#: ../../include/bbcode.php:173
+#: ../../include/account.php:299 ../../include/account.php:356
 #, php-format
-msgid "%1$s wrote the following %2$s %3$s"
-msgstr "%1$s schrieb den folgenden %2$s %3$s"
+msgid "Registration details for %s"
+msgstr "Registrierungsdetails für %s"
 
-#: ../../include/bbcode.php:175
-msgid "post"
-msgstr "Beitrag"
+#: ../../include/account.php:365
+msgid "Account approved."
+msgstr "Account bestätigt."
 
-#: ../../include/bbcode.php:454 ../../include/bbcode.php:474
-msgid "$1 wrote:"
-msgstr "$1 schrieb:"
+#: ../../include/account.php:399
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registrierung für %s widerrufen"
 
-#: ../../include/oembed.php:149
-msgid "Embedded content"
-msgstr "Eingebetteter Inhalt"
+#: ../../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/oembed.php:158
-msgid "Embedding disabled"
-msgstr "Einbetten ausgeschaltet"
+#: ../../include/conversation.php:120 ../../include/text.php:1624
+#: ../../mod/tagger.php:49
+msgid "event"
+msgstr "Ereignis"
 
-#: ../../include/notify.php:23
-msgid "created a new post"
-msgstr "Neuer Beitrag wurde erzeugt"
+#: ../../include/conversation.php:123
+msgid "channel"
+msgstr "Kanal"
 
-#: ../../include/notify.php:24
-#, php-format
-msgid "commented on %s's post"
-msgstr "hat %s's Beitrag kommentiert"
+#: ../../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/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:3608 ../../mod/common.php:43
-#: ../../mod/events.php:134 ../../mod/invite.php:13 ../../mod/invite.php:102
-#: ../../mod/allfriends.php:10 ../../mod/webpages.php:40 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/lastpost.php:93 ../../mod/page.php:30
-#: ../../mod/page.php:80 ../../mod/setup.php:200 ../../mod/settings.php:628
-#: ../../mod/viewconnections.php:33 ../../mod/viewconnections.php:38
-#: ../../mod/delegate.php:6 ../../mod/sources.php:48 ../../mod/mitem.php:92
-#: ../../mod/group.php:15 ../../mod/photos.php:74 ../../mod/photos.php:654
-#: ../../mod/viewsrc.php:12 ../../mod/menu.php:40 ../../mod/message.php:208
-#: ../../mod/layouts.php:27 ../../mod/layouts.php:42 ../../mod/network.php:7
-#: ../../mod/intro.php:50 ../../mod/connections.php:197
-#: ../../mod/profiles.php:163 ../../mod/profiles.php:476
-#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97
-#: ../../mod/filestorage.php:26 ../../mod/manage.php:6
-#: ../../mod/crepair.php:115 ../../mod/editlayout.php:48
-#: ../../mod/nogroup.php:25 ../../mod/profile_photo.php:197
-#: ../../mod/profile_photo.php:210 ../../mod/editwebpage.php:42
-#: ../../mod/editwebpage.php:64 ../../mod/notifications.php:66
-#: ../../mod/blocks.php:29 ../../mod/blocks.php:44 ../../mod/editpost.php:13
-#: ../../mod/poke.php:128 ../../mod/channel.php:123 ../../mod/fsuggest.php:78
-#: ../../mod/editblock.php:48 ../../mod/item.php:181 ../../mod/item.php:189
-#: ../../mod/suggest.php:32 ../../mod/register.php:68 ../../mod/regmod.php:18
-#: ../../mod/mood.php:114 ../../index.php:178 ../../index.php:340
-msgid "Permission denied."
-msgstr "Zugang verweigert"
+#: ../../include/conversation.php:147 ../../include/text.php:1629
+#: ../../mod/tagger.php:55
+msgid "comment"
+msgstr "Kommentar"
 
-#: ../../include/photos.php:88
+#: ../../include/conversation.php:161 ../../mod/like.php:134
 #, php-format
-msgid "Image exceeds website size limit of %lu bytes"
-msgstr "Bild überschreitet das Limit der Webseite von %lu bytes"
-
-#: ../../include/photos.php:95
-msgid "Image file is empty."
-msgstr "Bilddatei ist leer."
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s mag %2$s's %3$s"
 
-#: ../../include/photos.php:124 ../../mod/profile_photo.php:157
-msgid "Unable to process image"
-msgstr "Kann Bild nicht verarbeiten"
+#: ../../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/photos.php:186
-msgid "Photo storage failed."
-msgstr "Foto speichern schlug fehl"
+#: ../../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/photos.php:288 ../../boot.php:2242
-msgid "Photo Albums"
-msgstr "Fotoalben"
+#: ../../include/conversation.php:236
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s stupste %2$s"
 
-#: ../../include/photos.php:292 ../../mod/photos.php:802
-#: ../../mod/photos.php:1276
-msgid "Upload New Photos"
-msgstr "Lade neue Fotos hoch"
+#: ../../include/conversation.php:240 ../../include/text.php:790
+msgid "poked"
+msgstr "stupste"
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Männlich"
+#: ../../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/profile_selectors.php:6
-msgid "Female"
-msgstr "Weiblich"
+#: ../../include/conversation.php:662
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Schaue Dir %s's Profil auf %s an."
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Momentan männlich"
+#: ../../include/conversation.php:676
+msgid "Categories:"
+msgstr "Kategorien:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Momentan weiblich"
+#: ../../include/conversation.php:677
+msgid "Filed under:"
+msgstr "Gespeichert unter:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Größtenteils männlich"
+#: ../../include/conversation.php:704
+msgid "View in context"
+msgstr "Im Zusammenhang anschauen"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Größtenteils weiblich"
+#: ../../include/conversation.php:830
+msgid "remove"
+msgstr "lösche"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transsexuell"
+#: ../../include/conversation.php:834
+msgid "Loading..."
+msgstr "Lädt ..."
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Zwischengeschlechtlich"
+#: ../../include/conversation.php:835
+msgid "Delete Selected Items"
+msgstr "Lösche die ausgewählten Elemente"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transsexuell"
+#: ../../include/conversation.php:926
+msgid "View Source"
+msgstr "Quelle anzeigen"
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Zwitter"
+#: ../../include/conversation.php:927
+msgid "Follow Thread"
+msgstr "Unterhaltung folgen"
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Geschlechtslos"
+#: ../../include/conversation.php:928
+msgid "View Status"
+msgstr "Status ansehen"
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "unklar"
+#: ../../include/conversation.php:930
+msgid "View Photos"
+msgstr "Fotos ansehen"
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Anders"
+#: ../../include/conversation.php:931
+msgid "Matrix Activity"
+msgstr "Matrix Aktivität"
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Unentschieden"
+#: ../../include/conversation.php:932
+msgid "Edit Contact"
+msgstr "Kontakt bearbeiten"
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Männer"
+#: ../../include/conversation.php:933
+msgid "Send PM"
+msgstr "Sende PN"
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Frauen"
+#: ../../include/conversation.php:934
+msgid "Poke"
+msgstr "Anstupsen"
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Schwul"
+#: ../../include/conversation.php:996
+#, php-format
+msgid "%s likes this."
+msgstr "%s gefällt das."
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbisch"
+#: ../../include/conversation.php:996
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s gefällt das nicht."
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Keine Bevorzugung"
+#: ../../include/conversation.php:1000
+#, 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/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bisexuell"
+#: ../../include/conversation.php:1002
+#, 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/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autosexuell"
+#: ../../include/conversation.php:1008
+msgid "and"
+msgstr "und"
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Enthaltsam"
+#: ../../include/conversation.php:1011
+#, php-format
+msgid ", and %d other people"
+msgid_plural ", and %d other people"
+msgstr[0] ""
+msgstr[1] ", und %d andere"
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Jungfräulich"
+#: ../../include/conversation.php:1012
+#, php-format
+msgid "%s like this."
+msgstr "%s gefällt das."
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Abweichend"
+#: ../../include/conversation.php:1012
+#, php-format
+msgid "%s don't like this."
+msgstr "%s gefällt das nicht."
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetisch"
+#: ../../include/conversation.php:1062
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Sichtbar für <strong>jeden</strong>"
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Unmengen"
+#: ../../include/conversation.php:1063 ../../mod/message.php:258
+#: ../../mod/message.php:393
+msgid "Please enter a link URL:"
+msgstr "Gib eine URL ein:"
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Sexlos"
+#: ../../include/conversation.php:1064
+msgid "Please enter a video link/URL:"
+msgstr "Gib einen Video-Link/URL ein:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Single"
+#: ../../include/conversation.php:1065
+msgid "Please enter an audio link/URL:"
+msgstr "Gib einen Audio-Link/URL ein:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Einsam"
+#: ../../include/conversation.php:1066
+msgid "Tag term:"
+msgstr "Schlagwort:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Verfügbar"
+#: ../../include/conversation.php:1067 ../../mod/filer.php:35
+msgid "Save to Folder:"
+msgstr "Speichern in Ordner:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Nicht verfügbar"
+#: ../../include/conversation.php:1068
+msgid "Where are you right now?"
+msgstr "Wo bist du jetzt grade?"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "Verguckt"
+#: ../../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/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "Verknallt"
+#: ../../include/conversation.php:1093 ../../mod/photos.php:1067
+msgid "Share"
+msgstr "Teilen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Lerne gerade jemanden kennen"
+#: ../../include/conversation.php:1095 ../../mod/editwebpage.php:139
+msgid "Page link title"
+msgstr "Seitentitel-Link"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Treulos"
+#: ../../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/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Sexabhängig"
+#: ../../include/conversation.php:1098
+msgid "upload photo"
+msgstr "Foto hochladen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Freunde/Begünstigte"
+#: ../../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/profile_selectors.php:42
-msgid "Casual"
-msgstr "Lose"
+#: ../../include/conversation.php:1100
+msgid "attach file"
+msgstr "Datei anfügen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Verlobt"
+#: ../../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/profile_selectors.php:42
-msgid "Married"
-msgstr "Verheiratet"
+#: ../../include/conversation.php:1102
+msgid "web link"
+msgstr "Web-Link"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "Gewissermaßen verheiratet"
+#: ../../include/conversation.php:1103
+msgid "Insert video link"
+msgstr "Video-Link einfügen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partner"
+#: ../../include/conversation.php:1104
+msgid "video link"
+msgstr "Video-Link"
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "Lebensgemeinschaft"
+#: ../../include/conversation.php:1105
+msgid "Insert audio link"
+msgstr "Audio-Link einfügen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr "Informelle Ehe"
+#: ../../include/conversation.php:1106
+msgid "audio link"
+msgstr "Audio-Link"
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Glücklich"
+#: ../../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/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Nicht Ausschau haltend"
+#: ../../include/conversation.php:1108
+msgid "set location"
+msgstr "Standort"
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: ../../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/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Betrogen"
+#: ../../include/conversation.php:1110
+msgid "clear location"
+msgstr "Standort löschen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Getrennt"
+#: ../../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/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Labil"
+#: ../../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/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Geschieden"
+#: ../../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"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "Gewissermaßen geschieden"
+#: ../../include/conversation.php:1118
+msgid "permissions"
+msgstr "Berechtigungen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Verwitwet"
+#: ../../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/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Ungewiss"
+#: ../../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/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "Es ist kompliziert"
+#: ../../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/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Interessiert mich nicht"
+#: ../../include/conversation.php:1368
+msgid "Commented Order"
+msgstr "Neueste Kommentare"
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Frag mich mal"
+#: ../../include/conversation.php:1371
+msgid "Sort by Comment Date"
+msgstr "Nach Kommentardatum sortiert"
 
-#: ../../include/attach.php:184 ../../include/attach.php:232
-msgid "Item was not found."
-msgstr "Beitrag wurde nicht gefunden."
+#: ../../include/conversation.php:1374
+msgid "Posted Order"
+msgstr "Neueste Beiträge"
 
-#: ../../include/attach.php:285
-msgid "No source file."
-msgstr "Keine Quelldatei."
+#: ../../include/conversation.php:1377
+msgid "Sort by Post Date"
+msgstr "Nach Beitragsdatum sortiert"
 
-#: ../../include/attach.php:302
-msgid "Cannot locate file to replace"
-msgstr "Kann Datei zum Ersetzen nicht finden"
+#: ../../include/conversation.php:1381
+msgid "Personal"
+msgstr "Persönlich"
 
-#: ../../include/attach.php:320
-msgid "Cannot locate file to revise/update"
-msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden"
+#: ../../include/conversation.php:1384
+msgid "Posts that mention or involve you"
+msgstr "Beiträge, in denen es um dich geht"
 
-#: ../../include/attach.php:331
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Datei überschreitet das Größen-Limit von %d"
+#: ../../include/conversation.php:1387 ../../mod/menu.php:57
+#: ../../mod/connections.php:209
+msgid "New"
+msgstr "Neu"
 
-#: ../../include/attach.php:342
-#, 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/conversation.php:1390
+msgid "Activity Stream - by date"
+msgstr "Activity Stream - nach Datum sortiert"
 
-#: ../../include/attach.php:424
-msgid "File upload failed. Possible system limit or action terminated."
-msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."
+#: ../../include/conversation.php:1397
+msgid "Starred"
+msgstr "Markiert"
 
-#: ../../include/attach.php:436
-msgid "Stored file could not be verified. Upload failed."
-msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."
+#: ../../include/conversation.php:1400
+msgid "Favourite Posts"
+msgstr "Beiträge mit Sternchen"
 
-#: ../../include/attach.php:480 ../../include/attach.php:497
-msgid "Path not available."
-msgstr "Pfad nicht verfügbar."
+#: ../../include/conversation.php:1407
+msgid "Spam"
+msgstr "Spam"
 
-#: ../../include/attach.php:544
-msgid "Empty pathname"
-msgstr "leere Pfadangabe"
+#: ../../include/conversation.php:1410
+msgid "Posts flagged as SPAM"
+msgstr "Nachrichten die als SPAM markiert wurden"
 
-#: ../../include/attach.php:562
-msgid "duplicate filename or path"
-msgstr "doppelter Dateiname oder Pfad"
+#: ../../include/conversation.php:1440
+msgid "Channel"
+msgstr "Kanal"
 
-#: ../../include/attach.php:584
-msgid "Path not found."
-msgstr "Pfad nicht gefunden."
+#: ../../include/conversation.php:1443
+msgid "Status Messages and Posts"
+msgstr "Statusnachrichten und Beiträge"
 
-#: ../../include/attach.php:628
-msgid "mkdir failed."
-msgstr "mkdir fehlgeschlagen."
+#: ../../include/conversation.php:1447
+msgid "About"
+msgstr "Über"
 
-#: ../../include/attach.php:632
-msgid "database storage failed."
-msgstr "Speichern in der Datenbank fehlgeschlagen."
+#: ../../include/conversation.php:1450
+msgid "Profile Details"
+msgstr "Profil-Details"
 
-#: ../../include/zot.php:542
-msgid "Invalid data packet"
-msgstr "Ungültiges Datenpaket"
+#: ../../include/conversation.php:1468
+msgid "Events and Calendar"
+msgstr "Veranstaltungen und Kalender"
 
-#: ../../include/zot.php:552
-msgid "Unable to verify channel signature"
-msgstr "Konnte die Signatur des Kanals nicht verifizieren"
+#: ../../include/conversation.php:1473
+msgid "Webpages"
+msgstr "Webseiten"
 
-#: ../../include/zot.php:697
-#, php-format
-msgid "Unable to verify site signature for %s"
-msgstr "Kann die Signatur der Seite von %s nicht verifizieren"
+#: ../../include/conversation.php:1476
+msgid "Manage Webpages"
+msgstr "Webseiten verwalten"
 
-#: ../../include/nav.php:72 ../../include/nav.php:87 ../../boot.php:1458
-msgid "Logout"
-msgstr "Abmelden"
+#: ../../include/auth.php:69
+msgid "Logged out."
+msgstr "Ausgeloggt."
 
-#: ../../include/nav.php:72 ../../include/nav.php:87
-msgid "End this session"
-msgstr "Beende diese Sitzung"
+#: ../../include/auth.php:181
+msgid "Failed authentication"
+msgstr "Authentifizierung fehlgeschlagen"
 
-#: ../../include/nav.php:75 ../../include/nav.php:121
-msgid "Home"
-msgstr "Home"
+#: ../../include/auth.php:190
+msgid "Login failed."
+msgstr "Login fehlgeschlagen."
 
-#: ../../include/nav.php:75
-msgid "Your posts and conversations"
-msgstr "Deine Beiträge und Unterhaltungen"
+#: ../../include/contact_widgets.php:14
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d Einladung verfügbar"
+msgstr[1] "%d Einladungen verfügbar"
 
-#: ../../include/nav.php:76
-msgid "Your profile page"
-msgstr "Deine Profilseite"
+#: ../../include/contact_widgets.php:20
+msgid "Find Channels"
+msgstr "Finde Kanäle"
 
-#: ../../include/nav.php:78
-msgid "Edit Profiles"
-msgstr "Profile bearbeiten"
+#: ../../include/contact_widgets.php:21
+msgid "Enter name or interest"
+msgstr "Name oder Interessen eingeben"
 
-#: ../../include/nav.php:78
-msgid "Manage/Edit Profiles"
-msgstr "Verwalte/Bearbeite Profile"
+#: ../../include/contact_widgets.php:22
+msgid "Connect/Follow"
+msgstr "Verbinden/Folgen"
 
-#: ../../include/nav.php:79 ../../mod/fbrowser.php:25 ../../boot.php:2239
-msgid "Photos"
-msgstr "Fotos"
+#: ../../include/contact_widgets.php:23
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Beispiele: Robert Morgenstein, Angeln"
 
-#: ../../include/nav.php:79
-msgid "Your photos"
-msgstr "Deine Bilder"
+#: ../../include/contact_widgets.php:24 ../../mod/connections.php:355
+#: ../../mod/directory.php:222 ../../mod/directory.php:227
+msgid "Find"
+msgstr "Finde"
 
-#: ../../include/nav.php:85 ../../boot.php:1459
-msgid "Login"
-msgstr "Anmelden"
+#: ../../include/contact_widgets.php:25 ../../mod/suggest.php:59
+msgid "Channel Suggestions"
+msgstr "Kanal-Vorschläge"
 
-#: ../../include/nav.php:85
-msgid "Sign in"
-msgstr "Anmelden"
+#: ../../include/contact_widgets.php:27
+msgid "Random Profile"
+msgstr "Zufallsprofil"
 
-#: ../../include/nav.php:102
+#: ../../include/contact_widgets.php:28
+msgid "Invite Friends"
+msgstr "Lade Freunde ein"
+
+#: ../../include/contact_widgets.php:120
 #, php-format
-msgid "%s - click to logout"
-msgstr "%s - Klick zum Abmelden"
+msgid "%d connection in common"
+msgid_plural "%d connections in common"
+msgstr[0] "%d gemeinsame Verbindung"
+msgstr[1] "%d gemeinsame Verbindungen"
 
-#: ../../include/nav.php:107
-msgid "Click to authenticate to your home hub"
-msgstr "Klick zum Authentifizieren bei Deinem Heimat-Hub"
+#: ../../include/page_widgets.php:6
+msgid "New Page"
+msgstr "Neue Seite"
 
-#: ../../include/nav.php:121
-msgid "Home Page"
-msgstr "Homepage"
+#: ../../include/text.php:315
+msgid "prev"
+msgstr "vorherige"
 
-#: ../../include/nav.php:125 ../../mod/register.php:195 ../../boot.php:1435
-msgid "Register"
-msgstr "Registrieren"
+#: ../../include/text.php:317
+msgid "first"
+msgstr "erste"
 
-#: ../../include/nav.php:125
-msgid "Create an account"
-msgstr "Erzeuge ein Konto"
+#: ../../include/text.php:346
+msgid "last"
+msgstr "letzte"
 
-#: ../../include/nav.php:130 ../../mod/help.php:45 ../../mod/help.php:49
-msgid "Help"
-msgstr "Hilfe"
+#: ../../include/text.php:349
+msgid "next"
+msgstr "nächste"
 
-#: ../../include/nav.php:130
-msgid "Help and documentation"
-msgstr "Hilfe und Dokumentation"
+#: ../../include/text.php:361
+msgid "older"
+msgstr "älter"
 
-#: ../../include/nav.php:133
-msgid "Apps"
-msgstr "Apps"
+#: ../../include/text.php:363
+msgid "newer"
+msgstr "neuer"
 
-#: ../../include/nav.php:133
-msgid "Addon applications, utilities, games"
-msgstr "Addon Programme, Helferlein, Spiele"
+#: ../../include/text.php:654
+msgid "No connections"
+msgstr "Keine Verbindungen"
 
-#: ../../include/nav.php:135
-msgid "Search site content"
-msgstr "Durchsuche Seiten-Inhalt"
+#: ../../include/text.php:665
+#, php-format
+msgid "%d Connection"
+msgid_plural "%d Connections"
+msgstr[0] "%d Verbindung"
+msgstr[1] "%d Verbindungen"
 
-#: ../../include/nav.php:138 ../../mod/directory.php:225
-msgid "Directory"
-msgstr "Verzeichnis"
+#: ../../include/text.php:677
+msgid "View Connections"
+msgstr "Zeige Verbindungen"
 
-#: ../../include/nav.php:138
-msgid "Channel Locator"
-msgstr "Kanal-Anzeiger"
+#: ../../include/text.php:790
+msgid "poke"
+msgstr "anstupsen"
 
-#: ../../include/nav.php:149
-msgid "Matrix"
-msgstr "Matrix"
+#: ../../include/text.php:791
+msgid "ping"
+msgstr "anpingen"
 
-#: ../../include/nav.php:149
-msgid "Your matrix"
-msgstr "Deine Matrix"
+#: ../../include/text.php:791
+msgid "pinged"
+msgstr "pingte"
 
-#: ../../include/nav.php:150
-msgid "See all matrix notifications"
-msgstr "Alle Matrix-Benachrichtigungen ansehen"
+#: ../../include/text.php:792
+msgid "prod"
+msgstr "knuffen"
 
-#: ../../include/nav.php:151
-msgid "Mark all matrix notifications seen"
-msgstr "Markiere alle Matrix-Benachrichtigungen als angesehen"
+#: ../../include/text.php:792
+msgid "prodded"
+msgstr "knuffte"
 
-#: ../../include/nav.php:153
-msgid "Channel Home"
-msgstr "Mein Kanal"
+#: ../../include/text.php:793
+msgid "slap"
+msgstr "ohrfeigen"
 
-#: ../../include/nav.php:153
-msgid "Channel home"
-msgstr "Mein Kanal"
+#: ../../include/text.php:793
+msgid "slapped"
+msgstr "ohrfeigte"
 
-#: ../../include/nav.php:154
-msgid "See all channel notifications"
-msgstr "Alle Kanal-Benachrichtigungen ansehen"
+#: ../../include/text.php:794
+msgid "finger"
+msgstr "befummeln"
 
-#: ../../include/nav.php:155
-msgid "Mark all channel notifications seen"
-msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen"
+#: ../../include/text.php:794
+msgid "fingered"
+msgstr "befummelte"
 
-#: ../../include/nav.php:158
-msgid "Intros"
-msgstr "Vorstellungen"
+#: ../../include/text.php:795
+msgid "rebuff"
+msgstr "eine Abfuhr erteilen"
 
-#: ../../include/nav.php:158 ../../mod/connections.php:585
-msgid "New Connections"
-msgstr "Neue Verbindungen"
+#: ../../include/text.php:795
+msgid "rebuffed"
+msgstr "abfuhrerteilte"
 
-#: ../../include/nav.php:159
-msgid "See all channel introductions"
-msgstr "Alle Kanal-Einladungen ansehen"
+#: ../../include/text.php:807
+msgid "happy"
+msgstr "glücklich"
 
-#: ../../include/nav.php:162
-msgid "Notices"
-msgstr "Benachrichtigungen"
+#: ../../include/text.php:808
+msgid "sad"
+msgstr "traurig"
 
-#: ../../include/nav.php:162 ../../mod/notifications.php:218
-msgid "Notifications"
-msgstr "Benachrichtigungen"
+#: ../../include/text.php:809
+msgid "mellow"
+msgstr "sanft"
 
-#: ../../include/nav.php:163
-msgid "See all notifications"
-msgstr "Alle Benachrichtigungen ansehen"
+#: ../../include/text.php:810
+msgid "tired"
+msgstr "müde"
 
-#: ../../include/nav.php:164
-msgid "Mark all system notifications seen"
-msgstr "Markiere alle System-Benachrichtigungen als gesehen"
+#: ../../include/text.php:811
+msgid "perky"
+msgstr "frech"
 
-#: ../../include/nav.php:166
-msgid "Mail"
-msgstr "Mail"
+#: ../../include/text.php:812
+msgid "angry"
+msgstr "sauer"
 
-#: ../../include/nav.php:166
-msgid "Private mail"
-msgstr "Persönliche Mail"
+#: ../../include/text.php:813
+msgid "stupified"
+msgstr "verblüfft"
 
-#: ../../include/nav.php:167
-msgid "See all private messages"
-msgstr "Alle persönlichen Nachrichten ansehen"
+#: ../../include/text.php:814
+msgid "puzzled"
+msgstr "verwirrt"
 
-#: ../../include/nav.php:168
-msgid "Mark all private messages seen"
-msgstr "Markiere alle persönlichen Nachrichten als gesehen"
+#: ../../include/text.php:815
+msgid "interested"
+msgstr "interessiert"
 
-#: ../../include/nav.php:169
-msgid "Inbox"
-msgstr "Eingang"
+#: ../../include/text.php:816
+msgid "bitter"
+msgstr "verbittert"
 
-#: ../../include/nav.php:170
-msgid "Outbox"
-msgstr "Ausgang"
+#: ../../include/text.php:817
+msgid "cheerful"
+msgstr "fröhlich"
 
-#: ../../include/nav.php:171 ../../mod/message.php:24
-msgid "New Message"
-msgstr "Neue Nachricht"
+#: ../../include/text.php:818
+msgid "alive"
+msgstr "lebendig"
 
-#: ../../include/nav.php:174 ../../mod/events.php:348 ../../boot.php:2250
-msgid "Events"
-msgstr "Veranstaltungen"
+#: ../../include/text.php:819
+msgid "annoyed"
+msgstr "verärgert"
 
-#: ../../include/nav.php:174
-msgid "Event Calendar"
-msgstr "Veranstaltungskalender"
+#: ../../include/text.php:820
+msgid "anxious"
+msgstr "unruhig"
 
-#: ../../include/nav.php:175
-msgid "See all events"
-msgstr "Alle Ereignisse ansehen"
+#: ../../include/text.php:821
+msgid "cranky"
+msgstr "schrullig"
 
-#: ../../include/nav.php:176
-msgid "Mark all events seen"
-msgstr "Markiere alle Ereignisse als gesehen"
+#: ../../include/text.php:822
+msgid "disturbed"
+msgstr "verstört"
 
-#: ../../include/nav.php:178
-msgid "Channel Select"
-msgstr "Kanal-Auswahl"
+#: ../../include/text.php:823
+msgid "frustrated"
+msgstr "frustriert"
 
-#: ../../include/nav.php:178
-msgid "Manage Your Channels"
-msgstr "Verwalte Deine Kanäle"
+#: ../../include/text.php:824
+msgid "motivated"
+msgstr "motiviert"
 
-#: ../../include/nav.php:180 ../../mod/settings.php:131
-#: ../../mod/admin.php:782 ../../mod/admin.php:987
-msgid "Settings"
-msgstr "Einstellungen"
+#: ../../include/text.php:825
+msgid "relaxed"
+msgstr "entspannt"
 
-#: ../../include/nav.php:180
-msgid "Account/Channel Settings"
-msgstr "Konto-/Kanal-Einstellungen"
+#: ../../include/text.php:826
+msgid "surprised"
+msgstr "überrascht"
 
-#: ../../include/nav.php:182 ../../mod/connections.php:691
-msgid "Connections"
-msgstr "Verbindungen"
+#: ../../include/text.php:988
+msgid "Monday"
+msgstr "Montag"
 
-#: ../../include/nav.php:182
-msgid "Manage/Edit Friends and Connections"
-msgstr "Verwalte/Bearbeite Freunde und Verbindungen"
+#: ../../include/text.php:988
+msgid "Tuesday"
+msgstr "Dienstag"
 
-#: ../../include/nav.php:189 ../../mod/admin.php:111
-msgid "Admin"
-msgstr "Admin"
+#: ../../include/text.php:988
+msgid "Wednesday"
+msgstr "Mittwoch"
 
-#: ../../include/nav.php:189
-msgid "Site Setup and Configuration"
-msgstr "Seiten-Einrichtung und -Konfiguration"
+#: ../../include/text.php:988
+msgid "Thursday"
+msgstr "Donnerstag"
 
-#: ../../include/nav.php:215
-msgid "Nothing new here"
-msgstr "Nichts Neues hier"
+#: ../../include/text.php:988
+msgid "Friday"
+msgstr "Freitag"
 
-#: ../../include/nav.php:220
-msgid "Please wait..."
-msgstr "Bitte warten..."
+#: ../../include/text.php:988
+msgid "Saturday"
+msgstr "Samstag"
 
-#: ../../include/account.php:23
-msgid "Not a valid email address"
-msgstr "Ungültige E-Mail-Adresse"
+#: ../../include/text.php:988
+msgid "Sunday"
+msgstr "Sonntag"
 
-#: ../../include/account.php:25
-msgid "Your email domain is not among those allowed on this site"
-msgstr "Deine E-Mail-Adresse ist nicht unter denen, die auf dieser Seite erlaubt sind"
+#: ../../include/text.php:992
+msgid "January"
+msgstr "Januar"
 
-#: ../../include/account.php:31
-msgid "Your email address is already registered at this site."
-msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."
+#: ../../include/text.php:992
+msgid "February"
+msgstr "Februar"
 
-#: ../../include/account.php:64
-msgid "An invitation is required."
-msgstr "Eine Einladung wird benötigt"
+#: ../../include/text.php:992
+msgid "March"
+msgstr "März"
 
-#: ../../include/account.php:68
-msgid "Invitation could not be verified."
-msgstr "Die Einladung konnte nicht bestätigt werden"
+#: ../../include/text.php:992
+msgid "April"
+msgstr "April"
 
-#: ../../include/account.php:118
-msgid "Please enter the required information."
-msgstr "Bitte gib die benötigten Informationen ein."
+#: ../../include/text.php:992
+msgid "May"
+msgstr "Mai"
 
-#: ../../include/account.php:186
-msgid "Failed to store account information."
-msgstr "Speichern der Account-Informationen fehlgeschlagen"
+#: ../../include/text.php:992
+msgid "June"
+msgstr "Juni"
 
-#: ../../include/account.php:272
-#, php-format
-msgid "Registration request at %s"
-msgstr "Registrierungsanfrage auf %s"
+#: ../../include/text.php:992
+msgid "July"
+msgstr "Juli"
 
-#: ../../include/account.php:274 ../../include/account.php:301
-#: ../../include/account.php:358
-msgid "Administrator"
-msgstr "Administrator"
+#: ../../include/text.php:992
+msgid "August"
+msgstr "August"
 
-#: ../../include/account.php:296
-msgid "your registration password"
-msgstr "dein Registrierungspasswort"
+#: ../../include/text.php:992
+msgid "September"
+msgstr "September"
 
-#: ../../include/account.php:299 ../../include/account.php:356
-#, php-format
-msgid "Registration details for %s"
-msgstr "Registrierungsdetails für %s"
+#: ../../include/text.php:992
+msgid "October"
+msgstr "Oktober"
 
-#: ../../include/account.php:365
-msgid "Account approved."
-msgstr "Account bestätigt."
+#: ../../include/text.php:992
+msgid "November"
+msgstr "November"
 
-#: ../../include/account.php:399
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrierung für %s widerrufen"
+#: ../../include/text.php:992
+msgid "December"
+msgstr "Dezember"
 
-#: ../../include/conversation.php:123
-msgid "channel"
-msgstr "Kanal"
+#: ../../include/text.php:1070
+msgid "unknown.???"
+msgstr "unbekannt.???"
 
-#: ../../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/text.php:1071
+msgid "bytes"
+msgstr "Bytes"
 
-#: ../../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/text.php:1106
+msgid "remove category"
+msgstr "Kategorie entfernen"
 
-#: ../../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/text.php:1128
+msgid "remove from file"
+msgstr "aus der Datei entfernen"
 
-#: ../../include/conversation.php:232
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s stupste %2$s"
+#: ../../include/text.php:1182 ../../include/text.php:1194
+msgid "Click to open/close"
+msgstr "Klicke zum Öffnen/Schließen"
 
-#: ../../include/conversation.php:254 ../../mod/mood.php:63
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s ist momentan %2$s"
+#: ../../include/text.php:1370 ../../mod/events.php:332
+msgid "link to source"
+msgstr "Link zum Originalbeitrag"
 
-#: ../../include/conversation.php:658
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Schaue Dir %s's Profil auf %s an."
+#: ../../include/text.php:1389
+msgid "Select a page layout: "
+msgstr "Ein Seiten-Layout auswählen"
 
-#: ../../include/conversation.php:672
-msgid "Categories:"
-msgstr "Kategorien:"
+#: ../../include/text.php:1392 ../../include/text.php:1457
+msgid "default"
+msgstr "Standard"
 
-#: ../../include/conversation.php:673
-msgid "Filed under:"
-msgstr "Gespeichert unter:"
+#: ../../include/text.php:1428
+msgid "Page content type: "
+msgstr "Content-Typ der Seite"
 
-#: ../../include/conversation.php:700
-msgid "View in context"
-msgstr "Im Zusammenhang anschauen"
+#: ../../include/text.php:1469
+msgid "Select an alternate language"
+msgstr "Wähle eine alternative Sprache"
 
-#: ../../include/conversation.php:826
-msgid "remove"
-msgstr "lösche"
+#: ../../include/text.php:1634
+msgid "activity"
+msgstr "Aktivität"
 
-#: ../../include/conversation.php:830
-msgid "Loading..."
-msgstr "Lädt ..."
+#: ../../include/text.php:1896
+msgid "Design"
+msgstr "Design"
 
-#: ../../include/conversation.php:831
-msgid "Delete Selected Items"
-msgstr "Lösche die ausgewählten Elemente"
+#: ../../include/text.php:1898
+msgid "Blocks"
+msgstr "Blöcke"
 
-#: ../../include/conversation.php:922
-msgid "View Source"
-msgstr "Quelle anzeigen"
+#: ../../include/text.php:1899
+msgid "Menus"
+msgstr "Menüs"
 
-#: ../../include/conversation.php:923
-msgid "Follow Thread"
-msgstr "Unterhaltung folgen"
+#: ../../include/text.php:1900
+msgid "Layouts"
+msgstr "Layouts"
 
-#: ../../include/conversation.php:927
-msgid "Matrix Activity"
-msgstr "Matrix Aktivität"
+#: ../../include/text.php:1901
+msgid "Pages"
+msgstr "Seiten"
 
-#: ../../include/conversation.php:992
-#, php-format
-msgid "%s likes this."
-msgstr "%s gefällt das."
+#: ../../include/plugin.php:475 ../../include/plugin.php:477
+msgid "Click here to upgrade."
+msgstr "Klicke hier, um das Upgrade durchzuführen."
 
-#: ../../include/conversation.php:992
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s gefällt das nicht."
+#: ../../include/plugin.php:483
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements."
 
-#: ../../include/conversation.php:996
-#, 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] "<span  %1$s>%2$d Personen</span> mögen dies."
+#: ../../include/plugin.php:488
+msgid "This action is not available under your subscription plan."
+msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."
 
-#: ../../include/conversation.php:998
-#, 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] "<span  %1$s>%2$d Personen</span> mögen dies nicht."
+#: ../../include/follow.php:21
+msgid "Channel is blocked on this site."
+msgstr "Der Kanal ist auf dieser Seite blockiert "
 
-#: ../../include/conversation.php:1004
-msgid "and"
-msgstr "und"
+#: ../../include/follow.php:26
+msgid "Channel location missing."
+msgstr "Adresse des Kanals fehlt."
 
-#: ../../include/conversation.php:1007
-#, php-format
-msgid ", and %d other people"
-msgid_plural ", and %d other people"
-msgstr[0] ""
-msgstr[1] ", und %d andere"
-
-#: ../../include/conversation.php:1008
-#, php-format
-msgid "%s like this."
-msgstr "%s gefällt das."
-
-#: ../../include/conversation.php:1008
-#, php-format
-msgid "%s don't like this."
-msgstr "%s gefällt das nicht."
-
-#: ../../include/conversation.php:1058
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Sichtbar für <strong>jeden</strong>"
-
-#: ../../include/conversation.php:1059 ../../mod/message.php:281
-#: ../../mod/message.php:417
-msgid "Please enter a link URL:"
-msgstr "Gib eine URL ein:"
-
-#: ../../include/conversation.php:1060
-msgid "Please enter a video link/URL:"
-msgstr "Gib einen Video-Link/URL ein:"
-
-#: ../../include/conversation.php:1061
-msgid "Please enter an audio link/URL:"
-msgstr "Gib einen Audio-Link/URL ein:"
-
-#: ../../include/conversation.php:1062
-msgid "Tag term:"
-msgstr "Schlagwort:"
-
-#: ../../include/conversation.php:1063 ../../mod/filer.php:35
-msgid "Save to Folder:"
-msgstr "Speichern in Ordner:"
-
-#: ../../include/conversation.php:1064
-msgid "Where are you right now?"
-msgstr "Wo bist du jetzt grade?"
-
-#: ../../include/conversation.php:1065 ../../mod/message.php:282
-#: ../../mod/message.php:418 ../../mod/editpost.php:52
-msgid "Expires YYYY-MM-DD HH:MM"
-msgstr "Verfällt YYYY-MM-DD HH;MM"
-
-#: ../../include/conversation.php:1089 ../../mod/photos.php:1060
-msgid "Share"
-msgstr "Teilen"
-
-#: ../../include/conversation.php:1091
-msgid "Page link title"
-msgstr "Seitentitel-Link"
-
-#: ../../include/conversation.php:1093 ../../mod/message.php:329
-#: ../../mod/message.php:512 ../../mod/editlayout.php:101
-#: ../../mod/editwebpage.php:120 ../../mod/editpost.php:98
-#: ../../mod/editblock.php:115
-msgid "Upload photo"
-msgstr "Foto hochladen"
-
-#: ../../include/conversation.php:1094
-msgid "upload photo"
-msgstr "Foto hochladen"
-
-#: ../../include/conversation.php:1095 ../../mod/message.php:330
-#: ../../mod/message.php:513 ../../mod/editlayout.php:102
-#: ../../mod/editwebpage.php:121 ../../mod/editpost.php:99
-#: ../../mod/editblock.php:116
-msgid "Attach file"
-msgstr "Datei anhängen"
-
-#: ../../include/conversation.php:1096
-msgid "attach file"
-msgstr "Datei anfügen"
-
-#: ../../include/conversation.php:1097 ../../mod/message.php:331
-#: ../../mod/message.php:514 ../../mod/editlayout.php:103
-#: ../../mod/editwebpage.php:122 ../../mod/editpost.php:100
-#: ../../mod/editblock.php:117
-msgid "Insert web link"
-msgstr "Link einfügen"
-
-#: ../../include/conversation.php:1098
-msgid "web link"
-msgstr "Web-Link"
-
-#: ../../include/conversation.php:1099
-msgid "Insert video link"
-msgstr "Video-Link einfügen"
-
-#: ../../include/conversation.php:1100
-msgid "video link"
-msgstr "Video-Link"
-
-#: ../../include/conversation.php:1101
-msgid "Insert audio link"
-msgstr "Audio-Link einfügen"
-
-#: ../../include/conversation.php:1102
-msgid "audio link"
-msgstr "Audio-Link"
-
-#: ../../include/conversation.php:1103 ../../mod/editlayout.php:107
-#: ../../mod/editwebpage.php:126 ../../mod/editpost.php:104
-#: ../../mod/editblock.php:121
-msgid "Set your location"
-msgstr "Standort"
-
-#: ../../include/conversation.php:1104
-msgid "set location"
-msgstr "Standort"
-
-#: ../../include/conversation.php:1105 ../../mod/editlayout.php:108
-#: ../../mod/editwebpage.php:127 ../../mod/editpost.php:105
-#: ../../mod/editblock.php:122
-msgid "Clear browser location"
-msgstr "Browser-Standort löschen"
-
-#: ../../include/conversation.php:1106
-msgid "clear location"
-msgstr "Standort löschen"
-
-#: ../../include/conversation.php:1108 ../../mod/editlayout.php:121
-#: ../../mod/editwebpage.php:142 ../../mod/editpost.php:118
-#: ../../mod/editblock.php:136
-msgid "Set title"
-msgstr "Titel"
-
-#: ../../include/conversation.php:1111 ../../mod/editlayout.php:123
-#: ../../mod/editwebpage.php:144 ../../mod/editpost.php:120
-#: ../../mod/editblock.php:138
-msgid "Categories (comma-separated list)"
-msgstr "Kategorien (Kommagetrennte Liste)"
-
-#: ../../include/conversation.php:1113 ../../mod/editlayout.php:110
-#: ../../mod/editwebpage.php:129 ../../mod/editpost.php:107
-#: ../../mod/editblock.php:124
-msgid "Permission settings"
-msgstr "Berechtigungs-Einstellungen"
-
-#: ../../include/conversation.php:1114
-msgid "permissions"
-msgstr "Berechtigungen"
-
-#: ../../include/conversation.php:1122 ../../mod/editlayout.php:118
-#: ../../mod/editwebpage.php:137 ../../mod/editpost.php:115
-#: ../../mod/editblock.php:133
-msgid "Public post"
-msgstr "Öffentlicher Beitrag"
-
-#: ../../include/conversation.php:1124 ../../mod/editlayout.php:124
-#: ../../mod/editwebpage.php:145 ../../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/conversation.php:1137 ../../mod/message.php:336
-#: ../../mod/message.php:519 ../../mod/editlayout.php:134
-#: ../../mod/editwebpage.php:155 ../../mod/editpost.php:132
-#: ../../mod/editblock.php:149
-msgid "Set expiration date"
-msgstr "Verfallsdatum"
-
-#: ../../include/auth.php:67
-msgid "Logged out."
-msgstr "Ausgeloggt."
-
-#: ../../include/auth.php:179
-msgid "Failed authentication"
-msgstr "Authentifizierung fehlgeschlagen"
-
-#: ../../include/auth.php:188
-msgid "Login failed."
-msgstr "Login fehlgeschlagen."
-
-#: ../../include/contact_widgets.php:14
-#, php-format
-msgid "You have %1$.0f of %2$.0f allowed connections."
-msgstr "Du bist %1$.0f von %2$.0f erlaubten Verbindungen eingegangen."
-
-#: ../../include/contact_widgets.php:20
-msgid "Add New Connection"
-msgstr "Neue Verbindung hinzufügen"
-
-#: ../../include/contact_widgets.php:21
-msgid "Enter the channel address"
-msgstr "Adresse des Kanals eingeben"
-
-#: ../../include/contact_widgets.php:22
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara"
-
-#: ../../include/contact_widgets.php:38
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d Einladung verfügbar"
-msgstr[1] "%d Einladungen verfügbar"
-
-#: ../../include/contact_widgets.php:44
-msgid "Find Channels"
-msgstr "Finde Kanäle"
-
-#: ../../include/contact_widgets.php:45
-msgid "Enter name or interest"
-msgstr "Name oder Interessen eingeben"
-
-#: ../../include/contact_widgets.php:46
-msgid "Connect/Follow"
-msgstr "Verbinden/Folgen"
-
-#: ../../include/contact_widgets.php:47
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Beispiele: Robert Morgenstein, Angeln"
-
-#: ../../include/contact_widgets.php:48 ../../mod/connections.php:697
-#: ../../mod/directory.php:221 ../../mod/directory.php:226
-msgid "Find"
-msgstr "Finde"
-
-#: ../../include/contact_widgets.php:49 ../../mod/suggest.php:64
-msgid "Channel Suggestions"
-msgstr "Kanal-Vorschläge"
-
-#: ../../include/contact_widgets.php:51
-msgid "Random Profile"
-msgstr "Zufallsprofil"
-
-#: ../../include/contact_widgets.php:52
-msgid "Invite Friends"
-msgstr "Lade Freunde ein"
-
-#: ../../include/contact_widgets.php:79 ../../include/contact_widgets.php:113
-msgid "Everything"
-msgstr "Alles"
-
-#: ../../include/contact_widgets.php:110 ../../include/widgets.php:26
-msgid "Categories"
-msgstr "Kategorien"
-
-#: ../../include/contact_widgets.php:143
-#, php-format
-msgid "%d connection in common"
-msgid_plural "%d connections in common"
-msgstr[0] "%d gemeinsame Verbindung"
-msgstr[1] "%d gemeinsame Verbindungen"
-
-#: ../../include/page_widgets.php:6
-msgid "New Page"
-msgstr "Neue Seite"
-
-#: ../../include/follow.php:21
-msgid "Channel is blocked on this site."
-msgstr "Der Kanal ist auf dieser Seite blockiert "
-
-#: ../../include/follow.php:26
-msgid "Channel location missing."
-msgstr "Adresse des Kanals fehlt."
-
-#: ../../include/follow.php:43
-msgid "Channel discovery failed. Website may be down or misconfigured."
-msgstr "Auffinden des Kanals schlug fehl. Die Webseite könnte falsch konfiguriert oder abgeschaltet sein."
+#: ../../include/follow.php:43
+msgid "Channel discovery failed. Website may be down or misconfigured."
+msgstr "Auffinden des Kanals schlug fehl. Die Webseite könnte falsch konfiguriert oder abgeschaltet sein."
 
 #: ../../include/follow.php:51
 msgid "Response from remote channel was not understood."
@@ -2709,54 +2809,237 @@ msgid ""
 "Extremely advanced. Leave this alone unless you know what you are doing"
 msgstr "Sehr fortgeschritten. Bearbeite dies nur, wenn du genau weißt, was du machst"
 
-#: ../../include/taxonomy.php:210
-msgid "Tags"
-msgstr "Tags"
+#: ../../include/comanche.php:35 ../../view/theme/redbasic/php/config.php:62
+#: ../../view/theme/apw/php/config.php:176
+msgid "Default"
+msgstr "Standard"
 
-#: ../../include/taxonomy.php:224
-msgid "Keywords"
-msgstr "Schlüsselbegriffe"
+#: ../../include/identity.php:29 ../../mod/item.php:1151
+msgid "Unable to obtain identity information from database"
+msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen"
 
-#: ../../include/taxonomy.php:249
-msgid "have"
-msgstr "habe"
+#: ../../include/identity.php:62
+msgid "Empty name"
+msgstr "Namensfeld leer"
 
-#: ../../include/taxonomy.php:249
-msgid "has"
-msgstr "hat"
+#: ../../include/identity.php:64
+msgid "Name too long"
+msgstr "Name ist zu lang"
 
-#: ../../include/taxonomy.php:250
-msgid "want"
-msgstr "will"
+#: ../../include/identity.php:132
+msgid "No account identifier"
+msgstr "Keine Account-Kennung"
 
-#: ../../include/taxonomy.php:250
-msgid "wants"
-msgstr "will"
+#: ../../include/identity.php:142
+msgid "Nickname is required."
+msgstr "Spitzname ist erforderlich."
 
-#: ../../include/taxonomy.php:251
-msgid "likes"
-msgstr "Gefällt-mir"
+#: ../../include/identity.php:156
+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/taxonomy.php:252
-msgid "dislikes"
-msgstr "Gefällt-mir-nicht"
+#: ../../include/identity.php:215
+msgid "Unable to retrieve created identity"
+msgstr "Kann die erstellte Identität nicht empfangen"
 
-#: ../../include/plugin.php:473 ../../include/plugin.php:475
-msgid "Click here to upgrade."
-msgstr "Klicke hier, um das Upgrade durchzuführen."
+#: ../../include/identity.php:273
+msgid "Default Profile"
+msgstr "Standard-Profil"
 
-#: ../../include/plugin.php:481
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements."
+#: ../../include/identity.php:465
+msgid "Requested channel is not available."
+msgstr "Angeforderte Kanal nicht verfügbar."
 
-#: ../../include/plugin.php:486
-msgid "This action is not available under your subscription plan."
-msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."
+#: ../../include/identity.php:477
+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/comanche.php:35 ../../view/theme/redbasic/php/config.php:62
-#: ../../view/theme/apw/php/config.php:176
-msgid "Default"
-msgstr "Standard"
+#: ../../include/identity.php:512 ../../mod/webpages.php:8
+#: ../../mod/connect.php:13 ../../mod/layouts.php:8
+#: ../../mod/filestorage.php:8 ../../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
+msgid "Change profile photo"
+msgstr "Ändere das Profilfoto"
+
+#: ../../include/identity.php:633
+msgid "Profiles"
+msgstr "Profile"
+
+#: ../../include/identity.php:633
+msgid "Manage/edit profiles"
+msgstr "Verwalte/Bearbeite Profile"
+
+#: ../../include/identity.php:634 ../../mod/profiles.php:614
+msgid "Create New Profile"
+msgstr "Neues Profil erstellen"
+
+#: ../../include/identity.php:637
+msgid "Edit Profile"
+msgstr "Profile bearbeiten"
+
+#: ../../include/identity.php:648 ../../mod/profiles.php:625
+msgid "Profile Image"
+msgstr "Profilfoto:"
+
+#: ../../include/identity.php:651 ../../mod/profiles.php:628
+msgid "visible to everybody"
+msgstr "sichtbar für jeden"
+
+#: ../../include/identity.php:652 ../../mod/profiles.php:629
+msgid "Edit visibility"
+msgstr "Sichtbarkeit bearbeiten"
+
+#: ../../include/identity.php:666 ../../include/identity.php:891
+#: ../../mod/directory.php:174
+msgid "Gender:"
+msgstr "Geschlecht:"
+
+#: ../../include/identity.php:667 ../../include/identity.php:911
+#: ../../mod/directory.php:176
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../include/identity.php:668 ../../include/identity.php:922
+#: ../../mod/directory.php:178
+msgid "Homepage:"
+msgstr "Homepage:"
+
+#: ../../include/identity.php:735 ../../include/identity.php:815
+#: ../../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
+msgid "F d"
+msgstr "d. F"
+
+#: ../../include/identity.php:781 ../../include/identity.php:856
+#: ../../mod/ping.php:252
+msgid "[today]"
+msgstr "[Heute]"
+
+#: ../../include/identity.php:793
+msgid "Birthday Reminders"
+msgstr "Geburtstags Erinnerungen"
+
+#: ../../include/identity.php:794
+msgid "Birthdays this week:"
+msgstr "Geburtstage in dieser Woche:"
+
+#: ../../include/identity.php:849
+msgid "[No description]"
+msgstr "[Keine Beschreibung]"
+
+#: ../../include/identity.php:867
+msgid "Event Reminders"
+msgstr "Veranstaltungs- Erinnerungen"
+
+#: ../../include/identity.php:868
+msgid "Events this week:"
+msgstr "Veranstaltungen in dieser Woche:"
+
+#: ../../include/identity.php:881 ../../include/identity.php:992
+#: ../../mod/profperm.php:103
+msgid "Profile"
+msgstr "Profil"
+
+#: ../../include/identity.php:889 ../../mod/settings.php:911
+msgid "Full Name:"
+msgstr "Voller Name:"
+
+#: ../../include/identity.php:896
+msgid "j F, Y"
+msgstr "j F, Y"
+
+#: ../../include/identity.php:897
+msgid "j F"
+msgstr "j F"
+
+#: ../../include/identity.php:904
+msgid "Birthday:"
+msgstr "Geburtstag:"
+
+#: ../../include/identity.php:908
+msgid "Age:"
+msgstr "Alter:"
+
+#: ../../include/identity.php:917
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "für %1$d %2$s"
+
+#: ../../include/identity.php:920 ../../mod/profiles.php:538
+msgid "Sexual Preference:"
+msgstr "Sexuelle Orientierung:"
+
+#: ../../include/identity.php:924 ../../mod/profiles.php:540
+msgid "Hometown:"
+msgstr "Heimatstadt:"
+
+#: ../../include/identity.php:926
+msgid "Tags:"
+msgstr "Schlagworte:"
+
+#: ../../include/identity.php:928 ../../mod/profiles.php:541
+msgid "Political Views:"
+msgstr "Politische Ansichten:"
+
+#: ../../include/identity.php:930
+msgid "Religion:"
+msgstr "Religion:"
+
+#: ../../include/identity.php:932 ../../mod/directory.php:180
+msgid "About:"
+msgstr "Über:"
+
+#: ../../include/identity.php:934
+msgid "Hobbies/Interests:"
+msgstr "Hobbys/Interessen:"
+
+#: ../../include/identity.php:936 ../../mod/profiles.php:544
+msgid "Likes:"
+msgstr "Gefällt-mir:"
+
+#: ../../include/identity.php:938 ../../mod/profiles.php:545
+msgid "Dislikes:"
+msgstr "Gefällt-mir-nicht:"
+
+#: ../../include/identity.php:941
+msgid "Contact information and Social Networks:"
+msgstr "Kontaktinformation und soziale Netzwerke:"
+
+#: ../../include/identity.php:943
+msgid "Musical interests:"
+msgstr "Musikalische Interessen:"
+
+#: ../../include/identity.php:945
+msgid "Books, literature:"
+msgstr "Bücher, Literatur:"
+
+#: ../../include/identity.php:947
+msgid "Television:"
+msgstr "Fernsehen:"
+
+#: ../../include/identity.php:949
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film/Tanz/Kultur/Unterhaltung:"
+
+#: ../../include/identity.php:951
+msgid "Love/Romance:"
+msgstr "Liebe/Romantik:"
+
+#: ../../include/identity.php:953
+msgid "Work/employment:"
+msgstr "Arbeit/Anstellung:"
+
+#: ../../include/identity.php:955
+msgid "School/education:"
+msgstr "Schule/Ausbildung:"
 
 #: ../../include/security.php:49
 msgid "Welcome "
@@ -2776,139 +3059,117 @@ msgid ""
 "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:74
-#: ../../mod/profperm.php:28 ../../index.php:339
+#: ../../include/items.php:201 ../../mod/like.php:55 ../../mod/group.php:68
+#: ../../mod/profperm.php:19 ../../index.php:345
 msgid "Permission denied"
 msgstr "Keine Berechtigung"
 
-#: ../../include/items.php:3546 ../../mod/admin.php:150
-#: ../../mod/admin.php:727 ../../mod/admin.php:930 ../../mod/viewsrc.php:18
-#: ../../mod/home.php:64 ../../mod/display.php:32
+#: ../../include/items.php:3375 ../../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 "Element nicht gefunden."
 
-#: ../../include/items.php:3729
-msgid "Archives"
-msgstr "Archive"
-
-#: ../../include/items.php:3895 ../../mod/group.php:44 ../../mod/group.php:146
+#: ../../include/items.php:3726 ../../mod/group.php:38 ../../mod/group.php:140
 msgid "Collection not found."
 msgstr "Sammlung nicht gefunden"
 
-#: ../../include/items.php:3911 ../../mod/network.php:469
-msgid "Group is empty"
-msgstr "Gruppe ist leer"
-
-#: ../../include/items.php:3927
-msgid "Connection not found."
-msgstr "Die Verbindung wurde nicht gefunden."
-
-#: ../../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/items.php:3741
+msgid "Collection is empty."
+msgstr "Sammlung ist leer."
 
-#: ../../include/dir_fns.php:29
-msgid "Enable Safe Search"
-msgstr "Sichere Suche einschalten"
+#: ../../include/items.php:3748
+#, php-format
+msgid "Collection: %s"
+msgstr "Sammlung: %s"
 
-#: ../../include/dir_fns.php:31
-msgid "Disable Safe Search"
-msgstr "Sichere Suche ausschalten"
+#: ../../include/items.php:3759
+#, php-format
+msgid "Connection: %s"
+msgstr "Verbindung: %s"
 
-#: ../../include/dir_fns.php:33
-msgid "Safe Mode"
-msgstr "Sicherer Modus"
+#: ../../include/items.php:3762
+msgid "Connection not found."
+msgstr "Die Verbindung wurde nicht gefunden."
 
 #: ../../mod/common.php:10
 msgid "No channel."
 msgstr "Kein Channel."
 
-#: ../../mod/common.php:47
+#: ../../mod/common.php:39
 msgid "Common connections"
 msgstr "Gemeinsame Verbindungen"
 
-#: ../../mod/common.php:52
+#: ../../mod/common.php:44
 msgid "No connections in common."
 msgstr "Keine gemeinsamen Verbindungen."
 
-#: ../../mod/events.php:66
+#: ../../mod/events.php:72
 msgid "Event title and start time are required."
 msgstr "Veranstaltungs- Titel und Startzeit sind erforderlich."
 
-#: ../../mod/events.php:281
+#: ../../mod/events.php:287
 msgid "l, F j"
 msgstr "l, F j"
 
-#: ../../mod/events.php:303
+#: ../../mod/events.php:309
 msgid "Edit event"
 msgstr "Veranstaltung bearbeiten"
 
-#: ../../mod/events.php:349
+#: ../../mod/events.php:355
 msgid "Create New Event"
 msgstr "Neue Veranstaltung erstellen"
 
-#: ../../mod/events.php:350
+#: ../../mod/events.php:356
 msgid "Previous"
 msgstr "Voriges"
 
-#: ../../mod/events.php:351 ../../mod/setup.php:256
+#: ../../mod/events.php:357 ../../mod/setup.php:256
 msgid "Next"
 msgstr "Nächste"
 
-#: ../../mod/events.php:425
+#: ../../mod/events.php:429
 msgid "hour:minute"
 msgstr "Stunde:Minute"
 
-#: ../../mod/events.php:435
+#: ../../mod/events.php:448
 msgid "Event details"
 msgstr "Veranstaltungs-Details"
 
-#: ../../mod/events.php:436
+#: ../../mod/events.php:449
 #, php-format
 msgid "Format is %s %s. Starting date and Title are required."
 msgstr "Format ist %s %s. Startzeit und Titel sind erforderlich."
 
-#: ../../mod/events.php:438
+#: ../../mod/events.php:451
 msgid "Event Starts:"
 msgstr "Veranstaltung startet:"
 
-#: ../../mod/events.php:438 ../../mod/events.php:452
+#: ../../mod/events.php:451 ../../mod/events.php:465
 msgid "Required"
 msgstr "Benötigt"
 
-#: ../../mod/events.php:441
+#: ../../mod/events.php:454
 msgid "Finish date/time is not known or not relevant"
 msgstr "Ende Datum/Zeit sind unbekannt oder unwichtig"
 
-#: ../../mod/events.php:443
+#: ../../mod/events.php:456
 msgid "Event Finishes:"
 msgstr "Veranstaltung endet:"
 
-#: ../../mod/events.php:446
+#: ../../mod/events.php:459
 msgid "Adjust for viewer timezone"
 msgstr "An die Zeitzone des Betrachters anpassen"
 
-#: ../../mod/events.php:448
+#: ../../mod/events.php:461
 msgid "Description:"
 msgstr "Beschreibung:"
 
-#: ../../mod/events.php:452
+#: ../../mod/events.php:465
 msgid "Title:"
 msgstr "Titel:"
 
-#: ../../mod/events.php:454
+#: ../../mod/events.php:467
 msgid "Share this event"
 msgstr "Die Veranstaltung teilen"
 
@@ -2994,8 +3255,8 @@ msgstr "Einladungen senden"
 msgid "Enter email addresses, one per line:"
 msgstr "Email-Adressen eintragen, eine pro Zeile:"
 
-#: ../../mod/invite.php:141 ../../mod/message.php:326
-#: ../../mod/message.php:508
+#: ../../mod/invite.php:141 ../../mod/message.php:303
+#: ../../mod/message.php:452
 msgid "Your message:"
 msgstr "Deine Nachricht:"
 
@@ -3031,91 +3292,392 @@ msgid ""
 "http://getzot.com"
 msgstr "Für weitere Informationen über das Red Matrix Projekt und warum es das Potential hat das Internet wie wir es kennen grundlegend zu verändern schau dir bitte http://getzot.com an"
 
-#: ../../mod/allfriends.php:35
-#, php-format
-msgid "Friends of %s"
-msgstr "Freunde von %s"
-
-#: ../../mod/allfriends.php:41
-msgid "No friends to display."
-msgstr "Keine Freunde zum Anzeigen."
+#: ../../mod/connedit.php:49 ../../mod/connections.php:37
+msgid "Could not access contact record."
+msgstr "Konnte auf den Kontakteintrag nicht zugreifen."
 
-#: ../../mod/webpages.php:8 ../../mod/connect.php:13 ../../mod/layouts.php:8
-#: ../../mod/filestorage.php:8 ../../mod/blocks.php:10 ../../mod/profile.php:8
-#: ../../boot.php:1640
-msgid "Requested profile is not available."
-msgstr "Erwünschte Profil ist nicht verfügbar."
+#: ../../mod/connedit.php:63 ../../mod/connections.php:51
+msgid "Could not locate selected profile."
+msgstr "Konnte das gewählte Profil nicht finden."
 
-#: ../../mod/webpages.php:104 ../../mod/layouts.php:105
-#: ../../mod/blocks.php:96
-msgid "View"
-msgstr "Ansicht"
+#: ../../mod/connedit.php:104 ../../mod/connections.php:92
+msgid "Connection updated."
+msgstr "Verbindung aktualisiert."
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Zugriff der Anwendung authorizieren"
+#: ../../mod/connedit.php:106 ../../mod/connections.php:94
+msgid "Failed to update connection record."
+msgstr "Konnte den Verbindungseintrag nicht aktualisieren."
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Trage folgenden Sicherheitscode bei der Anwendung ein:"
+#: ../../mod/connedit.php:201
+msgid "Could not access address book record."
+msgstr "Konnte nicht auf den Eintrag im Adressbuch zugreifen."
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Zum Weitermachen, bitte einloggen."
+#: ../../mod/connedit.php:215
+msgid "Refresh failed - channel is currently unavailable."
+msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar."
 
-#: ../../mod/api.php:104
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Möchtest du der Anwendung erlauben deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für dich zu erstellen?"
+#: ../../mod/connedit.php:222
+msgid "Channel has been unblocked"
+msgstr "Kanal nicht mehr blockiert"
 
-#: ../../mod/api.php:105 ../../mod/settings.php:1009
-#: ../../mod/settings.php:1014 ../../mod/settings.php:1037
-#: ../../mod/settings.php:1039 ../../mod/settings.php:1040
-#: ../../mod/settings.php:1041 ../../mod/profiles.php:506
-msgid "Yes"
-msgstr "Ja"
+#: ../../mod/connedit.php:223
+msgid "Channel has been blocked"
+msgstr "Kanal blockiert"
 
-#: ../../mod/api.php:106 ../../mod/settings.php:1009
-#: ../../mod/settings.php:1014 ../../mod/settings.php:1037
-#: ../../mod/settings.php:1039 ../../mod/settings.php:1040
-#: ../../mod/settings.php:1041 ../../mod/profiles.php:507
-msgid "No"
-msgstr "Nein"
+#: ../../mod/connedit.php:227 ../../mod/connedit.php:239
+#: ../../mod/connedit.php:251 ../../mod/connedit.php:263
+#: ../../mod/connedit.php:278
+msgid "Unable to set address book parameters."
+msgstr "Konnte die Adressbuch Parameter nicht setzen."
 
-#: ../../mod/lastpost.php:16 ../../mod/channel.php:16
-msgid "You must be logged in to see this page."
-msgstr "Du musst angemeldet sein um diese Seite betrachten zu können."
+#: ../../mod/connedit.php:234
+msgid "Channel has been unignored"
+msgstr "Kanal wird nicht mehr ignoriert"
 
-#: ../../mod/apps.php:8
-msgid "No installed applications."
-msgstr "Keine installierten Applikationen"
+#: ../../mod/connedit.php:235
+msgid "Channel has been ignored"
+msgstr "Kanal wird ignoriert"
 
-#: ../../mod/apps.php:13
-msgid "Applications"
-msgstr "Anwendungen"
+#: ../../mod/connedit.php:246
+msgid "Channel has been unarchived"
+msgstr "Kanal wurde aus dem Archiv zurück geholt"
 
-#: ../../mod/page.php:35
-msgid "Invalid item."
-msgstr "Ungültiges Element."
+#: ../../mod/connedit.php:247
+msgid "Channel has been archived"
+msgstr "Kanal wurde archiviert"
 
-#: ../../mod/page.php:47 ../../mod/chanview.php:78 ../../mod/home.php:51
-#: ../../mod/magic.php:95 ../../mod/wall_upload.php:35
-msgid "Channel not found."
-msgstr "Kanal nicht gefunden."
+#: ../../mod/connedit.php:258
+msgid "Channel has been unhidden"
+msgstr "Kanal wird nicht mehr versteckt"
 
-#: ../../mod/page.php:83 ../../mod/help.php:56 ../../mod/display.php:92
-#: ../../index.php:229
-msgid "Page not found."
-msgstr "Seite nicht gefunden."
+#: ../../mod/connedit.php:259
+msgid "Channel has been hidden"
+msgstr "Kanal wurde versteckt"
 
-#: ../../mod/attach.php:9
-msgid "Item not available."
-msgstr "Element nicht verfügbar."
+#: ../../mod/connedit.php:273
+msgid "Channel has been approved"
+msgstr "Kanal wurde zugelassen"
 
-#: ../../mod/setup.php:161
-msgid "Red Matrix Server - Setup"
-msgstr "Red Matrix Server - Installation"
+#: ../../mod/connedit.php:274
+msgid "Channel has been unapproved"
+msgstr "Zulassung des Kanals entfernt"
+
+#: ../../mod/connedit.php:292
+msgid "Contact has been removed."
+msgstr "Kontakt wurde entfernt."
+
+#: ../../mod/connedit.php:312
+#, php-format
+msgid "View %s's profile"
+msgstr "%s's Profil ansehen"
+
+#: ../../mod/connedit.php:316
+msgid "Refresh Permissions"
+msgstr "Zugriffsrechte auffrischen"
+
+#: ../../mod/connedit.php:319
+msgid "Fetch updated permissions"
+msgstr "Aktualisierte Zugriffsrechte abfragen"
+
+#: ../../mod/connedit.php:323
+msgid "Recent Activity"
+msgstr "Kürzliche Aktivitäten"
+
+#: ../../mod/connedit.php:326
+msgid "View recent posts and comments"
+msgstr "Betrachte die neuesten Beiträge und Kommentare"
+
+#: ../../mod/connedit.php:330 ../../mod/connedit.php:472
+#: ../../mod/admin.php:695
+msgid "Unblock"
+msgstr "Freigeben"
+
+#: ../../mod/connedit.php:330 ../../mod/connedit.php:472
+#: ../../mod/admin.php:694
+msgid "Block"
+msgstr "Blockieren"
+
+#: ../../mod/connedit.php:333
+msgid "Block or Unblock this connection"
+msgstr "Verbindung blockieren oder frei geben"
+
+#: ../../mod/connedit.php:337 ../../mod/connedit.php:473
+msgid "Unignore"
+msgstr "Nicht ignorieren"
+
+#: ../../mod/connedit.php:337 ../../mod/connedit.php:473
+#: ../../mod/notifications.php:51
+msgid "Ignore"
+msgstr "Ignorieren"
+
+#: ../../mod/connedit.php:340
+msgid "Ignore or Unignore this connection"
+msgstr "Verbindung ignorieren oder wieder beachten"
+
+#: ../../mod/connedit.php:343
+msgid "Unarchive"
+msgstr "Aus Archiv zurückholen"
+
+#: ../../mod/connedit.php:343
+msgid "Archive"
+msgstr "Archivieren"
+
+#: ../../mod/connedit.php:346
+msgid "Archive or Unarchive this connection"
+msgstr "Archiviere diese Verbindung oder hole sie aus dem Archiv zurück"
+
+#: ../../mod/connedit.php:349
+msgid "Unhide"
+msgstr "aufdecken"
+
+#: ../../mod/connedit.php:349
+msgid "Hide"
+msgstr "Verbergen"
+
+#: ../../mod/connedit.php:352
+msgid "Hide or Unhide this connection"
+msgstr "Diese Verbindung verstecken oder aufdecken"
+
+#: ../../mod/connedit.php:359
+msgid "Delete this connection"
+msgstr "Verbindung löschen"
+
+#: ../../mod/connedit.php:392
+msgid "Unknown"
+msgstr "Unbekannt"
+
+#: ../../mod/connedit.php:402 ../../mod/connedit.php:431
+msgid "Approve this connection"
+msgstr "Verbindung genehmigen"
+
+#: ../../mod/connedit.php:402
+msgid "Accept connection to allow communication"
+msgstr "Aktzeptiere die Verbindung um Kommunikation zu ermöglichen"
+
+#: ../../mod/connedit.php:418
+msgid "Automatic Permissions Settings"
+msgstr "Automatische Berechtigungs-Einstellungen"
+
+#: ../../mod/connedit.php:418
+#, php-format
+msgid "Connections: settings for %s"
+msgstr "Verbindungseinstellungen für %s"
+
+#: ../../mod/connedit.php:422
+msgid ""
+"When receiving a channel introduction, any permissions provided here will be"
+" applied to the new connection automatically and the introduction approved. "
+"Leave this page if you do not wish to use this feature."
+msgstr "Wenn eine Kanal-Vorstellung empfangen wird, werden die hier getroffenen Einstellungen automatisch angewandt und der Anfrage wird stattgegeben. Verlasse diese Seite, wenn du dieses Feature nicht verwanden möchtest."
+
+#: ../../mod/connedit.php:424
+msgid "Slide to adjust your degree of friendship"
+msgstr "Schieben um den Grad der Freundschaft zu wählen"
+
+#: ../../mod/connedit.php:430
+msgid "inherited"
+msgstr "Geerbt"
+
+#: ../../mod/connedit.php:432
+msgid "Connection has no individual permissions!"
+msgstr "Diese Verbindung hat keine individuellen Zugriffseinstellungen."
+
+#: ../../mod/connedit.php:433
+msgid ""
+"This may be appropriate based on your <a href=\"settings\">privacy "
+"settings</a>, though you may wish to review the \"Advanced Permissions\"."
+msgstr "Abhängig von deinen <a href=\"settings\">Privatsphären Einstellungen</a> könnte dies angebracht sein, eventuell solltest du aber die \"Erweiterte Zugriffsrechte\" überprüfen."
+
+#: ../../mod/connedit.php:435
+msgid "Profile Visibility"
+msgstr "Sichtbarkeit des Profils"
+
+#: ../../mod/connedit.php:436
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn deine Profilseite über eine verifizierte Verbindung aufgerufen wird."
+
+#: ../../mod/connedit.php:437
+msgid "Contact Information / Notes"
+msgstr "Kontaktinformationen / Notizen"
+
+#: ../../mod/connedit.php:438
+msgid "Edit contact notes"
+msgstr "Kontaktnotizen editieren"
+
+#: ../../mod/connedit.php:440
+msgid "Their Settings"
+msgstr "Deren Einstellungen"
+
+#: ../../mod/connedit.php:441
+msgid "My Settings"
+msgstr "Meine Einstellungen"
+
+#: ../../mod/connedit.php:443
+msgid "Forum Members"
+msgstr "Forum Mitglieder"
+
+#: ../../mod/connedit.php:444
+msgid "Soapbox"
+msgstr "Marktschreier"
+
+#: ../../mod/connedit.php:445
+msgid "Full Sharing"
+msgstr "Volles Teilen"
+
+#: ../../mod/connedit.php:446
+msgid "Cautious Sharing"
+msgstr "Vorsichtiges Teilen"
+
+#: ../../mod/connedit.php:447
+msgid "Follow Only"
+msgstr "Nur Folgen"
+
+#: ../../mod/connedit.php:448
+msgid "Individual Permissions"
+msgstr "Individuelle Zugriffseinstellungen"
+
+#: ../../mod/connedit.php:449
+msgid ""
+"Some permissions may be inherited from your channel <a "
+"href=\"settings\">privacy settings</a>, which have higher priority. Changing"
+" those inherited settings on this page will have no effect."
+msgstr "Einige Genehmigungen können von deinen <a href=\"settings\">Sicherheits- und Datenschutz-Einstellungen</a> geerbt sein (siehe Kennzeichnung), da diese eine höhere Priorität haben. Wenn du solche Genehmigungen hier änderst, hat das keine Auswirkungen."
+
+#: ../../mod/connedit.php:450
+msgid "Advanced Permissions"
+msgstr "Erweiterte Zugriffsrechte"
+
+#: ../../mod/connedit.php:451
+msgid "Quick Links"
+msgstr "Quick Links"
+
+#: ../../mod/connedit.php:455
+#, php-format
+msgid "Visit %s's profile - %s"
+msgstr "%s's Profil besuchen - %s"
+
+#: ../../mod/connedit.php:456
+msgid "Block/Unblock contact"
+msgstr "Geblockt Status ein- / ausschalten"
+
+#: ../../mod/connedit.php:457
+msgid "Ignore contact"
+msgstr "Kontakt ignorieren"
+
+#: ../../mod/connedit.php:458
+msgid "Repair URL settings"
+msgstr "URL Einstellungen reparieren"
+
+#: ../../mod/connedit.php:459
+msgid "View conversations"
+msgstr "Unterhaltungen anzeigen"
+
+#: ../../mod/connedit.php:461
+msgid "Delete contact"
+msgstr "Kontakt löschen"
+
+#: ../../mod/connedit.php:464
+msgid "Last update:"
+msgstr "Letzte Aktualisierung:"
+
+#: ../../mod/connedit.php:466
+msgid "Update public posts"
+msgstr "Öffentliche Beiträge aktualisieren"
+
+#: ../../mod/connedit.php:468
+msgid "Update now"
+msgstr "Jetzt aktualisieren"
+
+#: ../../mod/connedit.php:474
+msgid "Currently blocked"
+msgstr "Derzeit blockiert"
+
+#: ../../mod/connedit.php:475
+msgid "Currently ignored"
+msgstr "Derzeit ignoriert"
+
+#: ../../mod/connedit.php:476
+msgid "Currently archived"
+msgstr "Derzeit archiviert"
+
+#: ../../mod/connedit.php:477
+msgid "Currently pending"
+msgstr "Derzeit anstehend"
+
+#: ../../mod/connedit.php:478
+msgid "Hide this contact from others"
+msgstr "Diese Verbindung vor den anderen verbergen."
+
+#: ../../mod/connedit.php:478
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>können</strong> immer noch sichtbar sein"
+
+#: ../../mod/webpages.php:121 ../../mod/layouts.php:105
+#: ../../mod/blocks.php:96
+msgid "View"
+msgstr "Ansicht"
+
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Zugriff der Anwendung authorizieren"
+
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Trage folgenden Sicherheitscode bei der Anwendung ein:"
+
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Zum Weitermachen, bitte einloggen."
+
+#: ../../mod/api.php:104
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Möchtest du der Anwendung erlauben deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für dich zu erstellen?"
+
+#: ../../mod/api.php:105 ../../mod/profiles.php:495 ../../mod/settings.php:865
+#: ../../mod/settings.php:870
+msgid "Yes"
+msgstr "Ja"
+
+#: ../../mod/api.php:106 ../../mod/profiles.php:496 ../../mod/settings.php:865
+#: ../../mod/settings.php:870
+msgid "No"
+msgstr "Nein"
+
+#: ../../mod/apps.php:8
+msgid "No installed applications."
+msgstr "Keine installierten Applikationen"
+
+#: ../../mod/apps.php:13
+msgid "Applications"
+msgstr "Anwendungen"
+
+#: ../../mod/page.php:35
+msgid "Invalid item."
+msgstr "Ungültiges Element."
+
+#: ../../mod/page.php:47 ../../mod/chanview.php:77 ../../mod/home.php:50
+#: ../../mod/wall_upload.php:35
+msgid "Channel not found."
+msgstr "Kanal nicht gefunden."
+
+#: ../../mod/page.php:83 ../../mod/help.php:71 ../../mod/display.php:100
+#: ../../index.php:229
+msgid "Page not found."
+msgstr "Seite nicht gefunden."
+
+#: ../../mod/attach.php:9
+msgid "Item not available."
+msgstr "Element nicht verfügbar."
+
+#: ../../mod/setup.php:161
+msgid "Red Matrix Server - Setup"
+msgstr "Red Matrix Server - Installation"
 
 #: ../../mod/setup.php:167
 msgid "Could not connect to database."
@@ -3141,7 +3703,7 @@ 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:584
+#: ../../mod/setup.php:188 ../../mod/setup.php:255 ../../mod/setup.php:586
 msgid "Please see the file \"install/INSTALL.txt\"."
 msgstr "Lies die Datei \"install/INSTALL.txt\"."
 
@@ -3409,2263 +3971,1410 @@ msgid "view/tpl/smarty3 is writable"
 msgstr "view/tpl/smarty3 ist beschreibbar"
 
 #: ../../mod/setup.php:528
-msgid "SSL certificate validation"
-msgstr "SSL Zertifikatverifizierung"
-
-#: ../../mod/setup.php:528
-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
-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
-msgid "Url rewrite is working"
-msgstr "Url rewrite funktioniert"
-
-#: ../../mod/setup.php:547
-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
-msgid "Errors encountered creating database tables."
-msgstr "Fehler während des Anlegens der Datenbank Tabellen aufgetreten."
-
-#: ../../mod/setup.php:582
-msgid "<h1>What next</h1>"
-msgstr "<h1>Was als Nächstes</h1>"
-
-#: ../../mod/setup.php:583
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "WICHTIG: Du musst die geplanten Aufgaben für den Poller [manuell] einrichten."
-
-#: ../../mod/rpost.php:84 ../../mod/editpost.php:42
-msgid "Edit post"
-msgstr "Bearbeite Beitrag"
-
-#: ../../mod/subthread.php:105
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s folgt nun %2$s's %3$s"
-
-#: ../../mod/update_network.php:23 ../../mod/update_channel.php:43
-#: ../../mod/update_search.php:46 ../../mod/update_display.php:25
-#: ../../mod/update_community.php:18
-msgid "[Embedded content - reload page to view]"
-msgstr "[Eingebetteter Inhalte - bitte lade die Seite zur Anzeige neu]"
-
-#: ../../mod/chanview.php:98
-msgid "toggle full screen mode"
-msgstr "auf Vollbildmodus umschalten"
-
-#: ../../mod/tagger.php:98
-#, php-format
-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/settings.php:53
-msgid "Account settings"
-msgstr "Konto-Einstellungen"
-
-#: ../../mod/settings.php:59
-msgid "Channel settings"
-msgstr "Kanal-Einstellungen"
-
-#: ../../mod/settings.php:65
-msgid "Additional features"
-msgstr "Zusätzliche Funktionen"
-
-#: ../../mod/settings.php:71
-msgid "Feature settings"
-msgstr "Funktions-Einstellungen"
-
-#: ../../mod/settings.php:77
-msgid "Display settings"
-msgstr "Anzeige-Einstellungen"
-
-#: ../../mod/settings.php:83
-msgid "Connected apps"
-msgstr "Verbundene Apps"
-
-#: ../../mod/settings.php:89
-msgid "Export channel"
-msgstr "Kanal exportieren"
-
-#: ../../mod/settings.php:101
-msgid "Automatic Permissions (Advanced)"
-msgstr "Automatische Berechtigungen (Erweitert)"
-
-#: ../../mod/settings.php:111
-msgid "Premium Channel Settings"
-msgstr "Prämium-Kanal Einstellungen"
-
-#: ../../mod/settings.php:171
-msgid "Name is required"
-msgstr "Name wird benötigt"
-
-#: ../../mod/settings.php:175
-msgid "Key and Secret are required"
-msgstr "Schlüssel und Geheimnis werden benötigt"
-
-#: ../../mod/settings.php:179 ../../mod/settings.php:677
-msgid "Update"
-msgstr "Update"
-
-#: ../../mod/settings.php:292
-msgid "Passwords do not match. Password unchanged."
-msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert."
-
-#: ../../mod/settings.php:296
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert."
-
-#: ../../mod/settings.php:309
-msgid "Password changed."
-msgstr "Kennwort geändert."
-
-#: ../../mod/settings.php:311
-msgid "Password update failed. Please try again."
-msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal."
-
-#: ../../mod/settings.php:325
-msgid "Not valid email."
-msgstr "Keine gültige E-Mail Adresse."
-
-#: ../../mod/settings.php:328
-msgid "Protected email address. Cannot change to that email."
-msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden."
-
-#: ../../mod/settings.php:337
-msgid "System failure storing new email. Please try again."
-msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal."
-
-#: ../../mod/settings.php:579
-msgid "Settings updated."
-msgstr "Einstellungen aktualisiert."
-
-#: ../../mod/settings.php:650 ../../mod/settings.php:676
-#: ../../mod/settings.php:712
-msgid "Add application"
-msgstr "Anwendung hinzufügen"
-
-#: ../../mod/settings.php:652 ../../mod/settings.php:678
-#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:82
-#: ../../mod/fbrowser.php:117
-msgid "Cancel"
-msgstr "Abbrechen"
-
-#: ../../mod/settings.php:653 ../../mod/settings.php:679
-#: ../../mod/admin.php:686 ../../mod/crepair.php:148
-msgid "Name"
-msgstr "Name"
-
-#: ../../mod/settings.php:653
-msgid "Name of application"
-msgstr "Name der Anwendung"
-
-#: ../../mod/settings.php:654 ../../mod/settings.php:680
-msgid "Consumer Key"
-msgstr "Consumer Key"
-
-#: ../../mod/settings.php:654 ../../mod/settings.php:655
-msgid "Automatically generated - change if desired. Max length 20"
-msgstr "Automatisch erzeugt - ändern falls erwünscht. Maximale Länge 20"
-
-#: ../../mod/settings.php:655 ../../mod/settings.php:681
-msgid "Consumer Secret"
-msgstr "Consumer Secret"
-
-#: ../../mod/settings.php:656 ../../mod/settings.php:682
-msgid "Redirect"
-msgstr "Umleitung"
-
-#: ../../mod/settings.php:656
-msgid ""
-"Redirect URI - leave blank unless your application specifically requires "
-"this"
-msgstr "Umleitungs-URl - lasse dies frei außer deine Anwendung erfordert dies explizit"
-
-#: ../../mod/settings.php:657 ../../mod/settings.php:683
-msgid "Icon url"
-msgstr "Symbol-URL"
-
-#: ../../mod/settings.php:657
-msgid "Optional"
-msgstr "Optional"
-
-#: ../../mod/settings.php:668
-msgid "You can't edit this application."
-msgstr "Diese Anwendung kann nicht bearbeitet werden."
-
-#: ../../mod/settings.php:711
-msgid "Connected Apps"
-msgstr "Verbundene Apps"
-
-#: ../../mod/settings.php:715
-msgid "Client key starts with"
-msgstr "Client key beginnt mit"
-
-#: ../../mod/settings.php:716
-msgid "No name"
-msgstr "Kein Name"
-
-#: ../../mod/settings.php:717
-msgid "Remove authorization"
-msgstr "Authorisierung aufheben"
-
-#: ../../mod/settings.php:728
-msgid "No feature settings configured"
-msgstr "Keine Funktions-Einstellungen konfiguriert"
-
-#: ../../mod/settings.php:736
-msgid "Feature Settings"
-msgstr "Funktions-Einstellungen"
-
-#: ../../mod/settings.php:759
-msgid "Account Settings"
-msgstr "Konto-Einstellungen"
-
-#: ../../mod/settings.php:760
-msgid "Password Settings"
-msgstr "Kennwort-Einstellungen"
-
-#: ../../mod/settings.php:761
-msgid "New Password:"
-msgstr "Neues Passwort:"
-
-#: ../../mod/settings.php:762
-msgid "Confirm:"
-msgstr "Bestätigen:"
-
-#: ../../mod/settings.php:762
-msgid "Leave password fields blank unless changing"
-msgstr "Lasse die Passwort -Felder leer außer du möchtest das Passwort ändern"
-
-#: ../../mod/settings.php:764 ../../mod/settings.php:1063
-msgid "Email Address:"
-msgstr "Email Adresse:"
-
-#: ../../mod/settings.php:765
-msgid "Remove Account"
-msgstr "Konto entfernen"
-
-#: ../../mod/settings.php:766
-msgid "Warning: This action is permanent and cannot be reversed."
-msgstr "Achtung: Diese Aktion ist permanent und kann nicht rückgänging gemacht werden."
-
-#: ../../mod/settings.php:782
-msgid "Off"
-msgstr "Aus"
-
-#: ../../mod/settings.php:782
-msgid "On"
-msgstr "An"
-
-#: ../../mod/settings.php:789
-msgid "Additional Features"
-msgstr "Zusätzliche Funktionen"
-
-#: ../../mod/settings.php:814
-msgid "Connector Settings"
-msgstr "Connector-Einstellungen"
-
-#: ../../mod/settings.php:844 ../../mod/admin.php:369
-msgid "No special theme for mobile devices"
-msgstr "Keine spezielle Theme für mobile Geräte"
-
-#: ../../mod/settings.php:884
-msgid "Display Settings"
-msgstr "Anzeige-Einstellungen"
-
-#: ../../mod/settings.php:890
-msgid "Display Theme:"
-msgstr "Anzeige Theme:"
-
-#: ../../mod/settings.php:891
-msgid "Mobile Theme:"
-msgstr "Mobile Theme:"
-
-#: ../../mod/settings.php:892
-msgid "Update browser every xx seconds"
-msgstr "Browser alle xx Sekunden aktualisieren"
-
-#: ../../mod/settings.php:892
-msgid "Minimum of 10 seconds, no maximum"
-msgstr "Minimum von 10 Sekunden, kein Maximum"
-
-#: ../../mod/settings.php:893
-msgid "Maximum number of conversations to load at any time:"
-msgstr "Maximale Anzahl von Unterhaltungen die gleichzeitig geladen werden sollen:"
-
-#: ../../mod/settings.php:893
-msgid "Maximum of 100 items"
-msgstr "Maximum von 100 Beiträgen"
-
-#: ../../mod/settings.php:894
-msgid "Don't show emoticons"
-msgstr "Emoticons nicht zeigen"
-
-#: ../../mod/settings.php:930
-msgid "Nobody except yourself"
-msgstr "Niemand außer du selbst"
-
-#: ../../mod/settings.php:931
-msgid "Only those you specifically allow"
-msgstr "Nur die, denen du es explizit erlaubst"
-
-#: ../../mod/settings.php:932
-msgid "Anybody in your address book"
-msgstr "Jeder aus Ihrem Adressbuch"
-
-#: ../../mod/settings.php:933
-msgid "Anybody on this website"
-msgstr "Jeder auf dieser Website"
-
-#: ../../mod/settings.php:934
-msgid "Anybody in this network"
-msgstr "Jeder in diesem Netzwerk"
-
-#: ../../mod/settings.php:935
-msgid "Anybody on the internet"
-msgstr "Jeder im Internet"
-
-#: ../../mod/settings.php:1009
-msgid "Publish your default profile in the network directory"
-msgstr "Veröffentliche dein Standard-Profil im Netzwerk-Verzeichnis"
-
-#: ../../mod/settings.php:1014
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
-
-#: ../../mod/settings.php:1018 ../../mod/profile_photo.php:298
-msgid "or"
-msgstr "oder"
-
-#: ../../mod/settings.php:1023
-msgid "Your channel address is"
-msgstr "Deine Kanal-Adresse lautet"
-
-#: ../../mod/settings.php:1034
-msgid "Automatically expire posts after this many days:"
-msgstr "Lösche Beiträge automatisch nach dieser Anzahl von Tagen:"
-
-#: ../../mod/settings.php:1034
-msgid "If empty, posts will not expire. Expired posts will be deleted"
-msgstr "Falls leer werden Beiträge nie verfallen. Verfallene Beiträge werden gelöscht"
-
-#: ../../mod/settings.php:1035
-msgid "Advanced expiration settings"
-msgstr "Erweitere Verfalls-Einstellungen"
-
-#: ../../mod/settings.php:1036
-msgid "Advanced Expiration"
-msgstr "Erweitertes Verfallen"
-
-#: ../../mod/settings.php:1037
-msgid "Expire posts:"
-msgstr "Beiträge verfallen lassen:"
-
-#: ../../mod/settings.php:1039
-msgid "Expire starred posts:"
-msgstr "Markierte Beiträge verfallen lassen:"
-
-#: ../../mod/settings.php:1040
-msgid "Expire photos:"
-msgstr "Fotos verfallen lassen:"
-
-#: ../../mod/settings.php:1041
-msgid "Only expire posts by others:"
-msgstr "Nur Beiträge anderer verfallen lassen:"
-
-#: ../../mod/settings.php:1052
-msgid "Channel Settings"
-msgstr "Channel-Einstellungen"
-
-#: ../../mod/settings.php:1061
-msgid "Basic Settings"
-msgstr "Grundeinstellungen"
-
-#: ../../mod/settings.php:1064
-msgid "Your Timezone:"
-msgstr "Ihre Zeitzone:"
-
-#: ../../mod/settings.php:1065
-msgid "Default Post Location:"
-msgstr "Standardstandort:"
-
-#: ../../mod/settings.php:1066
-msgid "Use Browser Location:"
-msgstr "Standort des Browsers verwenden:"
-
-#: ../../mod/settings.php:1068
-msgid "Adult Content"
-msgstr "Nicht Jugendfreie-Inhalte"
-
-#: ../../mod/settings.php:1068
-msgid "This channel publishes adult content."
-msgstr "Dieser Kanal veröffentlicht nicht Jugendfreie-Inhalte"
-
-#: ../../mod/settings.php:1070
-msgid "Security and Privacy Settings"
-msgstr "Sicherheits- und Datenschutz-Einstellungen"
-
-#: ../../mod/settings.php:1072
-msgid "Quick Privacy Settings:"
-msgstr "Schnelle Datenschutz-Einstellungen:"
-
-#: ../../mod/settings.php:1073
-msgid "Very Public - extremely permissive"
-msgstr "Sehr offen - extrem freizügig"
-
-#: ../../mod/settings.php:1074
-msgid "Typical - default public, privacy when desired"
-msgstr "Typisch - Standard öffentlich, Privatheit wenn gewünscht"
-
-#: ../../mod/settings.php:1075
-msgid "Private - default private, rarely open or public"
-msgstr "Privat - Standard privat, selten offen oder öffentlich"
-
-#: ../../mod/settings.php:1076
-msgid "Blocked - default blocked to/from everybody"
-msgstr "Geschlossen - Standard zu und von jedem geblockt"
-
-#: ../../mod/settings.php:1079
-msgid "Maximum Friend Requests/Day:"
-msgstr "Maximale Kontaktanfragen pro Tag:"
-
-#: ../../mod/settings.php:1079
-msgid "May reduce spam activity"
-msgstr "Kann die Spam-Aktivität verringern"
-
-#: ../../mod/settings.php:1080
-msgid "Default Post Permissions"
-msgstr "Beitragszugriffrechte Standardeinstellungen"
-
-#: ../../mod/settings.php:1081
-msgid "(click to open/close)"
-msgstr "(zum öffnen/schließen anklicken)"
-
-#: ../../mod/settings.php:1094
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:"
-
-#: ../../mod/settings.php:1094
-msgid "Useful to reduce spamming"
-msgstr "Nützlich um Spam zu verringern"
-
-#: ../../mod/settings.php:1097
-msgid "Notification Settings"
-msgstr "Benachrichtigungs-Einstellungen"
-
-#: ../../mod/settings.php:1098
-msgid "By default post a status message when:"
-msgstr "Sende standardmäßig Status-Nachrichten wenn:"
-
-#: ../../mod/settings.php:1099
-msgid "accepting a friend request"
-msgstr "einer Kontaktanfrage stattgegeben wurde"
-
-#: ../../mod/settings.php:1100
-msgid "joining a forum/community"
-msgstr "ein Forum beigetreten wurde"
-
-#: ../../mod/settings.php:1101
-msgid "making an <em>interesting</em> profile change"
-msgstr "eine <em>interessante</em> Änderung am Profil vorgenommen wurde"
-
-#: ../../mod/settings.php:1102
-msgid "Send a notification email when:"
-msgstr "Eine Email Benachrichtigung senden wenn:"
-
-#: ../../mod/settings.php:1103
-msgid "You receive an introduction"
-msgstr "Du eine Vorstellung erhältst"
-
-#: ../../mod/settings.php:1104
-msgid "Your introductions are confirmed"
-msgstr "Deine Vorstellung bestätigt wurde."
-
-#: ../../mod/settings.php:1105
-msgid "Someone writes on your profile wall"
-msgstr "Jemand auf deine Pinnwand schreibt"
-
-#: ../../mod/settings.php:1106
-msgid "Someone writes a followup comment"
-msgstr "Jemand einen Beitrag kommentiert"
-
-#: ../../mod/settings.php:1107
-msgid "You receive a private message"
-msgstr "Du eine private Nachricht erhältst"
-
-#: ../../mod/settings.php:1108
-msgid "You receive a friend suggestion"
-msgstr "Du einen Kontaktvorschlag erhältst"
-
-#: ../../mod/settings.php:1109
-msgid "You are tagged in a post"
-msgstr "Du wurdest in einem Beitrag getaggt"
-
-#: ../../mod/settings.php:1110
-msgid "You are poked/prodded/etc. in a post"
-msgstr "Du in einer Nachricht angestupst/geknufft/o.ä. wirst"
-
-#: ../../mod/settings.php:1113
-msgid "Advanced Account/Page Type Settings"
-msgstr "Erweiterte Account / Seiten Arten Einstellungen"
-
-#: ../../mod/settings.php:1114
-msgid "Change the behaviour of this account for special situations"
-msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen"
-
-#: ../../mod/viewconnections.php:28 ../../mod/search.php:80
-#: ../../mod/photos.php:576 ../../mod/display.php:9 ../../mod/community.php:18
-#: ../../mod/directory.php:32
-msgid "Public access denied."
-msgstr "Öffentlicher Zugang verweigert."
-
-#: ../../mod/viewconnections.php:57
-msgid "No connections."
-msgstr "Keine Verbindungen."
-
-#: ../../mod/viewconnections.php:69 ../../mod/nogroup.php:40
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Besuche %s's Profil [%s]"
-
-#: ../../mod/viewconnections.php:84
-msgid "View Connnections"
-msgstr "Zeige Verbindungen"
-
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Schlagwort entfernt"
-
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Schlagwort des Beitrags entfernen"
-
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Schlagwort zum entfernen auswählen:"
-
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
-msgid "Remove"
-msgstr "Entferne"
-
-#: ../../mod/connect.php:59 ../../mod/connect.php:107
-msgid "Continue"
-msgstr "Fortfahren"
-
-#: ../../mod/connect.php:88
-msgid "Premium Channel Setup"
-msgstr "Prämium-Kanal Einrichtung"
-
-#: ../../mod/connect.php:90
-msgid "Enable premium channel connection restrictions"
-msgstr "Einschränkungen für den Prämium-Kanal aktivieren"
-
-#: ../../mod/connect.php:91
-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
-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
-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
-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
-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
-msgid "Restricted or Premium Channel"
-msgstr "Eingeschränkter oder Prämium-Kanal"
-
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
-
-#: ../../mod/delegate.php:121
-msgid "Delegate Page Management"
-msgstr "Delegiere das Management für die Seite"
-
-#: ../../mod/delegate.php:123
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!"
-
-#: ../../mod/delegate.php:124
-msgid "Existing Page Managers"
-msgstr "Vorhandene Seitenmanager"
-
-#: ../../mod/delegate.php:126
-msgid "Existing Page Delegates"
-msgstr "Vorhandene Bevollmächtigte für die Seite"
-
-#: ../../mod/delegate.php:128
-msgid "Potential Delegates"
-msgstr "Potentielle Bevollmächtigte"
-
-#: ../../mod/delegate.php:131
-msgid "Add"
-msgstr "Hinzufügen"
-
-#: ../../mod/delegate.php:132
-msgid "No entries."
-msgstr "Keine Einträge."
-
-#: ../../mod/sources.php:27
-msgid "Source created."
-msgstr "Quelle erstellt."
-
-#: ../../mod/sources.php:39
-msgid "Source updated."
-msgstr "Quelle aktualisiert."
-
-#: ../../mod/sources.php:68
-msgid "Manage remote sources of content for your channel."
-msgstr "Entfernte Quellen von Inhalten deines Kanals verwalten."
-
-#: ../../mod/sources.php:69 ../../mod/sources.php:79
-msgid "New Source"
-msgstr "Neue Quelle"
-
-#: ../../mod/sources.php:80 ../../mod/sources.php:106
-msgid ""
-"Import all or selected content from the following channel into this channel "
-"and distribute it according to your channel settings."
-msgstr "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals."
-
-#: ../../mod/sources.php:81 ../../mod/sources.php:107
-msgid "Only import content with these words (one per line)"
-msgstr "Importiere ausschließlich Beiträge, die folgende Wörter (eines pro Zeile) enthalten"
-
-#: ../../mod/sources.php:81 ../../mod/sources.php:107
-msgid "Leave blank to import all public content"
-msgstr "Leer lassen um alle öffentlichen Beiträge zu importieren"
-
-#: ../../mod/sources.php:82 ../../mod/sources.php:109
-#: ../../mod/new_channel.php:110
-msgid "Channel Name"
-msgstr "Channel-Name"
-
-#: ../../mod/sources.php:96 ../../mod/sources.php:122
-msgid "Source not found."
-msgstr "Quelle nicht gefunden."
-
-#: ../../mod/sources.php:103
-msgid "Edit Source"
-msgstr "Quelle bearbeiten"
-
-#: ../../mod/sources.php:104
-msgid "Delete Source"
-msgstr "Quelle löschen"
-
-#: ../../mod/sources.php:130
-msgid "Source removed"
-msgstr "Quelle gelöscht"
-
-#: ../../mod/sources.php:132
-msgid "Unable to remove source."
-msgstr "Konnte die Quelle nicht löschen."
-
-#: ../../mod/admin.php:48
-msgid "Theme settings updated."
-msgstr "Theme-Einstellungen aktualisiert."
-
-#: ../../mod/admin.php:87 ../../mod/admin.php:417
-msgid "Site"
-msgstr "Seite"
-
-#: ../../mod/admin.php:88 ../../mod/admin.php:682 ../../mod/admin.php:694
-msgid "Users"
-msgstr "Benutzer"
-
-#: ../../mod/admin.php:89 ../../mod/admin.php:780 ../../mod/admin.php:822
-msgid "Plugins"
-msgstr "Plug-Ins"
-
-#: ../../mod/admin.php:90 ../../mod/admin.php:985 ../../mod/admin.php:1021
-msgid "Themes"
-msgstr "Themes"
-
-#: ../../mod/admin.php:91 ../../mod/admin.php:475
-msgid "Server"
-msgstr "Server"
-
-#: ../../mod/admin.php:92
-msgid "DB updates"
-msgstr "DB-Aktualisierungen"
-
-#: ../../mod/admin.php:106 ../../mod/admin.php:113 ../../mod/admin.php:1108
-msgid "Logs"
-msgstr "Protokolle"
-
-#: ../../mod/admin.php:112
-msgid "Plugin Features"
-msgstr "Plug-In Funktionen"
-
-#: ../../mod/admin.php:114
-msgid "User registrations waiting for confirmation"
-msgstr "Nutzer Anmeldungen die auf Bestätigung warten"
-
-#: ../../mod/admin.php:188
-msgid "Message queues"
-msgstr "Nachrichten Warteschlange"
-
-#: ../../mod/admin.php:193 ../../mod/admin.php:416 ../../mod/admin.php:474
-#: ../../mod/admin.php:681 ../../mod/admin.php:779 ../../mod/admin.php:821
-#: ../../mod/admin.php:984 ../../mod/admin.php:1020 ../../mod/admin.php:1107
-msgid "Administration"
-msgstr "Administration"
-
-#: ../../mod/admin.php:194
-msgid "Summary"
-msgstr "Zusammenfassung"
-
-#: ../../mod/admin.php:196
-msgid "Registered users"
-msgstr "Registrierte Benutzer"
-
-#: ../../mod/admin.php:198 ../../mod/admin.php:478
-msgid "Pending registrations"
-msgstr "Ausstehende Registrierungen"
-
-#: ../../mod/admin.php:199
-msgid "Version"
-msgstr "Version"
-
-#: ../../mod/admin.php:201 ../../mod/admin.php:479
-msgid "Active plugins"
-msgstr "Aktive Plug-Ins"
-
-#: ../../mod/admin.php:340
-msgid "Site settings updated."
-msgstr "Site-Einstellungen aktualisiert."
-
-#: ../../mod/admin.php:371
-msgid "No special theme for accessibility"
-msgstr "Kein spezielles Accessibility Theme vorhanden"
-
-#: ../../mod/admin.php:396
-msgid "Closed"
-msgstr "Geschlossen"
-
-#: ../../mod/admin.php:397
-msgid "Requires approval"
-msgstr "Genehmigung erforderlich"
-
-#: ../../mod/admin.php:398
-msgid "Open"
-msgstr "Offen"
-
-#: ../../mod/admin.php:403
-msgid "Private"
-msgstr "Privat"
-
-#: ../../mod/admin.php:404
-msgid "Paid Access"
-msgstr "Kostenpflichtiger Zugang"
-
-#: ../../mod/admin.php:405
-msgid "Free Access"
-msgstr "Kostenloser Zugang"
-
-#: ../../mod/admin.php:406
-msgid "Tiered Access"
-msgstr "Abgestufter Zugang"
-
-#: ../../mod/admin.php:419 ../../mod/register.php:180
-msgid "Registration"
-msgstr "Registrierung"
-
-#: ../../mod/admin.php:420
-msgid "File upload"
-msgstr "Dateiupload"
-
-#: ../../mod/admin.php:421
-msgid "Policies"
-msgstr "Richtlinien"
-
-#: ../../mod/admin.php:422
-msgid "Advanced"
-msgstr "Fortgeschritten"
-
-#: ../../mod/admin.php:426
-msgid "Site name"
-msgstr "Seitenname"
-
-#: ../../mod/admin.php:427
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
-
-#: ../../mod/admin.php:428
-msgid "System language"
-msgstr "System-Sprache"
-
-#: ../../mod/admin.php:429
-msgid "System theme"
-msgstr "System-Theme"
-
-#: ../../mod/admin.php:429
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Standard System-Theme - kann durch Nutzerprofile überschieben werden - <a href='#' id='cnftheme'>Theme.Einstellungen ändern</a>"
-
-#: ../../mod/admin.php:430
-msgid "Mobile system theme"
-msgstr "Mobile System-Theme:"
-
-#: ../../mod/admin.php:430
-msgid "Theme for mobile devices"
-msgstr "Theme für mobile Geräte"
-
-#: ../../mod/admin.php:431
-msgid "Accessibility system theme"
-msgstr "Accessibility System-Theme"
-
-#: ../../mod/admin.php:431
-msgid "Accessibility theme"
-msgstr "Accessibility Theme"
-
-#: ../../mod/admin.php:432
-msgid "Channel to use for this website's static pages"
-msgstr "Kanal für die statischen Seiten dieser Webseite verwenden"
-
-#: ../../mod/admin.php:432
-msgid "Site Channel"
-msgstr "Seiten Kanal"
-
-#: ../../mod/admin.php:434
-msgid "Maximum image size"
-msgstr "Maximale Bildgröße"
-
-#: ../../mod/admin.php:434
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Maximale Größe in Bytes von hochgeladenen Bildern. Standard ist 0, was keine Einschränkung bedeutet."
-
-#: ../../mod/admin.php:435
-msgid "Register policy"
-msgstr "Registrierungsmethode"
-
-#: ../../mod/admin.php:436
-msgid "Access policy"
-msgstr "Zugangsrichtlinien"
-
-#: ../../mod/admin.php:437
-msgid "Register text"
-msgstr "Registrierungstext"
-
-#: ../../mod/admin.php:437
-msgid "Will be displayed prominently on the registration page."
-msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
-
-#: ../../mod/admin.php:438
-msgid "Accounts abandoned after x days"
-msgstr "Accounts gelten nach X Tagen als unbenutzt"
-
-#: ../../mod/admin.php:438
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Verschwende keine Systemressourchen auf das Pollen von externen Seiten wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit."
-
-#: ../../mod/admin.php:439
-msgid "Allowed friend domains"
-msgstr "Erlaubte Domains für Kontakte"
-
-#: ../../mod/admin.php:439
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
-
-#: ../../mod/admin.php:440
-msgid "Allowed email domains"
-msgstr "Erlaubte Domains für E-Mails"
-
-#: ../../mod/admin.php:440
-msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
-msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
-
-#: ../../mod/admin.php:441
-msgid "Block public"
-msgstr "Öffentlichen Zugriff blockieren"
-
-#: ../../mod/admin.php:441
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist."
-
-#: ../../mod/admin.php:442
-msgid "Force publish"
-msgstr "Veröffentlichung erzwingen"
-
-#: ../../mod/admin.php:442
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen."
-
-#: ../../mod/admin.php:444
-msgid "Proxy user"
-msgstr "Proxy Benutzer"
-
-#: ../../mod/admin.php:445
-msgid "Proxy URL"
-msgstr "Proxy URL"
-
-#: ../../mod/admin.php:446
-msgid "Network timeout"
-msgstr "Netzwerk-Timeout"
-
-#: ../../mod/admin.php:446
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)."
-
-#: ../../mod/admin.php:447
-msgid "Delivery interval"
-msgstr "Auslieferung Intervall"
-
-#: ../../mod/admin.php:447
-msgid ""
-"Delay background delivery processes by this many seconds to reduce system "
-"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
-"for large dedicated servers."
-msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."
+msgid "SSL certificate validation"
+msgstr "SSL Zertifikatverifizierung"
 
-#: ../../mod/admin.php:448
-msgid "Poll interval"
-msgstr "Abfrageintervall"
+#: ../../mod/setup.php:528
+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/admin.php:448
+#: ../../mod/setup.php:535
 msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "Verzögere Hintergrundprozesse, um diese Anzahl an Sekunden um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet."
+"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/admin.php:449
-msgid "Maximum Load Average"
-msgstr "Maximum Load Average"
+#: ../../mod/setup.php:537
+msgid "Url rewrite is working"
+msgstr "Url rewrite funktioniert"
 
-#: ../../mod/admin.php:449
+#: ../../mod/setup.php:547
 msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "Die Datenbank Konfigurationsdatei \".htconfig.php\" konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen."
 
-#: ../../mod/admin.php:466
-msgid "No server found"
-msgstr "Kein Server gefunden"
+#: ../../mod/setup.php:571
+msgid "Errors encountered creating database tables."
+msgstr "Fehler während des Anlegens der Datenbank Tabellen aufgetreten."
 
-#: ../../mod/admin.php:473 ../../mod/admin.php:695
-msgid "ID"
-msgstr "ID"
+#: ../../mod/setup.php:584
+msgid "<h1>What next</h1>"
+msgstr "<h1>Was als Nächstes</h1>"
 
-#: ../../mod/admin.php:473
-msgid "for channel"
-msgstr "für Kanal"
+#: ../../mod/setup.php:585
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "WICHTIG: Du musst die geplanten Aufgaben für den Poller [manuell] einrichten."
 
-#: ../../mod/admin.php:473
-msgid "on server"
-msgstr "auf Server"
+#: ../../mod/rpost.php:84 ../../mod/editpost.php:42
+msgid "Edit post"
+msgstr "Bearbeite Beitrag"
 
-#: ../../mod/admin.php:473
-msgid "Status"
-msgstr "Status"
+#: ../../mod/subthread.php:105
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s folgt nun %2$s's %3$s"
 
-#: ../../mod/admin.php:493
-msgid "Update has been marked successful"
-msgstr "Update wurde als erfolgreich markiert"
+#: ../../mod/update_network.php:23 ../../mod/update_channel.php:43
+#: ../../mod/update_search.php:46 ../../mod/update_display.php:25
+#: ../../mod/update_community.php:18
+msgid "[Embedded content - reload page to view]"
+msgstr "[Eingebetteter Inhalte - bitte lade die Seite zur Anzeige neu]"
 
-#: ../../mod/admin.php:503
-#, php-format
-msgid "Executing %s failed. Check system logs."
-msgstr "Aufrufen von %s fehlgeschlagen. Überprüfe die Systemlogs."
+#: ../../mod/chanview.php:97
+msgid "toggle full screen mode"
+msgstr "auf Vollbildmodus umschalten"
 
-#: ../../mod/admin.php:506
+#: ../../mod/tagger.php:98
 #, php-format
-msgid "Update %s was successfully applied."
-msgstr "Update %s wurde erfolgreich angewandt."
+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/admin.php:510
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "Update %s liefert keinen Rückgabewert. Unbekannt ob es erfolgreich war."
+#: ../../mod/viewconnections.php:17 ../../mod/search.php:80
+#: ../../mod/photos.php:570 ../../mod/display.php:9 ../../mod/community.php:18
+#: ../../mod/directory.php:31
+msgid "Public access denied."
+msgstr "Öffentlicher Zugang verweigert."
 
-#: ../../mod/admin.php:513
-#, php-format
-msgid "Update function %s could not be found."
-msgstr "Update Funktion %s konnte nicht gefunden werden."
+#: ../../mod/viewconnections.php:43
+msgid "No connections."
+msgstr "Keine Verbindungen."
 
-#: ../../mod/admin.php:528
-msgid "No failed updates."
-msgstr "Keine fehlgeschlagenen Aktualisierungen."
+#: ../../mod/viewconnections.php:55
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Besuche %s's Profil [%s]"
 
-#: ../../mod/admin.php:532
-msgid "Failed Updates"
-msgstr "Fehlgeschlagene Aktualisierungen"
+#: ../../mod/viewconnections.php:70
+msgid "View Connnections"
+msgstr "Zeige Verbindungen"
 
-#: ../../mod/admin.php:534
-msgid "Mark success (if update was manually applied)"
-msgstr "Als erfolgreich markieren (wenn das Update manuell angewandt wurde)"
+#: ../../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/admin.php:535
-msgid "Attempt to execute this update step automatically"
-msgstr "Versuche diesen Updateschritt automatisch anzuwenden"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Schlagwort entfernt"
 
-#: ../../mod/admin.php:561
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s Nutzer blockiert/freigegeben"
-msgstr[1] "%s Nutzer blockiert/freigegeben"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Schlagwort des Beitrags entfernen"
 
-#: ../../mod/admin.php:568
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s Nutzer gelöscht"
-msgstr[1] "%s Nutzer gelöscht"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Schlagwort zum entfernen auswählen:"
 
-#: ../../mod/admin.php:599
-msgid "Account not found"
-msgstr "Konto nicht gefunden"
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
+msgid "Remove"
+msgstr "Entferne"
 
-#: ../../mod/admin.php:610
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Benutzer '%s' gelöscht"
+#: ../../mod/connect.php:59 ../../mod/connect.php:107
+msgid "Continue"
+msgstr "Fortfahren"
 
-#: ../../mod/admin.php:619
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Benutzer '%s' freigegeben"
+#: ../../mod/connect.php:88
+msgid "Premium Channel Setup"
+msgstr "Prämium-Kanal Einrichtung"
 
-#: ../../mod/admin.php:619
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Benutzer '%s' blockiert"
+#: ../../mod/connect.php:90
+msgid "Enable premium channel connection restrictions"
+msgstr "Einschränkungen für den Prämium-Kanal aktivieren"
 
-#: ../../mod/admin.php:684
-msgid "select all"
-msgstr "Alle auswählen"
+#: ../../mod/connect.php:91
+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/admin.php:685
-msgid "User registrations waiting for confirm"
-msgstr "Neuanmeldungen, die auf deine Bestätigung warten"
+#: ../../mod/connect.php:93 ../../mod/connect.php:113
+msgid ""
+"This channel may require additional steps or acknowledgement of the "
+"following conditions prior to connecting:"
+msgstr "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen, vor dem Verbinden mit diesem Kanal nötig."
 
-#: ../../mod/admin.php:686
-msgid "Request date"
-msgstr "Antragsdatum"
+#: ../../mod/connect.php:94
+msgid ""
+"Potential connections will then see the following text before proceeding:"
+msgstr "Potentielle Verbindungen werden den folgenden Text sehen bevor fortgefahren wird:"
 
-#: ../../mod/admin.php:687
-msgid "No registrations."
-msgstr "Keine Registrierungen."
+#: ../../mod/connect.php:95 ../../mod/connect.php:116
+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/admin.php:688 ../../mod/intro.php:11 ../../mod/intro.php:98
-#: ../../mod/notifications.php:159 ../../mod/notifications.php:206
-msgid "Approve"
-msgstr "Genehmigen"
+#: ../../mod/connect.php:104
+msgid "(No specific instructions have been provided by the channel owner.)"
+msgstr "(Der Seitenbetreiber hat keine speziellen Anweisungen für Kanal-Betreiber hinterlegt.)"
 
-#: ../../mod/admin.php:689
-msgid "Deny"
-msgstr "Verweigern"
+#: ../../mod/connect.php:112
+msgid "Restricted or Premium Channel"
+msgstr "Eingeschränkter oder Prämium-Kanal"
 
-#: ../../mod/admin.php:691 ../../mod/intro.php:14 ../../mod/intro.php:99
-#: ../../mod/connections.php:348 ../../mod/connections.php:490
-msgid "Block"
-msgstr "Blockieren"
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
 
-#: ../../mod/admin.php:692 ../../mod/connections.php:348
-#: ../../mod/connections.php:490
-msgid "Unblock"
-msgstr "Freigeben"
+#: ../../mod/delegate.php:121
+msgid "Delegate Page Management"
+msgstr "Delegiere das Management für die Seite"
 
-#: ../../mod/admin.php:695
-msgid "Register date"
-msgstr "Registrierungs-Datum"
+#: ../../mod/delegate.php:123
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!"
 
-#: ../../mod/admin.php:695
-msgid "Last login"
-msgstr "Letzte Anmeldung"
+#: ../../mod/delegate.php:124
+msgid "Existing Page Managers"
+msgstr "Vorhandene Seitenmanager"
 
-#: ../../mod/admin.php:695
-msgid "Expires"
-msgstr "Verfällt"
+#: ../../mod/delegate.php:126
+msgid "Existing Page Delegates"
+msgstr "Vorhandene Bevollmächtigte für die Seite"
 
-#: ../../mod/admin.php:695
-msgid "Service Class"
-msgstr "Service-Klasse"
+#: ../../mod/delegate.php:128
+msgid "Potential Delegates"
+msgstr "Potentielle Bevollmächtigte"
 
-#: ../../mod/admin.php:697
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Markierte Nutzer werden gelöscht\\n\\nAlles was diese Nutzer auf dieser Seite veröffentlicht haben wird permanent gelöscht\\n\\nBist du sicher?"
+#: ../../mod/delegate.php:131
+msgid "Add"
+msgstr "Hinzufügen"
 
-#: ../../mod/admin.php:698
-msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Der Nutzer {0} wird gelöscht\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat wird permanent gelöscht werden\\n\\nBist du sicher?"
+#: ../../mod/delegate.php:132
+msgid "No entries."
+msgstr "Keine Einträge."
 
-#: ../../mod/admin.php:739
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plug-In %s deaktiviert."
+#: ../../mod/sources.php:28
+msgid "Failed to create source. No channel selected."
+msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt."
 
-#: ../../mod/admin.php:743
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Plug-In %s aktiviert."
+#: ../../mod/sources.php:41
+msgid "Source created."
+msgstr "Quelle erstellt."
 
-#: ../../mod/admin.php:753 ../../mod/admin.php:955
-msgid "Disable"
-msgstr "Deaktivieren"
+#: ../../mod/sources.php:53
+msgid "Source updated."
+msgstr "Quelle aktualisiert."
 
-#: ../../mod/admin.php:755 ../../mod/admin.php:957
-msgid "Enable"
-msgstr "Aktivieren"
+#: ../../mod/sources.php:82
+msgid "Manage remote sources of content for your channel."
+msgstr "Entfernte Quellen von Inhalten deines Kanals verwalten."
 
-#: ../../mod/admin.php:781 ../../mod/admin.php:986
-msgid "Toggle"
-msgstr "Umschalten"
+#: ../../mod/sources.php:83 ../../mod/sources.php:93
+msgid "New Source"
+msgstr "Neue Quelle"
 
-#: ../../mod/admin.php:789 ../../mod/admin.php:996
-msgid "Author: "
-msgstr "Autor: "
+#: ../../mod/sources.php:94 ../../mod/sources.php:126
+msgid ""
+"Import all or selected content from the following channel into this channel "
+"and distribute it according to your channel settings."
+msgstr "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals."
 
-#: ../../mod/admin.php:790 ../../mod/admin.php:997
-msgid "Maintainer: "
-msgstr "Betreuer:"
+#: ../../mod/sources.php:95 ../../mod/sources.php:127
+msgid "Only import content with these words (one per line)"
+msgstr "Importiere ausschließlich Beiträge, die folgende Wörter (eines pro Zeile) enthalten"
 
-#: ../../mod/admin.php:919
-msgid "No themes found."
-msgstr "Keine Theme gefunden."
+#: ../../mod/sources.php:95 ../../mod/sources.php:127
+msgid "Leave blank to import all public content"
+msgstr "Leer lassen um alle öffentlichen Beiträge zu importieren"
 
-#: ../../mod/admin.php:978
-msgid "Screenshot"
-msgstr "Bildschirmfoto"
+#: ../../mod/sources.php:96 ../../mod/sources.php:130
+#: ../../mod/new_channel.php:110
+msgid "Channel Name"
+msgstr "Channel-Name"
 
-#: ../../mod/admin.php:1026
-msgid "[Experimental]"
-msgstr "[Experimentell]"
+#: ../../mod/sources.php:116 ../../mod/sources.php:143
+msgid "Source not found."
+msgstr "Quelle nicht gefunden."
 
-#: ../../mod/admin.php:1027
-msgid "[Unsupported]"
-msgstr "[Nicht unterstützt]"
+#: ../../mod/sources.php:123
+msgid "Edit Source"
+msgstr "Quelle bearbeiten"
 
-#: ../../mod/admin.php:1054
-msgid "Log settings updated."
-msgstr "Protokoll-Einstellungen aktualisiert."
+#: ../../mod/sources.php:124
+msgid "Delete Source"
+msgstr "Quelle löschen"
 
-#: ../../mod/admin.php:1110
-msgid "Clear"
-msgstr "Leeren"
+#: ../../mod/sources.php:151
+msgid "Source removed"
+msgstr "Quelle gelöscht"
 
-#: ../../mod/admin.php:1116
-msgid "Debugging"
-msgstr "Debugging"
+#: ../../mod/sources.php:153
+msgid "Unable to remove source."
+msgstr "Konnte die Quelle nicht löschen."
 
-#: ../../mod/admin.php:1117
-msgid "Log file"
-msgstr "Protokolldatei"
+#: ../../mod/admin.php:48
+msgid "Theme settings updated."
+msgstr "Theme-Einstellungen aktualisiert."
 
-#: ../../mod/admin.php:1117
-msgid ""
-"Must be writable by web server. Relative to your Red top-level directory."
-msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Red Stammverzeichnis."
+#: ../../mod/admin.php:87 ../../mod/admin.php:419
+msgid "Site"
+msgstr "Seite"
 
-#: ../../mod/admin.php:1118
-msgid "Log level"
-msgstr "Protokollstufe"
+#: ../../mod/admin.php:88 ../../mod/admin.php:685 ../../mod/admin.php:697
+msgid "Users"
+msgstr "Benutzer"
 
-#: ../../mod/mitem.php:13 ../../mod/menu.php:87
-msgid "Menu not found."
-msgstr "Menü nicht gefunden"
+#: ../../mod/admin.php:89 ../../mod/admin.php:783 ../../mod/admin.php:825
+msgid "Plugins"
+msgstr "Plug-Ins"
 
-#: ../../mod/mitem.php:66
-msgid "Menu element updated."
-msgstr "Menü-Element aktualisiert."
+#: ../../mod/admin.php:90 ../../mod/admin.php:988 ../../mod/admin.php:1024
+msgid "Themes"
+msgstr "Themes"
 
-#: ../../mod/mitem.php:70
-msgid "Unable to update menu element."
-msgstr "Kann Menü-Element nicht aktualisieren."
+#: ../../mod/admin.php:91 ../../mod/admin.php:478
+msgid "Server"
+msgstr "Server"
 
-#: ../../mod/mitem.php:76
-msgid "Menu element added."
-msgstr "Menü-Bestandteil hinzugefügt."
+#: ../../mod/admin.php:92
+msgid "DB updates"
+msgstr "DB-Aktualisierungen"
 
-#: ../../mod/mitem.php:80
-msgid "Unable to add menu element."
-msgstr "Kann Menü-Bestandteil nicht hinzufügen."
+#: ../../mod/admin.php:106 ../../mod/admin.php:113 ../../mod/admin.php:1111
+msgid "Logs"
+msgstr "Protokolle"
 
-#: ../../mod/mitem.php:97 ../../mod/xchan.php:25 ../../mod/menu.php:113
-msgid "Not found."
-msgstr "Nicht gefunden."
+#: ../../mod/admin.php:112
+msgid "Plugin Features"
+msgstr "Plug-In Funktionen"
 
-#: ../../mod/mitem.php:116
-msgid "Manage Menu Elements"
-msgstr "Menü-Bestandteile verwalten"
+#: ../../mod/admin.php:114
+msgid "User registrations waiting for confirmation"
+msgstr "Nutzer Anmeldungen die auf Bestätigung warten"
 
-#: ../../mod/mitem.php:119
-msgid "Edit menu"
-msgstr "Menü bearbeiten"
+#: ../../mod/admin.php:188
+msgid "Message queues"
+msgstr "Nachrichten Warteschlange"
 
-#: ../../mod/mitem.php:122
-msgid "Edit element"
-msgstr "Bestandteil bearbeiten"
+#: ../../mod/admin.php:193 ../../mod/admin.php:418 ../../mod/admin.php:477
+#: ../../mod/admin.php:684 ../../mod/admin.php:782 ../../mod/admin.php:824
+#: ../../mod/admin.php:987 ../../mod/admin.php:1023 ../../mod/admin.php:1110
+msgid "Administration"
+msgstr "Administration"
 
-#: ../../mod/mitem.php:123
-msgid "Drop element"
-msgstr "Bestandteil löschen"
+#: ../../mod/admin.php:194
+msgid "Summary"
+msgstr "Zusammenfassung"
 
-#: ../../mod/mitem.php:124
-msgid "New element"
-msgstr "Neues Bestandteil"
+#: ../../mod/admin.php:196
+msgid "Registered users"
+msgstr "Registrierte Benutzer"
 
-#: ../../mod/mitem.php:125
-msgid "Edit this menu container"
-msgstr "Diesen Menü-Container bearbeiten"
+#: ../../mod/admin.php:198 ../../mod/admin.php:481
+msgid "Pending registrations"
+msgstr "Ausstehende Registrierungen"
 
-#: ../../mod/mitem.php:126
-msgid "Add menu element"
-msgstr "Menüelement hinzufügen"
+#: ../../mod/admin.php:199
+msgid "Version"
+msgstr "Version"
 
-#: ../../mod/mitem.php:127
-msgid "Delete this menu item"
-msgstr "Lösche dieses Menü-Bestandteil"
+#: ../../mod/admin.php:201 ../../mod/admin.php:482
+msgid "Active plugins"
+msgstr "Aktive Plug-Ins"
 
-#: ../../mod/mitem.php:128
-msgid "Edit this menu item"
-msgstr "Bearbeite dieses Menü-Bestandteil"
+#: ../../mod/admin.php:342
+msgid "Site settings updated."
+msgstr "Site-Einstellungen aktualisiert."
 
-#: ../../mod/mitem.php:141
-msgid "New Menu Element"
-msgstr "Neues Menü-Bestandteil"
+#: ../../mod/admin.php:371 ../../mod/settings.php:700
+msgid "No special theme for mobile devices"
+msgstr "Keine spezielle Theme für mobile Geräte"
 
-#: ../../mod/mitem.php:143 ../../mod/mitem.php:184
-msgid "Link text"
-msgstr "Link Text"
+#: ../../mod/admin.php:373
+msgid "No special theme for accessibility"
+msgstr "Kein spezielles Accessibility Theme vorhanden"
 
-#: ../../mod/mitem.php:144 ../../mod/mitem.php:185
-msgid "URL of link"
-msgstr "URL des Links"
+#: ../../mod/admin.php:398
+msgid "Closed"
+msgstr "Geschlossen"
 
-#: ../../mod/mitem.php:145 ../../mod/mitem.php:186
-msgid "Use Red magic-auth if available"
-msgstr "Verwende Red Magic-Auth wenn verfügbar"
+#: ../../mod/admin.php:399
+msgid "Requires approval"
+msgstr "Genehmigung erforderlich"
 
-#: ../../mod/mitem.php:146 ../../mod/mitem.php:187
-msgid "Open link in new window"
-msgstr "Öffne Link in neuem Fenster"
+#: ../../mod/admin.php:400
+msgid "Open"
+msgstr "Offen"
 
-#: ../../mod/mitem.php:148 ../../mod/mitem.php:189
-msgid "Order in list"
-msgstr "Reihenfolge in der Liste"
+#: ../../mod/admin.php:405
+msgid "Private"
+msgstr "Privat"
 
-#: ../../mod/mitem.php:148 ../../mod/mitem.php:189
-msgid "Higher numbers will sink to bottom of listing"
-msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert"
+#: ../../mod/admin.php:406
+msgid "Paid Access"
+msgstr "Kostenpflichtiger Zugang"
 
-#: ../../mod/mitem.php:149 ../../mod/menu.php:79 ../../mod/new_channel.php:117
-msgid "Create"
-msgstr "Erstelle"
+#: ../../mod/admin.php:407
+msgid "Free Access"
+msgstr "Kostenloser Zugang"
 
-#: ../../mod/mitem.php:161
-msgid "Menu item not found."
-msgstr "Menü-Bestandteil nicht gefunden."
+#: ../../mod/admin.php:408
+msgid "Tiered Access"
+msgstr "Abgestufter Zugang"
 
-#: ../../mod/mitem.php:170
-msgid "Menu item deleted."
-msgstr "Menü-Bestandteil gelöscht."
+#: ../../mod/admin.php:421 ../../mod/register.php:180
+msgid "Registration"
+msgstr "Registrierung"
 
-#: ../../mod/mitem.php:172
-msgid "Menu item could not be deleted."
-msgstr "Menü-Bestandteil kann nicht gelöscht werden."
+#: ../../mod/admin.php:422
+msgid "File upload"
+msgstr "Dateiupload"
 
-#: ../../mod/mitem.php:181
-msgid "Edit Menu Element"
-msgstr "Bearbeite Menü-Bestandteil"
+#: ../../mod/admin.php:423
+msgid "Policies"
+msgstr "Richtlinien"
 
-#: ../../mod/mitem.php:190 ../../mod/menu.php:107
-msgid "Modify"
-msgstr "Ändern"
+#: ../../mod/admin.php:424
+msgid "Advanced"
+msgstr "Fortgeschritten"
 
-#: ../../mod/group.php:26
-msgid "Collection created."
-msgstr "Sammlung erstellt."
+#: ../../mod/admin.php:428
+msgid "Site name"
+msgstr "Seitenname"
 
-#: ../../mod/group.php:32
-msgid "Could not create collection."
-msgstr "Sammlung kann nicht erstellt werden."
+#: ../../mod/admin.php:429
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: ../../mod/group.php:60
-msgid "Collection name changed."
-msgstr "Name der Sammlung geändert."
+#: ../../mod/admin.php:430
+msgid "System language"
+msgstr "System-Sprache"
 
-#: ../../mod/group.php:92
-msgid "Create a collection of channels."
-msgstr "Erstelle eine Sammlung von Kanälen."
+#: ../../mod/admin.php:431
+msgid "System theme"
+msgstr "System-Theme"
 
-#: ../../mod/group.php:93 ../../mod/group.php:189
-msgid "Collection Name: "
-msgstr "Name der Sammlung:"
+#: ../../mod/admin.php:431
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Standard System-Theme - kann durch Nutzerprofile überschieben werden - <a href='#' id='cnftheme'>Theme.Einstellungen ändern</a>"
 
-#: ../../mod/group.php:95 ../../mod/group.php:192
-msgid "Members are visible to other channels"
-msgstr "Mitglieder sind sichtbar für andere Kanäle"
+#: ../../mod/admin.php:432
+msgid "Mobile system theme"
+msgstr "Mobile System-Theme:"
 
-#: ../../mod/group.php:113
-msgid "Collection removed."
-msgstr "Sammlung gelöscht."
+#: ../../mod/admin.php:432
+msgid "Theme for mobile devices"
+msgstr "Theme für mobile Geräte"
 
-#: ../../mod/group.php:115
-msgid "Unable to remove collection."
-msgstr "Löschen der Sammlung nicht möglich."
+#: ../../mod/admin.php:433
+msgid "Accessibility system theme"
+msgstr "Accessibility System-Theme"
 
-#: ../../mod/group.php:188
-msgid "Collection Editor"
-msgstr "Sammlung-Editor"
+#: ../../mod/admin.php:433
+msgid "Accessibility theme"
+msgstr "Accessibility Theme"
 
-#: ../../mod/group.php:202
-msgid "Members"
-msgstr "Mitglieder"
+#: ../../mod/admin.php:434
+msgid "Channel to use for this website's static pages"
+msgstr "Kanal für die statischen Seiten dieser Webseite verwenden"
 
-#: ../../mod/group.php:204
-msgid "All Connected Channels"
-msgstr "Alle verbundene Channels"
+#: ../../mod/admin.php:434
+msgid "Site Channel"
+msgstr "Seiten Kanal"
 
-#: ../../mod/group.php:237
-msgid "Click on a channel to add or remove."
-msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus."
+#: ../../mod/admin.php:436
+msgid "Maximum image size"
+msgstr "Maximale Bildgröße"
 
-#: ../../mod/search.php:20 ../../mod/network.php:164
-msgid "Remove term"
-msgstr "Eintrag löschen"
+#: ../../mod/admin.php:436
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Maximale Größe in Bytes von hochgeladenen Bildern. Standard ist 0, was keine Einschränkung bedeutet."
 
-#: ../../mod/photos.php:83
-msgid "Page owner information could not be retrieved."
-msgstr "Informationen über den Betreiber der Seite konnten nicht gefunden werden."
+#: ../../mod/admin.php:437
+msgid "Register policy"
+msgstr "Registrierungsmethode"
 
-#: ../../mod/photos.php:103
-msgid "Album not found."
-msgstr "Album nicht gefunden."
+#: ../../mod/admin.php:438
+msgid "Access policy"
+msgstr "Zugangsrichtlinien"
 
-#: ../../mod/photos.php:125 ../../mod/photos.php:780
-msgid "Delete Album"
-msgstr "Album löschen"
+#: ../../mod/admin.php:439
+msgid "Register text"
+msgstr "Registrierungstext"
 
-#: ../../mod/photos.php:165 ../../mod/photos.php:1041
-msgid "Delete Photo"
-msgstr "Foto löschen"
+#: ../../mod/admin.php:439
+msgid "Will be displayed prominently on the registration page."
+msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
 
-#: ../../mod/photos.php:510
-#, 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/admin.php:440
+msgid "Accounts abandoned after x days"
+msgstr "Accounts gelten nach X Tagen als unbenutzt"
 
-#: ../../mod/photos.php:510
-msgid "a photo"
-msgstr "Foto"
+#: ../../mod/admin.php:440
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Verschwende keine Systemressourchen auf das Pollen von externen Seiten wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit."
 
-#: ../../mod/photos.php:586
-msgid "No photos selected"
-msgstr "Keine Fotos ausgewählt"
+#: ../../mod/admin.php:441
+msgid "Allowed friend domains"
+msgstr "Erlaubte Domains für Kontakte"
 
-#: ../../mod/photos.php:631
-msgid "Access to this item is restricted."
-msgstr "Zugriff auf dieses Foto wurde eingeschränkt."
+#: ../../mod/admin.php:441
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
 
-#: ../../mod/photos.php:696
-#, 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/admin.php:442
+msgid "Allowed email domains"
+msgstr "Erlaubte Domains für E-Mails"
 
-#: ../../mod/photos.php:699
-#, php-format
-msgid "You have used %1$.2f Mbytes of photo storage."
-msgstr "Du verwendets %1$.2f MBytes deines Foto-Speichers."
+#: ../../mod/admin.php:442
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
 
-#: ../../mod/photos.php:707
-msgid "Upload Photos"
-msgstr "Fotos hochladen"
+#: ../../mod/admin.php:443
+msgid "Block public"
+msgstr "Öffentlichen Zugriff blockieren"
 
-#: ../../mod/photos.php:711 ../../mod/photos.php:775
-msgid "New album name: "
-msgstr "Name des neuen Albums:"
+#: ../../mod/admin.php:443
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist."
 
-#: ../../mod/photos.php:712
-msgid "or existing album name: "
-msgstr "oder bestehenden Album Namen:"
+#: ../../mod/admin.php:444
+msgid "Force publish"
+msgstr "Veröffentlichung erzwingen"
 
-#: ../../mod/photos.php:713
-msgid "Do not show a status post for this upload"
-msgstr "Keine Statusnachricht für diesen Upload senden"
+#: ../../mod/admin.php:444
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen."
 
-#: ../../mod/photos.php:715 ../../mod/photos.php:1036
-msgid "Permissions"
-msgstr "Berechtigungen"
+#: ../../mod/admin.php:445
+msgid "No login on Homepage"
+msgstr "Kein Login auf der Homepage"
 
-#: ../../mod/photos.php:764 ../../mod/photos.php:786 ../../mod/photos.php:1212
-#: ../../mod/photos.php:1227
-msgid "Contact Photos"
-msgstr "Kontakt Bilder"
+#: ../../mod/admin.php:445
+msgid ""
+"Check to hide the login form from your sites homepage when visitors arrive "
+"who are not logged in (e.g. when you put the content of the homepage in via "
+"the site channel)."
+msgstr "Wählen um das Login Formular auf der Startseite der Seite zu verbergen, z.B. weil es das Layout der Homepage des Seiten-Kanals stört."
 
-#: ../../mod/photos.php:790
-msgid "Edit Album"
-msgstr "Album bearbeiten"
+#: ../../mod/admin.php:447
+msgid "Proxy user"
+msgstr "Proxy Benutzer"
 
-#: ../../mod/photos.php:796
-msgid "Show Newest First"
-msgstr "Zeige neueste zuerst"
+#: ../../mod/admin.php:448
+msgid "Proxy URL"
+msgstr "Proxy URL"
 
-#: ../../mod/photos.php:798
-msgid "Show Oldest First"
-msgstr "Zeige älteste zuerst"
+#: ../../mod/admin.php:449
+msgid "Network timeout"
+msgstr "Netzwerk-Timeout"
 
-#: ../../mod/photos.php:842 ../../mod/photos.php:1259
-msgid "View Photo"
-msgstr "Foto ansehen"
+#: ../../mod/admin.php:449
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)."
 
-#: ../../mod/photos.php:886
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."
+#: ../../mod/admin.php:450
+msgid "Delivery interval"
+msgstr "Auslieferung Intervall"
 
-#: ../../mod/photos.php:888
-msgid "Photo not available"
-msgstr "Foto nicht verfügbar"
+#: ../../mod/admin.php:450
+msgid ""
+"Delay background delivery processes by this many seconds to reduce system "
+"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
+"for large dedicated servers."
+msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."
 
-#: ../../mod/photos.php:946
-msgid "Use as profile photo"
-msgstr "Als Profilfoto verwenden"
+#: ../../mod/admin.php:451
+msgid "Poll interval"
+msgstr "Abfrageintervall"
 
-#: ../../mod/photos.php:970
-msgid "View Full Size"
-msgstr "In voller Größe anzeigen"
+#: ../../mod/admin.php:451
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Verzögere Hintergrundprozesse, um diese Anzahl an Sekunden um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet."
 
-#: ../../mod/photos.php:1024
-msgid "Edit photo"
-msgstr "Foto bearbeiten"
+#: ../../mod/admin.php:452
+msgid "Maximum Load Average"
+msgstr "Maximum Load Average"
 
-#: ../../mod/photos.php:1026
-msgid "Rotate CW (right)"
-msgstr "Drehen US (rechts)"
+#: ../../mod/admin.php:452
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
 
-#: ../../mod/photos.php:1027
-msgid "Rotate CCW (left)"
-msgstr "Drehen EUS (links)"
+#: ../../mod/admin.php:469
+msgid "No server found"
+msgstr "Kein Server gefunden"
 
-#: ../../mod/photos.php:1029
-msgid "New album name"
-msgstr "Name des neuen Albums:"
+#: ../../mod/admin.php:476 ../../mod/admin.php:698
+msgid "ID"
+msgstr "ID"
 
-#: ../../mod/photos.php:1032
-msgid "Caption"
-msgstr "Bildunterschrift"
+#: ../../mod/admin.php:476
+msgid "for channel"
+msgstr "für Kanal"
 
-#: ../../mod/photos.php:1034
-msgid "Add a Tag"
-msgstr "Schlagwort hinzufügen"
+#: ../../mod/admin.php:476
+msgid "on server"
+msgstr "auf Server"
 
-#: ../../mod/photos.php:1038
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+#: ../../mod/admin.php:476
+msgid "Status"
+msgstr "Status"
 
-#: ../../mod/photos.php:1265
-msgid "View Album"
-msgstr "Album ansehen"
+#: ../../mod/admin.php:496
+msgid "Update has been marked successful"
+msgstr "Update wurde als erfolgreich markiert"
 
-#: ../../mod/photos.php:1274
-msgid "Recent Photos"
-msgstr "Neueste Fotos"
+#: ../../mod/admin.php:506
+#, php-format
+msgid "Executing %s failed. Check system logs."
+msgstr "Aufrufen von %s fehlgeschlagen. Überprüfe die Systemlogs."
 
-#: ../../mod/ping.php:160
-msgid "sent you a private message"
-msgstr "eine private Nachricht schicken"
+#: ../../mod/admin.php:509
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Update %s wurde erfolgreich angewandt."
 
-#: ../../mod/ping.php:218
-msgid "added your channel"
-msgstr "hat deinen Kanal hinzugefügt"
+#: ../../mod/admin.php:513
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "Update %s liefert keinen Rückgabewert. Unbekannt ob es erfolgreich war."
 
-#: ../../mod/ping.php:230 ../../boot.php:1858 ../../boot.php:1938
-msgid "g A l F d"
-msgstr "l, d. F G \\\\U\\\\h\\\\r"
+#: ../../mod/admin.php:516
+#, php-format
+msgid "Update function %s could not be found."
+msgstr "Update Funktion %s konnte nicht gefunden werden."
 
-#: ../../mod/ping.php:252 ../../boot.php:1904 ../../boot.php:1979
-msgid "[today]"
-msgstr "[Heute]"
+#: ../../mod/admin.php:531
+msgid "No failed updates."
+msgstr "Keine fehlgeschlagenen Aktualisierungen."
 
-#: ../../mod/ping.php:262
-msgid "posted an event"
-msgstr "hat eine Veranstaltung veröffentlicht"
+#: ../../mod/admin.php:535
+msgid "Failed Updates"
+msgstr "Fehlgeschlagene Aktualisierungen"
 
-#: ../../mod/filer.php:35
-msgid "- select -"
-msgstr "-auswählen-"
+#: ../../mod/admin.php:537
+msgid "Mark success (if update was manually applied)"
+msgstr "Als erfolgreich markieren (wenn das Update manuell angewandt wurde)"
 
-#: ../../mod/menu.php:17
-msgid "Menu updated."
-msgstr "Menü aktualisiert."
+#: ../../mod/admin.php:538
+msgid "Attempt to execute this update step automatically"
+msgstr "Versuche diesen Updateschritt automatisch anzuwenden"
 
-#: ../../mod/menu.php:21
-msgid "Unable to update menu."
-msgstr "Kann Menü nicht aktualisieren."
+#: ../../mod/admin.php:564
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s Nutzer blockiert/freigegeben"
+msgstr[1] "%s Nutzer blockiert/freigegeben"
 
-#: ../../mod/menu.php:26
-msgid "Menu created."
-msgstr "Menü erstellt."
+#: ../../mod/admin.php:571
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s Nutzer gelöscht"
+msgstr[1] "%s Nutzer gelöscht"
 
-#: ../../mod/menu.php:30
-msgid "Unable to create menu."
-msgstr "Kann Menü nicht erstellen."
+#: ../../mod/admin.php:602
+msgid "Account not found"
+msgstr "Konto nicht gefunden"
 
-#: ../../mod/menu.php:53
-msgid "Manage Menus"
-msgstr "Menüs verwalten"
+#: ../../mod/admin.php:613
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Benutzer '%s' gelöscht"
 
-#: ../../mod/menu.php:56
-msgid "Drop"
-msgstr "Löschen"
+#: ../../mod/admin.php:622
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Benutzer '%s' freigegeben"
 
-#: ../../mod/menu.php:57 ../../mod/network.php:321
-#: ../../mod/connections.php:552
-msgid "New"
-msgstr "Neu"
+#: ../../mod/admin.php:622
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Benutzer '%s' blockiert"
 
-#: ../../mod/menu.php:58
-msgid "Create a new menu"
-msgstr "Neues Menü erstellen"
+#: ../../mod/admin.php:687
+msgid "select all"
+msgstr "Alle auswählen"
 
-#: ../../mod/menu.php:59
-msgid "Delete this menu"
-msgstr "Lösche dieses Menü"
+#: ../../mod/admin.php:688
+msgid "User registrations waiting for confirm"
+msgstr "Neuanmeldungen, die auf deine Bestätigung warten"
 
-#: ../../mod/menu.php:60 ../../mod/menu.php:104
-msgid "Edit menu contents"
-msgstr "Bearbeite Menü Inhalte"
+#: ../../mod/admin.php:689
+msgid "Request date"
+msgstr "Antragsdatum"
 
-#: ../../mod/menu.php:61
-msgid "Edit this menu"
-msgstr "Dieses Menü bearbeiten"
+#: ../../mod/admin.php:689 ../../mod/settings.php:509
+#: ../../mod/settings.php:535
+msgid "Name"
+msgstr "Name"
 
-#: ../../mod/menu.php:76
-msgid "New Menu"
-msgstr "Neues Menü"
+#: ../../mod/admin.php:690
+msgid "No registrations."
+msgstr "Keine Registrierungen."
 
-#: ../../mod/menu.php:77 ../../mod/menu.php:105
-msgid "Menu name"
-msgstr "Menü Name"
+#: ../../mod/admin.php:691
+msgid "Approve"
+msgstr "Genehmigen"
 
-#: ../../mod/menu.php:77 ../../mod/menu.php:105
-msgid "Must be unique, only seen by you"
-msgstr "Muss unverwechselbar sein, nur für dich sichtbar"
+#: ../../mod/admin.php:692
+msgid "Deny"
+msgstr "Verweigern"
 
-#: ../../mod/menu.php:78 ../../mod/menu.php:106
-msgid "Menu title"
-msgstr "Menü Titel"
+#: ../../mod/admin.php:698
+msgid "Register date"
+msgstr "Registrierungs-Datum"
 
-#: ../../mod/menu.php:78 ../../mod/menu.php:106
-msgid "Menu title as seen by others"
-msgstr "Menü Titel wie er von anderen gesehen wird"
+#: ../../mod/admin.php:698
+msgid "Last login"
+msgstr "Letzte Anmeldung"
 
-#: ../../mod/menu.php:93
-msgid "Menu deleted."
-msgstr "Menü gelöscht."
+#: ../../mod/admin.php:698
+msgid "Expires"
+msgstr "Verfällt"
 
-#: ../../mod/menu.php:95
-msgid "Menu could not be deleted."
-msgstr "Menü konnte nicht gelöscht werden."
+#: ../../mod/admin.php:698
+msgid "Service Class"
+msgstr "Service-Klasse"
 
-#: ../../mod/menu.php:101
-msgid "Edit Menu"
-msgstr "Menü bearbeiten"
+#: ../../mod/admin.php:700
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Markierte Nutzer werden gelöscht\\n\\nAlles was diese Nutzer auf dieser Seite veröffentlicht haben wird permanent gelöscht\\n\\nBist du sicher?"
 
-#: ../../mod/menu.php:103
-msgid "Add or remove entries to this menu"
-msgstr "Einträge zu diesem Menü hinzufügen oder entfernen"
+#: ../../mod/admin.php:701
+msgid ""
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Der Nutzer {0} wird gelöscht\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat wird permanent gelöscht werden\\n\\nBist du sicher?"
 
-#: ../../mod/home.php:76
+#: ../../mod/admin.php:742
 #, php-format
-msgid "Welcome to %s"
-msgstr "Willkommen auf %s"
+msgid "Plugin %s disabled."
+msgstr "Plug-In %s deaktiviert."
 
-#: ../../mod/message.php:19
-msgid "Check Mail"
-msgstr "E-Mails abrufen"
+#: ../../mod/admin.php:746
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Plug-In %s aktiviert."
 
-#: ../../mod/message.php:56
-msgid "Unable to lookup recipient."
-msgstr "Konnte den Empfänger nicht finden."
+#: ../../mod/admin.php:756 ../../mod/admin.php:958
+msgid "Disable"
+msgstr "Deaktivieren"
 
-#: ../../mod/message.php:64
-msgid "Unable to communicate with requested channel."
-msgstr "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen."
+#: ../../mod/admin.php:758 ../../mod/admin.php:960
+msgid "Enable"
+msgstr "Aktivieren"
 
-#: ../../mod/message.php:71
-msgid "Cannot verify requested channel."
-msgstr "Verifizierung des angeforderten Kanals fehlgeschlagen."
+#: ../../mod/admin.php:784 ../../mod/admin.php:989
+msgid "Toggle"
+msgstr "Umschalten"
 
-#: ../../mod/message.php:97
-msgid "Selected channel has private message restrictions. Send failed."
-msgstr "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen."
+#: ../../mod/admin.php:792 ../../mod/admin.php:999
+msgid "Author: "
+msgstr "Autor: "
 
-#: ../../mod/message.php:223 ../../mod/notifications.php:101
-msgid "Messages"
-msgstr "Nachrichten"
+#: ../../mod/admin.php:793 ../../mod/admin.php:1000
+msgid "Maintainer: "
+msgstr "Betreuer:"
 
-#: ../../mod/message.php:234
-msgid "Message deleted."
-msgstr "Nachricht gelöscht."
+#: ../../mod/admin.php:922
+msgid "No themes found."
+msgstr "Keine Theme gefunden."
 
-#: ../../mod/message.php:241
-msgid "Conversation removed."
-msgstr "Unterhaltung gelöscht."
+#: ../../mod/admin.php:981
+msgid "Screenshot"
+msgstr "Bildschirmfoto"
 
-#: ../../mod/message.php:258
-msgid "Message recalled."
-msgstr "Nachricht widerrufen."
+#: ../../mod/admin.php:1029
+msgid "[Experimental]"
+msgstr "[Experimentell]"
 
-#: ../../mod/message.php:316
-msgid "Send Private Message"
-msgstr "Private Nachricht senden"
+#: ../../mod/admin.php:1030
+msgid "[Unsupported]"
+msgstr "[Nicht unterstützt]"
 
-#: ../../mod/message.php:317 ../../mod/message.php:503
-msgid "To:"
-msgstr "An:"
+#: ../../mod/admin.php:1057
+msgid "Log settings updated."
+msgstr "Protokoll-Einstellungen aktualisiert."
 
-#: ../../mod/message.php:322 ../../mod/message.php:505
-msgid "Subject:"
-msgstr "Betreff:"
+#: ../../mod/admin.php:1113
+msgid "Clear"
+msgstr "Leeren"
 
-#: ../../mod/message.php:359
-msgid "No messages."
-msgstr "Keine Nachrichten."
+#: ../../mod/admin.php:1119
+msgid "Debugging"
+msgstr "Debugging"
 
-#: ../../mod/message.php:375 ../../mod/message.php:472
-msgid "Delete message"
-msgstr "Nachricht löschen"
+#: ../../mod/admin.php:1120
+msgid "Log file"
+msgstr "Protokolldatei"
 
-#: ../../mod/message.php:377
-msgid "D, d M Y - g:i A"
-msgstr "D, d. M Y - g:i A"
+#: ../../mod/admin.php:1120
+msgid ""
+"Must be writable by web server. Relative to your Red top-level directory."
+msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Red Stammverzeichnis."
 
-#: ../../mod/message.php:396
-msgid "Message not found."
-msgstr "Nachricht nicht gefunden."
+#: ../../mod/admin.php:1121
+msgid "Log level"
+msgstr "Protokollstufe"
 
-#: ../../mod/message.php:473
-msgid "Recall message"
-msgstr "Widerrufe die Nachricht"
+#: ../../mod/mitem.php:14 ../../mod/menu.php:87
+msgid "Menu not found."
+msgstr "Menü nicht gefunden"
 
-#: ../../mod/message.php:475
-msgid "Message has been recalled."
-msgstr "Die Nachricht wurde widerrufen."
+#: ../../mod/mitem.php:47
+msgid "Menu element updated."
+msgstr "Menü-Element aktualisiert."
 
-#: ../../mod/message.php:492
-msgid "Private Conversation"
-msgstr "Private Unterhaltung"
+#: ../../mod/mitem.php:51
+msgid "Unable to update menu element."
+msgstr "Kann Menü-Element nicht aktualisieren."
 
-#: ../../mod/message.php:496
-msgid "Delete conversation"
-msgstr "Unterhaltung löschen"
+#: ../../mod/mitem.php:57
+msgid "Menu element added."
+msgstr "Menü-Bestandteil hinzugefügt."
 
-#: ../../mod/message.php:498
-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/mitem.php:61
+msgid "Unable to add menu element."
+msgstr "Kann Menü-Bestandteil nicht hinzufügen."
 
-#: ../../mod/message.php:502
-msgid "Send Reply"
-msgstr "Antwort senden"
+#: ../../mod/mitem.php:78 ../../mod/xchan.php:25 ../../mod/menu.php:113
+msgid "Not found."
+msgstr "Nicht gefunden."
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Kein Profil"
+#: ../../mod/mitem.php:99
+msgid "Manage Menu Elements"
+msgstr "Menü-Bestandteile verwalten"
 
-#: ../../mod/layouts.php:52
-msgid "Layout Help"
-msgstr "Layout Hilfe"
+#: ../../mod/mitem.php:102
+msgid "Edit menu"
+msgstr "Menü bearbeiten"
 
-#: ../../mod/layouts.php:55
-msgid "Help with this feature"
-msgstr "Hilfe zu diesem Feature"
+#: ../../mod/mitem.php:105
+msgid "Edit element"
+msgstr "Bestandteil bearbeiten"
 
-#: ../../mod/layouts.php:74
-msgid "Layout Name"
-msgstr "Layout Name"
+#: ../../mod/mitem.php:106
+msgid "Drop element"
+msgstr "Bestandteil löschen"
 
-#: ../../mod/help.php:41
-msgid "Help:"
-msgstr "Hilfe:"
+#: ../../mod/mitem.php:107
+msgid "New element"
+msgstr "Neues Bestandteil"
 
-#: ../../mod/help.php:53 ../../index.php:226
-msgid "Not Found"
-msgstr "Nicht gefunden"
+#: ../../mod/mitem.php:108
+msgid "Edit this menu container"
+msgstr "Diesen Menü-Container bearbeiten"
 
-#: ../../mod/rmagic.php:56
-msgid "Remote Authentication"
-msgstr "Entfernte Authentifizierung"
+#: ../../mod/mitem.php:109
+msgid "Add menu element"
+msgstr "Menüelement hinzufügen"
 
-#: ../../mod/rmagic.php:57
-msgid "Enter your channel address (e.g. channel@example.com)"
-msgstr "Deine Kanal-Adresse (z.B. channel@example.com)"
+#: ../../mod/mitem.php:110
+msgid "Delete this menu item"
+msgstr "Lösche dieses Menü-Bestandteil"
 
-#: ../../mod/rmagic.php:58
-msgid "Authenticate"
-msgstr "Authentifizieren"
+#: ../../mod/mitem.php:111
+msgid "Edit this menu item"
+msgstr "Bearbeite dieses Menü-Bestandteil"
 
-#: ../../mod/network.php:302
-msgid "Commented Order"
-msgstr "Neueste Kommentare"
+#: ../../mod/mitem.php:134
+msgid "New Menu Element"
+msgstr "Neues Menü-Bestandteil"
 
-#: ../../mod/network.php:305
-msgid "Sort by Comment Date"
-msgstr "Nach Kommentardatum sortiert"
+#: ../../mod/mitem.php:136 ../../mod/mitem.php:179
+msgid "Menu Item Permissions"
+msgstr "Menü-Element Zugriffsrechte"
 
-#: ../../mod/network.php:308
-msgid "Posted Order"
-msgstr "Neueste Beiträge"
+#: ../../mod/mitem.php:137 ../../mod/mitem.php:180 ../../mod/settings.php:930
+msgid "(click to open/close)"
+msgstr "(zum öffnen/schließen anklicken)"
 
-#: ../../mod/network.php:311
-msgid "Sort by Post Date"
-msgstr "Nach Beitragsdatum sortiert"
+#: ../../mod/mitem.php:139 ../../mod/mitem.php:183
+msgid "Link text"
+msgstr "Link Text"
 
-#: ../../mod/network.php:315 ../../mod/notifications.php:86
-msgid "Personal"
-msgstr "Persönlich"
+#: ../../mod/mitem.php:140 ../../mod/mitem.php:184
+msgid "URL of link"
+msgstr "URL des Links"
 
-#: ../../mod/network.php:318
-msgid "Posts that mention or involve you"
-msgstr "Beiträge, in denen es um dich geht"
+#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
+msgid "Use Red magic-auth if available"
+msgstr "Verwende Red Magic-Auth wenn verfügbar"
 
-#: ../../mod/network.php:324
-msgid "Activity Stream - by date"
-msgstr "Activity Stream - nach Datum sortiert"
+#: ../../mod/mitem.php:142 ../../mod/mitem.php:186
+msgid "Open link in new window"
+msgstr "Öffne Link in neuem Fenster"
 
-#: ../../mod/network.php:331
-msgid "Starred"
-msgstr "Markiert"
+#: ../../mod/mitem.php:144 ../../mod/mitem.php:188
+msgid "Order in list"
+msgstr "Reihenfolge in der Liste"
 
-#: ../../mod/network.php:334
-msgid "Favourite Posts"
-msgstr "Beiträge mit Sternchen"
+#: ../../mod/mitem.php:144 ../../mod/mitem.php:188
+msgid "Higher numbers will sink to bottom of listing"
+msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert"
 
-#: ../../mod/network.php:341
-msgid "Spam"
-msgstr "Spam"
+#: ../../mod/mitem.php:145 ../../mod/menu.php:79 ../../mod/new_channel.php:117
+msgid "Create"
+msgstr "Erstelle"
 
-#: ../../mod/network.php:344
-msgid "Posts flagged as SPAM"
-msgstr "Nachrichten die als SPAM markiert wurden"
+#: ../../mod/mitem.php:157
+msgid "Menu item not found."
+msgstr "Menü-Bestandteil nicht gefunden."
 
-#: ../../mod/network.php:384
-msgid "Refresh"
-msgstr "Aktualisieren"
+#: ../../mod/mitem.php:166
+msgid "Menu item deleted."
+msgstr "Menü-Bestandteil gelöscht."
 
-#: ../../mod/network.php:385 ../../mod/connections.php:404
-msgid "Me"
-msgstr "Ich"
+#: ../../mod/mitem.php:168
+msgid "Menu item could not be deleted."
+msgstr "Menü-Bestandteil kann nicht gelöscht werden."
 
-#: ../../mod/network.php:386 ../../mod/connections.php:406
-msgid "Best Friends"
-msgstr "Beste Freunde"
+#: ../../mod/mitem.php:177
+msgid "Edit Menu Element"
+msgstr "Bearbeite Menü-Bestandteil"
 
-#: ../../mod/network.php:388
-msgid "Co-workers"
-msgstr "Kollegen"
+#: ../../mod/mitem.php:189 ../../mod/menu.php:107
+msgid "Modify"
+msgstr "Ändern"
 
-#: ../../mod/network.php:389 ../../mod/connections.php:408
-msgid "Former Friends"
-msgstr "ehem. Freunde"
+#: ../../mod/group.php:20
+msgid "Collection created."
+msgstr "Sammlung erstellt."
 
-#: ../../mod/network.php:390 ../../mod/connections.php:409
-msgid "Acquaintances"
-msgstr "Bekanntschaften"
+#: ../../mod/group.php:26
+msgid "Could not create collection."
+msgstr "Sammlung kann nicht erstellt werden."
 
-#: ../../mod/network.php:391
-msgid "Everybody"
-msgstr "Jeder"
+#: ../../mod/group.php:54
+msgid "Collection updated."
+msgstr "Sammlung aktualisiert."
 
-#: ../../mod/network.php:408
-msgid "Search Results For:"
-msgstr "Suchergebnisse für:"
+#: ../../mod/group.php:86
+msgid "Create a collection of channels."
+msgstr "Erstelle eine Sammlung von Kanälen."
 
-#: ../../mod/network.php:453
-msgid "No such group"
-msgstr "Gruppe existiert nicht"
+#: ../../mod/group.php:87 ../../mod/group.php:183
+msgid "Collection Name: "
+msgstr "Name der Sammlung:"
 
-#: ../../mod/network.php:484
-msgid "Connection: "
-msgstr "Verbindung:"
+#: ../../mod/group.php:89 ../../mod/group.php:186
+msgid "Members are visible to other channels"
+msgstr "Mitglieder sind sichtbar für andere Kanäle"
 
-#: ../../mod/network.php:487
-msgid "Invalid connection."
-msgstr "Ungültige Verbindung."
+#: ../../mod/group.php:107
+msgid "Collection removed."
+msgstr "Sammlung gelöscht."
 
-#: ../../mod/intro.php:17 ../../mod/intro.php:100
-#: ../../mod/connections.php:355 ../../mod/connections.php:491
-#: ../../mod/notifications.php:51 ../../mod/notifications.php:162
-#: ../../mod/notifications.php:208
-msgid "Ignore"
-msgstr "Ignorieren"
+#: ../../mod/group.php:109
+msgid "Unable to remove collection."
+msgstr "Löschen der Sammlung nicht möglich."
 
-#: ../../mod/intro.php:29 ../../mod/connections.php:122
-msgid "Connection updated."
-msgstr "Verbindung aktualisiert."
+#: ../../mod/group.php:182
+msgid "Collection Editor"
+msgstr "Sammlung-Editor"
 
-#: ../../mod/intro.php:31
-msgid "Connection update failed."
-msgstr "Aktualisierung der Verbindung fehlgeschlagen."
+#: ../../mod/group.php:196
+msgid "Members"
+msgstr "Mitglieder"
 
-#: ../../mod/intro.php:56
-msgid "Introductions and Connection Requests"
-msgstr "Vorstellungen und Kontaktanfragen"
+#: ../../mod/group.php:198
+msgid "All Connected Channels"
+msgstr "Alle verbundene Channels"
 
-#: ../../mod/intro.php:67
-msgid "No pending introductions."
-msgstr "Keine wartenden Vorstellungen."
+#: ../../mod/group.php:231
+msgid "Click on a channel to add or remove."
+msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus."
 
-#: ../../mod/intro.php:72
-msgid "System error. Please try again later."
-msgstr "Systemfehler. Bitte später erneut versuchen."
+#: ../../mod/photos.php:77
+msgid "Page owner information could not be retrieved."
+msgstr "Informationen über den Betreiber der Seite konnten nicht gefunden werden."
 
-#: ../../mod/intro.php:95 ../../mod/connections.php:496
-#: ../../mod/notifications.php:155 ../../mod/notifications.php:202
-msgid "Hide this contact from others"
-msgstr "Diese Verbindung vor den anderen verbergen."
+#: ../../mod/photos.php:97
+msgid "Album not found."
+msgstr "Album nicht gefunden."
 
-#: ../../mod/intro.php:96 ../../mod/notifications.php:156
-#: ../../mod/notifications.php:203
-msgid "Post a new friend activity"
-msgstr "Neue-Kontakt Nachricht senden"
+#: ../../mod/photos.php:119 ../../mod/photos.php:787
+msgid "Delete Album"
+msgstr "Album löschen"
 
-#: ../../mod/intro.php:96 ../../mod/notifications.php:156
-#: ../../mod/notifications.php:203
-msgid "if applicable"
-msgstr "falls anwendbar"
+#: ../../mod/photos.php:159 ../../mod/photos.php:1048
+msgid "Delete Photo"
+msgstr "Foto löschen"
 
-#: ../../mod/intro.php:101 ../../mod/notifications.php:35
-#: ../../mod/notifications.php:163 ../../mod/notifications.php:209
-msgid "Discard"
-msgstr "Verwerfen"
+#: ../../mod/photos.php:504
+#, 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/connections.php:67
-msgid "Could not access contact record."
-msgstr "Konnte auf den Kontakteintrag nicht zugreifen."
+#: ../../mod/photos.php:504
+msgid "a photo"
+msgstr "Foto"
 
-#: ../../mod/connections.php:81
-msgid "Could not locate selected profile."
-msgstr "Konnte das gewählte Profil nicht finden."
+#: ../../mod/photos.php:580
+msgid "No photos selected"
+msgstr "Keine Fotos ausgewählt"
 
-#: ../../mod/connections.php:124
-msgid "Failed to update connection record."
-msgstr "Konnte den Verbindungseintrag nicht aktualisieren."
+#: ../../mod/photos.php:627
+msgid "Access to this item is restricted."
+msgstr "Zugriff auf dieses Foto wurde eingeschränkt."
 
-#: ../../mod/connections.php:219
-msgid "Could not access address book record."
-msgstr "Konnte nicht auf den Eintrag im Adressbuch zugreifen."
+#: ../../mod/photos.php:692
+#, 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/connections.php:233
-msgid "Refresh failed - channel is currently unavailable."
-msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar."
+#: ../../mod/photos.php:695
+#, php-format
+msgid "You have used %1$.2f Mbytes of photo storage."
+msgstr "Du verwendets %1$.2f MBytes deines Foto-Speichers."
 
-#: ../../mod/connections.php:240
-msgid "Channel has been unblocked"
-msgstr "Kanal nicht mehr blockiert"
+#: ../../mod/photos.php:714
+msgid "Upload Photos"
+msgstr "Fotos hochladen"
 
-#: ../../mod/connections.php:241
-msgid "Channel has been blocked"
-msgstr "Kanal blockiert"
+#: ../../mod/photos.php:718 ../../mod/photos.php:782
+msgid "New album name: "
+msgstr "Name des neuen Albums:"
 
-#: ../../mod/connections.php:245 ../../mod/connections.php:257
-#: ../../mod/connections.php:269 ../../mod/connections.php:281
-#: ../../mod/connections.php:296
-msgid "Unable to set address book parameters."
-msgstr "Konnte die Adressbuch Parameter nicht setzen."
+#: ../../mod/photos.php:719
+msgid "or existing album name: "
+msgstr "oder bestehenden Album Namen:"
 
-#: ../../mod/connections.php:252
-msgid "Channel has been unignored"
-msgstr "Kanal wird nicht mehr ignoriert"
+#: ../../mod/photos.php:720
+msgid "Do not show a status post for this upload"
+msgstr "Keine Statusnachricht für diesen Upload senden"
 
-#: ../../mod/connections.php:253
-msgid "Channel has been ignored"
-msgstr "Kanal wird ignoriert"
+#: ../../mod/photos.php:722 ../../mod/photos.php:1043
+msgid "Permissions"
+msgstr "Berechtigungen"
 
-#: ../../mod/connections.php:264
-msgid "Channel has been unarchived"
-msgstr "Kanal wurde aus dem Archiv zurück geholt"
+#: ../../mod/photos.php:771 ../../mod/photos.php:793 ../../mod/photos.php:1219
+#: ../../mod/photos.php:1234
+msgid "Contact Photos"
+msgstr "Kontakt Bilder"
 
-#: ../../mod/connections.php:265
-msgid "Channel has been archived"
-msgstr "Kanal wurde archiviert"
+#: ../../mod/photos.php:797
+msgid "Edit Album"
+msgstr "Album bearbeiten"
 
-#: ../../mod/connections.php:276
-msgid "Channel has been unhidden"
-msgstr "Kanal wird nicht mehr versteckt"
+#: ../../mod/photos.php:803
+msgid "Show Newest First"
+msgstr "Zeige neueste zuerst"
 
-#: ../../mod/connections.php:277
-msgid "Channel has been hidden"
-msgstr "Kanal wurde versteckt"
+#: ../../mod/photos.php:805
+msgid "Show Oldest First"
+msgstr "Zeige älteste zuerst"
 
-#: ../../mod/connections.php:291
-msgid "Channel has been approved"
-msgstr "Kanal wurde zugelassen"
+#: ../../mod/photos.php:849 ../../mod/photos.php:1266
+msgid "View Photo"
+msgstr "Foto ansehen"
 
-#: ../../mod/connections.php:292
-msgid "Channel has been unapproved"
-msgstr "Zulassung des Kanals entfernt"
+#: ../../mod/photos.php:893
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."
 
-#: ../../mod/connections.php:310
-msgid "Contact has been removed."
-msgstr "Kontakt wurde entfernt."
+#: ../../mod/photos.php:895
+msgid "Photo not available"
+msgstr "Foto nicht verfügbar"
 
-#: ../../mod/connections.php:330
-#, php-format
-msgid "View %s's profile"
-msgstr "%s's Profil ansehen"
+#: ../../mod/photos.php:953
+msgid "Use as profile photo"
+msgstr "Als Profilfoto verwenden"
 
-#: ../../mod/connections.php:334
-msgid "Refresh Permissions"
-msgstr "Zugriffsrechte auffrischen"
+#: ../../mod/photos.php:977
+msgid "View Full Size"
+msgstr "In voller Größe anzeigen"
 
-#: ../../mod/connections.php:337
-msgid "Fetch updated permissions"
-msgstr "Aktualisierte Zugriffsrechte abfragen"
+#: ../../mod/photos.php:1031
+msgid "Edit photo"
+msgstr "Foto bearbeiten"
 
-#: ../../mod/connections.php:341
-msgid "Recent Activity"
-msgstr "Kürzliche Aktivitäten"
+#: ../../mod/photos.php:1033
+msgid "Rotate CW (right)"
+msgstr "Drehen US (rechts)"
 
-#: ../../mod/connections.php:344
-msgid "View recent posts and comments"
-msgstr "Betrachte die neuesten Beiträge und Kommentare"
+#: ../../mod/photos.php:1034
+msgid "Rotate CCW (left)"
+msgstr "Drehen EUS (links)"
 
-#: ../../mod/connections.php:351
-msgid "Block or Unblock this connection"
-msgstr "Verbindung blockieren oder frei geben"
+#: ../../mod/photos.php:1036
+msgid "New album name"
+msgstr "Name des neuen Albums:"
 
-#: ../../mod/connections.php:355 ../../mod/connections.php:491
-msgid "Unignore"
-msgstr "Nicht ignorieren"
+#: ../../mod/photos.php:1039
+msgid "Caption"
+msgstr "Bildunterschrift"
 
-#: ../../mod/connections.php:358
-msgid "Ignore or Unignore this connection"
-msgstr "Verbindung ignorieren oder wieder beachten"
+#: ../../mod/photos.php:1041
+msgid "Add a Tag"
+msgstr "Schlagwort hinzufügen"
 
-#: ../../mod/connections.php:361
-msgid "Unarchive"
-msgstr "Aus Archiv zurückholen"
+#: ../../mod/photos.php:1045
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: ../../mod/connections.php:361
-msgid "Archive"
-msgstr "Archivieren"
+#: ../../mod/photos.php:1272
+msgid "View Album"
+msgstr "Album ansehen"
 
-#: ../../mod/connections.php:364
-msgid "Archive or Unarchive this connection"
-msgstr "Archiviere diese Verbindung oder hole sie aus dem Archiv zurück"
+#: ../../mod/photos.php:1281
+msgid "Recent Photos"
+msgstr "Neueste Fotos"
 
-#: ../../mod/connections.php:367
-msgid "Unhide"
-msgstr "aufdecken"
+#: ../../mod/ping.php:160
+msgid "sent you a private message"
+msgstr "eine private Nachricht schicken"
 
-#: ../../mod/connections.php:367
-msgid "Hide"
-msgstr "Verbergen"
+#: ../../mod/ping.php:218
+msgid "added your channel"
+msgstr "hat deinen Kanal hinzugefügt"
 
-#: ../../mod/connections.php:370
-msgid "Hide or Unhide this connection"
-msgstr "Diese Verbindung verstecken oder aufdecken"
+#: ../../mod/ping.php:262
+msgid "posted an event"
+msgstr "hat eine Veranstaltung veröffentlicht"
 
-#: ../../mod/connections.php:377
-msgid "Delete this connection"
-msgstr "Verbindung löschen"
+#: ../../mod/filer.php:35
+msgid "- select -"
+msgstr "-auswählen-"
 
-#: ../../mod/connections.php:410
-msgid "Unknown"
-msgstr "Unbekannt"
+#: ../../mod/menu.php:17
+msgid "Menu updated."
+msgstr "Menü aktualisiert."
 
-#: ../../mod/connections.php:420 ../../mod/connections.php:449
-msgid "Approve this connection"
-msgstr "Verbindung genehmigen"
+#: ../../mod/menu.php:21
+msgid "Unable to update menu."
+msgstr "Kann Menü nicht aktualisieren."
 
-#: ../../mod/connections.php:420
-msgid "Accept connection to allow communication"
-msgstr "Aktzeptiere die Verbindung um Kommunikation zu ermöglichen"
+#: ../../mod/menu.php:26
+msgid "Menu created."
+msgstr "Menü erstellt."
 
-#: ../../mod/connections.php:436
-msgid "Automatic Permissions Settings"
-msgstr "Automatische Berechtigungs-Einstellungen"
+#: ../../mod/menu.php:30
+msgid "Unable to create menu."
+msgstr "Kann Menü nicht erstellen."
 
-#: ../../mod/connections.php:436
-#, php-format
-msgid "Connections: settings for %s"
-msgstr "Verbindungseinstellungen für %s"
+#: ../../mod/menu.php:53
+msgid "Manage Menus"
+msgstr "Menüs verwalten"
 
-#: ../../mod/connections.php:440
-msgid ""
-"When receiving a channel introduction, any permissions provided here will be"
-" applied to the new connection automatically and the introduction approved. "
-"Leave this page if you do not wish to use this feature."
-msgstr "Wenn eine Kanal-Vorstellung empfangen wird, werden die hier getroffenen Einstellungen automatisch angewandt und der Anfrage wird stattgegeben. Verlasse diese Seite, wenn du dieses Feature nicht verwanden möchtest."
+#: ../../mod/menu.php:56
+msgid "Drop"
+msgstr "Löschen"
 
-#: ../../mod/connections.php:442
-msgid "Slide to adjust your degree of friendship"
-msgstr "Schieben um den Grad der Freundschaft zu wählen"
+#: ../../mod/menu.php:58
+msgid "Create a new menu"
+msgstr "Neues Menü erstellen"
 
-#: ../../mod/connections.php:448
-msgid "inherited"
-msgstr "Geerbt"
+#: ../../mod/menu.php:59
+msgid "Delete this menu"
+msgstr "Lösche dieses Menü"
 
-#: ../../mod/connections.php:450
-msgid "Connection has no individual permissions!"
-msgstr "Diese Verbindung hat keine individuellen Zugriffseinstellungen."
+#: ../../mod/menu.php:60 ../../mod/menu.php:104
+msgid "Edit menu contents"
+msgstr "Bearbeite Menü Inhalte"
 
-#: ../../mod/connections.php:451
-msgid ""
-"This may be appropriate based on your <a href=\"settings\">privacy "
-"settings</a>, though you may wish to review the \"Advanced Permissions\"."
-msgstr "Abhängig von deinen <a href=\"settings\">Privatsphären Einstellungen</a> könnte dies angebracht sein, eventuell solltest du aber die \"Erweiterte Zugriffsrechte\" überprüfen."
+#: ../../mod/menu.php:61
+msgid "Edit this menu"
+msgstr "Dieses Menü bearbeiten"
 
-#: ../../mod/connections.php:453
-msgid "Profile Visibility"
-msgstr "Sichtbarkeit des Profils"
+#: ../../mod/menu.php:76
+msgid "New Menu"
+msgstr "Neues Menü"
 
-#: ../../mod/connections.php:454
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn deine Profilseite über eine verifizierte Verbindung aufgerufen wird."
+#: ../../mod/menu.php:77 ../../mod/menu.php:105
+msgid "Menu name"
+msgstr "Menü Name"
+
+#: ../../mod/menu.php:77 ../../mod/menu.php:105
+msgid "Must be unique, only seen by you"
+msgstr "Muss unverwechselbar sein, nur für dich sichtbar"
 
-#: ../../mod/connections.php:455
-msgid "Contact Information / Notes"
-msgstr "Kontaktinformationen / Notizen"
+#: ../../mod/menu.php:78 ../../mod/menu.php:106
+msgid "Menu title"
+msgstr "Menü Titel"
 
-#: ../../mod/connections.php:456
-msgid "Edit contact notes"
-msgstr "Kontaktnotizen editieren"
+#: ../../mod/menu.php:78 ../../mod/menu.php:106
+msgid "Menu title as seen by others"
+msgstr "Menü Titel wie er von anderen gesehen wird"
 
-#: ../../mod/connections.php:458
-msgid "Their Settings"
-msgstr "Deren Einstellungen"
+#: ../../mod/menu.php:93
+msgid "Menu deleted."
+msgstr "Menü gelöscht."
 
-#: ../../mod/connections.php:459
-msgid "My Settings"
-msgstr "Meine Einstellungen"
+#: ../../mod/menu.php:95
+msgid "Menu could not be deleted."
+msgstr "Menü konnte nicht gelöscht werden."
 
-#: ../../mod/connections.php:461
-msgid "Forum Members"
-msgstr "Forum Mitglieder"
+#: ../../mod/menu.php:101
+msgid "Edit Menu"
+msgstr "Menü bearbeiten"
 
-#: ../../mod/connections.php:462
-msgid "Soapbox"
-msgstr "Marktschreier"
+#: ../../mod/menu.php:103
+msgid "Add or remove entries to this menu"
+msgstr "Einträge zu diesem Menü hinzufügen oder entfernen"
 
-#: ../../mod/connections.php:463
-msgid "Full Sharing"
-msgstr "Volles Teilen"
+#: ../../mod/home.php:89
+#, php-format
+msgid "Welcome to %s"
+msgstr "Willkommen auf %s"
 
-#: ../../mod/connections.php:464
-msgid "Cautious Sharing"
-msgstr "Vorsichtiges Teilen"
+#: ../../mod/message.php:33
+msgid "Unable to lookup recipient."
+msgstr "Konnte den Empfänger nicht finden."
 
-#: ../../mod/connections.php:465
-msgid "Follow Only"
-msgstr "Nur Folgen"
+#: ../../mod/message.php:41
+msgid "Unable to communicate with requested channel."
+msgstr "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen."
 
-#: ../../mod/connections.php:466
-msgid "Individual Permissions"
-msgstr "Individuelle Zugriffseinstellungen"
+#: ../../mod/message.php:48
+msgid "Cannot verify requested channel."
+msgstr "Verifizierung des angeforderten Kanals fehlgeschlagen."
 
-#: ../../mod/connections.php:467
-msgid ""
-"Some permissions may be inherited from your channel <a "
-"href=\"settings\">privacy settings</a>, which have higher priority. Changing"
-" those inherited settings on this page will have no effect."
-msgstr "Einige Genehmigungen können von deinen <a href=\"settings\">Sicherheits- und Datenschutz-Einstellungen</a> geerbt sein (siehe Kennzeichnung), da diese eine höhere Priorität haben. Wenn du solche Genehmigungen hier änderst, hat das keine Auswirkungen."
+#: ../../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/connections.php:468
-msgid "Advanced Permissions"
-msgstr "Erweiterte Zugriffsrechte"
+#: ../../mod/message.php:200
+msgid "Messages"
+msgstr "Nachrichten"
 
-#: ../../mod/connections.php:469
-msgid "Quick Links"
-msgstr "Quick Links"
+#: ../../mod/message.php:211
+msgid "Message deleted."
+msgstr "Nachricht gelöscht."
 
-#: ../../mod/connections.php:473
-#, php-format
-msgid "Visit %s's profile - %s"
-msgstr "%s's Profil besuchen - %s"
+#: ../../mod/message.php:218
+msgid "Conversation removed."
+msgstr "Unterhaltung gelöscht."
 
-#: ../../mod/connections.php:474
-msgid "Block/Unblock contact"
-msgstr "Geblockt Status ein- / ausschalten"
+#: ../../mod/message.php:235
+msgid "Message recalled."
+msgstr "Nachricht widerrufen."
 
-#: ../../mod/connections.php:475
-msgid "Ignore contact"
-msgstr "Kontakt ignorieren"
+#: ../../mod/message.php:293
+msgid "Send Private Message"
+msgstr "Private Nachricht senden"
 
-#: ../../mod/connections.php:476
-msgid "Repair URL settings"
-msgstr "URL Einstellungen reparieren"
+#: ../../mod/message.php:294 ../../mod/message.php:447
+msgid "To:"
+msgstr "An:"
 
-#: ../../mod/connections.php:477
-msgid "View conversations"
-msgstr "Unterhaltungen anzeigen"
+#: ../../mod/message.php:299 ../../mod/message.php:449
+msgid "Subject:"
+msgstr "Betreff:"
 
-#: ../../mod/connections.php:479
-msgid "Delete contact"
-msgstr "Kontakt löschen"
+#: ../../mod/message.php:336
+msgid "No messages."
+msgstr "Keine Nachrichten."
 
-#: ../../mod/connections.php:482
-msgid "Last update:"
-msgstr "Letzte Aktualisierung:"
+#: ../../mod/message.php:352 ../../mod/message.php:416
+msgid "Delete message"
+msgstr "Nachricht löschen"
 
-#: ../../mod/connections.php:484
-msgid "Update public posts"
-msgstr "Öffentliche Beiträge aktualisieren"
+#: ../../mod/message.php:354
+msgid "D, d M Y - g:i A"
+msgstr "D, d. M Y - g:i A"
 
-#: ../../mod/connections.php:486
-msgid "Update now"
-msgstr "Jetzt aktualisieren"
+#: ../../mod/message.php:373
+msgid "Message not found."
+msgstr "Nachricht nicht gefunden."
 
-#: ../../mod/connections.php:492
-msgid "Currently blocked"
-msgstr "Derzeit blockiert"
+#: ../../mod/message.php:417
+msgid "Recall message"
+msgstr "Widerrufe die Nachricht"
 
-#: ../../mod/connections.php:493
-msgid "Currently ignored"
-msgstr "Derzeit ignoriert"
+#: ../../mod/message.php:419
+msgid "Message has been recalled."
+msgstr "Die Nachricht wurde widerrufen."
 
-#: ../../mod/connections.php:494
-msgid "Currently archived"
-msgstr "Derzeit archiviert"
+#: ../../mod/message.php:436
+msgid "Private Conversation"
+msgstr "Private Unterhaltung"
 
-#: ../../mod/connections.php:495
-msgid "Currently pending"
-msgstr "Derzeit anstehend"
+#: ../../mod/message.php:440
+msgid "Delete conversation"
+msgstr "Unterhaltung löschen"
 
-#: ../../mod/connections.php:496
+#: ../../mod/message.php:442
 msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>können</strong> immer noch sichtbar sein"
+"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/connections.php:532 ../../mod/connections.php:604
+#: ../../mod/message.php:446
+msgid "Send Reply"
+msgstr "Antwort senden"
+
+#: ../../mod/connections.php:189 ../../mod/connections.php:261
 msgid "Blocked"
 msgstr "Blockiert"
 
-#: ../../mod/connections.php:537 ../../mod/connections.php:611
+#: ../../mod/connections.php:194 ../../mod/connections.php:268
 msgid "Ignored"
 msgstr "Ignoriert"
 
-#: ../../mod/connections.php:542 ../../mod/connections.php:625
+#: ../../mod/connections.php:199 ../../mod/connections.php:282
 msgid "Hidden"
 msgstr "Versteckt"
 
-#: ../../mod/connections.php:547 ../../mod/connections.php:618
+#: ../../mod/connections.php:204 ../../mod/connections.php:275
 msgid "Archived"
 msgstr "Archiviert"
 
-#: ../../mod/connections.php:558
+#: ../../mod/connections.php:215
 msgid "All"
 msgstr "Alle"
 
-#: ../../mod/connections.php:579
-msgid "Suggestions"
-msgstr "Vorschläge"
-
-#: ../../mod/connections.php:582
+#: ../../mod/connections.php:239
 msgid "Suggest new connections"
 msgstr "Neue Verbindungen vorschlagen"
 
-#: ../../mod/connections.php:588
+#: ../../mod/connections.php:245
 msgid "Show pending (new) connections"
 msgstr "Zeige schwebende (neue) Verbindungen"
 
-#: ../../mod/connections.php:591
+#: ../../mod/connections.php:248
 msgid "All Connections"
 msgstr "Alle Verbindungen"
 
-#: ../../mod/connections.php:594
+#: ../../mod/connections.php:251
 msgid "Show all connections"
 msgstr "Zeige alle Verbindungen"
 
-#: ../../mod/connections.php:597
+#: ../../mod/connections.php:254
 msgid "Unblocked"
 msgstr "Freigegeben"
 
-#: ../../mod/connections.php:600
+#: ../../mod/connections.php:257
 msgid "Only show unblocked connections"
 msgstr "Zeige nur freigegebene Verbindungen"
 
-#: ../../mod/connections.php:607
+#: ../../mod/connections.php:264
 msgid "Only show blocked connections"
 msgstr "Zeige nur blockierte Verbindungen"
 
-#: ../../mod/connections.php:614
+#: ../../mod/connections.php:271
 msgid "Only show ignored connections"
 msgstr "Zeige nur ignorierte Verbindungen"
 
-#: ../../mod/connections.php:621
+#: ../../mod/connections.php:278
 msgid "Only show archived connections"
 msgstr "Zeige nur archivierte Verbindungen"
 
-#: ../../mod/connections.php:628
+#: ../../mod/connections.php:285
 msgid "Only show hidden connections"
 msgstr "Zeige nur versteckte Verbindungen"
 
-#: ../../mod/connections.php:670
+#: ../../mod/connections.php:329
 #, php-format
 msgid "%1$s [%2$s]"
 msgstr "%1$s [%2$s]"
 
-#: ../../mod/connections.php:671 ../../mod/nogroup.php:41
+#: ../../mod/connections.php:330
 msgid "Edit contact"
 msgstr "Kontakt bearbeiten"
 
-#: ../../mod/connections.php:695
+#: ../../mod/connections.php:353
 msgid "Search your connections"
 msgstr "Verbindungen durchsuchen"
 
-#: ../../mod/connections.php:696
+#: ../../mod/connections.php:354
 msgid "Finding: "
 msgstr "Ergebnisse:"
 
+#: ../../mod/layouts.php:52
+msgid "Layout Help"
+msgstr "Layout Hilfe"
+
+#: ../../mod/layouts.php:55
+msgid "Help with this feature"
+msgstr "Hilfe zu diesem Feature"
+
+#: ../../mod/layouts.php:74
+msgid "Layout Name"
+msgstr "Layout Name"
+
+#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55
+msgid "Help:"
+msgstr "Hilfe:"
+
+#: ../../mod/help.php:68 ../../index.php:226
+msgid "Not Found"
+msgstr "Nicht gefunden"
+
+#: ../../mod/rmagic.php:56
+msgid "Remote Authentication"
+msgstr "Entfernte Authentifizierung"
+
+#: ../../mod/rmagic.php:57
+msgid "Enter your channel address (e.g. channel@example.com)"
+msgstr "Deine Kanal-Adresse (z.B. channel@example.com)"
+
+#: ../../mod/rmagic.php:58
+msgid "Authenticate"
+msgstr "Authentifizieren"
+
+#: ../../mod/network.php:79
+msgid "No such group"
+msgstr "Gruppe existiert nicht"
+
+#: ../../mod/network.php:118
+msgid "Search Results For:"
+msgstr "Suchergebnisse für:"
+
+#: ../../mod/network.php:172
+msgid "Collection is empty"
+msgstr "Sammlung ist leer"
+
+#: ../../mod/network.php:180
+msgid "Collection: "
+msgstr "Sammlung:"
+
+#: ../../mod/network.php:193
+msgid "Connection: "
+msgstr "Verbindung:"
+
+#: ../../mod/network.php:196
+msgid "Invalid connection."
+msgstr "Ungültige Verbindung."
+
+#: ../../mod/follow.php:25
+msgid "Channel added."
+msgstr "Kanal hinzugefügt."
+
+#: ../../mod/post.php:222
+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
+#, php-format
+msgid "Welcome %s. Remote authentication successful."
+msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich."
+
 #: ../../mod/dirsearch.php:21
 msgid "This site is not a directory server"
 msgstr "Diese Website ist kein Verzeichnis-Server"
@@ -5678,8 +5387,12 @@ msgstr "Entfernte Privatsphären Einstellungen sind nicht verfügbar."
 msgid "Visible to:"
 msgstr "Sichtbar für:"
 
+#: ../../mod/magic.php:70
+msgid "Hub not found."
+msgstr "Server nicht gefunden."
+
 #: ../../mod/profiles.php:18 ../../mod/profiles.php:138
-#: ../../mod/profiles.php:179 ../../mod/profiles.php:486
+#: ../../mod/profiles.php:168 ../../mod/profiles.php:475
 msgid "Profile not found."
 msgstr "Profil nicht gefunden."
 
@@ -5699,248 +5412,228 @@ msgstr "Neues Profil erstellt."
 msgid "Profile unavailable to clone."
 msgstr "Profil kann nicht geklont werden."
 
-#: ../../mod/profiles.php:189
+#: ../../mod/profiles.php:178
 msgid "Profile Name is required."
 msgstr "Profil-Name erforderlich."
 
-#: ../../mod/profiles.php:317
+#: ../../mod/profiles.php:306
 msgid "Marital Status"
 msgstr "Familienstand"
 
-#: ../../mod/profiles.php:321
+#: ../../mod/profiles.php:310
 msgid "Romantic Partner"
 msgstr "Romantische Partner"
 
-#: ../../mod/profiles.php:325
+#: ../../mod/profiles.php:314
 msgid "Likes"
 msgstr "Gefällt-mir"
 
-#: ../../mod/profiles.php:329
+#: ../../mod/profiles.php:318
 msgid "Dislikes"
 msgstr "Gefällt-mir-nicht"
 
-#: ../../mod/profiles.php:333
+#: ../../mod/profiles.php:322
 msgid "Work/Employment"
 msgstr "Arbeit/Anstellung"
 
-#: ../../mod/profiles.php:336
+#: ../../mod/profiles.php:325
 msgid "Religion"
 msgstr "Religion"
 
-#: ../../mod/profiles.php:340
+#: ../../mod/profiles.php:329
 msgid "Political Views"
 msgstr "Politische Anscihten"
 
-#: ../../mod/profiles.php:344
+#: ../../mod/profiles.php:333
 msgid "Gender"
 msgstr "Geschlecht"
 
-#: ../../mod/profiles.php:348
+#: ../../mod/profiles.php:337
 msgid "Sexual Preference"
 msgstr "Sexuelle Orientierung"
 
-#: ../../mod/profiles.php:352
+#: ../../mod/profiles.php:341
 msgid "Homepage"
 msgstr "Webseite"
 
-#: ../../mod/profiles.php:356
+#: ../../mod/profiles.php:345
 msgid "Interests"
 msgstr "Hobbys/Interessen"
 
-#: ../../mod/profiles.php:360
+#: ../../mod/profiles.php:349
 msgid "Address"
 msgstr "Adresse"
 
-#: ../../mod/profiles.php:367 ../../mod/pubsites.php:31
+#: ../../mod/profiles.php:356 ../../mod/pubsites.php:31
 msgid "Location"
 msgstr "Ort"
 
-#: ../../mod/profiles.php:450
+#: ../../mod/profiles.php:439
 msgid "Profile updated."
 msgstr "Profil aktualisiert."
 
-#: ../../mod/profiles.php:505
+#: ../../mod/profiles.php:494
 msgid "Hide your contact/friend list from viewers of this profile?"
 msgstr "Verberge die Liste deiner Kontakte vor Betrachtern dieses Profils"
 
-#: ../../mod/profiles.php:528
+#: ../../mod/profiles.php:517
 msgid "Edit Profile Details"
 msgstr "Bearbeite Profil-Details"
 
-#: ../../mod/profiles.php:530
+#: ../../mod/profiles.php:519
 msgid "View this profile"
 msgstr "Dieses Profil ansehen"
 
-#: ../../mod/profiles.php:531
+#: ../../mod/profiles.php:520
 msgid "Change Profile Photo"
 msgstr "Profilfoto ändern"
 
-#: ../../mod/profiles.php:532
+#: ../../mod/profiles.php:521
 msgid "Create a new profile using these settings"
 msgstr "Neues Profil anlegen und diese Einstellungen übernehmen"
 
-#: ../../mod/profiles.php:533
+#: ../../mod/profiles.php:522
 msgid "Clone this profile"
 msgstr "Dieses Profil klonen"
 
-#: ../../mod/profiles.php:534
+#: ../../mod/profiles.php:523
 msgid "Delete this profile"
 msgstr "Dieses Profil löschen"
 
-#: ../../mod/profiles.php:535
+#: ../../mod/profiles.php:524
 msgid "Profile Name:"
 msgstr "Profilname:"
 
-#: ../../mod/profiles.php:536
+#: ../../mod/profiles.php:525
 msgid "Your Full Name:"
 msgstr "Dein voller Name:"
 
-#: ../../mod/profiles.php:537
+#: ../../mod/profiles.php:526
 msgid "Title/Description:"
 msgstr "Titel/Beschreibung:"
 
-#: ../../mod/profiles.php:538
+#: ../../mod/profiles.php:527
 msgid "Your Gender:"
 msgstr "Dein Geschlecht:"
 
-#: ../../mod/profiles.php:539
+#: ../../mod/profiles.php:528
 #, php-format
 msgid "Birthday (%s):"
 msgstr "Geburtstag (%s):"
 
-#: ../../mod/profiles.php:540
+#: ../../mod/profiles.php:529
 msgid "Street Address:"
 msgstr "Straße und Hausnummer:"
 
-#: ../../mod/profiles.php:541
+#: ../../mod/profiles.php:530
 msgid "Locality/City:"
 msgstr "Wohnort:"
 
-#: ../../mod/profiles.php:542
+#: ../../mod/profiles.php:531
 msgid "Postal/Zip Code:"
 msgstr "Postleitzahl:"
 
-#: ../../mod/profiles.php:543
+#: ../../mod/profiles.php:532
 msgid "Country:"
 msgstr "Land:"
 
-#: ../../mod/profiles.php:544
+#: ../../mod/profiles.php:533
 msgid "Region/State:"
 msgstr "Region/Bundesstaat"
 
-#: ../../mod/profiles.php:545
+#: ../../mod/profiles.php:534
 msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
 msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
 
-#: ../../mod/profiles.php:546
+#: ../../mod/profiles.php:535
 msgid "Who: (if applicable)"
 msgstr "Wer: (falls anwendbar)"
 
-#: ../../mod/profiles.php:547
+#: ../../mod/profiles.php:536
 msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
 msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
 
-#: ../../mod/profiles.php:548
+#: ../../mod/profiles.php:537
 msgid "Since [date]:"
 msgstr "Seit [Datum]:"
 
-#: ../../mod/profiles.php:550
+#: ../../mod/profiles.php:539
 msgid "Homepage URL:"
 msgstr "Homepage URL:"
 
-#: ../../mod/profiles.php:553
+#: ../../mod/profiles.php:542
 msgid "Religious Views:"
 msgstr "Religiöse Ansichten:"
 
-#: ../../mod/profiles.php:554
+#: ../../mod/profiles.php:543
 msgid "Keywords:"
 msgstr "Schlüsselwörter:"
 
-#: ../../mod/profiles.php:557
+#: ../../mod/profiles.php:546
 msgid "Example: fishing photography software"
 msgstr "Beispiel: fischen Fotografie Software"
 
-#: ../../mod/profiles.php:558
+#: ../../mod/profiles.php:547
 msgid "Used in directory listings"
 msgstr "Wird in Verzeichnis Auflistungen verwendet"
 
-#: ../../mod/profiles.php:559
+#: ../../mod/profiles.php:548
 msgid "Tell us about yourself..."
 msgstr "Erzähl uns ein wenig von Dir..."
 
-#: ../../mod/profiles.php:560
+#: ../../mod/profiles.php:549
 msgid "Hobbies/Interests"
 msgstr "Hobbys/Interessen"
 
-#: ../../mod/profiles.php:561
+#: ../../mod/profiles.php:550
 msgid "Contact information and Social Networks"
 msgstr "Kontaktinformation und soziale Netzwerke"
 
-#: ../../mod/profiles.php:562
+#: ../../mod/profiles.php:551
 msgid "My other channels"
 msgstr "Meine anderen Channels"
 
-#: ../../mod/profiles.php:563
+#: ../../mod/profiles.php:552
 msgid "Musical interests"
 msgstr "Musikalische Interessen"
 
-#: ../../mod/profiles.php:564
+#: ../../mod/profiles.php:553
 msgid "Books, literature"
 msgstr "Bücher, Literatur"
 
-#: ../../mod/profiles.php:565
+#: ../../mod/profiles.php:554
 msgid "Television"
 msgstr "Fernsehen"
 
-#: ../../mod/profiles.php:566
+#: ../../mod/profiles.php:555
 msgid "Film/dance/culture/entertainment"
 msgstr "Film/Tanz/Kultur/Unterhaltung"
 
-#: ../../mod/profiles.php:567
+#: ../../mod/profiles.php:556
 msgid "Love/romance"
 msgstr "Liebe/Romantik"
 
-#: ../../mod/profiles.php:568
+#: ../../mod/profiles.php:557
 msgid "Work/employment"
 msgstr "Arbeit/Anstellung"
 
-#: ../../mod/profiles.php:569
+#: ../../mod/profiles.php:558
 msgid "School/education"
 msgstr "Schule/Ausbildung"
 
-#: ../../mod/profiles.php:574
+#: ../../mod/profiles.php:563
 msgid ""
 "This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
 "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:584 ../../mod/directory.php:160
-msgid "Age: "
-msgstr "Alter:"
-
-#: ../../mod/profiles.php:623
-msgid "Edit/Manage Profiles"
-msgstr "Bearbeite/Verwalte Profile"
-
-#: ../../mod/profiles.php:624 ../../boot.php:1755
-msgid "Change profile photo"
-msgstr "Ändere das Profilfoto"
-
-#: ../../mod/profiles.php:625 ../../boot.php:1762
-msgid "Create New Profile"
-msgstr "Neues Profil erstellen"
-
-#: ../../mod/profiles.php:636 ../../boot.php:1776
-msgid "Profile Image"
-msgstr "Profilfoto:"
-
-#: ../../mod/profiles.php:639 ../../boot.php:1779
-msgid "visible to everybody"
-msgstr "sichtbar für jeden"
-
-#: ../../mod/profiles.php:640 ../../boot.php:1780
-msgid "Edit visibility"
-msgstr "Sichtbarkeit bearbeiten"
+#: ../../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/new_channel.php:107
 msgid "Add a Channel"
@@ -6016,7 +5709,7 @@ msgid ""
 "Password reset failed."
 msgstr "Die Anfrage konnte nicht verifiziert werden. (Es könnte sein, dass du vorher bereits eine Anfrage eingereicht hast.) Passwort Anforderung fehlgeschlagen."
 
-#: ../../mod/lostpass.php:85 ../../boot.php:1469
+#: ../../mod/lostpass.php:85 ../../boot.php:1426
 msgid "Password Reset"
 msgstr "Zurücksetzen des Kennworts"
 
@@ -6090,19 +5783,19 @@ msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen."
 msgid "Cloned channel not found. Import failed."
 msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen."
 
-#: ../../mod/import.php:356
+#: ../../mod/import.php:358
 msgid "Import completed."
 msgstr "Import abgeschlossen."
 
-#: ../../mod/import.php:369
+#: ../../mod/import.php:371
 msgid "You must be logged in to use this feature."
 msgstr "Du musst angemeldet sein um diese Funktion zu nutzen."
 
-#: ../../mod/import.php:374
+#: ../../mod/import.php:376
 msgid "Import Channel"
 msgstr "Kanal importieren"
 
-#: ../../mod/import.php:375
+#: ../../mod/import.php:377
 msgid ""
 "Use this form to import an existing channel from a different server/hub. You"
 " may retrieve the channel identity from the old server/hub via the network "
@@ -6110,165 +5803,463 @@ msgid ""
 "be imported. Importation of content is not yet available."
 msgstr "Verwende dieses Formular um einen existierenden Kanal von einem anderen Server/Hub zu importieren. Du kannst die Kanal-Identität vom alten Server/Hub über das Netzwerk erhalten oder über eine exportierte Sicherungskopie. Es werden ausschließlich die Identität und die Verbindungen/Beziehungen importiert. Das Importieren von Inhalten ist derzeit nicht möglich."
 
-#: ../../mod/import.php:376
+#: ../../mod/import.php:378
 msgid "File to Upload"
 msgstr "Hochzuladende Datei:"
 
-#: ../../mod/import.php:377
-msgid "Or provide the old server/hub details"
-msgstr "Oder gib die Deteils deines alten Server/Hubs an"
+#: ../../mod/import.php:379
+msgid "Or provide the old server/hub details"
+msgstr "Oder gib die Deteils deines alten Server/Hubs an"
+
+#: ../../mod/import.php:380
+msgid "Your old identity address (xyz@example.com)"
+msgstr "Die alte Adresse der Identität (xyz@example.com)"
+
+#: ../../mod/import.php:381
+msgid "Your old login email address"
+msgstr "Ihre alte Login E-Mail Adresse"
+
+#: ../../mod/import.php:382
+msgid "Your old login password"
+msgstr "Ihr altes Login Kennwort"
+
+#: ../../mod/import.php:383
+msgid ""
+"For either option, please choose whether to make this hub your new primary "
+"address, or whether your old location should continue this role. You will be"
+" able to post from either location, but only one can be marked as the "
+"primary location for files, photos, and media."
+msgstr "Egal welche Option du wählst, bitte lege fest, ob dieser Hub deine neue primäre Adresse sein soll oder ob dein alter Hub diese Rolle weiterhin wahrnimmt. Du kannst von beiden Orten aus neue Dinge posten, aber nur einer kann die primäre Adresse deiner Dateien, Fotos und anderen Mediendaten sein."
+
+#: ../../mod/import.php:384
+msgid "Make this hub my primary location"
+msgstr "Dieser Hub ist mein primärer Server."
+
+#: ../../mod/manage.php:63
+#, php-format
+msgid "You have created %1$.0f of %2$.0f allowed channels."
+msgstr "Du hast %1$.0f von %2$.0f erlaubten Kanälen eingerichtet."
+
+#: ../../mod/manage.php:71
+msgid "Create a new channel"
+msgstr "Erzeuge neues Kanal"
+
+#: ../../mod/manage.php:76
+msgid "Channel Manager"
+msgstr "Kanal-Manager"
+
+#: ../../mod/manage.php:77
+msgid "Current Channel"
+msgstr "Aktueller Kanal"
+
+#: ../../mod/manage.php:79
+msgid "Attach to one of your channels by selecting it."
+msgstr "Wähle einen deiner Kanäle aus um ihn zu verwenden."
+
+#: ../../mod/manage.php:80
+msgid "Default Channel"
+msgstr "Standard Kanal"
+
+#: ../../mod/manage.php:81
+msgid "Make Default"
+msgstr "Zum Standard machen"
+
+#: ../../mod/vote.php:97
+msgid "Total votes"
+msgstr "Stimmen gesamt"
+
+#: ../../mod/vote.php:98
+msgid "Average Rating"
+msgstr "durchschnittliche Bewertung"
+
+#: ../../mod/match.php:16
+msgid "Profile Match"
+msgstr "Profil-Übereinstimmungen"
+
+#: ../../mod/match.php:24
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Keine Schlüsselbegriffe für den Abgleich gefunden. Bitte füge Schlüsselbegriffe zu deinem Standardprofil hinzu."
+
+#: ../../mod/match.php:61
+msgid "is interested in:"
+msgstr "interessiert sich für:"
+
+#: ../../mod/match.php:69
+msgid "No matches"
+msgstr "Keine Übereinstimmungen"
+
+#: ../../mod/zfinger.php:23
+msgid "invalid target signature"
+msgstr "Ungültige Signatur des Ziels"
+
+#: ../../mod/settings.php:71
+msgid "Name is required"
+msgstr "Name wird benötigt"
+
+#: ../../mod/settings.php:75
+msgid "Key and Secret are required"
+msgstr "Schlüssel und Geheimnis werden benötigt"
+
+#: ../../mod/settings.php:79 ../../mod/settings.php:533
+msgid "Update"
+msgstr "Update"
+
+#: ../../mod/settings.php:192
+msgid "Passwords do not match. Password unchanged."
+msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert."
+
+#: ../../mod/settings.php:196
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert."
+
+#: ../../mod/settings.php:209
+msgid "Password changed."
+msgstr "Kennwort geändert."
+
+#: ../../mod/settings.php:211
+msgid "Password update failed. Please try again."
+msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal."
+
+#: ../../mod/settings.php:225
+msgid "Not valid email."
+msgstr "Keine gültige E-Mail Adresse."
+
+#: ../../mod/settings.php:228
+msgid "Protected email address. Cannot change to that email."
+msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden."
+
+#: ../../mod/settings.php:237
+msgid "System failure storing new email. Please try again."
+msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal."
+
+#: ../../mod/settings.php:435
+msgid "Settings updated."
+msgstr "Einstellungen aktualisiert."
+
+#: ../../mod/settings.php:506 ../../mod/settings.php:532
+#: ../../mod/settings.php:568
+msgid "Add application"
+msgstr "Anwendung hinzufügen"
+
+#: ../../mod/settings.php:509
+msgid "Name of application"
+msgstr "Name der Anwendung"
+
+#: ../../mod/settings.php:510 ../../mod/settings.php:536
+msgid "Consumer Key"
+msgstr "Consumer Key"
+
+#: ../../mod/settings.php:510 ../../mod/settings.php:511
+msgid "Automatically generated - change if desired. Max length 20"
+msgstr "Automatisch erzeugt - ändern falls erwünscht. Maximale Länge 20"
+
+#: ../../mod/settings.php:511 ../../mod/settings.php:537
+msgid "Consumer Secret"
+msgstr "Consumer Secret"
+
+#: ../../mod/settings.php:512 ../../mod/settings.php:538
+msgid "Redirect"
+msgstr "Umleitung"
+
+#: ../../mod/settings.php:512
+msgid ""
+"Redirect URI - leave blank unless your application specifically requires "
+"this"
+msgstr "Umleitungs-URl - lasse dies frei außer deine Anwendung erfordert dies explizit"
+
+#: ../../mod/settings.php:513 ../../mod/settings.php:539
+msgid "Icon url"
+msgstr "Symbol-URL"
+
+#: ../../mod/settings.php:513
+msgid "Optional"
+msgstr "Optional"
+
+#: ../../mod/settings.php:524
+msgid "You can't edit this application."
+msgstr "Diese Anwendung kann nicht bearbeitet werden."
+
+#: ../../mod/settings.php:567
+msgid "Connected Apps"
+msgstr "Verbundene Apps"
+
+#: ../../mod/settings.php:571
+msgid "Client key starts with"
+msgstr "Client key beginnt mit"
+
+#: ../../mod/settings.php:572
+msgid "No name"
+msgstr "Kein Name"
+
+#: ../../mod/settings.php:573
+msgid "Remove authorization"
+msgstr "Authorisierung aufheben"
+
+#: ../../mod/settings.php:584
+msgid "No feature settings configured"
+msgstr "Keine Funktions-Einstellungen konfiguriert"
+
+#: ../../mod/settings.php:592
+msgid "Feature Settings"
+msgstr "Funktions-Einstellungen"
+
+#: ../../mod/settings.php:615
+msgid "Account Settings"
+msgstr "Konto-Einstellungen"
+
+#: ../../mod/settings.php:616
+msgid "Password Settings"
+msgstr "Kennwort-Einstellungen"
+
+#: ../../mod/settings.php:617
+msgid "New Password:"
+msgstr "Neues Passwort:"
+
+#: ../../mod/settings.php:618
+msgid "Confirm:"
+msgstr "Bestätigen:"
+
+#: ../../mod/settings.php:618
+msgid "Leave password fields blank unless changing"
+msgstr "Lasse die Passwort -Felder leer außer du möchtest das Passwort ändern"
+
+#: ../../mod/settings.php:620 ../../mod/settings.php:912
+msgid "Email Address:"
+msgstr "Email Adresse:"
+
+#: ../../mod/settings.php:621
+msgid "Remove Account"
+msgstr "Konto entfernen"
+
+#: ../../mod/settings.php:622
+msgid "Warning: This action is permanent and cannot be reversed."
+msgstr "Achtung: Diese Aktion ist permanent und kann nicht rückgänging gemacht werden."
+
+#: ../../mod/settings.php:638
+msgid "Off"
+msgstr "Aus"
+
+#: ../../mod/settings.php:638
+msgid "On"
+msgstr "An"
+
+#: ../../mod/settings.php:645
+msgid "Additional Features"
+msgstr "Zusätzliche Funktionen"
+
+#: ../../mod/settings.php:670
+msgid "Connector Settings"
+msgstr "Connector-Einstellungen"
+
+#: ../../mod/settings.php:740
+msgid "Display Settings"
+msgstr "Anzeige-Einstellungen"
+
+#: ../../mod/settings.php:746
+msgid "Display Theme:"
+msgstr "Anzeige Theme:"
+
+#: ../../mod/settings.php:747
+msgid "Mobile Theme:"
+msgstr "Mobile Theme:"
+
+#: ../../mod/settings.php:748
+msgid "Update browser every xx seconds"
+msgstr "Browser alle xx Sekunden aktualisieren"
+
+#: ../../mod/settings.php:748
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Minimum von 10 Sekunden, kein Maximum"
+
+#: ../../mod/settings.php:749
+msgid "Maximum number of conversations to load at any time:"
+msgstr "Maximale Anzahl von Unterhaltungen die gleichzeitig geladen werden sollen:"
+
+#: ../../mod/settings.php:749
+msgid "Maximum of 100 items"
+msgstr "Maximum von 100 Beiträgen"
+
+#: ../../mod/settings.php:750
+msgid "Don't show emoticons"
+msgstr "Emoticons nicht zeigen"
+
+#: ../../mod/settings.php:786
+msgid "Nobody except yourself"
+msgstr "Niemand außer du selbst"
+
+#: ../../mod/settings.php:787
+msgid "Only those you specifically allow"
+msgstr "Nur die, denen du es explizit erlaubst"
+
+#: ../../mod/settings.php:788
+msgid "Anybody in your address book"
+msgstr "Jeder aus Ihrem Adressbuch"
+
+#: ../../mod/settings.php:789
+msgid "Anybody on this website"
+msgstr "Jeder auf dieser Website"
+
+#: ../../mod/settings.php:790
+msgid "Anybody in this network"
+msgstr "Jeder in diesem Netzwerk"
+
+#: ../../mod/settings.php:791
+msgid "Anybody on the internet"
+msgstr "Jeder im Internet"
+
+#: ../../mod/settings.php:865
+msgid "Publish your default profile in the network directory"
+msgstr "Veröffentliche dein Standard-Profil im Netzwerk-Verzeichnis"
+
+#: ../../mod/settings.php:870
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
 
-#: ../../mod/import.php:378
-msgid "Your old identity address (xyz@example.com)"
-msgstr "Die alte Adresse der Identität (xyz@example.com)"
+#: ../../mod/settings.php:874 ../../mod/profile_photo.php:288
+msgid "or"
+msgstr "oder"
 
-#: ../../mod/import.php:379
-msgid "Your old login email address"
-msgstr "Ihre alte Login E-Mail Adresse"
+#: ../../mod/settings.php:879
+msgid "Your channel address is"
+msgstr "Deine Kanal-Adresse lautet"
 
-#: ../../mod/import.php:380
-msgid "Your old login password"
-msgstr "Ihr altes Login Kennwort"
+#: ../../mod/settings.php:901
+msgid "Channel Settings"
+msgstr "Channel-Einstellungen"
 
-#: ../../mod/import.php:381
-msgid ""
-"For either option, please choose whether to make this hub your new primary "
-"address, or whether your old location should continue this role. You will be"
-" able to post from either location, but only one can be marked as the "
-"primary location for files, photos, and media."
-msgstr "Egal welche Option du wählst, bitte lege fest, ob dieser Hub deine neue primäre Adresse sein soll oder ob dein alter Hub diese Rolle weiterhin wahrnimmt. Du kannst von beiden Orten aus neue Dinge posten, aber nur einer kann die primäre Adresse deiner Dateien, Fotos und anderen Mediendaten sein."
+#: ../../mod/settings.php:910
+msgid "Basic Settings"
+msgstr "Grundeinstellungen"
 
-#: ../../mod/import.php:382
-msgid "Make this hub my primary location"
-msgstr "Dieser Hub ist mein primärer Server."
+#: ../../mod/settings.php:913
+msgid "Your Timezone:"
+msgstr "Ihre Zeitzone:"
 
-#: ../../mod/manage.php:63
-#, php-format
-msgid "You have created %1$.0f of %2$.0f allowed channels."
-msgstr "Du hast %1$.0f von %2$.0f erlaubten Kanälen eingerichtet."
+#: ../../mod/settings.php:914
+msgid "Default Post Location:"
+msgstr "Standardstandort:"
 
-#: ../../mod/manage.php:71
-msgid "Create a new channel"
-msgstr "Erzeuge neues Kanal"
+#: ../../mod/settings.php:915
+msgid "Use Browser Location:"
+msgstr "Standort des Browsers verwenden:"
 
-#: ../../mod/manage.php:76
-msgid "Channel Manager"
-msgstr "Kanal-Manager"
+#: ../../mod/settings.php:917
+msgid "Adult Content"
+msgstr "Nicht Jugendfreie-Inhalte"
 
-#: ../../mod/manage.php:77
-msgid "Current Channel"
-msgstr "Aktueller Kanal"
+#: ../../mod/settings.php:917
+msgid "This channel publishes adult content."
+msgstr "Dieser Kanal veröffentlicht nicht Jugendfreie-Inhalte"
 
-#: ../../mod/manage.php:79
-msgid "Attach to one of your channels by selecting it."
-msgstr "Wähle einen deiner Kanäle aus um ihn zu verwenden."
+#: ../../mod/settings.php:919
+msgid "Security and Privacy Settings"
+msgstr "Sicherheits- und Datenschutz-Einstellungen"
 
-#: ../../mod/manage.php:80
-msgid "Default Channel"
-msgstr "Standard Kanal"
+#: ../../mod/settings.php:921
+msgid "Quick Privacy Settings:"
+msgstr "Schnelle Datenschutz-Einstellungen:"
 
-#: ../../mod/manage.php:81
-msgid "Make Default"
-msgstr "Zum Standard machen"
+#: ../../mod/settings.php:922
+msgid "Very Public - extremely permissive"
+msgstr "Sehr offen - extrem freizügig"
 
-#: ../../mod/vote.php:97
-msgid "Total votes"
-msgstr "Stimmen gesamt"
+#: ../../mod/settings.php:923
+msgid "Typical - default public, privacy when desired"
+msgstr "Typisch - Standard öffentlich, Privatheit wenn gewünscht"
 
-#: ../../mod/vote.php:98
-msgid "Average Rating"
-msgstr "durchschnittliche Bewertung"
+#: ../../mod/settings.php:924
+msgid "Private - default private, rarely open or public"
+msgstr "Privat - Standard privat, selten offen oder öffentlich"
 
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr "Profil-Übereinstimmungen"
+#: ../../mod/settings.php:925
+msgid "Blocked - default blocked to/from everybody"
+msgstr "Geschlossen - Standard zu und von jedem geblockt"
 
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Keine Schlüsselbegriffe für den Abgleich gefunden. Bitte füge Schlüsselbegriffe zu deinem Standardprofil hinzu."
+#: ../../mod/settings.php:928
+msgid "Maximum Friend Requests/Day:"
+msgstr "Maximale Kontaktanfragen pro Tag:"
 
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr "interessiert sich für:"
+#: ../../mod/settings.php:928
+msgid "May reduce spam activity"
+msgstr "Kann die Spam-Aktivität verringern"
 
-#: ../../mod/match.php:65
-msgid "No matches"
-msgstr "Keine Übereinstimmungen"
+#: ../../mod/settings.php:929
+msgid "Default Post Permissions"
+msgstr "Beitragszugriffrechte Standardeinstellungen"
 
-#: ../../mod/crepair.php:102
-msgid "Contact settings applied."
-msgstr "Kontakt Einstellungen angewandt."
+#: ../../mod/settings.php:941
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:"
 
-#: ../../mod/crepair.php:104
-msgid "Contact update failed."
-msgstr "Kontakt Update fehlgeschlagen."
+#: ../../mod/settings.php:941
+msgid "Useful to reduce spamming"
+msgstr "Nützlich um Spam zu verringern"
 
-#: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20
-#: ../../mod/fsuggest.php:92
-msgid "Contact not found."
-msgstr "Kontakt nicht gefunden"
+#: ../../mod/settings.php:944
+msgid "Notification Settings"
+msgstr "Benachrichtigungs-Einstellungen"
 
-#: ../../mod/crepair.php:135
-msgid "Repair Contact Settings"
-msgstr " Kontakt-Einstellungen reparieren"
+#: ../../mod/settings.php:945
+msgid "By default post a status message when:"
+msgstr "Sende standardmäßig Status-Nachrichten wenn:"
 
-#: ../../mod/crepair.php:137
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>Warnung: Dies ist für weit fortgeschrittene Benutzer!</strong> Wenn du falsche Informationen eingibst, könnte die Kommunikation mit diesem Kontakt abbrechen."
+#: ../../mod/settings.php:946
+msgid "accepting a friend request"
+msgstr "einer Kontaktanfrage stattgegeben wurde"
 
-#: ../../mod/crepair.php:138
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Bitte nutze den Zurück-Button deines Browsers <strong>jetzt</strong>, wenn du dir unsicher bist, was du tun willst."
+#: ../../mod/settings.php:947
+msgid "joining a forum/community"
+msgstr "ein Forum beigetreten wurde"
 
-#: ../../mod/crepair.php:144
-msgid "Return to contact editor"
-msgstr "Zurück zum Kontakteditor"
+#: ../../mod/settings.php:948
+msgid "making an <em>interesting</em> profile change"
+msgstr "eine <em>interessante</em> Änderung am Profil vorgenommen wurde"
+
+#: ../../mod/settings.php:949
+msgid "Send a notification email when:"
+msgstr "Eine Email Benachrichtigung senden wenn:"
 
-#: ../../mod/crepair.php:149
-msgid "Account Nickname"
-msgstr "Konto Spitzname"
+#: ../../mod/settings.php:950
+msgid "You receive an introduction"
+msgstr "Du eine Vorstellung erhältst"
 
-#: ../../mod/crepair.php:150
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Tagname - überschreibt Name/Spitzname"
+#: ../../mod/settings.php:951
+msgid "Your introductions are confirmed"
+msgstr "Deine Vorstellung bestätigt wurde."
 
-#: ../../mod/crepair.php:151
-msgid "Account URL"
-msgstr "Konto URL"
+#: ../../mod/settings.php:952
+msgid "Someone writes on your profile wall"
+msgstr "Jemand auf deine Pinnwand schreibt"
 
-#: ../../mod/crepair.php:152
-msgid "Friend Request URL"
-msgstr "URL für Kontaktanfragen"
+#: ../../mod/settings.php:953
+msgid "Someone writes a followup comment"
+msgstr "Jemand einen Beitrag kommentiert"
 
-#: ../../mod/crepair.php:153
-msgid "Friend Confirm URL"
-msgstr "URL zum Bestätigen von Kontaktanfragen"
+#: ../../mod/settings.php:954
+msgid "You receive a private message"
+msgstr "Du eine private Nachricht erhältst"
 
-#: ../../mod/crepair.php:154
-msgid "Notification Endpoint URL"
-msgstr "URL-Endpunkt für Benachrichtigungen"
+#: ../../mod/settings.php:955
+msgid "You receive a friend suggestion"
+msgstr "Du einen Kontaktvorschlag erhältst"
 
-#: ../../mod/crepair.php:155
-msgid "Poll/Feed URL"
-msgstr "Poll/Feed URL"
+#: ../../mod/settings.php:956
+msgid "You are tagged in a post"
+msgstr "Du wurdest in einem Beitrag getaggt"
 
-#: ../../mod/crepair.php:156
-msgid "New photo from this URL"
-msgstr "Neues Foto von dieser URL"
+#: ../../mod/settings.php:957
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Du in einer Nachricht angestupst/geknufft/o.ä. wirst"
 
-#: ../../mod/zfinger.php:23
-msgid "invalid target signature"
-msgstr "Ungültige Signatur des Ziels"
+#: ../../mod/settings.php:960
+msgid "Advanced Account/Page Type Settings"
+msgstr "Erweiterte Account / Seiten Arten Einstellungen"
 
-#: ../../mod/follow.php:25
-msgid "Channel added."
-msgstr "Kanal hinzugefügt."
+#: ../../mod/settings.php:961
+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:30
+#: ../../mod/editlayout.php:36 ../../mod/editwebpage.php:32
 #: ../../mod/editpost.php:20 ../../mod/editblock.php:36
 msgid "Item not found"
 msgstr "Element nicht gefunden"
@@ -6277,17 +6268,17 @@ msgstr "Element nicht gefunden"
 msgid "Edit Layout"
 msgstr "Layout bearbeiten"
 
-#: ../../mod/editlayout.php:104 ../../mod/editwebpage.php:123
+#: ../../mod/editlayout.php:104 ../../mod/editwebpage.php:147
 #: ../../mod/editpost.php:101 ../../mod/editblock.php:118
 msgid "Insert YouTube video"
 msgstr "YouTube-Video einfügen"
 
-#: ../../mod/editlayout.php:105 ../../mod/editwebpage.php:124
+#: ../../mod/editlayout.php:105 ../../mod/editwebpage.php:148
 #: ../../mod/editpost.php:102 ../../mod/editblock.php:119
 msgid "Insert Vorbis [.ogg] video"
 msgstr "Vorbis [.ogg]-Video einfügen"
 
-#: ../../mod/editlayout.php:106 ../../mod/editwebpage.php:125
+#: ../../mod/editlayout.php:106 ../../mod/editwebpage.php:149
 #: ../../mod/editpost.php:103 ../../mod/editblock.php:120
 msgid "Insert Vorbis [.ogg] audio"
 msgstr "Vorbis [.ogg]-Audio einfügen"
@@ -6296,91 +6287,87 @@ msgstr "Vorbis [.ogg]-Audio einfügen"
 msgid "Delete Layout"
 msgstr "Layout löschen"
 
-#: ../../mod/nogroup.php:58
-msgid "Contacts who are not members of a group"
-msgstr "Kanäle die in keiner Sammlung Mitglied sind"
-
-#: ../../mod/profile_photo.php:54
+#: ../../mod/profile_photo.php:44
 msgid "Image uploaded but image cropping failed."
 msgstr "Bild hochgeladen, aber das zurecht schneiden schlug fehl."
 
-#: ../../mod/profile_photo.php:107
+#: ../../mod/profile_photo.php:97
 msgid "Image resize failed."
 msgstr "Bild-Anpassung fehlgeschlagen."
 
-#: ../../mod/profile_photo.php:151
+#: ../../mod/profile_photo.php:141
 msgid ""
 "Shift-reload the page or clear browser cache if the new photo does not "
 "display immediately."
 msgstr "Leere den Browser Cache oder nutze Umschalten-Neu Laden sollte das neue Foto nicht sofort angezeigt werden."
 
-#: ../../mod/profile_photo.php:173
+#: ../../mod/profile_photo.php:163
 #, php-format
 msgid "Image exceeds size limit of %d"
 msgstr "Bild ist größer als das Limit von %d"
 
-#: ../../mod/profile_photo.php:182
+#: ../../mod/profile_photo.php:172
 msgid "Unable to process image."
 msgstr "Kann Bild nicht verarbeiten."
 
-#: ../../mod/profile_photo.php:224 ../../mod/profile_photo.php:272
+#: ../../mod/profile_photo.php:214 ../../mod/profile_photo.php:262
 msgid "Photo not available."
 msgstr "Foto nicht verfügbar."
 
-#: ../../mod/profile_photo.php:291
+#: ../../mod/profile_photo.php:281
 msgid "Upload File:"
 msgstr "Datei hochladen:"
 
-#: ../../mod/profile_photo.php:292
+#: ../../mod/profile_photo.php:282
 msgid "Select a profile:"
 msgstr "Wählen Sie ein Profil:"
 
-#: ../../mod/profile_photo.php:293
+#: ../../mod/profile_photo.php:283
 msgid "Upload Profile Photo"
 msgstr "Lade neues Profilfoto hoch"
 
-#: ../../mod/profile_photo.php:294
+#: ../../mod/profile_photo.php:284
 msgid "Upload"
 msgstr "Hochladen"
 
-#: ../../mod/profile_photo.php:298
+#: ../../mod/profile_photo.php:288
 msgid "skip this step"
 msgstr "diesen Schritt überspringen"
 
-#: ../../mod/profile_photo.php:298
+#: ../../mod/profile_photo.php:288
 msgid "select a photo from your photo albums"
 msgstr "ein Foto aus meinen Fotoalben"
 
-#: ../../mod/profile_photo.php:312
+#: ../../mod/profile_photo.php:302
 msgid "Crop Image"
 msgstr "Bild zuschneiden"
 
-#: ../../mod/profile_photo.php:313
+#: ../../mod/profile_photo.php:303
 msgid "Please adjust the image cropping for optimum viewing."
 msgstr "Bitte passe das Bild zur optimalen Anzeige an."
 
-#: ../../mod/profile_photo.php:315
+#: ../../mod/profile_photo.php:305
 msgid "Done Editing"
 msgstr "Bearbeitung fertigstellen"
 
-#: ../../mod/profile_photo.php:350
+#: ../../mod/profile_photo.php:340
 msgid "Image uploaded successfully."
 msgstr "Bild erfolgreich hochgeladen."
 
-#: ../../mod/profile_photo.php:352
+#: ../../mod/profile_photo.php:342
 msgid "Image upload failed."
 msgstr "Hochladen des Bilds fehlgeschlagen."
 
-#: ../../mod/profile_photo.php:361
+#: ../../mod/profile_photo.php:351
 #, php-format
 msgid "Image size reduction [%s] failed."
 msgstr "Reduzierung der Bildgröße [%s] fehlgeschlagen."
 
-#: ../../mod/editwebpage.php:87
+#: ../../mod/editwebpage.php:106
 msgid "Edit Webpage"
 msgstr "Webseite bearbeiten"
 
-#: ../../mod/editwebpage.php:162
+#: ../../mod/editwebpage.php:188
 msgid "Delete Webpage"
 msgstr "Webseite löschen"
 
@@ -6388,136 +6375,18 @@ msgstr "Webseite löschen"
 msgid "Invalid request identifier."
 msgstr "Ungültige Anfrage Identifikator."
 
-#: ../../mod/notifications.php:76
-msgid "System"
-msgstr "System"
-
-#: ../../mod/notifications.php:96
-msgid "Introductions"
-msgstr "Vorstellungen"
-
-#: ../../mod/notifications.php:121
-msgid "Show Ignored Requests"
-msgstr "Zeige ignorierte Anfragen"
-
-#: ../../mod/notifications.php:121
-msgid "Hide Ignored Requests"
-msgstr "Verberge ignorierte Anfragen"
-
-#: ../../mod/notifications.php:147 ../../mod/notifications.php:193
-msgid "Notification type: "
-msgstr "Benachrichtigungstyp:"
-
-#: ../../mod/notifications.php:148
-msgid "Friend Suggestion"
-msgstr "Freundschaft Vorschläge"
-
-#: ../../mod/notifications.php:150
-#, php-format
-msgid "suggested by %s"
-msgstr "vorgeschlagen von %s"
-
-#: ../../mod/notifications.php:179
-msgid "Claims to be known to you: "
-msgstr "Behauptet dich zu kennen:"
-
-#: ../../mod/notifications.php:179
-msgid "yes"
-msgstr "ja"
-
-#: ../../mod/notifications.php:179
-msgid "no"
-msgstr "nein"
-
-#: ../../mod/notifications.php:186
-msgid "Approve as: "
-msgstr "Genehmigen als:"
-
-#: ../../mod/notifications.php:187
-msgid "Friend"
-msgstr "Freund"
-
-#: ../../mod/notifications.php:188
-msgid "Sharer"
-msgstr "Teilenden"
-
-#: ../../mod/notifications.php:188
-msgid "Fan/Admirer"
-msgstr "Fan/Verehrer"
-
-#: ../../mod/notifications.php:194
-msgid "Friend/Connect Request"
-msgstr "Kontakt-/Freundschaftsanfrage"
-
-#: ../../mod/notifications.php:194
-msgid "New Follower"
-msgstr "Neuer Bewunderer"
-
-#: ../../mod/notifications.php:215
-msgid "No introductions."
-msgstr "Keine wartenden Vorstellungen."
-
-#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
-#: ../../mod/notifications.php:465
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s gefällt %s's Beitrag"
-
-#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
-#: ../../mod/notifications.php:474
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s gefällt %s's Beitrag nicht"
-
-#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
-#: ../../mod/notifications.php:488
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s ist nun mit %s befreundet"
-
-#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
-#, php-format
-msgid "%s created a new post"
-msgstr "%s hat einen neuen Beitrag verfasst"
-
-#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
-#: ../../mod/notifications.php:497
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s kommentierte %s Beitrag"
-
-#: ../../mod/notifications.php:302
-msgid "No more network notifications."
-msgstr "Keine weiteren Netzwerk Benachrichtigungen."
-
-#: ../../mod/notifications.php:306
-msgid "Network Notifications"
-msgstr "Netzwerk-Benachrichtigungen"
+#: ../../mod/notifications.php:35
+msgid "Discard"
+msgstr "Verwerfen"
 
-#: ../../mod/notifications.php:332 ../../mod/notify.php:54
+#: ../../mod/notifications.php:93 ../../mod/notify.php:54
 msgid "No more system notifications."
 msgstr "Keine System-Benachrichtigungen mehr."
 
-#: ../../mod/notifications.php:336 ../../mod/notify.php:58
+#: ../../mod/notifications.php:97 ../../mod/notify.php:58
 msgid "System Notifications"
 msgstr "System-Benachrichtigungen"
 
-#: ../../mod/notifications.php:427
-msgid "No more personal notifications."
-msgstr "Keine persönliche Benachrichtigungen mehr."
-
-#: ../../mod/notifications.php:431
-msgid "Personal Notifications"
-msgstr "Persönliche Benachrichtigungen"
-
-#: ../../mod/notifications.php:504
-msgid "No more home notifications."
-msgstr "Keine Pinwand-Benachrichtigungen mehr."
-
-#: ../../mod/notifications.php:508
-msgid "Home Notifications"
-msgstr "Pinwand-Benachrichtigungen"
-
 #: ../../mod/blocks.php:65
 msgid "Block Name"
 msgstr "Block Name"
@@ -6534,7 +6403,7 @@ msgstr "Veröffentlichung erfolgreich."
 msgid "Item is not editable"
 msgstr "Element kann nicht bearbeitet werden."
 
-#: ../../mod/profile.php:111
+#: ../../mod/profile.php:64 ../../mod/profile.php:72
 msgid "Access to this profile has been restricted."
 msgstr "Der Zugang zu diesem Profil ist begrenzt."
 
@@ -6558,11 +6427,15 @@ 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:1074
+#: ../../mod/wall_upload.php:41 ../../mod/item.php:1077
 msgid "Wall Photos"
 msgstr "Wall Fotos"
 
-#: ../../mod/channel.php:120
+#: ../../mod/channel.php:25
+msgid "You must be logged in to see this page."
+msgstr "Du musst angemeldet sein um diese Seite betrachten zu können."
+
+#: ../../mod/channel.php:83
 msgid "Insufficient permissions.  Request redirected to profile page."
 msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."
 
@@ -6582,6 +6455,10 @@ msgstr "Keine Ergebnisse."
 msgid "Files"
 msgstr "Dateien"
 
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+msgid "Contact not found."
+msgstr "Kontakt nicht gefunden"
+
 #: ../../mod/fsuggest.php:63
 msgid "Friend suggestion sent."
 msgstr "Freundschaftsempfehlung senden."
@@ -6603,23 +6480,23 @@ msgstr "Block bearbeiten"
 msgid "Delete Block"
 msgstr "Block löschen"
 
-#: ../../mod/profperm.php:34 ../../mod/profperm.php:64
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
 msgid "Invalid profile identifier."
 msgstr "Ungültiger Profil Identifikator"
 
-#: ../../mod/profperm.php:110
+#: ../../mod/profperm.php:101
 msgid "Profile Visibility Editor"
 msgstr "Profil-Sichtbarkeits Editor"
 
-#: ../../mod/profperm.php:114
+#: ../../mod/profperm.php:105
 msgid "Click on a contact to add or remove."
 msgstr "Wähle einen Kontakt zum Hinzufügen oder Löschen aus."
 
-#: ../../mod/profperm.php:123
+#: ../../mod/profperm.php:114
 msgid "Visible To"
 msgstr "Sichtbar für"
 
-#: ../../mod/profperm.php:139
+#: ../../mod/profperm.php:130
 msgid "All Contacts (with secure profile access)"
 msgstr "Alle Kontakte (mit sicherem Zuging zum Profil)"
 
@@ -6639,69 +6516,65 @@ msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."
 msgid "System error. Post not saved."
 msgstr "Systemfehler. Beitrag nicht gespeichert."
 
-#: ../../mod/item.php:1153
+#: ../../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:1159
+#: ../../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:51
+#: ../../mod/siteinfo.php:57
 #, php-format
 msgid "Version %s"
 msgstr "Version %s"
 
-#: ../../mod/siteinfo.php:65
+#: ../../mod/siteinfo.php:76
 msgid "Installed plugins/addons/apps:"
 msgstr "Installierte Plugins/Addons/Apps"
 
-#: ../../mod/siteinfo.php:78
+#: ../../mod/siteinfo.php:89
 msgid "No installed plugins/addons/apps"
 msgstr "Keine installierten Plugins/Addons/Apps"
 
-#: ../../mod/siteinfo.php:81
+#: ../../mod/siteinfo.php:92
 msgid "Red"
 msgstr "Red"
 
-#: ../../mod/siteinfo.php:82
+#: ../../mod/siteinfo.php:93
 msgid ""
 "This is a hub of the Red Matrix - a global cooperative network of "
 "decentralised privacy enhanced websites."
 msgstr "Dieser Server ist Teil der Red-Matrix – einem global vernetzten Verbund aus dezentralen Websites mit Rücksicht auf die Privatsphäre."
 
-#: ../../mod/siteinfo.php:84
+#: ../../mod/siteinfo.php:96
 msgid "Running at web location"
 msgstr "Erreichbar unter der Web-Adresse"
 
-#: ../../mod/siteinfo.php:85
+#: ../../mod/siteinfo.php:97
 msgid ""
 "Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more "
 "about the Red Matrix."
 msgstr "Besuche <a href=\"http://getzot.com\">GetZot.com</a> um mehr über die Red Matrix zu erfahren."
 
-#: ../../mod/siteinfo.php:86
+#: ../../mod/siteinfo.php:98
 msgid "Bug reports and issues: please visit"
 msgstr "Probleme oder Fehler gefunden? Bitte besuche"
 
-#: ../../mod/siteinfo.php:89
+#: ../../mod/siteinfo.php:101
 msgid ""
 "Suggestions, praise, donations, etc. - please email \"redmatrix\" at "
 "librelist - dot com"
 msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an 'redmatrix' at librelist - dot - com"
 
-#: ../../mod/suggest.php:41
+#: ../../mod/suggest.php:35
 msgid ""
 "No suggestions available. If this is a new site, please try again in 24 "
 "hours."
 msgstr "Keine Vorschläge vorhanden. Wenn dies eine neue Seite ist versuche es bitte in 24 Stunden erneut."
 
-#: ../../mod/suggest.php:58
-msgid "Ignore/Hide"
-msgstr "Ignorieren/Verstecken"
-
 #: ../../mod/pubsites.php:22
 msgid "Public Sites"
 msgstr "Öffentliche Seiten"
@@ -6798,17 +6671,6 @@ msgstr "Bitte gib dein Passwort noch einmal ein"
 msgid "Please login."
 msgstr "Bitte melde dich an."
 
-#: ../../mod/post.php:119
-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:132
-#, php-format
-msgid "Welcome %s. Remote authentication successful."
-msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich."
-
 #: ../../mod/removeme.php:49
 msgid "Remove This Channel"
 msgstr "Diesen Kanal löschen!"
@@ -6837,23 +6699,23 @@ 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:163
+#: ../../mod/directory.php:162
 msgid "Gender: "
 msgstr "Geschlecht:"
 
-#: ../../mod/directory.php:222
+#: ../../mod/directory.php:223
 msgid "Finding:"
 msgstr "Ergebnisse:"
 
-#: ../../mod/directory.php:230
+#: ../../mod/directory.php:231
 msgid "next page"
 msgstr "nächste Seite"
 
-#: ../../mod/directory.php:230
+#: ../../mod/directory.php:231
 msgid "previous page"
 msgstr "vorige Seite"
 
-#: ../../mod/directory.php:237
+#: ../../mod/directory.php:238
 msgid "No entries (some entries may be hidden)."
 msgstr "Keine Einträge gefunden (einige könnten versteckt sein)."
 
@@ -7110,113 +6972,41 @@ msgstr "Titelbild"
 msgid "Header image only on profile pages"
 msgstr "Titelbild nur auf Profil-Seiten anzeigen"
 
-#: ../../boot.php:1274
+#: ../../boot.php:1224
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen."
 
-#: ../../boot.php:1277
+#: ../../boot.php:1227
 #, php-format
 msgid "Update Error at %s"
 msgstr "Aktualisierungsfehler auf %s"
 
-#: ../../boot.php:1434
+#: ../../boot.php:1391
 msgid ""
 "Create an account to access services and applications within the Red Matrix"
 msgstr "Erstelle einen Account um Anwendungen und Dienste innerhalb der Red Matrix verwenden zu können."
 
-#: ../../boot.php:1462
+#: ../../boot.php:1419
 msgid "Password"
 msgstr "Kennwort"
 
-#: ../../boot.php:1463
+#: ../../boot.php:1420
 msgid "Remember me"
 msgstr "Angaben speichern"
 
-#: ../../boot.php:1468
+#: ../../boot.php:1425
 msgid "Forgot your password?"
 msgstr "Passwort vergessen?"
 
-#: ../../boot.php:1533
+#: ../../boot.php:1490
 msgid "permission denied"
 msgstr "Zugriff verweigert"
 
-#: ../../boot.php:1534
+#: ../../boot.php:1491
 msgid "Got Zot?"
 msgstr "Haste schon Zot?"
 
-#: ../../boot.php:1593
-msgid "Requested channel is not available."
-msgstr "Angeforderte Kanal nicht verfügbar."
-
-#: ../../boot.php:1605
-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."
-
-#: ../../boot.php:1761
-msgid "Profiles"
-msgstr "Profile"
-
-#: ../../boot.php:1761
-msgid "Manage/edit profiles"
-msgstr "Verwalte/Bearbeite Profile"
-
-#: ../../boot.php:1765
-msgid "Edit Profile"
-msgstr "Profile bearbeiten"
-
-#: ../../boot.php:1859 ../../boot.php:1939
-msgid "F d"
-msgstr "d. F"
-
-#: ../../boot.php:1916
-msgid "Birthday Reminders"
-msgstr "Geburtstags Erinnerungen"
-
-#: ../../boot.php:1917
-msgid "Birthdays this week:"
-msgstr "Geburtstage in dieser Woche:"
-
-#: ../../boot.php:1972
-msgid "[No description]"
-msgstr "[Keine Beschreibung]"
-
-#: ../../boot.php:1990
-msgid "Event Reminders"
-msgstr "Veranstaltungs- Erinnerungen"
-
-#: ../../boot.php:1991
-msgid "Events this week:"
-msgstr "Veranstaltungen in dieser Woche:"
-
-#: ../../boot.php:2225
-msgid "Channel"
-msgstr "Kanal"
-
-#: ../../boot.php:2228
-msgid "Status Messages and Posts"
-msgstr "Statusnachrichten und Beiträge"
-
-#: ../../boot.php:2232
-msgid "About"
-msgstr "Über"
-
-#: ../../boot.php:2235
-msgid "Profile Details"
-msgstr "Profil-Details"
-
-#: ../../boot.php:2253
-msgid "Events and Calendar"
-msgstr "Veranstaltungen und Kalender"
-
-#: ../../boot.php:2258
-msgid "Webpages"
-msgstr "Webseiten"
-
-#: ../../boot.php:2261
-msgid "Manage Webpages"
-msgstr "Webseiten verwalten"
-
-#: ../../boot.php:2546
+#: ../../boot.php:1887
 msgid "toggle mobile"
 msgstr "auf/von Mobile Ansicht wechseln"
diff --git a/view/de/strings.php b/view/de/strings.php
index 92360da79..ef98c6546 100644
--- a/view/de/strings.php
+++ b/view/de/strings.php
@@ -12,6 +12,14 @@ $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.";
@@ -97,13 +105,43 @@ $a->strings["Encrypt text"] = "Text verschlüsseln";
 $a->strings["Connect"] = "Verbinden";
 $a->strings["New window"] = "Neues Fenster";
 $a->strings["Open the selected location in a different window or browser tab"] = "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab";
-$a->strings["Poke"] = "Anstupsen";
-$a->strings["View Status"] = "Status ansehen";
-$a->strings["View Profile"] = "Profil ansehen";
-$a->strings["View Photos"] = "Fotos ansehen";
-$a->strings["Network Posts"] = "Netzwerkbeiträge";
-$a->strings["Edit Contact"] = "Kontakt bearbeiten";
-$a->strings["Send PM"] = "Sende PN";
+$a->strings["Categories"] = "Kategorien";
+$a->strings["Ignore/Hide"] = "Ignorieren/Verstecken";
+$a->strings["Suggestions"] = "Vorschläge";
+$a->strings["See more..."] = "Mehr anzeigen...";
+$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von %2$.0f erlaubten Verbindungen eingegangen.";
+$a->strings["Add New Connection"] = "Neue Verbindung hinzufügen";
+$a->strings["Enter the channel address"] = "Adresse des Kanals eingeben";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@beispiel.com, http://beispiel.com/barbara";
+$a->strings["Notes"] = "Notizen";
+$a->strings["Save"] = "Speichern";
+$a->strings["Remove term"] = "Eintrag löschen";
+$a->strings["Saved Searches"] = "Gesicherte Suchanfragen";
+$a->strings["add"] = "hinzufügen";
+$a->strings["Saved Folders"] = "Gesicherte Ordner";
+$a->strings["Everything"] = "Alles";
+$a->strings["Archives"] = "Archive";
+$a->strings["Refresh"] = "Aktualisieren";
+$a->strings["Me"] = "Ich";
+$a->strings["Best Friends"] = "Beste Freunde";
+$a->strings["Friends"] = "Freunde";
+$a->strings["Co-workers"] = "Kollegen";
+$a->strings["Former Friends"] = "ehem. Freunde";
+$a->strings["Acquaintances"] = "Bekanntschaften";
+$a->strings["Everybody"] = "Jeder";
+$a->strings["Account settings"] = "Konto-Einstellungen";
+$a->strings["Channel settings"] = "Kanal-Einstellungen";
+$a->strings["Additional features"] = "Zusätzliche Funktionen";
+$a->strings["Feature settings"] = "Funktions-Einstellungen";
+$a->strings["Display settings"] = "Anzeige-Einstellungen";
+$a->strings["Connected apps"] = "Verbundene Apps";
+$a->strings["Export channel"] = "Kanal exportieren";
+$a->strings["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";
@@ -149,6 +187,51 @@ $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["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";
+$a->strings["edit"] = "Bearbeiten";
+$a->strings["Collections"] = "Sammlungen";
+$a->strings["Edit collection"] = "Bearbeite Sammlungen";
+$a->strings["Create a new collection"] = "Neue Sammlung erzeugen";
+$a->strings["Channels not in any collection"] = "Kanäle, die nicht in einer Sammlung sind";
+$a->strings["Delete this item?"] = "Dieses Element löschen?";
+$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";
+$a->strings["everybody"] = "alle";
+$a->strings["Secret Passphrase"] = "geheime Passwort-Phrase";
+$a->strings["Passphrase hint"] = "Hinweis zur Phrase";
+$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo";
+$a->strings["timeago.suffixAgo"] = "timeago.suffixAgo";
+$a->strings["ago"] = "her";
+$a->strings["from now"] = "von jetzt";
+$a->strings["less than a minute"] = "weniger als eine Minute";
+$a->strings["about a minute"] = "ungefähr eine Minute";
+$a->strings["%d minutes"] = "%d Minuten";
+$a->strings["about an hour"] = "ungefähr eine Stunde";
+$a->strings["about %d hours"] = "ungefähr %d Stunden";
+$a->strings["a day"] = "ein Tag";
+$a->strings["%d days"] = "%d Tage";
+$a->strings["about a month"] = "ungefähr ein Monat";
+$a->strings["%d months"] = "%d Monate";
+$a->strings["about a year"] = "ungefähr ein Jahr";
+$a->strings["%d years"] = "%d Jahre";
+$a->strings[" "] = " ";
+$a->strings["timeago.numbers"] = "timeago.numbers";
+$a->strings["No recipient provided."] = "Kein Empfänger angegeben";
+$a->strings["[no subject]"] = "[no subject]";
+$a->strings["Unable to determine sender."] = "Kann Absender nicht bestimmen.";
+$a->strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden.";
+$a->strings["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["%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:";
+$a->strings["Embedded content"] = "Eingebetteter Inhalt";
+$a->strings["Embedding disabled"] = "Einbetten ausgeschaltet";
 $a->strings["General Features"] = "Allgemeine Funktionen";
 $a->strings["Content Expiration"] = "Verfall von Inhalten";
 $a->strings["Remove posts/comments and/or private messages at a future time"] = "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum.";
@@ -156,10 +239,11 @@ $a->strings["Multiple Profiles"] = "Mehrfachprofile";
 $a->strings["Ability to create multiple profiles"] = "Mehrfachprofile anlegen können";
 $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[" "] = " ";
 $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";
@@ -169,7 +253,6 @@ $a->strings["Richtext Editor"] = "Formatierungseditor";
 $a->strings["Enable richtext editor"] = "Aktiviere Formatierungseditor";
 $a->strings["Post Preview"] = "Voransicht";
 $a->strings["Allow previewing posts and comments before publishing them"] = "Erlaube Voransicht von Beiträgen und Kommentaren vor Veröffentlichung";
-$a->strings["Channel Sources"] = "Kanal Quellen";
 $a->strings["Automatically import channel content from other channels or feeds"] = "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds.";
 $a->strings["Even More Encryption"] = "Noch mehr Verschlüsselung";
 $a->strings["Allow 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";
@@ -178,7 +261,6 @@ $a->strings["Search by Date"] = "Suche nach Datum";
 $a->strings["Ability to select posts by date ranges"] = "Möglichkeit, Beiträge nach Zeiträumen auszuwählen";
 $a->strings["Collections Filter"] = "Filter für Sammlung";
 $a->strings["Enable widget to display Network posts only from selected collections"] = "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen";
-$a->strings["Saved Searches"] = "Gesicherte Suchanfragen";
 $a->strings["Save search terms for re-use"] = "Gesicherte Suchbegriffe zur Wiederverwendung";
 $a->strings["Network Personal Tab"] = "Persönlicher Netzwerkreiter";
 $a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviere Reiter nur für die Netzwerk-Beiträge, mit denen Du interagiert hast";
@@ -186,6 +268,8 @@ $a->strings["Network New Tab"] = "Netzwerkreiter Neu";
 $a->strings["Enable tab to display all new Network activity"] = "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen";
 $a->strings["Affinity Tool"] = "Beziehungs-Tool";
 $a->strings["Filter stream activity by depth of relationships"] = "Filter Aktivitätenstream nach Tiefe der Beziehung";
+$a->strings["Suggest Channels"] = "Kanäle Vorschlagen";
+$a->strings["Show channel suggestions"] = "Kanal-Vorschläge anzeigen";
 $a->strings["Post/Comment Tools"] = "Beitrag-/Kommentar-Tools";
 $a->strings["Edit Sent Posts"] = "Bearbeite gesendete Beiträge";
 $a->strings["Edit and correct posts and comments after sending"] = "Bearbeite und korrigiere Beiträge und Kommentare nach dem Senden";
@@ -193,7 +277,6 @@ $a->strings["Tagging"] = "Verschlagworten";
 $a->strings["Ability to tag existing posts"] = "Möglichkeit, um existierende Beiträge zu verschlagworten";
 $a->strings["Post Categories"] = "Beitrags-Kategorien";
 $a->strings["Add categories to your posts"] = "Kategorien für Beiträge";
-$a->strings["Saved Folders"] = "Gesicherte Ordner";
 $a->strings["Ability to file posts under folders"] = "Möglichkeit, Beiträge in Verzeichnissen zu sammeln";
 $a->strings["Dislike Posts"] = "Gefällt-mir-nicht Beiträge";
 $a->strings["Ability to dislike posts/comments"] = "Möglichkeit für Gefällt-mir-nicht für Beiträge/Kommentare";
@@ -201,173 +284,6 @@ $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["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";
-$a->strings["edit"] = "Bearbeiten";
-$a->strings["Collections"] = "Sammlungen";
-$a->strings["Edit collection"] = "Bearbeite Sammlungen";
-$a->strings["Create a new collection"] = "Neue Sammlung erzeugen";
-$a->strings["Channels not in any collection"] = "Kanäle, die nicht in einer Sammlung sind";
-$a->strings["add"] = "hinzufügen";
-$a->strings["Delete this item?"] = "Dieses Element löschen?";
-$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";
-$a->strings["everybody"] = "alle";
-$a->strings["Secret Passphrase"] = "geheime Passwort-Phrase";
-$a->strings["Passphrase hint"] = "Hinweis zur Phrase";
-$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo";
-$a->strings["timeago.suffixAgo"] = "timeago.suffixAgo";
-$a->strings["ago"] = "her";
-$a->strings["from now"] = "von jetzt";
-$a->strings["less than a minute"] = "weniger als eine Minute";
-$a->strings["about a minute"] = "ungefähr eine Minute";
-$a->strings["%d minutes"] = "%d Minuten";
-$a->strings["about an hour"] = "ungefähr eine Stunde";
-$a->strings["about %d hours"] = "ungefähr %d Stunden";
-$a->strings["a day"] = "ein Tag";
-$a->strings["%d days"] = "%d Tage";
-$a->strings["about a month"] = "ungefähr ein Monat";
-$a->strings["%d months"] = "%d Monate";
-$a->strings["about a year"] = "ungefähr ein Jahr";
-$a->strings["%d years"] = "%d Jahre";
-$a->strings["timeago.numbers"] = "timeago.numbers";
-$a->strings["No recipient provided."] = "Kein Empfänger angegeben";
-$a->strings["[no subject]"] = "[no subject]";
-$a->strings["Unable to determine sender."] = "Kann Absender nicht bestimmen.";
-$a->strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden.";
-$a->strings["view full size"] = "In Vollbildansicht anschauen";
-$a->strings["Profile Photos"] = "Profilfotos";
-$a->strings["Profile"] = "Profil";
-$a->strings["Full Name:"] = "Voller Name:";
-$a->strings["Gender:"] = "Geschlecht:";
-$a->strings["j F, Y"] = "j F, Y";
-$a->strings["j F"] = "j F";
-$a->strings["Birthday:"] = "Geburtstag:";
-$a->strings["Age:"] = "Alter:";
-$a->strings["Status:"] = "Status:";
-$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
-$a->strings["Sexual Preference:"] = "Sexuelle Orientierung:";
-$a->strings["Homepage:"] = "Homepage:";
-$a->strings["Hometown:"] = "Heimatstadt:";
-$a->strings["Tags:"] = "Schlagworte:";
-$a->strings["Political Views:"] = "Politische Ansichten:";
-$a->strings["Religion:"] = "Religion:";
-$a->strings["About:"] = "Über:";
-$a->strings["Hobbies/Interests:"] = "Hobbys/Interessen:";
-$a->strings["Likes:"] = "Gefällt-mir:";
-$a->strings["Dislikes:"] = "Gefällt-mir-nicht:";
-$a->strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:";
-$a->strings["Musical interests:"] = "Musikalische Interessen:";
-$a->strings["Books, literature:"] = "Bücher, Literatur:";
-$a->strings["Television:"] = "Fernsehen:";
-$a->strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltung:";
-$a->strings["Love/Romance:"] = "Liebe/Romantik:";
-$a->strings["Work/employment:"] = "Arbeit/Anstellung:";
-$a->strings["School/education:"] = "Schule/Ausbildung:";
-$a->strings["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["Search"] = "Suche";
-$a->strings["Save"] = "Speichern";
-$a->strings["poke"] = "anstupsen";
-$a->strings["poked"] = "stupste";
-$a->strings["ping"] = "anpingen";
-$a->strings["pinged"] = "pingte";
-$a->strings["prod"] = "knuffen";
-$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["Public Timeline"] = "Öffentliche Zeitleiste";
-$a->strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen";
-$a->strings["Empty name"] = "Namensfeld leer";
-$a->strings["Name too long"] = "Name ist zu lang";
-$a->strings["No account identifier"] = "Keine Account-Kennung";
-$a->strings["Nickname is required."] = "Spitzname ist erforderlich.";
-$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt.";
-$a->strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen";
-$a->strings["Default Profile"] = "Standard-Profil";
-$a->strings["Friends"] = "Freunde";
-$a->strings["Image/photo"] = "Bild/Foto";
-$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
-$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:";
-$a->strings["Embedded content"] = "Eingebetteter Inhalt";
-$a->strings["Embedding disabled"] = "Einbetten ausgeschaltet";
 $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";
@@ -455,6 +371,7 @@ $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";
@@ -471,20 +388,18 @@ $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["See all matrix notifications"] = "Alle Matrix-Benachrichtigungen ansehen";
 $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["See all channel notifications"] = "Alle Kanal-Benachrichtigungen ansehen";
 $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["See all channel introductions"] = "Alle Kanal-Einladungen ansehen";
 $a->strings["Notices"] = "Benachrichtigungen";
 $a->strings["Notifications"] = "Benachrichtigungen";
 $a->strings["See all notifications"] = "Alle Benachrichtigungen ansehen";
@@ -495,14 +410,12 @@ $a->strings["See all private messages"] = "Alle persönlichen Nachrichten ansehe
 $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";
@@ -510,6 +423,14 @@ $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["likes"] = "Gefällt-mir";
+$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";
 $a->strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert.";
@@ -523,11 +444,16 @@ $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:";
@@ -538,16 +464,21 @@ $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 => "",
-	1 => "<span  %1\$s>%2\$d Personen</span> mögen dies.",
+	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 => "",
-	1 => "<span  %1\$s>%2\$d Personen</span> mögen dies nicht.",
+	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(
@@ -587,13 +518,28 @@ $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["Logged out."] = "Ausgeloggt.";
 $a->strings["Failed authentication"] = "Authentifizierung fehlgeschlagen";
 $a->strings["Login failed."] = "Login fehlgeschlagen.";
-$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von %2$.0f erlaubten Verbindungen eingegangen.";
-$a->strings["Add New Connection"] = "Neue Verbindung hinzufügen";
-$a->strings["Enter the channel address"] = "Adresse des Kanals eingeben";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@beispiel.com, http://beispiel.com/barbara";
 $a->strings["%d invitation available"] = array(
 	0 => "%d Einladung verfügbar",
 	1 => "%d Einladungen verfügbar",
@@ -606,13 +552,92 @@ $a->strings["Find"] = "Finde";
 $a->strings["Channel Suggestions"] = "Kanal-Vorschläge";
 $a->strings["Random Profile"] = "Zufallsprofil";
 $a->strings["Invite Friends"] = "Lade Freunde ein";
-$a->strings["Everything"] = "Alles";
-$a->strings["Categories"] = "Kategorien";
 $a->strings["%d connection in common"] = array(
 	0 => "%d gemeinsame Verbindung",
 	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["Click here to upgrade."] = "Klicke hier, um das Upgrade durchzuführen.";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Grenzen Ihres Abonnements.";
+$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar.";
 $a->strings["Channel is blocked on this site."] = "Der Kanal ist auf dieser Seite blockiert ";
 $a->strings["Channel location missing."] = "Adresse des Kanals fehlt.";
 $a->strings["Channel discovery failed. Website may be down or misconfigured."] = "Auffinden des Kanals schlug fehl. Die Webseite könnte falsch konfiguriert oder abgeschaltet sein.";
@@ -641,35 +666,72 @@ $a->strings["Can source my \"public\" posts in derived channels"] = "Kann meine
 $a->strings["Somewhat advanced - very useful in open communities"] = "Etwas Fortgeschritten - sehr nützlich in offenen Gemeinschaften.";
 $a->strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren";
 $a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite dies nur, wenn du genau weißt, was du machst";
-$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["likes"] = "Gefällt-mir";
-$a->strings["dislikes"] = "Gefällt-mir-nicht";
-$a->strings["Click here to upgrade."] = "Klicke hier, um das Upgrade durchzuführen.";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Grenzen Ihres Abonnements.";
-$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar.";
 $a->strings["Default"] = "Standard";
+$a->strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen";
+$a->strings["Empty name"] = "Namensfeld leer";
+$a->strings["Name too long"] = "Name ist zu lang";
+$a->strings["No account identifier"] = "Keine Account-Kennung";
+$a->strings["Nickname is required."] = "Spitzname ist erforderlich.";
+$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt.";
+$a->strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen";
+$a->strings["Default Profile"] = "Standard-Profil";
+$a->strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar.";
+$a->strings[" Sorry, you don't have the permission to view this profile. "] = "Entschuldigung, aber du besitzt nicht die nötigen Rechte um dieses Profil ansehen zu dürfen.";
+$a->strings["Requested profile is not available."] = "Erwünschte Profil ist nicht verfügbar.";
+$a->strings["Change profile photo"] = "Ändere das Profilfoto";
+$a->strings["Profiles"] = "Profile";
+$a->strings["Manage/edit profiles"] = "Verwalte/Bearbeite Profile";
+$a->strings["Create New Profile"] = "Neues Profil erstellen";
+$a->strings["Edit Profile"] = "Profile bearbeiten";
+$a->strings["Profile Image"] = "Profilfoto:";
+$a->strings["visible to everybody"] = "sichtbar für jeden";
+$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
+$a->strings["Gender:"] = "Geschlecht:";
+$a->strings["Status:"] = "Status:";
+$a->strings["Homepage:"] = "Homepage:";
+$a->strings["g A l F d"] = "l, d. F G \\\\U\\\\h\\\\r";
+$a->strings["F d"] = "d. F";
+$a->strings["[today]"] = "[Heute]";
+$a->strings["Birthday Reminders"] = "Geburtstags Erinnerungen";
+$a->strings["Birthdays this week:"] = "Geburtstage in dieser Woche:";
+$a->strings["[No description]"] = "[Keine Beschreibung]";
+$a->strings["Event Reminders"] = "Veranstaltungs- Erinnerungen";
+$a->strings["Events this week:"] = "Veranstaltungen in dieser Woche:";
+$a->strings["Profile"] = "Profil";
+$a->strings["Full Name:"] = "Voller Name:";
+$a->strings["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "Geburtstag:";
+$a->strings["Age:"] = "Alter:";
+$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
+$a->strings["Sexual Preference:"] = "Sexuelle Orientierung:";
+$a->strings["Hometown:"] = "Heimatstadt:";
+$a->strings["Tags:"] = "Schlagworte:";
+$a->strings["Political Views:"] = "Politische Ansichten:";
+$a->strings["Religion:"] = "Religion:";
+$a->strings["About:"] = "Über:";
+$a->strings["Hobbies/Interests:"] = "Hobbys/Interessen:";
+$a->strings["Likes:"] = "Gefällt-mir:";
+$a->strings["Dislikes:"] = "Gefällt-mir-nicht:";
+$a->strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:";
+$a->strings["Musical interests:"] = "Musikalische Interessen:";
+$a->strings["Books, literature:"] = "Bücher, Literatur:";
+$a->strings["Television:"] = "Fernsehen:";
+$a->strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltung:";
+$a->strings["Love/Romance:"] = "Liebe/Romantik:";
+$a->strings["Work/employment:"] = "Arbeit/Anstellung:";
+$a->strings["School/education:"] = "Schule/Ausbildung:";
 $a->strings["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["Archives"] = "Archive";
 $a->strings["Collection not found."] = "Sammlung nicht gefunden";
-$a->strings["Group is empty"] = "Gruppe ist leer";
+$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["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["No channel."] = "Kein Channel.";
 $a->strings["Common connections"] = "Gemeinsame Verbindungen";
 $a->strings["No connections in common."] = "Keine gemeinsamen Verbindungen.";
@@ -719,9 +781,82 @@ $a->strings["Please visit my channel at"] = "Bitte besuche meinen Kanal auf";
 $a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "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:";
 $a->strings["Click the [Register] link on the following page to join."] = "Klicke den [Registrieren]-Link auf der nächsten Seite, um dich anzumelden.";
 $a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "Für weitere Informationen über das Red Matrix Projekt und warum es das Potential hat das Internet wie wir es kennen grundlegend zu verändern schau dir bitte http://getzot.com an";
-$a->strings["Friends of %s"] = "Freunde von %s";
-$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen.";
-$a->strings["Requested profile is not available."] = "Erwünschte Profil ist nicht verfügbar.";
+$a->strings["Could not access contact record."] = "Konnte auf den Kontakteintrag nicht zugreifen.";
+$a->strings["Could not locate selected profile."] = "Konnte das gewählte Profil nicht finden.";
+$a->strings["Connection updated."] = "Verbindung aktualisiert.";
+$a->strings["Failed to update connection record."] = "Konnte den Verbindungseintrag nicht aktualisieren.";
+$a->strings["Could not access address book record."] = "Konnte nicht auf den Eintrag im Adressbuch zugreifen.";
+$a->strings["Refresh failed - channel is currently unavailable."] = "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar.";
+$a->strings["Channel has been unblocked"] = "Kanal nicht mehr blockiert";
+$a->strings["Channel has been blocked"] = "Kanal blockiert";
+$a->strings["Unable to set address book parameters."] = "Konnte die Adressbuch Parameter nicht setzen.";
+$a->strings["Channel has been unignored"] = "Kanal wird nicht mehr ignoriert";
+$a->strings["Channel has been ignored"] = "Kanal wird ignoriert";
+$a->strings["Channel has been unarchived"] = "Kanal wurde aus dem Archiv zurück geholt";
+$a->strings["Channel has been archived"] = "Kanal wurde archiviert";
+$a->strings["Channel has been unhidden"] = "Kanal wird nicht mehr versteckt";
+$a->strings["Channel has been hidden"] = "Kanal wurde versteckt";
+$a->strings["Channel has been approved"] = "Kanal wurde zugelassen";
+$a->strings["Channel has been unapproved"] = "Zulassung des Kanals entfernt";
+$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
+$a->strings["View %s's profile"] = "%s's Profil ansehen";
+$a->strings["Refresh Permissions"] = "Zugriffsrechte auffrischen";
+$a->strings["Fetch updated permissions"] = "Aktualisierte Zugriffsrechte abfragen";
+$a->strings["Recent Activity"] = "Kürzliche Aktivitäten";
+$a->strings["View recent posts and comments"] = "Betrachte die neuesten Beiträge und Kommentare";
+$a->strings["Unblock"] = "Freigeben";
+$a->strings["Block"] = "Blockieren";
+$a->strings["Block or Unblock this connection"] = "Verbindung blockieren oder frei geben";
+$a->strings["Unignore"] = "Nicht ignorieren";
+$a->strings["Ignore"] = "Ignorieren";
+$a->strings["Ignore or Unignore this connection"] = "Verbindung ignorieren oder wieder beachten";
+$a->strings["Unarchive"] = "Aus Archiv zurückholen";
+$a->strings["Archive"] = "Archivieren";
+$a->strings["Archive or Unarchive this connection"] = "Archiviere diese Verbindung oder hole sie aus dem Archiv zurück";
+$a->strings["Unhide"] = "aufdecken";
+$a->strings["Hide"] = "Verbergen";
+$a->strings["Hide or Unhide this connection"] = "Diese Verbindung verstecken oder aufdecken";
+$a->strings["Delete this connection"] = "Verbindung löschen";
+$a->strings["Unknown"] = "Unbekannt";
+$a->strings["Approve this connection"] = "Verbindung genehmigen";
+$a->strings["Accept connection to allow communication"] = "Aktzeptiere die Verbindung um Kommunikation zu ermöglichen";
+$a->strings["Automatic Permissions Settings"] = "Automatische Berechtigungs-Einstellungen";
+$a->strings["Connections: settings for %s"] = "Verbindungseinstellungen für %s";
+$a->strings["When receiving a channel introduction, any permissions provided here will be applied to the new connection automatically and the introduction approved. Leave this page if you do not wish to use this feature."] = "Wenn eine Kanal-Vorstellung empfangen wird, werden die hier getroffenen Einstellungen automatisch angewandt und der Anfrage wird stattgegeben. Verlasse diese Seite, wenn du dieses Feature nicht verwanden möchtest.";
+$a->strings["Slide to adjust your degree of friendship"] = "Schieben um den Grad der Freundschaft zu wählen";
+$a->strings["inherited"] = "Geerbt";
+$a->strings["Connection has no individual permissions!"] = "Diese Verbindung hat keine individuellen Zugriffseinstellungen.";
+$a->strings["This may be appropriate based on your <a href=\"settings\">privacy settings</a>, though you may wish to review the \"Advanced Permissions\"."] = "Abhängig von deinen <a href=\"settings\">Privatsphären Einstellungen</a> könnte dies angebracht sein, eventuell solltest du aber die \"Erweiterte Zugriffsrechte\" überprüfen.";
+$a->strings["Profile Visibility"] = "Sichtbarkeit des Profils";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn deine Profilseite über eine verifizierte Verbindung aufgerufen wird.";
+$a->strings["Contact Information / Notes"] = "Kontaktinformationen / Notizen";
+$a->strings["Edit contact notes"] = "Kontaktnotizen editieren";
+$a->strings["Their Settings"] = "Deren Einstellungen";
+$a->strings["My Settings"] = "Meine Einstellungen";
+$a->strings["Forum Members"] = "Forum Mitglieder";
+$a->strings["Soapbox"] = "Marktschreier";
+$a->strings["Full Sharing"] = "Volles Teilen";
+$a->strings["Cautious Sharing"] = "Vorsichtiges Teilen";
+$a->strings["Follow Only"] = "Nur Folgen";
+$a->strings["Individual Permissions"] = "Individuelle Zugriffseinstellungen";
+$a->strings["Some permissions may be inherited from your channel <a href=\"settings\">privacy settings</a>, which have higher priority. Changing those inherited settings on this page will have no effect."] = "Einige Genehmigungen können von deinen <a href=\"settings\">Sicherheits- und Datenschutz-Einstellungen</a> geerbt sein (siehe Kennzeichnung), da diese eine höhere Priorität haben. Wenn du solche Genehmigungen hier änderst, hat das keine Auswirkungen.";
+$a->strings["Advanced Permissions"] = "Erweiterte Zugriffsrechte";
+$a->strings["Quick Links"] = "Quick Links";
+$a->strings["Visit %s's profile - %s"] = "%s's Profil besuchen - %s";
+$a->strings["Block/Unblock contact"] = "Geblockt Status ein- / ausschalten";
+$a->strings["Ignore contact"] = "Kontakt ignorieren";
+$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
+$a->strings["View conversations"] = "Unterhaltungen anzeigen";
+$a->strings["Delete contact"] = "Kontakt löschen";
+$a->strings["Last update:"] = "Letzte Aktualisierung:";
+$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
+$a->strings["Update now"] = "Jetzt aktualisieren";
+$a->strings["Currently blocked"] = "Derzeit blockiert";
+$a->strings["Currently ignored"] = "Derzeit ignoriert";
+$a->strings["Currently archived"] = "Derzeit archiviert";
+$a->strings["Currently pending"] = "Derzeit anstehend";
+$a->strings["Hide this contact from others"] = "Diese Verbindung vor den anderen verbergen.";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>können</strong> immer noch sichtbar sein";
 $a->strings["View"] = "Ansicht";
 $a->strings["Authorize application connection"] = "Zugriff der Anwendung authorizieren";
 $a->strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode bei der Anwendung ein:";
@@ -729,7 +864,6 @@ $a->strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen.";
 $a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest du der Anwendung erlauben deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für dich zu erstellen?";
 $a->strings["Yes"] = "Ja";
 $a->strings["No"] = "Nein";
-$a->strings["You must be logged in to see this page."] = "Du musst angemeldet sein um diese Seite betrachten zu können.";
 $a->strings["No installed applications."] = "Keine installierten Applikationen";
 $a->strings["Applications"] = "Anwendungen";
 $a->strings["Invalid item."] = "Ungültiges Element.";
@@ -810,124 +944,13 @@ $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for t
 $a->strings["Edit post"] = "Bearbeite Beitrag";
 $a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$s's %3\$s";
 $a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalte - bitte lade die Seite zur Anzeige neu]";
-$a->strings["toggle full screen mode"] = "auf Vollbildmodus umschalten";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$s's %3\$s mit %4\$s getaggt";
-$a->strings["Account settings"] = "Konto-Einstellungen";
-$a->strings["Channel settings"] = "Kanal-Einstellungen";
-$a->strings["Additional features"] = "Zusätzliche Funktionen";
-$a->strings["Feature settings"] = "Funktions-Einstellungen";
-$a->strings["Display settings"] = "Anzeige-Einstellungen";
-$a->strings["Connected apps"] = "Verbundene Apps";
-$a->strings["Export channel"] = "Kanal exportieren";
-$a->strings["Automatic Permissions (Advanced)"] = "Automatische Berechtigungen (Erweitert)";
-$a->strings["Premium Channel Settings"] = "Prämium-Kanal Einstellungen";
-$a->strings["Name is required"] = "Name wird benötigt";
-$a->strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt";
-$a->strings["Update"] = "Update";
-$a->strings["Passwords do not match. Password unchanged."] = "Kennwörter stimmen nicht überein. Kennwort nicht verändert.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert.";
-$a->strings["Password changed."] = "Kennwort geändert.";
-$a->strings["Password update failed. Please try again."] = "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal.";
-$a->strings["Not valid email."] = "Keine gültige E-Mail Adresse.";
-$a->strings["Protected email address. Cannot change to that email."] = "Geschützte E-Mail Adresse. Diese kann nicht verändert werden.";
-$a->strings["System failure storing new email. Please try again."] = "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal.";
-$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
-$a->strings["Add application"] = "Anwendung hinzufügen";
-$a->strings["Cancel"] = "Abbrechen";
-$a->strings["Name"] = "Name";
-$a->strings["Name of application"] = "Name der Anwendung";
-$a->strings["Consumer Key"] = "Consumer Key";
-$a->strings["Automatically generated - change if desired. Max length 20"] = "Automatisch erzeugt - ändern falls erwünscht. Maximale Länge 20";
-$a->strings["Consumer Secret"] = "Consumer Secret";
-$a->strings["Redirect"] = "Umleitung";
-$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "Umleitungs-URl - lasse dies frei außer deine Anwendung erfordert dies explizit";
-$a->strings["Icon url"] = "Symbol-URL";
-$a->strings["Optional"] = "Optional";
-$a->strings["You can't edit this application."] = "Diese Anwendung kann nicht bearbeitet werden.";
-$a->strings["Connected Apps"] = "Verbundene Apps";
-$a->strings["Client key starts with"] = "Client key beginnt mit";
-$a->strings["No name"] = "Kein Name";
-$a->strings["Remove authorization"] = "Authorisierung aufheben";
-$a->strings["No feature settings configured"] = "Keine Funktions-Einstellungen konfiguriert";
-$a->strings["Feature Settings"] = "Funktions-Einstellungen";
-$a->strings["Account Settings"] = "Konto-Einstellungen";
-$a->strings["Password Settings"] = "Kennwort-Einstellungen";
-$a->strings["New Password:"] = "Neues Passwort:";
-$a->strings["Confirm:"] = "Bestätigen:";
-$a->strings["Leave password fields blank unless changing"] = "Lasse die Passwort -Felder leer außer du möchtest das Passwort ändern";
-$a->strings["Email Address:"] = "Email Adresse:";
-$a->strings["Remove Account"] = "Konto entfernen";
-$a->strings["Warning: This action is permanent and cannot be reversed."] = "Achtung: Diese Aktion ist permanent und kann nicht rückgänging gemacht werden.";
-$a->strings["Off"] = "Aus";
-$a->strings["On"] = "An";
-$a->strings["Additional Features"] = "Zusätzliche Funktionen";
-$a->strings["Connector Settings"] = "Connector-Einstellungen";
-$a->strings["No special theme for mobile devices"] = "Keine spezielle Theme für mobile Geräte";
-$a->strings["Display Settings"] = "Anzeige-Einstellungen";
-$a->strings["Display Theme:"] = "Anzeige Theme:";
-$a->strings["Mobile Theme:"] = "Mobile Theme:";
-$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren";
-$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum von 10 Sekunden, kein Maximum";
-$a->strings["Maximum number of conversations to load at any time:"] = "Maximale Anzahl von Unterhaltungen die gleichzeitig geladen werden sollen:";
-$a->strings["Maximum of 100 items"] = "Maximum von 100 Beiträgen";
-$a->strings["Don't show emoticons"] = "Emoticons nicht zeigen";
-$a->strings["Nobody except yourself"] = "Niemand außer du selbst";
-$a->strings["Only those you specifically allow"] = "Nur die, denen du es explizit erlaubst";
-$a->strings["Anybody in your address book"] = "Jeder aus Ihrem Adressbuch";
-$a->strings["Anybody on this website"] = "Jeder auf dieser Website";
-$a->strings["Anybody in this network"] = "Jeder in diesem Netzwerk";
-$a->strings["Anybody on the internet"] = "Jeder im Internet";
-$a->strings["Publish your default profile in the network directory"] = "Veröffentliche dein Standard-Profil im Netzwerk-Verzeichnis";
-$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?";
-$a->strings["or"] = "oder";
-$a->strings["Your channel address is"] = "Deine Kanal-Adresse lautet";
-$a->strings["Automatically expire posts after this many days:"] = "Lösche Beiträge automatisch nach dieser Anzahl von Tagen:";
-$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Falls leer werden Beiträge nie verfallen. Verfallene Beiträge werden gelöscht";
-$a->strings["Advanced expiration settings"] = "Erweitere Verfalls-Einstellungen";
-$a->strings["Advanced Expiration"] = "Erweitertes Verfallen";
-$a->strings["Expire posts:"] = "Beiträge verfallen lassen:";
-$a->strings["Expire starred posts:"] = "Markierte Beiträge verfallen lassen:";
-$a->strings["Expire photos:"] = "Fotos verfallen lassen:";
-$a->strings["Only expire posts by others:"] = "Nur Beiträge anderer verfallen lassen:";
-$a->strings["Channel Settings"] = "Channel-Einstellungen";
-$a->strings["Basic Settings"] = "Grundeinstellungen";
-$a->strings["Your Timezone:"] = "Ihre Zeitzone:";
-$a->strings["Default Post Location:"] = "Standardstandort:";
-$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:";
-$a->strings["Adult Content"] = "Nicht Jugendfreie-Inhalte";
-$a->strings["This channel publishes adult content."] = "Dieser Kanal veröffentlicht nicht Jugendfreie-Inhalte";
-$a->strings["Security and Privacy Settings"] = "Sicherheits- und Datenschutz-Einstellungen";
-$a->strings["Quick Privacy Settings:"] = "Schnelle Datenschutz-Einstellungen:";
-$a->strings["Very Public - extremely permissive"] = "Sehr offen - extrem freizügig";
-$a->strings["Typical - default public, privacy when desired"] = "Typisch - Standard öffentlich, Privatheit wenn gewünscht";
-$a->strings["Private - default private, rarely open or public"] = "Privat - Standard privat, selten offen oder öffentlich";
-$a->strings["Blocked - default blocked to/from everybody"] = "Geschlossen - Standard zu und von jedem geblockt";
-$a->strings["Maximum Friend Requests/Day:"] = "Maximale Kontaktanfragen pro Tag:";
-$a->strings["May reduce spam activity"] = "Kann die Spam-Aktivität verringern";
-$a->strings["Default Post Permissions"] = "Beitragszugriffrechte Standardeinstellungen";
-$a->strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)";
-$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:";
-$a->strings["Useful to reduce spamming"] = "Nützlich um Spam zu verringern";
-$a->strings["Notification Settings"] = "Benachrichtigungs-Einstellungen";
-$a->strings["By default post a status message when:"] = "Sende standardmäßig Status-Nachrichten wenn:";
-$a->strings["accepting a friend request"] = "einer Kontaktanfrage stattgegeben wurde";
-$a->strings["joining a forum/community"] = "ein Forum beigetreten wurde";
-$a->strings["making an <em>interesting</em> profile change"] = "eine <em>interessante</em> Änderung am Profil vorgenommen wurde";
-$a->strings["Send a notification email when:"] = "Eine Email Benachrichtigung senden wenn:";
-$a->strings["You receive an introduction"] = "Du eine Vorstellung erhältst";
-$a->strings["Your introductions are confirmed"] = "Deine Vorstellung bestätigt wurde.";
-$a->strings["Someone writes on your profile wall"] = "Jemand auf deine Pinnwand schreibt";
-$a->strings["Someone writes a followup comment"] = "Jemand einen Beitrag kommentiert";
-$a->strings["You receive a private message"] = "Du eine private Nachricht erhältst";
-$a->strings["You receive a friend suggestion"] = "Du einen Kontaktvorschlag erhältst";
-$a->strings["You are tagged in a post"] = "Du 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["toggle full screen mode"] = "auf Vollbildmodus umschalten";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$s's %3\$s mit %4\$s getaggt";
 $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:";
@@ -949,6 +972,7 @@ $a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die S
 $a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
 $a->strings["Add"] = "Hinzufügen";
 $a->strings["No entries."] = "Keine Einträge.";
+$a->strings["Failed to create source. No channel selected."] = "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt.";
 $a->strings["Source created."] = "Quelle erstellt.";
 $a->strings["Source updated."] = "Quelle aktualisiert.";
 $a->strings["Manage remote sources of content for your channel."] = "Entfernte Quellen von Inhalten deines Kanals verwalten.";
@@ -980,6 +1004,7 @@ $a->strings["Pending registrations"] = "Ausstehende Registrierungen";
 $a->strings["Version"] = "Version";
 $a->strings["Active plugins"] = "Aktive Plug-Ins";
 $a->strings["Site settings updated."] = "Site-Einstellungen aktualisiert.";
+$a->strings["No special theme for mobile devices"] = "Keine spezielle Theme für mobile Geräte";
 $a->strings["No special theme for accessibility"] = "Kein spezielles Accessibility Theme vorhanden";
 $a->strings["Closed"] = "Geschlossen";
 $a->strings["Requires approval"] = "Genehmigung erforderlich";
@@ -1019,6 +1044,8 @@ $a->strings["Block public"] = "Öffentlichen Zugriff blockieren";
 $a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist.";
 $a->strings["Force publish"] = "Veröffentlichung erzwingen";
 $a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen.";
+$a->strings["No login on Homepage"] = "Kein Login auf der Homepage";
+$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Wählen um das Login Formular auf der Startseite der Seite zu verbergen, z.B. weil es das Layout der Homepage des Seiten-Kanals stört.";
 $a->strings["Proxy user"] = "Proxy Benutzer";
 $a->strings["Proxy URL"] = "Proxy URL";
 $a->strings["Network timeout"] = "Netzwerk-Timeout";
@@ -1058,11 +1085,10 @@ $a->strings["User '%s' blocked"] = "Benutzer '%s' blockiert";
 $a->strings["select all"] = "Alle auswählen";
 $a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf deine Bestätigung warten";
 $a->strings["Request date"] = "Antragsdatum";
+$a->strings["Name"] = "Name";
 $a->strings["No registrations."] = "Keine Registrierungen.";
 $a->strings["Approve"] = "Genehmigen";
 $a->strings["Deny"] = "Verweigern";
-$a->strings["Block"] = "Blockieren";
-$a->strings["Unblock"] = "Freigeben";
 $a->strings["Register date"] = "Registrierungs-Datum";
 $a->strings["Last login"] = "Letzte Anmeldung";
 $a->strings["Expires"] = "Verfällt";
@@ -1102,6 +1128,8 @@ $a->strings["Add menu element"] = "Menüelement hinzufügen";
 $a->strings["Delete this menu item"] = "Lösche dieses Menü-Bestandteil";
 $a->strings["Edit this menu item"] = "Bearbeite dieses Menü-Bestandteil";
 $a->strings["New Menu Element"] = "Neues Menü-Bestandteil";
+$a->strings["Menu Item Permissions"] = "Menü-Element Zugriffsrechte";
+$a->strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)";
 $a->strings["Link text"] = "Link Text";
 $a->strings["URL of link"] = "URL des Links";
 $a->strings["Use Red magic-auth if available"] = "Verwende Red Magic-Auth wenn verfügbar";
@@ -1116,7 +1144,7 @@ $a->strings["Edit Menu Element"] = "Bearbeite Menü-Bestandteil";
 $a->strings["Modify"] = "Ändern";
 $a->strings["Collection created."] = "Sammlung erstellt.";
 $a->strings["Could not create collection."] = "Sammlung kann nicht erstellt werden.";
-$a->strings["Collection name changed."] = "Name der Sammlung geändert.";
+$a->strings["Collection updated."] = "Sammlung aktualisiert.";
 $a->strings["Create a collection of channels."] = "Erstelle eine Sammlung von Kanälen.";
 $a->strings["Collection Name: "] = "Name der Sammlung:";
 $a->strings["Members are visible to other channels"] = "Mitglieder sind sichtbar für andere Kanäle";
@@ -1126,7 +1154,6 @@ $a->strings["Collection Editor"] = "Sammlung-Editor";
 $a->strings["Members"] = "Mitglieder";
 $a->strings["All Connected Channels"] = "Alle verbundene Channels";
 $a->strings["Click on a channel to add or remove."] = "Wähle einen Kanal zum hinzufügen oder entfernen aus.";
-$a->strings["Remove term"] = "Eintrag löschen";
 $a->strings["Page owner information could not be retrieved."] = "Informationen über den Betreiber der Seite konnten nicht gefunden werden.";
 $a->strings["Album not found."] = "Album nicht gefunden.";
 $a->strings["Delete Album"] = "Album löschen";
@@ -1162,8 +1189,6 @@ $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["g A l F d"] = "l, d. F G \\\\U\\\\h\\\\r";
-$a->strings["[today]"] = "[Heute]";
 $a->strings["posted an event"] = "hat eine Veranstaltung veröffentlicht";
 $a->strings["- select -"] = "-auswählen-";
 $a->strings["Menu updated."] = "Menü aktualisiert.";
@@ -1172,7 +1197,6 @@ $a->strings["Menu created."] = "Menü erstellt.";
 $a->strings["Unable to create menu."] = "Kann Menü nicht erstellen.";
 $a->strings["Manage Menus"] = "Menüs verwalten";
 $a->strings["Drop"] = "Löschen";
-$a->strings["New"] = "Neu";
 $a->strings["Create a new menu"] = "Neues Menü erstellen";
 $a->strings["Delete this menu"] = "Lösche dieses Menü";
 $a->strings["Edit menu contents"] = "Bearbeite Menü Inhalte";
@@ -1187,7 +1211,6 @@ $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["Check Mail"] = "E-Mails abrufen";
 $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.";
@@ -1209,124 +1232,11 @@ $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["No profile"] = "Kein Profil";
-$a->strings["Layout Help"] = "Layout Hilfe";
-$a->strings["Help with this feature"] = "Hilfe zu diesem Feature";
-$a->strings["Layout Name"] = "Layout Name";
-$a->strings["Help:"] = "Hilfe:";
-$a->strings["Not Found"] = "Nicht gefunden";
-$a->strings["Remote Authentication"] = "Entfernte Authentifizierung";
-$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z.B. channel@example.com)";
-$a->strings["Authenticate"] = "Authentifizieren";
-$a->strings["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["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["Refresh"] = "Aktualisieren";
-$a->strings["Me"] = "Ich";
-$a->strings["Best Friends"] = "Beste Freunde";
-$a->strings["Co-workers"] = "Kollegen";
-$a->strings["Former Friends"] = "ehem. Freunde";
-$a->strings["Acquaintances"] = "Bekanntschaften";
-$a->strings["Everybody"] = "Jeder";
-$a->strings["Search Results For:"] = "Suchergebnisse für:";
-$a->strings["No such group"] = "Gruppe existiert nicht";
-$a->strings["Connection: "] = "Verbindung:";
-$a->strings["Invalid connection."] = "Ungültige Verbindung.";
-$a->strings["Ignore"] = "Ignorieren";
-$a->strings["Connection updated."] = "Verbindung aktualisiert.";
-$a->strings["Connection update failed."] = "Aktualisierung der Verbindung fehlgeschlagen.";
-$a->strings["Introductions and Connection Requests"] = "Vorstellungen und Kontaktanfragen";
-$a->strings["No pending introductions."] = "Keine wartenden Vorstellungen.";
-$a->strings["System error. Please try again later."] = "Systemfehler. Bitte später erneut versuchen.";
-$a->strings["Hide this contact from others"] = "Diese Verbindung vor den anderen verbergen.";
-$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden";
-$a->strings["if applicable"] = "falls anwendbar";
-$a->strings["Discard"] = "Verwerfen";
-$a->strings["Could not access contact record."] = "Konnte auf den Kontakteintrag nicht zugreifen.";
-$a->strings["Could not locate selected profile."] = "Konnte das gewählte Profil nicht finden.";
-$a->strings["Failed to update connection record."] = "Konnte den Verbindungseintrag nicht aktualisieren.";
-$a->strings["Could not access address book record."] = "Konnte nicht auf den Eintrag im Adressbuch zugreifen.";
-$a->strings["Refresh failed - channel is currently unavailable."] = "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar.";
-$a->strings["Channel has been unblocked"] = "Kanal nicht mehr blockiert";
-$a->strings["Channel has been blocked"] = "Kanal blockiert";
-$a->strings["Unable to set address book parameters."] = "Konnte die Adressbuch Parameter nicht setzen.";
-$a->strings["Channel has been unignored"] = "Kanal wird nicht mehr ignoriert";
-$a->strings["Channel has been ignored"] = "Kanal wird ignoriert";
-$a->strings["Channel has been unarchived"] = "Kanal wurde aus dem Archiv zurück geholt";
-$a->strings["Channel has been archived"] = "Kanal wurde archiviert";
-$a->strings["Channel has been unhidden"] = "Kanal wird nicht mehr versteckt";
-$a->strings["Channel has been hidden"] = "Kanal wurde versteckt";
-$a->strings["Channel has been approved"] = "Kanal wurde zugelassen";
-$a->strings["Channel has been unapproved"] = "Zulassung des Kanals entfernt";
-$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
-$a->strings["View %s's profile"] = "%s's Profil ansehen";
-$a->strings["Refresh Permissions"] = "Zugriffsrechte auffrischen";
-$a->strings["Fetch updated permissions"] = "Aktualisierte Zugriffsrechte abfragen";
-$a->strings["Recent Activity"] = "Kürzliche Aktivitäten";
-$a->strings["View recent posts and comments"] = "Betrachte die neuesten Beiträge und Kommentare";
-$a->strings["Block or Unblock this connection"] = "Verbindung blockieren oder frei geben";
-$a->strings["Unignore"] = "Nicht ignorieren";
-$a->strings["Ignore or Unignore this connection"] = "Verbindung ignorieren oder wieder beachten";
-$a->strings["Unarchive"] = "Aus Archiv zurückholen";
-$a->strings["Archive"] = "Archivieren";
-$a->strings["Archive or Unarchive this connection"] = "Archiviere diese Verbindung oder hole sie aus dem Archiv zurück";
-$a->strings["Unhide"] = "aufdecken";
-$a->strings["Hide"] = "Verbergen";
-$a->strings["Hide or Unhide this connection"] = "Diese Verbindung verstecken oder aufdecken";
-$a->strings["Delete this connection"] = "Verbindung löschen";
-$a->strings["Unknown"] = "Unbekannt";
-$a->strings["Approve this connection"] = "Verbindung genehmigen";
-$a->strings["Accept connection to allow communication"] = "Aktzeptiere die Verbindung um Kommunikation zu ermöglichen";
-$a->strings["Automatic Permissions Settings"] = "Automatische Berechtigungs-Einstellungen";
-$a->strings["Connections: settings for %s"] = "Verbindungseinstellungen für %s";
-$a->strings["When receiving a channel introduction, any permissions provided here will be applied to the new connection automatically and the introduction approved. Leave this page if you do not wish to use this feature."] = "Wenn eine Kanal-Vorstellung empfangen wird, werden die hier getroffenen Einstellungen automatisch angewandt und der Anfrage wird stattgegeben. Verlasse diese Seite, wenn du dieses Feature nicht verwanden möchtest.";
-$a->strings["Slide to adjust your degree of friendship"] = "Schieben um den Grad der Freundschaft zu wählen";
-$a->strings["inherited"] = "Geerbt";
-$a->strings["Connection has no individual permissions!"] = "Diese Verbindung hat keine individuellen Zugriffseinstellungen.";
-$a->strings["This may be appropriate based on your <a href=\"settings\">privacy settings</a>, though you may wish to review the \"Advanced Permissions\"."] = "Abhängig von deinen <a href=\"settings\">Privatsphären Einstellungen</a> könnte dies angebracht sein, eventuell solltest du aber die \"Erweiterte Zugriffsrechte\" überprüfen.";
-$a->strings["Profile Visibility"] = "Sichtbarkeit des Profils";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn deine Profilseite über eine verifizierte Verbindung aufgerufen wird.";
-$a->strings["Contact Information / Notes"] = "Kontaktinformationen / Notizen";
-$a->strings["Edit contact notes"] = "Kontaktnotizen editieren";
-$a->strings["Their Settings"] = "Deren Einstellungen";
-$a->strings["My Settings"] = "Meine Einstellungen";
-$a->strings["Forum Members"] = "Forum Mitglieder";
-$a->strings["Soapbox"] = "Marktschreier";
-$a->strings["Full Sharing"] = "Volles Teilen";
-$a->strings["Cautious Sharing"] = "Vorsichtiges Teilen";
-$a->strings["Follow Only"] = "Nur Folgen";
-$a->strings["Individual Permissions"] = "Individuelle Zugriffseinstellungen";
-$a->strings["Some permissions may be inherited from your channel <a href=\"settings\">privacy settings</a>, which have higher priority. Changing those inherited settings on this page will have no effect."] = "Einige Genehmigungen können von deinen <a href=\"settings\">Sicherheits- und Datenschutz-Einstellungen</a> geerbt sein (siehe Kennzeichnung), da diese eine höhere Priorität haben. Wenn du solche Genehmigungen hier änderst, hat das keine Auswirkungen.";
-$a->strings["Advanced Permissions"] = "Erweiterte Zugriffsrechte";
-$a->strings["Quick Links"] = "Quick Links";
-$a->strings["Visit %s's profile - %s"] = "%s's Profil besuchen - %s";
-$a->strings["Block/Unblock contact"] = "Geblockt Status ein- / ausschalten";
-$a->strings["Ignore contact"] = "Kontakt ignorieren";
-$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
-$a->strings["View conversations"] = "Unterhaltungen anzeigen";
-$a->strings["Delete contact"] = "Kontakt löschen";
-$a->strings["Last update:"] = "Letzte Aktualisierung:";
-$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
-$a->strings["Update now"] = "Jetzt aktualisieren";
-$a->strings["Currently blocked"] = "Derzeit blockiert";
-$a->strings["Currently ignored"] = "Derzeit ignoriert";
-$a->strings["Currently archived"] = "Derzeit archiviert";
-$a->strings["Currently pending"] = "Derzeit anstehend";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>können</strong> immer noch sichtbar sein";
 $a->strings["Blocked"] = "Blockiert";
 $a->strings["Ignored"] = "Ignoriert";
 $a->strings["Hidden"] = "Versteckt";
 $a->strings["Archived"] = "Archiviert";
 $a->strings["All"] = "Alle";
-$a->strings["Suggestions"] = "Vorschläge";
 $a->strings["Suggest new connections"] = "Neue Verbindungen vorschlagen";
 $a->strings["Show pending (new) connections"] = "Zeige schwebende (neue) Verbindungen";
 $a->strings["All Connections"] = "Alle Verbindungen";
@@ -1341,9 +1251,27 @@ $a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]";
 $a->strings["Edit contact"] = "Kontakt bearbeiten";
 $a->strings["Search your connections"] = "Verbindungen durchsuchen";
 $a->strings["Finding: "] = "Ergebnisse:";
+$a->strings["Layout Help"] = "Layout Hilfe";
+$a->strings["Help with this feature"] = "Hilfe zu diesem Feature";
+$a->strings["Layout Name"] = "Layout Name";
+$a->strings["Help:"] = "Hilfe:";
+$a->strings["Not Found"] = "Nicht gefunden";
+$a->strings["Remote Authentication"] = "Entfernte Authentifizierung";
+$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z.B. channel@example.com)";
+$a->strings["Authenticate"] = "Authentifizieren";
+$a->strings["No such group"] = "Gruppe existiert nicht";
+$a->strings["Search Results For:"] = "Suchergebnisse für:";
+$a->strings["Collection is empty"] = "Sammlung ist leer";
+$a->strings["Collection: "] = "Sammlung:";
+$a->strings["Connection: "] = "Verbindung:";
+$a->strings["Invalid connection."] = "Ungültige Verbindung.";
+$a->strings["Channel added."] = "Kanal hinzugefügt.";
+$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Entfernte Authentifizierung blockiert. Du bist lokal auf dieser Seite angemeldet. Bitte melde dich ab und versuche es erneut.";
+$a->strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich.";
 $a->strings["This site is not a directory server"] = "Diese Website ist kein Verzeichnis-Server";
 $a->strings["Remote privacy information not available."] = "Entfernte Privatsphären Einstellungen sind nicht verfügbar.";
 $a->strings["Visible to:"] = "Sichtbar für:";
+$a->strings["Hub not found."] = "Server nicht gefunden.";
 $a->strings["Profile not found."] = "Profil nicht gefunden.";
 $a->strings["Profile deleted."] = "Profil gelöscht.";
 $a->strings["Profile-"] = "Profil-";
@@ -1404,11 +1332,6 @@ $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["Change profile photo"] = "Ändere das Profilfoto";
-$a->strings["Create New Profile"] = "Neues Profil erstellen";
-$a->strings["Profile Image"] = "Profilfoto:";
-$a->strings["visible to everybody"] = "sichtbar für jeden";
-$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
 $a->strings["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\" ";
@@ -1466,30 +1389,104 @@ $a->strings["Profile Match"] = "Profil-Übereinstimmungen";
 $a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselbegriffe für den Abgleich gefunden. Bitte füge Schlüsselbegriffe zu deinem Standardprofil hinzu.";
 $a->strings["is interested in:"] = "interessiert sich für:";
 $a->strings["No matches"] = "Keine Übereinstimmungen";
-$a->strings["Contact settings applied."] = "Kontakt Einstellungen angewandt.";
-$a->strings["Contact update failed."] = "Kontakt Update fehlgeschlagen.";
-$a->strings["Contact not found."] = "Kontakt nicht gefunden";
-$a->strings["Repair Contact Settings"] = " Kontakt-Einstellungen reparieren";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>Warnung: Dies ist für weit fortgeschrittene Benutzer!</strong> Wenn du falsche Informationen eingibst, könnte die Kommunikation mit diesem Kontakt abbrechen.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button deines Browsers <strong>jetzt</strong>, wenn du dir unsicher bist, was du tun willst.";
-$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
-$a->strings["Account Nickname"] = "Konto Spitzname";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
-$a->strings["Account URL"] = "Konto URL";
-$a->strings["Friend Request URL"] = "URL für Kontaktanfragen";
-$a->strings["Friend Confirm URL"] = "URL zum Bestätigen von Kontaktanfragen";
-$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen";
-$a->strings["Poll/Feed URL"] = "Poll/Feed URL";
-$a->strings["New photo from this URL"] = "Neues Foto von dieser URL";
 $a->strings["invalid target signature"] = "Ungültige Signatur des Ziels";
-$a->strings["Channel added."] = "Kanal hinzugefügt.";
+$a->strings["Name is required"] = "Name wird benötigt";
+$a->strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt";
+$a->strings["Update"] = "Update";
+$a->strings["Passwords do not match. Password unchanged."] = "Kennwörter stimmen nicht überein. Kennwort nicht verändert.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert.";
+$a->strings["Password changed."] = "Kennwort geändert.";
+$a->strings["Password update failed. Please try again."] = "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal.";
+$a->strings["Not valid email."] = "Keine gültige E-Mail Adresse.";
+$a->strings["Protected email address. Cannot change to that email."] = "Geschützte E-Mail Adresse. Diese kann nicht verändert werden.";
+$a->strings["System failure storing new email. Please try again."] = "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal.";
+$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
+$a->strings["Add application"] = "Anwendung hinzufügen";
+$a->strings["Name of application"] = "Name der Anwendung";
+$a->strings["Consumer Key"] = "Consumer Key";
+$a->strings["Automatically generated - change if desired. Max length 20"] = "Automatisch erzeugt - ändern falls erwünscht. Maximale Länge 20";
+$a->strings["Consumer Secret"] = "Consumer Secret";
+$a->strings["Redirect"] = "Umleitung";
+$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "Umleitungs-URl - lasse dies frei außer deine Anwendung erfordert dies explizit";
+$a->strings["Icon url"] = "Symbol-URL";
+$a->strings["Optional"] = "Optional";
+$a->strings["You can't edit this application."] = "Diese Anwendung kann nicht bearbeitet werden.";
+$a->strings["Connected Apps"] = "Verbundene Apps";
+$a->strings["Client key starts with"] = "Client key beginnt mit";
+$a->strings["No name"] = "Kein Name";
+$a->strings["Remove authorization"] = "Authorisierung aufheben";
+$a->strings["No feature settings configured"] = "Keine Funktions-Einstellungen konfiguriert";
+$a->strings["Feature Settings"] = "Funktions-Einstellungen";
+$a->strings["Account Settings"] = "Konto-Einstellungen";
+$a->strings["Password Settings"] = "Kennwort-Einstellungen";
+$a->strings["New Password:"] = "Neues Passwort:";
+$a->strings["Confirm:"] = "Bestätigen:";
+$a->strings["Leave password fields blank unless changing"] = "Lasse die Passwort -Felder leer außer du möchtest das Passwort ändern";
+$a->strings["Email Address:"] = "Email Adresse:";
+$a->strings["Remove Account"] = "Konto entfernen";
+$a->strings["Warning: This action is permanent and cannot be reversed."] = "Achtung: Diese Aktion ist permanent und kann nicht rückgänging gemacht werden.";
+$a->strings["Off"] = "Aus";
+$a->strings["On"] = "An";
+$a->strings["Additional Features"] = "Zusätzliche Funktionen";
+$a->strings["Connector Settings"] = "Connector-Einstellungen";
+$a->strings["Display Settings"] = "Anzeige-Einstellungen";
+$a->strings["Display Theme:"] = "Anzeige Theme:";
+$a->strings["Mobile Theme:"] = "Mobile Theme:";
+$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren";
+$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum von 10 Sekunden, kein Maximum";
+$a->strings["Maximum number of conversations to load at any time:"] = "Maximale Anzahl von Unterhaltungen die gleichzeitig geladen werden sollen:";
+$a->strings["Maximum of 100 items"] = "Maximum von 100 Beiträgen";
+$a->strings["Don't show emoticons"] = "Emoticons nicht zeigen";
+$a->strings["Nobody except yourself"] = "Niemand außer du selbst";
+$a->strings["Only those you specifically allow"] = "Nur die, denen du es explizit erlaubst";
+$a->strings["Anybody in your address book"] = "Jeder aus Ihrem Adressbuch";
+$a->strings["Anybody on this website"] = "Jeder auf dieser Website";
+$a->strings["Anybody in this network"] = "Jeder in diesem Netzwerk";
+$a->strings["Anybody on the internet"] = "Jeder im Internet";
+$a->strings["Publish your default profile in the network directory"] = "Veröffentliche dein Standard-Profil im Netzwerk-Verzeichnis";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?";
+$a->strings["or"] = "oder";
+$a->strings["Your channel address is"] = "Deine Kanal-Adresse lautet";
+$a->strings["Channel Settings"] = "Channel-Einstellungen";
+$a->strings["Basic Settings"] = "Grundeinstellungen";
+$a->strings["Your Timezone:"] = "Ihre Zeitzone:";
+$a->strings["Default Post Location:"] = "Standardstandort:";
+$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:";
+$a->strings["Adult Content"] = "Nicht Jugendfreie-Inhalte";
+$a->strings["This channel publishes adult content."] = "Dieser Kanal veröffentlicht nicht Jugendfreie-Inhalte";
+$a->strings["Security and Privacy Settings"] = "Sicherheits- und Datenschutz-Einstellungen";
+$a->strings["Quick Privacy Settings:"] = "Schnelle Datenschutz-Einstellungen:";
+$a->strings["Very Public - extremely permissive"] = "Sehr offen - extrem freizügig";
+$a->strings["Typical - default public, privacy when desired"] = "Typisch - Standard öffentlich, Privatheit wenn gewünscht";
+$a->strings["Private - default private, rarely open or public"] = "Privat - Standard privat, selten offen oder öffentlich";
+$a->strings["Blocked - default blocked to/from everybody"] = "Geschlossen - Standard zu und von jedem geblockt";
+$a->strings["Maximum Friend Requests/Day:"] = "Maximale Kontaktanfragen pro Tag:";
+$a->strings["May reduce spam activity"] = "Kann die Spam-Aktivität verringern";
+$a->strings["Default Post Permissions"] = "Beitragszugriffrechte Standardeinstellungen";
+$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:";
+$a->strings["Useful to reduce spamming"] = "Nützlich um Spam zu verringern";
+$a->strings["Notification Settings"] = "Benachrichtigungs-Einstellungen";
+$a->strings["By default post a status message when:"] = "Sende standardmäßig Status-Nachrichten wenn:";
+$a->strings["accepting a friend request"] = "einer Kontaktanfrage stattgegeben wurde";
+$a->strings["joining a forum/community"] = "ein Forum beigetreten wurde";
+$a->strings["making an <em>interesting</em> profile change"] = "eine <em>interessante</em> Änderung am Profil vorgenommen wurde";
+$a->strings["Send a notification email when:"] = "Eine Email Benachrichtigung senden wenn:";
+$a->strings["You receive an introduction"] = "Du eine Vorstellung erhältst";
+$a->strings["Your introductions are confirmed"] = "Deine Vorstellung bestätigt wurde.";
+$a->strings["Someone writes on your profile wall"] = "Jemand auf deine Pinnwand schreibt";
+$a->strings["Someone writes a followup comment"] = "Jemand einen Beitrag kommentiert";
+$a->strings["You receive a private message"] = "Du eine private Nachricht erhältst";
+$a->strings["You receive a friend suggestion"] = "Du einen Kontaktvorschlag erhältst";
+$a->strings["You are tagged in a post"] = "Du 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["Item not found"] = "Element nicht gefunden";
 $a->strings["Edit Layout"] = "Layout bearbeiten";
 $a->strings["Insert YouTube video"] = "YouTube-Video einfügen";
 $a->strings["Insert Vorbis [.ogg] video"] = "Vorbis [.ogg]-Video einfügen";
 $a->strings["Insert Vorbis [.ogg] audio"] = "Vorbis [.ogg]-Audio einfügen";
 $a->strings["Delete Layout"] = "Layout löschen";
-$a->strings["Contacts who are not members of a group"] = "Kanäle die in keiner Sammlung Mitglied sind";
 $a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das zurecht schneiden schlug fehl.";
 $a->strings["Image resize failed."] = "Bild-Anpassung fehlgeschlagen.";
 $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Leere den Browser Cache oder nutze Umschalten-Neu Laden sollte das neue Foto nicht sofort angezeigt werden.";
@@ -1511,36 +1508,9 @@ $a->strings["Image size reduction [%s] failed."] = "Reduzierung der Bildgröße
 $a->strings["Edit Webpage"] = "Webseite bearbeiten";
 $a->strings["Delete Webpage"] = "Webseite löschen";
 $a->strings["Invalid request identifier."] = "Ungültige Anfrage Identifikator.";
-$a->strings["System"] = "System";
-$a->strings["Introductions"] = "Vorstellungen";
-$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen";
-$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen";
-$a->strings["Notification type: "] = "Benachrichtigungstyp:";
-$a->strings["Friend Suggestion"] = "Freundschaft Vorschläge";
-$a->strings["suggested by %s"] = "vorgeschlagen von %s";
-$a->strings["Claims to be known to you: "] = "Behauptet dich zu kennen:";
-$a->strings["yes"] = "ja";
-$a->strings["no"] = "nein";
-$a->strings["Approve as: "] = "Genehmigen als:";
-$a->strings["Friend"] = "Freund";
-$a->strings["Sharer"] = "Teilenden";
-$a->strings["Fan/Admirer"] = "Fan/Verehrer";
-$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
-$a->strings["New Follower"] = "Neuer Bewunderer";
-$a->strings["No introductions."] = "Keine wartenden Vorstellungen.";
-$a->strings["%s liked %s's post"] = "%s gefällt %s's Beitrag";
-$a->strings["%s disliked %s's post"] = "%s gefällt %s's Beitrag nicht";
-$a->strings["%s is now friends with %s"] = "%s ist nun mit %s befreundet";
-$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag verfasst";
-$a->strings["%s commented on %s's post"] = "%s kommentierte %s Beitrag";
-$a->strings["No more network notifications."] = "Keine weiteren Netzwerk Benachrichtigungen.";
-$a->strings["Network Notifications"] = "Netzwerk-Benachrichtigungen";
+$a->strings["Discard"] = "Verwerfen";
 $a->strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr.";
 $a->strings["System Notifications"] = "System-Benachrichtigungen";
-$a->strings["No more personal notifications."] = "Keine persönliche Benachrichtigungen mehr.";
-$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
-$a->strings["No more home notifications."] = "Keine Pinwand-Benachrichtigungen mehr.";
-$a->strings["Home Notifications"] = "Pinwand-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.";
@@ -1552,11 +1522,13 @@ $a->strings["Recipient"] = "Empfänger";
 $a->strings["Choose what you wish to do to recipient"] = "Wähle was du mit dem/r Empfänger/in tun willst";
 $a->strings["Make this post private"] = "Diesen Beitrag privat machen";
 $a->strings["Wall Photos"] = "Wall Fotos";
+$a->strings["You must be logged in to see this page."] = "Du musst angemeldet sein um diese Seite betrachten zu können.";
 $a->strings["Insufficient permissions.  Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet.";
 $a->strings["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";
 $a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
@@ -1583,7 +1555,6 @@ $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["Ignore/Hide"] = "Ignorieren/Verstecken";
 $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";
@@ -1605,8 +1576,6 @@ $a->strings["Your email address"] = "Ihre E-Mail Adresse";
 $a->strings["Choose a password"] = "Passwort";
 $a->strings["Please re-enter your password"] = "Bitte gib dein Passwort noch einmal ein";
 $a->strings["Please login."] = "Bitte melde dich an.";
-$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Entfernte Authentifizierung blockiert. Du bist lokal auf dieser Seite angemeldet. Bitte melde dich ab und versuche es erneut.";
-$a->strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich.";
 $a->strings["Remove This Channel"] = "Diesen Kanal löschen!";
 $a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Hiermit wird dieser Kanal komplett aus dem Netzwerk gelöscht. Einmal eingeleitet ist dieser Prozess nicht widerrufbar.";
 $a->strings["Please enter your password for verification:"] = "Bitte gib zur Bestätigung dein Passwort ein:";
@@ -1687,22 +1656,4 @@ $a->strings["Remember me"] = "Angaben speichern";
 $a->strings["Forgot your password?"] = "Passwort vergessen?";
 $a->strings["permission denied"] = "Zugriff verweigert";
 $a->strings["Got Zot?"] = "Haste schon Zot?";
-$a->strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar.";
-$a->strings[" Sorry, you don't have the permission to view this profile. "] = "Entschuldigung, aber du besitzt nicht die nötigen Rechte um dieses Profil ansehen zu dürfen.";
-$a->strings["Profiles"] = "Profile";
-$a->strings["Manage/edit profiles"] = "Verwalte/Bearbeite Profile";
-$a->strings["Edit Profile"] = "Profile bearbeiten";
-$a->strings["F d"] = "d. F";
-$a->strings["Birthday Reminders"] = "Geburtstags Erinnerungen";
-$a->strings["Birthdays this week:"] = "Geburtstage in dieser Woche:";
-$a->strings["[No description]"] = "[Keine Beschreibung]";
-$a->strings["Event Reminders"] = "Veranstaltungs- Erinnerungen";
-$a->strings["Events this week:"] = "Veranstaltungen in dieser Woche:";
-$a->strings["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["toggle mobile"] = "auf/von Mobile Ansicht wechseln";
-- 
cgit v1.2.3


From ea31573e26a5f74b27530fc0829c9b9abca0f65c Mon Sep 17 00:00:00 2001
From: Thomas Willingham <founder@kakste.com>
Date: Mon, 23 Dec 2013 18:58:48 +0000
Subject: You'll probably be wanting the actual template too.

---
 view/tpl/page_display.tpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/tpl/page_display.tpl b/view/tpl/page_display.tpl
index d8175bdd2..a01bbea35 100755
--- a/view/tpl/page_display.tpl
+++ b/view/tpl/page_display.tpl
@@ -2,7 +2,7 @@
 
 <div class="generic-content-wrapper" id="page-content-wrapper" >
 	<h3 class="page-title">{{$title}}</h3>
-	<div class="page-author"><a class=="page-author-link" href="{{$auth_url}}">{{$author}}</a></div>
+	<div class="page-author"><a class=="page-author-link" href="{{$auth_url}}{{if $zid}}?zrl={{$zid}}{{/if}}">{{$author}}</a></div>
 	<div class="page-date">{{$date}}</div>
 	<div class="page-body">{{$body}}</div>
 </div>
-- 
cgit v1.2.3


From 9daa6478556acab40958e61df39c1b7a8fc74d55 Mon Sep 17 00:00:00 2001
From: Thomas Willingham <founder@kakste.com>
Date: Mon, 23 Dec 2013 21:01:49 +0000
Subject: s/zrl/zid

---
 view/tpl/page_display.tpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/tpl/page_display.tpl b/view/tpl/page_display.tpl
index a01bbea35..9b6b182c8 100755
--- a/view/tpl/page_display.tpl
+++ b/view/tpl/page_display.tpl
@@ -2,7 +2,7 @@
 
 <div class="generic-content-wrapper" id="page-content-wrapper" >
 	<h3 class="page-title">{{$title}}</h3>
-	<div class="page-author"><a class=="page-author-link" href="{{$auth_url}}{{if $zid}}?zrl={{$zid}}{{/if}}">{{$author}}</a></div>
+	<div class="page-author"><a class=="page-author-link" href="{{$auth_url}}{{if $zid}}?zid={{$zid}}{{/if}}">{{$author}}</a></div>
 	<div class="page-date">{{$date}}</div>
 	<div class="page-body">{{$body}}</div>
 </div>
-- 
cgit v1.2.3


From 84d8fab6f1a049bb502c370c39fc3b44182ef24c Mon Sep 17 00:00:00 2001
From: Christian Vogeley <christian.vogeley@hotmail.de>
Date: Mon, 23 Dec 2013 22:29:35 +0100
Subject: Show expire date in post tooltip

---
 view/tpl/conv_item.tpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl
index fb36f5dca..4108108b2 100755
--- a/view/tpl/conv_item.tpl
+++ b/view/tpl/conv_item.tpl
@@ -39,7 +39,7 @@
 		<div class="wall-item-author">
 				<a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-name-link"><span class="wall-item-name{{$item.sparkle}}" id="wall-item-name-{{$item.id}}" >{{$item.name}}</span></a>{{if $item.owner_url}} {{$item.via}} <a href="{{$item.owner_url}}" title="{{$item.olinktitle}}" class="wall-item-name-link"><span class="wall-item-name{{$item.osparkle}}" id="wall-item-ownername-{{$item.id}}">{{$item.owner_name}}</span></a>{{/if}}<br />
 
-				<div class="wall-item-ago"  id="wall-item-ago-{{$item.id}}">{{if $item.verified}}<i class="icon-ok" title="{{$item.verified}}"></i>&nbsp;{{/if}}<span class="autotime" title="{{$item.isotime}}">{{$item.localtime}}{{if $item.editedtime}} {{$item.editedtime}}{{/if}}</span>{{if $item.app}}<span class="item.app">{{$item.str_app}}</span>{{/if}}</div>
+				<div class="wall-item-ago"  id="wall-item-ago-{{$item.id}}">{{if $item.verified}}<i class="icon-ok" title="{{$item.verified}}"></i>&nbsp;{{/if}}<span class="autotime" title="{{$item.isotime}}">{{$item.localtime}}{{if $item.editedtime}} {{$item.editedtime}}{{/if}}{{if $item.expiretime}} {{$item.expiretime}}{{/if}}</span>{{if $item.app}}<span class="item.app">{{$item.str_app}}</span>{{/if}}</div>
 		</div>			
 		<div class="wall-item-content" id="wall-item-content-{{$item.id}}" >
 			<div class="wall-item-title" id="wall-item-title-{{$item.id}}">{{$item.title}}</div>
-- 
cgit v1.2.3


From b08d4cc1fe2b8dd45de7546f05cf9a9601aeca03 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Mon, 23 Dec 2013 17:24:25 -0800
Subject: first cut at a directory popup. It's a bit annoying at the moment, so
 we'll have to make it less so. Also had second thoughts about the project
 homepage changes made yesterday. Just because a bunch of Reddit trolls can't
 get social networking out of their brain long enough to explore other
 technologies or even read the project page doesn't mean we should pander to
 them and explain how or why we either are or aren't a social network.

---
 view/css/conversation.css   |  2 ++
 view/js/mod_directory.js    |  8 ++++++++
 view/tpl/direntry.tpl       |  2 +-
 view/tpl/direntry_large.tpl | 16 ++++++++++++++++
 view/tpl/jot.tpl            |  2 +-
 5 files changed, 28 insertions(+), 2 deletions(-)
 create mode 100644 view/js/mod_directory.js
 create mode 100755 view/tpl/direntry_large.tpl

(limited to 'view')

diff --git a/view/css/conversation.css b/view/css/conversation.css
index 8125b6278..493ce9cd5 100644
--- a/view/css/conversation.css
+++ b/view/css/conversation.css
@@ -55,6 +55,8 @@
 #profile-expires, 
 #profile-expires, 
 #jot-perms-icon,
+#jot-preview-link,
+#profile-encrypt,
 .hover, .focus {
 	cursor: pointer;
 }
diff --git a/view/js/mod_directory.js b/view/js/mod_directory.js
new file mode 100644
index 000000000..96a38a109
--- /dev/null
+++ b/view/js/mod_directory.js
@@ -0,0 +1,8 @@
+function dirdetails(hash) {
+
+	$.get('dirprofile' + '?f=&hash=' + hash, function( data ) {
+		$.colorbox({ html: data });
+	});
+
+}
+
diff --git a/view/tpl/direntry.tpl b/view/tpl/direntry.tpl
index 35bbbe0fd..ae2291d01 100755
--- a/view/tpl/direntry.tpl
+++ b/view/tpl/direntry.tpl
@@ -7,7 +7,7 @@
 </div>
 </div>
 
-<div class="contact-name" id="directory-name-{{$entry.id}}">{{$entry.name}}</div>
+<div class="contact-name" id="directory-name-{{$entry.id}}"  ><span onmouseover="dirdetails('{{$entry.hash}}');" class="fakelink" >{{$entry.name}}</span></div>
 {{if $entry.connect}}
 <div class="directory-connect"><a href="{{$entry.connect}}">{{$entry.conn_label}}</a></div>
 {{/if}}
diff --git a/view/tpl/direntry_large.tpl b/view/tpl/direntry_large.tpl
new file mode 100755
index 000000000..cf45d8f48
--- /dev/null
+++ b/view/tpl/direntry_large.tpl
@@ -0,0 +1,16 @@
+<div class="directory-item lframe" id="directory-item-{{$id}}" >
+<div class="generic-content-wrapper">
+
+<div class="contact-photo-wrapper" id="directory-photo-wrapper-{{$id}}" >
+<div class="contact-photo" id="directory-photo-{{$id}}" >
+<a href="{{$profile_link}}" class="directory-profile-link" id="directory-profile-link-{{$id}}" ><img class="directory-photo-img" src="{{$photo}}" alt="{{$alttext}}" title="{{$alttext}}" /></a>
+</div>
+</div>
+
+<div class="contact-name" id="directory-name-{{$id}}"  >{{$name}}</div>
+{{if $entry.connect}}
+<div class="directory-connect"><a href="{{$connect}}">{{$conn_label}}</a></div>
+{{/if}}
+<div class="contact-details">{{$details}}</div>
+</div>
+</div>
diff --git a/view/tpl/jot.tpl b/view/tpl/jot.tpl
index 9038155be..e1e1e3080 100755
--- a/view/tpl/jot.tpl
+++ b/view/tpl/jot.tpl
@@ -70,7 +70,7 @@
 	</div>
 	{{/if}}
 
-	{{if $preview}}<span onclick="preview_post();" id="jot-preview-link" class="fakelink"><i class="icon-eye-open jot-icons" title="{{$preview}}"></i></span>{{/if}}
+	{{if $preview}}<span onclick="preview_post();" id="jot-preview-link"><i class="icon-eye-open jot-icons" title="{{$preview}}"></i></span>{{/if}}
 
 
 	<div id="profile-jot-perms-end"></div>
-- 
cgit v1.2.3


From 766454a607425d74d90fe0125fcadff5c80a2c58 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Mon, 23 Dec 2013 18:59:49 -0800
Subject: first thing to make it less annoying is to only popup if you click.
 Will improve on it later - but this gives us something we can test to improve
 the popup contents.

---
 view/tpl/direntry.tpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/tpl/direntry.tpl b/view/tpl/direntry.tpl
index ae2291d01..e40504c8f 100755
--- a/view/tpl/direntry.tpl
+++ b/view/tpl/direntry.tpl
@@ -7,7 +7,7 @@
 </div>
 </div>
 
-<div class="contact-name" id="directory-name-{{$entry.id}}"  ><span onmouseover="dirdetails('{{$entry.hash}}');" class="fakelink" >{{$entry.name}}</span></div>
+<div class="contact-name" id="directory-name-{{$entry.id}}"  ><span onclick="dirdetails('{{$entry.hash}}');" class="fakelink" >{{$entry.name}}</span></div>
 {{if $entry.connect}}
 <div class="directory-connect"><a href="{{$entry.connect}}">{{$entry.conn_label}}</a></div>
 {{/if}}
-- 
cgit v1.2.3


From 8194ade8868bb57180d49a86216fc6fd680b4e79 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Mon, 23 Dec 2013 19:44:23 -0800
Subject: improve the directory popup a bit

---
 view/tpl/direntry_large.tpl | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/tpl/direntry_large.tpl b/view/tpl/direntry_large.tpl
index cf45d8f48..605abb9b3 100755
--- a/view/tpl/direntry_large.tpl
+++ b/view/tpl/direntry_large.tpl
@@ -8,9 +8,18 @@
 </div>
 
 <div class="contact-name" id="directory-name-{{$id}}"  >{{$name}}</div>
-{{if $entry.connect}}
+{{if $connect}}
 <div class="directory-connect"><a href="{{$connect}}">{{$conn_label}}</a></div>
 {{/if}}
 <div class="contact-details">{{$details}}</div>
 </div>
+{{if $marital}}
+<div class="directory-marital">{{$marital}} </div>
+{{/if}}
+{{if $sexual}}
+<div class="directory-sexual">{{$sexual}} </div>
+{{/if}}
+{{if $kw}}
+<div class="directory-keywords">{{$kw}} {{$keywords}}</div>
+{{/if}}
 </div>
-- 
cgit v1.2.3


From 4e3a2c5f28690158d9cf3c282f9d14736b5b0550 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Mon, 23 Dec 2013 19:51:51 -0800
Subject: make sure resize fires

---
 view/js/mod_directory.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/js/mod_directory.js b/view/js/mod_directory.js
index 96a38a109..29caa8d55 100644
--- a/view/js/mod_directory.js
+++ b/view/js/mod_directory.js
@@ -1,7 +1,8 @@
 function dirdetails(hash) {
 
 	$.get('dirprofile' + '?f=&hash=' + hash, function( data ) {
-		$.colorbox({ html: data });
+		$.colorbox({ maxWidth: '75%', maxHeight: '75%', html: data });
+		$.colorbox.resize();
 	});
 
 }
-- 
cgit v1.2.3


From 1c5fe5a1ac252058c81d44409841441711f2c6b1 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Mon, 23 Dec 2013 20:04:00 -0800
Subject: set the height so colorbox can set its size correctly

---
 view/js/mod_directory.js    | 3 +--
 view/tpl/direntry_large.tpl | 2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)

(limited to 'view')

diff --git a/view/js/mod_directory.js b/view/js/mod_directory.js
index 29caa8d55..96a38a109 100644
--- a/view/js/mod_directory.js
+++ b/view/js/mod_directory.js
@@ -1,8 +1,7 @@
 function dirdetails(hash) {
 
 	$.get('dirprofile' + '?f=&hash=' + hash, function( data ) {
-		$.colorbox({ maxWidth: '75%', maxHeight: '75%', html: data });
-		$.colorbox.resize();
+		$.colorbox({ html: data });
 	});
 
 }
diff --git a/view/tpl/direntry_large.tpl b/view/tpl/direntry_large.tpl
index 605abb9b3..58c9d5404 100755
--- a/view/tpl/direntry_large.tpl
+++ b/view/tpl/direntry_large.tpl
@@ -3,7 +3,7 @@
 
 <div class="contact-photo-wrapper" id="directory-photo-wrapper-{{$id}}" >
 <div class="contact-photo" id="directory-photo-{{$id}}" >
-<a href="{{$profile_link}}" class="directory-profile-link" id="directory-profile-link-{{$id}}" ><img class="directory-photo-img" src="{{$photo}}" alt="{{$alttext}}" title="{{$alttext}}" /></a>
+<a href="{{$profile_link}}" class="directory-profile-link" id="directory-profile-link-{{$id}}" ><img class="directory-photo-img" height="175" width="175" src="{{$photo}}" alt="{{$alttext}}" title="{{$alttext}}" /></a>
 </div>
 </div>
 
-- 
cgit v1.2.3


From 80879369e7f11a5ffd69e34e9797db47f76bfc24 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Mon, 23 Dec 2013 20:18:04 -0800
Subject: get around size limit

---
 view/tpl/direntry_large.tpl | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'view')

diff --git a/view/tpl/direntry_large.tpl b/view/tpl/direntry_large.tpl
index 58c9d5404..c71dd0eb9 100755
--- a/view/tpl/direntry_large.tpl
+++ b/view/tpl/direntry_large.tpl
@@ -1,9 +1,9 @@
-<div class="directory-item lframe" id="directory-item-{{$id}}" >
+<div class="directory-popup-item lframe" id="directory-item-{{$id}}" >
 <div class="generic-content-wrapper">
 
 <div class="contact-photo-wrapper" id="directory-photo-wrapper-{{$id}}" >
 <div class="contact-photo" id="directory-photo-{{$id}}" >
-<a href="{{$profile_link}}" class="directory-profile-link" id="directory-profile-link-{{$id}}" ><img class="directory-photo-img" height="175" width="175" src="{{$photo}}" alt="{{$alttext}}" title="{{$alttext}}" /></a>
+<a href="{{$profile_link}}" class="directory-profile-link" id="directory-profile-link-{{$id}}" ><img class="directory-photo-img" style="height:175px; width:175px;" src="{{$photo}}" alt="{{$alttext}}" title="{{$alttext}}" /></a>
 </div>
 </div>
 
@@ -12,7 +12,6 @@
 <div class="directory-connect"><a href="{{$connect}}">{{$conn_label}}</a></div>
 {{/if}}
 <div class="contact-details">{{$details}}</div>
-</div>
 {{if $marital}}
 <div class="directory-marital">{{$marital}} </div>
 {{/if}}
@@ -23,3 +22,4 @@
 <div class="directory-keywords">{{$kw}} {{$keywords}}</div>
 {{/if}}
 </div>
+</div>
-- 
cgit v1.2.3


From b1ade138ff7fc47f2b70fb3fbf130127140b5271 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Wed, 25 Dec 2013 01:05:46 -0800
Subject: use colorbox for single photo viewing (replacing prettyPhoto, which
 may have license incompatibilities). Also set maximum size of a directory
 popup and let it scroll after that in case somebody set their profile
 keywords to the content of Webster's dictionary.

---
 view/js/mod_directory.js | 2 +-
 view/tpl/photo_view.tpl  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

(limited to 'view')

diff --git a/view/js/mod_directory.js b/view/js/mod_directory.js
index 96a38a109..291734b4f 100644
--- a/view/js/mod_directory.js
+++ b/view/js/mod_directory.js
@@ -1,7 +1,7 @@
 function dirdetails(hash) {
 
 	$.get('dirprofile' + '?f=&hash=' + hash, function( data ) {
-		$.colorbox({ html: data });
+		$.colorbox({ maxWidth: "50%", maxHeight: "75%", html: data });
 	});
 
 }
diff --git a/view/tpl/photo_view.tpl b/view/tpl/photo_view.tpl
index cdaae67e4..c3b697776 100755
--- a/view/tpl/photo_view.tpl
+++ b/view/tpl/photo_view.tpl
@@ -11,7 +11,7 @@
 </div>
 
 {{if $prevlink}}<div id="photo-prev-link"><a href="{{$prevlink.0}}"><i class="icon-backward photo-icons"></i></div>{{/if}}
-<div id="photo-photo"><a href="{{$photo.href}}" title="{{$photo.title}}" rel="prettyPhoto"><img src="{{$photo.src}}" /></a></div>
+<div id="photo-photo"><a href="{{$photo.href}}" title="{{$photo.title}}" onclick="$.colorbox({href: '{{$photo.href}}'}); return false;" ><img src="{{$photo.src}}" /></a></div>
 {{if $nextlink}}<div id="photo-next-link"><a href="{{$nextlink.0}}"><i class="icon-forward photo-icons"></i></a></div>{{/if}}
 <div id="photo-photo-end"></div>
 <div id="photo-caption">{{$desc}}</div>
-- 
cgit v1.2.3


From fe00e9b2615dbc06ee0db82ca2c4334baa64e258 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Wed, 25 Dec 2013 01:57:04 -0800
Subject: extend the directory profiles a bit more

---
 view/tpl/direntry_large.tpl | 9 +++++++++
 1 file changed, 9 insertions(+)

(limited to 'view')

diff --git a/view/tpl/direntry_large.tpl b/view/tpl/direntry_large.tpl
index c71dd0eb9..a1800c994 100755
--- a/view/tpl/direntry_large.tpl
+++ b/view/tpl/direntry_large.tpl
@@ -18,6 +18,15 @@
 {{if $sexual}}
 <div class="directory-sexual">{{$sexual}} </div>
 {{/if}}
+{{if $homepage}}
+<div class="directory-homepage">{{$homepage}} </div>
+{{/if}}
+{{if $hometown}}
+<div class="directory-hometown">{{$hometown}} </div>
+{{/if}}
+{{if $about}}
+<div class="directory-about">{{$about}} </div>
+{{/if}}
 {{if $kw}}
 <div class="directory-keywords">{{$kw}} {{$keywords}}</div>
 {{/if}}
-- 
cgit v1.2.3


From 66600ed2f855f11af256abfd624eb771f3352c66 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Wed, 25 Dec 2013 04:06:26 -0800
Subject: try again

---
 view/tpl/oembed_video.tpl | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'view')

diff --git a/view/tpl/oembed_video.tpl b/view/tpl/oembed_video.tpl
index 4ad75a82e..b0cfed2e5 100755
--- a/view/tpl/oembed_video.tpl
+++ b/view/tpl/oembed_video.tpl
@@ -1,4 +1,4 @@
-<a href='{{$embedurl}}' onclick='this.innerHTML=Base64.decode("{{$escapedhtml}}"); return false;' style='float:left; margin: 1em; position: relative;'>
-	<img width='{{$tw}}' height='{{$th}}' src='{{$turl}}' >
-	<div style='position: absolute; top: 0px; left: 0px; width: {{$twpx}}; height: {{$thpx}}; background: url({{$baseurl}}/images/icons/48/play.png) no-repeat center center;'></div>
+<a href="{{$embedurl}}" onclick="this.innerHTML=Base64.decode('{{$escapedhtml}}'); return false;" style="float:left; margin: 1em; position: relative;">
+	<img width="{{$tw}}" height="{{$th}}" src="{{$turl}}" />
+	<div style="position: absolute; top: 0px; left: 0px; width: {{$twpx}}; height: {{$thpx}}; background: url({{$baseurl}}/images/icons/48/play.png) no-repeat center center;"></div>
 </a>
-- 
cgit v1.2.3


From eda7c24c4ef45c88287ee6580af5d373c3676da9 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Wed, 25 Dec 2013 16:53:59 -0800
Subject: improve the register text until the new register page is finished

---
 view/css/mod_register.css |  5 +++++
 view/tpl/register.tpl     | 10 ++++++++--
 2 files changed, 13 insertions(+), 2 deletions(-)

(limited to 'view')

diff --git a/view/css/mod_register.css b/view/css/mod_register.css
index aca6ee002..870fb4634 100644
--- a/view/css/mod_register.css
+++ b/view/css/mod_register.css
@@ -10,6 +10,11 @@ h2 {
 	margin-top: 5%;
 }
 
+#register-desc, #register-text, #register-sites {
+	font-weight: bold;
+	margin-bottom: 15px;
+}
+
 .register-label {
 	float: left;
 	width: 275px;
diff --git a/view/tpl/register.tpl b/view/tpl/register.tpl
index 48c1ba525..6cec036fc 100755
--- a/view/tpl/register.tpl
+++ b/view/tpl/register.tpl
@@ -2,8 +2,14 @@
 
 <form action="register" method="post" id="register-form">
 
-{{if $registertext}}
-<div id="register-desc" class="descriptive-paragraph">{{$registertext}}</div>
+
+
+{{if $reg_is}}
+<div id="register-desc" class="descriptive-paragraph">{{$reg_is}}
+{{/if}}
+{{if $registertext}}<div id="register-text" class="descriptive-paragraph">{{$registertext}}</div>
+{{/if}}
+{{if $other_sites}}<div id="register-sites" class="descriptive-paragraph">{{$other_sites}}</div>
 {{/if}}
 
 {{if $invitations}}
-- 
cgit v1.2.3


From 1430db5ea842cf280413c846eba65036c0bcabc7 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Wed, 25 Dec 2013 16:57:48 -0800
Subject: and add a border for delineation

---
 view/css/mod_register.css | 2 ++
 1 file changed, 2 insertions(+)

(limited to 'view')

diff --git a/view/css/mod_register.css b/view/css/mod_register.css
index 870fb4634..b662610ae 100644
--- a/view/css/mod_register.css
+++ b/view/css/mod_register.css
@@ -13,6 +13,8 @@ h2 {
 #register-desc, #register-text, #register-sites {
 	font-weight: bold;
 	margin-bottom: 15px;
+	padding: 8px;
+	border: 1px solid #ccc;
 }
 
 .register-label {
-- 
cgit v1.2.3


From b7686b2a50f15143a3c5ecb16da023d81ac660cd Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Wed, 25 Dec 2013 16:58:59 -0800
Subject: missing end div

---
 view/tpl/register.tpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/tpl/register.tpl b/view/tpl/register.tpl
index 6cec036fc..916a946d3 100755
--- a/view/tpl/register.tpl
+++ b/view/tpl/register.tpl
@@ -5,7 +5,7 @@
 
 
 {{if $reg_is}}
-<div id="register-desc" class="descriptive-paragraph">{{$reg_is}}
+<div id="register-desc" class="descriptive-paragraph">{{$reg_is}}</div>
 {{/if}}
 {{if $registertext}}<div id="register-text" class="descriptive-paragraph">{{$registertext}}</div>
 {{/if}}
-- 
cgit v1.2.3


From c59688553c6f681fe7a11479b69dce8c3cd308dc Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Thu, 26 Dec 2013 13:08:16 -0800
Subject: remove prettyphoto from core - this will affect the enhanced photo
 albums feature on the short term which has been disabled until we figure out
 how to make the setting per-theme instead of a core option. The library is
 still available in core (library/prettyphoto) currently but needs to be moved
 to theme js and loaded/accessed from there [for themes which use it]. Then
 the library will be removed. It appears that other lightboxes commonly use
 rel= to group photo albums. So we may provide a generic rel= tag in photo
 album templates so that the choice of lightbox or album viewer is not only a
 theme option but could also be accomplished with plugins.

---
 view/tpl/photo_album.tpl | 1 -
 view/tpl/photo_view.tpl  | 2 --
 view/tpl/prettyphoto.tpl | 6 ------
 view/tpl/webpagelist.tpl | 4 +---
 4 files changed, 1 insertion(+), 12 deletions(-)
 delete mode 100644 view/tpl/prettyphoto.tpl

(limited to 'view')

diff --git a/view/tpl/photo_album.tpl b/view/tpl/photo_album.tpl
index c170d47a3..a63bff78c 100755
--- a/view/tpl/photo_album.tpl
+++ b/view/tpl/photo_album.tpl
@@ -1,4 +1,3 @@
-{{include file="prettyphoto.tpl"}}
 <div class="photo-album-image-wrapper{{$twist}}" id="photo-album-image-wrapper-{{$id}}">
 	<a href="{{$photolink}}" class="photo-album-photo-link" id="photo-album-photo-link-{{$id}}" title="{{$phototitle}}" rel="{{$rel}}">
 		<img src="{{$imgsrc}}" alt="{{$imgalt}}" title="{{$phototitle}}" class="photo-album-photo lframe resize" id="photo-album-photo-{{$id}}" />
diff --git a/view/tpl/photo_view.tpl b/view/tpl/photo_view.tpl
index c3b697776..e56fd5b57 100755
--- a/view/tpl/photo_view.tpl
+++ b/view/tpl/photo_view.tpl
@@ -1,5 +1,3 @@
-{{include file="prettyphoto.tpl"}}
-
 <div id="live-display"></div>
 <h3><a href="{{$album.0}}">{{$album.1}}</a></h3>
 
diff --git a/view/tpl/prettyphoto.tpl b/view/tpl/prettyphoto.tpl
deleted file mode 100644
index 6d047e620..000000000
--- a/view/tpl/prettyphoto.tpl
+++ /dev/null
@@ -1,6 +0,0 @@
-<script type="text/javascript" charset="utf-8">
-  $(document).ready(function(){
-    $("a[rel^='prettyPhoto']").prettyPhoto();
-  });
-</script>
-
diff --git a/view/tpl/webpagelist.tpl b/view/tpl/webpagelist.tpl
index 437e93348..c19836a28 100644
--- a/view/tpl/webpagelist.tpl
+++ b/view/tpl/webpagelist.tpl
@@ -1,5 +1,3 @@
-{{include file="prettyphoto.tpl"}}
-
 {{if $pages}}
 
 	   <div id="pagelist-content-wrapper" class="generic-content-wrapper">
@@ -8,7 +6,7 @@
 					<div class="page-list-item">
 					{{if $edit}}<a href="{{$baseurl}}/{{$item.url}}" title="{{$edit}}"><i class="icon-pencil design-icons design-edit-icon"></i></a> {{/if}}
 					{{if $view}}<a href="page/{{$channel}}/{{$item.title}}" title="{{$view}}"><i class="icon-external-link design-icons design-view-icon"></i></a> {{/if}}
-					{{if $preview}}<a href="page/{{$channel}}/{{$item.title}}?iframe=true&width=80%&height=80%" rel="xprettyPhoto[iframesx]" title="{{$preview}}"><i class="icon-eye-open design-icons design-preview-icon"></i></a> {{/if}}
+					{{if $preview}}<a href="page/{{$channel}}/{{$item.title}}?iframe=true&width=80%&height=80%" title="{{$preview}}" class="webpage-preview" ><i class="icon-eye-open design-icons design-preview-icon"></i></a> {{/if}}
 					{{$item.title}}
 					</div>
 				{{/foreach}}
-- 
cgit v1.2.3


From 22f614feba8502a5fd040cc34dab2baa3087da3c Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sat, 28 Dec 2013 17:04:23 -0800
Subject: a bit more backend work on things

---
 view/tpl/list_things.tpl | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 view/tpl/list_things.tpl

(limited to 'view')

diff --git a/view/tpl/list_things.tpl b/view/tpl/list_things.tpl
new file mode 100644
index 000000000..fb8935d82
--- /dev/null
+++ b/view/tpl/list_things.tpl
@@ -0,0 +1,13 @@
+{{if $things}}
+{{foreach $things as $key => $items}}
+<b>{{$items.profile}} {{$key}}</b>
+<ul class="profile-thing-list">
+{{foreach $items as $item}}
+<li>{{if $item.img}}<img src="{{$item.img}}" width="100" height="100" alt="{{$item.term}}" />{{/if}}
+<a href="{{$item.url}}" >{{$item.term}}</a>
+</li>
+{{/foreach}}
+</ul>
+<div class="clear"></div>
+{{/foreach}}
+{{/if}}
-- 
cgit v1.2.3


From f36be066af66e4e21913de3e8b4da0c7a05349b1 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sun, 29 Dec 2013 00:51:27 -0800
Subject: display_thing: it ain't much, but it's implemented.

---
 view/tpl/show_thing.tpl | 8 ++++++++
 1 file changed, 8 insertions(+)
 create mode 100644 view/tpl/show_thing.tpl

(limited to 'view')

diff --git a/view/tpl/show_thing.tpl b/view/tpl/show_thing.tpl
new file mode 100644
index 000000000..d37c9bb1a
--- /dev/null
+++ b/view/tpl/show_thing.tpl
@@ -0,0 +1,8 @@
+<h2>{{$header}}</h2>
+{{if $thing}}
+<div class="thing-show">
+{{if $thing.imgurl}}<img src="{{$thing.imgurl}}" width="175" height="175" alt="{{$thing.term}}" />{{/if}}
+<a href="{{$thing.url}}" >{{$thing.term}}</a>
+</div>
+{{/if}}
+
-- 
cgit v1.2.3


From 0dd7d936744cccfac4228cabecddc59ce05eb26c Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Mon, 30 Dec 2013 04:25:55 -0800
Subject: basic edit and delete for things

---
 view/theme/redbasic/css/style.css |  5 +++++
 view/tpl/show_thing.tpl           |  8 ++++++++
 view/tpl/thing_edit.tpl           | 29 +++++++++++++++++++++++++++++
 3 files changed, 42 insertions(+)
 create mode 100644 view/tpl/thing_edit.tpl

(limited to 'view')

diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 5f532a861..397148c05 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -2445,3 +2445,8 @@ img.mail-list-sender-photo {
 #sidebar-group-list ul {
 	list-style-type: none;
 }
+
+.profile-thing-list img, .thing-show img, .thing-edit-links a {
+	margin-top: 8px;
+	margin-right: 15px;
+}
diff --git a/view/tpl/show_thing.tpl b/view/tpl/show_thing.tpl
index d37c9bb1a..2a8c06076 100644
--- a/view/tpl/show_thing.tpl
+++ b/view/tpl/show_thing.tpl
@@ -4,5 +4,13 @@
 {{if $thing.imgurl}}<img src="{{$thing.imgurl}}" width="175" height="175" alt="{{$thing.term}}" />{{/if}}
 <a href="{{$thing.url}}" >{{$thing.term}}</a>
 </div>
+{{if $canedit}}
+<div class="thing-edit-links">
+<a href="thing/edit/{{$thing.term_hash}}" title="{{$edit}}"><i class="icon-pencil thing-edit-icon"></i></a>
+<a href="thing/drop/{{$thing.term_hash}}" onclick="return confirmDelete();" title="{{$delete}}" ><i class="icon-remove drop-icons"></i></a>
+</div>
+<div class="thing-edit-links-end"></div>
+{{/if}}
+
 {{/if}}
 
diff --git a/view/tpl/thing_edit.tpl b/view/tpl/thing_edit.tpl
new file mode 100644
index 000000000..8379c15ae
--- /dev/null
+++ b/view/tpl/thing_edit.tpl
@@ -0,0 +1,29 @@
+<h2>{{$thing_hdr}}</h2>
+<form action="thing" method="post" >
+<input type="hidden" name="term_hash" value="{{$thing_hash}}" />
+
+{{if $multiprof }}
+<div class="thing-profile-label">{{$profile_lbl}}</div>
+
+<div class="thing-profile">{{$profile_select}}</div>
+{{/if}}
+
+<div class="thing-verb-label">{{$verb_lbl}}</div>
+
+<div class="thing-verb">{{$verb_select}}</div>
+
+
+<label class="thing-label" for="thing-term">{{$thing_lbl}}</label>
+<input type="text" class="thing-input" id="thing-term" name="term" value="{{$thething}}" />
+<div class="thing-field-end"></div>
+<label class="thing-label" for="thing-url">{{$url_lbl}}</label>
+<input type="text" class="thing-input" id="thing-url" name="url" value="{{$theurl}}" />
+<div class="thing-field-end"></div>
+<label class="thing-label" for="thing-img">{{$img_lbl}}</label>
+<input type="text" class="thing-input" id="thing-img" name="img" value="{{$imgurl}}" />
+<div class="thing-field-end"></div>
+
+<div class="thing-end"></div> 
+
+<input type="submit" class="thing-submit" name="submit" value="{{$submit}}" />
+</form>
-- 
cgit v1.2.3


From 4c541bb680823b7488a2614b5ef0231ad38b42c8 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Mon, 30 Dec 2013 15:41:42 -0800
Subject: expose profile things in the UI

---
 view/css/mod_profiles.css           | 10 ++++++++++
 view/theme/redbasic/css/style.css   |  9 ---------
 view/tpl/profile_listing_header.tpl |  5 ++++-
 3 files changed, 14 insertions(+), 10 deletions(-)

(limited to 'view')

diff --git a/view/css/mod_profiles.css b/view/css/mod_profiles.css
index 6d935ee4d..5f930248f 100644
--- a/view/css/mod_profiles.css
+++ b/view/css/mod_profiles.css
@@ -13,6 +13,16 @@
 }
 
 
+#profile-listing-desc, #profile-stuff-link {
+	margin-left: 30px;
+}
+
+#profile-listing-new-link-wrapper {
+	margin-left: 30px;
+	margin-bottom: 30px;
+}
+
+
 #profile-edit-links-end {
 	clear: both;
 	margin-bottom: 15px;
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 397148c05..325685607 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -582,15 +582,6 @@ footer {
 .thread-end-wrapper {
     margin-left: 50px;
 }
-
-#profile-listing-desc {
-	margin-left: 30px;
-}
-
-#profile-listing-new-link-wrapper {
-	margin-left: 30px;
-	margin-bottom: 30px;
-}
 .profile-listing-photo-wrapper {
 	float: left;
 }
diff --git a/view/tpl/profile_listing_header.tpl b/view/tpl/profile_listing_header.tpl
index b771a1ea2..856d689f1 100755
--- a/view/tpl/profile_listing_header.tpl
+++ b/view/tpl/profile_listing_header.tpl
@@ -2,7 +2,10 @@
 <p id="profile-listing-desc" class="button" >
 <a href="profile_photo" >{{$chg_photo}}</a>
 </p>
-<div id="profile-listing-new-link-wrapper" class="button" >
+<p id="profile-stuff-link" class="button">
+<a href="thing" title="{{$stuff_desc}}">{{$addstuff}}</a>
+</p>
+<p id="profile-listing-new-link-wrapper" class="button" >
 <a href="{{$cr_new_link}}" id="profile-listing-new-link" title="{{$cr_new}}" >{{$cr_new}}</a>
 </div>
 
-- 
cgit v1.2.3


From aafc40069bf0955d935adb4632650c7c990063a7 Mon Sep 17 00:00:00 2001
From: Christian Vogeley <christian.vogeley@hotmail.de>
Date: Wed, 1 Jan 2014 16:18:39 +0100
Subject: Confirm webpage deletion prompt

---
 view/tpl/jot-header.tpl | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

(limited to 'view')

diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl
index 09d035979..75239c179 100755
--- a/view/tpl/jot-header.tpl
+++ b/view/tpl/jot-header.tpl
@@ -306,16 +306,15 @@ function enableOnUser(){
 
 </script>
 
-<!-- 
 <script>
-$( document ).on( "click", ".wall-item-delete-link", function(e) {
+$( document ).on( "click", ".wall-item-delete-link,.page-delete-link", function(e) {
 	var link = $(this).attr("href"); // "get" the intended link in a var
     e.preventDefault();
-  	bootbox.confirm("<h4>Delete item?</h4>", function(result) {
+  	bootbox.confirm("<h4>{{$confirmdelete}}</h4>", function(result) {
     				if (result) {
       				document.location.href = link;}
       				});
     });
 </script>
- -->
+
 
-- 
cgit v1.2.3


From 0c85c9748096d625ae9baa29fb9aad48bab3a208 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sat, 4 Jan 2014 03:58:21 -0800
Subject: move js files from core

---
 view/js/acl.js                  |  270 +++++++++
 view/js/ajaxupload.js           |  720 +++++++++++++++++++++++
 view/js/crypto.js               |  291 ++++++++++
 view/js/fk.autocomplete.js      |  200 +++++++
 view/js/icon_translate.js       |   53 ++
 view/js/jquery-compat.js        |   71 +++
 view/js/jquery-migrate-1.1.1.js |  511 +++++++++++++++++
 view/js/jquery.htmlstream.js    |  157 +++++
 view/js/jquery.js               |    5 +
 view/js/jquery.spin.js          |   80 +++
 view/js/jquery.textinputs.js    |   20 +
 view/js/main.js                 | 1211 +++++++++++++++++++++++++++++++++++++++
 view/js/spin.js                 |  349 +++++++++++
 view/js/webtoolkit.base64.js    |  142 +++++
 view/php/theme_init.php         |   22 +-
 15 files changed, 4091 insertions(+), 11 deletions(-)
 create mode 100644 view/js/acl.js
 create mode 100644 view/js/ajaxupload.js
 create mode 100644 view/js/crypto.js
 create mode 100644 view/js/fk.autocomplete.js
 create mode 100644 view/js/icon_translate.js
 create mode 100644 view/js/jquery-compat.js
 create mode 100644 view/js/jquery-migrate-1.1.1.js
 create mode 100644 view/js/jquery.htmlstream.js
 create mode 100644 view/js/jquery.js
 create mode 100644 view/js/jquery.spin.js
 create mode 100644 view/js/jquery.textinputs.js
 create mode 100644 view/js/main.js
 create mode 100644 view/js/spin.js
 create mode 100644 view/js/webtoolkit.base64.js

(limited to 'view')

diff --git a/view/js/acl.js b/view/js/acl.js
new file mode 100644
index 000000000..906b28354
--- /dev/null
+++ b/view/js/acl.js
@@ -0,0 +1,270 @@
+function ACL(backend_url, preset){
+	that = this;
+	
+	that.url = backend_url;
+	
+	that.kp_timer = null;
+	
+	if (preset==undefined) preset = [];
+	that.allow_cid = (preset[0] || []);
+	that.allow_gid = (preset[1] || []);
+	that.deny_cid  = (preset[2] || []);
+	that.deny_gid  = (preset[3] || []);
+	that.group_uids = [];
+	that.nw = 4; //items per row. should be calulated from #acl-list.width
+	
+	that.list_content = $("#acl-list-content");
+	that.item_tpl = unescape($(".acl-list-item[rel=acl-template]").html());
+	that.showall = $("#acl-showall");
+
+	if (preset.length==0) that.showall.addClass("selected");
+	
+	/*events*/
+	that.showall.click(that.on_showall);
+	$(document).on('click','.acl-button-show',that.on_button_show);
+	$(document).on('click','.acl-button-hide',that.on_button_hide);
+	$("#acl-search").keypress(that.on_search);
+	$("#acl-wrapper").parents("form").submit(that.on_submit);
+	
+	/* startup! */
+	that.get(0,100);
+}
+
+ACL.prototype.on_submit = function(){
+	aclfileds = $("#acl-fields").html("");
+	$(that.allow_gid).each(function(i,v){
+		aclfileds.append("<input type='hidden' name='group_allow[]' value='"+v+"'>");
+	});
+	$(that.allow_cid).each(function(i,v){
+		aclfileds.append("<input type='hidden' name='contact_allow[]' value='"+v+"'>");
+	});
+	$(that.deny_gid).each(function(i,v){
+		aclfileds.append("<input type='hidden' name='group_deny[]' value='"+v+"'>");
+	});
+	$(that.deny_cid).each(function(i,v){
+		aclfileds.append("<input type='hidden' name='contact_deny[]' value='"+v+"'>");
+	});	
+}
+
+ACL.prototype.search = function(){
+	var srcstr = $("#acl-search").val();
+	that.list_content.html("");
+	that.get(0,100, srcstr);
+}
+
+ACL.prototype.on_search = function(event){
+	if (that.kp_timer) clearTimeout(that.kp_timer);
+	that.kp_timer = setTimeout( that.search, 1000);
+}
+
+ACL.prototype.on_showall = function(event){
+	event.preventDefault()
+	event.stopPropagation();
+	
+	if (that.showall.hasClass("selected")){
+		return false;
+	}
+	that.showall.addClass("selected");
+	
+	that.allow_cid = [];
+	that.allow_gid = [];
+	that.deny_cid  = [];
+	that.deny_gid  = [];
+	
+	that.update_view();
+	
+	return false;
+}
+
+ACL.prototype.on_button_show = function(event){
+	event.preventDefault()
+	event.stopImmediatePropagation()
+	event.stopPropagation();
+
+	/*that.showall.removeClass("selected");
+	$(this).siblings(".acl-button-hide").removeClass("selected");
+	$(this).toggleClass("selected");*/
+
+	that.set_allow($(this).parent().attr('id'));
+
+	return false;
+}
+ACL.prototype.on_button_hide = function(event){
+	event.preventDefault()
+	event.stopImmediatePropagation()
+	event.stopPropagation();
+
+	/*that.showall.removeClass("selected");
+	$(this).siblings(".acl-button-show").removeClass("selected");
+	$(this).toggleClass("selected");*/
+
+	that.set_deny($(this).parent().attr('id'));
+
+	return false;
+}
+
+ACL.prototype.set_allow = function(itemid){
+	type = itemid[0];
+	id 	 = itemid.substr(1);
+	switch(type){
+		case "g":
+			if (that.allow_gid.indexOf(id)<0){
+				that.allow_gid.push(id)
+			}else {
+				that.allow_gid.remove(id);
+			}
+			if (that.deny_gid.indexOf(id)>=0) that.deny_gid.remove(id);
+			break;
+		case "c":
+			if (that.allow_cid.indexOf(id)<0){
+				that.allow_cid.push(id)
+			} else {
+				that.allow_cid.remove(id);
+			}
+			if (that.deny_cid.indexOf(id)>=0) that.deny_cid.remove(id);			
+			break;
+	}
+	that.update_view();
+}
+
+ACL.prototype.set_deny = function(itemid){
+	type = itemid[0];
+	id 	 = itemid.substr(1);
+	switch(type){
+		case "g":
+			if (that.deny_gid.indexOf(id)<0){
+				that.deny_gid.push(id)
+			} else {
+				that.deny_gid.remove(id);
+			}
+			if (that.allow_gid.indexOf(id)>=0) that.allow_gid.remove(id);
+			break;
+		case "c":
+			if (that.deny_cid.indexOf(id)<0){
+				that.deny_cid.push(id)
+			} else {
+				that.deny_cid.remove(id);
+			}
+			if (that.allow_cid.indexOf(id)>=0) that.allow_cid.remove(id);
+			break;
+	}
+	that.update_view();
+}
+
+ACL.prototype.update_view = function(){
+	var jotpermslock;
+	var jotpermsunlock;
+	if (document.jotpermslock == null) {
+		jotpermslock = 'lock';
+	} else {
+		jotpermslock = document.jotpermslock;
+	}
+	if (document.jotpermsunlock == null) {
+		jotpermsunlock = 'unlock';
+	} else {
+		jotpermsunlock = document.jotpermsunlock;
+	}
+	if (that.allow_gid.length==0 && that.allow_cid.length==0 &&
+		that.deny_gid.length==0 && that.deny_cid.length==0){
+			that.showall.addClass("selected");
+			/* jot acl */
+				$('#jot-perms-icon').removeClass(jotpermslock).addClass(jotpermsunlock);
+				$('#jot-public').show();
+				$('.profile-jot-net input').attr('disabled', false);			
+				if(typeof editor != 'undefined' && editor != false) {
+					$('#profile-jot-desc').html(ispublic);
+				}
+			
+	} else {
+			that.showall.removeClass("selected");
+			/* jot acl */
+				$('#jot-perms-icon').removeClass(jotpermsunlock).addClass(jotpermslock);
+				$('#jot-public').hide();
+				$('.profile-jot-net input').attr('disabled', 'disabled');			
+				$('#profile-jot-desc').html('&nbsp;');
+	}
+	$("#acl-list-content .acl-list-item").each(function(){
+		$(this).removeClass("groupshow grouphide");
+	});
+	
+	$("#acl-list-content .acl-list-item").each(function(){
+		itemid = $(this).attr('id');
+		type = itemid[0];
+		id 	 = itemid.substr(1);
+		
+		btshow = $(this).children(".acl-button-show").removeClass("selected");
+		bthide = $(this).children(".acl-button-hide").removeClass("selected");	
+		
+		switch(type){
+			case "g":
+				var uclass = "";
+				if (that.allow_gid.indexOf(id)>=0){
+					btshow.addClass("selected");
+					bthide.removeClass("selected");
+					uclass="groupshow";
+				}
+				if (that.deny_gid.indexOf(id)>=0){
+					btshow.removeClass("selected");
+					bthide.addClass("selected");
+					uclass="grouphide";
+				}
+				
+				$(that.group_uids[id]).each(function(i,v) {
+					if(uclass == "grouphide")
+						$("#c"+v).removeClass("groupshow");
+					if(uclass != "") {
+						var cls = $("#c"+v).attr('class');
+						if( cls == undefined)
+							return true;
+						var hiding = cls.indexOf('grouphide');
+						if(hiding == -1)
+							$("#c"+v).addClass(uclass);
+					}
+				});
+				
+				break;
+			case "c":
+				if (that.allow_cid.indexOf(id)>=0){
+					btshow.addClass("selected");
+					bthide.removeClass("selected");
+				}
+				if (that.deny_cid.indexOf(id)>=0){
+					btshow.removeClass("selected");
+					bthide.addClass("selected");
+				}			
+		}
+		
+	});
+	
+}
+
+
+ACL.prototype.get = function(start,count, search){
+	var postdata = {
+		start:start,
+		count:count,
+		search:search,
+	}
+	
+	$.ajax({
+		type:'POST',
+		url: that.url,
+		data: postdata,
+		dataType: 'json',
+		success:that.populate
+	});
+}
+
+ACL.prototype.populate = function(data){
+	var height = Math.ceil(data.tot / that.nw) * 42;
+	that.list_content.height(height);
+	$(data.items).each(function(){
+		html = "<div class='acl-list-item {4} {5} {7}' title='{6}' id='{2}{3}'>"+that.item_tpl+"</div>";
+		html = html.format( this.photo, this.name, this.type, this.xid, '', this.network, this.link, this.taggable );
+		if (this.uids!=undefined) that.group_uids[this.id] = this.uids;
+		//console.log(html);
+		that.list_content.append(html);
+	});
+	that.update_view();
+}
+
diff --git a/view/js/ajaxupload.js b/view/js/ajaxupload.js
new file mode 100644
index 000000000..5719f30e0
--- /dev/null
+++ b/view/js/ajaxupload.js
@@ -0,0 +1,720 @@
+/**
+ * AJAX Upload ( http://valums.com/ajax-upload/ ) 
+ * Copyright (c) Andris Valums
+ * Licensed under the MIT license ( http://valums.com/mit-license/ )
+ * Thanks to Gary Haran, David Mark, Corey Burns and others for contributions. 
+ */
+
+(function () {
+    /* global window */
+    /* jslint browser: true, devel: true, undef: true, nomen: true, bitwise: true, regexp: true, newcap: true, immed: true */
+    
+    /**
+     * Wrapper for FireBug's console.log
+     */
+    function log(){
+        if (typeof(console) != 'undefined' && typeof(console.log) == 'function'){            
+            Array.prototype.unshift.call(arguments, '[Ajax Upload]');
+            console.log( Array.prototype.join.call(arguments, ' '));
+        }
+    } 
+
+    /**
+     * Attaches event to a dom element.
+     * @param {Element} el
+     * @param type event name
+     * @param fn callback This refers to the passed element
+     */
+    function addEvent(el, type, fn){
+        if (el.addEventListener) {
+            el.addEventListener(type, fn, false);
+        } else if (el.attachEvent) {
+            el.attachEvent('on' + type, function(){
+                fn.call(el);
+	        });
+	    } else {
+            throw new Error('not supported or DOM not loaded');
+        }
+    }   
+    
+    /**
+     * Attaches resize event to a window, limiting
+     * number of event fired. Fires only when encounteres
+     * delay of 100 after series of events.
+     * 
+     * Some browsers fire event multiple times when resizing
+     * http://www.quirksmode.org/dom/events/resize.html
+     * 
+     * @param fn callback This refers to the passed element
+     */
+    function addResizeEvent(fn){
+        var timeout;
+               
+	    addEvent(window, 'resize', function(){
+            if (timeout){
+                clearTimeout(timeout);
+            }
+            timeout = setTimeout(fn, 100);                        
+        });
+    }    
+    
+    // Get offset adding all offsets, slow fall-back method
+    var getOffsetSlow = function(el){
+        var top = 0, left = 0;
+        do {
+            top += el.offsetTop || 0;
+            left += el.offsetLeft || 0;
+            el = el.offsetParent;
+        } while (el);
+        
+        return {
+            left: left,
+            top: top
+        };
+    };
+
+     
+
+
+
+    // Needs more testing, will be rewriten for next version        
+    // getOffset function copied from jQuery lib (http://jquery.com/)
+    if (document.documentElement.getBoundingClientRect){
+        // Get Offset using getBoundingClientRect
+        // http://ejohn.org/blog/getboundingclientrect-is-awesome/
+        var getOffset = function(el){
+            var box = el.getBoundingClientRect();
+            var doc = el.ownerDocument;
+            var body = doc.body;
+            var docElem = doc.documentElement; // for ie 
+            var clientTop = docElem.clientTop || body.clientTop || 0;
+            var clientLeft = docElem.clientLeft || body.clientLeft || 0;
+             
+            // In Internet Explorer 7 getBoundingClientRect property is treated as physical,
+            // while others are logical. Make all logical, like in IE8.	
+            var zoom = 1;            
+            if (body.getBoundingClientRect) {
+                var bound = body.getBoundingClientRect();
+                zoom = (bound.right - bound.left) / body.clientWidth;
+            }
+
+		// some CSS layouts gives 0 width and/or bounding boxes
+		// in this case we fall back to the slow method
+            if (zoom == 0 || body.clientWidth == 0)
+                return getOffsetSlow(el);
+                         
+            if (zoom > 1) {
+                clientTop = 0;
+                clientLeft = 0;
+            }
+            
+            var top = box.top / zoom + (window.pageYOffset || docElem && docElem.scrollTop / zoom || body.scrollTop / zoom) - clientTop, left = box.left / zoom + (window.pageXOffset || docElem && docElem.scrollLeft / zoom || body.scrollLeft / zoom) - clientLeft;
+            
+            return {
+                top: top,
+                left: left
+            };
+        };        
+    } else {
+//        // Get offset adding all offsets 
+  //      var getOffset = function(el){
+    //        var top = 0, left = 0;
+      //      do {
+        //        top += el.offsetTop || 0;
+          //      left += el.offsetLeft || 0;
+            //    el = el.offsetParent;
+          //  } while (el);
+            
+          //  return {
+            //    left: left,
+              //  top: top
+           // };
+       // };
+		var getOffset = getOffsetSlowl
+    }
+    
+    /**
+     * Returns left, top, right and bottom properties describing the border-box,
+     * in pixels, with the top-left relative to the body
+     * @param {Element} el
+     * @return {Object} Contains left, top, right,bottom
+     */
+    function getBox(el){
+        var left, right, top, bottom;
+        var offset = getOffset(el);
+        left = offset.left;
+        top = offset.top;
+        
+        right = left + el.offsetWidth;
+        bottom = top + el.offsetHeight;
+        
+        return {
+            left: left,
+            right: right,
+            top: top,
+            bottom: bottom
+        };
+    }
+    
+    /**
+     * Helper that takes object literal
+     * and add all properties to element.style
+     * @param {Element} el
+     * @param {Object} styles
+     */
+    function addStyles(el, styles){
+        for (var name in styles) {
+            if (styles.hasOwnProperty(name)) {
+                el.style[name] = styles[name];
+            }
+        }
+    }
+        
+    /**
+     * Function places an absolutely positioned
+     * element on top of the specified element
+     * copying position and dimentions.
+     * @param {Element} from
+     * @param {Element} to
+     */    
+    function copyLayout(from, to){
+	    var box = getBox(from);
+        
+        addStyles(to, {
+	        position: 'absolute',                    
+	        left : box.left + 'px',
+	        top : box.top + 'px',
+	        width : from.offsetWidth + 'px',
+	        height : from.offsetHeight + 'px'
+	    });        
+	to.title = from.title;
+
+    }
+
+    /**
+    * Creates and returns element from html chunk
+    * Uses innerHTML to create an element
+    */
+    var toElement = (function(){
+        var div = document.createElement('div');
+        return function(html){
+            div.innerHTML = html;
+            var el = div.firstChild;
+            return div.removeChild(el);
+        };
+    })();
+            
+    /**
+     * Function generates unique id
+     * @return unique id 
+     */
+    var getUID = (function(){
+        var id = 0;
+        return function(){
+            return 'ValumsAjaxUpload' + id++;
+        };
+    })();        
+ 
+    /**
+     * Get file name from path
+     * @param {String} file path to file
+     * @return filename
+     */  
+    function fileFromPath(file){
+        return file.replace(/.*(\/|\\)/, "");
+    }
+    
+    /**
+     * Get file extension lowercase
+     * @param {String} file name
+     * @return file extenstion
+     */    
+    function getExt(file){
+        return (-1 !== file.indexOf('.')) ? file.replace(/.*[.]/, '') : '';
+    }
+
+    function hasClass(el, name){        
+        var re = new RegExp('\\b' + name + '\\b');        
+        return re.test(el.className);
+    }    
+    function addClass(el, name){
+        if ( ! hasClass(el, name)){   
+            el.className += ' ' + name;
+        }
+    }    
+    function removeClass(el, name){
+        var re = new RegExp('\\b' + name + '\\b');                
+        el.className = el.className.replace(re, '');        
+    }
+    
+    function removeNode(el){
+        el.parentNode.removeChild(el);
+    }
+
+    /**
+     * Easy styling and uploading
+     * @constructor
+     * @param button An element you want convert to 
+     * upload button. Tested dimentions up to 500x500px
+     * @param {Object} options See defaults below.
+     */
+    window.AjaxUpload = function(button, options){
+        this._settings = {
+            // Location of the server-side upload script
+            action: 'upload.php',
+            // File upload name
+            name: 'userfile',
+            // Additional data to send
+            data: {},
+            // Submit file as soon as it's selected
+            autoSubmit: true,
+            // The type of data that you're expecting back from the server.
+            // html and xml are detected automatically.
+            // Only useful when you are using json data as a response.
+            // Set to "json" in that case. 
+            responseType: false,
+            // Class applied to button when mouse is hovered
+            hoverClass: 'hover',
+            // Class applied to button when button is focused
+            focusClass: 'focus',
+            // Class applied to button when AU is disabled
+            disabledClass: 'disabled',            
+            // When user selects a file, useful with autoSubmit disabled
+            // You can return false to cancel upload			
+            onChange: function(file, extension){
+            },
+            // Callback to fire before file is uploaded
+            // You can return false to cancel upload
+            onSubmit: function(file, extension){
+            },
+            // Fired when file upload is completed
+            // WARNING! DO NOT USE "FALSE" STRING AS A RESPONSE!
+            onComplete: function(file, response){
+            }
+        };
+                        
+        // Merge the users options with our defaults
+        for (var i in options) {
+            if (options.hasOwnProperty(i)){
+                this._settings[i] = options[i];
+            }
+        }
+                
+        // button isn't necessary a dom element
+        if (button.jquery){
+            // jQuery object was passed
+            button = button[0];
+        } else if (typeof button == "string") {
+            if (/^#.*/.test(button)){
+                // If jQuery user passes #elementId don't break it					
+                button = button.slice(1);                
+            }
+            
+            button = document.getElementById(button);
+        }
+        
+        if ( ! button || button.nodeType !== 1){
+            throw new Error("Please make sure that you're passing a valid element"); 
+        }
+                
+        if ( button.nodeName.toUpperCase() == 'A'){
+            // disable link                       
+            addEvent(button, 'click', function(e){
+                if (e && e.preventDefault){
+                    e.preventDefault();
+                } else if (window.event){
+                    window.event.returnValue = false;
+                }
+            });
+        }
+                    
+        // DOM element
+        this._button = button;        
+        // DOM element                 
+        this._input = null;
+        // If disabled clicking on button won't do anything
+        this._disabled = false;
+        
+        // if the button was disabled before refresh if will remain
+        // disabled in FireFox, let's fix it
+        this.enable();        
+        
+        this._rerouteClicks();
+    };
+    
+    // assigning methods to our class
+    AjaxUpload.prototype = {
+        setData: function(data){
+            this._settings.data = data;
+        },
+        disable: function(){            
+            addClass(this._button, this._settings.disabledClass);
+            this._disabled = true;
+            
+            var nodeName = this._button.nodeName.toUpperCase();            
+            if (nodeName == 'INPUT' || nodeName == 'BUTTON'){
+                this._button.setAttribute('disabled', 'disabled');
+            }            
+            
+            // hide input
+            if (this._input){
+                // We use visibility instead of display to fix problem with Safari 4
+                // The problem is that the value of input doesn't change if it 
+                // has display none when user selects a file           
+                this._input.parentNode.style.visibility = 'hidden';
+            }
+        },
+        enable: function(){
+            removeClass(this._button, this._settings.disabledClass);
+            this._button.removeAttribute('disabled');
+            this._disabled = false;
+            
+        },
+        /**
+         * Creates invisible file input 
+         * that will hover above the button
+         * <div><input type='file' /></div>
+         */
+        _createInput: function(){ 
+            var self = this;
+                        
+            var input = document.createElement("input");
+            input.setAttribute('type', 'file');
+            input.setAttribute('name', this._settings.name);
+
+            addStyles(input, {
+                'position' : 'absolute',
+                // in Opera only 'browse' button
+                // is clickable and it is located at
+                // the right side of the input
+                'right' : 0,
+                'margin' : 0,
+                'padding' : 0,
+                'fontSize' : '480px',
+                // in Firefox if font-family is set to
+                // 'inherit' the input doesn't work
+                'fontFamily' : 'sans-serif',
+                'cursor' : 'pointer'
+            });            
+
+            var div = document.createElement("div");                        
+            addStyles(div, {
+                'display' : 'block',
+                'position' : 'absolute',
+                'overflow' : 'hidden',
+                'margin' : 0,
+                'padding' : 0,                
+                'opacity' : 0,
+                // Make sure browse button is in the right side
+                // in Internet Explorer
+                'direction' : 'ltr',
+                //Max zIndex supported by Opera 9.0-9.2
+                'zIndex': 2147483583,
+				'cursor' : 'pointer'
+
+            });
+            
+            // Make sure that element opacity exists.
+            // Otherwise use IE filter            
+            if ( div.style.opacity !== "0") {
+                if (typeof(div.filters) == 'undefined'){
+                    throw new Error('Opacity not supported by the browser');
+                }
+                div.style.filter = "alpha(opacity=0)";
+            }            
+            
+            addEvent(input, 'change', function(){
+                 
+                if ( ! input || input.value === ''){                
+                    return;                
+                }
+                            
+                // Get filename from input, required                
+                // as some browsers have path instead of it          
+                var file = fileFromPath(input.value);
+                                
+                if (false === self._settings.onChange.call(self, file, getExt(file))){
+                    self._clearInput();                
+                    return;
+                }
+                
+                // Submit form when value is changed
+                if (self._settings.autoSubmit) {
+                    self.submit();
+                }
+            });            
+
+            addEvent(input, 'mouseover', function(){
+                addClass(self._button, self._settings.hoverClass);
+            });
+            
+            addEvent(input, 'mouseout', function(){
+                removeClass(self._button, self._settings.hoverClass);
+                removeClass(self._button, self._settings.focusClass);
+                
+                // We use visibility instead of display to fix problem with Safari 4
+                // The problem is that the value of input doesn't change if it 
+                // has display none when user selects a file           
+                input.parentNode.style.visibility = 'hidden';
+
+            });   
+                        
+            addEvent(input, 'focus', function(){
+                addClass(self._button, self._settings.focusClass);
+            });
+            
+            addEvent(input, 'blur', function(){
+                removeClass(self._button, self._settings.focusClass);
+            });
+            
+	        div.appendChild(input);
+            document.body.appendChild(div);
+              
+            this._input = input;
+        },
+        _clearInput : function(){
+            if (!this._input){
+                return;
+            }            
+                             
+            // this._input.value = ''; Doesn't work in IE6                               
+            removeNode(this._input.parentNode);
+            this._input = null;                                                                   
+            this._createInput();
+            
+            removeClass(this._button, this._settings.hoverClass);
+            removeClass(this._button, this._settings.focusClass);
+        },
+        /**
+         * Function makes sure that when user clicks upload button,
+         * the this._input is clicked instead
+         */
+        _rerouteClicks: function(){
+            var self = this;
+            
+            // IE will later display 'access denied' error
+            // if you use using self._input.click()
+            // other browsers just ignore click()
+
+            addEvent(self._button, 'mouseover', function(){
+                if (self._disabled){
+                    return;
+                }
+                                
+                if ( ! self._input){
+	                self._createInput();
+                }
+                
+                var div = self._input.parentNode;                            
+                copyLayout(self._button, div);
+                div.style.visibility = 'visible';
+                                
+            });
+            
+            
+            // commented because we now hide input on mouseleave
+            /**
+             * When the window is resized the elements 
+             * can be misaligned if button position depends
+             * on window size
+             */
+            //addResizeEvent(function(){
+            //    if (self._input){
+            //        copyLayout(self._button, self._input.parentNode);
+            //    }
+            //});            
+                                         
+        },
+        /**
+         * Creates iframe with unique name
+         * @return {Element} iframe
+         */
+        _createIframe: function(){
+            // We can't use getTime, because it sometimes return
+            // same value in safari :(
+            var id = getUID();            
+             
+            // We can't use following code as the name attribute
+            // won't be properly registered in IE6, and new window
+            // on form submit will open
+            // var iframe = document.createElement('iframe');
+            // iframe.setAttribute('name', id);                        
+ 
+            var iframe = toElement('<iframe src="javascript:false;" name="' + id + '" />');
+            // src="javascript:false; was added
+            // because it possibly removes ie6 prompt 
+            // "This page contains both secure and nonsecure items"
+            // Anyway, it doesn't do any harm.            
+            iframe.setAttribute('id', id);
+            
+            iframe.style.display = 'none';
+            document.body.appendChild(iframe);
+            
+            return iframe;
+        },
+        /**
+         * Creates form, that will be submitted to iframe
+         * @param {Element} iframe Where to submit
+         * @return {Element} form
+         */
+        _createForm: function(iframe){
+            var settings = this._settings;
+                        
+            // We can't use the following code in IE6
+            // var form = document.createElement('form');
+            // form.setAttribute('method', 'post');
+            // form.setAttribute('enctype', 'multipart/form-data');
+            // Because in this case file won't be attached to request                    
+            var form = toElement('<form method="post" enctype="multipart/form-data"></form>');
+                        
+            form.setAttribute('action', settings.action);
+            form.setAttribute('target', iframe.name);                                   
+            form.style.display = 'none';
+            document.body.appendChild(form);
+            
+            // Create hidden input element for each data key
+            for (var prop in settings.data) {
+                if (settings.data.hasOwnProperty(prop)){
+                    var el = document.createElement("input");
+                    el.setAttribute('type', 'hidden');
+                    el.setAttribute('name', prop);
+                    el.setAttribute('value', settings.data[prop]);
+                    form.appendChild(el);
+                }
+            }
+            return form;
+        },
+        /**
+         * Gets response from iframe and fires onComplete event when ready
+         * @param iframe
+         * @param file Filename to use in onComplete callback 
+         */
+        _getResponse : function(iframe, file){            
+            // getting response
+            var toDeleteFlag = false, self = this, settings = this._settings;   
+               
+            addEvent(iframe, 'load', function(){                
+                
+                if (// For Safari 
+                    iframe.src == "javascript:'%3Chtml%3E%3C/html%3E';" ||
+                    // For FF, IE
+                    iframe.src == "javascript:'<html></html>';"){                                                                        
+                        // First time around, do not delete.
+                        // We reload to blank page, so that reloading main page
+                        // does not re-submit the post.
+                        
+                        if (toDeleteFlag) {
+                            // Fix busy state in FF3
+                            setTimeout(function(){
+                                removeNode(iframe);
+                            }, 0);
+                        }
+                                                
+                        return;
+                }
+                
+                var doc = iframe.contentDocument ? iframe.contentDocument : window.frames[iframe.id].document;
+                
+                // fixing Opera 9.26,10.00
+                if (doc.readyState && doc.readyState != 'complete') {
+                   // Opera fires load event multiple times
+                   // Even when the DOM is not ready yet
+                   // this fix should not affect other browsers
+                   return;
+                }
+                
+                // fixing Opera 9.64
+                if (doc.body && doc.body.innerHTML == "false") {
+                    // In Opera 9.64 event was fired second time
+                    // when body.innerHTML changed from false 
+                    // to server response approx. after 1 sec
+                    return;
+                }
+                
+                var response;
+                
+                if (doc.XMLDocument) {
+                    // response is a xml document Internet Explorer property
+                    response = doc.XMLDocument;
+                } else if (doc.body){
+                    // response is html document or plain text
+                    response = doc.body.innerHTML;
+                    
+                    if (settings.responseType && settings.responseType.toLowerCase() == 'json') {
+                        // If the document was sent as 'application/javascript' or
+                        // 'text/javascript', then the browser wraps the text in a <pre>
+                        // tag and performs html encoding on the contents.  In this case,
+                        // we need to pull the original text content from the text node's
+                        // nodeValue property to retrieve the unmangled content.
+                        // Note that IE6 only understands text/html
+                        if (doc.body.firstChild && doc.body.firstChild.nodeName.toUpperCase() == 'PRE') {
+                            doc.normalize();
+                            response = doc.body.firstChild.firstChild.nodeValue;
+                        }
+                        
+                        if (response) {
+                            response = eval("(" + response + ")");
+                        } else {
+                            response = {};
+                        }
+                    }
+                } else {
+                    // response is a xml document
+                    response = doc;
+                }
+                
+                settings.onComplete.call(self, file, response);
+                
+                // Reload blank page, so that reloading main page
+                // does not re-submit the post. Also, remember to
+                // delete the frame
+                toDeleteFlag = true;
+                
+                // Fix IE mixed content issue
+                iframe.src = "javascript:'<html></html>';";
+            });            
+        },        
+        /**
+         * Upload file contained in this._input
+         */
+        submit: function(){                        
+            var self = this, settings = this._settings;
+            
+            if ( ! this._input || this._input.value === ''){                
+                return;                
+            }
+                                    
+            var file = fileFromPath(this._input.value);
+            
+            // user returned false to cancel upload
+            if (false === settings.onSubmit.call(this, file, getExt(file))){
+                this._clearInput();                
+                return;
+            }
+            
+            // sending request    
+            var iframe = this._createIframe();
+            var form = this._createForm(iframe);
+            
+            // assuming following structure
+            // div -> input type='file'
+            removeNode(this._input.parentNode);            
+            removeClass(self._button, self._settings.hoverClass);
+            removeClass(self._button, self._settings.focusClass);
+                        
+            form.appendChild(this._input);
+                        
+            form.submit();
+
+            // request set, clean up                
+            removeNode(form); form = null;                          
+            removeNode(this._input); this._input = null;            
+            
+            // Get response from iframe and fire onComplete event when ready
+            this._getResponse(iframe, file);            
+
+            // get ready for next request            
+            this._createInput();
+        }
+    };
+})(); 
diff --git a/view/js/crypto.js b/view/js/crypto.js
new file mode 100644
index 000000000..2e6402c62
--- /dev/null
+++ b/view/js/crypto.js
@@ -0,0 +1,291 @@
+
+
+function str_rot13 (str) {
+  // http://kevin.vanzonneveld.net
+  // +   original by: Jonas Raoni Soares Silva (http://www.jsfromhell.com)
+  // +   improved by: Ates Goral (http://magnetiq.com)
+  // +   bugfixed by: Onno Marsman
+  // +   improved by: Rafa? Kukawski (http://blog.kukawski.pl)
+  // *     example 1: str_rot13('Kevin van Zonneveld');
+  // *     returns 1: 'Xriva ina Mbaariryq'
+  // *     example 2: str_rot13('Xriva ina Mbaariryq');
+  // *     returns 2: 'Kevin van Zonneveld'
+  // *     example 3: str_rot13(33);
+  // *     returns 3: '33'
+	return (str + '').replace(/[a-z]/gi, function (s) {
+		return String.fromCharCode(s.charCodeAt(0) + (s.toLowerCase() < 'n' ? 13 : -13));
+	});
+}
+
+
+// Arrays for pluggable encryptors/decryptors
+
+var red_encryptors = new Array();
+var red_decryptors = new Array();
+
+// We probably just want the element where the text is and find it ourself. e.g. if 
+// there is highlighted text use it, otherwise use the entire text.
+// So the third element may be useless. Fix also in view/tpl/jot.tpl before 
+// adding to all the editor templates and enabling the feature
+
+// Should probably do some input sanitising and dealing with bbcode, hiding key text, and displaying
+// results in a lightbox and/or popup form are left as an exercise for the reader. 
+
+
+function red_encrypt(alg, elem,text) {
+	var enc_text = '';
+	var newdiv = '';
+
+	if(typeof tinyMCE !== "undefined")
+		tinyMCE.triggerSave(false,true);
+
+	var text = $(elem).val();
+
+	// key and hint need to be localised
+
+	var enc_key = bin2hex(prompt(aStr['passphrase']));
+
+	// If you don't provide a key you get rot13, which doesn't need a key
+	// but consequently isn't secure.  
+
+	if(! enc_key)
+		alg = 'rot13';
+
+	if((alg == 'rot13') || (alg == 'triple-rot13'))
+		newdiv = "[crypt alg='rot13']" + str_rot13(text) + '[/crypt]';
+
+	if(alg == 'aes256') {
+
+			// This is the prompt we're going to use when the receiver tries to open it.
+			// Maybe "Grandma's maiden name" or "our secret place" or something. 
+
+			var enc_hint = bin2hex(prompt(aStr['passhint']));
+
+			enc_text = CryptoJS.AES.encrypt(text,enc_key);
+
+			encrypted = enc_text.toString();
+
+			newdiv = "[crypt alg='aes256' hint='" + enc_hint + "']" + encrypted + '[/crypt]';
+	}
+	if(alg == 'rabbit') {
+
+			// This is the prompt we're going to use when the receiver tries to open it.
+			// Maybe "Grandma's maiden name" or "our secret place" or something. 
+
+			var enc_hint = bin2hex(prompt(aStr['passhint']));
+
+			enc_text = CryptoJS.Rabbit.encrypt(text,enc_key);
+			encrypted = enc_text.toString();
+
+			newdiv = "[crypt alg='rabbit' hint='" + enc_hint + "']" + encrypted + '[/crypt]';
+	}
+	if(alg == '3des') {
+
+			// This is the prompt we're going to use when the receiver tries to open it.
+			// Maybe "Grandma's maiden name" or "our secret place" or something. 
+
+			var enc_hint = bin2hex(prompt(aStr['passhint']));
+
+			enc_text = CryptoJS.TripleDES.encrypt(text,enc_key);
+			encrypted = enc_text.toString();
+
+			newdiv = "[crypt alg='3des' hint='" + enc_hint + "']" + encrypted + '[/crypt]';
+	}
+	if((red_encryptors.length) && (! newdiv.length)) {
+		for(var i = 0; i < red_encryptors.length; i ++) {
+			newdiv = red_encryptors[i](alg,text);
+			if(newdiv.length)
+				break;
+		}
+	}
+
+	enc_key = '';
+
+//	alert(newdiv);
+
+	// This might be a comment box on a page with a tinymce editor
+	// so check if there is a tinymce editor but also check the display
+	// property of our source element - because a tinymce instance
+	// will have display "none". If a normal textarea such as in a comment
+	// box has display "none" you wouldn't be able to type in it.
+	
+	if($(elem).css('display') == 'none' && typeof tinyMCE !== "undefined") {
+		tinyMCE.activeEditor.setContent(newdiv);
+	}
+	else {
+		$(elem).val(newdiv);
+	}
+
+//	textarea = document.getElementById(elem);
+//	if (document.selection) {
+//		textarea.focus();
+//		selected = document.selection.createRange();
+//		selected.text = newdiv;
+//	} else if (textarea.selectionStart || textarea.selectionStart == "0") {
+//		var start = textarea.selectionStart;
+//		var end = textarea.selectionEnd;
+//		textarea.value = textarea.value.substring(0, start) + newdiv + textarea.value.substring(end, textarea.value.length);
+//	}
+}
+
+function red_decrypt(alg,hint,text,elem) {
+
+	var dec_text = '';
+
+	if(alg == 'rot13' || alg == 'triple-rot13')
+		dec_text = str_rot13(text);
+	else {
+		var enc_key = bin2hex(prompt((hint.length) ? hex2bin(hint) : aStr['passphrase']));
+	}
+
+	if(alg == 'aes256') {
+		dec_text = CryptoJS.AES.decrypt(text,enc_key);
+	}
+	if(alg == 'rabbit') {
+		dec_text = CryptoJS.Rabbit.decrypt(text,enc_key);
+	}
+	if(alg == '3des') {
+		dec_text = CryptoJS.TripleDES.decrypt(text,enc_key);
+	}
+
+	if((red_decryptors.length) && (! dec_text.length)) {
+		for(var i = 0; i < red_decryptors.length; i ++) {
+			dec_text = red_decryptors[i](alg,text,enc_key);
+			if(dec_text.length)
+				break;
+		}
+	}
+
+	enc_key = '';
+
+	// Not sure whether to drop this back in the conversation display.
+	// It probably needs a lightbox or popup window because any conversation 
+	// updates could 
+	// wipe out the text and make you re-enter the key if it was in the
+	// conversation. For now we do that so you can read it.
+
+	var dec_result = dec_text.toString(CryptoJS.enc.Utf8);
+	delete dec_text;
+
+	// incorrect decryptions *usually* but don't always have zero length
+	// If the person typo'd let them try again without reloading the page
+	// otherwise they'll have no "padlock" to click to try again.
+
+	if(dec_result.length) {
+		$(elem).html(b2h(dec_result));
+		dec_result = '';
+	}
+}
+	
+	
+
+
+
+function base64_encode (data) {
+  // http://kevin.vanzonneveld.net
+  // +   original by: Tyler Akins (http://rumkin.com)
+  // +   improved by: Bayron Guevara
+  // +   improved by: Thunder.m
+  // +   improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
+  // +   bugfixed by: Pellentesque Malesuada
+  // +   improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
+  // +   improved by: Rafa? Kukawski (http://kukawski.pl)
+  // *     example 1: base64_encode('Kevin van Zonneveld');
+  // *     returns 1: 'S2V2aW4gdmFuIFpvbm5ldmVsZA=='
+  // mozilla has this native
+  // - but breaks in 2.0.0.12!
+  //if (typeof this.window['btoa'] === 'function') {
+  //    return btoa(data);
+  //}
+	var b64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
+	var o1, o2, o3, h1, h2, h3, h4, bits, i = 0,
+    ac = 0,
+    enc = "",
+    tmp_arr = [];
+
+	if (!data) {
+		return data;
+	}
+
+	do { // pack three octets into four hexets
+		o1 = data.charCodeAt(i++);
+		o2 = data.charCodeAt(i++);
+		o3 = data.charCodeAt(i++);
+
+		bits = o1 << 16 | o2 << 8 | o3;
+
+		h1 = bits >> 18 & 0x3f;
+		h2 = bits >> 12 & 0x3f;
+		h3 = bits >> 6 & 0x3f;
+		h4 = bits & 0x3f;
+
+    // use hexets to index into b64, and append result to encoded string
+		tmp_arr[ac++] = b64.charAt(h1) + b64.charAt(h2) + b64.charAt(h3) + b64.charAt(h4);
+	} while (i < data.length);
+
+	enc = tmp_arr.join('');
+
+	var r = data.length % 3;
+
+	return (r ? enc.slice(0, r - 3) : enc) + '==='.slice(r || 3);
+
+}
+
+
+function base64_decode (data) {
+  // http://kevin.vanzonneveld.net
+  // +   original by: Tyler Akins (http://rumkin.com)
+  // +   improved by: Thunder.m
+  // +      input by: Aman Gupta
+  // +   improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
+  // +   bugfixed by: Onno Marsman
+  // +   bugfixed by: Pellentesque Malesuada
+  // +   improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
+  // +      input by: Brett Zamir (http://brett-zamir.me)
+  // +   bugfixed by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
+  // *     example 1: base64_decode('S2V2aW4gdmFuIFpvbm5ldmVsZA==');
+  // *     returns 1: 'Kevin van Zonneveld'
+  // mozilla has this native
+  // - but breaks in 2.0.0.12!
+  //if (typeof this.window['atob'] === 'function') {
+  //    return atob(data);
+  //}
+	var b64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
+	var o1, o2, o3, h1, h2, h3, h4, bits, i = 0,
+    ac = 0,
+    dec = "",
+    tmp_arr = [];
+
+	if (!data) {
+		return data;
+	}
+
+	data += '';
+
+	do { // unpack four hexets into three octets using index points in b64
+		h1 = b64.indexOf(data.charAt(i++));
+		h2 = b64.indexOf(data.charAt(i++));
+		h3 = b64.indexOf(data.charAt(i++));
+		h4 = b64.indexOf(data.charAt(i++));
+
+		bits = h1 << 18 | h2 << 12 | h3 << 6 | h4;
+
+		o1 = bits >> 16 & 0xff;
+		o2 = bits >> 8 & 0xff;
+		o3 = bits & 0xff;
+
+		if (h3 == 64) {
+			tmp_arr[ac++] = String.fromCharCode(o1);
+		} else if (h4 == 64) {
+			tmp_arr[ac++] = String.fromCharCode(o1, o2);
+		} else {
+			tmp_arr[ac++] = String.fromCharCode(o1, o2, o3);
+		}
+	} while (i < data.length);
+
+	dec = tmp_arr.join('');
+
+	return dec;
+}
+
+
diff --git a/view/js/fk.autocomplete.js b/view/js/fk.autocomplete.js
new file mode 100644
index 000000000..763ca354d
--- /dev/null
+++ b/view/js/fk.autocomplete.js
@@ -0,0 +1,200 @@
+/**
+ * Friendica people autocomplete
+ *
+ * require jQuery, jquery.textareas
+ */
+ 
+		
+		
+function ACPopup(elm,backend_url){
+	this.idsel=-1;
+	this.element = elm;
+	this.searchText="";
+	this.ready=true;
+	this.kp_timer = false;
+	this.url = backend_url;
+
+	var w = 530;
+	var h = 130;
+
+
+	if(typeof elm.editorId == "undefined") {	
+		style = $(elm).offset();
+		w = $(elm).width();
+		h = $(elm).height();
+	}
+	else {
+		var container = elm.getContainer();
+		if(typeof container != "undefined") {
+			style = $(container).offset();
+			w = $(container).width();
+	    	h = $(container).height();
+		}
+	}
+
+	if(! w)
+		w = 530;
+
+	if(! h)
+		h = 130;
+
+	style.top=style.top+h;
+	style.width = w;
+	style.position = 'absolute';
+	/*	style['max-height'] = '150px';
+		style.border = '1px solid red';
+		style.background = '#cccccc';
+	
+		style.overflow = 'auto';
+		style['z-index'] = '100000';
+	*/
+	style.display = 'none';
+	
+	this.cont = $("<div class='acpopup'></div>");
+	this.cont.css(style);
+	
+	$("body").append(this.cont);
+}
+ACPopup.prototype.close = function(){
+	$(this.cont).remove();
+	this.ready=false;
+}
+ACPopup.prototype.search = function(text){
+	var that = this;
+	this.searchText=text;
+	if (this.kp_timer) clearTimeout(this.kp_timer);
+	this.kp_timer = setTimeout( function(){that._search();}, 500);
+}
+ACPopup.prototype._search = function(){	
+	console.log("_search");
+	var that = this;
+	var postdata = {
+		start:0,
+		count:100,
+		search:this.searchText,
+		type:'c',
+	}
+	
+	$.ajax({
+		type:'POST',
+		url: this.url,
+		data: postdata,
+		dataType: 'json',
+		success:function(data){
+			that.cont.html("");
+			if (data.tot>0){
+				that.cont.show();
+				$(data.items).each(function(){
+					html = "<img src='{0}' height='16px' width='16px'>{1} ({2})".format(this.photo, this.name, this.nick)
+					that.add(this.taggable, html, this.nick.replace(' ','') + '+' + this.id + ' - ' + this.link);
+				});			
+			} else {
+				that.cont.hide();
+			}
+		}
+	});
+	
+}
+ACPopup.prototype.add = function(taggable, label, value){
+	var that=this;
+	var elm = $("<div class='acpopupitem " + taggable +"' title='"+value+"'>"+label+"</div>");
+	elm.click(function(e){
+		t = $(this).attr('title').replace(new RegExp(' \- .*'),'');
+		if(typeof(that.element.container) === "undefined") {
+			el=$(that.element);
+			sel = el.getSelection();
+			sel.start = sel.start- that.searchText.length;
+			el.setSelection(sel.start,sel.end).replaceSelectedText(t+' ').collapseSelection(false);
+			that.close();
+		}
+		else {
+			txt = tinyMCE.activeEditor.getContent();
+			//			alert(that.searchText + ':' + t);
+			newtxt = txt.replace('@' + that.searchText, '@' + t + ' ');
+			tinyMCE.activeEditor.setContent(newtxt);
+			tinyMCE.activeEditor.focus();
+			that.close();
+		}
+	});
+	$(this.cont).append(elm);
+}
+ACPopup.prototype.onkey = function(event){
+	if (event.keyCode == '13') {
+		if(this.idsel>-1) {
+			this.cont.children()[this.idsel].click();
+			event.preventDefault();
+		}
+		else
+			this.close();
+	}
+	if (event.keyCode == '38') { //cursor up
+		cmax = this.cont.children().size()-1;
+		this.idsel--;
+		if (this.idsel<0) this.idsel=cmax;
+		event.preventDefault();
+	}
+	if (event.keyCode == '40' || event.keyCode == '9') { //cursor down
+		cmax = this.cont.children().size()-1;
+		this.idsel++;
+		if (this.idsel>cmax) this.idsel=0;
+		event.preventDefault();
+	}
+	
+	if (event.keyCode == '38' || event.keyCode == '40' || event.keyCode == '9') {
+		this.cont.children().removeClass('selected');
+		$(this.cont.children()[this.idsel]).addClass('selected');
+	}
+	
+	if (event.keyCode == '27') { //ESC
+		this.close();
+	}
+}
+
+function ContactAutocomplete(element,backend_url){
+	this.pattern=/@(\!*)([^ \n]+)$/;
+	this.popup=null;
+	var that = this;
+	
+	$(element).unbind('keydown');
+	$(element).unbind('keyup');
+	
+	$(element).keydown(function(event){
+		if (that.popup!==null) that.popup.onkey(event);
+	});
+	
+	$(element).keyup(function(event){
+		cpos = $(this).getSelection();
+		if (cpos.start==cpos.end){
+			match = $(this).val().substring(0,cpos.start).match(that.pattern);
+			if (match!==null){
+				if (that.popup===null){
+					that.popup = new ACPopup(this, backend_url);
+				}
+				if (that.popup.ready && match[2]!==that.popup.searchText) that.popup.search(match[2]);
+				if (!that.popup.ready) that.popup=null;
+				
+			} else {
+				if (that.popup!==null) {that.popup.close(); that.popup=null;}
+			}
+			
+			
+		}
+	});		
+	
+}
+
+
+/**
+ * jQuery plugin 'contact_autocomplete'
+ */
+(function( $ ){
+  $.fn.contact_autocomplete = function(backend_url) {
+    this.each(function(){
+		new ContactAutocomplete(this, backend_url);
+	});
+  };
+})( jQuery );
+
+
+
+		
diff --git a/view/js/icon_translate.js b/view/js/icon_translate.js
new file mode 100644
index 000000000..9e69e0b7d
--- /dev/null
+++ b/view/js/icon_translate.js
@@ -0,0 +1,53 @@
+// Include this file and adjust as necessary for alternate icon sets which use different icon names.
+
+$(document).ready(function() {
+
+		$('.icon-smile').addClass('');
+		$('.icon-star-empty').addClass('');
+		$('.icon-star-full').addClass('');
+		$('.icon-star').addClass('');
+		$('.icon-remove').addClass('');
+		$('.icon-search').addClass('');
+		$('.icon-facetime-video').addClass('');
+		$('.icon-volume-up').addClass('');
+		$('.icon-picture').addClass('');
+		$('.icon-align-justify').addClass('');
+		$('.icon-question').addClass('');
+		$('.icon-ok').addClass('');
+		$('.icon-lock').addClass('');
+		$('.icon-unlock').addClass('');
+		$('.icon-th').addClass('');
+		$('.icon-home').addClass('');
+		$('.icon-envelope').addClass('');
+		$('.icon-calendar').addClass('');
+		$('.icon-user').addClass('');
+		$('.icon-exclamation').addClass('');
+		$('.icon-sitemap').addClass('');
+		$('.icon-cogs').addClass('');
+		$('.icon-paper-clip').addClass('');
+		$('.icon-pencil').addClass('');
+		$('.icon-remove').addClass('');
+		$('.icon-ok').addClass('');
+		$('.icon-folder-close').addClass('');
+		$('.icon-camera').addClass('');
+		$('.icon-paper-clip').addClass('');
+		$('.icon-link').addClass('');
+		$('.icon-eraser').addClass('');
+		$('.icon-key').addClass('');
+		$('.icon-asterisk').addClass('');
+		$('.icon-backward').addClass('');
+		$('.icon-forward').addClass('');
+		$('.icon-external-link').addClass('');
+		$('.icon-eye-open').addClass('');
+		$('.icon-bold').addClass('');
+		$('.icon-italic').addClass('');
+		$('.icon-underline').addClass('');
+		$('.icon-quote-left').addClass('');
+		$('.icon-terminal').addClass('');
+		$('.icon-camera').addClass('');
+		$('.icon-link').addClass('');
+		$('.icon-check-empty').addClass('');
+		$('.icon-check').addClass('');
+		$('.icon-globe').addClass('');
+		$('.icon-circle-blank').addClass('');
+});
\ No newline at end of file
diff --git a/view/js/jquery-compat.js b/view/js/jquery-compat.js
new file mode 100644
index 000000000..7bf912542
--- /dev/null
+++ b/view/js/jquery-compat.js
@@ -0,0 +1,71 @@
+
+// provide jquery.browser so we can get rid of the migration toolkit
+
+jQuery.uaMatch = function( ua ) {
+	ua = ua.toLowerCase();
+
+	var match = /(chrome)[ \/]([\w.]+)/.exec( ua ) ||
+		/(webkit)[ \/]([\w.]+)/.exec( ua ) ||
+		/(opera)(?:.*version|)[ \/]([\w.]+)/.exec( ua ) ||
+		/(msie) ([\w.]+)/.exec( ua ) ||
+		ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec( ua ) ||
+		[];
+
+	return {
+		browser: match[ 1 ] || "",
+		version: match[ 2 ] || "0"
+	};
+};
+
+
+// Don't clobber any existing jQuery.browser in case it's different
+if ( !jQuery.browser ) {
+	matched = jQuery.uaMatch( navigator.userAgent );
+	browser = {};
+
+	if ( matched.browser ) {
+		browser[ matched.browser ] = true;
+		browser.version = matched.version;
+	}
+
+	// Chrome is Webkit, but Webkit is also Safari.
+	if ( browser.chrome ) {
+		browser.webkit = true;
+	} else if ( browser.webkit ) {
+		browser.safari = true;
+	}
+
+	jQuery.browser = browser;
+}
+
+jQuery.fn.toggle = function( fn, fn2 ) {
+
+	// Don't mess with animation or css toggles
+	if ( !jQuery.isFunction( fn ) || !jQuery.isFunction( fn2 ) ) {
+		return oldToggle.apply( this, arguments );
+	}
+
+	// Save reference to arguments for access in closure
+	var args = arguments,
+		guid = fn.guid || jQuery.guid++,
+		i = 0,
+		toggler = function( event ) {
+			// Figure out which function to execute
+			var lastToggle = ( jQuery._data( this, "lastToggle" + fn.guid ) || 0 ) % i;
+			jQuery._data( this, "lastToggle" + fn.guid, lastToggle + 1 );
+
+			// Make sure that clicks stop
+			event.preventDefault();
+
+			// and execute the function
+			return args[ lastToggle ].apply( this, arguments ) || false;
+		};
+
+	// link all the functions, so any of them can unbind this click handler
+	toggler.guid = guid;
+	while ( i < args.length ) {
+		args[ i++ ].guid = guid;
+	}
+
+	return this.click( toggler );
+};
diff --git a/view/js/jquery-migrate-1.1.1.js b/view/js/jquery-migrate-1.1.1.js
new file mode 100644
index 000000000..e99f954e6
--- /dev/null
+++ b/view/js/jquery-migrate-1.1.1.js
@@ -0,0 +1,511 @@
+/*!
+ * jQuery Migrate - v1.1.1 - 2013-02-16
+ * https://github.com/jquery/jquery-migrate
+ * Copyright 2005, 2013 jQuery Foundation, Inc. and other contributors; Licensed MIT
+ */
+(function( jQuery, window, undefined ) {
+// See http://bugs.jquery.com/ticket/13335
+// "use strict";
+
+
+var warnedAbout = {};
+
+// List of warnings already given; public read only
+jQuery.migrateWarnings = [];
+
+// Set to true to prevent console output; migrateWarnings still maintained
+// jQuery.migrateMute = false;
+
+// Show a message on the console so devs know we're active
+if ( !jQuery.migrateMute && window.console && console.log ) {
+	console.log("JQMIGRATE: Logging is active");
+}
+
+// Set to false to disable traces that appear with warnings
+if ( jQuery.migrateTrace === undefined ) {
+	jQuery.migrateTrace = true;
+}
+
+// Forget any warnings we've already given; public
+jQuery.migrateReset = function() {
+	warnedAbout = {};
+	jQuery.migrateWarnings.length = 0;
+};
+
+function migrateWarn( msg) {
+	if ( !warnedAbout[ msg ] ) {
+		warnedAbout[ msg ] = true;
+		jQuery.migrateWarnings.push( msg );
+		if ( window.console && console.warn && !jQuery.migrateMute ) {
+			console.warn( "JQMIGRATE: " + msg );
+			if ( jQuery.migrateTrace && console.trace ) {
+				console.trace();
+			}
+		}
+	}
+}
+
+function migrateWarnProp( obj, prop, value, msg ) {
+	if ( Object.defineProperty ) {
+		// On ES5 browsers (non-oldIE), warn if the code tries to get prop;
+		// allow property to be overwritten in case some other plugin wants it
+		try {
+			Object.defineProperty( obj, prop, {
+				configurable: true,
+				enumerable: true,
+				get: function() {
+					migrateWarn( msg );
+					return value;
+				},
+				set: function( newValue ) {
+					migrateWarn( msg );
+					value = newValue;
+				}
+			});
+			return;
+		} catch( err ) {
+			// IE8 is a dope about Object.defineProperty, can't warn there
+		}
+	}
+
+	// Non-ES5 (or broken) browser; just set the property
+	jQuery._definePropertyBroken = true;
+	obj[ prop ] = value;
+}
+
+if ( document.compatMode === "BackCompat" ) {
+	// jQuery has never supported or tested Quirks Mode
+	migrateWarn( "jQuery is not compatible with Quirks Mode" );
+}
+
+
+var attrFn = jQuery( "<input/>", { size: 1 } ).attr("size") && jQuery.attrFn,
+	oldAttr = jQuery.attr,
+	valueAttrGet = jQuery.attrHooks.value && jQuery.attrHooks.value.get ||
+		function() { return null; },
+	valueAttrSet = jQuery.attrHooks.value && jQuery.attrHooks.value.set ||
+		function() { return undefined; },
+	rnoType = /^(?:input|button)$/i,
+	rnoAttrNodeType = /^[238]$/,
+	rboolean = /^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,
+	ruseDefault = /^(?:checked|selected)$/i;
+
+// jQuery.attrFn
+migrateWarnProp( jQuery, "attrFn", attrFn || {}, "jQuery.attrFn is deprecated" );
+
+jQuery.attr = function( elem, name, value, pass ) {
+	var lowerName = name.toLowerCase(),
+		nType = elem && elem.nodeType;
+
+	if ( pass ) {
+		// Since pass is used internally, we only warn for new jQuery
+		// versions where there isn't a pass arg in the formal params
+		if ( oldAttr.length < 4 ) {
+			migrateWarn("jQuery.fn.attr( props, pass ) is deprecated");
+		}
+		if ( elem && !rnoAttrNodeType.test( nType ) &&
+			(attrFn ? name in attrFn : jQuery.isFunction(jQuery.fn[name])) ) {
+			return jQuery( elem )[ name ]( value );
+		}
+	}
+
+	// Warn if user tries to set `type`, since it breaks on IE 6/7/8; by checking
+	// for disconnected elements we don't warn on $( "<button>", { type: "button" } ).
+	if ( name === "type" && value !== undefined && rnoType.test( elem.nodeName ) && elem.parentNode ) {
+		migrateWarn("Can't change the 'type' of an input or button in IE 6/7/8");
+	}
+
+	// Restore boolHook for boolean property/attribute synchronization
+	if ( !jQuery.attrHooks[ lowerName ] && rboolean.test( lowerName ) ) {
+		jQuery.attrHooks[ lowerName ] = {
+			get: function( elem, name ) {
+				// Align boolean attributes with corresponding properties
+				// Fall back to attribute presence where some booleans are not supported
+				var attrNode,
+					property = jQuery.prop( elem, name );
+				return property === true || typeof property !== "boolean" &&
+					( attrNode = elem.getAttributeNode(name) ) && attrNode.nodeValue !== false ?
+
+					name.toLowerCase() :
+					undefined;
+			},
+			set: function( elem, value, name ) {
+				var propName;
+				if ( value === false ) {
+					// Remove boolean attributes when set to false
+					jQuery.removeAttr( elem, name );
+				} else {
+					// value is true since we know at this point it's type boolean and not false
+					// Set boolean attributes to the same name and set the DOM property
+					propName = jQuery.propFix[ name ] || name;
+					if ( propName in elem ) {
+						// Only set the IDL specifically if it already exists on the element
+						elem[ propName ] = true;
+					}
+
+					elem.setAttribute( name, name.toLowerCase() );
+				}
+				return name;
+			}
+		};
+
+		// Warn only for attributes that can remain distinct from their properties post-1.9
+		if ( ruseDefault.test( lowerName ) ) {
+			migrateWarn( "jQuery.fn.attr('" + lowerName + "') may use property instead of attribute" );
+		}
+	}
+
+	return oldAttr.call( jQuery, elem, name, value );
+};
+
+// attrHooks: value
+jQuery.attrHooks.value = {
+	get: function( elem, name ) {
+		var nodeName = ( elem.nodeName || "" ).toLowerCase();
+		if ( nodeName === "button" ) {
+			return valueAttrGet.apply( this, arguments );
+		}
+		if ( nodeName !== "input" && nodeName !== "option" ) {
+			migrateWarn("jQuery.fn.attr('value') no longer gets properties");
+		}
+		return name in elem ?
+			elem.value :
+			null;
+	},
+	set: function( elem, value ) {
+		var nodeName = ( elem.nodeName || "" ).toLowerCase();
+		if ( nodeName === "button" ) {
+			return valueAttrSet.apply( this, arguments );
+		}
+		if ( nodeName !== "input" && nodeName !== "option" ) {
+			migrateWarn("jQuery.fn.attr('value', val) no longer sets properties");
+		}
+		// Does not return so that setAttribute is also used
+		elem.value = value;
+	}
+};
+
+
+var matched, browser,
+	oldInit = jQuery.fn.init,
+	oldParseJSON = jQuery.parseJSON,
+	// Note this does NOT include the #9521 XSS fix from 1.7!
+	rquickExpr = /^(?:[^<]*(<[\w\W]+>)[^>]*|#([\w\-]*))$/;
+
+// $(html) "looks like html" rule change
+jQuery.fn.init = function( selector, context, rootjQuery ) {
+	var match;
+
+	if ( selector && typeof selector === "string" && !jQuery.isPlainObject( context ) &&
+			(match = rquickExpr.exec( selector )) && match[1] ) {
+		// This is an HTML string according to the "old" rules; is it still?
+		if ( selector.charAt( 0 ) !== "<" ) {
+			migrateWarn("$(html) HTML strings must start with '<' character");
+		}
+		// Now process using loose rules; let pre-1.8 play too
+		if ( context && context.context ) {
+			// jQuery object as context; parseHTML expects a DOM object
+			context = context.context;
+		}
+		if ( jQuery.parseHTML ) {
+			return oldInit.call( this, jQuery.parseHTML( jQuery.trim(selector), context, true ),
+					context, rootjQuery );
+		}
+	}
+	return oldInit.apply( this, arguments );
+};
+jQuery.fn.init.prototype = jQuery.fn;
+
+// Let $.parseJSON(falsy_value) return null
+jQuery.parseJSON = function( json ) {
+	if ( !json && json !== null ) {
+		migrateWarn("jQuery.parseJSON requires a valid JSON string");
+		return null;
+	}
+	return oldParseJSON.apply( this, arguments );
+};
+
+jQuery.uaMatch = function( ua ) {
+	ua = ua.toLowerCase();
+
+	var match = /(chrome)[ \/]([\w.]+)/.exec( ua ) ||
+		/(webkit)[ \/]([\w.]+)/.exec( ua ) ||
+		/(opera)(?:.*version|)[ \/]([\w.]+)/.exec( ua ) ||
+		/(msie) ([\w.]+)/.exec( ua ) ||
+		ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec( ua ) ||
+		[];
+
+	return {
+		browser: match[ 1 ] || "",
+		version: match[ 2 ] || "0"
+	};
+};
+
+// Don't clobber any existing jQuery.browser in case it's different
+if ( !jQuery.browser ) {
+	matched = jQuery.uaMatch( navigator.userAgent );
+	browser = {};
+
+	if ( matched.browser ) {
+		browser[ matched.browser ] = true;
+		browser.version = matched.version;
+	}
+
+	// Chrome is Webkit, but Webkit is also Safari.
+	if ( browser.chrome ) {
+		browser.webkit = true;
+	} else if ( browser.webkit ) {
+		browser.safari = true;
+	}
+
+	jQuery.browser = browser;
+}
+
+// Warn if the code tries to get jQuery.browser
+migrateWarnProp( jQuery, "browser", jQuery.browser, "jQuery.browser is deprecated" );
+
+jQuery.sub = function() {
+	function jQuerySub( selector, context ) {
+		return new jQuerySub.fn.init( selector, context );
+	}
+	jQuery.extend( true, jQuerySub, this );
+	jQuerySub.superclass = this;
+	jQuerySub.fn = jQuerySub.prototype = this();
+	jQuerySub.fn.constructor = jQuerySub;
+	jQuerySub.sub = this.sub;
+	jQuerySub.fn.init = function init( selector, context ) {
+		if ( context && context instanceof jQuery && !(context instanceof jQuerySub) ) {
+			context = jQuerySub( context );
+		}
+
+		return jQuery.fn.init.call( this, selector, context, rootjQuerySub );
+	};
+	jQuerySub.fn.init.prototype = jQuerySub.fn;
+	var rootjQuerySub = jQuerySub(document);
+	migrateWarn( "jQuery.sub() is deprecated" );
+	return jQuerySub;
+};
+
+
+// Ensure that $.ajax gets the new parseJSON defined in core.js
+jQuery.ajaxSetup({
+	converters: {
+		"text json": jQuery.parseJSON
+	}
+});
+
+
+var oldFnData = jQuery.fn.data;
+
+jQuery.fn.data = function( name ) {
+	var ret, evt,
+		elem = this[0];
+
+	// Handles 1.7 which has this behavior and 1.8 which doesn't
+	if ( elem && name === "events" && arguments.length === 1 ) {
+		ret = jQuery.data( elem, name );
+		evt = jQuery._data( elem, name );
+		if ( ( ret === undefined || ret === evt ) && evt !== undefined ) {
+			migrateWarn("Use of jQuery.fn.data('events') is deprecated");
+			return evt;
+		}
+	}
+	return oldFnData.apply( this, arguments );
+};
+
+
+var rscriptType = /\/(java|ecma)script/i,
+	oldSelf = jQuery.fn.andSelf || jQuery.fn.addBack;
+
+jQuery.fn.andSelf = function() {
+	migrateWarn("jQuery.fn.andSelf() replaced by jQuery.fn.addBack()");
+	return oldSelf.apply( this, arguments );
+};
+
+// Since jQuery.clean is used internally on older versions, we only shim if it's missing
+if ( !jQuery.clean ) {
+	jQuery.clean = function( elems, context, fragment, scripts ) {
+		// Set context per 1.8 logic
+		context = context || document;
+		context = !context.nodeType && context[0] || context;
+		context = context.ownerDocument || context;
+
+		migrateWarn("jQuery.clean() is deprecated");
+
+		var i, elem, handleScript, jsTags,
+			ret = [];
+
+		jQuery.merge( ret, jQuery.buildFragment( elems, context ).childNodes );
+
+		// Complex logic lifted directly from jQuery 1.8
+		if ( fragment ) {
+			// Special handling of each script element
+			handleScript = function( elem ) {
+				// Check if we consider it executable
+				if ( !elem.type || rscriptType.test( elem.type ) ) {
+					// Detach the script and store it in the scripts array (if provided) or the fragment
+					// Return truthy to indicate that it has been handled
+					return scripts ?
+						scripts.push( elem.parentNode ? elem.parentNode.removeChild( elem ) : elem ) :
+						fragment.appendChild( elem );
+				}
+			};
+
+			for ( i = 0; (elem = ret[i]) != null; i++ ) {
+				// Check if we're done after handling an executable script
+				if ( !( jQuery.nodeName( elem, "script" ) && handleScript( elem ) ) ) {
+					// Append to fragment and handle embedded scripts
+					fragment.appendChild( elem );
+					if ( typeof elem.getElementsByTagName !== "undefined" ) {
+						// handleScript alters the DOM, so use jQuery.merge to ensure snapshot iteration
+						jsTags = jQuery.grep( jQuery.merge( [], elem.getElementsByTagName("script") ), handleScript );
+
+						// Splice the scripts into ret after their former ancestor and advance our index beyond them
+						ret.splice.apply( ret, [i + 1, 0].concat( jsTags ) );
+						i += jsTags.length;
+					}
+				}
+			}
+		}
+
+		return ret;
+	};
+}
+
+var eventAdd = jQuery.event.add,
+	eventRemove = jQuery.event.remove,
+	eventTrigger = jQuery.event.trigger,
+	oldToggle = jQuery.fn.toggle,
+	oldLive = jQuery.fn.live,
+	oldDie = jQuery.fn.die,
+	ajaxEvents = "ajaxStart|ajaxStop|ajaxSend|ajaxComplete|ajaxError|ajaxSuccess",
+	rajaxEvent = new RegExp( "\\b(?:" + ajaxEvents + ")\\b" ),
+	rhoverHack = /(?:^|\s)hover(\.\S+|)\b/,
+	hoverHack = function( events ) {
+		if ( typeof( events ) !== "string" || jQuery.event.special.hover ) {
+			return events;
+		}
+		if ( rhoverHack.test( events ) ) {
+			migrateWarn("'hover' pseudo-event is deprecated, use 'mouseenter mouseleave'");
+		}
+		return events && events.replace( rhoverHack, "mouseenter$1 mouseleave$1" );
+	};
+
+// Event props removed in 1.9, put them back if needed; no practical way to warn them
+if ( jQuery.event.props && jQuery.event.props[ 0 ] !== "attrChange" ) {
+	jQuery.event.props.unshift( "attrChange", "attrName", "relatedNode", "srcElement" );
+}
+
+// Undocumented jQuery.event.handle was "deprecated" in jQuery 1.7
+if ( jQuery.event.dispatch ) {
+	migrateWarnProp( jQuery.event, "handle", jQuery.event.dispatch, "jQuery.event.handle is undocumented and deprecated" );
+}
+
+// Support for 'hover' pseudo-event and ajax event warnings
+jQuery.event.add = function( elem, types, handler, data, selector ){
+	if ( elem !== document && rajaxEvent.test( types ) ) {
+		migrateWarn( "AJAX events should be attached to document: " + types );
+	}
+	eventAdd.call( this, elem, hoverHack( types || "" ), handler, data, selector );
+};
+jQuery.event.remove = function( elem, types, handler, selector, mappedTypes ){
+	eventRemove.call( this, elem, hoverHack( types ) || "", handler, selector, mappedTypes );
+};
+
+jQuery.fn.error = function() {
+	var args = Array.prototype.slice.call( arguments, 0);
+	migrateWarn("jQuery.fn.error() is deprecated");
+	args.splice( 0, 0, "error" );
+	if ( arguments.length ) {
+		return this.bind.apply( this, args );
+	}
+	// error event should not bubble to window, although it does pre-1.7
+	this.triggerHandler.apply( this, args );
+	return this;
+};
+
+jQuery.fn.toggle = function( fn, fn2 ) {
+
+	// Don't mess with animation or css toggles
+	if ( !jQuery.isFunction( fn ) || !jQuery.isFunction( fn2 ) ) {
+		return oldToggle.apply( this, arguments );
+	}
+	migrateWarn("jQuery.fn.toggle(handler, handler...) is deprecated");
+
+	// Save reference to arguments for access in closure
+	var args = arguments,
+		guid = fn.guid || jQuery.guid++,
+		i = 0,
+		toggler = function( event ) {
+			// Figure out which function to execute
+			var lastToggle = ( jQuery._data( this, "lastToggle" + fn.guid ) || 0 ) % i;
+			jQuery._data( this, "lastToggle" + fn.guid, lastToggle + 1 );
+
+			// Make sure that clicks stop
+			event.preventDefault();
+
+			// and execute the function
+			return args[ lastToggle ].apply( this, arguments ) || false;
+		};
+
+	// link all the functions, so any of them can unbind this click handler
+	toggler.guid = guid;
+	while ( i < args.length ) {
+		args[ i++ ].guid = guid;
+	}
+
+	return this.click( toggler );
+};
+
+jQuery.fn.live = function( types, data, fn ) {
+	migrateWarn("jQuery.fn.live() is deprecated");
+	if ( oldLive ) {
+		return oldLive.apply( this, arguments );
+	}
+	jQuery( this.context ).on( types, this.selector, data, fn );
+	return this;
+};
+
+jQuery.fn.die = function( types, fn ) {
+	migrateWarn("jQuery.fn.die() is deprecated");
+	if ( oldDie ) {
+		return oldDie.apply( this, arguments );
+	}
+	jQuery( this.context ).off( types, this.selector || "**", fn );
+	return this;
+};
+
+// Turn global events into document-triggered events
+jQuery.event.trigger = function( event, data, elem, onlyHandlers  ){
+	if ( !elem && !rajaxEvent.test( event ) ) {
+		migrateWarn( "Global events are undocumented and deprecated" );
+	}
+	return eventTrigger.call( this,  event, data, elem || document, onlyHandlers  );
+};
+jQuery.each( ajaxEvents.split("|"),
+	function( _, name ) {
+		jQuery.event.special[ name ] = {
+			setup: function() {
+				var elem = this;
+
+				// The document needs no shimming; must be !== for oldIE
+				if ( elem !== document ) {
+					jQuery.event.add( document, name + "." + jQuery.guid, function() {
+						jQuery.event.trigger( name, null, elem, true );
+					});
+					jQuery._data( this, name, jQuery.guid++ );
+				}
+				return false;
+			},
+			teardown: function() {
+				if ( this !== document ) {
+					jQuery.event.remove( document, name + "." + jQuery._data( this, name ) );
+				}
+				return false;
+			}
+		};
+	}
+);
+
+
+})( jQuery, window );
diff --git a/view/js/jquery.htmlstream.js b/view/js/jquery.htmlstream.js
new file mode 100644
index 000000000..c62c538f7
--- /dev/null
+++ b/view/js/jquery.htmlstream.js
@@ -0,0 +1,157 @@
+/* jQuery ajax stream plugin
+* Version 0.1
+* Copyright (C) 2009 Chris Tarquini
+* Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License (http://creativecommons.org/licenses/by-sa/3.0/)
+* Permissions beyond the scope of this license may be available by contacting petros000[at]hotmail.com.
+*/
+
+(function($) {
+
+// Save the original AJAX function
+var ajax_old = $.ajax;
+var get_old = $.get;
+var post_old =  $.post;
+var active = true;
+// Add our settings
+$.ajaxSetup({stream: false,pollInterval: 500/*, onDataRecieved: function(){}*/ });
+$.enableAjaxStream = function(enable)
+{
+if(typeof enable == 'undefined') enable = !active;
+if(!enable)
+{
+$.ajax = ajax_old;
+$.get = get_old;
+$.post = post_old;
+active = false;
+}
+else
+{
+$.ajax = ajax_stream;
+$.get = ajax_get_stream;
+$.post = ajax_post_stream;
+active = true;
+}
+
+}
+var ajax_stream = $.ajax = function(options)
+{
+//copied from original ajax function
+        options  = jQuery.extend(true, options, jQuery.extend(true, {}, jQuery.ajaxSettings, options));
+if(options.stream)
+{
+var timer = 0;
+var offset = 0;
+var xmlhttp = null;
+var lastlen = 0;
+var done = false;
+var hook = function(xhr)
+{
+xmlhttp = xhr;
+checkagain();
+}
+var fix = function(){ check('stream'); };// fixes weird bug with random numbers as arg
+var checkagain = function(){if(!done) timer = setTimeout(fix,options.pollInterval);}
+var check = function(status)
+{
+if(typeof status == 'undefined') status = "stream";
+if(xmlhttp.status < 3) return; //only get the latest packet if data has been sent
+var text = xmlhttp.responseText;
+if(status == 'stream') //if we arent streaming then just flush the buffer
+{
+if(text.length <= lastlen) { checkagain(); return;}
+lastlength = text.length;
+if(offset == text.length) { checkagain(); return;}
+}
+var pkt = text.substr(offset);
+offset =  text.length;
+if($.isFunction(options.OnDataRecieved))
+{
+options.OnDataRecieved(pkt, status, xmlhttp.responseText, xmlhttp);
+}
+if(xmlhttp.status != 4)
+checkagain();
+}
+var complete = function(xhr,s)
+{
+clearTimeout(timer);//done..stop polling
+done = true;
+// send final call
+check(s);
+}
+// If the complete callback is set create a new callback that calls the users and outs
+if($.isFunction(options.success))
+{
+var oc = options.success;
+options.success = function(xhr,s){ complete(xhr,s); oc(xhr,s);};
+
+}
+else options.success = complete;
+// Set up our hook on the beforeSend
+if($.isFunction(options.beforeSend))
+{
+var obs = options.beforeSend;
+options.beforeSend = function(xhr){ obs(xhr); hook(xhr);};
+}
+else options.beforeSend = hook;
+
+}
+ajax_old(options);
+}
+
+var ajax_get_stream = $.get = function(url,data,callback,type,stream)
+{
+	if($.isFunction(data))
+	{
+		var orgcb = callback;
+		callback = data;
+		if($.isFunction(orgcb))
+		{
+			stream = orgcb;
+		}
+		data = null;
+	}
+	if($.isFunction(type))
+	{
+		stream = type;
+		type = undefined;
+	}
+	var dostream = $.isFunction(stream);
+	return jQuery.ajax({
+					type: "GET",
+					url: url,
+					data: data,
+					success: callback,
+					dataType: type,
+					stream: dostream,
+					OnDataRecieved: stream
+			});
+
+}
+
+var ajax_post_stream = $.post = function(url,data,callback,type,stream)
+{
+        if($.isFunction(data))
+        {
+				var orgcb = callback;
+                callback = data;
+        }
+		if($.isFunction(type))
+		{
+			stream = type;
+			type = undefined;
+		}
+		var dostream = $.isFunction(stream);
+		return jQuery.ajax({
+				type: "POST",
+				url: url,
+				data: data,
+				success: callback,
+				dataType: type,
+				stream: dostream,
+				OnDataRecieved: stream
+		});
+
+}
+
+})(jQuery);	
+	
diff --git a/view/js/jquery.js b/view/js/jquery.js
new file mode 100644
index 000000000..006e95310
--- /dev/null
+++ b/view/js/jquery.js
@@ -0,0 +1,5 @@
+/*! jQuery v1.9.1 | (c) 2005, 2012 jQuery Foundation, Inc. | jquery.org/license
+//@ sourceMappingURL=jquery.min.map
+*/(function(e,t){var n,r,i=typeof t,o=e.document,a=e.location,s=e.jQuery,u=e.$,l={},c=[],p="1.9.1",f=c.concat,d=c.push,h=c.slice,g=c.indexOf,m=l.toString,y=l.hasOwnProperty,v=p.trim,b=function(e,t){return new b.fn.init(e,t,r)},x=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,w=/\S+/g,T=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,N=/^(?:(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,k=/^[\],:{}\s]*$/,E=/(?:^|:|,)(?:\s*\[)+/g,S=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,A=/"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g,j=/^-ms-/,D=/-([\da-z])/gi,L=function(e,t){return t.toUpperCase()},H=function(e){(o.addEventListener||"load"===e.type||"complete"===o.readyState)&&(q(),b.ready())},q=function(){o.addEventListener?(o.removeEventListener("DOMContentLoaded",H,!1),e.removeEventListener("load",H,!1)):(o.detachEvent("onreadystatechange",H),e.detachEvent("onload",H))};b.fn=b.prototype={jquery:p,constructor:b,init:function(e,n,r){var i,a;if(!e)return this;if("string"==typeof e){if(i="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:N.exec(e),!i||!i[1]&&n)return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e);if(i[1]){if(n=n instanceof b?n[0]:n,b.merge(this,b.parseHTML(i[1],n&&n.nodeType?n.ownerDocument||n:o,!0)),C.test(i[1])&&b.isPlainObject(n))for(i in n)b.isFunction(this[i])?this[i](n[i]):this.attr(i,n[i]);return this}if(a=o.getElementById(i[2]),a&&a.parentNode){if(a.id!==i[2])return r.find(e);this.length=1,this[0]=a}return this.context=o,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):b.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),b.makeArray(e,this))},selector:"",length:0,size:function(){return this.length},toArray:function(){return h.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=b.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return b.each(this,e,t)},ready:function(e){return b.ready.promise().done(e),this},slice:function(){return this.pushStack(h.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(b.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:d,sort:[].sort,splice:[].splice},b.fn.init.prototype=b.fn,b.extend=b.fn.extend=function(){var e,n,r,i,o,a,s=arguments[0]||{},u=1,l=arguments.length,c=!1;for("boolean"==typeof s&&(c=s,s=arguments[1]||{},u=2),"object"==typeof s||b.isFunction(s)||(s={}),l===u&&(s=this,--u);l>u;u++)if(null!=(o=arguments[u]))for(i in o)e=s[i],r=o[i],s!==r&&(c&&r&&(b.isPlainObject(r)||(n=b.isArray(r)))?(n?(n=!1,a=e&&b.isArray(e)?e:[]):a=e&&b.isPlainObject(e)?e:{},s[i]=b.extend(c,a,r)):r!==t&&(s[i]=r));return s},b.extend({noConflict:function(t){return e.$===b&&(e.$=u),t&&e.jQuery===b&&(e.jQuery=s),b},isReady:!1,readyWait:1,holdReady:function(e){e?b.readyWait++:b.ready(!0)},ready:function(e){if(e===!0?!--b.readyWait:!b.isReady){if(!o.body)return setTimeout(b.ready);b.isReady=!0,e!==!0&&--b.readyWait>0||(n.resolveWith(o,[b]),b.fn.trigger&&b(o).trigger("ready").off("ready"))}},isFunction:function(e){return"function"===b.type(e)},isArray:Array.isArray||function(e){return"array"===b.type(e)},isWindow:function(e){return null!=e&&e==e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?l[m.call(e)]||"object":typeof e},isPlainObject:function(e){if(!e||"object"!==b.type(e)||e.nodeType||b.isWindow(e))return!1;try{if(e.constructor&&!y.call(e,"constructor")&&!y.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(n){return!1}var r;for(r in e);return r===t||y.call(e,r)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||o;var r=C.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=b.buildFragment([e],t,i),i&&b(i).remove(),b.merge([],r.childNodes))},parseJSON:function(n){return e.JSON&&e.JSON.parse?e.JSON.parse(n):null===n?n:"string"==typeof n&&(n=b.trim(n),n&&k.test(n.replace(S,"@").replace(A,"]").replace(E,"")))?Function("return "+n)():(b.error("Invalid JSON: "+n),t)},parseXML:function(n){var r,i;if(!n||"string"!=typeof n)return null;try{e.DOMParser?(i=new DOMParser,r=i.parseFromString(n,"text/xml")):(r=new ActiveXObject("Microsoft.XMLDOM"),r.async="false",r.loadXML(n))}catch(o){r=t}return r&&r.documentElement&&!r.getElementsByTagName("parsererror").length||b.error("Invalid XML: "+n),r},noop:function(){},globalEval:function(t){t&&b.trim(t)&&(e.execScript||function(t){e.eval.call(e,t)})(t)},camelCase:function(e){return e.replace(j,"ms-").replace(D,L)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,o=e.length,a=M(e);if(n){if(a){for(;o>i;i++)if(r=t.apply(e[i],n),r===!1)break}else for(i in e)if(r=t.apply(e[i],n),r===!1)break}else if(a){for(;o>i;i++)if(r=t.call(e[i],i,e[i]),r===!1)break}else for(i in e)if(r=t.call(e[i],i,e[i]),r===!1)break;return e},trim:v&&!v.call("\ufeff\u00a0")?function(e){return null==e?"":v.call(e)}:function(e){return null==e?"":(e+"").replace(T,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(M(Object(e))?b.merge(n,"string"==typeof e?[e]:e):d.call(n,e)),n},inArray:function(e,t,n){var r;if(t){if(g)return g.call(t,e,n);for(r=t.length,n=n?0>n?Math.max(0,r+n):n:0;r>n;n++)if(n in t&&t[n]===e)return n}return-1},merge:function(e,n){var r=n.length,i=e.length,o=0;if("number"==typeof r)for(;r>o;o++)e[i++]=n[o];else while(n[o]!==t)e[i++]=n[o++];return e.length=i,e},grep:function(e,t,n){var r,i=[],o=0,a=e.length;for(n=!!n;a>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,n){var r,i=0,o=e.length,a=M(e),s=[];if(a)for(;o>i;i++)r=t(e[i],i,n),null!=r&&(s[s.length]=r);else for(i in e)r=t(e[i],i,n),null!=r&&(s[s.length]=r);return f.apply([],s)},guid:1,proxy:function(e,n){var r,i,o;return"string"==typeof n&&(o=e[n],n=e,e=o),b.isFunction(e)?(r=h.call(arguments,2),i=function(){return e.apply(n||this,r.concat(h.call(arguments)))},i.guid=e.guid=e.guid||b.guid++,i):t},access:function(e,n,r,i,o,a,s){var u=0,l=e.length,c=null==r;if("object"===b.type(r)){o=!0;for(u in r)b.access(e,n,u,r[u],!0,a,s)}else if(i!==t&&(o=!0,b.isFunction(i)||(s=!0),c&&(s?(n.call(e,i),n=null):(c=n,n=function(e,t,n){return c.call(b(e),n)})),n))for(;l>u;u++)n(e[u],r,s?i:i.call(e[u],u,n(e[u],r)));return o?e:c?n.call(e):l?n(e[0],r):a},now:function(){return(new Date).getTime()}}),b.ready.promise=function(t){if(!n)if(n=b.Deferred(),"complete"===o.readyState)setTimeout(b.ready);else if(o.addEventListener)o.addEventListener("DOMContentLoaded",H,!1),e.addEventListener("load",H,!1);else{o.attachEvent("onreadystatechange",H),e.attachEvent("onload",H);var r=!1;try{r=null==e.frameElement&&o.documentElement}catch(i){}r&&r.doScroll&&function a(){if(!b.isReady){try{r.doScroll("left")}catch(e){return setTimeout(a,50)}q(),b.ready()}}()}return n.promise(t)},b.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){l["[object "+t+"]"]=t.toLowerCase()});function M(e){var t=e.length,n=b.type(e);return b.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}r=b(o);var _={};function F(e){var t=_[e]={};return b.each(e.match(w)||[],function(e,n){t[n]=!0}),t}b.Callbacks=function(e){e="string"==typeof e?_[e]||F(e):b.extend({},e);var n,r,i,o,a,s,u=[],l=!e.once&&[],c=function(t){for(r=e.memory&&t,i=!0,a=s||0,s=0,o=u.length,n=!0;u&&o>a;a++)if(u[a].apply(t[0],t[1])===!1&&e.stopOnFalse){r=!1;break}n=!1,u&&(l?l.length&&c(l.shift()):r?u=[]:p.disable())},p={add:function(){if(u){var t=u.length;(function i(t){b.each(t,function(t,n){var r=b.type(n);"function"===r?e.unique&&p.has(n)||u.push(n):n&&n.length&&"string"!==r&&i(n)})})(arguments),n?o=u.length:r&&(s=t,c(r))}return this},remove:function(){return u&&b.each(arguments,function(e,t){var r;while((r=b.inArray(t,u,r))>-1)u.splice(r,1),n&&(o>=r&&o--,a>=r&&a--)}),this},has:function(e){return e?b.inArray(e,u)>-1:!(!u||!u.length)},empty:function(){return u=[],this},disable:function(){return u=l=r=t,this},disabled:function(){return!u},lock:function(){return l=t,r||p.disable(),this},locked:function(){return!l},fireWith:function(e,t){return t=t||[],t=[e,t.slice?t.slice():t],!u||i&&!l||(n?l.push(t):c(t)),this},fire:function(){return p.fireWith(this,arguments),this},fired:function(){return!!i}};return p},b.extend({Deferred:function(e){var t=[["resolve","done",b.Callbacks("once memory"),"resolved"],["reject","fail",b.Callbacks("once memory"),"rejected"],["notify","progress",b.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return b.Deferred(function(n){b.each(t,function(t,o){var a=o[0],s=b.isFunction(e[t])&&e[t];i[o[1]](function(){var e=s&&s.apply(this,arguments);e&&b.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[a+"With"](this===r?n.promise():this,s?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?b.extend(e,r):r}},i={};return r.pipe=r.then,b.each(t,function(e,o){var a=o[2],s=o[3];r[o[1]]=a.add,s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=a.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=h.call(arguments),r=n.length,i=1!==r||e&&b.isFunction(e.promise)?r:0,o=1===i?e:b.Deferred(),a=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?h.call(arguments):r,n===s?o.notifyWith(t,n):--i||o.resolveWith(t,n)}},s,u,l;if(r>1)for(s=Array(r),u=Array(r),l=Array(r);r>t;t++)n[t]&&b.isFunction(n[t].promise)?n[t].promise().done(a(t,l,n)).fail(o.reject).progress(a(t,u,s)):--i;return i||o.resolveWith(l,n),o.promise()}}),b.support=function(){var t,n,r,a,s,u,l,c,p,f,d=o.createElement("div");if(d.setAttribute("className","t"),d.innerHTML="  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",n=d.getElementsByTagName("*"),r=d.getElementsByTagName("a")[0],!n||!r||!n.length)return{};s=o.createElement("select"),l=s.appendChild(o.createElement("option")),a=d.getElementsByTagName("input")[0],r.style.cssText="top:1px;float:left;opacity:.5",t={getSetAttribute:"t"!==d.className,leadingWhitespace:3===d.firstChild.nodeType,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/top/.test(r.getAttribute("style")),hrefNormalized:"/a"===r.getAttribute("href"),opacity:/^0.5/.test(r.style.opacity),cssFloat:!!r.style.cssFloat,checkOn:!!a.value,optSelected:l.selected,enctype:!!o.createElement("form").enctype,html5Clone:"<:nav></:nav>"!==o.createElement("nav").cloneNode(!0).outerHTML,boxModel:"CSS1Compat"===o.compatMode,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},a.checked=!0,t.noCloneChecked=a.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!l.disabled;try{delete d.test}catch(h){t.deleteExpando=!1}a=o.createElement("input"),a.setAttribute("value",""),t.input=""===a.getAttribute("value"),a.value="t",a.setAttribute("type","radio"),t.radioValue="t"===a.value,a.setAttribute("checked","t"),a.setAttribute("name","t"),u=o.createDocumentFragment(),u.appendChild(a),t.appendChecked=a.checked,t.checkClone=u.cloneNode(!0).cloneNode(!0).lastChild.checked,d.attachEvent&&(d.attachEvent("onclick",function(){t.noCloneEvent=!1}),d.cloneNode(!0).click());for(f in{submit:!0,change:!0,focusin:!0})d.setAttribute(c="on"+f,"t"),t[f+"Bubbles"]=c in e||d.attributes[c].expando===!1;return d.style.backgroundClip="content-box",d.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===d.style.backgroundClip,b(function(){var n,r,a,s="padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;",u=o.getElementsByTagName("body")[0];u&&(n=o.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",u.appendChild(n).appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",a=d.getElementsByTagName("td"),a[0].style.cssText="padding:0;margin:0;border:0;display:none",p=0===a[0].offsetHeight,a[0].style.display="",a[1].style.display="none",t.reliableHiddenOffsets=p&&0===a[0].offsetHeight,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",t.boxSizing=4===d.offsetWidth,t.doesNotIncludeMarginInBodyOffset=1!==u.offsetTop,e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(d,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(d,null)||{width:"4px"}).width,r=d.appendChild(o.createElement("div")),r.style.cssText=d.style.cssText=s,r.style.marginRight=r.style.width="0",d.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),typeof d.style.zoom!==i&&(d.innerHTML="",d.style.cssText=s+"width:1px;padding:1px;display:inline;zoom:1",t.inlineBlockNeedsLayout=3===d.offsetWidth,d.style.display="block",d.innerHTML="<div></div>",d.firstChild.style.width="5px",t.shrinkWrapBlocks=3!==d.offsetWidth,t.inlineBlockNeedsLayout&&(u.style.zoom=1)),u.removeChild(n),n=d=a=r=null)}),n=s=u=l=r=a=null,t}();var O=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,B=/([A-Z])/g;function P(e,n,r,i){if(b.acceptData(e)){var o,a,s=b.expando,u="string"==typeof n,l=e.nodeType,p=l?b.cache:e,f=l?e[s]:e[s]&&s;if(f&&p[f]&&(i||p[f].data)||!u||r!==t)return f||(l?e[s]=f=c.pop()||b.guid++:f=s),p[f]||(p[f]={},l||(p[f].toJSON=b.noop)),("object"==typeof n||"function"==typeof n)&&(i?p[f]=b.extend(p[f],n):p[f].data=b.extend(p[f].data,n)),o=p[f],i||(o.data||(o.data={}),o=o.data),r!==t&&(o[b.camelCase(n)]=r),u?(a=o[n],null==a&&(a=o[b.camelCase(n)])):a=o,a}}function R(e,t,n){if(b.acceptData(e)){var r,i,o,a=e.nodeType,s=a?b.cache:e,u=a?e[b.expando]:b.expando;if(s[u]){if(t&&(o=n?s[u]:s[u].data)){b.isArray(t)?t=t.concat(b.map(t,b.camelCase)):t in o?t=[t]:(t=b.camelCase(t),t=t in o?[t]:t.split(" "));for(r=0,i=t.length;i>r;r++)delete o[t[r]];if(!(n?$:b.isEmptyObject)(o))return}(n||(delete s[u].data,$(s[u])))&&(a?b.cleanData([e],!0):b.support.deleteExpando||s!=s.window?delete s[u]:s[u]=null)}}}b.extend({cache:{},expando:"jQuery"+(p+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(e){return e=e.nodeType?b.cache[e[b.expando]]:e[b.expando],!!e&&!$(e)},data:function(e,t,n){return P(e,t,n)},removeData:function(e,t){return R(e,t)},_data:function(e,t,n){return P(e,t,n,!0)},_removeData:function(e,t){return R(e,t,!0)},acceptData:function(e){if(e.nodeType&&1!==e.nodeType&&9!==e.nodeType)return!1;var t=e.nodeName&&b.noData[e.nodeName.toLowerCase()];return!t||t!==!0&&e.getAttribute("classid")===t}}),b.fn.extend({data:function(e,n){var r,i,o=this[0],a=0,s=null;if(e===t){if(this.length&&(s=b.data(o),1===o.nodeType&&!b._data(o,"parsedAttrs"))){for(r=o.attributes;r.length>a;a++)i=r[a].name,i.indexOf("data-")||(i=b.camelCase(i.slice(5)),W(o,i,s[i]));b._data(o,"parsedAttrs",!0)}return s}return"object"==typeof e?this.each(function(){b.data(this,e)}):b.access(this,function(n){return n===t?o?W(o,e,b.data(o,e)):null:(this.each(function(){b.data(this,e,n)}),t)},null,n,arguments.length>1,null,!0)},removeData:function(e){return this.each(function(){b.removeData(this,e)})}});function W(e,n,r){if(r===t&&1===e.nodeType){var i="data-"+n.replace(B,"-$1").toLowerCase();if(r=e.getAttribute(i),"string"==typeof r){try{r="true"===r?!0:"false"===r?!1:"null"===r?null:+r+""===r?+r:O.test(r)?b.parseJSON(r):r}catch(o){}b.data(e,n,r)}else r=t}return r}function $(e){var t;for(t in e)if(("data"!==t||!b.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}b.extend({queue:function(e,n,r){var i;return e?(n=(n||"fx")+"queue",i=b._data(e,n),r&&(!i||b.isArray(r)?i=b._data(e,n,b.makeArray(r)):i.push(r)),i||[]):t},dequeue:function(e,t){t=t||"fx";var n=b.queue(e,t),r=n.length,i=n.shift(),o=b._queueHooks(e,t),a=function(){b.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),o.cur=i,i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return b._data(e,n)||b._data(e,n,{empty:b.Callbacks("once memory").add(function(){b._removeData(e,t+"queue"),b._removeData(e,n)})})}}),b.fn.extend({queue:function(e,n){var r=2;return"string"!=typeof e&&(n=e,e="fx",r--),r>arguments.length?b.queue(this[0],e):n===t?this:this.each(function(){var t=b.queue(this,e,n);b._queueHooks(this,e),"fx"===e&&"inprogress"!==t[0]&&b.dequeue(this,e)})},dequeue:function(e){return this.each(function(){b.dequeue(this,e)})},delay:function(e,t){return e=b.fx?b.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,n){var r,i=1,o=b.Deferred(),a=this,s=this.length,u=function(){--i||o.resolveWith(a,[a])};"string"!=typeof e&&(n=e,e=t),e=e||"fx";while(s--)r=b._data(a[s],e+"queueHooks"),r&&r.empty&&(i++,r.empty.add(u));return u(),o.promise(n)}});var I,z,X=/[\t\r\n]/g,U=/\r/g,V=/^(?:input|select|textarea|button|object)$/i,Y=/^(?:a|area)$/i,J=/^(?:checked|selected|autofocus|autoplay|async|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped)$/i,G=/^(?:checked|selected)$/i,Q=b.support.getSetAttribute,K=b.support.input;b.fn.extend({attr:function(e,t){return b.access(this,b.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){b.removeAttr(this,e)})},prop:function(e,t){return b.access(this,b.prop,e,t,arguments.length>1)},removeProp:function(e){return e=b.propFix[e]||e,this.each(function(){try{this[e]=t,delete this[e]}catch(n){}})},addClass:function(e){var t,n,r,i,o,a=0,s=this.length,u="string"==typeof e&&e;if(b.isFunction(e))return this.each(function(t){b(this).addClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(X," "):" ")){o=0;while(i=t[o++])0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=b.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,a=0,s=this.length,u=0===arguments.length||"string"==typeof e&&e;if(b.isFunction(e))return this.each(function(t){b(this).removeClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(X," "):"")){o=0;while(i=t[o++])while(r.indexOf(" "+i+" ")>=0)r=r.replace(" "+i+" "," ");n.className=e?b.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e,r="boolean"==typeof t;return b.isFunction(e)?this.each(function(n){b(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n){var o,a=0,s=b(this),u=t,l=e.match(w)||[];while(o=l[a++])u=r?u:!s.hasClass(o),s[u?"addClass":"removeClass"](o)}else(n===i||"boolean"===n)&&(this.className&&b._data(this,"__className__",this.className),this.className=this.className||e===!1?"":b._data(this,"__className__")||"")})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(X," ").indexOf(t)>=0)return!0;return!1},val:function(e){var n,r,i,o=this[0];{if(arguments.length)return i=b.isFunction(e),this.each(function(n){var o,a=b(this);1===this.nodeType&&(o=i?e.call(this,n,a.val()):e,null==o?o="":"number"==typeof o?o+="":b.isArray(o)&&(o=b.map(o,function(e){return null==e?"":e+""})),r=b.valHooks[this.type]||b.valHooks[this.nodeName.toLowerCase()],r&&"set"in r&&r.set(this,o,"value")!==t||(this.value=o))});if(o)return r=b.valHooks[o.type]||b.valHooks[o.nodeName.toLowerCase()],r&&"get"in r&&(n=r.get(o,"value"))!==t?n:(n=o.value,"string"==typeof n?n.replace(U,""):null==n?"":n)}}}),b.extend({valHooks:{option:{get:function(e){var t=e.attributes.value;return!t||t.specified?e.value:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,a=o?null:[],s=o?i+1:r.length,u=0>i?s:o?i:0;for(;s>u;u++)if(n=r[u],!(!n.selected&&u!==i||(b.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&b.nodeName(n.parentNode,"optgroup"))){if(t=b(n).val(),o)return t;a.push(t)}return a},set:function(e,t){var n=b.makeArray(t);return b(e).find("option").each(function(){this.selected=b.inArray(b(this).val(),n)>=0}),n.length||(e.selectedIndex=-1),n}}},attr:function(e,n,r){var o,a,s,u=e.nodeType;if(e&&3!==u&&8!==u&&2!==u)return typeof e.getAttribute===i?b.prop(e,n,r):(a=1!==u||!b.isXMLDoc(e),a&&(n=n.toLowerCase(),o=b.attrHooks[n]||(J.test(n)?z:I)),r===t?o&&a&&"get"in o&&null!==(s=o.get(e,n))?s:(typeof e.getAttribute!==i&&(s=e.getAttribute(n)),null==s?t:s):null!==r?o&&a&&"set"in o&&(s=o.set(e,r,n))!==t?s:(e.setAttribute(n,r+""),r):(b.removeAttr(e,n),t))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(w);if(o&&1===e.nodeType)while(n=o[i++])r=b.propFix[n]||n,J.test(n)?!Q&&G.test(n)?e[b.camelCase("default-"+n)]=e[r]=!1:e[r]=!1:b.attr(e,n,""),e.removeAttribute(Q?n:r)},attrHooks:{type:{set:function(e,t){if(!b.support.radioValue&&"radio"===t&&b.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(e,n,r){var i,o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return a=1!==s||!b.isXMLDoc(e),a&&(n=b.propFix[n]||n,o=b.propHooks[n]),r!==t?o&&"set"in o&&(i=o.set(e,r,n))!==t?i:e[n]=r:o&&"get"in o&&null!==(i=o.get(e,n))?i:e[n]},propHooks:{tabIndex:{get:function(e){var n=e.getAttributeNode("tabindex");return n&&n.specified?parseInt(n.value,10):V.test(e.nodeName)||Y.test(e.nodeName)&&e.href?0:t}}}}),z={get:function(e,n){var r=b.prop(e,n),i="boolean"==typeof r&&e.getAttribute(n),o="boolean"==typeof r?K&&Q?null!=i:G.test(n)?e[b.camelCase("default-"+n)]:!!i:e.getAttributeNode(n);return o&&o.value!==!1?n.toLowerCase():t},set:function(e,t,n){return t===!1?b.removeAttr(e,n):K&&Q||!G.test(n)?e.setAttribute(!Q&&b.propFix[n]||n,n):e[b.camelCase("default-"+n)]=e[n]=!0,n}},K&&Q||(b.attrHooks.value={get:function(e,n){var r=e.getAttributeNode(n);return b.nodeName(e,"input")?e.defaultValue:r&&r.specified?r.value:t},set:function(e,n,r){return b.nodeName(e,"input")?(e.defaultValue=n,t):I&&I.set(e,n,r)}}),Q||(I=b.valHooks.button={get:function(e,n){var r=e.getAttributeNode(n);return r&&("id"===n||"name"===n||"coords"===n?""!==r.value:r.specified)?r.value:t},set:function(e,n,r){var i=e.getAttributeNode(r);return i||e.setAttributeNode(i=e.ownerDocument.createAttribute(r)),i.value=n+="","value"===r||n===e.getAttribute(r)?n:t}},b.attrHooks.contenteditable={get:I.get,set:function(e,t,n){I.set(e,""===t?!1:t,n)}},b.each(["width","height"],function(e,n){b.attrHooks[n]=b.extend(b.attrHooks[n],{set:function(e,r){return""===r?(e.setAttribute(n,"auto"),r):t}})})),b.support.hrefNormalized||(b.each(["href","src","width","height"],function(e,n){b.attrHooks[n]=b.extend(b.attrHooks[n],{get:function(e){var r=e.getAttribute(n,2);return null==r?t:r}})}),b.each(["href","src"],function(e,t){b.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}})),b.support.style||(b.attrHooks.style={get:function(e){return e.style.cssText||t},set:function(e,t){return e.style.cssText=t+""}}),b.support.optSelected||(b.propHooks.selected=b.extend(b.propHooks.selected,{get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}})),b.support.enctype||(b.propFix.enctype="encoding"),b.support.checkOn||b.each(["radio","checkbox"],function(){b.valHooks[this]={get:function(e){return null===e.getAttribute("value")?"on":e.value}}}),b.each(["radio","checkbox"],function(){b.valHooks[this]=b.extend(b.valHooks[this],{set:function(e,n){return b.isArray(n)?e.checked=b.inArray(b(e).val(),n)>=0:t}})});var Z=/^(?:input|select|textarea)$/i,et=/^key/,tt=/^(?:mouse|contextmenu)|click/,nt=/^(?:focusinfocus|focusoutblur)$/,rt=/^([^.]*)(?:\.(.+)|)$/;function it(){return!0}function ot(){return!1}b.event={global:{},add:function(e,n,r,o,a){var s,u,l,c,p,f,d,h,g,m,y,v=b._data(e);if(v){r.handler&&(c=r,r=c.handler,a=c.selector),r.guid||(r.guid=b.guid++),(u=v.events)||(u=v.events={}),(f=v.handle)||(f=v.handle=function(e){return typeof b===i||e&&b.event.triggered===e.type?t:b.event.dispatch.apply(f.elem,arguments)},f.elem=e),n=(n||"").match(w)||[""],l=n.length;while(l--)s=rt.exec(n[l])||[],g=y=s[1],m=(s[2]||"").split(".").sort(),p=b.event.special[g]||{},g=(a?p.delegateType:p.bindType)||g,p=b.event.special[g]||{},d=b.extend({type:g,origType:y,data:o,handler:r,guid:r.guid,selector:a,needsContext:a&&b.expr.match.needsContext.test(a),namespace:m.join(".")},c),(h=u[g])||(h=u[g]=[],h.delegateCount=0,p.setup&&p.setup.call(e,o,m,f)!==!1||(e.addEventListener?e.addEventListener(g,f,!1):e.attachEvent&&e.attachEvent("on"+g,f))),p.add&&(p.add.call(e,d),d.handler.guid||(d.handler.guid=r.guid)),a?h.splice(h.delegateCount++,0,d):h.push(d),b.event.global[g]=!0;e=null}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,p,f,d,h,g,m=b.hasData(e)&&b._data(e);if(m&&(c=m.events)){t=(t||"").match(w)||[""],l=t.length;while(l--)if(s=rt.exec(t[l])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){p=b.event.special[d]||{},d=(r?p.delegateType:p.bindType)||d,f=c[d]||[],s=s[2]&&RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),u=o=f.length;while(o--)a=f[o],!i&&g!==a.origType||n&&n.guid!==a.guid||s&&!s.test(a.namespace)||r&&r!==a.selector&&("**"!==r||!a.selector)||(f.splice(o,1),a.selector&&f.delegateCount--,p.remove&&p.remove.call(e,a));u&&!f.length&&(p.teardown&&p.teardown.call(e,h,m.handle)!==!1||b.removeEvent(e,d,m.handle),delete c[d])}else for(d in c)b.event.remove(e,d+t[l],n,r,!0);b.isEmptyObject(c)&&(delete m.handle,b._removeData(e,"events"))}},trigger:function(n,r,i,a){var s,u,l,c,p,f,d,h=[i||o],g=y.call(n,"type")?n.type:n,m=y.call(n,"namespace")?n.namespace.split("."):[];if(l=f=i=i||o,3!==i.nodeType&&8!==i.nodeType&&!nt.test(g+b.event.triggered)&&(g.indexOf(".")>=0&&(m=g.split("."),g=m.shift(),m.sort()),u=0>g.indexOf(":")&&"on"+g,n=n[b.expando]?n:new b.Event(g,"object"==typeof n&&n),n.isTrigger=!0,n.namespace=m.join("."),n.namespace_re=n.namespace?RegExp("(^|\\.)"+m.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,n.result=t,n.target||(n.target=i),r=null==r?[n]:b.makeArray(r,[n]),p=b.event.special[g]||{},a||!p.trigger||p.trigger.apply(i,r)!==!1)){if(!a&&!p.noBubble&&!b.isWindow(i)){for(c=p.delegateType||g,nt.test(c+g)||(l=l.parentNode);l;l=l.parentNode)h.push(l),f=l;f===(i.ownerDocument||o)&&h.push(f.defaultView||f.parentWindow||e)}d=0;while((l=h[d++])&&!n.isPropagationStopped())n.type=d>1?c:p.bindType||g,s=(b._data(l,"events")||{})[n.type]&&b._data(l,"handle"),s&&s.apply(l,r),s=u&&l[u],s&&b.acceptData(l)&&s.apply&&s.apply(l,r)===!1&&n.preventDefault();if(n.type=g,!(a||n.isDefaultPrevented()||p._default&&p._default.apply(i.ownerDocument,r)!==!1||"click"===g&&b.nodeName(i,"a")||!b.acceptData(i)||!u||!i[g]||b.isWindow(i))){f=i[u],f&&(i[u]=null),b.event.triggered=g;try{i[g]()}catch(v){}b.event.triggered=t,f&&(i[u]=f)}return n.result}},dispatch:function(e){e=b.event.fix(e);var n,r,i,o,a,s=[],u=h.call(arguments),l=(b._data(this,"events")||{})[e.type]||[],c=b.event.special[e.type]||{};if(u[0]=e,e.delegateTarget=this,!c.preDispatch||c.preDispatch.call(this,e)!==!1){s=b.event.handlers.call(this,e,l),n=0;while((o=s[n++])&&!e.isPropagationStopped()){e.currentTarget=o.elem,a=0;while((i=o.handlers[a++])&&!e.isImmediatePropagationStopped())(!e.namespace_re||e.namespace_re.test(i.namespace))&&(e.handleObj=i,e.data=i.data,r=((b.event.special[i.origType]||{}).handle||i.handler).apply(o.elem,u),r!==t&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,e),e.result}},handlers:function(e,n){var r,i,o,a,s=[],u=n.delegateCount,l=e.target;if(u&&l.nodeType&&(!e.button||"click"!==e.type))for(;l!=this;l=l.parentNode||this)if(1===l.nodeType&&(l.disabled!==!0||"click"!==e.type)){for(o=[],a=0;u>a;a++)i=n[a],r=i.selector+" ",o[r]===t&&(o[r]=i.needsContext?b(r,this).index(l)>=0:b.find(r,this,null,[l]).length),o[r]&&o.push(i);o.length&&s.push({elem:l,handlers:o})}return n.length>u&&s.push({elem:this,handlers:n.slice(u)}),s},fix:function(e){if(e[b.expando])return e;var t,n,r,i=e.type,a=e,s=this.fixHooks[i];s||(this.fixHooks[i]=s=tt.test(i)?this.mouseHooks:et.test(i)?this.keyHooks:{}),r=s.props?this.props.concat(s.props):this.props,e=new b.Event(a),t=r.length;while(t--)n=r[t],e[n]=a[n];return e.target||(e.target=a.srcElement||o),3===e.target.nodeType&&(e.target=e.target.parentNode),e.metaKey=!!e.metaKey,s.filter?s.filter(e,a):e},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,n){var r,i,a,s=n.button,u=n.fromElement;return null==e.pageX&&null!=n.clientX&&(i=e.target.ownerDocument||o,a=i.documentElement,r=i.body,e.pageX=n.clientX+(a&&a.scrollLeft||r&&r.scrollLeft||0)-(a&&a.clientLeft||r&&r.clientLeft||0),e.pageY=n.clientY+(a&&a.scrollTop||r&&r.scrollTop||0)-(a&&a.clientTop||r&&r.clientTop||0)),!e.relatedTarget&&u&&(e.relatedTarget=u===e.target?n.toElement:u),e.which||s===t||(e.which=1&s?1:2&s?3:4&s?2:0),e}},special:{load:{noBubble:!0},click:{trigger:function(){return b.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):t}},focus:{trigger:function(){if(this!==o.activeElement&&this.focus)try{return this.focus(),!1}catch(e){}},delegateType:"focusin"},blur:{trigger:function(){return this===o.activeElement&&this.blur?(this.blur(),!1):t},delegateType:"focusout"},beforeunload:{postDispatch:function(e){e.result!==t&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=b.extend(new b.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?b.event.trigger(i,null,t):b.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},b.removeEvent=o.removeEventListener?function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)}:function(e,t,n){var r="on"+t;e.detachEvent&&(typeof e[r]===i&&(e[r]=null),e.detachEvent(r,n))},b.Event=function(e,n){return this instanceof b.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.returnValue===!1||e.getPreventDefault&&e.getPreventDefault()?it:ot):this.type=e,n&&b.extend(this,n),this.timeStamp=e&&e.timeStamp||b.now(),this[b.expando]=!0,t):new b.Event(e,n)},b.Event.prototype={isDefaultPrevented:ot,isPropagationStopped:ot,isImmediatePropagationStopped:ot,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=it,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=it,e&&(e.stopPropagation&&e.stopPropagation(),e.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=it,this.stopPropagation()}},b.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){b.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;
+return(!i||i!==r&&!b.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),b.support.submitBubbles||(b.event.special.submit={setup:function(){return b.nodeName(this,"form")?!1:(b.event.add(this,"click._submit keypress._submit",function(e){var n=e.target,r=b.nodeName(n,"input")||b.nodeName(n,"button")?n.form:t;r&&!b._data(r,"submitBubbles")&&(b.event.add(r,"submit._submit",function(e){e._submit_bubble=!0}),b._data(r,"submitBubbles",!0))}),t)},postDispatch:function(e){e._submit_bubble&&(delete e._submit_bubble,this.parentNode&&!e.isTrigger&&b.event.simulate("submit",this.parentNode,e,!0))},teardown:function(){return b.nodeName(this,"form")?!1:(b.event.remove(this,"._submit"),t)}}),b.support.changeBubbles||(b.event.special.change={setup:function(){return Z.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(b.event.add(this,"propertychange._change",function(e){"checked"===e.originalEvent.propertyName&&(this._just_changed=!0)}),b.event.add(this,"click._change",function(e){this._just_changed&&!e.isTrigger&&(this._just_changed=!1),b.event.simulate("change",this,e,!0)})),!1):(b.event.add(this,"beforeactivate._change",function(e){var t=e.target;Z.test(t.nodeName)&&!b._data(t,"changeBubbles")&&(b.event.add(t,"change._change",function(e){!this.parentNode||e.isSimulated||e.isTrigger||b.event.simulate("change",this.parentNode,e,!0)}),b._data(t,"changeBubbles",!0))}),t)},handle:function(e){var n=e.target;return this!==n||e.isSimulated||e.isTrigger||"radio"!==n.type&&"checkbox"!==n.type?e.handleObj.handler.apply(this,arguments):t},teardown:function(){return b.event.remove(this,"._change"),!Z.test(this.nodeName)}}),b.support.focusinBubbles||b.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){b.event.simulate(t,e.target,b.event.fix(e),!0)};b.event.special[t]={setup:function(){0===n++&&o.addEventListener(e,r,!0)},teardown:function(){0===--n&&o.removeEventListener(e,r,!0)}}}),b.fn.extend({on:function(e,n,r,i,o){var a,s;if("object"==typeof e){"string"!=typeof n&&(r=r||n,n=t);for(a in e)this.on(a,n,r,e[a],o);return this}if(null==r&&null==i?(i=n,r=n=t):null==i&&("string"==typeof n?(i=r,r=t):(i=r,r=n,n=t)),i===!1)i=ot;else if(!i)return this;return 1===o&&(s=i,i=function(e){return b().off(e),s.apply(this,arguments)},i.guid=s.guid||(s.guid=b.guid++)),this.each(function(){b.event.add(this,e,i,r,n)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,n,r){var i,o;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,b(e.delegateTarget).off(i.namespace?i.origType+"."+i.namespace:i.origType,i.selector,i.handler),this;if("object"==typeof e){for(o in e)this.off(o,n,e[o]);return this}return(n===!1||"function"==typeof n)&&(r=n,n=t),r===!1&&(r=ot),this.each(function(){b.event.remove(this,e,r,n)})},bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},trigger:function(e,t){return this.each(function(){b.event.trigger(e,t,this)})},triggerHandler:function(e,n){var r=this[0];return r?b.event.trigger(e,n,r,!0):t}}),function(e,t){var n,r,i,o,a,s,u,l,c,p,f,d,h,g,m,y,v,x="sizzle"+-new Date,w=e.document,T={},N=0,C=0,k=it(),E=it(),S=it(),A=typeof t,j=1<<31,D=[],L=D.pop,H=D.push,q=D.slice,M=D.indexOf||function(e){var t=0,n=this.length;for(;n>t;t++)if(this[t]===e)return t;return-1},_="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=F.replace("w","w#"),B="([*^$|!~]?=)",P="\\["+_+"*("+F+")"+_+"*(?:"+B+_+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+O+")|)|)"+_+"*\\]",R=":("+F+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+P.replace(3,8)+")*)|.*)\\)|)",W=RegExp("^"+_+"+|((?:^|[^\\\\])(?:\\\\.)*)"+_+"+$","g"),$=RegExp("^"+_+"*,"+_+"*"),I=RegExp("^"+_+"*([\\x20\\t\\r\\n\\f>+~])"+_+"*"),z=RegExp(R),X=RegExp("^"+O+"$"),U={ID:RegExp("^#("+F+")"),CLASS:RegExp("^\\.("+F+")"),NAME:RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:RegExp("^("+F.replace("w","w*")+")"),ATTR:RegExp("^"+P),PSEUDO:RegExp("^"+R),CHILD:RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+_+"*(even|odd|(([+-]|)(\\d*)n|)"+_+"*(?:([+-]|)"+_+"*(\\d+)|))"+_+"*\\)|)","i"),needsContext:RegExp("^"+_+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+_+"*((?:-\\d)?\\d*)"+_+"*\\)|)(?=[^-]|$)","i")},V=/[\x20\t\r\n\f]*[+~]/,Y=/^[^{]+\{\s*\[native code/,J=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,G=/^(?:input|select|textarea|button)$/i,Q=/^h\d$/i,K=/'|\\/g,Z=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,et=/\\([\da-fA-F]{1,6}[\x20\t\r\n\f]?|.)/g,tt=function(e,t){var n="0x"+t-65536;return n!==n?t:0>n?String.fromCharCode(n+65536):String.fromCharCode(55296|n>>10,56320|1023&n)};try{q.call(w.documentElement.childNodes,0)[0].nodeType}catch(nt){q=function(e){var t,n=[];while(t=this[e++])n.push(t);return n}}function rt(e){return Y.test(e+"")}function it(){var e,t=[];return e=function(n,r){return t.push(n+=" ")>i.cacheLength&&delete e[t.shift()],e[n]=r}}function ot(e){return e[x]=!0,e}function at(e){var t=p.createElement("div");try{return e(t)}catch(n){return!1}finally{t=null}}function st(e,t,n,r){var i,o,a,s,u,l,f,g,m,v;if((t?t.ownerDocument||t:w)!==p&&c(t),t=t||p,n=n||[],!e||"string"!=typeof e)return n;if(1!==(s=t.nodeType)&&9!==s)return[];if(!d&&!r){if(i=J.exec(e))if(a=i[1]){if(9===s){if(o=t.getElementById(a),!o||!o.parentNode)return n;if(o.id===a)return n.push(o),n}else if(t.ownerDocument&&(o=t.ownerDocument.getElementById(a))&&y(t,o)&&o.id===a)return n.push(o),n}else{if(i[2])return H.apply(n,q.call(t.getElementsByTagName(e),0)),n;if((a=i[3])&&T.getByClassName&&t.getElementsByClassName)return H.apply(n,q.call(t.getElementsByClassName(a),0)),n}if(T.qsa&&!h.test(e)){if(f=!0,g=x,m=t,v=9===s&&e,1===s&&"object"!==t.nodeName.toLowerCase()){l=ft(e),(f=t.getAttribute("id"))?g=f.replace(K,"\\$&"):t.setAttribute("id",g),g="[id='"+g+"'] ",u=l.length;while(u--)l[u]=g+dt(l[u]);m=V.test(e)&&t.parentNode||t,v=l.join(",")}if(v)try{return H.apply(n,q.call(m.querySelectorAll(v),0)),n}catch(b){}finally{f||t.removeAttribute("id")}}}return wt(e.replace(W,"$1"),t,n,r)}a=st.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},c=st.setDocument=function(e){var n=e?e.ownerDocument||e:w;return n!==p&&9===n.nodeType&&n.documentElement?(p=n,f=n.documentElement,d=a(n),T.tagNameNoComments=at(function(e){return e.appendChild(n.createComment("")),!e.getElementsByTagName("*").length}),T.attributes=at(function(e){e.innerHTML="<select></select>";var t=typeof e.lastChild.getAttribute("multiple");return"boolean"!==t&&"string"!==t}),T.getByClassName=at(function(e){return e.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",e.getElementsByClassName&&e.getElementsByClassName("e").length?(e.lastChild.className="e",2===e.getElementsByClassName("e").length):!1}),T.getByName=at(function(e){e.id=x+0,e.innerHTML="<a name='"+x+"'></a><div name='"+x+"'></div>",f.insertBefore(e,f.firstChild);var t=n.getElementsByName&&n.getElementsByName(x).length===2+n.getElementsByName(x+0).length;return T.getIdNotName=!n.getElementById(x),f.removeChild(e),t}),i.attrHandle=at(function(e){return e.innerHTML="<a href='#'></a>",e.firstChild&&typeof e.firstChild.getAttribute!==A&&"#"===e.firstChild.getAttribute("href")})?{}:{href:function(e){return e.getAttribute("href",2)},type:function(e){return e.getAttribute("type")}},T.getIdNotName?(i.find.ID=function(e,t){if(typeof t.getElementById!==A&&!d){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},i.filter.ID=function(e){var t=e.replace(et,tt);return function(e){return e.getAttribute("id")===t}}):(i.find.ID=function(e,n){if(typeof n.getElementById!==A&&!d){var r=n.getElementById(e);return r?r.id===e||typeof r.getAttributeNode!==A&&r.getAttributeNode("id").value===e?[r]:t:[]}},i.filter.ID=function(e){var t=e.replace(et,tt);return function(e){var n=typeof e.getAttributeNode!==A&&e.getAttributeNode("id");return n&&n.value===t}}),i.find.TAG=T.tagNameNoComments?function(e,n){return typeof n.getElementsByTagName!==A?n.getElementsByTagName(e):t}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},i.find.NAME=T.getByName&&function(e,n){return typeof n.getElementsByName!==A?n.getElementsByName(name):t},i.find.CLASS=T.getByClassName&&function(e,n){return typeof n.getElementsByClassName===A||d?t:n.getElementsByClassName(e)},g=[],h=[":focus"],(T.qsa=rt(n.querySelectorAll))&&(at(function(e){e.innerHTML="<select><option selected=''></option></select>",e.querySelectorAll("[selected]").length||h.push("\\["+_+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),e.querySelectorAll(":checked").length||h.push(":checked")}),at(function(e){e.innerHTML="<input type='hidden' i=''/>",e.querySelectorAll("[i^='']").length&&h.push("[*^$]="+_+"*(?:\"\"|'')"),e.querySelectorAll(":enabled").length||h.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),h.push(",.*:")})),(T.matchesSelector=rt(m=f.matchesSelector||f.mozMatchesSelector||f.webkitMatchesSelector||f.oMatchesSelector||f.msMatchesSelector))&&at(function(e){T.disconnectedMatch=m.call(e,"div"),m.call(e,"[s!='']:x"),g.push("!=",R)}),h=RegExp(h.join("|")),g=RegExp(g.join("|")),y=rt(f.contains)||f.compareDocumentPosition?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},v=f.compareDocumentPosition?function(e,t){var r;return e===t?(u=!0,0):(r=t.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(t))?1&r||e.parentNode&&11===e.parentNode.nodeType?e===n||y(w,e)?-1:t===n||y(w,t)?1:0:4&r?-1:1:e.compareDocumentPosition?-1:1}:function(e,t){var r,i=0,o=e.parentNode,a=t.parentNode,s=[e],l=[t];if(e===t)return u=!0,0;if(!o||!a)return e===n?-1:t===n?1:o?-1:a?1:0;if(o===a)return ut(e,t);r=e;while(r=r.parentNode)s.unshift(r);r=t;while(r=r.parentNode)l.unshift(r);while(s[i]===l[i])i++;return i?ut(s[i],l[i]):s[i]===w?-1:l[i]===w?1:0},u=!1,[0,0].sort(v),T.detectDuplicates=u,p):p},st.matches=function(e,t){return st(e,null,null,t)},st.matchesSelector=function(e,t){if((e.ownerDocument||e)!==p&&c(e),t=t.replace(Z,"='$1']"),!(!T.matchesSelector||d||g&&g.test(t)||h.test(t)))try{var n=m.call(e,t);if(n||T.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(r){}return st(t,p,null,[e]).length>0},st.contains=function(e,t){return(e.ownerDocument||e)!==p&&c(e),y(e,t)},st.attr=function(e,t){var n;return(e.ownerDocument||e)!==p&&c(e),d||(t=t.toLowerCase()),(n=i.attrHandle[t])?n(e):d||T.attributes?e.getAttribute(t):((n=e.getAttributeNode(t))||e.getAttribute(t))&&e[t]===!0?t:n&&n.specified?n.value:null},st.error=function(e){throw Error("Syntax error, unrecognized expression: "+e)},st.uniqueSort=function(e){var t,n=[],r=1,i=0;if(u=!T.detectDuplicates,e.sort(v),u){for(;t=e[r];r++)t===e[r-1]&&(i=n.push(r));while(i--)e.splice(n[i],1)}return e};function ut(e,t){var n=t&&e,r=n&&(~t.sourceIndex||j)-(~e.sourceIndex||j);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function lt(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function ct(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function pt(e){return ot(function(t){return t=+t,ot(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}o=st.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r];r++)n+=o(t);return n},i=st.selectors={cacheLength:50,createPseudo:ot,match:U,find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(et,tt),e[3]=(e[4]||e[5]||"").replace(et,tt),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||st.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&st.error(e[0]),e},PSEUDO:function(e){var t,n=!e[5]&&e[2];return U.CHILD.test(e[0])?null:(e[4]?e[2]=e[4]:n&&z.test(n)&&(t=ft(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){return"*"===e?function(){return!0}:(e=e.replace(et,tt).toLowerCase(),function(t){return t.nodeName&&t.nodeName.toLowerCase()===e})},CLASS:function(e){var t=k[e+" "];return t||(t=RegExp("(^|"+_+")"+e+"("+_+"|$)"))&&k(e,function(e){return t.test(e.className||typeof e.getAttribute!==A&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=st.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,p,f,d,h,g=o!==a?"nextSibling":"previousSibling",m=t.parentNode,y=s&&t.nodeName.toLowerCase(),v=!u&&!s;if(m){if(o){while(g){p=t;while(p=p[g])if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?m.firstChild:m.lastChild],a&&v){c=m[x]||(m[x]={}),l=c[e]||[],d=l[0]===N&&l[1],f=l[0]===N&&l[2],p=d&&m.childNodes[d];while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if(1===p.nodeType&&++f&&p===t){c[e]=[N,d,f];break}}else if(v&&(l=(t[x]||(t[x]={}))[e])&&l[0]===N)f=l[1];else while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if((s?p.nodeName.toLowerCase()===y:1===p.nodeType)&&++f&&(v&&((p[x]||(p[x]={}))[e]=[N,f]),p===t))break;return f-=i,f===r||0===f%r&&f/r>=0}}},PSEUDO:function(e,t){var n,r=i.pseudos[e]||i.setFilters[e.toLowerCase()]||st.error("unsupported pseudo: "+e);return r[x]?r(t):r.length>1?(n=[e,e,"",t],i.setFilters.hasOwnProperty(e.toLowerCase())?ot(function(e,n){var i,o=r(e,t),a=o.length;while(a--)i=M.call(e,o[a]),e[i]=!(n[i]=o[a])}):function(e){return r(e,0,n)}):r}},pseudos:{not:ot(function(e){var t=[],n=[],r=s(e.replace(W,"$1"));return r[x]?ot(function(e,t,n,i){var o,a=r(e,null,i,[]),s=e.length;while(s--)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:ot(function(e){return function(t){return st(e,t).length>0}}),contains:ot(function(e){return function(t){return(t.textContent||t.innerText||o(t)).indexOf(e)>-1}}),lang:ot(function(e){return X.test(e||"")||st.error("unsupported lang: "+e),e=e.replace(et,tt).toLowerCase(),function(t){var n;do if(n=d?t.getAttribute("xml:lang")||t.getAttribute("lang"):t.lang)return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===f},focus:function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!i.pseudos.empty(e)},header:function(e){return Q.test(e.nodeName)},input:function(e){return G.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:pt(function(){return[0]}),last:pt(function(e,t){return[t-1]}),eq:pt(function(e,t,n){return[0>n?n+t:n]}),even:pt(function(e,t){var n=0;for(;t>n;n+=2)e.push(n);return e}),odd:pt(function(e,t){var n=1;for(;t>n;n+=2)e.push(n);return e}),lt:pt(function(e,t,n){var r=0>n?n+t:n;for(;--r>=0;)e.push(r);return e}),gt:pt(function(e,t,n){var r=0>n?n+t:n;for(;t>++r;)e.push(r);return e})}};for(n in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})i.pseudos[n]=lt(n);for(n in{submit:!0,reset:!0})i.pseudos[n]=ct(n);function ft(e,t){var n,r,o,a,s,u,l,c=E[e+" "];if(c)return t?0:c.slice(0);s=e,u=[],l=i.preFilter;while(s){(!n||(r=$.exec(s)))&&(r&&(s=s.slice(r[0].length)||s),u.push(o=[])),n=!1,(r=I.exec(s))&&(n=r.shift(),o.push({value:n,type:r[0].replace(W," ")}),s=s.slice(n.length));for(a in i.filter)!(r=U[a].exec(s))||l[a]&&!(r=l[a](r))||(n=r.shift(),o.push({value:n,type:a,matches:r}),s=s.slice(n.length));if(!n)break}return t?s.length:s?st.error(e):E(e,u).slice(0)}function dt(e){var t=0,n=e.length,r="";for(;n>t;t++)r+=e[t].value;return r}function ht(e,t,n){var i=t.dir,o=n&&"parentNode"===i,a=C++;return t.first?function(t,n,r){while(t=t[i])if(1===t.nodeType||o)return e(t,n,r)}:function(t,n,s){var u,l,c,p=N+" "+a;if(s){while(t=t[i])if((1===t.nodeType||o)&&e(t,n,s))return!0}else while(t=t[i])if(1===t.nodeType||o)if(c=t[x]||(t[x]={}),(l=c[i])&&l[0]===p){if((u=l[1])===!0||u===r)return u===!0}else if(l=c[i]=[p],l[1]=e(t,n,s)||r,l[1]===!0)return!0}}function gt(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function mt(e,t,n,r,i){var o,a=[],s=0,u=e.length,l=null!=t;for(;u>s;s++)(o=e[s])&&(!n||n(o,r,i))&&(a.push(o),l&&t.push(s));return a}function yt(e,t,n,r,i,o){return r&&!r[x]&&(r=yt(r)),i&&!i[x]&&(i=yt(i,o)),ot(function(o,a,s,u){var l,c,p,f=[],d=[],h=a.length,g=o||xt(t||"*",s.nodeType?[s]:s,[]),m=!e||!o&&t?g:mt(g,f,e,s,u),y=n?i||(o?e:h||r)?[]:a:m;if(n&&n(m,y,s,u),r){l=mt(y,d),r(l,[],s,u),c=l.length;while(c--)(p=l[c])&&(y[d[c]]=!(m[d[c]]=p))}if(o){if(i||e){if(i){l=[],c=y.length;while(c--)(p=y[c])&&l.push(m[c]=p);i(null,y=[],l,u)}c=y.length;while(c--)(p=y[c])&&(l=i?M.call(o,p):f[c])>-1&&(o[l]=!(a[l]=p))}}else y=mt(y===a?y.splice(h,y.length):y),i?i(null,a,y,u):H.apply(a,y)})}function vt(e){var t,n,r,o=e.length,a=i.relative[e[0].type],s=a||i.relative[" "],u=a?1:0,c=ht(function(e){return e===t},s,!0),p=ht(function(e){return M.call(t,e)>-1},s,!0),f=[function(e,n,r){return!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):p(e,n,r))}];for(;o>u;u++)if(n=i.relative[e[u].type])f=[ht(gt(f),n)];else{if(n=i.filter[e[u].type].apply(null,e[u].matches),n[x]){for(r=++u;o>r;r++)if(i.relative[e[r].type])break;return yt(u>1&&gt(f),u>1&&dt(e.slice(0,u-1)).replace(W,"$1"),n,r>u&&vt(e.slice(u,r)),o>r&&vt(e=e.slice(r)),o>r&&dt(e))}f.push(n)}return gt(f)}function bt(e,t){var n=0,o=t.length>0,a=e.length>0,s=function(s,u,c,f,d){var h,g,m,y=[],v=0,b="0",x=s&&[],w=null!=d,T=l,C=s||a&&i.find.TAG("*",d&&u.parentNode||u),k=N+=null==T?1:Math.random()||.1;for(w&&(l=u!==p&&u,r=n);null!=(h=C[b]);b++){if(a&&h){g=0;while(m=e[g++])if(m(h,u,c)){f.push(h);break}w&&(N=k,r=++n)}o&&((h=!m&&h)&&v--,s&&x.push(h))}if(v+=b,o&&b!==v){g=0;while(m=t[g++])m(x,y,u,c);if(s){if(v>0)while(b--)x[b]||y[b]||(y[b]=L.call(f));y=mt(y)}H.apply(f,y),w&&!s&&y.length>0&&v+t.length>1&&st.uniqueSort(f)}return w&&(N=k,l=T),x};return o?ot(s):s}s=st.compile=function(e,t){var n,r=[],i=[],o=S[e+" "];if(!o){t||(t=ft(e)),n=t.length;while(n--)o=vt(t[n]),o[x]?r.push(o):i.push(o);o=S(e,bt(i,r))}return o};function xt(e,t,n){var r=0,i=t.length;for(;i>r;r++)st(e,t[r],n);return n}function wt(e,t,n,r){var o,a,u,l,c,p=ft(e);if(!r&&1===p.length){if(a=p[0]=p[0].slice(0),a.length>2&&"ID"===(u=a[0]).type&&9===t.nodeType&&!d&&i.relative[a[1].type]){if(t=i.find.ID(u.matches[0].replace(et,tt),t)[0],!t)return n;e=e.slice(a.shift().value.length)}o=U.needsContext.test(e)?0:a.length;while(o--){if(u=a[o],i.relative[l=u.type])break;if((c=i.find[l])&&(r=c(u.matches[0].replace(et,tt),V.test(a[0].type)&&t.parentNode||t))){if(a.splice(o,1),e=r.length&&dt(a),!e)return H.apply(n,q.call(r,0)),n;break}}}return s(e,p)(r,t,d,n,V.test(e)),n}i.pseudos.nth=i.pseudos.eq;function Tt(){}i.filters=Tt.prototype=i.pseudos,i.setFilters=new Tt,c(),st.attr=b.attr,b.find=st,b.expr=st.selectors,b.expr[":"]=b.expr.pseudos,b.unique=st.uniqueSort,b.text=st.getText,b.isXMLDoc=st.isXML,b.contains=st.contains}(e);var at=/Until$/,st=/^(?:parents|prev(?:Until|All))/,ut=/^.[^:#\[\.,]*$/,lt=b.expr.match.needsContext,ct={children:!0,contents:!0,next:!0,prev:!0};b.fn.extend({find:function(e){var t,n,r,i=this.length;if("string"!=typeof e)return r=this,this.pushStack(b(e).filter(function(){for(t=0;i>t;t++)if(b.contains(r[t],this))return!0}));for(n=[],t=0;i>t;t++)b.find(e,this[t],n);return n=this.pushStack(i>1?b.unique(n):n),n.selector=(this.selector?this.selector+" ":"")+e,n},has:function(e){var t,n=b(e,this),r=n.length;return this.filter(function(){for(t=0;r>t;t++)if(b.contains(this,n[t]))return!0})},not:function(e){return this.pushStack(ft(this,e,!1))},filter:function(e){return this.pushStack(ft(this,e,!0))},is:function(e){return!!e&&("string"==typeof e?lt.test(e)?b(e,this.context).index(this[0])>=0:b.filter(e,this).length>0:this.filter(e).length>0)},closest:function(e,t){var n,r=0,i=this.length,o=[],a=lt.test(e)||"string"!=typeof e?b(e,t||this.context):0;for(;i>r;r++){n=this[r];while(n&&n.ownerDocument&&n!==t&&11!==n.nodeType){if(a?a.index(n)>-1:b.find.matchesSelector(n,e)){o.push(n);break}n=n.parentNode}}return this.pushStack(o.length>1?b.unique(o):o)},index:function(e){return e?"string"==typeof e?b.inArray(this[0],b(e)):b.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?b(e,t):b.makeArray(e&&e.nodeType?[e]:e),r=b.merge(this.get(),n);return this.pushStack(b.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),b.fn.andSelf=b.fn.addBack;function pt(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}b.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return b.dir(e,"parentNode")},parentsUntil:function(e,t,n){return b.dir(e,"parentNode",n)},next:function(e){return pt(e,"nextSibling")},prev:function(e){return pt(e,"previousSibling")},nextAll:function(e){return b.dir(e,"nextSibling")},prevAll:function(e){return b.dir(e,"previousSibling")},nextUntil:function(e,t,n){return b.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return b.dir(e,"previousSibling",n)},siblings:function(e){return b.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return b.sibling(e.firstChild)},contents:function(e){return b.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:b.merge([],e.childNodes)}},function(e,t){b.fn[e]=function(n,r){var i=b.map(this,t,n);return at.test(e)||(r=n),r&&"string"==typeof r&&(i=b.filter(r,i)),i=this.length>1&&!ct[e]?b.unique(i):i,this.length>1&&st.test(e)&&(i=i.reverse()),this.pushStack(i)}}),b.extend({filter:function(e,t,n){return n&&(e=":not("+e+")"),1===t.length?b.find.matchesSelector(t[0],e)?[t[0]]:[]:b.find.matches(e,t)},dir:function(e,n,r){var i=[],o=e[n];while(o&&9!==o.nodeType&&(r===t||1!==o.nodeType||!b(o).is(r)))1===o.nodeType&&i.push(o),o=o[n];return i},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});function ft(e,t,n){if(t=t||0,b.isFunction(t))return b.grep(e,function(e,r){var i=!!t.call(e,r,e);return i===n});if(t.nodeType)return b.grep(e,function(e){return e===t===n});if("string"==typeof t){var r=b.grep(e,function(e){return 1===e.nodeType});if(ut.test(t))return b.filter(t,r,!n);t=b.filter(t,r)}return b.grep(e,function(e){return b.inArray(e,t)>=0===n})}function dt(e){var t=ht.split("|"),n=e.createDocumentFragment();if(n.createElement)while(t.length)n.createElement(t.pop());return n}var ht="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",gt=/ jQuery\d+="(?:null|\d+)"/g,mt=RegExp("<(?:"+ht+")[\\s/>]","i"),yt=/^\s+/,vt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bt=/<([\w:]+)/,xt=/<tbody/i,wt=/<|&#?\w+;/,Tt=/<(?:script|style|link)/i,Nt=/^(?:checkbox|radio)$/i,Ct=/checked\s*(?:[^=]|=\s*.checked.)/i,kt=/^$|\/(?:java|ecma)script/i,Et=/^true\/(.*)/,St=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,At={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:b.support.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},jt=dt(o),Dt=jt.appendChild(o.createElement("div"));At.optgroup=At.option,At.tbody=At.tfoot=At.colgroup=At.caption=At.thead,At.th=At.td,b.fn.extend({text:function(e){return b.access(this,function(e){return e===t?b.text(this):this.empty().append((this[0]&&this[0].ownerDocument||o).createTextNode(e))},null,e,arguments.length)},wrapAll:function(e){if(b.isFunction(e))return this.each(function(t){b(this).wrapAll(e.call(this,t))});if(this[0]){var t=b(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstChild&&1===e.firstChild.nodeType)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return b.isFunction(e)?this.each(function(t){b(this).wrapInner(e.call(this,t))}):this.each(function(){var t=b(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=b.isFunction(e);return this.each(function(n){b(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){b.nodeName(this,"body")||b(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(e){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&this.appendChild(e)})},prepend:function(){return this.domManip(arguments,!0,function(e){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&this.insertBefore(e,this.firstChild)})},before:function(){return this.domManip(arguments,!1,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,!1,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=0;for(;null!=(n=this[r]);r++)(!e||b.filter(e,[n]).length>0)&&(t||1!==n.nodeType||b.cleanData(Ot(n)),n.parentNode&&(t&&b.contains(n.ownerDocument,n)&&Mt(Ot(n,"script")),n.parentNode.removeChild(n)));return this},empty:function(){var e,t=0;for(;null!=(e=this[t]);t++){1===e.nodeType&&b.cleanData(Ot(e,!1));while(e.firstChild)e.removeChild(e.firstChild);e.options&&b.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return b.clone(this,e,t)})},html:function(e){return b.access(this,function(e){var n=this[0]||{},r=0,i=this.length;if(e===t)return 1===n.nodeType?n.innerHTML.replace(gt,""):t;if(!("string"!=typeof e||Tt.test(e)||!b.support.htmlSerialize&&mt.test(e)||!b.support.leadingWhitespace&&yt.test(e)||At[(bt.exec(e)||["",""])[1].toLowerCase()])){e=e.replace(vt,"<$1></$2>");try{for(;i>r;r++)n=this[r]||{},1===n.nodeType&&(b.cleanData(Ot(n,!1)),n.innerHTML=e);n=0}catch(o){}}n&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(e){var t=b.isFunction(e);return t||"string"==typeof e||(e=b(e).not(this).detach()),this.domManip([e],!0,function(e){var t=this.nextSibling,n=this.parentNode;n&&(b(this).remove(),n.insertBefore(e,t))})},detach:function(e){return this.remove(e,!0)},domManip:function(e,n,r){e=f.apply([],e);var i,o,a,s,u,l,c=0,p=this.length,d=this,h=p-1,g=e[0],m=b.isFunction(g);if(m||!(1>=p||"string"!=typeof g||b.support.checkClone)&&Ct.test(g))return this.each(function(i){var o=d.eq(i);m&&(e[0]=g.call(this,i,n?o.html():t)),o.domManip(e,n,r)});if(p&&(l=b.buildFragment(e,this[0].ownerDocument,!1,this),i=l.firstChild,1===l.childNodes.length&&(l=i),i)){for(n=n&&b.nodeName(i,"tr"),s=b.map(Ot(l,"script"),Ht),a=s.length;p>c;c++)o=l,c!==h&&(o=b.clone(o,!0,!0),a&&b.merge(s,Ot(o,"script"))),r.call(n&&b.nodeName(this[c],"table")?Lt(this[c],"tbody"):this[c],o,c);if(a)for(u=s[s.length-1].ownerDocument,b.map(s,qt),c=0;a>c;c++)o=s[c],kt.test(o.type||"")&&!b._data(o,"globalEval")&&b.contains(u,o)&&(o.src?b.ajax({url:o.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):b.globalEval((o.text||o.textContent||o.innerHTML||"").replace(St,"")));l=i=null}return this}});function Lt(e,t){return e.getElementsByTagName(t)[0]||e.appendChild(e.ownerDocument.createElement(t))}function Ht(e){var t=e.getAttributeNode("type");return e.type=(t&&t.specified)+"/"+e.type,e}function qt(e){var t=Et.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function Mt(e,t){var n,r=0;for(;null!=(n=e[r]);r++)b._data(n,"globalEval",!t||b._data(t[r],"globalEval"))}function _t(e,t){if(1===t.nodeType&&b.hasData(e)){var n,r,i,o=b._data(e),a=b._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;i>r;r++)b.event.add(t,n,s[n][r])}a.data&&(a.data=b.extend({},a.data))}}function Ft(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!b.support.noCloneEvent&&t[b.expando]){i=b._data(t);for(r in i.events)b.removeEvent(t,r,i.handle);t.removeAttribute(b.expando)}"script"===n&&t.text!==e.text?(Ht(t).text=e.text,qt(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),b.support.html5Clone&&e.innerHTML&&!b.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&Nt.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}b.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){b.fn[e]=function(e){var n,r=0,i=[],o=b(e),a=o.length-1;for(;a>=r;r++)n=r===a?this:this.clone(!0),b(o[r])[t](n),d.apply(i,n.get());return this.pushStack(i)}});function Ot(e,n){var r,o,a=0,s=typeof e.getElementsByTagName!==i?e.getElementsByTagName(n||"*"):typeof e.querySelectorAll!==i?e.querySelectorAll(n||"*"):t;if(!s)for(s=[],r=e.childNodes||e;null!=(o=r[a]);a++)!n||b.nodeName(o,n)?s.push(o):b.merge(s,Ot(o,n));return n===t||n&&b.nodeName(e,n)?b.merge([e],s):s}function Bt(e){Nt.test(e.type)&&(e.defaultChecked=e.checked)}b.extend({clone:function(e,t,n){var r,i,o,a,s,u=b.contains(e.ownerDocument,e);if(b.support.html5Clone||b.isXMLDoc(e)||!mt.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(Dt.innerHTML=e.outerHTML,Dt.removeChild(o=Dt.firstChild)),!(b.support.noCloneEvent&&b.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||b.isXMLDoc(e)))for(r=Ot(o),s=Ot(e),a=0;null!=(i=s[a]);++a)r[a]&&Ft(i,r[a]);if(t)if(n)for(s=s||Ot(e),r=r||Ot(o),a=0;null!=(i=s[a]);a++)_t(i,r[a]);else _t(e,o);return r=Ot(o,"script"),r.length>0&&Mt(r,!u&&Ot(e,"script")),r=s=i=null,o},buildFragment:function(e,t,n,r){var i,o,a,s,u,l,c,p=e.length,f=dt(t),d=[],h=0;for(;p>h;h++)if(o=e[h],o||0===o)if("object"===b.type(o))b.merge(d,o.nodeType?[o]:o);else if(wt.test(o)){s=s||f.appendChild(t.createElement("div")),u=(bt.exec(o)||["",""])[1].toLowerCase(),c=At[u]||At._default,s.innerHTML=c[1]+o.replace(vt,"<$1></$2>")+c[2],i=c[0];while(i--)s=s.lastChild;if(!b.support.leadingWhitespace&&yt.test(o)&&d.push(t.createTextNode(yt.exec(o)[0])),!b.support.tbody){o="table"!==u||xt.test(o)?"<table>"!==c[1]||xt.test(o)?0:s:s.firstChild,i=o&&o.childNodes.length;while(i--)b.nodeName(l=o.childNodes[i],"tbody")&&!l.childNodes.length&&o.removeChild(l)
+}b.merge(d,s.childNodes),s.textContent="";while(s.firstChild)s.removeChild(s.firstChild);s=f.lastChild}else d.push(t.createTextNode(o));s&&f.removeChild(s),b.support.appendChecked||b.grep(Ot(d,"input"),Bt),h=0;while(o=d[h++])if((!r||-1===b.inArray(o,r))&&(a=b.contains(o.ownerDocument,o),s=Ot(f.appendChild(o),"script"),a&&Mt(s),n)){i=0;while(o=s[i++])kt.test(o.type||"")&&n.push(o)}return s=null,f},cleanData:function(e,t){var n,r,o,a,s=0,u=b.expando,l=b.cache,p=b.support.deleteExpando,f=b.event.special;for(;null!=(n=e[s]);s++)if((t||b.acceptData(n))&&(o=n[u],a=o&&l[o])){if(a.events)for(r in a.events)f[r]?b.event.remove(n,r):b.removeEvent(n,r,a.handle);l[o]&&(delete l[o],p?delete n[u]:typeof n.removeAttribute!==i?n.removeAttribute(u):n[u]=null,c.push(o))}}});var Pt,Rt,Wt,$t=/alpha\([^)]*\)/i,It=/opacity\s*=\s*([^)]*)/,zt=/^(top|right|bottom|left)$/,Xt=/^(none|table(?!-c[ea]).+)/,Ut=/^margin/,Vt=RegExp("^("+x+")(.*)$","i"),Yt=RegExp("^("+x+")(?!px)[a-z%]+$","i"),Jt=RegExp("^([+-])=("+x+")","i"),Gt={BODY:"block"},Qt={position:"absolute",visibility:"hidden",display:"block"},Kt={letterSpacing:0,fontWeight:400},Zt=["Top","Right","Bottom","Left"],en=["Webkit","O","Moz","ms"];function tn(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=en.length;while(i--)if(t=en[i]+n,t in e)return t;return r}function nn(e,t){return e=t||e,"none"===b.css(e,"display")||!b.contains(e.ownerDocument,e)}function rn(e,t){var n,r,i,o=[],a=0,s=e.length;for(;s>a;a++)r=e[a],r.style&&(o[a]=b._data(r,"olddisplay"),n=r.style.display,t?(o[a]||"none"!==n||(r.style.display=""),""===r.style.display&&nn(r)&&(o[a]=b._data(r,"olddisplay",un(r.nodeName)))):o[a]||(i=nn(r),(n&&"none"!==n||!i)&&b._data(r,"olddisplay",i?n:b.css(r,"display"))));for(a=0;s>a;a++)r=e[a],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[a]||"":"none"));return e}b.fn.extend({css:function(e,n){return b.access(this,function(e,n,r){var i,o,a={},s=0;if(b.isArray(n)){for(o=Rt(e),i=n.length;i>s;s++)a[n[s]]=b.css(e,n[s],!1,o);return a}return r!==t?b.style(e,n,r):b.css(e,n)},e,n,arguments.length>1)},show:function(){return rn(this,!0)},hide:function(){return rn(this)},toggle:function(e){var t="boolean"==typeof e;return this.each(function(){(t?e:nn(this))?b(this).show():b(this).hide()})}}),b.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Wt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":b.support.cssFloat?"cssFloat":"styleFloat"},style:function(e,n,r,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,a,s,u=b.camelCase(n),l=e.style;if(n=b.cssProps[u]||(b.cssProps[u]=tn(l,u)),s=b.cssHooks[n]||b.cssHooks[u],r===t)return s&&"get"in s&&(o=s.get(e,!1,i))!==t?o:l[n];if(a=typeof r,"string"===a&&(o=Jt.exec(r))&&(r=(o[1]+1)*o[2]+parseFloat(b.css(e,n)),a="number"),!(null==r||"number"===a&&isNaN(r)||("number"!==a||b.cssNumber[u]||(r+="px"),b.support.clearCloneStyle||""!==r||0!==n.indexOf("background")||(l[n]="inherit"),s&&"set"in s&&(r=s.set(e,r,i))===t)))try{l[n]=r}catch(c){}}},css:function(e,n,r,i){var o,a,s,u=b.camelCase(n);return n=b.cssProps[u]||(b.cssProps[u]=tn(e.style,u)),s=b.cssHooks[n]||b.cssHooks[u],s&&"get"in s&&(a=s.get(e,!0,r)),a===t&&(a=Wt(e,n,i)),"normal"===a&&n in Kt&&(a=Kt[n]),""===r||r?(o=parseFloat(a),r===!0||b.isNumeric(o)?o||0:a):a},swap:function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i}}),e.getComputedStyle?(Rt=function(t){return e.getComputedStyle(t,null)},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),u=s?s.getPropertyValue(n)||s[n]:t,l=e.style;return s&&(""!==u||b.contains(e.ownerDocument,e)||(u=b.style(e,n)),Yt.test(u)&&Ut.test(n)&&(i=l.width,o=l.minWidth,a=l.maxWidth,l.minWidth=l.maxWidth=l.width=u,u=s.width,l.width=i,l.minWidth=o,l.maxWidth=a)),u}):o.documentElement.currentStyle&&(Rt=function(e){return e.currentStyle},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),u=s?s[n]:t,l=e.style;return null==u&&l&&l[n]&&(u=l[n]),Yt.test(u)&&!zt.test(n)&&(i=l.left,o=e.runtimeStyle,a=o&&o.left,a&&(o.left=e.currentStyle.left),l.left="fontSize"===n?"1em":u,u=l.pixelLeft+"px",l.left=i,a&&(o.left=a)),""===u?"auto":u});function on(e,t,n){var r=Vt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function an(e,t,n,r,i){var o=n===(r?"border":"content")?4:"width"===t?1:0,a=0;for(;4>o;o+=2)"margin"===n&&(a+=b.css(e,n+Zt[o],!0,i)),r?("content"===n&&(a-=b.css(e,"padding"+Zt[o],!0,i)),"margin"!==n&&(a-=b.css(e,"border"+Zt[o]+"Width",!0,i))):(a+=b.css(e,"padding"+Zt[o],!0,i),"padding"!==n&&(a+=b.css(e,"border"+Zt[o]+"Width",!0,i)));return a}function sn(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=Rt(e),a=b.support.boxSizing&&"border-box"===b.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=Wt(e,t,o),(0>i||null==i)&&(i=e.style[t]),Yt.test(i))return i;r=a&&(b.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+an(e,t,n||(a?"border":"content"),r,o)+"px"}function un(e){var t=o,n=Gt[e];return n||(n=ln(e,t),"none"!==n&&n||(Pt=(Pt||b("<iframe frameborder='0' width='0' height='0'/>").css("cssText","display:block !important")).appendTo(t.documentElement),t=(Pt[0].contentWindow||Pt[0].contentDocument).document,t.write("<!doctype html><html><body>"),t.close(),n=ln(e,t),Pt.detach()),Gt[e]=n),n}function ln(e,t){var n=b(t.createElement(e)).appendTo(t.body),r=b.css(n[0],"display");return n.remove(),r}b.each(["height","width"],function(e,n){b.cssHooks[n]={get:function(e,r,i){return r?0===e.offsetWidth&&Xt.test(b.css(e,"display"))?b.swap(e,Qt,function(){return sn(e,n,i)}):sn(e,n,i):t},set:function(e,t,r){var i=r&&Rt(e);return on(e,t,r?an(e,n,r,b.support.boxSizing&&"border-box"===b.css(e,"boxSizing",!1,i),i):0)}}}),b.support.opacity||(b.cssHooks.opacity={get:function(e,t){return It.test((t&&e.currentStyle?e.currentStyle.filter:e.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":t?"1":""},set:function(e,t){var n=e.style,r=e.currentStyle,i=b.isNumeric(t)?"alpha(opacity="+100*t+")":"",o=r&&r.filter||n.filter||"";n.zoom=1,(t>=1||""===t)&&""===b.trim(o.replace($t,""))&&n.removeAttribute&&(n.removeAttribute("filter"),""===t||r&&!r.filter)||(n.filter=$t.test(o)?o.replace($t,i):o+" "+i)}}),b(function(){b.support.reliableMarginRight||(b.cssHooks.marginRight={get:function(e,n){return n?b.swap(e,{display:"inline-block"},Wt,[e,"marginRight"]):t}}),!b.support.pixelPosition&&b.fn.position&&b.each(["top","left"],function(e,n){b.cssHooks[n]={get:function(e,r){return r?(r=Wt(e,n),Yt.test(r)?b(e).position()[n]+"px":r):t}}})}),b.expr&&b.expr.filters&&(b.expr.filters.hidden=function(e){return 0>=e.offsetWidth&&0>=e.offsetHeight||!b.support.reliableHiddenOffsets&&"none"===(e.style&&e.style.display||b.css(e,"display"))},b.expr.filters.visible=function(e){return!b.expr.filters.hidden(e)}),b.each({margin:"",padding:"",border:"Width"},function(e,t){b.cssHooks[e+t]={expand:function(n){var r=0,i={},o="string"==typeof n?n.split(" "):[n];for(;4>r;r++)i[e+Zt[r]+t]=o[r]||o[r-2]||o[0];return i}},Ut.test(e)||(b.cssHooks[e+t].set=on)});var cn=/%20/g,pn=/\[\]$/,fn=/\r?\n/g,dn=/^(?:submit|button|image|reset|file)$/i,hn=/^(?:input|select|textarea|keygen)/i;b.fn.extend({serialize:function(){return b.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=b.prop(this,"elements");return e?b.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!b(this).is(":disabled")&&hn.test(this.nodeName)&&!dn.test(e)&&(this.checked||!Nt.test(e))}).map(function(e,t){var n=b(this).val();return null==n?null:b.isArray(n)?b.map(n,function(e){return{name:t.name,value:e.replace(fn,"\r\n")}}):{name:t.name,value:n.replace(fn,"\r\n")}}).get()}}),b.param=function(e,n){var r,i=[],o=function(e,t){t=b.isFunction(t)?t():null==t?"":t,i[i.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(n===t&&(n=b.ajaxSettings&&b.ajaxSettings.traditional),b.isArray(e)||e.jquery&&!b.isPlainObject(e))b.each(e,function(){o(this.name,this.value)});else for(r in e)gn(r,e[r],n,o);return i.join("&").replace(cn,"+")};function gn(e,t,n,r){var i;if(b.isArray(t))b.each(t,function(t,i){n||pn.test(e)?r(e,i):gn(e+"["+("object"==typeof i?t:"")+"]",i,n,r)});else if(n||"object"!==b.type(t))r(e,t);else for(i in t)gn(e+"["+i+"]",t[i],n,r)}b.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){b.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),b.fn.hover=function(e,t){return this.mouseenter(e).mouseleave(t||e)};var mn,yn,vn=b.now(),bn=/\?/,xn=/#.*$/,wn=/([?&])_=[^&]*/,Tn=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Nn=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Cn=/^(?:GET|HEAD)$/,kn=/^\/\//,En=/^([\w.+-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,Sn=b.fn.load,An={},jn={},Dn="*/".concat("*");try{yn=a.href}catch(Ln){yn=o.createElement("a"),yn.href="",yn=yn.href}mn=En.exec(yn.toLowerCase())||[];function Hn(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(w)||[];if(b.isFunction(n))while(r=o[i++])"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function qn(e,n,r,i){var o={},a=e===jn;function s(u){var l;return o[u]=!0,b.each(e[u]||[],function(e,u){var c=u(n,r,i);return"string"!=typeof c||a||o[c]?a?!(l=c):t:(n.dataTypes.unshift(c),s(c),!1)}),l}return s(n.dataTypes[0])||!o["*"]&&s("*")}function Mn(e,n){var r,i,o=b.ajaxSettings.flatOptions||{};for(i in n)n[i]!==t&&((o[i]?e:r||(r={}))[i]=n[i]);return r&&b.extend(!0,e,r),e}b.fn.load=function(e,n,r){if("string"!=typeof e&&Sn)return Sn.apply(this,arguments);var i,o,a,s=this,u=e.indexOf(" ");return u>=0&&(i=e.slice(u,e.length),e=e.slice(0,u)),b.isFunction(n)?(r=n,n=t):n&&"object"==typeof n&&(a="POST"),s.length>0&&b.ajax({url:e,type:a,dataType:"html",data:n}).done(function(e){o=arguments,s.html(i?b("<div>").append(b.parseHTML(e)).find(i):e)}).complete(r&&function(e,t){s.each(r,o||[e.responseText,t,e])}),this},b.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){b.fn[t]=function(e){return this.on(t,e)}}),b.each(["get","post"],function(e,n){b[n]=function(e,r,i,o){return b.isFunction(r)&&(o=o||i,i=r,r=t),b.ajax({url:e,type:n,dataType:o,data:r,success:i})}}),b.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:yn,type:"GET",isLocal:Nn.test(mn[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Dn,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":e.String,"text html":!0,"text json":b.parseJSON,"text xml":b.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Mn(Mn(e,b.ajaxSettings),t):Mn(b.ajaxSettings,e)},ajaxPrefilter:Hn(An),ajaxTransport:Hn(jn),ajax:function(e,n){"object"==typeof e&&(n=e,e=t),n=n||{};var r,i,o,a,s,u,l,c,p=b.ajaxSetup({},n),f=p.context||p,d=p.context&&(f.nodeType||f.jquery)?b(f):b.event,h=b.Deferred(),g=b.Callbacks("once memory"),m=p.statusCode||{},y={},v={},x=0,T="canceled",N={readyState:0,getResponseHeader:function(e){var t;if(2===x){if(!c){c={};while(t=Tn.exec(a))c[t[1].toLowerCase()]=t[2]}t=c[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===x?a:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return x||(e=v[n]=v[n]||e,y[e]=t),this},overrideMimeType:function(e){return x||(p.mimeType=e),this},statusCode:function(e){var t;if(e)if(2>x)for(t in e)m[t]=[m[t],e[t]];else N.always(e[N.status]);return this},abort:function(e){var t=e||T;return l&&l.abort(t),k(0,t),this}};if(h.promise(N).complete=g.add,N.success=N.done,N.error=N.fail,p.url=((e||p.url||yn)+"").replace(xn,"").replace(kn,mn[1]+"//"),p.type=n.method||n.type||p.method||p.type,p.dataTypes=b.trim(p.dataType||"*").toLowerCase().match(w)||[""],null==p.crossDomain&&(r=En.exec(p.url.toLowerCase()),p.crossDomain=!(!r||r[1]===mn[1]&&r[2]===mn[2]&&(r[3]||("http:"===r[1]?80:443))==(mn[3]||("http:"===mn[1]?80:443)))),p.data&&p.processData&&"string"!=typeof p.data&&(p.data=b.param(p.data,p.traditional)),qn(An,p,n,N),2===x)return N;u=p.global,u&&0===b.active++&&b.event.trigger("ajaxStart"),p.type=p.type.toUpperCase(),p.hasContent=!Cn.test(p.type),o=p.url,p.hasContent||(p.data&&(o=p.url+=(bn.test(o)?"&":"?")+p.data,delete p.data),p.cache===!1&&(p.url=wn.test(o)?o.replace(wn,"$1_="+vn++):o+(bn.test(o)?"&":"?")+"_="+vn++)),p.ifModified&&(b.lastModified[o]&&N.setRequestHeader("If-Modified-Since",b.lastModified[o]),b.etag[o]&&N.setRequestHeader("If-None-Match",b.etag[o])),(p.data&&p.hasContent&&p.contentType!==!1||n.contentType)&&N.setRequestHeader("Content-Type",p.contentType),N.setRequestHeader("Accept",p.dataTypes[0]&&p.accepts[p.dataTypes[0]]?p.accepts[p.dataTypes[0]]+("*"!==p.dataTypes[0]?", "+Dn+"; q=0.01":""):p.accepts["*"]);for(i in p.headers)N.setRequestHeader(i,p.headers[i]);if(p.beforeSend&&(p.beforeSend.call(f,N,p)===!1||2===x))return N.abort();T="abort";for(i in{success:1,error:1,complete:1})N[i](p[i]);if(l=qn(jn,p,n,N)){N.readyState=1,u&&d.trigger("ajaxSend",[N,p]),p.async&&p.timeout>0&&(s=setTimeout(function(){N.abort("timeout")},p.timeout));try{x=1,l.send(y,k)}catch(C){if(!(2>x))throw C;k(-1,C)}}else k(-1,"No Transport");function k(e,n,r,i){var c,y,v,w,T,C=n;2!==x&&(x=2,s&&clearTimeout(s),l=t,a=i||"",N.readyState=e>0?4:0,r&&(w=_n(p,N,r)),e>=200&&300>e||304===e?(p.ifModified&&(T=N.getResponseHeader("Last-Modified"),T&&(b.lastModified[o]=T),T=N.getResponseHeader("etag"),T&&(b.etag[o]=T)),204===e?(c=!0,C="nocontent"):304===e?(c=!0,C="notmodified"):(c=Fn(p,w),C=c.state,y=c.data,v=c.error,c=!v)):(v=C,(e||!C)&&(C="error",0>e&&(e=0))),N.status=e,N.statusText=(n||C)+"",c?h.resolveWith(f,[y,C,N]):h.rejectWith(f,[N,C,v]),N.statusCode(m),m=t,u&&d.trigger(c?"ajaxSuccess":"ajaxError",[N,p,c?y:v]),g.fireWith(f,[N,C]),u&&(d.trigger("ajaxComplete",[N,p]),--b.active||b.event.trigger("ajaxStop")))}return N},getScript:function(e,n){return b.get(e,t,n,"script")},getJSON:function(e,t,n){return b.get(e,t,n,"json")}});function _n(e,n,r){var i,o,a,s,u=e.contents,l=e.dataTypes,c=e.responseFields;for(s in c)s in r&&(n[c[s]]=r[s]);while("*"===l[0])l.shift(),o===t&&(o=e.mimeType||n.getResponseHeader("Content-Type"));if(o)for(s in u)if(u[s]&&u[s].test(o)){l.unshift(s);break}if(l[0]in r)a=l[0];else{for(s in r){if(!l[0]||e.converters[s+" "+l[0]]){a=s;break}i||(i=s)}a=a||i}return a?(a!==l[0]&&l.unshift(a),r[a]):t}function Fn(e,t){var n,r,i,o,a={},s=0,u=e.dataTypes.slice(),l=u[0];if(e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u[1])for(i in e.converters)a[i.toLowerCase()]=e.converters[i];for(;r=u[++s];)if("*"!==r){if("*"!==l&&l!==r){if(i=a[l+" "+r]||a["* "+r],!i)for(n in a)if(o=n.split(" "),o[1]===r&&(i=a[l+" "+o[0]]||a["* "+o[0]])){i===!0?i=a[n]:a[n]!==!0&&(r=o[0],u.splice(s--,0,r));break}if(i!==!0)if(i&&e["throws"])t=i(t);else try{t=i(t)}catch(c){return{state:"parsererror",error:i?c:"No conversion from "+l+" to "+r}}}l=r}return{state:"success",data:t}}b.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(e){return b.globalEval(e),e}}}),b.ajaxPrefilter("script",function(e){e.cache===t&&(e.cache=!1),e.crossDomain&&(e.type="GET",e.global=!1)}),b.ajaxTransport("script",function(e){if(e.crossDomain){var n,r=o.head||b("head")[0]||o.documentElement;return{send:function(t,i){n=o.createElement("script"),n.async=!0,e.scriptCharset&&(n.charset=e.scriptCharset),n.src=e.url,n.onload=n.onreadystatechange=function(e,t){(t||!n.readyState||/loaded|complete/.test(n.readyState))&&(n.onload=n.onreadystatechange=null,n.parentNode&&n.parentNode.removeChild(n),n=null,t||i(200,"success"))},r.insertBefore(n,r.firstChild)},abort:function(){n&&n.onload(t,!0)}}}});var On=[],Bn=/(=)\?(?=&|$)|\?\?/;b.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=On.pop()||b.expando+"_"+vn++;return this[e]=!0,e}}),b.ajaxPrefilter("json jsonp",function(n,r,i){var o,a,s,u=n.jsonp!==!1&&(Bn.test(n.url)?"url":"string"==typeof n.data&&!(n.contentType||"").indexOf("application/x-www-form-urlencoded")&&Bn.test(n.data)&&"data");return u||"jsonp"===n.dataTypes[0]?(o=n.jsonpCallback=b.isFunction(n.jsonpCallback)?n.jsonpCallback():n.jsonpCallback,u?n[u]=n[u].replace(Bn,"$1"+o):n.jsonp!==!1&&(n.url+=(bn.test(n.url)?"&":"?")+n.jsonp+"="+o),n.converters["script json"]=function(){return s||b.error(o+" was not called"),s[0]},n.dataTypes[0]="json",a=e[o],e[o]=function(){s=arguments},i.always(function(){e[o]=a,n[o]&&(n.jsonpCallback=r.jsonpCallback,On.push(o)),s&&b.isFunction(a)&&a(s[0]),s=a=t}),"script"):t});var Pn,Rn,Wn=0,$n=e.ActiveXObject&&function(){var e;for(e in Pn)Pn[e](t,!0)};function In(){try{return new e.XMLHttpRequest}catch(t){}}function zn(){try{return new e.ActiveXObject("Microsoft.XMLHTTP")}catch(t){}}b.ajaxSettings.xhr=e.ActiveXObject?function(){return!this.isLocal&&In()||zn()}:In,Rn=b.ajaxSettings.xhr(),b.support.cors=!!Rn&&"withCredentials"in Rn,Rn=b.support.ajax=!!Rn,Rn&&b.ajaxTransport(function(n){if(!n.crossDomain||b.support.cors){var r;return{send:function(i,o){var a,s,u=n.xhr();if(n.username?u.open(n.type,n.url,n.async,n.username,n.password):u.open(n.type,n.url,n.async),n.xhrFields)for(s in n.xhrFields)u[s]=n.xhrFields[s];n.mimeType&&u.overrideMimeType&&u.overrideMimeType(n.mimeType),n.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");try{for(s in i)u.setRequestHeader(s,i[s])}catch(l){}u.send(n.hasContent&&n.data||null),r=function(e,i){var s,l,c,p;try{if(r&&(i||4===u.readyState))if(r=t,a&&(u.onreadystatechange=b.noop,$n&&delete Pn[a]),i)4!==u.readyState&&u.abort();else{p={},s=u.status,l=u.getAllResponseHeaders(),"string"==typeof u.responseText&&(p.text=u.responseText);try{c=u.statusText}catch(f){c=""}s||!n.isLocal||n.crossDomain?1223===s&&(s=204):s=p.text?200:404}}catch(d){i||o(-1,d)}p&&o(s,c,p,l)},n.async?4===u.readyState?setTimeout(r):(a=++Wn,$n&&(Pn||(Pn={},b(e).unload($n)),Pn[a]=r),u.onreadystatechange=r):r()},abort:function(){r&&r(t,!0)}}}});var Xn,Un,Vn=/^(?:toggle|show|hide)$/,Yn=RegExp("^(?:([+-])=|)("+x+")([a-z%]*)$","i"),Jn=/queueHooks$/,Gn=[nr],Qn={"*":[function(e,t){var n,r,i=this.createTween(e,t),o=Yn.exec(t),a=i.cur(),s=+a||0,u=1,l=20;if(o){if(n=+o[2],r=o[3]||(b.cssNumber[e]?"":"px"),"px"!==r&&s){s=b.css(i.elem,e,!0)||n||1;do u=u||".5",s/=u,b.style(i.elem,e,s+r);while(u!==(u=i.cur()/a)&&1!==u&&--l)}i.unit=r,i.start=s,i.end=o[1]?s+(o[1]+1)*n:n}return i}]};function Kn(){return setTimeout(function(){Xn=t}),Xn=b.now()}function Zn(e,t){b.each(t,function(t,n){var r=(Qn[t]||[]).concat(Qn["*"]),i=0,o=r.length;for(;o>i;i++)if(r[i].call(e,t,n))return})}function er(e,t,n){var r,i,o=0,a=Gn.length,s=b.Deferred().always(function(){delete u.elem}),u=function(){if(i)return!1;var t=Xn||Kn(),n=Math.max(0,l.startTime+l.duration-t),r=n/l.duration||0,o=1-r,a=0,u=l.tweens.length;for(;u>a;a++)l.tweens[a].run(o);return s.notifyWith(e,[l,o,n]),1>o&&u?n:(s.resolveWith(e,[l]),!1)},l=s.promise({elem:e,props:b.extend({},t),opts:b.extend(!0,{specialEasing:{}},n),originalProperties:t,originalOptions:n,startTime:Xn||Kn(),duration:n.duration,tweens:[],createTween:function(t,n){var r=b.Tween(e,l.opts,t,n,l.opts.specialEasing[t]||l.opts.easing);return l.tweens.push(r),r},stop:function(t){var n=0,r=t?l.tweens.length:0;if(i)return this;for(i=!0;r>n;n++)l.tweens[n].run(1);return t?s.resolveWith(e,[l,t]):s.rejectWith(e,[l,t]),this}}),c=l.props;for(tr(c,l.opts.specialEasing);a>o;o++)if(r=Gn[o].call(l,e,c,l.opts))return r;return Zn(l,c),b.isFunction(l.opts.start)&&l.opts.start.call(e,l),b.fx.timer(b.extend(u,{elem:e,anim:l,queue:l.opts.queue})),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always)}function tr(e,t){var n,r,i,o,a;for(i in e)if(r=b.camelCase(i),o=t[r],n=e[i],b.isArray(n)&&(o=n[1],n=e[i]=n[0]),i!==r&&(e[r]=n,delete e[i]),a=b.cssHooks[r],a&&"expand"in a){n=a.expand(n),delete e[r];for(i in n)i in e||(e[i]=n[i],t[i]=o)}else t[r]=o}b.Animation=b.extend(er,{tweener:function(e,t){b.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");var n,r=0,i=e.length;for(;i>r;r++)n=e[r],Qn[n]=Qn[n]||[],Qn[n].unshift(t)},prefilter:function(e,t){t?Gn.unshift(e):Gn.push(e)}});function nr(e,t,n){var r,i,o,a,s,u,l,c,p,f=this,d=e.style,h={},g=[],m=e.nodeType&&nn(e);n.queue||(c=b._queueHooks(e,"fx"),null==c.unqueued&&(c.unqueued=0,p=c.empty.fire,c.empty.fire=function(){c.unqueued||p()}),c.unqueued++,f.always(function(){f.always(function(){c.unqueued--,b.queue(e,"fx").length||c.empty.fire()})})),1===e.nodeType&&("height"in t||"width"in t)&&(n.overflow=[d.overflow,d.overflowX,d.overflowY],"inline"===b.css(e,"display")&&"none"===b.css(e,"float")&&(b.support.inlineBlockNeedsLayout&&"inline"!==un(e.nodeName)?d.zoom=1:d.display="inline-block")),n.overflow&&(d.overflow="hidden",b.support.shrinkWrapBlocks||f.always(function(){d.overflow=n.overflow[0],d.overflowX=n.overflow[1],d.overflowY=n.overflow[2]}));for(i in t)if(a=t[i],Vn.exec(a)){if(delete t[i],u=u||"toggle"===a,a===(m?"hide":"show"))continue;g.push(i)}if(o=g.length){s=b._data(e,"fxshow")||b._data(e,"fxshow",{}),"hidden"in s&&(m=s.hidden),u&&(s.hidden=!m),m?b(e).show():f.done(function(){b(e).hide()}),f.done(function(){var t;b._removeData(e,"fxshow");for(t in h)b.style(e,t,h[t])});for(i=0;o>i;i++)r=g[i],l=f.createTween(r,m?s[r]:0),h[r]=s[r]||b.style(e,r),r in s||(s[r]=l.start,m&&(l.end=l.start,l.start="width"===r||"height"===r?1:0))}}function rr(e,t,n,r,i){return new rr.prototype.init(e,t,n,r,i)}b.Tween=rr,rr.prototype={constructor:rr,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||"swing",this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(b.cssNumber[n]?"":"px")},cur:function(){var e=rr.propHooks[this.prop];return e&&e.get?e.get(this):rr.propHooks._default.get(this)},run:function(e){var t,n=rr.propHooks[this.prop];return this.pos=t=this.options.duration?b.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):rr.propHooks._default.set(this),this}},rr.prototype.init.prototype=rr.prototype,rr.propHooks={_default:{get:function(e){var t;return null==e.elem[e.prop]||e.elem.style&&null!=e.elem.style[e.prop]?(t=b.css(e.elem,e.prop,""),t&&"auto"!==t?t:0):e.elem[e.prop]},set:function(e){b.fx.step[e.prop]?b.fx.step[e.prop](e):e.elem.style&&(null!=e.elem.style[b.cssProps[e.prop]]||b.cssHooks[e.prop])?b.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},rr.propHooks.scrollTop=rr.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},b.each(["toggle","show","hide"],function(e,t){var n=b.fn[t];b.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(ir(t,!0),e,r,i)}}),b.fn.extend({fadeTo:function(e,t,n,r){return this.filter(nn).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=b.isEmptyObject(e),o=b.speed(t,n,r),a=function(){var t=er(this,b.extend({},e),o);a.finish=function(){t.stop(!0)},(i||b._data(this,"finish"))&&t.stop(!0)};return a.finish=a,i||o.queue===!1?this.each(a):this.queue(o.queue,a)},stop:function(e,n,r){var i=function(e){var t=e.stop;delete e.stop,t(r)};return"string"!=typeof e&&(r=n,n=e,e=t),n&&e!==!1&&this.queue(e||"fx",[]),this.each(function(){var t=!0,n=null!=e&&e+"queueHooks",o=b.timers,a=b._data(this);if(n)a[n]&&a[n].stop&&i(a[n]);else for(n in a)a[n]&&a[n].stop&&Jn.test(n)&&i(a[n]);for(n=o.length;n--;)o[n].elem!==this||null!=e&&o[n].queue!==e||(o[n].anim.stop(r),t=!1,o.splice(n,1));(t||!r)&&b.dequeue(this,e)})},finish:function(e){return e!==!1&&(e=e||"fx"),this.each(function(){var t,n=b._data(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=b.timers,a=r?r.length:0;for(n.finish=!0,b.queue(this,e,[]),i&&i.cur&&i.cur.finish&&i.cur.finish.call(this),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;a>t;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}});function ir(e,t){var n,r={height:e},i=0;for(t=t?1:0;4>i;i+=2-t)n=Zt[i],r["margin"+n]=r["padding"+n]=e;return t&&(r.opacity=r.width=e),r}b.each({slideDown:ir("show"),slideUp:ir("hide"),slideToggle:ir("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){b.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),b.speed=function(e,t,n){var r=e&&"object"==typeof e?b.extend({},e):{complete:n||!n&&t||b.isFunction(e)&&e,duration:e,easing:n&&t||t&&!b.isFunction(t)&&t};return r.duration=b.fx.off?0:"number"==typeof r.duration?r.duration:r.duration in b.fx.speeds?b.fx.speeds[r.duration]:b.fx.speeds._default,(null==r.queue||r.queue===!0)&&(r.queue="fx"),r.old=r.complete,r.complete=function(){b.isFunction(r.old)&&r.old.call(this),r.queue&&b.dequeue(this,r.queue)},r},b.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},b.timers=[],b.fx=rr.prototype.init,b.fx.tick=function(){var e,n=b.timers,r=0;for(Xn=b.now();n.length>r;r++)e=n[r],e()||n[r]!==e||n.splice(r--,1);n.length||b.fx.stop(),Xn=t},b.fx.timer=function(e){e()&&b.timers.push(e)&&b.fx.start()},b.fx.interval=13,b.fx.start=function(){Un||(Un=setInterval(b.fx.tick,b.fx.interval))},b.fx.stop=function(){clearInterval(Un),Un=null},b.fx.speeds={slow:600,fast:200,_default:400},b.fx.step={},b.expr&&b.expr.filters&&(b.expr.filters.animated=function(e){return b.grep(b.timers,function(t){return e===t.elem}).length}),b.fn.offset=function(e){if(arguments.length)return e===t?this:this.each(function(t){b.offset.setOffset(this,e,t)});var n,r,o={top:0,left:0},a=this[0],s=a&&a.ownerDocument;if(s)return n=s.documentElement,b.contains(n,a)?(typeof a.getBoundingClientRect!==i&&(o=a.getBoundingClientRect()),r=or(s),{top:o.top+(r.pageYOffset||n.scrollTop)-(n.clientTop||0),left:o.left+(r.pageXOffset||n.scrollLeft)-(n.clientLeft||0)}):o},b.offset={setOffset:function(e,t,n){var r=b.css(e,"position");"static"===r&&(e.style.position="relative");var i=b(e),o=i.offset(),a=b.css(e,"top"),s=b.css(e,"left"),u=("absolute"===r||"fixed"===r)&&b.inArray("auto",[a,s])>-1,l={},c={},p,f;u?(c=i.position(),p=c.top,f=c.left):(p=parseFloat(a)||0,f=parseFloat(s)||0),b.isFunction(t)&&(t=t.call(e,n,o)),null!=t.top&&(l.top=t.top-o.top+p),null!=t.left&&(l.left=t.left-o.left+f),"using"in t?t.using.call(e,l):i.css(l)}},b.fn.extend({position:function(){if(this[0]){var e,t,n={top:0,left:0},r=this[0];return"fixed"===b.css(r,"position")?t=r.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),b.nodeName(e[0],"html")||(n=e.offset()),n.top+=b.css(e[0],"borderTopWidth",!0),n.left+=b.css(e[0],"borderLeftWidth",!0)),{top:t.top-n.top-b.css(r,"marginTop",!0),left:t.left-n.left-b.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent||o.documentElement;while(e&&!b.nodeName(e,"html")&&"static"===b.css(e,"position"))e=e.offsetParent;return e||o.documentElement})}}),b.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,n){var r=/Y/.test(n);b.fn[e]=function(i){return b.access(this,function(e,i,o){var a=or(e);return o===t?a?n in a?a[n]:a.document.documentElement[i]:e[i]:(a?a.scrollTo(r?b(a).scrollLeft():o,r?o:b(a).scrollTop()):e[i]=o,t)},e,i,arguments.length,null)}});function or(e){return b.isWindow(e)?e:9===e.nodeType?e.defaultView||e.parentWindow:!1}b.each({Height:"height",Width:"width"},function(e,n){b.each({padding:"inner"+e,content:n,"":"outer"+e},function(r,i){b.fn[i]=function(i,o){var a=arguments.length&&(r||"boolean"!=typeof i),s=r||(i===!0||o===!0?"margin":"border");return b.access(this,function(n,r,i){var o;return b.isWindow(n)?n.document.documentElement["client"+e]:9===n.nodeType?(o=n.documentElement,Math.max(n.body["scroll"+e],o["scroll"+e],n.body["offset"+e],o["offset"+e],o["client"+e])):i===t?b.css(n,r,s):b.style(n,r,i,s)},n,a?i:t,a,null)}})}),e.jQuery=e.$=b,"function"==typeof define&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return b})})(window);
\ No newline at end of file
diff --git a/view/js/jquery.spin.js b/view/js/jquery.spin.js
new file mode 100644
index 000000000..a35a27765
--- /dev/null
+++ b/view/js/jquery.spin.js
@@ -0,0 +1,80 @@
+/**
+ * Copyright (c) 2011-2013 Felix Gnass
+ * Licensed under the MIT license
+ */
+
+/*
+
+Basic Usage:
+============
+
+$('#el').spin(); // Creates a default Spinner using the text color of #el.
+$('#el').spin({ ... }); // Creates a Spinner using the provided options.
+
+$('#el').spin(false); // Stops and removes the spinner.
+
+Using Presets:
+==============
+
+$('#el').spin('small'); // Creates a 'small' Spinner using the text color of #el.
+$('#el').spin('large', '#fff'); // Creates a 'large' white Spinner.
+
+Adding a custom preset:
+=======================
+
+$.fn.spin.presets.flower = {
+  lines: 9
+  length: 10
+  width: 20
+  radius: 0
+}
+
+$('#el').spin('flower', 'red');
+
+*/
+
+(function(factory) {
+
+  if (typeof exports == 'object') {
+    // CommonJS
+    factory(require('jquery'), require('spin'))
+  }
+  else if (typeof define == 'function' && define.amd) {
+    // AMD, register as anonymous module
+    define(['jquery', 'spin'], factory)
+  }
+  else {
+    // Browser globals
+    if (!window.Spinner) throw new Error('Spin.js not present')
+    factory(window.jQuery, window.Spinner)
+  }
+
+}(function($, Spinner) {
+
+  $.fn.spin = function(opts, color) {
+
+    return this.each(function() {
+      var $this = $(this),
+        data = $this.data();
+
+      if (data.spinner) {
+        data.spinner.stop();
+        delete data.spinner;
+      }
+      if (opts !== false) {
+        opts = $.extend(
+          { color: color || $this.css('color') },
+          $.fn.spin.presets[opts] || opts
+        )
+        data.spinner = new Spinner(opts).spin(this)
+      }
+    })
+  }
+
+  $.fn.spin.presets = {
+    tiny: { lines: 8, length: 2, width: 2, radius: 3 },
+    small: { lines: 8, length: 4, width: 3, radius: 5 },
+    large: { lines: 10, length: 8, width: 4, radius: 8 }
+  }
+
+}));
diff --git a/view/js/jquery.textinputs.js b/view/js/jquery.textinputs.js
new file mode 100644
index 000000000..fd6d14569
--- /dev/null
+++ b/view/js/jquery.textinputs.js
@@ -0,0 +1,20 @@
+/*
+ Rangy Text Inputs, a cross-browser textarea and text input library plug-in for jQuery.
+
+ Part of Rangy, a cross-browser JavaScript range and selection library
+ http://code.google.com/p/rangy/
+
+ Depends on jQuery 1.0 or later.
+
+ Copyright 2010, Tim Down
+ Licensed under the MIT license.
+ Version: 0.1.205
+ Build date: 5 November 2010
+*/
+(function(n){function o(e,g){var a=typeof e[g];return a==="function"||!!(a=="object"&&e[g])||a=="unknown"}function p(e,g,a){if(g<0)g+=e.value.length;if(typeof a=="undefined")a=g;if(a<0)a+=e.value.length;return{start:g,end:a}}function k(){return typeof document.body=="object"&&document.body?document.body:document.getElementsByTagName("body")[0]}var i,h,q,l,r,s,t,u,m;n(document).ready(function(){function e(a,b){return function(){var c=this.jquery?this[0]:this,d=c.nodeName.toLowerCase();if(c.nodeType==
+1&&(d=="textarea"||d=="input"&&c.type=="text")){c=[c].concat(Array.prototype.slice.call(arguments));c=a.apply(this,c);if(!b)return c}if(b)return this}}var g=document.createElement("textarea");k().appendChild(g);if(typeof g.selectionStart!="undefined"&&typeof g.selectionEnd!="undefined"){i=function(a){return{start:a.selectionStart,end:a.selectionEnd,length:a.selectionEnd-a.selectionStart,text:a.value.slice(a.selectionStart,a.selectionEnd)}};h=function(a,b,c){b=p(a,b,c);a.selectionStart=b.start;a.selectionEnd=
+b.end};m=function(a,b){if(b)a.selectionEnd=a.selectionStart;else a.selectionStart=a.selectionEnd}}else if(o(g,"createTextRange")&&typeof document.selection=="object"&&document.selection&&o(document.selection,"createRange")){i=function(a){var b=0,c=0,d,f,j;if((j=document.selection.createRange())&&j.parentElement()==a){f=a.value.length;d=a.value.replace(/\r\n/g,"\n");c=a.createTextRange();c.moveToBookmark(j.getBookmark());j=a.createTextRange();j.collapse(false);if(c.compareEndPoints("StartToEnd",j)>
+-1)b=c=f;else{b=-c.moveStart("character",-f);b+=d.slice(0,b).split("\n").length-1;if(c.compareEndPoints("EndToEnd",j)>-1)c=f;else{c=-c.moveEnd("character",-f);c+=d.slice(0,c).split("\n").length-1}}}return{start:b,end:c,length:c-b,text:a.value.slice(b,c)}};h=function(a,b,c){b=p(a,b,c);c=a.createTextRange();var d=b.start-(a.value.slice(0,b.start).split("\r\n").length-1);c.collapse(true);if(b.start==b.end)c.move("character",d);else{c.moveEnd("character",b.end-(a.value.slice(0,b.end).split("\r\n").length-
+1));c.moveStart("character",d)}c.select()};m=function(a,b){var c=document.selection.createRange();c.collapse(b);c.select()}}else{k().removeChild(g);window.console&&window.console.log&&window.console.log("TextInputs module for Rangy not supported in your browser. Reason: No means of finding text input caret position");return}k().removeChild(g);l=function(a,b,c,d){var f;if(b!=c){f=a.value;a.value=f.slice(0,b)+f.slice(c)}d&&h(a,b,b)};q=function(a){var b=i(a);l(a,b.start,b.end,true)};u=function(a){var b=
+i(a),c;if(b.start!=b.end){c=a.value;a.value=c.slice(0,b.start)+c.slice(b.end)}h(a,b.start,b.start);return b.text};r=function(a,b,c,d){var f=a.value;a.value=f.slice(0,c)+b+f.slice(c);if(d){b=c+b.length;h(a,b,b)}};s=function(a,b){var c=i(a),d=a.value;a.value=d.slice(0,c.start)+b+d.slice(c.end);c=c.start+b.length;h(a,c,c)};t=function(a,b,c){var d=i(a),f=a.value;a.value=f.slice(0,d.start)+b+d.text+c+f.slice(d.end);b=d.start+b.length;h(a,b,b+d.length)};n.fn.extend({getSelection:e(i,false),setSelection:e(h,
+true),collapseSelection:e(m,true),deleteSelectedText:e(q,true),deleteText:e(l,true),extractSelectedText:e(u,false),insertText:e(r,true),replaceSelectedText:e(s,true),surroundSelectedText:e(t,true)})})})(jQuery);
\ No newline at end of file
diff --git a/view/js/main.js b/view/js/main.js
new file mode 100644
index 000000000..c8e9fc9a2
--- /dev/null
+++ b/view/js/main.js
@@ -0,0 +1,1211 @@
+
+	function confirmDelete() { return confirm(aStr['delitem']); }
+	function commentOpen(obj,id) {
+		if(obj.value == aStr['comment']) {
+			obj.value = '';
+			$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
+			$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
+			$("#mod-cmnt-wrap-" + id).show();
+			openMenu("comment-edit-submit-wrapper-" + id);
+			return true;
+		}
+		return false;
+	}
+	function commentClose(obj,id) {
+		if(obj.value == '') {
+			obj.value = aStr['comment'];
+			$("#comment-edit-text-" + id).removeClass("comment-edit-text-full");
+			$("#comment-edit-text-" + id).addClass("comment-edit-text-empty");
+			$("#mod-cmnt-wrap-" + id).hide();
+			closeMenu("comment-edit-submit-wrapper-" + id);
+			return true;
+		}
+		return false;
+	}
+
+	function showHideCommentBox(id) {
+		if( $('#comment-edit-form-' + id).is(':visible')) {
+			$('#comment-edit-form-' + id).hide();
+		}
+		else {
+			$('#comment-edit-form-' + id).show();
+		}
+	}
+
+
+	function commentInsert(obj,id) {
+		var tmpStr = $("#comment-edit-text-" + id).val();
+		if(tmpStr == '$comment') {
+			tmpStr = '';
+			$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
+			$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
+			openMenu("comment-edit-submit-wrapper-" + id);
+		}
+		var ins = $(obj).html();
+		ins = ins.replace('&lt;','<');
+		ins = ins.replace('&gt;','>');
+		ins = ins.replace('&amp;','&');
+		ins = ins.replace('&quot;','"');
+		$("#comment-edit-text-" + id).val(tmpStr + ins);
+	}
+
+
+	function insertbbcomment(comment,BBcode,id) {
+		// allow themes to override this
+		if(typeof(insertFormatting) != 'undefined')
+		   return(insertFormatting(comment,BBcode,id));
+
+		var tmpStr = $("#comment-edit-text-" + id).val();
+		if(tmpStr == comment) {
+			tmpStr = "";
+			$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
+			$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
+			openMenu("comment-edit-submit-wrapper-" + id);
+			$("#comment-edit-text-" + id).val(tmpStr);
+		}
+
+		textarea = document.getElementById("comment-edit-text-" +id);
+		if (document.selection) {
+			textarea.focus();
+			selected = document.selection.createRange();
+			selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
+		} else if (textarea.selectionStart || textarea.selectionStart == "0") {
+			var start = textarea.selectionStart;
+			var end = textarea.selectionEnd;
+			textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
+		}
+		return true;
+	}
+
+
+
+
+	function qCommentInsert(obj,id) {
+		var tmpStr = $("#comment-edit-text-" + id).val();
+		if(tmpStr == aStr['comment']) {
+			tmpStr = '';
+			$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
+			$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
+			openMenu("comment-edit-submit-wrapper-" + id);
+		}
+		var ins = $(obj).val();
+		ins = ins.replace('&lt;','<');
+		ins = ins.replace('&gt;','>');
+		ins = ins.replace('&amp;','&');
+		ins = ins.replace('&quot;','"');
+		$("#comment-edit-text-" + id).val(tmpStr + ins);
+		$(obj).val('');
+	}
+
+	function showHideComments(id) {
+		if( $('#collapsed-comments-' + id).is(':visible')) {
+			$('#collapsed-comments-' + id).hide();
+			$('#hide-comments-' + id).html(aStr['showmore']);
+		}
+		else {
+			$('#collapsed-comments-' + id).show();
+			$('#hide-comments-' + id).html(aStr['showfewer']);
+		}
+	}
+
+
+  function openClose(theID) {
+    if(document.getElementById(theID).style.display == "block") { 
+      document.getElementById(theID).style.display = "none" 
+    }
+    else { 
+      document.getElementById(theID).style.display = "block" 
+    } 
+  }
+
+  function openMenu(theID) {
+      document.getElementById(theID).style.display = "block" 
+  }
+
+  function closeMenu(theID) {
+      document.getElementById(theID).style.display = "none" 
+  }
+
+  function markRead(notifType) {
+	$.get('ping?f=&markRead='+notifType);
+	if(timer) clearTimeout(timer);
+	$('#' + notifType + '-update').html('');
+	timer = setTimeout(NavUpdate,2000);
+  }
+
+	var src = null;
+	var prev = null;
+	var livetime = null;
+	var msie = false;
+	var stopped = false;
+	var totStopped = false;
+	var timer = null;
+	var pr = 0;
+	var liking = 0;
+	var in_progress = false;
+	var langSelect = false;
+	var commentBusy = false;
+	var last_popup_menu = null;
+	var last_popup_button = null;
+	var scroll_next = false;
+	var next_page = 1;
+	var page_load = true;
+	var loadingPage = true;
+	var pageHasMoreContent = true;
+	var updateCountsOnly = false;
+
+	$(function() {
+		$.ajaxSetup({cache: false});
+
+		msie = false; // $.browser.msie ;
+		
+		/* setup tooltips *//*
+		$("a,.tt").each(function(){
+			var e = $(this);
+			var pos="bottom";
+			if (e.hasClass("tttop")) pos="top";
+			if (e.hasClass("ttbottom")) pos="bottom";
+			if (e.hasClass("ttleft")) pos="left";
+			if (e.hasClass("ttright")) pos="right";
+			e.tipTip({defaultPosition: pos, edgeOffset: 8});
+		});*/
+		
+		var e = document.getElementById('content-complete');
+		if(e)
+			pageHasMoreContent = false;		
+		
+		/* setup onoff widgets */
+		$(".onoff input").each(function(){
+			val = $(this).val();
+			id = $(this).attr("id");
+			$("#"+id+"_onoff ."+ (val==0?"on":"off")).addClass("hidden");
+			
+		});
+		$(".onoff > a").click(function(event){
+			event.preventDefault();	
+			var input = $(this).siblings("input");
+			var val = 1-input.val();
+			var id = input.attr("id");
+			$("#"+id+"_onoff ."+ (val==0?"on":"off")).addClass("hidden");
+			$("#"+id+"_onoff ."+ (val==1?"on":"off")).removeClass("hidden");
+			input.val(val);
+			//console.log(id);
+		});
+		
+		/* setup field_richtext */
+		setupFieldRichtext();
+
+		/* popup menus */
+		function close_last_popup_menu() {
+ 			if(last_popup_menu) {
+ 				last_popup_menu.hide();
+/* 				last_popup_button.removeClass("selected"); */
+	 			last_popup_menu = null;
+ 				last_popup_button = null;
+ 			}	
+		}
+
+		/* Turn elements with one of our special rel tags into popup menus */
+	
+		$('a[rel^=#]').click(function(e){
+				manage_popup_menu(this,e);
+				return false;
+		});
+
+		$('span[rel^=#]').click(function(e){
+				manage_popup_menu(this,e);
+				return false;
+		});
+
+
+		function manage_popup_menu(w,e) {
+			close_last_popup_menu();
+			menu = $( $(w).attr('rel') );
+			e.preventDefault();
+			e.stopPropagation();
+			if (menu.attr('popup')=="false") return false;
+/*			$(w).parent().toggleClass("selected"); */
+			/* notification menus are loaded dynamically 
+			 * - here we find a rel tag to figure out what type of notification to load */
+			var loader_source = $(menu).attr('rel');
+		
+			if(typeof(loader_source) != 'undefined' && loader_source.length) {	
+				notify_popup_loader(loader_source);
+			}
+			menu.toggle();
+			if (menu.css("display") == "none") {
+				last_popup_menu = null;
+				last_popup_button = null;
+			} else {
+				last_popup_menu = menu;
+				last_popup_button = $(w).parent();
+			}
+			return false;
+		}
+	
+		$('html').click(function() {
+			close_last_popup_menu();
+		});
+		
+		// fancyboxes
+		$("a.popupbox").fancybox({
+			'transitionIn' : 'elastic',
+			'transitionOut' : 'elastic'
+		});
+		
+
+			
+ 		NavUpdate(); 
+		// Allow folks to stop the ajax page updates with the pause/break key
+		$(document).keydown(function(event) {
+			if(event.keyCode == '8') {
+				var target = event.target || event.srcElement;
+				if (!/input|textarea/i.test(target.nodeName)) {
+					return false;
+				}
+			}
+			if(event.keyCode == '19' || (event.ctrlKey && event.which == '32')) {
+				event.preventDefault();
+				if(stopped == false) {
+					stopped = true;
+					if (event.ctrlKey) {
+						totStopped = true;
+					}
+					$('#pause').html('<img src="images/pause.gif" alt="pause" style="border: 1px solid black;" />');
+				} else {
+					unpause();
+				}
+			} else {
+				if (!totStopped) {
+					unpause();
+				}
+			}
+		});
+		
+		
+	});
+
+	function NavUpdate() {
+
+		if(liking)
+			$('.like-rotator').spin(false);
+
+		if(! stopped) {
+
+			var pingCmd = 'ping' + ((localUser != 0) ? '?f=&uid=' + localUser : '');
+
+			$.get(pingCmd,function(data) {
+
+				if(data.invalid == 1) { 
+					window.location.href=window.location.href 
+				}
+
+
+				if(! updateCountsOnly) {
+					// start live update
+
+					if($('#live-network').length)   { src = 'network'; liveUpdate(); }
+					if($('#live-channel').length)   { src = 'channel'; liveUpdate(); }
+					if($('#live-community').length) { src = 'community'; liveUpdate(); }
+					if($('#live-display').length)   { src = 'display'; liveUpdate(); }
+					if($('#live-search').length)    { src = 'search'; liveUpdate(); }
+
+					if($('#live-photos').length) { 
+						if(liking) {
+							liking = 0;
+							window.location.href=window.location.href 
+						}
+					}
+				}
+
+				updateCountsOnly = false;
+
+				if(data.network == 0) { 
+					data.network = ''; 
+					$('#net-update').removeClass('show') 
+				} 
+				else { 
+					$('#net-update').addClass('show') 
+				}
+				$('#net-update').html(data.network);
+
+				if(data.home == 0) { data.home = ''; $('#home-update').removeClass('show') } else { $('#home-update').addClass('show') }
+				$('#home-update').html(data.home);
+			
+
+				if(data.intros == 0) { data.intros = ''; $('#intro-update').removeClass('show') } else { $('#intro-update').addClass('show') }
+				$('#intro-update').html(data.intros);
+
+				if(data.mail == 0) { data.mail = ''; $('#mail-update').removeClass('show') } else { $('#mail-update').addClass('show') }
+				$('#mail-update').html(data.mail);
+			
+
+				if(data.notify == 0) { data.notify = ''; $('#notify-update').removeClass('show') } else { $('#notify-update').addClass('show') }
+				$('#notify-update').html(data.notify);
+
+				if(data.register == 0) { data.register = ''; $('#register-update').removeClass('show') } else { $('#register-update').addClass('show') }
+				$('#register-update').html(data.register);
+
+				if(data.events == 0) { data.events = ''; $('#events-update').removeClass('show') } else { $('#events-update').addClass('show') }
+				$('#events-update').html(data.events);
+
+				if(data.events_today == 0) { data.events_today = ''; $('#events-today-update').removeClass('show') } else { $('#events-today-update').addClass('show') }
+				$('#events-today-update').html(data.events_today);
+
+				if(data.birthdays == 0) { data.birthdays = ''; $('#birthdays-update').removeClass('show') } else { $('#birthdays-update').addClass('show') }
+				$('#birthdays-update').html(data.birthdays);
+
+				if(data.birthdays_today == 0) { data.birthdays_today = ''; $('#birthdays-today-update').removeClass('show') } else { $('#birthdays-today-update').addClass('show') }
+				$('#birthdays-today-update').html(data.birthdays_today);
+
+				if(data.all_events == 0) { data.all_events = ''; $('#all_events-update').removeClass('show') } else { $('#all_events-update').addClass('show') }
+				$('#all_events-update').html(data.all_events);
+				if(data.all_events_today == 0) { data.all_events_today = ''; $('#all_events-today-update').removeClass('show') } else { $('#all_events-today-update').addClass('show') }
+				$('#all_events-today-update').html(data.all_events_today);
+
+
+				$(data.notice).each(function() {
+					$.jGrowl(this.message, { sticky: true, theme: 'notice' });
+				});
+
+				$(data.info).each(function(){
+					$.jGrowl(this.message, { sticky: false, theme: 'info', life: 10000 });
+				});
+
+			
+
+			}) ;
+		}
+		timer = setTimeout(NavUpdate,updateInterval);
+	}
+
+
+function updateConvItems(mode,data) {
+
+
+
+	if(mode === 'update') {
+		prev = 'threads-begin';
+
+
+		$('.thread-wrapper.toplevel_item',data).each(function() {
+
+			var ident = $(this).attr('id');
+			var commentWrap = $('#'+ident+' .collapsed-comments').attr('id');
+			var itmId = 0;
+			var isVisible = false;
+
+			if(typeof commentWrap !== 'undefined')
+				itmId = commentWrap.replace('collapsed-comments-','');
+				
+			if($('#' + ident).length == 0 && profile_page == 1) {
+				$('img',this).each(function() {
+					$(this).attr('src',$(this).attr('dst'));
+				});
+				if($('#collapsed-comments-'+itmId).is(':visible'))
+					isVisible = true;
+				$('#' + prev).after($(this));
+				if(isVisible)
+					showHideComments(itmId);
+				$(".autotime").timeago();
+				// divgrow doesn't prevent itself from attaching a second (or 500th)
+				// "show more" div to a content region - it also has a few other
+				// issues related to how we're trying to use it. 
+				// disable for now.
+				//				$("div.wall-item-body").divgrow({ initialHeight: 400 });
+			}
+			else {
+				$('img',this).each(function() {
+					$(this).attr('src',$(this).attr('dst'));
+				});
+				// more FIXME related to expanded comments
+				if($('#collapsed-comments-'+itmId).is(':visible'))
+					isVisible = true;
+				$('#' + ident).replaceWith($(this));
+				if(isVisible)
+					showHideComments(itmId);
+				$(".autotime").timeago();
+				//	$("div.wall-item-body").divgrow({ initialHeight: 400 });
+
+			}
+			prev = ident;
+		});
+	}
+	if(mode === 'append') {
+
+		next = 'threads-end';
+
+
+
+		$('.thread-wrapper.toplevel_item',data).each(function() {
+
+
+			var ident = $(this).attr('id');
+			var commentWrap = $('#'+ident+' .collapsed-comments').attr('id');
+			var itmId = 0;
+			var isVisible = false;
+
+			if(typeof commentWrap !== 'undefined')
+				itmId = commentWrap.replace('collapsed-comments-','');
+
+			if($('#' + ident).length == 0) {
+				$('img',this).each(function() {
+					$(this).attr('src',$(this).attr('dst'));
+				});
+				if($('#collapsed-comments-'+itmId).is(':visible'))
+					isVisible = true;
+				$('#threads-end').before($(this));
+				if(isVisible)
+					showHideComments(itmId);
+				$(".autotime").timeago();
+				//	$("div.wall-item-body").divgrow({ initialHeight: 400 });
+
+			}
+			else {
+				$('img',this).each(function() {
+					$(this).attr('src',$(this).attr('dst'));
+				});
+				if($('#collapsed-comments-'+itmId).is(':visible'))
+					isVisible = true;
+				$('#' + ident).replaceWith($(this));
+				if(isVisible)
+					showHideComments(itmId);
+				$(".autotime").timeago();
+				//	$("div.wall-item-body").divgrow({ initialHeight: 400 });
+			}
+		});
+
+		if(loadingPage) {
+			loadingPage = false;
+		}
+	}
+	if(mode === 'replace') {
+		// clear existing content
+		$('.thread-wrapper').remove();
+
+		prev = 'threads-begin';
+
+		$('.thread-wrapper.toplevel_item',data).each(function() {
+
+			var ident = $(this).attr('id');
+			var commentWrap = $('#'+ident+' .collapsed-comments').attr('id');
+			var itmId = 0;
+			var isVisible = false;
+
+			if(typeof commentWrap !== 'undefined')
+				itmId = commentWrap.replace('collapsed-comments-','');
+
+			if($('#' + ident).length == 0 && profile_page == 1) {
+				$('img',this).each(function() {
+					$(this).attr('src',$(this).attr('dst'));
+				});
+
+				if($('#collapsed-comments-'+itmId).is(':visible'))
+					isVisible = true;
+				$('#' + prev).after($(this));
+				if(isVisible)
+					showHideComments(itmId);
+				$(".autotime").timeago();
+
+				//	$("div.wall-item-body").divgrow({ initialHeight: 400 });
+			}
+			prev = ident;
+		});
+
+		if(loadingPage) {
+			loadingPage = false;
+		}
+	}
+
+	$('.like-rotator').spin(false);
+
+	if(commentBusy) {
+		commentBusy = false;
+		$('body').css('cursor', 'auto');
+	}
+
+	/* autocomplete @nicknames */
+	$(".comment-edit-form  textarea").contact_autocomplete(baseurl+"/acl");
+	
+	var bimgs = $(".wall-item-body img").not(function() { return this.complete; });
+	var bimgcount = bimgs.length;
+
+	if (bimgcount) {
+		bimgs.load(function() {
+				bimgcount--;
+				if (! bimgcount) {
+					collapseHeight();
+
+				}
+			});
+	} else {
+		collapseHeight();
+	}
+
+
+	//	$(".wall-item-body").each(function() {
+	//	if(! $(this).hasClass('divmore')) {
+	//		$(this).divgrow({ initialHeight: 400, showBrackets: false });
+	//		$(this).addClass('divmore');
+	//	}					
+	//});
+
+}
+
+
+	function collapseHeight() {
+		$(".wall-item-body").each(function() {
+				if($(this).height() > 410) {
+				if(! $(this).hasClass('divmore')) {
+					$(this).divgrow({ initialHeight: 400, showBrackets: false });
+					$(this).addClass('divmore');
+				}
+			}					
+		});
+	}
+
+
+
+
+
+	function liveUpdate() {
+		if((src == null) || (stopped) || (! profile_uid)) { $('.like-rotator').spin(false); return; }
+		if(($('.comment-edit-text-full').length) || (in_progress)) {
+			if(livetime) {
+				clearTimeout(livetime);
+			}
+			livetime = setTimeout(liveUpdate, 10000);
+			return;
+		}
+		if(livetime != null)
+			livetime = null;
+
+		prev = 'live-' + src;
+
+		in_progress = true;
+
+		var update_url;
+
+		if(typeof buildCmd == 'function') {
+			if(scroll_next) {
+				bParam_page = next_page;
+				page_load = true;
+			}
+			else {
+				bParam_page = 1;
+			}
+			update_url = buildCmd();
+		}
+		else {
+			page_load = false;
+			var udargs = ((page_load) ? '/load' : '');
+			update_url = 'update_' + src + udargs + '&p=' + profile_uid + '&page=' + profile_page + '&msie=' + ((msie) ? 1 : 0);
+		}
+
+		if(page_load)
+			$("#page-spinner").spin('small');
+
+		$.get(update_url,function(data) {
+			var update_mode = ((page_load) ? 'replace' : 'update');
+			if(scroll_next)
+				update_mode = 'append';
+			page_load = false;
+			scroll_next = false;
+			in_progress = false;
+			updateConvItems(update_mode,data);
+			$("#page-spinner").spin(false);
+			$("#profile-jot-text-loading").spin(false);
+
+			// FIXME - the following lines were added so that almost
+			// immediately after we update the posts on the page, we
+			// re-check and update the notification counts.
+			// As it turns out this causes a bit of an inefficiency
+			// as we're pinging twice for every update, once before
+			// and once after. A btter way to do this is to rewrite
+			// NavUpdate and perhpas LiveUpdate so that we check for 
+			// post updates first and only call the notification ping 
+			// once. 
+
+			updateCountsOnly = true;
+			if(timer) clearTimeout(timer);
+			timer = setTimeout(NavUpdate,10);
+		});
+
+
+	}
+
+
+	function imgbright(node) {
+//		$(node).removeClass("drophide").addClass("drop");
+	}
+
+	function imgdull(node) {
+//		$(node).removeClass("drop").addClass("drophide");
+	}
+
+	function notify_popup_loader(notifyType) {
+
+		/* notifications template */
+		var notifications_tpl= unescape($("#nav-notifications-template[rel=template]").html());
+		var notifications_all = unescape($('<div>').append( $("#nav-" + notifyType + "-see-all").clone() ).html()); //outerHtml hack
+		var notifications_mark = unescape($('<div>').append( $("#nav-" + notifyType + "-mark-all").clone() ).html()); //outerHtml hack
+		var notifications_empty = unescape($("#nav-" + notifyType + "-menu").html());
+		
+		var notify_menu = $("#nav-" + notifyType + "-menu");
+
+		var pingExCmd = 'ping/' + notifyType + ((localUser != 0) ? '?f=&uid=' + localUser : '');
+		$.get(pingExCmd,function(data) {
+
+			if(data.invalid == 1) { 
+				window.location.href=window.location.href 
+			}
+
+
+			if(data.notify.length==0){
+				$("#nav-" + notifyType + "-menu").html(notifications_empty);
+
+			} else {
+				$("#nav-" + notifyType + "-menu").html(notifications_all + notifications_mark);
+
+
+				$(data.notify).each(function() {
+					text = "<span class='contactname'>"+this.name+"</span>" + ' ' + this.message + '<br />';
+					html = notifications_tpl.format(this.notify_link,this.photo,text,this.when,this.class);
+					$("#nav-" + notifyType + "-menu").append(html);
+				});
+
+			}
+		});
+
+	}
+
+
+	// Since our ajax calls are asynchronous, we will give a few 
+	// seconds for the first ajax call (setting like/dislike), then 
+	// run the updater to pick up any changes and display on the page.
+	// The updater will turn any rotators off when it's done. 
+	// This function will have returned long before any of these
+	// events have completed and therefore there won't be any
+	// visible feedback that anything changed without all this
+	// trickery. This still could cause confusion if the "like" ajax call
+	// is delayed and NavUpdate runs before it completes.
+
+
+	function dolike(ident,verb) {
+		unpause();
+		$('#like-rotator-' + ident.toString()).spin('tiny');
+		$.get('like/' + ident.toString() + '?verb=' + verb, NavUpdate );
+		liking = 1;
+	}
+
+	function dosubthread(ident) {
+		unpause();
+		$('#like-rotator-' + ident.toString()).spin('tiny');
+		$.get('subthread/' + ident.toString(), NavUpdate );
+		liking = 1;
+	}
+
+
+	function dostar(ident) {
+		ident = ident.toString();
+		$('#like-rotator-' + ident).spin('tiny');
+		$.get('starred/' + ident, function(data) {
+			if(data.result == 1) {
+				$('#starred-' + ident).addClass('starred');
+				$('#starred-' + ident).removeClass('unstarred');
+				$('#starred-' + ident).addClass('icon-star-full');
+				$('#starred-' + ident).removeClass('icon-star-empty');
+				$('#star-' + ident).addClass('hidden');
+				$('#unstar-' + ident).removeClass('hidden');
+			}
+			else {			
+				$('#starred-' + ident).addClass('unstarred');
+				$('#starred-' + ident).removeClass('starred');
+				$('#starred-' + ident).addClass('icon-star-empty');
+				$('#starred-' + ident).removeClass('icon-star-full');
+				$('#star-' + ident).removeClass('hidden');
+				$('#unstar-' + ident).addClass('hidden');
+			}
+			$('#like-rotator-' + ident).spin(false);	
+		});
+	}
+
+	function getPosition(e) {
+		var cursor = {x:0, y:0};
+		if ( e.pageX || e.pageY  ) {
+			cursor.x = e.pageX;
+			cursor.y = e.pageY;
+		}
+		else {
+			if( e.clientX || e.clientY ) {
+				cursor.x = e.clientX + (document.documentElement.scrollLeft || document.body.scrollLeft) - document.documentElement.clientLeft;
+				cursor.y = e.clientY + (document.documentElement.scrollTop  || document.body.scrollTop)  - document.documentElement.clientTop;
+			}
+			else {
+				if( e.x || e.y ) {
+					cursor.x = e.x;
+					cursor.y = e.y;
+				}
+			}
+		}
+		return cursor;
+	}
+
+	var lockvisible = false;
+
+	function lockview(event,id) {
+		event = event || window.event;
+		cursor = getPosition(event);
+		if(lockvisible) {
+			lockviewhide();
+		}
+		else {
+			lockvisible = true;
+			$.get('lockview/' + id, function(data) {
+				$('#panel').html(data);
+				$('#panel').css({ 'left': cursor.x + 5 , 'top': cursor.y + 5});
+				$('#panel').show();
+			});
+		}
+	}
+
+	function lockviewhide() {
+		lockvisible = false;
+		$('#panel').hide();
+	}
+
+	function post_comment(id) {
+		unpause();
+		commentBusy = true;
+		$('body').css('cursor', 'wait');
+		$("#comment-preview-inp-" + id).val("0");
+		$.post(  
+             "item",  
+             $("#comment-edit-form-" + id).serialize(),
+			function(data) {
+				if(data.success) {
+					$("#comment-edit-wrapper-" + id).hide();
+					$("#comment-edit-text-" + id).val('');
+    	  			var tarea = document.getElementById("comment-edit-text-" + id);
+					if(tarea)
+						commentClose(tarea,id);
+					if(timer) clearTimeout(timer);
+					timer = setTimeout(NavUpdate,1500);
+				}
+				if(data.reload) {
+					window.location.href=data.reload;
+				}
+			},
+			"json"  
+         );  
+         return false;  
+	}
+
+
+	function preview_comment(id) {
+		$("#comment-preview-inp-" + id).val("1");
+		$("#comment-edit-preview-" + id).show();
+		$.post(  
+             "item",  
+             $("#comment-edit-form-" + id).serialize(),
+			function(data) {
+				if(data.preview) {
+						
+					$("#comment-edit-preview-" + id).html(data.preview);
+					$("#comment-edit-preview-" + id + " a").click(function() { return false; });
+				}
+			},
+			"json"  
+         );  
+         return true;  
+	}
+
+
+
+	function preview_post() {
+		$("#jot-preview").val("1");
+		$("#jot-preview-content").show();
+		tinyMCE.triggerSave();
+		$.post(  
+			"item",  
+			$("#profile-jot-form").serialize(),
+			function(data) {
+				if(data.preview) {			
+					$("#jot-preview-content").html(data.preview);
+					$("#jot-preview-content" + " a").click(function() { return false; });
+				}
+			},
+			"json"  
+		);  
+		$("#jot-preview").val("0");
+		return true;  
+	}
+
+
+	function unpause() {
+		// unpause auto reloads if they are currently stopped
+		totStopped = false;
+		stopped = false;
+	    $('#pause').html('');
+	}
+		
+
+    function bin2hex(s){  
+        // Converts the binary representation of data to hex    
+        //   
+        // version: 812.316  
+        // discuss at: http://phpjs.org/functions/bin2hex  
+        // +   original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)  
+        // +   bugfixed by: Onno Marsman  
+        // +   bugfixed by: Linuxworld  
+        // *     example 1: bin2hex('Kev');  
+        // *     returns 1: '4b6576'  
+        // *     example 2: bin2hex(String.fromCharCode(0x00));  
+        // *     returns 2: '00'  
+        var v,i, f = 0, a = [];  
+        s += '';  
+        f = s.length;  
+          
+        for (i = 0; i<f; i++) {  
+            a[i] = s.charCodeAt(i).toString(16).replace(/^([\da-f])$/,"0$1");  
+        }  
+          
+        return a.join('');  
+    }  
+
+	function hex2bin(hex) {
+    	var bytes = [], str;
+
+    	for(var i=0; i< hex.length-1; i+=2)
+        	bytes.push(parseInt(hex.substr(i, 2), 16));
+
+    	return String.fromCharCode.apply(String, bytes);    
+	}
+
+	function groupChangeMember(gid, cid, sec_token) {
+		$('body .fakelink').css('cursor', 'wait');
+		$.get('group/' + gid + '/' + cid + "?t=" + sec_token, function(data) {
+				$('#group-update-wrapper').html(data);
+				$('body .fakelink').css('cursor', 'auto');				
+		});
+	}
+
+	function profChangeMember(gid,cid) {
+		$('body .fakelink').css('cursor', 'wait');
+		$.get('profperm/' + gid + '/' + cid, function(data) {
+				$('#prof-update-wrapper').html(data);
+				$('body .fakelink').css('cursor', 'auto');				
+		});
+	}
+
+	function contactgroupChangeMember(gid,cid) {
+		$('body').css('cursor', 'wait');
+		$.get('contactgroup/' + gid + '/' + cid, function(data) {
+				$('body').css('cursor', 'auto');
+		});
+	}
+
+
+function checkboxhighlight(box) {
+  if($(box).is(':checked')) {
+	$(box).addClass('checkeditem');
+  }
+  else {
+	$(box).removeClass('checkeditem');
+  }
+}
+
+
+// code from http://www.tinymce.com/wiki.php/How-to_implement_a_custom_file_browser
+function fcFileBrowser (field_name, url, type, win) {
+    /* TODO: If you work with sessions in PHP and your client doesn't accept cookies you might need to carry
+       the session name and session ID in the request string (can look like this: "?PHPSESSID=88p0n70s9dsknra96qhuk6etm5").
+       These lines of code extract the necessary parameters and add them back to the filebrowser URL again. */
+
+
+    var cmsURL = baseurl+"/fbrowser/"+type+"/";
+
+    tinyMCE.activeEditor.windowManager.open({
+        file : cmsURL,
+        title : 'File Browser',
+        width : 420,  // Your dimensions may differ - toy around with them!
+        height : 400,
+        resizable : "yes",
+        inline : "yes",  // This parameter only has an effect if you use the inlinepopups plugin!
+        close_previous : "no"
+    }, {
+        window : win,
+        input : field_name
+    });
+    return false;
+  }
+
+function setupFieldRichtext(){
+	tinyMCE.init({
+		theme : "advanced",
+		mode : "specific_textareas",
+		editor_selector: "fieldRichtext",
+		plugins : "bbcode,paste, inlinepopups",
+		theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code",
+		theme_advanced_buttons2 : "",
+		theme_advanced_buttons3 : "",
+		theme_advanced_toolbar_location : "top",
+		theme_advanced_toolbar_align : "center",
+		theme_advanced_blockformats : "blockquote,code",
+		paste_text_sticky : true,
+		entity_encoding : "raw",
+		add_unload_trigger : false,
+		remove_linebreaks : false,
+		force_p_newlines : false,
+		force_br_newlines : true,
+		forced_root_block : '',
+		convert_urls: false,
+		content_css: baseurl+"/view/custom_tinymce.css",
+		theme_advanced_path : false,
+		file_browser_callback : "fcFileBrowser",
+	});
+}
+
+
+/** 
+ * sprintf in javascript 
+ *	"{0} and {1}".format('zero','uno'); 
+ **/
+String.prototype.format = function() {
+    var formatted = this;
+    for (var i = 0; i < arguments.length; i++) {
+        var regexp = new RegExp('\\{'+i+'\\}', 'gi');
+        formatted = formatted.replace(regexp, arguments[i]);
+    }
+    return formatted;
+};
+// Array Remove
+Array.prototype.remove = function(item) {
+  to=undefined; from=this.indexOf(item);
+  var rest = this.slice((to || from) + 1 || this.length);
+  this.length = from < 0 ? this.length + from : from;
+  return this.push.apply(this, rest);
+};
+
+function previewTheme(elm) {
+	theme = $(elm).val();
+	$.getJSON('pretheme?f=&theme=' + theme,function(data) {
+			$('#theme-preview').html('<div id="theme-desc">' + data.desc + '</div><div id="theme-version">' + data.version + '</div><div id="theme-credits">' + data.credits + '</div><a href="' + data.img + '"><img src="' + data.img + '" width="320" height="240" alt="' + theme + '" /></a>');
+	});
+
+}
+
+$(document).ready(function() {
+
+	jQuery.timeago.settings.strings = {
+		prefixAgo     : aStr['t01'],
+		prefixFromNow : aStr['t02'],
+		suffixAgo     : aStr['t03'],
+		suffixFromNow : aStr['t04'],
+		seconds       : aStr['t05'],
+		minute        : aStr['t06'],
+		minutes       : aStr['t07'],
+		hour          : aStr['t08'],
+		hours         : aStr['t09'],
+		day           : aStr['t10'],
+		days          : aStr['t11'],
+		month         : aStr['t12'],
+		months        : aStr['t13'],
+		year          : aStr['t14'],
+		years         : aStr['t15'],
+		wordSeparator : aStr['t16'],
+		numbers       : aStr['t17'],
+	};
+
+
+	$(".autotime").timeago();
+
+});
+
+	function zFormError(elm,x) {
+		if(x) {
+			$(elm).addClass("zform-error");
+			$(elm).removeClass("zform-ok");
+		}
+		else {
+			$(elm).addClass("zform-ok");
+			$(elm).removeClass("zform-error");
+		}											
+	}
+
+
+
+$(window).scroll(function () {                 
+	if(typeof buildCmd == 'function') {
+		$('#more').hide();                 
+		$('#no-more').hide();                 
+	
+		if($(window).scrollTop() + $(window).height() > $(document).height() - 200) {
+			$('#more').css("top","400");
+			$('#more').show();
+		}
+	
+		if($(window).scrollTop() + $(window).height() == $(document).height()) {
+			if((pageHasMoreContent) && (! loadingPage)) {
+				$('#more').hide();
+				$('#no-more').hide();
+				//			alert('scroll');
+				next_page++;
+				scroll_next = true;
+				loadingPage = true;
+				liveUpdate();
+			}
+
+		}
+	}
+});
+
+var chanviewFullSize = false;
+
+function chanviewFull() {
+	if(chanviewFullSize) {
+		chanviewFullSize = false;
+		$('#chanview-iframe-border').css({ 'position' : 'relative', 'z-index' : '10' });
+		$('#remote-channel').css({ 'position' : 'relative' , 'z-index' : '10' });
+	}
+	else {
+		chanviewFullSize = true;
+		$('#chanview-iframe-border').css({ 'position' : 'fixed', 'top' : '0', 'left' : '0', 'z-index' : '150001' });
+		$('#remote-channel').css({ 'position' : 'fixed', 'top' : '0', 'left' : '0', 'z-index' : '150000' });
+		resize_iframe();
+	}
+}
+
+	function addhtmltext(data) {
+		data = h2b(data);
+		addeditortext(data);
+	}
+
+	function addeditortext(data) {
+		if(plaintext == 'none') {
+			var currentText = $("#profile-jot-text").val();
+			$("#profile-jot-text").val(currentText + data);
+		}
+		else
+			tinyMCE.execCommand('mceInsertRawHTML',false,data);
+	}
+
+
+    function h2b(s) {
+		var y = s;
+		function rep(re, str) {
+			y = y.replace(re,str);
+		};
+
+		rep(/<a.*?href=\"(.*?)\".*?>(.*?)<\/a>/gi,"[url=$1]$2[/url]");
+		rep(/<span style=\"font-size:(.*?);\">(.*?)<\/span>/gi,"[size=$1]$2[/size]");
+		rep(/<span style=\"color:(.*?);\">(.*?)<\/span>/gi,"[color=$1]$2[/color]");
+		rep(/<font>(.*?)<\/font>/gi,"$1");
+		rep(/<img.*?width=\"(.*?)\".*?height=\"(.*?)\".*?src=\"(.*?)\".*?\/>/gi,"[img=$1x$2]$3[/img]");
+		rep(/<img.*?height=\"(.*?)\".*?width=\"(.*?)\".*?src=\"(.*?)\".*?\/>/gi,"[img=$2x$1]$3[/img]");
+		rep(/<img.*?src=\"(.*?)\".*?height=\"(.*?)\".*?width=\"(.*?)\".*?\/>/gi,"[img=$3x$2]$1[/img]");
+		rep(/<img.*?src=\"(.*?)\".*?width=\"(.*?)\".*?height=\"(.*?)\".*?\/>/gi,"[img=$2x$3]$1[/img]");
+		rep(/<img.*?src=\"(.*?)\".*?\/>/gi,"[img]$1[/img]");
+
+
+		rep(/<ul class=\"listbullet\" style=\"list-style-type\: circle\;\">(.*?)<\/ul>/gi,"[list]$1[/list]");
+		rep(/<ul class=\"listnone\" style=\"list-style-type\: none\;\">(.*?)<\/ul>/gi,"[list=]$1[/list]");
+		rep(/<ul class=\"listdecimal\" style=\"list-style-type\: decimal\;\">(.*?)<\/ul>/gi,"[list=1]$1[/list]");
+		rep(/<ul class=\"listlowerroman\" style=\"list-style-type\: lower-roman\;\">(.*?)<\/ul>/gi,"[list=i]$1[/list]");
+		rep(/<ul class=\"listupperroman\" style=\"list-style-type\: upper-roman\;\">(.*?)<\/ul>/gi,"[list=I]$1[/list]");
+		rep(/<ul class=\"listloweralpha\" style=\"list-style-type\: lower-alpha\;\">(.*?)<\/ul>/gi,"[list=a]$1[/list]");
+		rep(/<ul class=\"listupperalpha\" style=\"list-style-type\: upper-alpha\;\">(.*?)<\/ul>/gi,"[list=A]$1[/list]");
+		rep(/<li>(.*?)<\/li>/gi,"[li]$1[/li]");
+
+		rep(/<code>(.*?)<\/code>/gi,"[code]$1[/code]");
+		rep(/<\/(strong|b)>/gi,"[/b]");
+		rep(/<(strong|b)>/gi,"[b]");
+		rep(/<\/(em|i)>/gi,"[/i]");
+		rep(/<(em|i)>/gi,"[i]");
+		rep(/<\/u>/gi,"[/u]");
+
+
+		rep(/<span style=\"text-decoration: ?underline;\">(.*?)<\/span>/gi,"[u]$1[/u]");
+		rep(/<u>/gi,"[u]");
+		rep(/<blockquote[^>]*>/gi,"[quote]");
+		rep(/<\/blockquote>/gi,"[/quote]");
+		rep(/<hr \/>/gi,"[hr]");
+		rep(/<br (.*?)\/>/gi,"\n");
+		rep(/<br\/>/gi,"\n");
+		rep(/<br>/gi,"\n");
+		rep(/<p>/gi,"");
+		rep(/<\/p>/gi,"\n");
+		rep(/&nbsp;/gi," ");
+		rep(/&quot;/gi,"\"");
+		rep(/&lt;/gi,"<");
+		rep(/&gt;/gi,">");
+		rep(/&amp;/gi,"&");
+
+		return y; 
+	};
+
+
+    function b2h(s) {
+		var y = s;
+		function rep(re, str) {
+			y = y.replace(re,str);
+		};
+
+		rep(/\&/gi,"&amp;");
+		rep(/\</gi,"&lt;");
+		rep(/\>/gi,"&gt;");
+		rep(/\"/gi,"&quot;");
+
+		rep(/\n/gi,"<br />");
+		rep(/\[b\]/gi,"<strong>");
+		rep(/\[\/b\]/gi,"</strong>");
+		rep(/\[i\]/gi,"<em>");
+		rep(/\[\/i\]/gi,"</em>");
+		rep(/\[u\]/gi,"<u>");
+		rep(/\[\/u\]/gi,"</u>");
+		rep(/\[hr\]/gi,"<hr />");
+		rep(/\[url=([^\]]+)\](.*?)\[\/url\]/gi,"<a href=\"$1\">$2</a>");
+		rep(/\[url\](.*?)\[\/url\]/gi,"<a href=\"$1\">$1</a>");
+		rep(/\[img=(.*?)x(.*?)\](.*?)\[\/img\]/gi,"<img width=\"$1\" height=\"$2\" src=\"$3\" />");
+		rep(/\[img\](.*?)\[\/img\]/gi,"<img src=\"$1\" />");
+
+		// FIXME - add zid()
+		rep(/\[zrl=([^\]]+)\](.*?)\[\/zrl\]/gi,"<a href=\"$1" + '?f=&zid=' + zid + "\">$2</a>");
+		rep(/\[zrl\](.*?)\[\/zrl\]/gi,"<a href=\"$1" + '?f=&zid=' + zid + "\">$1</a>");
+		rep(/\[zmg=(.*?)x(.*?)\](.*?)\[\/zmg\]/gi,"<img width=\"$1\" height=\"$2\" src=\"$3" + '?f=&zid=' + zid + "\" />");
+		rep(/\[zmg\](.*?)\[\/zmg\]/gi,"<img src=\"$1" + '?f=&zid=' + zid + "\" />");
+
+		rep(/\[list\](.*?)\[\/list\]/gi, '<ul class="listbullet" style="list-style-type: circle;">$1</ul>');
+		rep(/\[list=\](.*?)\[\/list\]/gi, '<ul class="listnone" style="list-style-type: none;">$1</ul>');
+		rep(/\[list=1\](.*?)\[\/list\]/gi, '<ul class="listdecimal" style="list-style-type: decimal;">$1</ul>');
+		rep(/\[list=i\](.*?)\[\/list\]/gi,'<ul class="listlowerroman" style="list-style-type: lower-roman;">$1</ul>');
+		rep(/\[list=I\](.*?)\[\/list\]/gi, '<ul class="listupperroman" style="list-style-type: upper-roman;">$1</ul>');
+		rep(/\[list=a\](.*?)\[\/list\]/gi, '<ul class="listloweralpha" style="list-style-type: lower-alpha;">$1</ul>');
+		rep(/\[list=A\](.*?)\[\/list\]/gi, '<ul class="listupperalpha" style="list-style-type: upper-alpha;">$1</ul>');
+		rep(/\[li\](.*?)\[\/li\]/gi, '<li>$1</li>');
+		rep(/\[color=(.*?)\](.*?)\[\/color\]/gi,"<span style=\"color: $1;\">$2</span>");
+		rep(/\[size=(.*?)\](.*?)\[\/size\]/gi,"<span style=\"font-size: $1;\">$2</span>");
+		rep(/\[code\](.*?)\[\/code\]/gi,"<code>$1</code>");
+		rep(/\[quote.*?\](.*?)\[\/quote\]/gi,"<blockquote>$1</blockquote>");
+
+		rep(/\[video\](.*?)\[\/video\]/gi,"<a href=\"$1\">$1</a>");
+		rep(/\[audio\](.*?)\[\/audio\]/gi,"<a href=\"$1\">$1</a>");
+
+		rep(/\[\&amp\;([#a-z0-9]+)\;\]/gi,'&$1;');
+
+		rep(/\<(.*?)(src|href)=\"[^hfm](.*?)\>/gi,'<$1$2="">');
+
+		return y; 
+	};
+
+
+function zid(s) {
+	if((! s.length) || (s.indexOf('zid=') != (-1)))
+		return s;
+	if(! zid.length)
+		return s;
+	var has_params = ((s.indexOf('?') == (-1)) ? false : true);
+	var achar = ((has_params) ? '&' : '?');
+	s = s + achar + 'f=&zid=' + zid;
+	return s;
+}
diff --git a/view/js/spin.js b/view/js/spin.js
new file mode 100644
index 000000000..c66c607a7
--- /dev/null
+++ b/view/js/spin.js
@@ -0,0 +1,349 @@
+//fgnass.github.com/spin.js#v1.3
+
+/**
+ * Copyright (c) 2011-2013 Felix Gnass
+ * Licensed under the MIT license
+ */
+(function(root, factory) {
+
+  /* CommonJS */
+  if (typeof exports == 'object')  module.exports = factory()
+
+  /* AMD module */
+  else if (typeof define == 'function' && define.amd) define(factory)
+
+  /* Browser global */
+  else root.Spinner = factory()
+}
+(this, function() {
+  "use strict";
+
+  var prefixes = ['webkit', 'Moz', 'ms', 'O'] /* Vendor prefixes */
+    , animations = {} /* Animation rules keyed by their name */
+    , useCssAnimations /* Whether to use CSS animations or setTimeout */
+
+  /**
+   * Utility function to create elements. If no tag name is given,
+   * a DIV is created. Optionally properties can be passed.
+   */
+  function createEl(tag, prop) {
+    var el = document.createElement(tag || 'div')
+      , n
+
+    for(n in prop) el[n] = prop[n]
+    return el
+  }
+
+  /**
+   * Appends children and returns the parent.
+   */
+  function ins(parent /* child1, child2, ...*/) {
+    for (var i=1, n=arguments.length; i<n; i++)
+      parent.appendChild(arguments[i])
+
+    return parent
+  }
+
+  /**
+   * Insert a new stylesheet to hold the @keyframe or VML rules.
+   */
+  var sheet = (function() {
+    var el = createEl('style', {type : 'text/css'})
+    ins(document.getElementsByTagName('head')[0], el)
+    return el.sheet || el.styleSheet
+  }())
+
+  /**
+   * Creates an opacity keyframe animation rule and returns its name.
+   * Since most mobile Webkits have timing issues with animation-delay,
+   * we create separate rules for each line/segment.
+   */
+  function addAnimation(alpha, trail, i, lines) {
+    var name = ['opacity', trail, ~~(alpha*100), i, lines].join('-')
+      , start = 0.01 + i/lines * 100
+      , z = Math.max(1 - (1-alpha) / trail * (100-start), alpha)
+      , prefix = useCssAnimations.substring(0, useCssAnimations.indexOf('Animation')).toLowerCase()
+      , pre = prefix && '-' + prefix + '-' || ''
+
+    if (!animations[name]) {
+      sheet.insertRule(
+        '@' + pre + 'keyframes ' + name + '{' +
+        '0%{opacity:' + z + '}' +
+        start + '%{opacity:' + alpha + '}' +
+        (start+0.01) + '%{opacity:1}' +
+        (start+trail) % 100 + '%{opacity:' + alpha + '}' +
+        '100%{opacity:' + z + '}' +
+        '}', sheet.cssRules.length)
+
+      animations[name] = 1
+    }
+
+    return name
+  }
+
+  /**
+   * Tries various vendor prefixes and returns the first supported property.
+   */
+  function vendor(el, prop) {
+    var s = el.style
+      , pp
+      , i
+
+    if(s[prop] !== undefined) return prop
+    prop = prop.charAt(0).toUpperCase() + prop.slice(1)
+    for(i=0; i<prefixes.length; i++) {
+      pp = prefixes[i]+prop
+      if(s[pp] !== undefined) return pp
+    }
+  }
+
+  /**
+   * Sets multiple style properties at once.
+   */
+  function css(el, prop) {
+    for (var n in prop)
+      el.style[vendor(el, n)||n] = prop[n]
+
+    return el
+  }
+
+  /**
+   * Fills in default values.
+   */
+  function merge(obj) {
+    for (var i=1; i < arguments.length; i++) {
+      var def = arguments[i]
+      for (var n in def)
+        if (obj[n] === undefined) obj[n] = def[n]
+    }
+    return obj
+  }
+
+  /**
+   * Returns the absolute page-offset of the given element.
+   */
+  function pos(el) {
+    var o = { x:el.offsetLeft, y:el.offsetTop }
+    while((el = el.offsetParent))
+      o.x+=el.offsetLeft, o.y+=el.offsetTop
+
+    return o
+  }
+
+  // Built-in defaults
+
+  var defaults = {
+    lines: 12,            // The number of lines to draw
+    length: 7,            // The length of each line
+    width: 5,             // The line thickness
+    radius: 10,           // The radius of the inner circle
+    rotate: 0,            // Rotation offset
+    corners: 1,           // Roundness (0..1)
+    color: '#000',        // #rgb or #rrggbb
+    direction: 1,         // 1: clockwise, -1: counterclockwise
+    speed: 1,             // Rounds per second
+    trail: 100,           // Afterglow percentage
+    opacity: 1/4,         // Opacity of the lines
+    fps: 20,              // Frames per second when using setTimeout()
+    zIndex: 2e9,          // Use a high z-index by default
+    className: 'spinner', // CSS class to assign to the element
+    top: 'auto',          // center vertically
+    left: 'auto',         // center horizontally
+    position: 'relative'  // element position
+  }
+
+  /** The constructor */
+  function Spinner(o) {
+    if (typeof this == 'undefined') return new Spinner(o)
+    this.opts = merge(o || {}, Spinner.defaults, defaults)
+  }
+
+  // Global defaults that override the built-ins:
+  Spinner.defaults = {}
+
+  merge(Spinner.prototype, {
+
+    /**
+     * Adds the spinner to the given target element. If this instance is already
+     * spinning, it is automatically removed from its previous target b calling
+     * stop() internally.
+     */
+    spin: function(target) {
+      this.stop()
+
+      var self = this
+        , o = self.opts
+        , el = self.el = css(createEl(0, {className: o.className}), {position: o.position, width: 0, zIndex: o.zIndex})
+        , mid = o.radius+o.length+o.width
+        , ep // element position
+        , tp // target position
+
+      if (target) {
+        target.insertBefore(el, target.firstChild||null)
+        tp = pos(target)
+        ep = pos(el)
+        css(el, {
+          left: (o.left == 'auto' ? tp.x-ep.x + (target.offsetWidth >> 1) : parseInt(o.left, 10) + mid) + 'px',
+          top: (o.top == 'auto' ? tp.y-ep.y + (target.offsetHeight >> 1) : parseInt(o.top, 10) + mid)  + 'px'
+        })
+      }
+
+      el.setAttribute('role', 'progressbar')
+      self.lines(el, self.opts)
+
+      if (!useCssAnimations) {
+        // No CSS animation support, use setTimeout() instead
+        var i = 0
+          , start = (o.lines - 1) * (1 - o.direction) / 2
+          , alpha
+          , fps = o.fps
+          , f = fps/o.speed
+          , ostep = (1-o.opacity) / (f*o.trail / 100)
+          , astep = f/o.lines
+
+        ;(function anim() {
+          i++;
+          for (var j = 0; j < o.lines; j++) {
+            alpha = Math.max(1 - (i + (o.lines - j) * astep) % f * ostep, o.opacity)
+
+            self.opacity(el, j * o.direction + start, alpha, o)
+          }
+          self.timeout = self.el && setTimeout(anim, ~~(1000/fps))
+        })()
+      }
+      return self
+    },
+
+    /**
+     * Stops and removes the Spinner.
+     */
+    stop: function() {
+      var el = this.el
+      if (el) {
+        clearTimeout(this.timeout)
+        if (el.parentNode) el.parentNode.removeChild(el)
+        this.el = undefined
+      }
+      return this
+    },
+
+    /**
+     * Internal method that draws the individual lines. Will be overwritten
+     * in VML fallback mode below.
+     */
+    lines: function(el, o) {
+      var i = 0
+        , start = (o.lines - 1) * (1 - o.direction) / 2
+        , seg
+
+      function fill(color, shadow) {
+        return css(createEl(), {
+          position: 'absolute',
+          width: (o.length+o.width) + 'px',
+          height: o.width + 'px',
+          background: color,
+          boxShadow: shadow,
+          transformOrigin: 'left',
+          transform: 'rotate(' + ~~(360/o.lines*i+o.rotate) + 'deg) translate(' + o.radius+'px' +',0)',
+          borderRadius: (o.corners * o.width>>1) + 'px'
+        })
+      }
+
+      for (; i < o.lines; i++) {
+        seg = css(createEl(), {
+          position: 'absolute',
+          top: 1+~(o.width/2) + 'px',
+          transform: o.hwaccel ? 'translate3d(0,0,0)' : '',
+          opacity: o.opacity,
+          animation: useCssAnimations && addAnimation(o.opacity, o.trail, start + i * o.direction, o.lines) + ' ' + 1/o.speed + 's linear infinite'
+        })
+
+        if (o.shadow) ins(seg, css(fill('#000', '0 0 4px ' + '#000'), {top: 2+'px'}))
+
+        ins(el, ins(seg, fill(o.color, '0 0 1px rgba(0,0,0,.1)')))
+      }
+      return el
+    },
+
+    /**
+     * Internal method that adjusts the opacity of a single line.
+     * Will be overwritten in VML fallback mode below.
+     */
+    opacity: function(el, i, val) {
+      if (i < el.childNodes.length) el.childNodes[i].style.opacity = val
+    }
+
+  })
+
+
+  function initVML() {
+
+    /* Utility function to create a VML tag */
+    function vml(tag, attr) {
+      return createEl('<' + tag + ' xmlns="urn:schemas-microsoft.com:vml" class="spin-vml">', attr)
+    }
+
+    // No CSS transforms but VML support, add a CSS rule for VML elements:
+    sheet.addRule('.spin-vml', 'behavior:url(#default#VML)')
+
+    Spinner.prototype.lines = function(el, o) {
+      var r = o.length+o.width
+        , s = 2*r
+
+      function grp() {
+        return css(
+          vml('group', {
+            coordsize: s + ' ' + s,
+            coordorigin: -r + ' ' + -r
+          }),
+          { width: s, height: s }
+        )
+      }
+
+      var margin = -(o.width+o.length)*2 + 'px'
+        , g = css(grp(), {position: 'absolute', top: margin, left: margin})
+        , i
+
+      function seg(i, dx, filter) {
+        ins(g,
+          ins(css(grp(), {rotation: 360 / o.lines * i + 'deg', left: ~~dx}),
+            ins(css(vml('roundrect', {arcsize: o.corners}), {
+                width: r,
+                height: o.width,
+                left: o.radius,
+                top: -o.width>>1,
+                filter: filter
+              }),
+              vml('fill', {color: o.color, opacity: o.opacity}),
+              vml('stroke', {opacity: 0}) // transparent stroke to fix color bleeding upon opacity change
+            )
+          )
+        )
+      }
+
+      if (o.shadow)
+        for (i = 1; i <= o.lines; i++)
+          seg(i, -2, 'progid:DXImageTransform.Microsoft.Blur(pixelradius=2,makeshadow=1,shadowopacity=.3)')
+
+      for (i = 1; i <= o.lines; i++) seg(i)
+      return ins(el, g)
+    }
+
+    Spinner.prototype.opacity = function(el, i, val, o) {
+      var c = el.firstChild
+      o = o.shadow && o.lines || 0
+      if (c && i+o < c.childNodes.length) {
+        c = c.childNodes[i+o]; c = c && c.firstChild; c = c && c.firstChild
+        if (c) c.opacity = val
+      }
+    }
+  }
+
+  var probe = css(createEl('group'), {behavior: 'url(#default#VML)'})
+
+  if (!vendor(probe, 'transform') && probe.adj) initVML()
+  else useCssAnimations = vendor(probe, 'animation')
+
+  return Spinner
+
+}));
diff --git a/view/js/webtoolkit.base64.js b/view/js/webtoolkit.base64.js
new file mode 100644
index 000000000..5fa3c1ed7
--- /dev/null
+++ b/view/js/webtoolkit.base64.js
@@ -0,0 +1,142 @@
+/**
+*
+*  Base64 encode / decode
+*  http://www.webtoolkit.info/
+*
+**/
+
+var Base64 = {
+
+	// private property
+	_keyStr : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",
+
+	// public method for encoding
+	encode : function (input) {
+		var output = "";
+		var chr1, chr2, chr3, enc1, enc2, enc3, enc4;
+		var i = 0;
+
+		input = Base64._utf8_encode(input);
+
+		while (i < input.length) {
+
+			chr1 = input.charCodeAt(i++);
+			chr2 = input.charCodeAt(i++);
+			chr3 = input.charCodeAt(i++);
+
+			enc1 = chr1 >> 2;
+			enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
+			enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);
+			enc4 = chr3 & 63;
+
+			if (isNaN(chr2)) {
+				enc3 = enc4 = 64;
+			} else if (isNaN(chr3)) {
+				enc4 = 64;
+			}
+
+			output = output +
+			this._keyStr.charAt(enc1) + this._keyStr.charAt(enc2) +
+			this._keyStr.charAt(enc3) + this._keyStr.charAt(enc4);
+
+		}
+
+		return output;
+	},
+
+	// public method for decoding
+	decode : function (input) {
+		var output = "";
+		var chr1, chr2, chr3;
+		var enc1, enc2, enc3, enc4;
+		var i = 0;
+
+		input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");
+
+		while (i < input.length) {
+
+			enc1 = this._keyStr.indexOf(input.charAt(i++));
+			enc2 = this._keyStr.indexOf(input.charAt(i++));
+			enc3 = this._keyStr.indexOf(input.charAt(i++));
+			enc4 = this._keyStr.indexOf(input.charAt(i++));
+
+			chr1 = (enc1 << 2) | (enc2 >> 4);
+			chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
+			chr3 = ((enc3 & 3) << 6) | enc4;
+
+			output = output + String.fromCharCode(chr1);
+
+			if (enc3 != 64) {
+				output = output + String.fromCharCode(chr2);
+			}
+			if (enc4 != 64) {
+				output = output + String.fromCharCode(chr3);
+			}
+
+		}
+
+		output = Base64._utf8_decode(output);
+
+		return output;
+
+	},
+
+	// private method for UTF-8 encoding
+	_utf8_encode : function (string) {
+		string = string.replace(/\r\n/g,"\n");
+		var utftext = "";
+
+		for (var n = 0; n < string.length; n++) {
+
+			var c = string.charCodeAt(n);
+
+			if (c < 128) {
+				utftext += String.fromCharCode(c);
+			}
+			else if((c > 127) && (c < 2048)) {
+				utftext += String.fromCharCode((c >> 6) | 192);
+				utftext += String.fromCharCode((c & 63) | 128);
+			}
+			else {
+				utftext += String.fromCharCode((c >> 12) | 224);
+				utftext += String.fromCharCode(((c >> 6) & 63) | 128);
+				utftext += String.fromCharCode((c & 63) | 128);
+			}
+
+		}
+
+		return utftext;
+	},
+
+	// private method for UTF-8 decoding
+	_utf8_decode : function (utftext) {
+		var string = "";
+		var i = 0;
+		var c = c1 = c2 = 0;
+
+		while ( i < utftext.length ) {
+
+			c = utftext.charCodeAt(i);
+
+			if (c < 128) {
+				string += String.fromCharCode(c);
+				i++;
+			}
+			else if((c > 191) && (c < 224)) {
+				c2 = utftext.charCodeAt(i+1);
+				string += String.fromCharCode(((c & 31) << 6) | (c2 & 63));
+				i += 2;
+			}
+			else {
+				c2 = utftext.charCodeAt(i+1);
+				c3 = utftext.charCodeAt(i+2);
+				string += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));
+				i += 3;
+			}
+
+		}
+
+		return string;
+	}
+
+}
diff --git a/view/php/theme_init.php b/view/php/theme_init.php
index 4aecb8ecf..da50144dc 100644
--- a/view/php/theme_init.php
+++ b/view/php/theme_init.php
@@ -17,15 +17,15 @@ head_add_css('view/css/bootstrap-red.css');
 head_add_css('view/css/widgets.css');
 head_add_css('library/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css');
 
-head_add_js('js/jquery.js');
+head_add_js('jquery.js');
 head_add_js('library/bootstrap/js/bootstrap.min.js');
 head_add_js('library/bootstrap/js/bootbox.min.js');
-head_add_js('js/jquery-migrate-1.1.1.js');
-//head_add_js('js/jquery-compat.js');
-head_add_js('js/spin.js');
-head_add_js('js/jquery.spin.js');
-head_add_js('js/jquery.textinputs.js');
-head_add_js('js/fk.autocomplete.js');
+head_add_js('jquery-migrate-1.1.1.js');
+//head_add_js('jquery-compat.js');
+head_add_js('spin.js');
+head_add_js('jquery.spin.js');
+head_add_js('jquery.textinputs.js');
+head_add_js('fk.autocomplete.js');
 head_add_js('library/fancybox/jquery.fancybox-1.3.4.js');
 head_add_js('library/jquery.timeago.js');
 head_add_js('library/jquery.divgrow/jquery.divgrow-1.3.1.js');
@@ -37,10 +37,10 @@ head_add_js('library/cryptojs/components/core-min.js');
 head_add_js('library/cryptojs/rollups/aes.js');
 head_add_js('library/cryptojs/rollups/rabbit.js');
 head_add_js('library/cryptojs/rollups/tripledes.js');
-head_add_js('js/acl.js');
-head_add_js('js/webtoolkit.base64.js');
-head_add_js('js/main.js');
-head_add_js('js/crypto.js');
+head_add_js('acl.js');
+head_add_js('webtoolkit.base64.js');
+head_add_js('main.js');
+head_add_js('crypto.js');
 head_add_js('library/jslider/bin/jquery.slider.min.js');
 head_add_js('docready.js');
 head_add_js('library/prettyphoto/js/jquery.prettyPhoto.js');
-- 
cgit v1.2.3


From daa7ee12750feba7db405646386202be6d2ca2f6 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sat, 4 Jan 2014 15:42:51 -0800
Subject: make plink href visible

---
 view/tpl/conv_item.tpl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'view')

diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl
index 4108108b2..50a243ff4 100755
--- a/view/tpl/conv_item.tpl
+++ b/view/tpl/conv_item.tpl
@@ -72,10 +72,10 @@
 				<i class="icon-retweet item-tool" title="{{$item.share.0}}" onclick="jotShare({{$item.id}}); return false"></i>
 			{{/if}}
 			{{if $item.plink}}
-				<i class="icon-external-link item-tool" onclick="window.location.href='{{$item.plink.href}}'; return false;" title="{{$item.plink.title}}"></i>
+				<a href="{{$item.plink.href}}" title="{{$item.plink.title}}" ><i class="icon-external-link item-tool"></i></a>
 			{{/if}}
 			{{if $item.edpost}}
-				<i class="editpost icon-pencil item-tool" onclick="window.location.href='{{$item.edpost.0}}'; return false;" title="{{$item.edpost.1}}"></i>
+				<a href="{{$item.edpost.0}}" title="{{$item.edpost.1}}"><i class="editpost icon-pencil item-tool"></i></a>
 			{{/if}}			 
 			{{if $item.star}}
 			<i id="starred-{{$item.id}}" onclick="dostar({{$item.id}}); return false;" class="star-item item-tool {{$item.star.isstarred}}" title="{{$item.star.toggle}}"></i>
-- 
cgit v1.2.3


From 24450fe8efd856c66c85031c8e99928e50445045 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sun, 5 Jan 2014 16:44:58 -0800
Subject: likes to comments getting indented an extra 50px

---
 view/css/conversation.css | 5 -----
 1 file changed, 5 deletions(-)

(limited to 'view')

diff --git a/view/css/conversation.css b/view/css/conversation.css
index 493ce9cd5..3396863e7 100644
--- a/view/css/conversation.css
+++ b/view/css/conversation.css
@@ -331,11 +331,6 @@
 	filter:alpha(opacity=100);
 }
 
-.wall-item-like.comment,
-.wall-item-dislike.comment {
-	margin-left: 50px;
-}
-
 .wall-item-like,
 .wall-item-dislike {
 	margin-top: 5px;
-- 
cgit v1.2.3


From 8dc22c564aee0a6edf590a9a47021ea1ceb4aecf Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Mon, 6 Jan 2014 16:49:07 -0800
Subject: provide ability to change attachment/file permissions

---
 view/tpl/attach_edit.tpl | 32 ++++++++++++++++++++++++++++++++
 view/tpl/filestorage.tpl |  1 +
 2 files changed, 33 insertions(+)
 create mode 100644 view/tpl/attach_edit.tpl

(limited to 'view')

diff --git a/view/tpl/attach_edit.tpl b/view/tpl/attach_edit.tpl
new file mode 100644
index 000000000..1483336ff
--- /dev/null
+++ b/view/tpl/attach_edit.tpl
@@ -0,0 +1,32 @@
+
+<h1>{{$header}}</h1>
+
+<h2>{{$file.filename}}</h2>
+
+
+<div id="attach-edit-backlink"><a href="filestorage/{{$channelnick}}">{{$backlink}}</a></div>
+
+
+<form action="filestorage/{{$channelnick}}/{{$file.id}}/edit" method="post" >
+
+<input type="hidden" name="channelnick" value="{{$channelnick}}" />
+<input type="hidden" name="filehash" value="{{$file.hash}}" />
+<input type="hidden" name="uid" value="{{$uid}}" />
+<input type="hidden" name="fileid" value="{{$file.id}}" />
+
+{{if $isadir}}
+<div id="attach-edit-recurse" >
+  <label id="attach-edit-recurse-text" for="attach-recurse-input" >{{$recurse}}</label>
+  <input id="attach-recurse-input" type="checkbox" name="recurse" value="1" />
+</div>
+{{/if}}
+
+<div id="attach-edit-perms" >
+{{$aclselect}}
+</div>
+
+<div class="clear"></div>
+<input type="submit" name="submit" value="{{$submit}}" />
+</form>
+
+
diff --git a/view/tpl/filestorage.tpl b/view/tpl/filestorage.tpl
index 995b52cc8..a3eab83d5 100644
--- a/view/tpl/filestorage.tpl
+++ b/view/tpl/filestorage.tpl
@@ -8,6 +8,7 @@
 				{{foreach $items as $item}}
 					<div class="files-list-item">
 					<a href="attach/{{$item.download}}">{{$download}}</a> |
+					<a href="{{$baseurl}}/{{$item.id}}/edit">{{$edit}} |
 					<a href="{{$baseurl}}/{{$item.id}}/delete">{{$delete}}
 					<a href="page/{{$channel}}/{{$item.title}}">{{$title}}</a> {{$item.title}} | 
 					{{$item.size}} bytes
-- 
cgit v1.2.3


From 41df51a8151a5c1f35abe3c04f94e43b673e29ff Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Mon, 6 Jan 2014 17:10:53 -0800
Subject: add "self" to access control lists with special marking to indicate
 it's special (for instance you can't really deny access to yourself). But
 this lets us make something private to our eyes only; whatever it may be.

---
 view/js/acl.js                    | 4 ++--
 view/theme/redbasic/css/style.css | 4 ++++
 2 files changed, 6 insertions(+), 2 deletions(-)

(limited to 'view')

diff --git a/view/js/acl.js b/view/js/acl.js
index 906b28354..84b080de2 100644
--- a/view/js/acl.js
+++ b/view/js/acl.js
@@ -259,8 +259,8 @@ ACL.prototype.populate = function(data){
 	var height = Math.ceil(data.tot / that.nw) * 42;
 	that.list_content.height(height);
 	$(data.items).each(function(){
-		html = "<div class='acl-list-item {4} {5} {7}' title='{6}' id='{2}{3}'>"+that.item_tpl+"</div>";
-		html = html.format( this.photo, this.name, this.type, this.xid, '', this.network, this.link, this.taggable );
+		html = "<div class='acl-list-item {4} {7} {5}' title='{6}' id='{2}{3}'>"+that.item_tpl+"</div>";
+		html = html.format( this.photo, this.name, this.type, this.xid, '', this.self, this.link, this.taggable );
 		if (this.uids!=undefined) that.group_uids[this.id] = this.uids;
 		//console.log(html);
 		that.list_content.append(html);
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 325685607..f039b7374 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -2441,3 +2441,7 @@ img.mail-list-sender-photo {
 	margin-top: 8px;
 	margin-right: 15px;
 }
+
+.abook-self {
+	background-color: #ffdddd;
+}
\ No newline at end of file
-- 
cgit v1.2.3


From 5a5466346cccecec257fc20a993bfa2426b8bf48 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Mon, 6 Jan 2014 18:13:02 -0800
Subject: prepare for OS file storage, and add bbcode attachment link to
 mod/filestorage. This isn't beautiful, but it's a start.

---
 view/tpl/filestorage.tpl | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

(limited to 'view')

diff --git a/view/tpl/filestorage.tpl b/view/tpl/filestorage.tpl
index a3eab83d5..7decd5ea6 100644
--- a/view/tpl/filestorage.tpl
+++ b/view/tpl/filestorage.tpl
@@ -7,10 +7,10 @@
 		{{foreach $files as $key => $items}} 
 				{{foreach $items as $item}}
 					<div class="files-list-item">
-					<a href="attach/{{$item.download}}">{{$download}}</a> |
-					<a href="{{$baseurl}}/{{$item.id}}/edit">{{$edit}} |
-					<a href="{{$baseurl}}/{{$item.id}}/delete">{{$delete}}
-					<a href="page/{{$channel}}/{{$item.title}}">{{$title}}</a> {{$item.title}} | 
+					<a href="{{$baseurl}}/{{$item.id}}/edit">{{$edit}}</a> |
+					<a href="{{$baseurl}}/{{$item.id}}/delete">{{$delete}}</a> |
+					[attachment]{{$item.download}},{{$item.rev}}[/attachment] |
+					<a href="attach/{{$item.download}}">{{$item.title}}</a> | 
 					{{$item.size}} bytes
 
 </div>
-- 
cgit v1.2.3


From e49e6c0d2a409b71937b126ebd3d0bbd6be6d676 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Mon, 6 Jan 2014 18:20:14 -0800
Subject: special handling for directories

---
 view/tpl/filestorage.tpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/tpl/filestorage.tpl b/view/tpl/filestorage.tpl
index 7decd5ea6..0089f7918 100644
--- a/view/tpl/filestorage.tpl
+++ b/view/tpl/filestorage.tpl
@@ -10,7 +10,7 @@
 					<a href="{{$baseurl}}/{{$item.id}}/edit">{{$edit}}</a> |
 					<a href="{{$baseurl}}/{{$item.id}}/delete">{{$delete}}</a> |
 					[attachment]{{$item.download}},{{$item.rev}}[/attachment] |
-					<a href="attach/{{$item.download}}">{{$item.title}}</a> | 
+					{{if ! $item.dir}}<a href="attach/{{$item.download}}">{{/if}}{{$item.title}}{{if ! $item.dir}}</a>{{/if}} | 
 					{{$item.size}} bytes
 
 </div>
-- 
cgit v1.2.3


From 2f27d58dfea06485abbb772297bcd875fe6779da Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Mon, 6 Jan 2014 19:43:54 -0800
Subject: filestorage re-org and cleanup

---
 view/tpl/attach_edit.tpl | 9 ++++++++-
 view/tpl/filestorage.tpl | 9 ++++-----
 2 files changed, 12 insertions(+), 6 deletions(-)

(limited to 'view')

diff --git a/view/tpl/attach_edit.tpl b/view/tpl/attach_edit.tpl
index 1483336ff..fa6f8914f 100644
--- a/view/tpl/attach_edit.tpl
+++ b/view/tpl/attach_edit.tpl
@@ -14,11 +14,18 @@
 <input type="hidden" name="uid" value="{{$uid}}" />
 <input type="hidden" name="fileid" value="{{$file.id}}" />
 
+
 {{if $isadir}}
 <div id="attach-edit-recurse" >
   <label id="attach-edit-recurse-text" for="attach-recurse-input" >{{$recurse}}</label>
   <input id="attach-recurse-input" type="checkbox" name="recurse" value="1" />
 </div>
+{{else}}
+<div class="cut-paste-desc">{{$cpdesc}}</div>
+<div id="cut-paste-link">
+<input type="text" id="cutpasteinput" name="cutpastelink" value="[attachment]{{$file.hash}},{{$file.revision}}[/attachment]" />
+<script>$('#cutpasteinput').select();</script>
+</div>
 {{/if}}
 
 <div id="attach-edit-perms" >
@@ -26,7 +33,7 @@
 </div>
 
 <div class="clear"></div>
-<input type="submit" name="submit" value="{{$submit}}" />
+<input id="attach-edit-submit" type="submit" name="submit" value="{{$submit}}" />
 </form>
 
 
diff --git a/view/tpl/filestorage.tpl b/view/tpl/filestorage.tpl
index 0089f7918..7b88c6440 100644
--- a/view/tpl/filestorage.tpl
+++ b/view/tpl/filestorage.tpl
@@ -7,11 +7,10 @@
 		{{foreach $files as $key => $items}} 
 				{{foreach $items as $item}}
 					<div class="files-list-item">
-					<a href="{{$baseurl}}/{{$item.id}}/edit">{{$edit}}</a> |
-					<a href="{{$baseurl}}/{{$item.id}}/delete">{{$delete}}</a> |
-					[attachment]{{$item.download}},{{$item.rev}}[/attachment] |
-					{{if ! $item.dir}}<a href="attach/{{$item.download}}">{{/if}}{{$item.title}}{{if ! $item.dir}}</a>{{/if}} | 
-					{{$item.size}} bytes
+					<a href="{{$baseurl}}/{{$item.id}}/edit">{{$edit}}</a>&nbsp;&nbsp;&nbsp;|
+					<a href="{{$baseurl}}/{{$item.id}}/delete">{{$delete}}</a> |&nbsp;&nbsp;&nbsp;
+					{{if ! $item.dir}}<a href="attach/{{$item.download}}">{{/if}}{{$item.title}}{{if ! $item.dir}}</a>{{/if}}
+					{{if ! $item.dir}} | {{$item.size}} bytes{{else}}{{$directory}}{{/if}}
 
 </div>
 				{{/foreach}}
-- 
cgit v1.2.3


From b8564134aaffc2ebe35fecd5dae4fd0f6523eb53 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Tue, 7 Jan 2014 14:10:28 -0800
Subject: make storage limit service classes apply to accounts, not channels.
 Also include a css file that was missing from work yesterday.

---
 view/css/mod_filestorage.css | 11 +++++++++++
 1 file changed, 11 insertions(+)
 create mode 100644 view/css/mod_filestorage.css

(limited to 'view')

diff --git a/view/css/mod_filestorage.css b/view/css/mod_filestorage.css
new file mode 100644
index 000000000..19e8ddd42
--- /dev/null
+++ b/view/css/mod_filestorage.css
@@ -0,0 +1,11 @@
+#attach-edit-backlink, #cut-paste-link {
+	margin-bottom: 10px;
+}
+
+#attach-edit-submit {
+	margin-top: 20px;
+}
+
+#cutpasteinput {
+	width: 600px;
+}
\ No newline at end of file
-- 
cgit v1.2.3


From 8b93881ce7ab4e0a8b0c8426da1ddfeed19c2309 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Tue, 7 Jan 2014 20:36:16 -0800
Subject: qr code support

---
 view/tpl/field_combobox.tpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/tpl/field_combobox.tpl b/view/tpl/field_combobox.tpl
index c4356e1cd..1f9218954 100755
--- a/view/tpl/field_combobox.tpl
+++ b/view/tpl/field_combobox.tpl
@@ -1,6 +1,6 @@
 	<div class='field combobox'>
 		<label for='id_{{$field.0}}' id='id_{{$field.0}}_label'>{{$field.1}}</label>
-		{{* html5 don't work on Chrome, Safari and IE9
+		{{* html5 don't work on Chrome, Safari and IE9 see https://github.com/thgreasi/datalist-polyfill
 		<input id="id_{{$field.0}}" type="text" list="data_{{$field.0}}" >
 		<datalist id="data_{{$field.0}}" >
 		   {{foreach $field.4 as $opt=>$val}}<option value="{{$val}}">{{/foreach}}
-- 
cgit v1.2.3


From 29db2369811ba35515d285491ce089d937ed8d29 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Wed, 8 Jan 2014 14:11:39 -0800
Subject: qr enhancements

---
 view/css/mod_directory.css  |  5 +++++
 view/tpl/direntry_large.tpl | 11 ++++++++---
 2 files changed, 13 insertions(+), 3 deletions(-)

(limited to 'view')

diff --git a/view/css/mod_directory.css b/view/css/mod_directory.css
index 578777054..bc8054937 100644
--- a/view/css/mod_directory.css
+++ b/view/css/mod_directory.css
@@ -37,3 +37,8 @@
 div.dirtagblock.widget {
   overflow: hidden;
 }
+
+.dirpopup {
+	float: left;
+	width: 225px;
+}
diff --git a/view/tpl/direntry_large.tpl b/view/tpl/direntry_large.tpl
index a1800c994..befd2a27a 100755
--- a/view/tpl/direntry_large.tpl
+++ b/view/tpl/direntry_large.tpl
@@ -2,11 +2,16 @@
 <div class="generic-content-wrapper">
 
 <div class="contact-photo-wrapper" id="directory-photo-wrapper-{{$id}}" >
-<div class="contact-photo" id="directory-photo-{{$id}}" >
-<a href="{{$profile_link}}" class="directory-profile-link" id="directory-profile-link-{{$id}}" ><img class="directory-photo-img" style="height:175px; width:175px;" src="{{$photo}}" alt="{{$alttext}}" title="{{$alttext}}" /></a>
-</div>
+	<div class="contact-photo dirpopup" id="directory-photo-{{$id}}" >
+	<a href="{{$profile_link}}" class="directory-profile-link" id="directory-profile-link-{{$id}}" ><img class="directory-photo-img" style="height:175px; width:175px;" src="{{$photo}}" alt="{{$alttext}}" title="{{$alttext}}" /></a>
+	</div>
+	<div class="contact-photo dirpopup" id="directory-qr-{{$id}}" >
+	<img class="directory-photo-img" style="height:175px; width:175px;" src="photo/qr?f=&qr={{$qrlink}}" alt="QR" title="{{$qrlink}}" />
+	</div>
 </div>
 
+<div class="clear"></div>
+
 <div class="contact-name" id="directory-name-{{$id}}"  >{{$name}}</div>
 {{if $connect}}
 <div class="directory-connect"><a href="{{$connect}}">{{$conn_label}}</a></div>
-- 
cgit v1.2.3


From 79102218324e794bb7096e682d61841b570fc411 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Wed, 8 Jan 2014 15:20:12 -0800
Subject: preparatory work for supporting a "list view" mode for conversations.
 This would be useful for forum-like channels and/or block-oriented themes.

---
 view/tpl/build_query.tpl | 2 ++
 1 file changed, 2 insertions(+)

(limited to 'view')

diff --git a/view/tpl/build_query.tpl b/view/tpl/build_query.tpl
index 53a8c0f6b..98a1c7846 100755
--- a/view/tpl/build_query.tpl
+++ b/view/tpl/build_query.tpl
@@ -15,6 +15,7 @@
 	var bParam_new = {{$nouveau}};
 	var bParam_page = {{$page}};
 	var bParam_wall = {{$wall}};
+	var bParam_list = {{$list}};
 
 	var bParam_search = "{{$search}}";
 	var bParam_order = "{{$order}}";
@@ -38,6 +39,7 @@
 		if(bParam_spam != 0) bCmd = bCmd + "&spam=" + bParam_spam;
 		if(bParam_new != 0) bCmd = bCmd + "&new=" + bParam_new;
 		if(bParam_wall != 0) bCmd = bCmd + "&wall=" + bParam_wall;
+		if(bParam_list != 0) bCmd = bCmd + "&list=" + bParam_list;
 		if(bParam_search != "") bCmd = bCmd + "&search=" + bParam_search;
 		if(bParam_order != "") bCmd = bCmd + "&order=" + bParam_order;
 		if(bParam_file != "") bCmd = bCmd + "&file=" + bParam_file;
-- 
cgit v1.2.3


From 49882f2be4ef9d1b28c72f8101fe9b15d7176ff6 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Thu, 9 Jan 2014 19:00:06 -0800
Subject: add cloud link to profile_tabs and Comanchify the sucker

---
 view/pdl/mod_cloud.pdl | 3 +++
 1 file changed, 3 insertions(+)
 create mode 100644 view/pdl/mod_cloud.pdl

(limited to 'view')

diff --git a/view/pdl/mod_cloud.pdl b/view/pdl/mod_cloud.pdl
new file mode 100644
index 000000000..6b1d2a15e
--- /dev/null
+++ b/view/pdl/mod_cloud.pdl
@@ -0,0 +1,3 @@
+[region=aside]
+[widget=profile][/widget]
+[/region]
-- 
cgit v1.2.3


From ee2bea37e9a46e8dcd6b7df655fc56c1feb8132e Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Thu, 9 Jan 2014 21:01:53 -0800
Subject: mod_filestorage: provide a URL for linking to webpages and other
 websites

---
 view/css/mod_filestorage.css | 4 ++--
 view/tpl/attach_edit.tpl     | 9 +++++----
 2 files changed, 7 insertions(+), 6 deletions(-)

(limited to 'view')

diff --git a/view/css/mod_filestorage.css b/view/css/mod_filestorage.css
index 19e8ddd42..98fa8e93d 100644
--- a/view/css/mod_filestorage.css
+++ b/view/css/mod_filestorage.css
@@ -1,4 +1,4 @@
-#attach-edit-backlink, #cut-paste-link {
+#attach-edit-backlink, #cutpasteinput, #linkpasteinput {
 	margin-bottom: 10px;
 }
 
@@ -6,6 +6,6 @@
 	margin-top: 20px;
 }
 
-#cutpasteinput {
+#cutpasteinput, #linkpasteinput {
 	width: 600px;
 }
\ No newline at end of file
diff --git a/view/tpl/attach_edit.tpl b/view/tpl/attach_edit.tpl
index fa6f8914f..f9c6e96ce 100644
--- a/view/tpl/attach_edit.tpl
+++ b/view/tpl/attach_edit.tpl
@@ -22,10 +22,11 @@
 </div>
 {{else}}
 <div class="cut-paste-desc">{{$cpdesc}}</div>
-<div id="cut-paste-link">
-<input type="text" id="cutpasteinput" name="cutpastelink" value="[attachment]{{$file.hash}},{{$file.revision}}[/attachment]" />
-<script>$('#cutpasteinput').select();</script>
-</div>
+<input type="text" id="cutpasteinput" name="cutpastelink" value="[attachment]{{$file.hash}},{{$file.revision}}[/attachment]" onclick="this.select();" /><br />
+
+<div class="cut-paste-desc">{{$cpldesc}}</div>
+<input type="text" id="linkpasteinput" name="cutpasteextlink" value="{{$cloudpath}}" onclick="this.select();"/><br />
+
 {{/if}}
 
 <div id="attach-edit-perms" >
-- 
cgit v1.2.3


From 865f7aef1c31d245ee8814bb44358d2e8b1a1890 Mon Sep 17 00:00:00 2001
From: Thomas Willingham <founder@kakste.com>
Date: Fri, 10 Jan 2014 20:37:25 +0000
Subject: Prevent whitespace breaking copy-paste of reset passwords.

---
 view/tpl/pwdreset.tpl | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

(limited to 'view')

diff --git a/view/tpl/pwdreset.tpl b/view/tpl/pwdreset.tpl
index 3993dec64..a9106343f 100755
--- a/view/tpl/pwdreset.tpl
+++ b/view/tpl/pwdreset.tpl
@@ -6,9 +6,7 @@
 <p>
 {{$lbl3}}
 </p>
-<p>
-{{$newpass}}
-</p>
+<p>{{$newpass}}</p>
 <p>
 {{$lbl4}} {{$lbl5}}
 </p>
-- 
cgit v1.2.3


From 325c5e4e7650329a42f61e9180fe986ef63671b5 Mon Sep 17 00:00:00 2001
From: Christian Vogeley <christian.vogeley@hotmail.de>
Date: Sun, 12 Jan 2014 02:29:03 +0100
Subject: delete confirmation popup for blocks and layouts

---
 view/tpl/jot-header.tpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl
index 37fa3d069..687ad7302 100755
--- a/view/tpl/jot-header.tpl
+++ b/view/tpl/jot-header.tpl
@@ -307,7 +307,7 @@ function enableOnUser(){
 </script>
 
 <script>
-$( document ).on( "click", ".wall-item-delete-link,.page-delete-link", function(e) {
+$( document ).on( "click", ".wall-item-delete-link,.page-delete-link,.layout-delete-link,.block-delete-link", function(e) {
 	var link = $(this).attr("href"); // "get" the intended link in a var
     e.preventDefault();
   	bootbox.confirm("<h4>{{$confirmdelete}}</h4>", function(result) {
-- 
cgit v1.2.3


From 87b99be7852cf58bfc2eed954b1b3b3ec7a7abc7 Mon Sep 17 00:00:00 2001
From: Tobias Diekershoff <tobias.diekershoff@gmx.net>
Date: Mon, 13 Jan 2014 07:28:16 +0100
Subject: DE: update to the strings

---
 view/de/messages.po | 4674 ++++++++++++++++++++++++++-------------------------
 view/de/strings.php |  801 ++++-----
 2 files changed, 2812 insertions(+), 2663 deletions(-)

(limited to 'view')

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/api.php:973
+msgid "Public Timeline"
+msgstr "Öffentliche Zeitleiste"
 
-#: ../../include/dir_fns.php:16
-msgid "Alphabetic"
-msgstr "alphabetisch"
+#: ../../include/nav.php:72 ../../include/nav.php:87 ../../boot.php:1415
+msgid "Logout"
+msgstr "Abmelden"
 
-#: ../../include/dir_fns.php:17
-msgid "Reverse Alphabetic"
-msgstr "Entgegengesetzt alphabetisch"
+#: ../../include/nav.php:72 ../../include/nav.php:87
+msgid "End this session"
+msgstr "Beende diese Sitzung"
 
-#: ../../include/dir_fns.php:18
-msgid "Newest to Oldest"
-msgstr "Neueste zuerst"
+#: ../../include/nav.php:75 ../../include/nav.php:121
+msgid "Home"
+msgstr "Home"
 
-#: ../../include/dir_fns.php:30
-msgid "Enable Safe Search"
-msgstr "Sichere Suche einschalten"
+#: ../../include/nav.php:75
+msgid "Your posts and conversations"
+msgstr "Deine Beiträge und Unterhaltungen"
 
-#: ../../include/dir_fns.php:32
-msgid "Disable Safe Search"
-msgstr "Sichere Suche ausschalten"
+#: ../../include/nav.php:76 ../../include/conversation.php:932
+#: ../../mod/connedit.php:309 ../../mod/connedit.php:423
+msgid "View Profile"
+msgstr "Profil ansehen"
 
-#: ../../include/dir_fns.php:34
-msgid "Safe Mode"
-msgstr "Sicherer Modus"
+#: ../../include/nav.php:76
+msgid "Your profile page"
+msgstr "Deine Profilseite"
 
-#: ../../include/api.php:973
-msgid "Public Timeline"
-msgstr "Öffentliche Zeitleiste"
+#: ../../include/nav.php:78
+msgid "Edit Profiles"
+msgstr "Profile bearbeiten"
 
-#: ../../include/enotify.php:40
-msgid "Red Matrix Notification"
-msgstr "Red Matrix Benachrichtigung"
+#: ../../include/nav.php:78
+msgid "Manage/Edit Profiles"
+msgstr "Verwalte/Bearbeite Profile"
 
-#: ../../include/enotify.php:41
-msgid "redmatrix"
-msgstr "redmatrix"
+#: ../../include/nav.php:79 ../../include/conversation.php:1462
+#: ../../mod/fbrowser.php:25
+msgid "Photos"
+msgstr "Fotos"
 
-#: ../../include/enotify.php:43
-msgid "Thank You,"
-msgstr "Danke."
+#: ../../include/nav.php:79
+msgid "Your photos"
+msgstr "Deine Bilder"
 
-#: ../../include/enotify.php:45
-#, php-format
-msgid "%s Administrator"
-msgstr "%s Administrator"
+#: ../../include/nav.php:85 ../../boot.php:1416
+msgid "Login"
+msgstr "Anmelden"
 
-#: ../../include/enotify.php:80
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: ../../include/nav.php:85
+msgid "Sign in"
+msgstr "Anmelden"
 
-#: ../../include/enotify.php:84
+#: ../../include/nav.php:102
 #, php-format
-msgid "[Red:Notify] New mail received at %s"
-msgstr "[Red Notify] Neue Mail auf %s empfangen"
+msgid "%s - click to logout"
+msgstr "%s - Klick zum Abmelden"
 
-#: ../../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/nav.php:107
+msgid "Click to authenticate to your home hub"
+msgstr "Klick zum Authentifizieren bei Deinem Heimat-Hub"
 
-#: ../../include/enotify.php:87
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s hat dir %2$s geschickt."
+#: ../../include/nav.php:121
+msgid "Home Page"
+msgstr "Homepage"
 
-#: ../../include/enotify.php:87
-msgid "a private message"
-msgstr "eine private Nachricht"
+#: ../../include/nav.php:125 ../../mod/register.php:206 ../../boot.php:1392
+msgid "Register"
+msgstr "Registrieren"
 
-#: ../../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/nav.php:125
+msgid "Create an account"
+msgstr "Erzeuge ein Konto"
 
-#: ../../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/nav.php:130 ../../mod/help.php:60 ../../mod/help.php:64
+msgid "Help"
+msgstr "Hilfe"
 
-#: ../../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/nav.php:130
+msgid "Help and documentation"
+msgstr "Hilfe und Dokumentation"
 
-#: ../../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/nav.php:133
+msgid "Apps"
+msgstr "Apps"
 
-#: ../../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/nav.php:133
+msgid "Addon applications, utilities, games"
+msgstr "Addon Programme, Helferlein, Spiele"
 
-#: ../../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/nav.php:135 ../../include/text.php:736
+#: ../../include/text.php:750 ../../mod/search.php:28
+msgid "Search"
+msgstr "Suche"
 
-#: ../../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/nav.php:135
+msgid "Search site content"
+msgstr "Durchsuche Seiten-Inhalt"
 
-#: ../../include/enotify.php:178
-#, php-format
-msgid "[Red:Notify] %s posted to your profile wall"
-msgstr "[Red:Hinweis] %s schrieb auf Deine Pinnwand"
+#: ../../include/nav.php:138 ../../mod/directory.php:209
+msgid "Directory"
+msgstr "Verzeichnis"
 
-#: ../../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/nav.php:138
+msgid "Channel Locator"
+msgstr "Kanal-Anzeiger"
 
-#: ../../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/nav.php:149
+msgid "Matrix"
+msgstr "Matrix"
 
-#: ../../include/enotify.php:206
-#, php-format
-msgid "[Red:Notify] %s tagged you"
-msgstr "[Red Notify] %s hat dich getaggt"
+#: ../../include/nav.php:149
+msgid "Your matrix"
+msgstr "Deine Matrix"
 
-#: ../../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:150
+msgid "Mark all matrix notifications seen"
+msgstr "Markiere alle Matrix-Benachrichtigungen als angesehen"
 
-#: ../../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:152
+msgid "Channel Home"
+msgstr "Mein Kanal"
 
-#: ../../include/enotify.php:221
-#, php-format
-msgid "[Red:Notify] %1$s poked you"
-msgstr "[Red Notify] %1$s hat dich angestupst"
+#: ../../include/nav.php:152
+msgid "Channel home"
+msgstr "Mein Kanal"
 
-#: ../../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:153
+msgid "Mark all channel notifications seen"
+msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen"
 
-#: ../../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:156
+msgid "Intros"
+msgstr "Vorstellungen"
 
-#: ../../include/enotify.php:239
-#, php-format
-msgid "[Red:Notify] %s tagged your post"
-msgstr "[Red:Hinweis] %s hat Dich getagged"
+#: ../../include/nav.php:156 ../../mod/connections.php:242
+msgid "New Connections"
+msgstr "Neue Verbindungen"
 
-#: ../../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:159
+msgid "Notices"
+msgstr "Benachrichtigungen"
 
-#: ../../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:159
+msgid "Notifications"
+msgstr "Benachrichtigungen"
 
-#: ../../include/enotify.php:253
-msgid "[Red:Notify] Introduction received"
-msgstr "[Red:Notify] Vorstellung erhalten"
+#: ../../include/nav.php:160
+msgid "See all notifications"
+msgstr "Alle Benachrichtigungen ansehen"
 
-#: ../../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:161
+msgid "Mark all system notifications seen"
+msgstr "Markiere alle System-Benachrichtigungen als gesehen"
 
-#: ../../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:163
+msgid "Mail"
+msgstr "Mail"
 
-#: ../../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:163
+msgid "Private mail"
+msgstr "Persönliche Mail"
 
-#: ../../include/enotify.php:261
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Bitte besuche %s um sie anzunehmen oder abzulehnen."
+#: ../../include/nav.php:164
+msgid "See all private messages"
+msgstr "Alle persönlichen Nachrichten ansehen"
 
-#: ../../include/enotify.php:268
-msgid "[Red:Notify] Friend suggestion received"
-msgstr "[Red:Hinweis] Freundschaftsvorschlag erhalten"
-
-#: ../../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/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/enotify.php:276
-msgid "Name:"
-msgstr "Name:"
-
-#: ../../include/enotify.php:277
-msgid "Photo:"
-msgstr "Foto:"
-
-#: ../../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/ItemObject.php:88 ../../mod/photos.php:959
-msgid "Private Message"
-msgstr "Private Nachricht"
-
-#: ../../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/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/ItemObject.php:113 ../../include/conversation.php:631
-msgid "Select"
-msgstr "Auswählen"
-
-#: ../../include/ItemObject.php:117
-msgid "save to folder"
-msgstr "In Ordner speichern"
-
-#: ../../include/ItemObject.php:145
-msgid "add star"
-msgstr "markieren"
-
-#: ../../include/ItemObject.php:146
-msgid "remove star"
-msgstr "Markierung entfernen"
-
-#: ../../include/ItemObject.php:147
-msgid "toggle star status"
-msgstr "Stern-Status umschalten"
-
-#: ../../include/ItemObject.php:151
-msgid "starred"
-msgstr "markiert"
-
-#: ../../include/ItemObject.php:160 ../../include/conversation.php:642
-msgid "Message is verified"
-msgstr "Nachricht überprüft"
-
-#: ../../include/ItemObject.php:168
-msgid "add tag"
-msgstr "Schlagwort hinzufügen"
-
-#: ../../include/ItemObject.php:174 ../../mod/photos.php:1065
-msgid "I like this (toggle)"
-msgstr "Ich mag das (Umschalter)"
-
-#: ../../include/ItemObject.php:174 ../../include/taxonomy.php:251
-msgid "like"
-msgstr "Gefällt-mir"
-
-#: ../../include/ItemObject.php:175 ../../mod/photos.php:1066
-msgid "I don't like this (toggle)"
-msgstr "Ich mag das nicht (Umschalter)"
-
-#: ../../include/ItemObject.php:175 ../../include/taxonomy.php:252
-msgid "dislike"
-msgstr "Gefällt-mir-nicht"
-
-#: ../../include/ItemObject.php:177
-msgid "Share this"
-msgstr "Teile dies"
-
-#: ../../include/ItemObject.php:177
-msgid "share"
-msgstr "Teilen"
-
-#: ../../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/ItemObject.php:203
-msgid "to"
-msgstr "zu"
-
-#: ../../include/ItemObject.php:204
-msgid "via"
-msgstr "via"
-
-#: ../../include/ItemObject.php:205
-msgid "Wall-to-Wall"
-msgstr "Wall-to-Wall"
-
-#: ../../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,1851 +650,1926 @@ 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/group.php:25
-msgid ""
-"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."
-msgstr "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."
+#: ../../include/text.php:315
+msgid "prev"
+msgstr "vorherige"
 
-#: ../../include/group.php:223
-msgid "Default privacy group for new contacts"
-msgstr "Standard-Privatsphärengruppe für neue Kontakte"
+#: ../../include/text.php:317
+msgid "first"
+msgstr "erste"
 
-#: ../../include/group.php:242 ../../mod/admin.php:698
-msgid "All Channels"
-msgstr "Alle Kanäle"
+#: ../../include/text.php:346
+msgid "last"
+msgstr "letzte"
 
-#: ../../include/group.php:264
-msgid "edit"
-msgstr "Bearbeiten"
+#: ../../include/text.php:349
+msgid "next"
+msgstr "nächste"
 
-#: ../../include/group.php:285
-msgid "Collections"
-msgstr "Sammlungen"
+#: ../../include/text.php:361
+msgid "older"
+msgstr "älter"
 
-#: ../../include/group.php:286
-msgid "Edit collection"
-msgstr "Bearbeite Sammlungen"
+#: ../../include/text.php:363
+msgid "newer"
+msgstr "neuer"
 
-#: ../../include/group.php:287
-msgid "Create a new collection"
-msgstr "Neue Sammlung erzeugen"
+#: ../../include/text.php:654
+msgid "No connections"
+msgstr "Keine Verbindungen"
 
-#: ../../include/group.php:288
-msgid "Channels not in any collection"
-msgstr "Kanäle, die nicht in einer Sammlung sind"
+#: ../../include/text.php:665
+#, php-format
+msgid "%d Connection"
+msgid_plural "%d Connections"
+msgstr[0] "%d Verbindung"
+msgstr[1] "%d Verbindungen"
 
-#: ../../include/js_strings.php:5
-msgid "Delete this item?"
-msgstr "Dieses Element löschen?"
+#: ../../include/text.php:677
+msgid "View Connections"
+msgstr "Zeige Verbindungen"
 
-#: ../../include/js_strings.php:8
-msgid "show fewer"
-msgstr "Zeige weniger"
+#: ../../include/text.php:818
+msgid "poke"
+msgstr "anstupsen"
 
-#: ../../include/js_strings.php:9
-msgid "Password too short"
-msgstr "Kennwort zu kurz"
+#: ../../include/text.php:818 ../../include/conversation.php:240
+msgid "poked"
+msgstr "stupste"
 
-#: ../../include/js_strings.php:10
-msgid "Passwords do not match"
-msgstr "Kennwörter stimmen nicht überein"
+#: ../../include/text.php:819
+msgid "ping"
+msgstr "anpingen"
 
-#: ../../include/js_strings.php:11 ../../mod/photos.php:39
-msgid "everybody"
-msgstr "alle"
+#: ../../include/text.php:819
+msgid "pinged"
+msgstr "pingte"
 
-#: ../../include/js_strings.php:12
-msgid "Secret Passphrase"
-msgstr "geheime Passwort-Phrase"
+#: ../../include/text.php:820
+msgid "prod"
+msgstr "knuffen"
 
-#: ../../include/js_strings.php:13
-msgid "Passphrase hint"
-msgstr "Hinweis zur Phrase"
+#: ../../include/text.php:820
+msgid "prodded"
+msgstr "knuffte"
 
-#: ../../include/js_strings.php:15
-msgid "timeago.prefixAgo"
-msgstr "timeago.prefixAgo"
+#: ../../include/text.php:821
+msgid "slap"
+msgstr "ohrfeigen"
 
-#: ../../include/js_strings.php:16
-msgid "timeago.suffixAgo"
-msgstr "timeago.suffixAgo"
+#: ../../include/text.php:821
+msgid "slapped"
+msgstr "ohrfeigte"
 
-#: ../../include/js_strings.php:17
-msgid "ago"
-msgstr "her"
+#: ../../include/text.php:822
+msgid "finger"
+msgstr "befummeln"
 
-#: ../../include/js_strings.php:18
-msgid "from now"
-msgstr "von jetzt"
+#: ../../include/text.php:822
+msgid "fingered"
+msgstr "befummelte"
 
-#: ../../include/js_strings.php:19
-msgid "less than a minute"
-msgstr "weniger als eine Minute"
+#: ../../include/text.php:823
+msgid "rebuff"
+msgstr "eine Abfuhr erteilen"
 
-#: ../../include/js_strings.php:20
-msgid "about a minute"
-msgstr "ungefähr eine Minute"
+#: ../../include/text.php:823
+msgid "rebuffed"
+msgstr "abfuhrerteilte"
 
-#: ../../include/js_strings.php:21
-#, php-format
-msgid "%d minutes"
-msgstr "%d Minuten"
+#: ../../include/text.php:835
+msgid "happy"
+msgstr "glücklich"
 
-#: ../../include/js_strings.php:22
-msgid "about an hour"
-msgstr "ungefähr eine Stunde"
+#: ../../include/text.php:836
+msgid "sad"
+msgstr "traurig"
 
-#: ../../include/js_strings.php:23
-#, php-format
-msgid "about %d hours"
-msgstr "ungefähr %d Stunden"
+#: ../../include/text.php:837
+msgid "mellow"
+msgstr "sanft"
 
-#: ../../include/js_strings.php:24
-msgid "a day"
-msgstr "ein Tag"
+#: ../../include/text.php:838
+msgid "tired"
+msgstr "müde"
 
-#: ../../include/js_strings.php:25
-#, php-format
-msgid "%d days"
-msgstr "%d Tage"
+#: ../../include/text.php:839
+msgid "perky"
+msgstr "frech"
 
-#: ../../include/js_strings.php:26
-msgid "about a month"
-msgstr "ungefähr ein Monat"
+#: ../../include/text.php:840
+msgid "angry"
+msgstr "sauer"
 
-#: ../../include/js_strings.php:27
-#, php-format
-msgid "%d months"
-msgstr "%d Monate"
+#: ../../include/text.php:841
+msgid "stupified"
+msgstr "verblüfft"
 
-#: ../../include/js_strings.php:28
-msgid "about a year"
-msgstr "ungefähr ein Jahr"
+#: ../../include/text.php:842
+msgid "puzzled"
+msgstr "verwirrt"
 
-#: ../../include/js_strings.php:29
-#, php-format
-msgid "%d years"
-msgstr "%d Jahre"
+#: ../../include/text.php:843
+msgid "interested"
+msgstr "interessiert"
 
-#: ../../include/js_strings.php:30 ../../include/features.php:29
-msgid " "
-msgstr " "
+#: ../../include/text.php:844
+msgid "bitter"
+msgstr "verbittert"
 
-#: ../../include/js_strings.php:31
-msgid "timeago.numbers"
-msgstr "timeago.numbers"
+#: ../../include/text.php:845
+msgid "cheerful"
+msgstr "fröhlich"
 
-#: ../../include/message.php:18
-msgid "No recipient provided."
-msgstr "Kein Empfänger angegeben"
+#: ../../include/text.php:846
+msgid "alive"
+msgstr "lebendig"
 
-#: ../../include/message.php:23
-msgid "[no subject]"
-msgstr "[no subject]"
+#: ../../include/text.php:847
+msgid "annoyed"
+msgstr "verärgert"
 
-#: ../../include/message.php:42
-msgid "Unable to determine sender."
-msgstr "Kann Absender nicht bestimmen."
+#: ../../include/text.php:848
+msgid "anxious"
+msgstr "unruhig"
 
-#: ../../include/message.php:143
-msgid "Stored post could not be verified."
-msgstr "Gespeicherter Beitrag konnten nicht überprüft werden."
+#: ../../include/text.php:849
+msgid "cranky"
+msgstr "schrullig"
 
-#: ../../include/photo/photo_driver.php:609 ../../include/photos.php:51
-#: ../../mod/photos.php:91 ../../mod/photos.php:771 ../../mod/photos.php:793
-#: ../../mod/profile_photo.php:78 ../../mod/profile_photo.php:225
-#: ../../mod/profile_photo.php:336
-msgid "Profile Photos"
-msgstr "Profilfotos"
+#: ../../include/text.php:850
+msgid "disturbed"
+msgstr "verstört"
 
-#: ../../include/network.php:640
-msgid "view full size"
-msgstr "In Vollbildansicht anschauen"
+#: ../../include/text.php:851
+msgid "frustrated"
+msgstr "frustriert"
 
-#: ../../include/bbcode.php:94 ../../include/bbcode.php:494
-#: ../../include/bbcode.php:497
-msgid "Image/photo"
-msgstr "Bild/Foto"
+#: ../../include/text.php:852
+msgid "motivated"
+msgstr "motiviert"
 
-#: ../../include/bbcode.php:126 ../../include/bbcode.php:502
-msgid "Encrypted content"
-msgstr "Verschlüsselter Inhalt"
+#: ../../include/text.php:853
+msgid "relaxed"
+msgstr "entspannt"
 
-#: ../../include/bbcode.php:173
-#, php-format
-msgid "%1$s wrote the following %2$s %3$s"
-msgstr "%1$s schrieb den folgenden %2$s %3$s"
+#: ../../include/text.php:854
+msgid "surprised"
+msgstr "überrascht"
 
-#: ../../include/bbcode.php:175
-msgid "post"
-msgstr "Beitrag"
+#: ../../include/text.php:1016
+msgid "Monday"
+msgstr "Montag"
 
-#: ../../include/bbcode.php:454 ../../include/bbcode.php:474
-msgid "$1 wrote:"
-msgstr "$1 schrieb:"
+#: ../../include/text.php:1016
+msgid "Tuesday"
+msgstr "Dienstag"
 
-#: ../../include/oembed.php:150
-msgid "Embedded content"
-msgstr "Eingebetteter Inhalt"
+#: ../../include/text.php:1016
+msgid "Wednesday"
+msgstr "Mittwoch"
 
-#: ../../include/oembed.php:159
-msgid "Embedding disabled"
-msgstr "Einbetten ausgeschaltet"
+#: ../../include/text.php:1016
+msgid "Thursday"
+msgstr "Donnerstag"
 
-#: ../../include/features.php:21
-msgid "General Features"
-msgstr "Allgemeine Funktionen"
+#: ../../include/text.php:1016
+msgid "Friday"
+msgstr "Freitag"
 
-#: ../../include/features.php:23
-msgid "Content Expiration"
-msgstr "Verfall von Inhalten"
+#: ../../include/text.php:1016
+msgid "Saturday"
+msgstr "Samstag"
 
-#: ../../include/features.php:23
-msgid "Remove posts/comments and/or private messages at a future time"
-msgstr "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum."
+#: ../../include/text.php:1016
+msgid "Sunday"
+msgstr "Sonntag"
 
-#: ../../include/features.php:24
-msgid "Multiple Profiles"
-msgstr "Mehrfachprofile"
+#: ../../include/text.php:1020
+msgid "January"
+msgstr "Januar"
 
-#: ../../include/features.php:24
-msgid "Ability to create multiple profiles"
-msgstr "Mehrfachprofile anlegen können"
+#: ../../include/text.php:1020
+msgid "February"
+msgstr "Februar"
 
-#: ../../include/features.php:25
-msgid "Web Pages"
-msgstr "Webseiten"
+#: ../../include/text.php:1020
+msgid "March"
+msgstr "März"
 
-#: ../../include/features.php:25
-msgid "Provide managed web pages on your channel"
-msgstr "Stelle verwaltete Webseiten in Deinem Kanal zur Verfügung"
+#: ../../include/text.php:1020
+msgid "April"
+msgstr "April"
 
-#: ../../include/features.php:26
-msgid "Private Notes"
-msgstr "private Notizen"
+#: ../../include/text.php:1020
+msgid "May"
+msgstr "Mai"
 
-#: ../../include/features.php:26
-msgid "Enables a tool to store notes and reminders"
-msgstr "Werkzeug zum Speichern von Notizen und Erinnerungen aktivieren"
+#: ../../include/text.php:1020
+msgid "June"
+msgstr "Juni"
 
-#: ../../include/features.php:27
-msgid "Enhanced Photo Albums"
-msgstr "Erweitertes Fotoalbum"
+#: ../../include/text.php:1020
+msgid "July"
+msgstr "Juli"
 
-#: ../../include/features.php:27
-msgid "Enable photo album with enhanced features"
-msgstr "Aktiviere Fotoalbum mit erweiterten Funktionen"
+#: ../../include/text.php:1020
+msgid "August"
+msgstr "August"
 
-#: ../../include/features.php:29
-msgid "Extended Identity Sharing"
-msgstr "Erweitertes Teilen von Identitäten"
+#: ../../include/text.php:1020
+msgid "September"
+msgstr "September"
 
-#: ../../include/features.php:30
-msgid "Expert Mode"
-msgstr "Expertenmodus"
+#: ../../include/text.php:1020
+msgid "October"
+msgstr "Oktober"
 
-#: ../../include/features.php:30
-msgid "Enable Expert Mode to provide advanced configuration options"
-msgstr "Aktiviere Expertenmodus, um fortgeschrittene Konfiguration zur Verfügung zu stellen"
+#: ../../include/text.php:1020
+msgid "November"
+msgstr "November"
 
-#: ../../include/features.php:31
-msgid "Premium Channel"
-msgstr "Premium-Kanal"
+#: ../../include/text.php:1020
+msgid "December"
+msgstr "Dezember"
 
-#: ../../include/features.php:31
-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/text.php:1098
+msgid "unknown.???"
+msgstr "unbekannt.???"
 
-#: ../../include/features.php:36
-msgid "Post Composition Features"
-msgstr "Nachbearbeitungsfunktionen"
+#: ../../include/text.php:1099
+msgid "bytes"
+msgstr "Bytes"
 
-#: ../../include/features.php:37
-msgid "Richtext Editor"
-msgstr "Formatierungseditor"
+#: ../../include/text.php:1134
+msgid "remove category"
+msgstr "Kategorie entfernen"
 
-#: ../../include/features.php:37
-msgid "Enable richtext editor"
-msgstr "Aktiviere Formatierungseditor"
+#: ../../include/text.php:1156
+msgid "remove from file"
+msgstr "aus der Datei entfernen"
 
-#: ../../include/features.php:38
-msgid "Post Preview"
-msgstr "Voransicht"
+#: ../../include/text.php:1214 ../../include/text.php:1226
+msgid "Click to open/close"
+msgstr "Klicke zum Öffnen/Schließen"
 
-#: ../../include/features.php:38
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Erlaube Voransicht von Beiträgen und Kommentaren vor Veröffentlichung"
+#: ../../include/text.php:1402 ../../mod/events.php:332
+msgid "link to source"
+msgstr "Link zum Originalbeitrag"
 
-#: ../../include/features.php:39
-msgid "Automatically import channel content from other channels or feeds"
-msgstr "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds."
+#: ../../include/text.php:1421
+msgid "Select a page layout: "
+msgstr "Ein Seiten-Layout auswählen"
 
-#: ../../include/features.php:40
-msgid "Even More Encryption"
-msgstr "Noch mehr Verschlüsselung"
+#: ../../include/text.php:1424 ../../include/text.php:1489
+msgid "default"
+msgstr "Standard"
 
-#: ../../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/text.php:1460
+msgid "Page content type: "
+msgstr "Content-Typ der Seite"
 
-#: ../../include/features.php:45
-msgid "Network and Stream Filtering"
-msgstr "Netzwerk- und Stream-Filter"
+#: ../../include/text.php:1501
+msgid "Select an alternate language"
+msgstr "Wähle eine alternative Sprache"
 
-#: ../../include/features.php:46
-msgid "Search by Date"
-msgstr "Suche nach Datum"
+#: ../../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/features.php:46
-msgid "Ability to select posts by date ranges"
-msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen"
+#: ../../include/text.php:1656 ../../include/conversation.php:120
+#: ../../mod/tagger.php:49
+msgid "event"
+msgstr "Ereignis"
 
-#: ../../include/features.php:47
-msgid "Collections Filter"
-msgstr "Filter für Sammlung"
+#: ../../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/features.php:47
-msgid "Enable widget to display Network posts only from selected collections"
-msgstr "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen"
+#: ../../include/text.php:1661 ../../include/conversation.php:147
+#: ../../mod/tagger.php:55
+msgid "comment"
+msgstr "Kommentar"
 
-#: ../../include/features.php:48
-msgid "Save search terms for re-use"
-msgstr "Gesicherte Suchbegriffe zur Wiederverwendung"
+#: ../../include/text.php:1666
+msgid "activity"
+msgstr "Aktivität"
 
-#: ../../include/features.php:49
-msgid "Network Personal Tab"
-msgstr "Persönlicher Netzwerkreiter"
+#: ../../include/text.php:1928
+msgid "Design"
+msgstr "Design"
 
-#: ../../include/features.php:49
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Aktiviere Reiter nur für die Netzwerk-Beiträge, mit denen Du interagiert hast"
+#: ../../include/text.php:1930
+msgid "Blocks"
+msgstr "Blöcke"
 
-#: ../../include/features.php:50
-msgid "Network New Tab"
-msgstr "Netzwerkreiter Neu"
+#: ../../include/text.php:1931
+msgid "Menus"
+msgstr "Menüs"
 
-#: ../../include/features.php:50
-msgid "Enable tab to display all new Network activity"
-msgstr "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen"
+#: ../../include/text.php:1932
+msgid "Layouts"
+msgstr "Layouts"
 
-#: ../../include/features.php:51
-msgid "Affinity Tool"
-msgstr "Beziehungs-Tool"
+#: ../../include/text.php:1933
+msgid "Pages"
+msgstr "Seiten"
 
-#: ../../include/features.php:51
-msgid "Filter stream activity by depth of relationships"
-msgstr "Filter Aktivitätenstream nach Tiefe der Beziehung"
+#: ../../include/group.php:25
+msgid ""
+"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."
+msgstr "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."
 
-#: ../../include/features.php:52
-msgid "Suggest Channels"
-msgstr "Kanäle Vorschlagen"
+#: ../../include/group.php:223
+msgid "Default privacy group for new contacts"
+msgstr "Standard-Privatsphärengruppe für neue Kontakte"
 
-#: ../../include/features.php:52
-msgid "Show channel suggestions"
-msgstr "Kanal-Vorschläge anzeigen"
+#: ../../include/group.php:242 ../../mod/admin.php:698
+msgid "All Channels"
+msgstr "Alle Kanäle"
 
-#: ../../include/features.php:57
-msgid "Post/Comment Tools"
-msgstr "Beitrag-/Kommentar-Tools"
+#: ../../include/group.php:264
+msgid "edit"
+msgstr "Bearbeiten"
 
-#: ../../include/features.php:59
-msgid "Edit Sent Posts"
-msgstr "Bearbeite gesendete Beiträge"
+#: ../../include/group.php:285
+msgid "Collections"
+msgstr "Sammlungen"
 
-#: ../../include/features.php:59
-msgid "Edit and correct posts and comments after sending"
-msgstr "Bearbeite und korrigiere Beiträge und Kommentare nach dem Senden"
+#: ../../include/group.php:286
+msgid "Edit collection"
+msgstr "Bearbeite Sammlungen"
 
-#: ../../include/features.php:60
-msgid "Tagging"
-msgstr "Verschlagworten"
+#: ../../include/group.php:287
+msgid "Create a new collection"
+msgstr "Neue Sammlung erzeugen"
 
-#: ../../include/features.php:60
-msgid "Ability to tag existing posts"
-msgstr "Möglichkeit, um existierende Beiträge zu verschlagworten"
+#: ../../include/group.php:288
+msgid "Channels not in any collection"
+msgstr "Kanäle, die nicht in einer Sammlung sind"
 
-#: ../../include/features.php:61
-msgid "Post Categories"
-msgstr "Beitrags-Kategorien"
+#: ../../include/js_strings.php:5
+msgid "Delete this item?"
+msgstr "Dieses Element löschen?"
 
-#: ../../include/features.php:61
-msgid "Add categories to your posts"
-msgstr "Kategorien für Beiträge"
+#: ../../include/js_strings.php:6 ../../include/ItemObject.php:536
+#: ../../mod/photos.php:1099 ../../mod/photos.php:1186
+msgid "Comment"
+msgstr "Kommentar"
 
-#: ../../include/features.php:62
-msgid "Ability to file posts under folders"
-msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln"
+#: ../../include/js_strings.php:7 ../../include/contact_widgets.php:125
+#: ../../include/ItemObject.php:270
+msgid "show more"
+msgstr "mehr zeigen"
 
-#: ../../include/features.php:63
-msgid "Dislike Posts"
-msgstr "Gefällt-mir-nicht Beiträge"
+#: ../../include/js_strings.php:8
+msgid "show fewer"
+msgstr "Zeige weniger"
 
-#: ../../include/features.php:63
-msgid "Ability to dislike posts/comments"
-msgstr "Möglichkeit für Gefällt-mir-nicht für Beiträge/Kommentare"
+#: ../../include/js_strings.php:9
+msgid "Password too short"
+msgstr "Kennwort zu kurz"
 
-#: ../../include/features.php:64
-msgid "Star Posts"
-msgstr "Beiträge mit Sternchen versehen"
+#: ../../include/js_strings.php:10
+msgid "Passwords do not match"
+msgstr "Kennwörter stimmen nicht überein"
 
-#: ../../include/features.php:64
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Möglichkeit, spezielle Beiträge mit Sternchen-Symbol zu markieren"
+#: ../../include/js_strings.php:11 ../../mod/photos.php:39
+msgid "everybody"
+msgstr "alle"
 
-#: ../../include/features.php:65
-msgid "Tag Cloud"
-msgstr "Tag Wolke"
+#: ../../include/js_strings.php:12
+msgid "Secret Passphrase"
+msgstr "geheime Passwort-Phrase"
 
-#: ../../include/features.php:65
-msgid "Provide a personal tag cloud on your channel page"
-msgstr "Persönliche Schlagwort-Wolke für deine Kanal-Seite anlegen"
+#: ../../include/js_strings.php:13
+msgid "Passphrase hint"
+msgstr "Hinweis zur Phrase"
 
-#: ../../include/notify.php:23
-msgid "created a new post"
-msgstr "Neuer Beitrag wurde erzeugt"
+#: ../../include/js_strings.php:15
+msgid "timeago.prefixAgo"
+msgstr "timeago.prefixAgo"
 
-#: ../../include/notify.php:24
-#, php-format
-msgid "commented on %s's post"
-msgstr "hat %s's Beitrag kommentiert"
+#: ../../include/js_strings.php:16
+msgid "timeago.suffixAgo"
+msgstr "timeago.suffixAgo"
 
-#: ../../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
-#: ../../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/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/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
-msgid "Permission denied."
-msgstr "Zugang verweigert"
+#: ../../include/js_strings.php:17
+msgid "ago"
+msgstr "her"
 
-#: ../../include/photos.php:88
-#, php-format
-msgid "Image exceeds website size limit of %lu bytes"
-msgstr "Bild überschreitet das Limit der Webseite von %lu bytes"
+#: ../../include/js_strings.php:18
+msgid "from now"
+msgstr "von jetzt"
 
-#: ../../include/photos.php:95
-msgid "Image file is empty."
-msgstr "Bilddatei ist leer."
+#: ../../include/js_strings.php:19
+msgid "less than a minute"
+msgstr "weniger als eine Minute"
 
-#: ../../include/photos.php:124 ../../mod/profile_photo.php:147
-msgid "Unable to process image"
-msgstr "Kann Bild nicht verarbeiten"
+#: ../../include/js_strings.php:20
+msgid "about a minute"
+msgstr "ungefähr eine Minute"
 
-#: ../../include/photos.php:186
-msgid "Photo storage failed."
-msgstr "Foto speichern schlug fehl"
+#: ../../include/js_strings.php:21
+#, php-format
+msgid "%d minutes"
+msgstr "%d Minuten"
 
-#: ../../include/photos.php:296 ../../include/conversation.php:1457
-msgid "Photo Albums"
-msgstr "Fotoalben"
+#: ../../include/js_strings.php:22
+msgid "about an hour"
+msgstr "ungefähr eine Stunde"
 
-#: ../../include/photos.php:300 ../../mod/photos.php:809
-#: ../../mod/photos.php:1283
-msgid "Upload New Photos"
-msgstr "Lade neue Fotos hoch"
+#: ../../include/js_strings.php:23
+#, php-format
+msgid "about %d hours"
+msgstr "ungefähr %d Stunden"
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Männlich"
+#: ../../include/js_strings.php:24
+msgid "a day"
+msgstr "ein Tag"
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Weiblich"
+#: ../../include/js_strings.php:25
+#, php-format
+msgid "%d days"
+msgstr "%d Tage"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Momentan männlich"
+#: ../../include/js_strings.php:26
+msgid "about a month"
+msgstr "ungefähr ein Monat"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Momentan weiblich"
+#: ../../include/js_strings.php:27
+#, php-format
+msgid "%d months"
+msgstr "%d Monate"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Größtenteils männlich"
+#: ../../include/js_strings.php:28
+msgid "about a year"
+msgstr "ungefähr ein Jahr"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Größtenteils weiblich"
+#: ../../include/js_strings.php:29
+#, php-format
+msgid "%d years"
+msgstr "%d Jahre"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transsexuell"
+#: ../../include/js_strings.php:30
+msgid " "
+msgstr " "
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Zwischengeschlechtlich"
+#: ../../include/js_strings.php:31
+msgid "timeago.numbers"
+msgstr "timeago.numbers"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transsexuell"
+#: ../../include/message.php:18
+msgid "No recipient provided."
+msgstr "Kein Empfänger angegeben"
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Zwitter"
+#: ../../include/message.php:23
+msgid "[no subject]"
+msgstr "[no subject]"
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Geschlechtslos"
+#: ../../include/message.php:42
+msgid "Unable to determine sender."
+msgstr "Kann Absender nicht bestimmen."
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "unklar"
+#: ../../include/message.php:143
+msgid "Stored post could not be verified."
+msgstr "Gespeicherter Beitrag konnten nicht überprüft werden."
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Anders"
+#: ../../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"
+msgstr "Profilfotos"
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Unentschieden"
+#: ../../include/network.php:640
+msgid "view full size"
+msgstr "In Vollbildansicht anschauen"
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Männer"
+#: ../../include/bbcode.php:94 ../../include/bbcode.php:509
+#: ../../include/bbcode.php:512
+msgid "Image/photo"
+msgstr "Bild/Foto"
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Frauen"
+#: ../../include/bbcode.php:129 ../../include/bbcode.php:517
+msgid "Encrypted content"
+msgstr "Verschlüsselter Inhalt"
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Schwul"
+#: ../../include/bbcode.php:136
+msgid "QR code"
+msgstr "QR Code"
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbisch"
+#: ../../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/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Keine Bevorzugung"
+#: ../../include/bbcode.php:181
+msgid "post"
+msgstr "Beitrag"
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bisexuell"
+#: ../../include/bbcode.php:469 ../../include/bbcode.php:489
+msgid "$1 wrote:"
+msgstr "$1 schrieb:"
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autosexuell"
+#: ../../include/oembed.php:150
+msgid "Embedded content"
+msgstr "Eingebetteter Inhalt"
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Enthaltsam"
+#: ../../include/oembed.php:159
+msgid "Embedding disabled"
+msgstr "Einbetten ausgeschaltet"
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Jungfräulich"
+#: ../../include/features.php:21
+msgid "General Features"
+msgstr "Allgemeine Funktionen"
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Abweichend"
+#: ../../include/features.php:23
+msgid "Content Expiration"
+msgstr "Verfall von Inhalten"
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetisch"
+#: ../../include/features.php:23
+msgid "Remove posts/comments and/or private messages at a future time"
+msgstr "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum."
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Unmengen"
+#: ../../include/features.php:24
+msgid "Multiple Profiles"
+msgstr "Mehrfachprofile"
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Sexlos"
+#: ../../include/features.php:24
+msgid "Ability to create multiple profiles"
+msgstr "Mehrfachprofile anlegen können"
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Single"
+#: ../../include/features.php:25
+msgid "Web Pages"
+msgstr "Webseiten"
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Einsam"
+#: ../../include/features.php:25
+msgid "Provide managed web pages on your channel"
+msgstr "Stelle verwaltete Webseiten in Deinem Kanal zur Verfügung"
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Verfügbar"
+#: ../../include/features.php:26
+msgid "Private Notes"
+msgstr "private Notizen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Nicht verfügbar"
+#: ../../include/features.php:26
+msgid "Enables a tool to store notes and reminders"
+msgstr "Werkzeug zum Speichern von Notizen und Erinnerungen aktivieren"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "Verguckt"
+#: ../../include/features.php:31
+msgid "Extended Identity Sharing"
+msgstr "Erweitertes Teilen von Identitäten"
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "Verknallt"
+#: ../../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/profile_selectors.php:42
-msgid "Dating"
-msgstr "Lerne gerade jemanden kennen"
+#: ../../include/features.php:32
+msgid "Expert Mode"
+msgstr "Expertenmodus"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Treulos"
+#: ../../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/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Sexabhängig"
+#: ../../include/features.php:33
+msgid "Premium Channel"
+msgstr "Premium-Kanal"
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Freunde/Begünstigte"
+#: ../../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/profile_selectors.php:42
-msgid "Casual"
-msgstr "Lose"
+#: ../../include/features.php:38
+msgid "Post Composition Features"
+msgstr "Nachbearbeitungsfunktionen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Verlobt"
+#: ../../include/features.php:39
+msgid "Richtext Editor"
+msgstr "Formatierungseditor"
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Verheiratet"
+#: ../../include/features.php:39
+msgid "Enable richtext editor"
+msgstr "Aktiviere Formatierungseditor"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "Gewissermaßen verheiratet"
+#: ../../include/features.php:40
+msgid "Post Preview"
+msgstr "Voransicht"
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partner"
+#: ../../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/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "Lebensgemeinschaft"
+#: ../../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/profile_selectors.php:42
-msgid "Common law"
-msgstr "Informelle Ehe"
+#: ../../include/features.php:42
+msgid "Even More Encryption"
+msgstr "Noch mehr Verschlüsselung"
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Glücklich"
+#: ../../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/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Nicht Ausschau haltend"
+#: ../../include/features.php:47
+msgid "Network and Stream Filtering"
+msgstr "Netzwerk- und Stream-Filter"
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: ../../include/features.php:48
+msgid "Search by Date"
+msgstr "Suche nach Datum"
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Betrogen"
+#: ../../include/features.php:48
+msgid "Ability to select posts by date ranges"
+msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Getrennt"
+#: ../../include/features.php:49
+msgid "Collections Filter"
+msgstr "Filter für Sammlung"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Labil"
+#: ../../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/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Geschieden"
+#: ../../include/features.php:50
+msgid "Save search terms for re-use"
+msgstr "Gesicherte Suchbegriffe zur Wiederverwendung"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "Gewissermaßen geschieden"
+#: ../../include/features.php:51
+msgid "Network Personal Tab"
+msgstr "Persönlicher Netzwerkreiter"
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Verwitwet"
+#: ../../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/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Ungewiss"
+#: ../../include/features.php:52
+msgid "Network New Tab"
+msgstr "Netzwerkreiter Neu"
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "Es ist kompliziert"
+#: ../../include/features.php:52
+msgid "Enable tab to display all new Network activity"
+msgstr "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Interessiert mich nicht"
+#: ../../include/features.php:53
+msgid "Affinity Tool"
+msgstr "Beziehungs-Tool"
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Frag mich mal"
+#: ../../include/features.php:53
+msgid "Filter stream activity by depth of relationships"
+msgstr "Filter Aktivitätenstream nach Tiefe der Beziehung"
 
-#: ../../include/attach.php:184 ../../include/attach.php:232
-msgid "Item was not found."
-msgstr "Beitrag wurde nicht gefunden."
+#: ../../include/features.php:54
+msgid "Suggest Channels"
+msgstr "Kanäle Vorschlagen"
 
-#: ../../include/attach.php:285
-msgid "No source file."
-msgstr "Keine Quelldatei."
+#: ../../include/features.php:54
+msgid "Show channel suggestions"
+msgstr "Kanal-Vorschläge anzeigen"
 
-#: ../../include/attach.php:302
-msgid "Cannot locate file to replace"
-msgstr "Kann Datei zum Ersetzen nicht finden"
+#: ../../include/features.php:59
+msgid "Post/Comment Tools"
+msgstr "Beitrag-/Kommentar-Tools"
 
-#: ../../include/attach.php:320
-msgid "Cannot locate file to revise/update"
-msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden"
+#: ../../include/features.php:61
+msgid "Edit Sent Posts"
+msgstr "Bearbeite gesendete Beiträge"
 
-#: ../../include/attach.php:331
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Datei überschreitet das Größen-Limit von %d"
+#: ../../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/attach.php:342
-#, 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/features.php:62
+msgid "Tagging"
+msgstr "Verschlagworten"
 
-#: ../../include/attach.php:424
-msgid "File upload failed. Possible system limit or action terminated."
-msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."
+#: ../../include/features.php:62
+msgid "Ability to tag existing posts"
+msgstr "Möglichkeit, um existierende Beiträge zu verschlagworten"
 
-#: ../../include/attach.php:436
-msgid "Stored file could not be verified. Upload failed."
-msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."
+#: ../../include/features.php:63
+msgid "Post Categories"
+msgstr "Beitrags-Kategorien"
 
-#: ../../include/attach.php:480 ../../include/attach.php:497
-msgid "Path not available."
-msgstr "Pfad nicht verfügbar."
+#: ../../include/features.php:63
+msgid "Add categories to your posts"
+msgstr "Kategorien für Beiträge"
 
-#: ../../include/attach.php:544
-msgid "Empty pathname"
-msgstr "leere Pfadangabe"
+#: ../../include/features.php:64
+msgid "Ability to file posts under folders"
+msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln"
 
-#: ../../include/attach.php:562
-msgid "duplicate filename or path"
-msgstr "doppelter Dateiname oder Pfad"
+#: ../../include/features.php:65
+msgid "Dislike Posts"
+msgstr "Gefällt-mir-nicht Beiträge"
 
-#: ../../include/attach.php:584
-msgid "Path not found."
-msgstr "Pfad nicht gefunden."
+#: ../../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/attach.php:628
-msgid "mkdir failed."
-msgstr "mkdir fehlgeschlagen."
+#: ../../include/features.php:66
+msgid "Star Posts"
+msgstr "Beiträge mit Sternchen versehen"
 
-#: ../../include/attach.php:632
-msgid "database storage failed."
-msgstr "Speichern in der Datenbank fehlgeschlagen."
+#: ../../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/zot.php:545
-msgid "Invalid data packet"
-msgstr "Ungültiges Datenpaket"
+#: ../../include/features.php:67
+msgid "Tag Cloud"
+msgstr "Tag Wolke"
 
-#: ../../include/zot.php:555
-msgid "Unable to verify channel signature"
-msgstr "Konnte die Signatur des Kanals nicht verifizieren"
+#: ../../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/zot.php:732
-#, php-format
-msgid "Unable to verify site signature for %s"
-msgstr "Kann die Signatur der Seite von %s nicht verifizieren"
+#: ../../include/conversation.php:123
+msgid "channel"
+msgstr "Kanal"
 
-#: ../../include/nav.php:72 ../../include/nav.php:87 ../../boot.php:1415
-msgid "Logout"
-msgstr "Abmelden"
+#: ../../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/nav.php:72 ../../include/nav.php:87
-msgid "End this session"
-msgstr "Beende diese Sitzung"
+#: ../../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/nav.php:75 ../../include/nav.php:121
-msgid "Home"
-msgstr "Home"
+#: ../../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/nav.php:75
-msgid "Your posts and conversations"
-msgstr "Deine Beiträge und Unterhaltungen"
+#: ../../include/conversation.php:236
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s stupste %2$s"
 
-#: ../../include/nav.php:76 ../../include/conversation.php:929
-#: ../../mod/connedit.php:309 ../../mod/connedit.php:423
-msgid "View Profile"
-msgstr "Profil ansehen"
+#: ../../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/nav.php:76
-msgid "Your profile page"
-msgstr "Deine Profilseite"
+#: ../../include/conversation.php:631 ../../include/ItemObject.php:114
+msgid "Select"
+msgstr "Auswählen"
 
-#: ../../include/nav.php:78
-msgid "Edit Profiles"
-msgstr "Profile bearbeiten"
+#: ../../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/nav.php:78
-msgid "Manage/Edit Profiles"
-msgstr "Verwalte/Bearbeite Profile"
+#: ../../include/conversation.php:642 ../../include/ItemObject.php:161
+msgid "Message is verified"
+msgstr "Nachricht überprüft"
 
-#: ../../include/nav.php:79 ../../include/conversation.php:1454
-#: ../../mod/fbrowser.php:25
-msgid "Photos"
-msgstr "Fotos"
+#: ../../include/conversation.php:662
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Schaue Dir %s's Profil auf %s an."
 
-#: ../../include/nav.php:79
-msgid "Your photos"
-msgstr "Deine Bilder"
+#: ../../include/conversation.php:676
+msgid "Categories:"
+msgstr "Kategorien:"
 
-#: ../../include/nav.php:85 ../../boot.php:1416
-msgid "Login"
-msgstr "Anmelden"
+#: ../../include/conversation.php:677
+msgid "Filed under:"
+msgstr "Gespeichert unter:"
 
-#: ../../include/nav.php:85
-msgid "Sign in"
-msgstr "Anmelden"
+#: ../../include/conversation.php:686 ../../include/ItemObject.php:217
+#, php-format
+msgid " from %s"
+msgstr "von %s"
 
-#: ../../include/nav.php:102
+#: ../../include/conversation.php:689 ../../include/ItemObject.php:220
 #, php-format
-msgid "%s - click to logout"
-msgstr "%s - Klick zum Abmelden"
+msgid "last edited: %s"
+msgstr "zuletzt bearbeitet: %s"
 
-#: ../../include/nav.php:107
-msgid "Click to authenticate to your home hub"
-msgstr "Klick zum Authentifizieren bei Deinem Heimat-Hub"
+#: ../../include/conversation.php:704
+msgid "View in context"
+msgstr "Im Zusammenhang anschauen"
 
-#: ../../include/nav.php:121
-msgid "Home Page"
-msgstr "Homepage"
+#: ../../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/nav.php:125 ../../mod/register.php:195 ../../boot.php:1392
-msgid "Register"
-msgstr "Registrieren"
+#: ../../include/conversation.php:833
+msgid "remove"
+msgstr "lösche"
 
-#: ../../include/nav.php:125
-msgid "Create an account"
-msgstr "Erzeuge ein Konto"
+#: ../../include/conversation.php:837
+msgid "Loading..."
+msgstr "Lädt ..."
 
-#: ../../include/nav.php:130 ../../mod/help.php:60 ../../mod/help.php:64
-msgid "Help"
-msgstr "Hilfe"
+#: ../../include/conversation.php:838
+msgid "Delete Selected Items"
+msgstr "Lösche die ausgewählten Elemente"
 
-#: ../../include/nav.php:130
-msgid "Help and documentation"
-msgstr "Hilfe und Dokumentation"
+#: ../../include/conversation.php:929
+msgid "View Source"
+msgstr "Quelle anzeigen"
 
-#: ../../include/nav.php:133
-msgid "Apps"
-msgstr "Apps"
+#: ../../include/conversation.php:930
+msgid "Follow Thread"
+msgstr "Unterhaltung folgen"
 
-#: ../../include/nav.php:133
-msgid "Addon applications, utilities, games"
-msgstr "Addon Programme, Helferlein, Spiele"
+#: ../../include/conversation.php:931
+msgid "View Status"
+msgstr "Status ansehen"
 
-#: ../../include/nav.php:135 ../../include/text.php:736
-#: ../../include/text.php:750 ../../mod/search.php:96
-msgid "Search"
-msgstr "Suche"
+#: ../../include/conversation.php:933
+msgid "View Photos"
+msgstr "Fotos ansehen"
 
-#: ../../include/nav.php:135
-msgid "Search site content"
-msgstr "Durchsuche Seiten-Inhalt"
+#: ../../include/conversation.php:934
+msgid "Matrix Activity"
+msgstr "Matrix Aktivität"
 
-#: ../../include/nav.php:138 ../../mod/directory.php:226
-msgid "Directory"
-msgstr "Verzeichnis"
+#: ../../include/conversation.php:935
+msgid "Edit Contact"
+msgstr "Kontakt bearbeiten"
 
-#: ../../include/nav.php:138
-msgid "Channel Locator"
-msgstr "Kanal-Anzeiger"
+#: ../../include/conversation.php:936
+msgid "Send PM"
+msgstr "Sende PN"
 
-#: ../../include/nav.php:149
-msgid "Matrix"
-msgstr "Matrix"
+#: ../../include/conversation.php:937
+msgid "Poke"
+msgstr "Anstupsen"
 
-#: ../../include/nav.php:149
-msgid "Your matrix"
-msgstr "Deine Matrix"
+#: ../../include/conversation.php:999
+#, php-format
+msgid "%s likes this."
+msgstr "%s gefällt das."
 
-#: ../../include/nav.php:150
-msgid "Mark all matrix notifications seen"
-msgstr "Markiere alle Matrix-Benachrichtigungen als angesehen"
+#: ../../include/conversation.php:999
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s gefällt das nicht."
 
-#: ../../include/nav.php:152
-msgid "Channel Home"
-msgstr "Mein Kanal"
+#: ../../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/nav.php:152
-msgid "Channel home"
-msgstr "Mein Kanal"
+#: ../../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/nav.php:153
-msgid "Mark all channel notifications seen"
-msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen"
+#: ../../include/conversation.php:1011
+msgid "and"
+msgstr "und"
 
-#: ../../include/nav.php:156
-msgid "Intros"
-msgstr "Vorstellungen"
+#: ../../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/nav.php:156 ../../mod/connections.php:242
-msgid "New Connections"
-msgstr "Neue Verbindungen"
+#: ../../include/conversation.php:1015
+#, php-format
+msgid "%s like this."
+msgstr "%s gefällt das."
 
-#: ../../include/nav.php:159
-msgid "Notices"
-msgstr "Benachrichtigungen"
+#: ../../include/conversation.php:1015
+#, php-format
+msgid "%s don't like this."
+msgstr "%s gefällt das nicht."
 
-#: ../../include/nav.php:159
-msgid "Notifications"
-msgstr "Benachrichtigungen"
+#: ../../include/conversation.php:1065
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Sichtbar für <strong>jeden</strong>"
 
-#: ../../include/nav.php:160
-msgid "See all notifications"
-msgstr "Alle Benachrichtigungen ansehen"
+#: ../../include/conversation.php:1066 ../../mod/mail.php:171
+#: ../../mod/mail.php:269
+msgid "Please enter a link URL:"
+msgstr "Gib eine URL ein:"
 
-#: ../../include/nav.php:161
-msgid "Mark all system notifications seen"
-msgstr "Markiere alle System-Benachrichtigungen als gesehen"
+#: ../../include/conversation.php:1067
+msgid "Please enter a video link/URL:"
+msgstr "Gib einen Video-Link/URL ein:"
 
-#: ../../include/nav.php:163
-msgid "Mail"
-msgstr "Mail"
+#: ../../include/conversation.php:1068
+msgid "Please enter an audio link/URL:"
+msgstr "Gib einen Audio-Link/URL ein:"
 
-#: ../../include/nav.php:163
-msgid "Private mail"
-msgstr "Persönliche Mail"
+#: ../../include/conversation.php:1069
+msgid "Tag term:"
+msgstr "Schlagwort:"
 
-#: ../../include/nav.php:164
-msgid "See all private messages"
-msgstr "Alle persönlichen Nachrichten ansehen"
+#: ../../include/conversation.php:1070 ../../mod/filer.php:35
+msgid "Save to Folder:"
+msgstr "Speichern in Ordner:"
 
-#: ../../include/nav.php:165
-msgid "Mark all private messages seen"
-msgstr "Markiere alle persönlichen Nachrichten als gesehen"
+#: ../../include/conversation.php:1071
+msgid "Where are you right now?"
+msgstr "Wo bist du jetzt grade?"
 
-#: ../../include/nav.php:166
-msgid "Inbox"
-msgstr "Eingang"
+#: ../../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/nav.php:167
-msgid "Outbox"
-msgstr "Ausgang"
+#: ../../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/nav.php:171 ../../include/conversation.php:1465
-#: ../../mod/events.php:354
-msgid "Events"
-msgstr "Veranstaltungen"
+#: ../../include/conversation.php:1096 ../../mod/photos.php:1080
+msgid "Share"
+msgstr "Teilen"
 
-#: ../../include/nav.php:171
-msgid "Event Calendar"
-msgstr "Veranstaltungskalender"
+#: ../../include/conversation.php:1098 ../../mod/editwebpage.php:140
+msgid "Page link title"
+msgstr "Seitentitel-Link"
 
-#: ../../include/nav.php:172
-msgid "See all events"
-msgstr "Alle Ereignisse ansehen"
+#: ../../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/nav.php:173
-msgid "Mark all events seen"
-msgstr "Markiere alle Ereignisse als gesehen"
+#: ../../include/conversation.php:1101
+msgid "upload photo"
+msgstr "Foto hochladen"
 
-#: ../../include/nav.php:175
-msgid "Channel Select"
-msgstr "Kanal-Auswahl"
+#: ../../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/nav.php:175
-msgid "Manage Your Channels"
-msgstr "Verwalte Deine Kanäle"
+#: ../../include/conversation.php:1103
+msgid "attach file"
+msgstr "Datei anfügen"
 
-#: ../../include/nav.php:177
-msgid "Account/Channel Settings"
-msgstr "Konto-/Kanal-Einstellungen"
+#: ../../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/nav.php:179 ../../mod/connections.php:349
-msgid "Connections"
-msgstr "Verbindungen"
+#: ../../include/conversation.php:1105
+msgid "web link"
+msgstr "Web-Link"
 
-#: ../../include/nav.php:179
-msgid "Manage/Edit Friends and Connections"
-msgstr "Verwalte/Bearbeite Freunde und Verbindungen"
+#: ../../include/conversation.php:1106
+msgid "Insert video link"
+msgstr "Video-Link einfügen"
 
-#: ../../include/nav.php:186 ../../mod/admin.php:111
-msgid "Admin"
-msgstr "Admin"
+#: ../../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/nav.php:186
-msgid "Site Setup and Configuration"
-msgstr "Seiten-Einrichtung und -Konfiguration"
+#: ../../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/nav.php:212
-msgid "Nothing new here"
-msgstr "Nichts Neues hier"
+#: ../../include/conversation.php:1111
+msgid "set location"
+msgstr "Standort"
 
-#: ../../include/nav.php:217
-msgid "Please wait..."
-msgstr "Bitte warten..."
+#: ../../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/taxonomy.php:210
-msgid "Tags"
-msgstr "Tags"
+#: ../../include/conversation.php:1113
+msgid "clear location"
+msgstr "Standort löschen"
 
-#: ../../include/taxonomy.php:224
-msgid "Keywords"
-msgstr "Schlüsselbegriffe"
+#: ../../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/taxonomy.php:249
-msgid "have"
-msgstr "habe"
+#: ../../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/taxonomy.php:249
-msgid "has"
-msgstr "hat"
+#: ../../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/taxonomy.php:250
-msgid "want"
-msgstr "will"
+#: ../../include/conversation.php:1121
+msgid "permissions"
+msgstr "Berechtigungen"
 
-#: ../../include/taxonomy.php:250
-msgid "wants"
-msgstr "will"
+#: ../../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/taxonomy.php:251
-msgid "likes"
-msgstr "Gefällt-mir"
+#: ../../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/taxonomy.php:252
-msgid "dislikes"
-msgstr "Gefällt-mir-nicht"
+#: ../../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/account.php:23
-msgid "Not a valid email address"
-msgstr "Ungültige E-Mail-Adresse"
+#: ../../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/account.php:25
-msgid "Your email domain is not among those allowed on this site"
-msgstr "Deine E-Mail-Adresse ist nicht unter denen, die auf dieser Seite erlaubt sind"
+#: ../../include/conversation.php:1148 ../../mod/editpost.php:136
+msgid "OK"
+msgstr "OK"
 
-#: ../../include/account.php:31
-msgid "Your email address is already registered at this site."
-msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."
+#: ../../include/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/account.php:64
-msgid "An invitation is required."
-msgstr "Eine Einladung wird benötigt"
+#: ../../include/conversation.php:1376
+msgid "Commented Order"
+msgstr "Neueste Kommentare"
 
-#: ../../include/account.php:68
-msgid "Invitation could not be verified."
-msgstr "Die Einladung konnte nicht bestätigt werden"
+#: ../../include/conversation.php:1379
+msgid "Sort by Comment Date"
+msgstr "Nach Kommentardatum sortiert"
 
-#: ../../include/account.php:118
-msgid "Please enter the required information."
-msgstr "Bitte gib die benötigten Informationen ein."
+#: ../../include/conversation.php:1382
+msgid "Posted Order"
+msgstr "Neueste Beiträge"
 
-#: ../../include/account.php:186
-msgid "Failed to store account information."
-msgstr "Speichern der Account-Informationen fehlgeschlagen"
+#: ../../include/conversation.php:1385
+msgid "Sort by Post Date"
+msgstr "Nach Beitragsdatum sortiert"
 
-#: ../../include/account.php:272
-#, php-format
-msgid "Registration request at %s"
-msgstr "Registrierungsanfrage auf %s"
+#: ../../include/conversation.php:1389
+msgid "Personal"
+msgstr "Persönlich"
 
-#: ../../include/account.php:274 ../../include/account.php:301
-#: ../../include/account.php:358
-msgid "Administrator"
-msgstr "Administrator"
+#: ../../include/conversation.php:1392
+msgid "Posts that mention or involve you"
+msgstr "Beiträge, in denen es um dich geht"
 
-#: ../../include/account.php:296
-msgid "your registration password"
-msgstr "dein Registrierungspasswort"
+#: ../../include/conversation.php:1395 ../../mod/menu.php:57
+#: ../../mod/connections.php:209
+msgid "New"
+msgstr "Neu"
 
-#: ../../include/account.php:299 ../../include/account.php:356
-#, php-format
-msgid "Registration details for %s"
-msgstr "Registrierungsdetails für %s"
+#: ../../include/conversation.php:1398
+msgid "Activity Stream - by date"
+msgstr "Activity Stream - nach Datum sortiert"
 
-#: ../../include/account.php:365
-msgid "Account approved."
-msgstr "Account bestätigt."
+#: ../../include/conversation.php:1405
+msgid "Starred"
+msgstr "Markiert"
 
-#: ../../include/account.php:399
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrierung für %s widerrufen"
+#: ../../include/conversation.php:1408
+msgid "Favourite Posts"
+msgstr "Beiträge mit Sternchen"
 
-#: ../../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/conversation.php:1415
+msgid "Spam"
+msgstr "Spam"
 
-#: ../../include/conversation.php:120 ../../include/text.php:1624
-#: ../../mod/tagger.php:49
-msgid "event"
-msgstr "Ereignis"
+#: ../../include/conversation.php:1418
+msgid "Posts flagged as SPAM"
+msgstr "Nachrichten die als SPAM markiert wurden"
 
-#: ../../include/conversation.php:123
-msgid "channel"
+#: ../../include/conversation.php:1448
+msgid "Channel"
 msgstr "Kanal"
 
-#: ../../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/conversation.php:1451
+msgid "Status Messages and Posts"
+msgstr "Statusnachrichten und Beiträge"
 
-#: ../../include/conversation.php:147 ../../include/text.php:1629
-#: ../../mod/tagger.php:55
-msgid "comment"
-msgstr "Kommentar"
+#: ../../include/conversation.php:1455
+msgid "About"
+msgstr "Über"
 
-#: ../../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:1458
+msgid "Profile Details"
+msgstr "Profil-Details"
 
-#: ../../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:1465 ../../include/photos.php:297
+msgid "Photo Albums"
+msgstr "Fotoalben"
 
-#: ../../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:1470 ../../mod/fbrowser.php:114
+msgid "Files"
+msgstr "Dateien"
 
-#: ../../include/conversation.php:236
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s stupste %2$s"
+#: ../../include/conversation.php:1473
+msgid "Files and Storage"
+msgstr "Dateien und Speicher"
 
-#: ../../include/conversation.php:240 ../../include/text.php:790
-msgid "poked"
-msgstr "stupste"
+#: ../../include/conversation.php:1485
+msgid "Events and Calendar"
+msgstr "Veranstaltungen und Kalender"
 
-#: ../../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:1490
+msgid "Webpages"
+msgstr "Webseiten"
 
-#: ../../include/conversation.php:662
+#: ../../include/conversation.php:1493
+msgid "Manage Webpages"
+msgstr "Webseiten verwalten"
+
+#: ../../include/notify.php:23
+msgid "created a new post"
+msgstr "Neuer Beitrag wurde erzeugt"
+
+#: ../../include/notify.php:24
 #, php-format
-msgid "View %s's profile @ %s"
-msgstr "Schaue Dir %s's Profil auf %s an."
+msgid "commented on %s's post"
+msgstr "hat %s's Beitrag kommentiert"
 
-#: ../../include/conversation.php:676
-msgid "Categories:"
-msgstr "Kategorien:"
+#: ../../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: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: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/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"
 
-#: ../../include/conversation.php:677
-msgid "Filed under:"
-msgstr "Gespeichert unter:"
+#: ../../include/photos.php:88
+#, php-format
+msgid "Image exceeds website size limit of %lu bytes"
+msgstr "Bild überschreitet das Limit der Webseite von %lu bytes"
 
-#: ../../include/conversation.php:704
-msgid "View in context"
-msgstr "Im Zusammenhang anschauen"
+#: ../../include/photos.php:95
+msgid "Image file is empty."
+msgstr "Bilddatei ist leer."
 
-#: ../../include/conversation.php:830
-msgid "remove"
-msgstr "lösche"
+#: ../../include/photos.php:122 ../../mod/profile_photo.php:147
+msgid "Unable to process image"
+msgstr "Kann Bild nicht verarbeiten"
 
-#: ../../include/conversation.php:834
-msgid "Loading..."
-msgstr "Lädt ..."
+#: ../../include/photos.php:184
+msgid "Photo storage failed."
+msgstr "Foto speichern schlug fehl"
 
-#: ../../include/conversation.php:835
-msgid "Delete Selected Items"
-msgstr "Lösche die ausgewählten Elemente"
+#: ../../include/photos.php:301 ../../mod/photos.php:821
+#: ../../mod/photos.php:1296
+msgid "Upload New Photos"
+msgstr "Lade neue Fotos hoch"
 
-#: ../../include/conversation.php:926
-msgid "View Source"
-msgstr "Quelle anzeigen"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Männlich"
 
-#: ../../include/conversation.php:927
-msgid "Follow Thread"
-msgstr "Unterhaltung folgen"
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Weiblich"
 
-#: ../../include/conversation.php:928
-msgid "View Status"
-msgstr "Status ansehen"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Momentan männlich"
 
-#: ../../include/conversation.php:930
-msgid "View Photos"
-msgstr "Fotos ansehen"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Momentan weiblich"
 
-#: ../../include/conversation.php:931
-msgid "Matrix Activity"
-msgstr "Matrix Aktivität"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Größtenteils männlich"
 
-#: ../../include/conversation.php:932
-msgid "Edit Contact"
-msgstr "Kontakt bearbeiten"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Größtenteils weiblich"
 
-#: ../../include/conversation.php:933
-msgid "Send PM"
-msgstr "Sende PN"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transsexuell"
 
-#: ../../include/conversation.php:934
-msgid "Poke"
-msgstr "Anstupsen"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Zwischengeschlechtlich"
 
-#: ../../include/conversation.php:996
-#, php-format
-msgid "%s likes this."
-msgstr "%s gefällt das."
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transsexuell"
 
-#: ../../include/conversation.php:996
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s gefällt das nicht."
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Zwitter"
 
-#: ../../include/conversation.php:1000
-#, 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/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Geschlechtslos"
 
-#: ../../include/conversation.php:1002
-#, 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/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "unklar"
 
-#: ../../include/conversation.php:1008
-msgid "and"
-msgstr "und"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Anders"
 
-#: ../../include/conversation.php:1011
-#, php-format
-msgid ", and %d other people"
-msgid_plural ", and %d other people"
-msgstr[0] ""
-msgstr[1] ", und %d andere"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Unentschieden"
 
-#: ../../include/conversation.php:1012
-#, php-format
-msgid "%s like this."
-msgstr "%s gefällt das."
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Männer"
 
-#: ../../include/conversation.php:1012
-#, php-format
-msgid "%s don't like this."
-msgstr "%s gefällt das nicht."
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Frauen"
 
-#: ../../include/conversation.php:1062
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Sichtbar für <strong>jeden</strong>"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Schwul"
 
-#: ../../include/conversation.php:1063 ../../mod/message.php:258
-#: ../../mod/message.php:393
-msgid "Please enter a link URL:"
-msgstr "Gib eine URL ein:"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbisch"
 
-#: ../../include/conversation.php:1064
-msgid "Please enter a video link/URL:"
-msgstr "Gib einen Video-Link/URL ein:"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Keine Bevorzugung"
 
-#: ../../include/conversation.php:1065
-msgid "Please enter an audio link/URL:"
-msgstr "Gib einen Audio-Link/URL ein:"
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bisexuell"
 
-#: ../../include/conversation.php:1066
-msgid "Tag term:"
-msgstr "Schlagwort:"
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autosexuell"
 
-#: ../../include/conversation.php:1067 ../../mod/filer.php:35
-msgid "Save to Folder:"
-msgstr "Speichern in Ordner:"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Enthaltsam"
 
-#: ../../include/conversation.php:1068
-msgid "Where are you right now?"
-msgstr "Wo bist du jetzt grade?"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Jungfräulich"
 
-#: ../../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/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Abweichend"
 
-#: ../../include/conversation.php:1093 ../../mod/photos.php:1067
-msgid "Share"
-msgstr "Teilen"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetisch"
 
-#: ../../include/conversation.php:1095 ../../mod/editwebpage.php:139
-msgid "Page link title"
-msgstr "Seitentitel-Link"
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Unmengen"
 
-#: ../../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/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Sexlos"
 
-#: ../../include/conversation.php:1098
-msgid "upload photo"
-msgstr "Foto hochladen"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Single"
 
-#: ../../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/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Einsam"
 
-#: ../../include/conversation.php:1100
-msgid "attach file"
-msgstr "Datei anfügen"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Verfügbar"
 
-#: ../../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/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Nicht verfügbar"
 
-#: ../../include/conversation.php:1102
-msgid "web link"
-msgstr "Web-Link"
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "Verguckt"
 
-#: ../../include/conversation.php:1103
-msgid "Insert video link"
-msgstr "Video-Link einfügen"
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "Verknallt"
 
-#: ../../include/conversation.php:1104
-msgid "video link"
-msgstr "Video-Link"
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Lerne gerade jemanden kennen"
 
-#: ../../include/conversation.php:1105
-msgid "Insert audio link"
-msgstr "Audio-Link einfügen"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Treulos"
 
-#: ../../include/conversation.php:1106
-msgid "audio link"
-msgstr "Audio-Link"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Sexabhängig"
 
-#: ../../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/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Freunde/Begünstigte"
 
-#: ../../include/conversation.php:1108
-msgid "set location"
-msgstr "Standort"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Lose"
 
-#: ../../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/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Verlobt"
 
-#: ../../include/conversation.php:1110
-msgid "clear location"
-msgstr "Standort löschen"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Verheiratet"
 
-#: ../../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/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "Gewissermaßen verheiratet"
 
-#: ../../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/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partner"
 
-#: ../../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"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "Lebensgemeinschaft"
 
-#: ../../include/conversation.php:1118
-msgid "permissions"
-msgstr "Berechtigungen"
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "Informelle Ehe"
 
-#: ../../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/profile_selectors.php:42
+msgid "Happy"
+msgstr "Glücklich"
 
-#: ../../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/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Nicht Ausschau haltend"
 
-#: ../../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/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Swinger"
 
-#: ../../include/conversation.php:1368
-msgid "Commented Order"
-msgstr "Neueste Kommentare"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Betrogen"
 
-#: ../../include/conversation.php:1371
-msgid "Sort by Comment Date"
-msgstr "Nach Kommentardatum sortiert"
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Getrennt"
 
-#: ../../include/conversation.php:1374
-msgid "Posted Order"
-msgstr "Neueste Beiträge"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Labil"
 
-#: ../../include/conversation.php:1377
-msgid "Sort by Post Date"
-msgstr "Nach Beitragsdatum sortiert"
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Geschieden"
 
-#: ../../include/conversation.php:1381
-msgid "Personal"
-msgstr "Persönlich"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "Gewissermaßen geschieden"
+
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Verwitwet"
 
-#: ../../include/conversation.php:1384
-msgid "Posts that mention or involve you"
-msgstr "Beiträge, in denen es um dich geht"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Ungewiss"
 
-#: ../../include/conversation.php:1387 ../../mod/menu.php:57
-#: ../../mod/connections.php:209
-msgid "New"
-msgstr "Neu"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "Es ist kompliziert"
 
-#: ../../include/conversation.php:1390
-msgid "Activity Stream - by date"
-msgstr "Activity Stream - nach Datum sortiert"
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Interessiert mich nicht"
 
-#: ../../include/conversation.php:1397
-msgid "Starred"
-msgstr "Markiert"
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Frag mich mal"
 
-#: ../../include/conversation.php:1400
-msgid "Favourite Posts"
-msgstr "Beiträge mit Sternchen"
+#: ../../include/attach.php:179 ../../include/attach.php:227
+msgid "Item was not found."
+msgstr "Beitrag wurde nicht gefunden."
 
-#: ../../include/conversation.php:1407
-msgid "Spam"
-msgstr "Spam"
+#: ../../include/attach.php:280
+msgid "No source file."
+msgstr "Keine Quelldatei."
 
-#: ../../include/conversation.php:1410
-msgid "Posts flagged as SPAM"
-msgstr "Nachrichten die als SPAM markiert wurden"
+#: ../../include/attach.php:297
+msgid "Cannot locate file to replace"
+msgstr "Kann Datei zum Ersetzen nicht finden"
 
-#: ../../include/conversation.php:1440
-msgid "Channel"
-msgstr "Kanal"
+#: ../../include/attach.php:315
+msgid "Cannot locate file to revise/update"
+msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden"
 
-#: ../../include/conversation.php:1443
-msgid "Status Messages and Posts"
-msgstr "Statusnachrichten und Beiträge"
+#: ../../include/attach.php:326
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Datei überschreitet das Größen-Limit von %d"
 
-#: ../../include/conversation.php:1447
-msgid "About"
-msgstr "Über"
+#: ../../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/conversation.php:1450
-msgid "Profile Details"
-msgstr "Profil-Details"
+#: ../../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/conversation.php:1468
-msgid "Events and Calendar"
-msgstr "Veranstaltungen und Kalender"
+#: ../../include/attach.php:433
+msgid "Stored file could not be verified. Upload failed."
+msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."
 
-#: ../../include/conversation.php:1473
-msgid "Webpages"
-msgstr "Webseiten"
+#: ../../include/attach.php:477 ../../include/attach.php:494
+msgid "Path not available."
+msgstr "Pfad nicht verfügbar."
 
-#: ../../include/conversation.php:1476
-msgid "Manage Webpages"
-msgstr "Webseiten verwalten"
+#: ../../include/attach.php:544
+msgid "Empty pathname"
+msgstr "leere Pfadangabe"
 
-#: ../../include/auth.php:69
-msgid "Logged out."
-msgstr "Ausgeloggt."
+#: ../../include/attach.php:562
+msgid "duplicate filename or path"
+msgstr "doppelter Dateiname oder Pfad"
 
-#: ../../include/auth.php:181
-msgid "Failed authentication"
-msgstr "Authentifizierung fehlgeschlagen"
+#: ../../include/attach.php:587
+msgid "Path not found."
+msgstr "Pfad nicht gefunden."
 
-#: ../../include/auth.php:190
-msgid "Login failed."
-msgstr "Login fehlgeschlagen."
+#: ../../include/attach.php:632
+msgid "mkdir failed."
+msgstr "mkdir fehlgeschlagen."
 
-#: ../../include/contact_widgets.php:14
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d Einladung verfügbar"
-msgstr[1] "%d Einladungen verfügbar"
+#: ../../include/attach.php:636
+msgid "database storage failed."
+msgstr "Speichern in der Datenbank fehlgeschlagen."
 
-#: ../../include/contact_widgets.php:20
-msgid "Find Channels"
-msgstr "Finde Kanäle"
+#: ../../include/taxonomy.php:210
+msgid "Tags"
+msgstr "Tags"
 
-#: ../../include/contact_widgets.php:21
-msgid "Enter name or interest"
-msgstr "Name oder Interessen eingeben"
+#: ../../include/taxonomy.php:227
+msgid "Keywords"
+msgstr "Schlüsselbegriffe"
 
-#: ../../include/contact_widgets.php:22
-msgid "Connect/Follow"
-msgstr "Verbinden/Folgen"
+#: ../../include/taxonomy.php:252
+msgid "have"
+msgstr "habe"
 
-#: ../../include/contact_widgets.php:23
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Beispiele: Robert Morgenstein, Angeln"
+#: ../../include/taxonomy.php:252
+msgid "has"
+msgstr "hat"
 
-#: ../../include/contact_widgets.php:24 ../../mod/connections.php:355
-#: ../../mod/directory.php:222 ../../mod/directory.php:227
-msgid "Find"
-msgstr "Finde"
+#: ../../include/taxonomy.php:253
+msgid "want"
+msgstr "will"
 
-#: ../../include/contact_widgets.php:25 ../../mod/suggest.php:59
-msgid "Channel Suggestions"
-msgstr "Kanal-Vorschläge"
+#: ../../include/taxonomy.php:253
+msgid "wants"
+msgstr "will"
 
-#: ../../include/contact_widgets.php:27
-msgid "Random Profile"
-msgstr "Zufallsprofil"
+#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:175
+msgid "like"
+msgstr "Gefällt-mir"
 
-#: ../../include/contact_widgets.php:28
-msgid "Invite Friends"
-msgstr "Lade Freunde ein"
+#: ../../include/taxonomy.php:254
+msgid "likes"
+msgstr "Gefällt-mir"
 
-#: ../../include/contact_widgets.php:120
-#, php-format
-msgid "%d connection in common"
-msgid_plural "%d connections in common"
-msgstr[0] "%d gemeinsame Verbindung"
-msgstr[1] "%d gemeinsame Verbindungen"
+#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:176
+msgid "dislike"
+msgstr "Gefällt-mir-nicht"
 
-#: ../../include/page_widgets.php:6
-msgid "New Page"
-msgstr "Neue Seite"
+#: ../../include/taxonomy.php:255
+msgid "dislikes"
+msgstr "Gefällt-mir-nicht"
 
-#: ../../include/text.php:315
-msgid "prev"
-msgstr "vorherige"
+#: ../../include/account.php:23
+msgid "Not a valid email address"
+msgstr "Ungültige E-Mail-Adresse"
 
-#: ../../include/text.php:317
-msgid "first"
-msgstr "erste"
+#: ../../include/account.php:25
+msgid "Your email domain is not among those allowed on this site"
+msgstr "Deine E-Mail-Adresse ist nicht unter denen, die auf dieser Seite erlaubt sind"
 
-#: ../../include/text.php:346
-msgid "last"
-msgstr "letzte"
+#: ../../include/account.php:31
+msgid "Your email address is already registered at this site."
+msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."
 
-#: ../../include/text.php:349
-msgid "next"
-msgstr "nächste"
+#: ../../include/account.php:64
+msgid "An invitation is required."
+msgstr "Eine Einladung wird benötigt"
 
-#: ../../include/text.php:361
-msgid "older"
-msgstr "älter"
+#: ../../include/account.php:68
+msgid "Invitation could not be verified."
+msgstr "Die Einladung konnte nicht bestätigt werden"
 
-#: ../../include/text.php:363
-msgid "newer"
-msgstr "neuer"
+#: ../../include/account.php:119
+msgid "Please enter the required information."
+msgstr "Bitte gib die benötigten Informationen ein."
 
-#: ../../include/text.php:654
-msgid "No connections"
-msgstr "Keine Verbindungen"
+#: ../../include/account.php:187
+msgid "Failed to store account information."
+msgstr "Speichern der Account-Informationen fehlgeschlagen"
 
-#: ../../include/text.php:665
+#: ../../include/account.php:273
 #, 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"
+msgid "Registration request at %s"
+msgstr "Registrierungsanfrage auf %s"
 
-#: ../../include/text.php:790
-msgid "poke"
-msgstr "anstupsen"
+#: ../../include/account.php:275 ../../include/account.php:302
+#: ../../include/account.php:359
+msgid "Administrator"
+msgstr "Administrator"
 
-#: ../../include/text.php:791
-msgid "ping"
-msgstr "anpingen"
+#: ../../include/account.php:297
+msgid "your registration password"
+msgstr "dein Registrierungspasswort"
 
-#: ../../include/text.php:791
-msgid "pinged"
-msgstr "pingte"
+#: ../../include/account.php:300 ../../include/account.php:357
+#, php-format
+msgid "Registration details for %s"
+msgstr "Registrierungsdetails für %s"
 
-#: ../../include/text.php:792
-msgid "prod"
-msgstr "knuffen"
+#: ../../include/account.php:366
+msgid "Account approved."
+msgstr "Account bestätigt."
 
-#: ../../include/text.php:792
-msgid "prodded"
-msgstr "knuffte"
+#: ../../include/account.php:400
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registrierung für %s widerrufen"
 
-#: ../../include/text.php:793
-msgid "slap"
-msgstr "ohrfeigen"
+#: ../../include/dir_fns.php:15
+msgid "Sort Options"
+msgstr "Sortieroptionen"
 
-#: ../../include/text.php:793
-msgid "slapped"
-msgstr "ohrfeigte"
+#: ../../include/dir_fns.php:16
+msgid "Alphabetic"
+msgstr "alphabetisch"
 
-#: ../../include/text.php:794
-msgid "finger"
-msgstr "befummeln"
+#: ../../include/dir_fns.php:17
+msgid "Reverse Alphabetic"
+msgstr "Entgegengesetzt alphabetisch"
 
-#: ../../include/text.php:794
-msgid "fingered"
-msgstr "befummelte"
+#: ../../include/dir_fns.php:18
+msgid "Newest to Oldest"
+msgstr "Neueste zuerst"
 
-#: ../../include/text.php:795
-msgid "rebuff"
-msgstr "eine Abfuhr erteilen"
+#: ../../include/dir_fns.php:30
+msgid "Enable Safe Search"
+msgstr "Sichere Suche einschalten"
 
-#: ../../include/text.php:795
-msgid "rebuffed"
-msgstr "abfuhrerteilte"
+#: ../../include/dir_fns.php:32
+msgid "Disable Safe Search"
+msgstr "Sichere Suche ausschalten"
 
-#: ../../include/text.php:807
-msgid "happy"
-msgstr "glücklich"
+#: ../../include/dir_fns.php:34
+msgid "Safe Mode"
+msgstr "Sicherer Modus"
 
-#: ../../include/text.php:808
-msgid "sad"
-msgstr "traurig"
+#: ../../include/enotify.php:40
+msgid "Red Matrix Notification"
+msgstr "Red Matrix Benachrichtigung"
 
-#: ../../include/text.php:809
-msgid "mellow"
-msgstr "sanft"
+#: ../../include/enotify.php:41
+msgid "redmatrix"
+msgstr "redmatrix"
 
-#: ../../include/text.php:810
-msgid "tired"
-msgstr "müde"
+#: ../../include/enotify.php:43
+msgid "Thank You,"
+msgstr "Danke."
 
-#: ../../include/text.php:811
-msgid "perky"
-msgstr "frech"
+#: ../../include/enotify.php:45
+#, php-format
+msgid "%s Administrator"
+msgstr "%s Administrator"
 
-#: ../../include/text.php:812
-msgid "angry"
-msgstr "sauer"
+#: ../../include/enotify.php:80
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: ../../include/text.php:813
-msgid "stupified"
-msgstr "verblüfft"
+#: ../../include/enotify.php:84
+#, php-format
+msgid "[Red:Notify] New mail received at %s"
+msgstr "[Red Notify] Neue Mail auf %s empfangen"
 
-#: ../../include/text.php:814
-msgid "puzzled"
-msgstr "verwirrt"
+#: ../../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/text.php:815
-msgid "interested"
-msgstr "interessiert"
+#: ../../include/enotify.php:87
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s hat dir %2$s geschickt."
 
-#: ../../include/text.php:816
-msgid "bitter"
-msgstr "verbittert"
+#: ../../include/enotify.php:87
+msgid "a private message"
+msgstr "eine private Nachricht"
 
-#: ../../include/text.php:817
-msgid "cheerful"
-msgstr "fröhlich"
+#: ../../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/text.php:818
-msgid "alive"
-msgstr "lebendig"
+#: ../../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 hat [zrl=%3$s]a %4$s[/zrl] kommentiert"
 
-#: ../../include/text.php:819
-msgid "annoyed"
-msgstr "verärgert"
+#: ../../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 hat [zrl=%3$s]%4$ss %5$s[/zrl] kommentiert"
 
-#: ../../include/text.php:820
-msgid "anxious"
-msgstr "unruhig"
+#: ../../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 hat [zrl=%3$s]deinen %4$s[/zrl] kommentiert"
 
-#: ../../include/text.php:821
-msgid "cranky"
-msgstr "schrullig"
+#: ../../include/enotify.php:170
+#, 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/text.php:822
-msgid "disturbed"
-msgstr "verstört"
+#: ../../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 hat ein Thema kommentiert, dem du folgst."
 
-#: ../../include/text.php:823
-msgid "frustrated"
-msgstr "frustriert"
+#: ../../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 "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
 
-#: ../../include/text.php:824
-msgid "motivated"
-msgstr "motiviert"
+#: ../../include/enotify.php:180
+#, php-format
+msgid "[Red:Notify] %s posted to your profile wall"
+msgstr "[Red:Hinweis] %s schrieb auf Deine Pinnwand"
 
-#: ../../include/text.php:825
-msgid "relaxed"
-msgstr "entspannt"
+#: ../../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/text.php:826
-msgid "surprised"
-msgstr "überrascht"
+#: ../../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/text.php:988
-msgid "Monday"
-msgstr "Montag"
+#: ../../include/enotify.php:208
+#, php-format
+msgid "[Red:Notify] %s tagged you"
+msgstr "[Red Notify] %s hat dich getaggt"
 
-#: ../../include/text.php:988
-msgid "Tuesday"
-msgstr "Dienstag"
+#: ../../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/text.php:988
-msgid "Wednesday"
-msgstr "Mittwoch"
+#: ../../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/text.php:988
-msgid "Thursday"
-msgstr "Donnerstag"
+#: ../../include/enotify.php:223
+#, php-format
+msgid "[Red:Notify] %1$s poked you"
+msgstr "[Red Notify] %1$s hat dich angestupst"
 
-#: ../../include/text.php:988
-msgid "Friday"
-msgstr "Freitag"
+#: ../../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/text.php:988
-msgid "Saturday"
-msgstr "Samstag"
+#: ../../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/text.php:988
-msgid "Sunday"
-msgstr "Sonntag"
+#: ../../include/enotify.php:241
+#, php-format
+msgid "[Red:Notify] %s tagged your post"
+msgstr "[Red:Hinweis] %s hat Dich getagged"
 
-#: ../../include/text.php:992
-msgid "January"
-msgstr "Januar"
+#: ../../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/text.php:992
-msgid "February"
-msgstr "Februar"
+#: ../../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/text.php:992
-msgid "March"
-msgstr "März"
+#: ../../include/enotify.php:255
+msgid "[Red:Notify] Introduction received"
+msgstr "[Red:Notify] Vorstellung erhalten"
 
-#: ../../include/text.php:992
-msgid "April"
-msgstr "April"
+#: ../../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/text.php:992
-msgid "May"
-msgstr "Mai"
+#: ../../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/text.php:992
-msgid "June"
-msgstr "Juni"
+#: ../../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/text.php:992
-msgid "July"
-msgstr "Juli"
+#: ../../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/text.php:992
-msgid "August"
-msgstr "August"
+#: ../../include/enotify.php:270
+msgid "[Red:Notify] Friend suggestion received"
+msgstr "[Red:Hinweis] Freundschaftsvorschlag erhalten"
 
-#: ../../include/text.php:992
-msgid "September"
-msgstr "September"
+#: ../../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/text.php:992
-msgid "October"
-msgstr "Oktober"
+#: ../../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/text.php:992
-msgid "November"
-msgstr "November"
+#: ../../include/enotify.php:278
+msgid "Name:"
+msgstr "Name:"
 
-#: ../../include/text.php:992
-msgid "December"
-msgstr "Dezember"
+#: ../../include/enotify.php:279
+msgid "Photo:"
+msgstr "Foto:"
 
-#: ../../include/text.php:1070
-msgid "unknown.???"
-msgstr "unbekannt.???"
+#: ../../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/text.php:1071
-msgid "bytes"
-msgstr "Bytes"
+#: ../../include/auth.php:69
+msgid "Logged out."
+msgstr "Ausgeloggt."
 
-#: ../../include/text.php:1106
-msgid "remove category"
-msgstr "Kategorie entfernen"
+#: ../../include/auth.php:181
+msgid "Failed authentication"
+msgstr "Authentifizierung fehlgeschlagen"
 
-#: ../../include/text.php:1128
-msgid "remove from file"
-msgstr "aus der Datei entfernen"
+#: ../../include/auth.php:190
+msgid "Login failed."
+msgstr "Login fehlgeschlagen."
 
-#: ../../include/text.php:1182 ../../include/text.php:1194
-msgid "Click to open/close"
-msgstr "Klicke zum Öffnen/Schließen"
+#: ../../include/contact_widgets.php:14
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d Einladung verfügbar"
+msgstr[1] "%d Einladungen verfügbar"
 
-#: ../../include/text.php:1370 ../../mod/events.php:332
-msgid "link to source"
-msgstr "Link zum Originalbeitrag"
+#: ../../include/contact_widgets.php:20
+msgid "Find Channels"
+msgstr "Finde Kanäle"
 
-#: ../../include/text.php:1389
-msgid "Select a page layout: "
-msgstr "Ein Seiten-Layout auswählen"
+#: ../../include/contact_widgets.php:21
+msgid "Enter name or interest"
+msgstr "Name oder Interessen eingeben"
 
-#: ../../include/text.php:1392 ../../include/text.php:1457
-msgid "default"
-msgstr "Standard"
+#: ../../include/contact_widgets.php:22
+msgid "Connect/Follow"
+msgstr "Verbinden/Folgen"
 
-#: ../../include/text.php:1428
-msgid "Page content type: "
-msgstr "Content-Typ der Seite"
+#: ../../include/contact_widgets.php:23
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Beispiele: Robert Morgenstein, Angeln"
 
-#: ../../include/text.php:1469
-msgid "Select an alternate language"
-msgstr "Wähle eine alternative Sprache"
+#: ../../include/contact_widgets.php:24 ../../mod/directory.php:205
+#: ../../mod/directory.php:210 ../../mod/connections.php:355
+msgid "Find"
+msgstr "Finde"
 
-#: ../../include/text.php:1634
-msgid "activity"
-msgstr "Aktivität"
+#: ../../include/contact_widgets.php:25 ../../mod/suggest.php:59
+msgid "Channel Suggestions"
+msgstr "Kanal-Vorschläge"
 
-#: ../../include/text.php:1896
-msgid "Design"
-msgstr "Design"
+#: ../../include/contact_widgets.php:27
+msgid "Random Profile"
+msgstr "Zufallsprofil"
 
-#: ../../include/text.php:1898
-msgid "Blocks"
-msgstr "Blöcke"
+#: ../../include/contact_widgets.php:28
+msgid "Invite Friends"
+msgstr "Lade Freunde ein"
 
-#: ../../include/text.php:1899
-msgid "Menus"
-msgstr "Menüs"
+#: ../../include/contact_widgets.php:120
+#, php-format
+msgid "%d connection in common"
+msgid_plural "%d connections in common"
+msgstr[0] "%d gemeinsame Verbindung"
+msgstr[1] "%d gemeinsame Verbindungen"
 
-#: ../../include/text.php:1900
-msgid "Layouts"
-msgstr "Layouts"
+#: ../../include/page_widgets.php:6
+msgid "New Page"
+msgstr "Neue Seite"
 
-#: ../../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: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:79
+#: ../../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/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:133
+#: ../../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,179 +517,75 @@ $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";
 $a->strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert.";
-$a->strings["An invitation is required."] = "Eine Einladung wird benötigt";
-$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden";
-$a->strings["Please enter the required information."] = "Bitte gib die benötigten Informationen ein.";
-$a->strings["Failed to store account information."] = "Speichern der Account-Informationen fehlgeschlagen";
-$a->strings["Registration request at %s"] = "Registrierungsanfrage auf %s";
-$a->strings["Administrator"] = "Administrator";
-$a->strings["your registration password"] = "dein Registrierungspasswort";
-$a->strings["Registration details for %s"] = "Registrierungsdetails für %s";
-$a->strings["Account approved."] = "Account bestätigt.";
-$a->strings["Registration revoked for %s"] = "Registrierung für %s widerrufen";
-$a->strings["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["An invitation is required."] = "Eine Einladung wird benötigt";
+$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden";
+$a->strings["Please enter the required information."] = "Bitte gib die benötigten Informationen ein.";
+$a->strings["Failed to store account information."] = "Speichern der Account-Informationen fehlgeschlagen";
+$a->strings["Registration request at %s"] = "Registrierungsanfrage auf %s";
+$a->strings["Administrator"] = "Administrator";
+$a->strings["your registration password"] = "dein Registrierungspasswort";
+$a->strings["Registration details for %s"] = "Registrierungsdetails für %s";
+$a->strings["Account approved."] = "Account bestätigt.";
+$a->strings["Registration revoked for %s"] = "Registrierung für %s widerrufen";
+$a->strings["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";
-- 
cgit v1.2.3


From ecb125a47d2ea3c8b307a403aaecca7f5647cd00 Mon Sep 17 00:00:00 2001
From: pixelroot <info@pixelbits.de>
Date: Mon, 13 Jan 2014 16:10:58 +0100
Subject: 	modified:   view/ru/messages.po

---
 view/ru/messages.po | 8369 +++++++++++++++++++++++++++------------------------
 1 file changed, 4401 insertions(+), 3968 deletions(-)

(limited to 'view')

diff --git a/view/ru/messages.po b/view/ru/messages.po
index d4ee432e3..24dcb2a53 100644
--- a/view/ru/messages.po
+++ b/view/ru/messages.po
@@ -3,13 +3,13 @@
 # This file is distributed under the same license as the Red package.
 # 
 # Translators:
-# alexej <info@pixelbits.de>, 2013
+# alexej <info@pixelbits.de>, 2013-2014
 msgid ""
 msgstr ""
 "Project-Id-Version: Red Matrix\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-09-13 00:01-0700\n"
-"PO-Revision-Date: 2013-09-16 06:41+0000\n"
+"POT-Creation-Date: 2014-01-10 00:02-0800\n"
+"PO-Revision-Date: 2014-01-13 15:03+0000\n"
 "Last-Translator: alexej <info@pixelbits.de>\n"
 "Language-Team: Russian (http://www.transifex.com/projects/p/red-matrix/language/ru/)\n"
 "MIME-Version: 1.0\n"
@@ -30,302 +30,471 @@ msgstr "показывать"
 msgid "don't show"
 msgstr "не показывать"
 
-#: ../../include/activities.php:37
+#: ../../include/activities.php:39
 msgid " and "
 msgstr "и"
 
-#: ../../include/activities.php:45
+#: ../../include/activities.php:47
 msgid "public profile"
 msgstr "Публичный профиль"
 
-#: ../../include/activities.php:50
+#: ../../include/activities.php:52
 #, php-format
 msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
 msgstr "%1$s изменил %2$s на &ldquo;%3$s&rdquo;"
 
-#: ../../include/activities.php:51
+#: ../../include/activities.php:53
 #, php-format
 msgid "Visit %1$s's %2$s"
 msgstr "Посетить %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 ""
 
-#: ../../include/api.php:968
+#: ../../include/api.php:973
 msgid "Public Timeline"
 msgstr "Публичная шкала времени"
 
-#: ../../include/enotify.php:36
-msgid "Red Matrix Notification"
-msgstr "Оповещения Red матрицы"
+#: ../../include/nav.php:72 ../../include/nav.php:87 ../../boot.php:1415
+msgid "Logout"
+msgstr "Выход"
 
-#: ../../include/enotify.php:39
-msgid "Thank You,"
-msgstr "Спасибо,"
+#: ../../include/nav.php:72 ../../include/nav.php:87
+msgid "End this session"
+msgstr "Закончить эту сессию"
 
-#: ../../include/enotify.php:41
-#, php-format
-msgid "%s Administrator"
-msgstr "%s администратор"
+#: ../../include/nav.php:75 ../../include/nav.php:121
+msgid "Home"
+msgstr "Мой канал"
 
-#: ../../include/enotify.php:75
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: ../../include/nav.php:75
+msgid "Your posts and conversations"
+msgstr "Ваши сообщения и разговоры"
 
-#: ../../include/enotify.php:79
-#, php-format
-msgid "[Red:Notify] New mail received at %s"
-msgstr "[Red:Уведомление] Получено новое сообщение в %s"
+#: ../../include/nav.php:76 ../../include/conversation.php:932
+#: ../../mod/connedit.php:309 ../../mod/connedit.php:423
+msgid "View Profile"
+msgstr "Просмотр профиля"
 
-#: ../../include/enotify.php:81
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s отправил вам новое личное сообщение в %2$s."
+#: ../../include/nav.php:76
+msgid "Your profile page"
+msgstr "Страницa вашего профиля"
 
-#: ../../include/enotify.php:82
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s послал вам %2$s."
+#: ../../include/nav.php:78
+msgid "Edit Profiles"
+msgstr "Редактирование профилей"
 
-#: ../../include/enotify.php:82
-msgid "a private message"
-msgstr "личное сообщение"
+#: ../../include/nav.php:78
+msgid "Manage/Edit Profiles"
+msgstr "Управление / Редактирование профилей"
 
-#: ../../include/enotify.php:83
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Пожалуйста, посетите %s для просмотра и/или ответа на ваши личные сообщения."
+#: ../../include/nav.php:79 ../../include/conversation.php:1462
+#: ../../mod/fbrowser.php:25
+msgid "Photos"
+msgstr "Фотографии"
 
-#: ../../include/enotify.php:129
-#, php-format
-msgid "%1$s commented on [zrl=%2$s]a %3$s[/zrl]"
-msgstr "%1$s прокомментировал на [zrl=%2$s]a %3$s[/zrl]"
+#: ../../include/nav.php:79
+msgid "Your photos"
+msgstr "Ваши фотографии"
 
-#: ../../include/enotify.php:136
-#, php-format
-msgid "%1$s commented on [zrl=%2$s]%3$s's %4$s[/zrl]"
-msgstr "%1$s прокомментировал на [zrl=%2$s]%3$s's %4$s[/zrl]"
+#: ../../include/nav.php:85 ../../boot.php:1416
+msgid "Login"
+msgstr "Войти"
 
-#: ../../include/enotify.php:144
-#, php-format
-msgid "%1$s commented on [zrl=%2$s]your %3$s[/zrl]"
-msgstr "%1$s прокомментировал на [zrl=%2$s]your %3$s[/zrl]"
+#: ../../include/nav.php:85
+msgid "Sign in"
+msgstr "Войти"
 
-#: ../../include/enotify.php:154
+#: ../../include/nav.php:102
 #, php-format
-msgid "[Red:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Red:Уведомление] Комментарий к разговору #%1$d по %2$s"
+msgid "%s - click to logout"
+msgstr "%s - нажмите чтобы выйти"
 
-#: ../../include/enotify.php:155
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
+#: ../../include/nav.php:107
+msgid "Click to authenticate to your home hub"
 msgstr ""
 
-#: ../../include/enotify.php:158 ../../include/enotify.php:175
-#: ../../include/enotify.php:201 ../../include/enotify.php:219
-#: ../../include/enotify.php:232
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Пожалуйста, посетите %s для просмотра и/или ответа разговора."
-
-#: ../../include/enotify.php:165
-#, php-format
-msgid "[Red:Notify] %s posted to your profile wall"
-msgstr "[Red:Уведомление] %s добавил сообщениe на стену вашего профиля"
-
-#: ../../include/enotify.php:167
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s добавил сообщениe на стену вашего профиля в %2$s"
+#: ../../include/nav.php:121
+msgid "Home Page"
+msgstr "Моя страница"
 
-#: ../../include/enotify.php:169
-#, php-format
-msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]"
-msgstr "%1$s добавил сообщениe на [zrl=%2$s]стену вашего профиля[/zrl]"
+#: ../../include/nav.php:125 ../../mod/register.php:206 ../../boot.php:1392
+msgid "Register"
+msgstr "Регистрация"
 
-#: ../../include/enotify.php:195
-#, php-format
-msgid "[Red:Notify] %s tagged you"
-msgstr "[Red:Уведомление] %s добавил у вас тег"
+#: ../../include/nav.php:125
+msgid "Create an account"
+msgstr "Создать аккаунт"
 
-#: ../../include/enotify.php:196
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s добавил у вас тег в %2$s"
+#: ../../include/nav.php:130 ../../mod/help.php:60 ../../mod/help.php:64
+msgid "Help"
+msgstr "Помощь"
 
-#: ../../include/enotify.php:197
-#, php-format
-msgid "%1$s [zrl=%2$s]tagged you[/zrl]."
-msgstr "%1$s [zrl=%2$s]добавил у вас тег[/zrl]."
+#: ../../include/nav.php:130
+msgid "Help and documentation"
+msgstr "Справочная информация и документация"
 
-#: ../../include/enotify.php:209
-#, php-format
-msgid "[Red:Notify] %1$s poked you"
-msgstr "[Red:Уведомление] %1$s подпихнул вас"
+#: ../../include/nav.php:133
+msgid "Apps"
+msgstr "Приложения"
 
-#: ../../include/enotify.php:210
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s подпихнул вас в %2$s"
+#: ../../include/nav.php:133
+msgid "Addon applications, utilities, games"
+msgstr ""
 
-#: ../../include/enotify.php:211
-#, php-format
-msgid "%1$s [zrl=%2$s]poked you[/zrl]."
-msgstr "%1$s [zrl=%2$s]подпихнул вас[/zrl]."
+#: ../../include/nav.php:135 ../../include/text.php:736
+#: ../../include/text.php:750 ../../mod/search.php:28
+msgid "Search"
+msgstr "Поиск"
 
-#: ../../include/enotify.php:226
-#, php-format
-msgid "[Red:Notify] %s tagged your post"
-msgstr "[Red:Уведомление] %s добавил у вас в сообщении тег"
+#: ../../include/nav.php:135
+msgid "Search site content"
+msgstr "Поиск по содержанию сайту"
 
-#: ../../include/enotify.php:227
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s добавил у вас в сообщении тег %2$s"
+#: ../../include/nav.php:138 ../../mod/directory.php:209
+msgid "Directory"
+msgstr "Каталог"
 
-#: ../../include/enotify.php:228
-#, php-format
-msgid "%1$s tagged [zrl=%2$s]your post[/zrl]"
-msgstr "%1$s добавил тег [zrl=%2$s] у вас в сообщении[/zrl]"
+#: ../../include/nav.php:138
+msgid "Channel Locator"
+msgstr "Локатор каналов"
 
-#: ../../include/enotify.php:239
-msgid "[Red:Notify] Introduction received"
-msgstr "[Red:Уведомление] введение получено"
+#: ../../include/nav.php:149
+msgid "Matrix"
+msgstr "Матрица"
 
-#: ../../include/enotify.php:240
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Вы получили введение от '%1$s' at %2$s"
+#: ../../include/nav.php:149
+msgid "Your matrix"
+msgstr "Собственная матрица"
 
-#: ../../include/enotify.php:241
-#, php-format
-msgid "You've received [zrl=%1$s]an introduction[/zrl] from %2$s."
-msgstr "Вы получили [zrl=%1$s]введение[/zrl] от %2$s."
+#: ../../include/nav.php:150
+msgid "Mark all matrix notifications seen"
+msgstr "Пометить все оповещения матрицы как прочитанное"
 
-#: ../../include/enotify.php:244 ../../include/enotify.php:262
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Вы можете посетить ​​профиль в %s"
+#: ../../include/nav.php:152
+msgid "Channel Home"
+msgstr ""
 
-#: ../../include/enotify.php:246
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
+#: ../../include/nav.php:152
+msgid "Channel home"
 msgstr ""
 
-#: ../../include/enotify.php:253
-msgid "[Red:Notify] Friend suggestion received"
-msgstr "[Red:Уведомление] Получено предложение дружить"
+#: ../../include/nav.php:153
+msgid "Mark all channel notifications seen"
+msgstr "Пометить все оповещения канала как прочитанное"
 
-#: ../../include/enotify.php:254
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Вы получили предложение дружить с '%1$s' от %2$s"
+#: ../../include/nav.php:156
+msgid "Intros"
+msgstr "Контакты"
 
-#: ../../include/enotify.php:255
-#, php-format
-msgid ""
-"You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s."
-msgstr ""
+#: ../../include/nav.php:156 ../../mod/connections.php:242
+msgid "New Connections"
+msgstr "Новые контакты"
 
-#: ../../include/enotify.php:260
-msgid "Name:"
-msgstr "Имя:"
+#: ../../include/nav.php:159
+msgid "Notices"
+msgstr "Оповещения"
 
-#: ../../include/enotify.php:261
-msgid "Photo:"
-msgstr "Фото:"
+#: ../../include/nav.php:159
+msgid "Notifications"
+msgstr "Оповещения"
 
-#: ../../include/enotify.php:264
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr ""
+#: ../../include/nav.php:160
+msgid "See all notifications"
+msgstr "Просмотреть все оповещения"
 
-#: ../../include/comanche.php:33
-msgid "Default"
-msgstr ""
+#: ../../include/nav.php:161
+msgid "Mark all system notifications seen"
+msgstr "Пометить все оповещения как прочитанное"
 
-#: ../../include/Contact.php:87 ../../include/contact_widgets.php:23
-#: ../../mod/directory.php:163 ../../mod/match.php:58 ../../mod/suggest.php:56
-#: ../../boot.php:1696
-msgid "Connect"
-msgstr "Подключить"
+#: ../../include/nav.php:163
+msgid "Mail"
+msgstr "Переписка"
 
-#: ../../include/Contact.php:103
-msgid "New window"
-msgstr "Новое окно"
+#: ../../include/nav.php:163
+msgid "Private mail"
+msgstr "Ваша личная переписка"
 
-#: ../../include/Contact.php:104
-msgid "Open the selected location in a different window or browser tab"
-msgstr ""
+#: ../../include/nav.php:164
+msgid "See all private messages"
+msgstr "Просмотреть все личные сообщения"
 
-#: ../../include/Contact.php:462 ../../include/conversation.php:920
-msgid "Poke"
-msgstr "Подпихнуть"
+#: ../../include/nav.php:165
+msgid "Mark all private messages seen"
+msgstr "Пометить все личные сообщения как прочитанное"
 
-#: ../../include/Contact.php:463 ../../include/conversation.php:914
-msgid "View Status"
-msgstr "Просмотр состояния"
+#: ../../include/nav.php:166
+msgid "Inbox"
+msgstr "Входящие"
 
-#: ../../include/Contact.php:464 ../../include/nav.php:75
-#: ../../include/conversation.php:915 ../../mod/connections.php:304
-#: ../../mod/connections.php:411
-msgid "View Profile"
-msgstr "Просмотр профиля"
+#: ../../include/nav.php:167
+msgid "Outbox"
+msgstr "Исходящие"
 
-#: ../../include/Contact.php:465 ../../include/conversation.php:916
-msgid "View Photos"
-msgstr "Просмотр фотографий"
+#: ../../include/nav.php:168 ../../include/widgets.php:509
+msgid "New Message"
+msgstr "Новое личное сообщение"
 
-#: ../../include/Contact.php:466 ../../include/conversation.php:917
-msgid "Network Posts"
-msgstr "Сообщения сети"
+#: ../../include/nav.php:171 ../../include/conversation.php:1482
+#: ../../mod/events.php:354
+msgid "Events"
+msgstr "Мероприятия"
 
-#: ../../include/Contact.php:467 ../../include/conversation.php:918
-msgid "Edit Contact"
-msgstr "Редактировать контакт"
+#: ../../include/nav.php:171
+msgid "Event Calendar"
+msgstr "Календарь мероприятий"
 
-#: ../../include/Contact.php:468 ../../include/conversation.php:919
-msgid "Send PM"
-msgstr "Отправить личное сообщение"
+#: ../../include/nav.php:172
+msgid "See all events"
+msgstr "Показать все мероприятия"
 
-#: ../../include/contact_selectors.php:30
-msgid "Unknown | Not categorised"
-msgstr "Неизвестные | Без категории"
+#: ../../include/nav.php:173
+msgid "Mark all events seen"
+msgstr "Пометить все мероприятия как прочитанное"
 
-#: ../../include/contact_selectors.php:31
-msgid "Block immediately"
-msgstr "Немедленно заблокировать"
+#: ../../include/nav.php:175
+msgid "Channel Select"
+msgstr "Выбор канала"
 
-#: ../../include/contact_selectors.php:32
-msgid "Shady, spammer, self-marketer"
-msgstr ""
+#: ../../include/nav.php:175
+msgid "Manage Your Channels"
+msgstr "Управление каналов"
 
-#: ../../include/contact_selectors.php:33
-msgid "Known to me, but no opinion"
-msgstr ""
+#: ../../include/nav.php:177 ../../include/widgets.php:487
+#: ../../mod/admin.php:785 ../../mod/admin.php:990
+msgid "Settings"
+msgstr "Настройки"
 
-#: ../../include/contact_selectors.php:34
-msgid "OK, probably harmless"
-msgstr "OK, наверное безвредно"
+#: ../../include/nav.php:177
+msgid "Account/Channel Settings"
+msgstr "Настройки аккаунта/канала"
 
-#: ../../include/contact_selectors.php:35
-msgid "Reputable, has my trust"
-msgstr "Авторитетно, имеет мое доверие"
+#: ../../include/nav.php:179 ../../mod/connections.php:349
+msgid "Connections"
+msgstr "Контакты"
 
-#: ../../include/contact_selectors.php:54
-msgid "Frequently"
-msgstr "Часто"
+#: ../../include/nav.php:179
+msgid "Manage/Edit Friends and Connections"
+msgstr "Управление/Редактирование друзей и связей"
 
-#: ../../include/contact_selectors.php:55
-msgid "Hourly"
-msgstr "Ежечасно"
+#: ../../include/nav.php:186 ../../mod/admin.php:111
+msgid "Admin"
+msgstr "Администрация"
 
-#: ../../include/contact_selectors.php:56
-msgid "Twice daily"
-msgstr "Два раза в день"
+#: ../../include/nav.php:186
+msgid "Site Setup and Configuration"
+msgstr "Установка и конфигурация сайта"
+
+#: ../../include/nav.php:212
+msgid "Nothing new here"
+msgstr "Ничего нового здесь"
+
+#: ../../include/nav.php:217
+msgid "Please wait..."
+msgstr "Подождите пожалуйста ..."
+
+#: ../../include/reddav.php:940
+msgid "Edit File properties"
+msgstr ""
+
+#: ../../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 "Подключить"
+
+#: ../../include/Contact.php:120
+msgid "New window"
+msgstr "Новое окно"
+
+#: ../../include/Contact.php:121
+msgid "Open the selected location in a different window or browser tab"
+msgstr ""
+
+#: ../../include/widgets.php:29 ../../include/contact_widgets.php:87
+msgid "Categories"
+msgstr "Категории"
+
+#: ../../include/widgets.php:117 ../../mod/suggest.php:53
+msgid "Ignore/Hide"
+msgstr "Игнорировать / Скрыть"
+
+#: ../../include/widgets.php:123 ../../mod/connections.php:236
+msgid "Suggestions"
+msgstr "Рекомендации"
+
+#: ../../include/widgets.php:124
+msgid "See more..."
+msgstr "Просмотреть больше..."
+
+#: ../../include/widgets.php:146
+#, php-format
+msgid "You have %1$.0f of %2$.0f allowed connections."
+msgstr ""
+
+#: ../../include/widgets.php:152
+msgid "Add New Connection"
+msgstr "Добавить новый контакт"
+
+#: ../../include/widgets.php:153
+msgid "Enter the channel address"
+msgstr "Введите адрес канала"
+
+#: ../../include/widgets.php:154
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Пример: bob@example.com, http://example.com/barbara"
+
+#: ../../include/widgets.php:171
+msgid "Notes"
+msgstr "Заметки"
+
+#: ../../include/widgets.php:173 ../../include/text.php:738
+#: ../../include/text.php:752 ../../mod/filer.php:36
+msgid "Save"
+msgstr "Запомнить"
+
+#: ../../include/widgets.php:243
+msgid "Remove term"
+msgstr "Удалить термин"
+
+#: ../../include/widgets.php:252 ../../include/features.php:50
+msgid "Saved Searches"
+msgstr "Запомненные поиски"
+
+#: ../../include/widgets.php:253 ../../include/group.php:290
+msgid "add"
+msgstr "добавить"
+
+#: ../../include/widgets.php:283 ../../include/features.php:64
+#: ../../include/contact_widgets.php:53
+msgid "Saved Folders"
+msgstr "Запомненные папки"
+
+#: ../../include/widgets.php:286 ../../include/contact_widgets.php:56
+#: ../../include/contact_widgets.php:90
+msgid "Everything"
+msgstr "Все"
+
+#: ../../include/widgets.php:318 ../../include/items.php:3566
+msgid "Archives"
+msgstr "Архивы"
+
+#: ../../include/widgets.php:370
+msgid "Refresh"
+msgstr "Обновить"
+
+#: ../../include/widgets.php:371 ../../mod/connedit.php:386
+msgid "Me"
+msgstr "Я"
+
+#: ../../include/widgets.php:372 ../../mod/connedit.php:388
+msgid "Best Friends"
+msgstr "Лучшие друзья"
+
+#: ../../include/widgets.php:373 ../../include/profile_selectors.php:42
+#: ../../include/identity.php:310 ../../mod/connedit.php:389
+msgid "Friends"
+msgstr "Друзья"
+
+#: ../../include/widgets.php:374
+msgid "Co-workers"
+msgstr "Сотрудники"
+
+#: ../../include/widgets.php:375 ../../mod/connedit.php:390
+msgid "Former Friends"
+msgstr "Приятели"
+
+#: ../../include/widgets.php:376 ../../mod/connedit.php:391
+msgid "Acquaintances"
+msgstr "Знакомые"
+
+#: ../../include/widgets.php:377
+msgid "Everybody"
+msgstr "Все"
+
+#: ../../include/widgets.php:409
+msgid "Account settings"
+msgstr "Настройки аккаунта"
+
+#: ../../include/widgets.php:415
+msgid "Channel settings"
+msgstr "Настройки канала"
+
+#: ../../include/widgets.php:421
+msgid "Additional features"
+msgstr "Дополнительные функции"
+
+#: ../../include/widgets.php:427
+msgid "Feature settings"
+msgstr "Настройки компонентов"
+
+#: ../../include/widgets.php:433
+msgid "Display settings"
+msgstr "Настройки отображения"
+
+#: ../../include/widgets.php:439
+msgid "Connected apps"
+msgstr "Подключенные приложения"
+
+#: ../../include/widgets.php:445
+msgid "Export channel"
+msgstr "Экспорт канала"
+
+#: ../../include/widgets.php:457
+msgid "Automatic Permissions (Advanced)"
+msgstr "Автоматические разрешения (дополнительно)"
+
+#: ../../include/widgets.php:467
+msgid "Premium Channel Settings"
+msgstr ""
+
+#: ../../include/widgets.php:476 ../../include/features.php:41
+#: ../../mod/sources.php:81
+msgid "Channel Sources"
+msgstr ""
+
+#: ../../include/widgets.php:504
+msgid "Check Mail"
+msgstr "Проверить снова"
+
+#: ../../include/contact_selectors.php:30
+msgid "Unknown | Not categorised"
+msgstr "Неизвестные | Без категории"
+
+#: ../../include/contact_selectors.php:31
+msgid "Block immediately"
+msgstr "Немедленно заблокировать"
+
+#: ../../include/contact_selectors.php:32
+msgid "Shady, spammer, self-marketer"
+msgstr ""
+
+#: ../../include/contact_selectors.php:33
+msgid "Known to me, but no opinion"
+msgstr ""
+
+#: ../../include/contact_selectors.php:34
+msgid "OK, probably harmless"
+msgstr "OK, наверное безвредно"
+
+#: ../../include/contact_selectors.php:35
+msgid "Reputable, has my trust"
+msgstr "Авторитетно, имеет мое доверие"
+
+#: ../../include/contact_selectors.php:54
+msgid "Frequently"
+msgstr "Часто"
+
+#: ../../include/contact_selectors.php:55
+msgid "Hourly"
+msgstr "Ежечасно"
+
+#: ../../include/contact_selectors.php:56
+msgid "Twice daily"
+msgstr "Два раза в день"
 
 #: ../../include/contact_selectors.php:57
 msgid "Daily"
@@ -351,8 +520,8 @@ msgstr "OStatus"
 msgid "RSS/Atom"
 msgstr "RSS/Atom"
 
-#: ../../include/contact_selectors.php:77 ../../mod/admin.php:636
-#: ../../mod/admin.php:645 ../../boot.php:1431
+#: ../../include/contact_selectors.php:77 ../../mod/admin.php:689
+#: ../../mod/admin.php:698 ../../boot.php:1418
 msgid "Email"
 msgstr "E-mail"
 
@@ -470,206 +639,340 @@ msgstr "Начало:"
 msgid "Finishes:"
 msgstr "\t\nКонец:"
 
-#: ../../include/event.php:40 ../../include/bb2diaspora.php:455
-#: ../../mod/events.php:450 ../../mod/directory.php:138 ../../boot.php:1746
+#: ../../include/event.php:40 ../../include/identity.php:676
+#: ../../include/bb2diaspora.php:455 ../../mod/events.php:463
+#: ../../mod/directory.php:156 ../../mod/dirprofile.php:108
 msgid "Location:"
 msgstr "Откуда:"
 
-#: ../../include/features.php:21
-msgid "General Features"
-msgstr "Главные функции"
+#: ../../include/text.php:315
+msgid "prev"
+msgstr "предыдущий"
 
-#: ../../include/features.php:24
-msgid "Multiple Profiles"
-msgstr "Несколько профилей"
+#: ../../include/text.php:317
+msgid "first"
+msgstr "первый"
 
-#: ../../include/features.php:24
-msgid "Ability to create multiple profiles"
-msgstr "Возможность создания нескольких профилей"
+#: ../../include/text.php:346
+msgid "last"
+msgstr "последний"
 
-#: ../../include/features.php:25
-msgid "Web Pages"
-msgstr "Веб-страницы"
+#: ../../include/text.php:349
+msgid "next"
+msgstr "следующий"
 
-#: ../../include/features.php:25
-msgid "Provide managed web pages on your channel"
-msgstr ""
+#: ../../include/text.php:361
+msgid "older"
+msgstr "старший"
 
-#: ../../include/features.php:26
-msgid "Enhanced Photo Albums"
-msgstr "Расширенные фотоальбомы"
+#: ../../include/text.php:363
+msgid "newer"
+msgstr "новее"
 
-#: ../../include/features.php:26
-msgid "Enable photo album with enhanced features"
-msgstr "Включить фотоальбом с расширенными функциями"
+#: ../../include/text.php:654
+msgid "No connections"
+msgstr "Нет каналов"
 
-#: ../../include/features.php:28
-msgid "Extended Identity Sharing"
-msgstr "Расширенный обмен идентичности"
+#: ../../include/text.php:665
+#, php-format
+msgid "%d Connection"
+msgid_plural "%d Connections"
+msgstr[0] "%d канал"
+msgstr[1] "%d канала"
+msgstr[2] "%d каналов"
 
-#: ../../include/features.php:28 ../../include/js_strings.php:28
-msgid " "
-msgstr " "
+#: ../../include/text.php:677
+msgid "View Connections"
+msgstr "Просмотр контактов"
 
-#: ../../include/features.php:29
-msgid "Expert Mode"
-msgstr "Экспертный режим"
+#: ../../include/text.php:818
+msgid "poke"
+msgstr "подпихнуть"
 
-#: ../../include/features.php:29
-msgid "Enable Expert Mode to provide advanced configuration options"
+#: ../../include/text.php:818 ../../include/conversation.php:240
+msgid "poked"
+msgstr "подпихнул"
+
+#: ../../include/text.php:819
+msgid "ping"
 msgstr ""
 
-#: ../../include/features.php:30
-msgid "Premium Channel"
+#: ../../include/text.php:819
+msgid "pinged"
 msgstr ""
 
-#: ../../include/features.php:30
-msgid ""
-"Allows you to set restrictions and terms on those that connect with your "
-"channel"
+#: ../../include/text.php:820
+msgid "prod"
 msgstr ""
 
-#: ../../include/features.php:35
-msgid "Post Composition Features"
+#: ../../include/text.php:820
+msgid "prodded"
 msgstr ""
 
-#: ../../include/features.php:36
-msgid "Richtext Editor"
-msgstr "Редактор RichText"
+#: ../../include/text.php:821
+msgid "slap"
+msgstr ""
 
-#: ../../include/features.php:36
-msgid "Enable richtext editor"
-msgstr "Включить редактор RichText"
+#: ../../include/text.php:821
+msgid "slapped"
+msgstr ""
 
-#: ../../include/features.php:37
-msgid "Post Preview"
-msgstr "Предварительный просмотр сообщения"
+#: ../../include/text.php:822
+msgid "finger"
+msgstr ""
 
-#: ../../include/features.php:37
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Разрешить предварительный просмотр сообщений и комментариев перед их публикацией"
+#: ../../include/text.php:822
+msgid "fingered"
+msgstr ""
 
-#: ../../include/features.php:42
-msgid "Network and Stream Filtering"
-msgstr "Фильтрация сети и потока"
+#: ../../include/text.php:823
+msgid "rebuff"
+msgstr ""
 
-#: ../../include/features.php:43
-msgid "Search by Date"
-msgstr "Поиск по дате"
+#: ../../include/text.php:823
+msgid "rebuffed"
+msgstr ""
 
-#: ../../include/features.php:43
-msgid "Ability to select posts by date ranges"
-msgstr "Возможность выбора сообщений по датам"
+#: ../../include/text.php:835
+msgid "happy"
+msgstr "счастливый"
 
-#: ../../include/features.php:44
-msgid "Collections Filter"
-msgstr "Фильтр коллекций"
+#: ../../include/text.php:836
+msgid "sad"
+msgstr ""
 
-#: ../../include/features.php:44
-msgid "Enable widget to display Network posts only from selected collections"
+#: ../../include/text.php:837
+msgid "mellow"
 msgstr ""
 
-#: ../../include/features.php:45 ../../mod/network.php:150
-#: ../../mod/search.php:17
-msgid "Saved Searches"
-msgstr "Запомненные поиски"
+#: ../../include/text.php:838
+msgid "tired"
+msgstr ""
 
-#: ../../include/features.php:45
-msgid "Save search terms for re-use"
-msgstr "Сохранять результаты поиска для повторного использования"
+#: ../../include/text.php:839
+msgid "perky"
+msgstr ""
 
-#: ../../include/features.php:46
-msgid "Network Personal Tab"
+#: ../../include/text.php:840
+msgid "angry"
+msgstr "сердитый"
+
+#: ../../include/text.php:841
+msgid "stupified"
 msgstr ""
 
-#: ../../include/features.php:46
-msgid "Enable tab to display only Network posts that you've interacted on"
+#: ../../include/text.php:842
+msgid "puzzled"
 msgstr ""
 
-#: ../../include/features.php:47
-msgid "Network New Tab"
+#: ../../include/text.php:843
+msgid "interested"
 msgstr ""
 
-#: ../../include/features.php:47
-msgid "Enable tab to display all new Network activity"
+#: ../../include/text.php:844
+msgid "bitter"
+msgstr "озлобленный"
+
+#: ../../include/text.php:845
+msgid "cheerful"
 msgstr ""
 
-#: ../../include/features.php:48
-msgid "Affinity Tool"
+#: ../../include/text.php:846
+msgid "alive"
 msgstr ""
 
-#: ../../include/features.php:48
-msgid "Filter stream activity by depth of relationships"
+#: ../../include/text.php:847
+msgid "annoyed"
 msgstr ""
 
-#: ../../include/features.php:53
-msgid "Post/Comment Tools"
-msgstr "Инструменты сообщений/комментарий "
+#: ../../include/text.php:848
+msgid "anxious"
+msgstr ""
 
-#: ../../include/features.php:54
-msgid "Multiple Deletion"
-msgstr "Множественное удаление"
+#: ../../include/text.php:849
+msgid "cranky"
+msgstr "капризный"
 
-#: ../../include/features.php:54
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Выбор и удаление нескольких сообщений/комментариев сразу"
+#: ../../include/text.php:850
+msgid "disturbed"
+msgstr "встревоженный"
 
-#: ../../include/features.php:55
-msgid "Edit Sent Posts"
-msgstr "Редактировать отправленные сообщения"
+#: ../../include/text.php:851
+msgid "frustrated"
+msgstr "разочарованный"
 
-#: ../../include/features.php:55
-msgid "Edit and correct posts and comments after sending"
-msgstr "Редактировать и исправлять сообщения и комментарии после отправки"
+#: ../../include/text.php:852
+msgid "motivated"
+msgstr "мотивированный"
 
-#: ../../include/features.php:56
-msgid "Tagging"
-msgstr "Пометка"
+#: ../../include/text.php:853
+msgid "relaxed"
+msgstr "расслабленный"
 
-#: ../../include/features.php:56
-msgid "Ability to tag existing posts"
+#: ../../include/text.php:854
+msgid "surprised"
+msgstr "удивленный"
+
+#: ../../include/text.php:1016
+msgid "Monday"
+msgstr "Понедельник"
+
+#: ../../include/text.php:1016
+msgid "Tuesday"
+msgstr "Вторник"
+
+#: ../../include/text.php:1016
+msgid "Wednesday"
+msgstr "Среда"
+
+#: ../../include/text.php:1016
+msgid "Thursday"
+msgstr "Четверг"
+
+#: ../../include/text.php:1016
+msgid "Friday"
+msgstr "Пятница"
+
+#: ../../include/text.php:1016
+msgid "Saturday"
+msgstr "Суббота"
+
+#: ../../include/text.php:1016
+msgid "Sunday"
+msgstr "Воскресенье"
+
+#: ../../include/text.php:1020
+msgid "January"
+msgstr "Январь"
+
+#: ../../include/text.php:1020
+msgid "February"
+msgstr "Февраль"
+
+#: ../../include/text.php:1020
+msgid "March"
+msgstr "Март"
+
+#: ../../include/text.php:1020
+msgid "April"
+msgstr "Апрель"
+
+#: ../../include/text.php:1020
+msgid "May"
+msgstr "Май"
+
+#: ../../include/text.php:1020
+msgid "June"
+msgstr "Июнь"
+
+#: ../../include/text.php:1020
+msgid "July"
+msgstr "Июль"
+
+#: ../../include/text.php:1020
+msgid "August"
+msgstr "Август"
+
+#: ../../include/text.php:1020
+msgid "September"
+msgstr "Сентябрь"
+
+#: ../../include/text.php:1020
+msgid "October"
+msgstr "Октябрь"
+
+#: ../../include/text.php:1020
+msgid "November"
+msgstr "Ноябрь"
+
+#: ../../include/text.php:1020
+msgid "December"
+msgstr "Декабрь"
+
+#: ../../include/text.php:1098
+msgid "unknown.???"
+msgstr "неизвестный.???"
+
+#: ../../include/text.php:1099
+msgid "bytes"
+msgstr "байт"
+
+#: ../../include/text.php:1134
+msgid "remove category"
 msgstr ""
 
-#: ../../include/features.php:57
-msgid "Post Categories"
-msgstr "Категории сообщения"
+#: ../../include/text.php:1156
+msgid "remove from file"
+msgstr ""
 
-#: ../../include/features.php:57
-msgid "Add categories to your posts"
-msgstr "Добавить категории для ваших сообщений"
+#: ../../include/text.php:1214 ../../include/text.php:1226
+msgid "Click to open/close"
+msgstr "Нажмите, чтобы открыть/закрыть"
 
-#: ../../include/features.php:58 ../../include/contact_widgets.php:76
-msgid "Saved Folders"
-msgstr "Запомненные папки"
+#: ../../include/text.php:1402 ../../mod/events.php:332
+msgid "link to source"
+msgstr "ссылка на источник"
 
-#: ../../include/features.php:58
-msgid "Ability to file posts under folders"
+#: ../../include/text.php:1421
+msgid "Select a page layout: "
 msgstr ""
 
-#: ../../include/features.php:59
-msgid "Dislike Posts"
-msgstr "Сообщение не нравится"
+#: ../../include/text.php:1424 ../../include/text.php:1489
+msgid "default"
+msgstr "по умолчанию"
 
-#: ../../include/features.php:59
-msgid "Ability to dislike posts/comments"
+#: ../../include/text.php:1460
+msgid "Page content type: "
 msgstr ""
 
-#: ../../include/features.php:60
-msgid "Star Posts"
-msgstr "Помечать сообщения"
+#: ../../include/text.php:1501
+msgid "Select an alternate language"
+msgstr "Выбор альтернативного языка"
 
-#: ../../include/features.php:60
-msgid "Ability to mark special posts with a star indicator"
+#: ../../include/text.php:1653 ../../include/conversation.php:117
+#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:45
+msgid "photo"
+msgstr "фото"
+
+#: ../../include/text.php:1656 ../../include/conversation.php:120
+#: ../../mod/tagger.php:49
+msgid "event"
+msgstr "мероприятие"
+
+#: ../../include/text.php:1659 ../../include/conversation.php:145
+#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:53
+msgid "status"
+msgstr "статус"
+
+#: ../../include/text.php:1661 ../../include/conversation.php:147
+#: ../../mod/tagger.php:55
+msgid "comment"
+msgstr "комментарий"
+
+#: ../../include/text.php:1666
+msgid "activity"
+msgstr "активность"
+
+#: ../../include/text.php:1928
+msgid "Design"
+msgstr "Дизайн"
+
+#: ../../include/text.php:1930
+msgid "Blocks"
 msgstr ""
 
-#: ../../include/features.php:61
-msgid "Tag Cloud"
-msgstr "Облако тегов"
+#: ../../include/text.php:1931
+msgid "Menus"
+msgstr ""
 
-#: ../../include/features.php:61
-msgid "Provide a personal tag cloud on your channel page"
+#: ../../include/text.php:1932
+msgid "Layouts"
 msgstr ""
 
+#: ../../include/text.php:1933
+msgid "Pages"
+msgstr "Страницы"
+
 #: ../../include/group.php:25
 msgid ""
 "A deleted group with this name was revived. Existing item permissions "
@@ -681,11 +984,11 @@ msgstr ""
 msgid "Default privacy group for new contacts"
 msgstr ""
 
-#: ../../include/group.php:242
+#: ../../include/group.php:242 ../../mod/admin.php:698
 msgid "All Channels"
 msgstr "Все каналы"
 
-#: ../../include/group.php:264 ../../include/page_widgets.php:8
+#: ../../include/group.php:264
 msgid "edit"
 msgstr "редактировать"
 
@@ -705,21 +1008,17 @@ msgstr "Создать новую коллекцию"
 msgid "Channels not in any collection"
 msgstr "Контакты не в какой коллекции"
 
-#: ../../include/group.php:290 ../../mod/network.php:151
-msgid "add"
-msgstr "добавить"
-
 #: ../../include/js_strings.php:5
 msgid "Delete this item?"
 msgstr "Удалить этот элемент?"
 
-#: ../../include/js_strings.php:6 ../../include/ItemObject.php:504
-#: ../../mod/photos.php:1075 ../../mod/photos.php:1159
+#: ../../include/js_strings.php:6 ../../include/ItemObject.php:536
+#: ../../mod/photos.php:1099 ../../mod/photos.php:1186
 msgid "Comment"
 msgstr "Комментарий"
 
-#: ../../include/js_strings.php:7 ../../include/contact_widgets.php:148
-#: ../../include/ItemObject.php:255
+#: ../../include/js_strings.php:7 ../../include/contact_widgets.php:125
+#: ../../include/ItemObject.php:270
 msgid "show more"
 msgstr "показать все"
 
@@ -735,76 +1034,88 @@ msgstr "Пароль слишком короткий"
 msgid "Passwords do not match"
 msgstr "Пароли не совпадают"
 
-#: ../../include/js_strings.php:11 ../../mod/photos.php:45
+#: ../../include/js_strings.php:11 ../../mod/photos.php:39
 msgid "everybody"
 msgstr "все"
 
+#: ../../include/js_strings.php:12
+msgid "Secret Passphrase"
+msgstr ""
+
 #: ../../include/js_strings.php:13
+msgid "Passphrase hint"
+msgstr ""
+
+#: ../../include/js_strings.php:15
 msgid "timeago.prefixAgo"
 msgstr "timeago.prefixAgo"
 
-#: ../../include/js_strings.php:14
+#: ../../include/js_strings.php:16
 msgid "timeago.suffixAgo"
 msgstr "timeago.suffixAgo"
 
-#: ../../include/js_strings.php:15
+#: ../../include/js_strings.php:17
 msgid "ago"
 msgstr "тому назад"
 
-#: ../../include/js_strings.php:16
+#: ../../include/js_strings.php:18
 msgid "from now"
 msgstr "с этого времени"
 
-#: ../../include/js_strings.php:17
+#: ../../include/js_strings.php:19
 msgid "less than a minute"
 msgstr "менее чем одну минуту назад"
 
-#: ../../include/js_strings.php:18
+#: ../../include/js_strings.php:20
 msgid "about a minute"
 msgstr "около минуты"
 
-#: ../../include/js_strings.php:19
+#: ../../include/js_strings.php:21
 #, php-format
 msgid "%d minutes"
 msgstr "%d мин."
 
-#: ../../include/js_strings.php:20
+#: ../../include/js_strings.php:22
 msgid "about an hour"
 msgstr "около часа"
 
-#: ../../include/js_strings.php:21
+#: ../../include/js_strings.php:23
 #, php-format
 msgid "about %d hours"
 msgstr "около %d час."
 
-#: ../../include/js_strings.php:22
+#: ../../include/js_strings.php:24
 msgid "a day"
 msgstr "день"
 
-#: ../../include/js_strings.php:23
+#: ../../include/js_strings.php:25
 #, php-format
 msgid "%d days"
 msgstr "%d дней"
 
-#: ../../include/js_strings.php:24
+#: ../../include/js_strings.php:26
 msgid "about a month"
 msgstr "около месяца"
 
-#: ../../include/js_strings.php:25
+#: ../../include/js_strings.php:27
 #, php-format
 msgid "%d months"
 msgstr "%d мес."
 
-#: ../../include/js_strings.php:26
+#: ../../include/js_strings.php:28
 msgid "about a year"
 msgstr "около года"
 
-#: ../../include/js_strings.php:27
+#: ../../include/js_strings.php:29
 #, php-format
 msgid "%d years"
 msgstr "%d лет"
 
-#: ../../include/js_strings.php:29
+#: ../../include/js_strings.php:30
+msgid " "
+msgstr " "
+
+#: ../../include/js_strings.php:31
 msgid "timeago.numbers"
 msgstr "timeago.numbers"
 
@@ -816,407 +1127,702 @@ msgstr ""
 msgid "[no subject]"
 msgstr "[без темы]"
 
-#: ../../include/message.php:38
+#: ../../include/message.php:42
 msgid "Unable to determine sender."
 msgstr "Невозможно определить отправителя."
 
-#: ../../include/message.php:138
+#: ../../include/message.php:143
 msgid "Stored post could not be verified."
 msgstr ""
 
-#: ../../include/network.php:1113
+#: ../../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"
+msgstr "Фотографии профиля"
+
+#: ../../include/network.php:640
 msgid "view full size"
 msgstr "посмотреть в полный размер"
 
-#: ../../include/photo/photo_driver.php:609 ../../include/photos.php:51
-#: ../../mod/photos.php:97 ../../mod/photos.php:757 ../../mod/photos.php:779
-#: ../../mod/profile_photo.php:88 ../../mod/profile_photo.php:235
-#: ../../mod/profile_photo.php:346
-msgid "Profile Photos"
-msgstr "Фотографии профиля"
+#: ../../include/bbcode.php:94 ../../include/bbcode.php:509
+#: ../../include/bbcode.php:512
+msgid "Image/photo"
+msgstr "Изображение / фото"
 
-#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:118
-#: ../../mod/profperm.php:112
-msgid "Profile"
-msgstr "Профиль"
+#: ../../include/bbcode.php:129 ../../include/bbcode.php:517
+msgid "Encrypted content"
+msgstr "Зашифрованное содержание"
 
-#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1031
-msgid "Full Name:"
-msgstr "Полное имя:"
+#: ../../include/bbcode.php:136
+msgid "QR code"
+msgstr "QR код"
 
-#: ../../include/profile_advanced.php:17 ../../mod/directory.php:140
-#: ../../boot.php:1748
-msgid "Gender:"
-msgstr "Пол:"
+#: ../../include/bbcode.php:179
+#, php-format
+msgid "%1$s wrote the following %2$s %3$s"
+msgstr "%1$s написал следующее %2$s %3$s"
 
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "j F, Y"
+#: ../../include/bbcode.php:181
+msgid "post"
+msgstr "сообщение"
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "j F"
+#: ../../include/bbcode.php:469 ../../include/bbcode.php:489
+msgid "$1 wrote:"
+msgstr "$1 писал:"
 
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "День Рождения:"
+#: ../../include/oembed.php:150
+msgid "Embedded content"
+msgstr ""
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Возраст:"
+#: ../../include/oembed.php:159
+msgid "Embedding disabled"
+msgstr ""
 
-#: ../../include/profile_advanced.php:37 ../../mod/directory.php:142
-#: ../../boot.php:1749
-msgid "Status:"
-msgstr "Статус:"
+#: ../../include/features.php:21
+msgid "General Features"
+msgstr "Главные функции"
 
-#: ../../include/profile_advanced.php:43
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "для %1$d %2$s"
+#: ../../include/features.php:23
+msgid "Content Expiration"
+msgstr ""
 
-#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:549
-msgid "Sexual Preference:"
-msgstr "Сексуальная ориентация:"
+#: ../../include/features.php:23
+msgid "Remove posts/comments and/or private messages at a future time"
+msgstr ""
 
-#: ../../include/profile_advanced.php:48 ../../mod/directory.php:144
-#: ../../boot.php:1750
-msgid "Homepage:"
-msgstr "Домашняя страница:"
-
-#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:551
-msgid "Hometown:"
-msgstr "Родной город:"
+#: ../../include/features.php:24
+msgid "Multiple Profiles"
+msgstr "Несколько профилей"
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Тэги:"
+#: ../../include/features.php:24
+msgid "Ability to create multiple profiles"
+msgstr "Возможность создания нескольких профилей"
 
-#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:552
-msgid "Political Views:"
-msgstr "Политические взгляды:"
+#: ../../include/features.php:25
+msgid "Web Pages"
+msgstr "Веб-страницы"
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Религия:"
+#: ../../include/features.php:25
+msgid "Provide managed web pages on your channel"
+msgstr ""
 
-#: ../../include/profile_advanced.php:58 ../../mod/directory.php:146
-msgid "About:"
-msgstr "О себе:"
+#: ../../include/features.php:26
+msgid "Private Notes"
+msgstr "Личные заметки"
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Хобби / интересы:"
+#: ../../include/features.php:26
+msgid "Enables a tool to store notes and reminders"
+msgstr ""
 
-#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:555
-msgid "Likes:"
-msgstr "Что вам нравится:"
+#: ../../include/features.php:31
+msgid "Extended Identity Sharing"
+msgstr "Расширенный обмен идентичности"
 
-#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:556
-msgid "Dislikes:"
-msgstr "Что вам не нравится:"
+#: ../../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 ""
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Информация и социальные сети контакта:"
+#: ../../include/features.php:32
+msgid "Expert Mode"
+msgstr "Экспертный режим"
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Музыкальные интересы:"
+#: ../../include/features.php:32
+msgid "Enable Expert Mode to provide advanced configuration options"
+msgstr ""
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Книги, литература:"
+#: ../../include/features.php:33
+msgid "Premium Channel"
+msgstr ""
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Телевидение:"
+#: ../../include/features.php:33
+msgid ""
+"Allows you to set restrictions and terms on those that connect with your "
+"channel"
+msgstr ""
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Кино / танцы / культура / развлечения:"
+#: ../../include/features.php:38
+msgid "Post Composition Features"
+msgstr ""
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Любовь / Романс:"
+#: ../../include/features.php:39
+msgid "Richtext Editor"
+msgstr "Редактор RichText"
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Работа / Занятость:"
+#: ../../include/features.php:39
+msgid "Enable richtext editor"
+msgstr "Включить редактор RichText"
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "Школа / образование:"
+#: ../../include/features.php:40
+msgid "Post Preview"
+msgstr "Предварительный просмотр сообщения"
 
-#: ../../include/nav.php:71 ../../include/nav.php:86 ../../boot.php:1428
-msgid "Logout"
-msgstr "Выход"
+#: ../../include/features.php:40
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Разрешить предварительный просмотр сообщений и комментариев перед их публикацией"
 
-#: ../../include/nav.php:71 ../../include/nav.php:86
-msgid "End this session"
-msgstr "Закончить эту сессию"
+#: ../../include/features.php:41
+msgid "Automatically import channel content from other channels or feeds"
+msgstr ""
 
-#: ../../include/nav.php:74 ../../include/nav.php:116
-#: ../../include/nav.php:148
-msgid "Home"
-msgstr "Мой канал"
+#: ../../include/features.php:42
+msgid "Even More Encryption"
+msgstr ""
 
-#: ../../include/nav.php:74 ../../include/nav.php:148
-msgid "Your posts and conversations"
-msgstr "Ваши сообщения и разговоры"
+#: ../../include/features.php:42
+msgid ""
+"Allow optional encryption of content end-to-end with a shared secret key"
+msgstr ""
 
-#: ../../include/nav.php:75
-msgid "Your profile page"
-msgstr "Страницa вашего профиля"
+#: ../../include/features.php:47
+msgid "Network and Stream Filtering"
+msgstr "Фильтрация сети и потока"
 
-#: ../../include/nav.php:77
-msgid "Edit Profiles"
-msgstr "Редактирование профилей"
+#: ../../include/features.php:48
+msgid "Search by Date"
+msgstr "Поиск по дате"
 
-#: ../../include/nav.php:77
-msgid "Manage/Edit Profiles"
-msgstr "Управление / Редактирование профилей"
+#: ../../include/features.php:48
+msgid "Ability to select posts by date ranges"
+msgstr "Возможность выбора сообщений по датам"
 
-#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 ../../boot.php:2189
-msgid "Photos"
-msgstr "Фотографии"
+#: ../../include/features.php:49
+msgid "Collections Filter"
+msgstr "Фильтр коллекций"
 
-#: ../../include/nav.php:78
-msgid "Your photos"
-msgstr "Ваши фотографии"
+#: ../../include/features.php:49
+msgid "Enable widget to display Network posts only from selected collections"
+msgstr ""
 
-#: ../../include/nav.php:84 ../../boot.php:1429
-msgid "Login"
-msgstr "Войти"
+#: ../../include/features.php:50
+msgid "Save search terms for re-use"
+msgstr "Сохранять результаты поиска для повторного использования"
 
-#: ../../include/nav.php:84
-msgid "Sign in"
-msgstr "Войти"
+#: ../../include/features.php:51
+msgid "Network Personal Tab"
+msgstr ""
 
-#: ../../include/nav.php:100
-#, php-format
-msgid "%s - click to logout"
-msgstr "%s - нажмите чтобы выйти"
+#: ../../include/features.php:51
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr ""
 
-#: ../../include/nav.php:103
-msgid "Click to authenticate to your home hub"
+#: ../../include/features.php:52
+msgid "Network New Tab"
 msgstr ""
 
-#: ../../include/nav.php:116
-msgid "Home Page"
-msgstr "Моя страница"
+#: ../../include/features.php:52
+msgid "Enable tab to display all new Network activity"
+msgstr ""
 
-#: ../../include/nav.php:120 ../../mod/register.php:187 ../../boot.php:1404
-msgid "Register"
-msgstr "Регистрация"
+#: ../../include/features.php:53
+msgid "Affinity Tool"
+msgstr ""
 
-#: ../../include/nav.php:120
-msgid "Create an account"
-msgstr "Создать аккаунт"
+#: ../../include/features.php:53
+msgid "Filter stream activity by depth of relationships"
+msgstr ""
 
-#: ../../include/nav.php:125 ../../mod/help.php:34
-msgid "Help"
-msgstr "Помощь"
+#: ../../include/features.php:54
+msgid "Suggest Channels"
+msgstr ""
 
-#: ../../include/nav.php:125
-msgid "Help and documentation"
-msgstr "Справочная информация и документация"
+#: ../../include/features.php:54
+msgid "Show channel suggestions"
+msgstr ""
 
-#: ../../include/nav.php:128
-msgid "Apps"
-msgstr "Приложения"
+#: ../../include/features.php:59
+msgid "Post/Comment Tools"
+msgstr "Инструменты сообщений/комментарий "
 
-#: ../../include/nav.php:128
-msgid "Addon applications, utilities, games"
-msgstr ""
+#: ../../include/features.php:61
+msgid "Edit Sent Posts"
+msgstr "Редактировать отправленные сообщения"
 
-#: ../../include/nav.php:130 ../../include/text.php:729
-#: ../../include/text.php:730 ../../mod/search.php:96
-msgid "Search"
-msgstr "Поиск"
+#: ../../include/features.php:61
+msgid "Edit and correct posts and comments after sending"
+msgstr "Редактировать и исправлять сообщения и комментарии после отправки"
 
-#: ../../include/nav.php:130
-msgid "Search site content"
-msgstr "Поиск по содержанию сайту"
+#: ../../include/features.php:62
+msgid "Tagging"
+msgstr "Пометка"
 
-#: ../../include/nav.php:133 ../../mod/directory.php:186
-msgid "Directory"
-msgstr "Каталог"
+#: ../../include/features.php:62
+msgid "Ability to tag existing posts"
+msgstr ""
 
-#: ../../include/nav.php:133
-msgid "Channel Locator"
-msgstr "Локатор каналов"
+#: ../../include/features.php:63
+msgid "Post Categories"
+msgstr "Категории сообщения"
 
-#: ../../include/nav.php:144
-msgid "Matrix"
-msgstr "Матрица"
+#: ../../include/features.php:63
+msgid "Add categories to your posts"
+msgstr "Добавить категории для ваших сообщений"
 
-#: ../../include/nav.php:144
-msgid "Conversations from your grid"
+#: ../../include/features.php:64
+msgid "Ability to file posts under folders"
 msgstr ""
 
-#: ../../include/nav.php:145
-msgid "See all matrix notifications"
-msgstr "Просмотреть все оповещения матрицы"
+#: ../../include/features.php:65
+msgid "Dislike Posts"
+msgstr "Сообщение не нравится"
 
-#: ../../include/nav.php:146
-msgid "Mark all matrix notifications seen"
-msgstr "Пометить все оповещения матрицы как прочитанное"
+#: ../../include/features.php:65
+msgid "Ability to dislike posts/comments"
+msgstr ""
 
-#: ../../include/nav.php:149
-msgid "See all channel notifications"
-msgstr "Просмотреть все уведомления канала"
+#: ../../include/features.php:66
+msgid "Star Posts"
+msgstr "Помечать сообщения"
 
-#: ../../include/nav.php:150
-msgid "Mark all channel notifications seen"
-msgstr "Пометить все оповещения канала как прочитанное"
+#: ../../include/features.php:66
+msgid "Ability to mark special posts with a star indicator"
+msgstr ""
 
-#: ../../include/nav.php:153
-msgid "Intros"
-msgstr "Контакты"
+#: ../../include/features.php:67
+msgid "Tag Cloud"
+msgstr "Облако тегов"
 
-#: ../../include/nav.php:153 ../../mod/connections.php:554
-msgid "New Connections"
-msgstr "Новые контакты"
+#: ../../include/features.php:67
+msgid "Provide a personal tag cloud on your channel page"
+msgstr ""
 
-#: ../../include/nav.php:154
-msgid "See all channel introductions"
-msgstr "Просмотреть все введения канала"
+#: ../../include/conversation.php:123
+msgid "channel"
+msgstr "канал"
 
-#: ../../include/nav.php:157
-msgid "Notices"
-msgstr "Оповещения"
+#: ../../include/conversation.php:161 ../../mod/like.php:134
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s нравится %2$s's %3$s"
 
-#: ../../include/nav.php:157 ../../mod/notifications.php:218
-msgid "Notifications"
-msgstr "Оповещения"
+#: ../../include/conversation.php:164 ../../mod/like.php:136
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s не нравится %2$s's %3$s"
 
-#: ../../include/nav.php:158
-msgid "See all notifications"
-msgstr "Просмотреть все оповещения"
+#: ../../include/conversation.php:201
+#, php-format
+msgid "%1$s is now connected with %2$s"
+msgstr "%1$s теперь соединен с %2$s"
 
-#: ../../include/nav.php:159
-msgid "Mark all system notifications seen"
-msgstr "Пометить все оповещения как прочитанное"
+#: ../../include/conversation.php:236
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s подпихнул %2$s"
 
-#: ../../include/nav.php:161
-msgid "Mail"
-msgstr "Переписка"
+#: ../../include/conversation.php:258 ../../mod/mood.php:63
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s в настоящее время %2$s"
 
-#: ../../include/nav.php:161
-msgid "Private mail"
-msgstr "Ваша личная переписка"
+#: ../../include/conversation.php:631 ../../include/ItemObject.php:114
+msgid "Select"
+msgstr "Выбрать"
 
-#: ../../include/nav.php:162
-msgid "See all private messages"
-msgstr "Просмотреть все личные сообщения"
+#: ../../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 "Удалить"
 
-#: ../../include/nav.php:163
-msgid "Mark all private messages seen"
-msgstr "Пометить все личные сообщения как прочитанное"
+#: ../../include/conversation.php:642 ../../include/ItemObject.php:161
+msgid "Message is verified"
+msgstr ""
 
-#: ../../include/nav.php:164
-msgid "Inbox"
-msgstr "Входящие"
+#: ../../include/conversation.php:662
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Просмотр %s's профиля @ %s"
 
-#: ../../include/nav.php:165
-msgid "Outbox"
-msgstr "Исходящие"
+#: ../../include/conversation.php:676
+msgid "Categories:"
+msgstr "Категории:"
 
-#: ../../include/nav.php:166 ../../mod/message.php:21
-msgid "New Message"
-msgstr "Новое личное сообщение"
+#: ../../include/conversation.php:677
+msgid "Filed under:"
+msgstr "Хранить под:"
 
-#: ../../include/nav.php:169 ../../mod/events.php:348 ../../boot.php:2200
-msgid "Events"
-msgstr "Мероприятия"
+#: ../../include/conversation.php:686 ../../include/ItemObject.php:217
+#, php-format
+msgid " from %s"
+msgstr " от %s"
 
-#: ../../include/nav.php:169
-msgid "Event Calendar"
-msgstr "Календарь мероприятий"
+#: ../../include/conversation.php:689 ../../include/ItemObject.php:220
+#, php-format
+msgid "last edited: %s"
+msgstr ""
 
-#: ../../include/nav.php:170
-msgid "See all events"
-msgstr "Показать все мероприятия"
+#: ../../include/conversation.php:704
+msgid "View in context"
+msgstr "Показать в контексте"
 
-#: ../../include/nav.php:171
-msgid "Mark all events seen"
-msgstr "Пометить все мероприятия как прочитанное"
+#: ../../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 "Подождите пожалуйста"
 
-#: ../../include/nav.php:173
-msgid "Channel Select"
-msgstr "Выбор канала"
+#: ../../include/conversation.php:833
+msgid "remove"
+msgstr "удалить"
 
-#: ../../include/nav.php:173
-msgid "Manage Your Channels"
-msgstr "Управление каналов"
+#: ../../include/conversation.php:837
+msgid "Loading..."
+msgstr "Загрузка..."
 
-#: ../../include/nav.php:175 ../../mod/settings.php:120
-#: ../../mod/admin.php:728 ../../mod/admin.php:933
-msgid "Settings"
-msgstr "Настройки"
+#: ../../include/conversation.php:838
+msgid "Delete Selected Items"
+msgstr "Удалить выбранные элементы"
 
-#: ../../include/nav.php:175
-msgid "Account/Channel Settings"
-msgstr "Настройки аккаунта/канала"
+#: ../../include/conversation.php:929
+msgid "View Source"
+msgstr ""
 
-#: ../../include/nav.php:177 ../../mod/connections.php:660
-msgid "Connections"
-msgstr "Контакты"
+#: ../../include/conversation.php:930
+msgid "Follow Thread"
+msgstr "Следобать теме"
 
-#: ../../include/nav.php:177
-msgid "Manage/Edit Friends and Connections"
-msgstr "Управление/Редактирование друзей и связей"
+#: ../../include/conversation.php:931
+msgid "View Status"
+msgstr "Просмотр состояния"
 
-#: ../../include/nav.php:184 ../../mod/admin.php:106
-msgid "Admin"
-msgstr "Администрация"
+#: ../../include/conversation.php:933
+msgid "View Photos"
+msgstr "Просмотр фотографий"
 
-#: ../../include/nav.php:184
-msgid "Site Setup and Configuration"
-msgstr "Установка и конфигурация сайта"
+#: ../../include/conversation.php:934
+msgid "Matrix Activity"
+msgstr "Активность матрицы"
 
-#: ../../include/nav.php:207
-msgid "Nothing new here"
-msgstr "Ничего нового здесь"
+#: ../../include/conversation.php:935
+msgid "Edit Contact"
+msgstr "Редактировать контакт"
 
-#: ../../include/nav.php:212
-msgid "Please wait..."
-msgstr "Подождите пожалуйста ..."
+#: ../../include/conversation.php:936
+msgid "Send PM"
+msgstr "Отправить личное сообщение"
 
-#: ../../include/identity.php:14 ../../mod/item.php:1148
-msgid "Unable to obtain identity information from database"
-msgstr "Невозможно получить идентификационную информацию из базы данных"
+#: ../../include/conversation.php:937
+msgid "Poke"
+msgstr "Подпихнуть"
 
-#: ../../include/identity.php:36
-msgid "Empty name"
-msgstr "Пустое имя"
+#: ../../include/conversation.php:999
+#, php-format
+msgid "%s likes this."
+msgstr "%s нравится это."
 
-#: ../../include/identity.php:38
-msgid "Name too long"
-msgstr "Слишком длинное имя"
+#: ../../include/conversation.php:999
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s не нравится это."
 
-#: ../../include/identity.php:80
-msgid "No account identifier"
-msgstr "идентификатор аккаунта отсутствует"
+#: ../../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] ""
+msgstr[2] "<span  %1$s>%2$d чел.</span> нравится это."
 
-#: ../../include/identity.php:98
-msgid ""
-"Nickname has unsupported characters or is already being used on this site."
-msgstr "Псевдоним имеет недопустимые символы или уже используется на этом сайте."
+#: ../../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] ""
+msgstr[2] "<span  %1$s>%2$d чел.</span> не нравится это."
+
+#: ../../include/conversation.php:1011
+msgid "and"
+msgstr "и"
+
+#: ../../include/conversation.php:1014
+#, php-format
+msgid ", and %d other people"
+msgid_plural ", and %d other people"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ", и %d другие люди"
+
+#: ../../include/conversation.php:1015
+#, php-format
+msgid "%s like this."
+msgstr "%s нравится это."
+
+#: ../../include/conversation.php:1015
+#, php-format
+msgid "%s don't like this."
+msgstr "%s не нравится это."
+
+#: ../../include/conversation.php:1065
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Видно для <strong>всех</strong>"
+
+#: ../../include/conversation.php:1066 ../../mod/mail.php:171
+#: ../../mod/mail.php:269
+msgid "Please enter a link URL:"
+msgstr "Пожалуйста, введите URL ссылки:"
+
+#: ../../include/conversation.php:1067
+msgid "Please enter a video link/URL:"
+msgstr "Пожалуйста, введите URL видео-ссылки:"
+
+#: ../../include/conversation.php:1068
+msgid "Please enter an audio link/URL:"
+msgstr "Пожалуйста, введите URL аудио-ссылки:"
+
+#: ../../include/conversation.php:1069
+msgid "Tag term:"
+msgstr "Теги:"
+
+#: ../../include/conversation.php:1070 ../../mod/filer.php:35
+msgid "Save to Folder:"
+msgstr "Сохранить в папку:"
+
+#: ../../include/conversation.php:1071
+msgid "Where are you right now?"
+msgstr "Где вы сейчас?"
+
+#: ../../include/conversation.php:1072 ../../mod/mail.php:172
+#: ../../mod/mail.php:270 ../../mod/editpost.php:52
+msgid "Expires YYYY-MM-DD HH:MM"
+msgstr ""
+
+#: ../../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 "Предварительный просмотр"
+
+#: ../../include/conversation.php:1096 ../../mod/photos.php:1080
+msgid "Share"
+msgstr "Поделиться"
+
+#: ../../include/conversation.php:1098 ../../mod/editwebpage.php:140
+msgid "Page link title"
+msgstr "Ссылка заголовока страницы"
+
+#: ../../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 "Загрузить фотографию"
+
+#: ../../include/conversation.php:1101
+msgid "upload photo"
+msgstr "загрузить фотографию"
+
+#: ../../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 "Прикрепить файл"
+
+#: ../../include/conversation.php:1103
+msgid "attach file"
+msgstr "прикрепить файл"
+
+#: ../../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 "Вставить веб-ссылку"
+
+#: ../../include/conversation.php:1105
+msgid "web link"
+msgstr "веб-ссылка"
+
+#: ../../include/conversation.php:1106
+msgid "Insert video link"
+msgstr "Вставить видео-ссылку"
+
+#: ../../include/conversation.php:1107
+msgid "video link"
+msgstr "видео-ссылка"
+
+#: ../../include/conversation.php:1108
+msgid "Insert audio link"
+msgstr "Вставить аудио-ссылку"
+
+#: ../../include/conversation.php:1109
+msgid "audio link"
+msgstr "аудио-ссылка"
+
+#: ../../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 "Указание своего расположения"
+
+#: ../../include/conversation.php:1111
+msgid "set location"
+msgstr "указание расположения"
+
+#: ../../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 "Стереть указание расположения"
+
+#: ../../include/conversation.php:1113
+msgid "clear location"
+msgstr "стереть указание расположения"
+
+#: ../../include/conversation.php:1115 ../../mod/editlayout.php:122
+#: ../../mod/editpost.php:119 ../../mod/editwebpage.php:169
+#: ../../mod/editblock.php:137
+msgid "Set title"
+msgstr "Заголовок"
+
+#: ../../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 "Категории (список через запятую)"
+
+#: ../../include/conversation.php:1120 ../../mod/editlayout.php:111
+#: ../../mod/editpost.php:108 ../../mod/editwebpage.php:154
+#: ../../mod/editblock.php:125
+msgid "Permission settings"
+msgstr "Настройки разрешений"
+
+#: ../../include/conversation.php:1121
+msgid "permissions"
+msgstr "разрешения"
+
+#: ../../include/conversation.php:1129 ../../mod/editlayout.php:119
+#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:164
+#: ../../mod/editblock.php:134
+msgid "Public post"
+msgstr "Публичное сообщение"
+
+#: ../../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 "Пример: 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 ""
+
+#: ../../include/conversation.php:1146 ../../include/ItemObject.php:549
+#: ../../mod/mail.php:228 ../../mod/mail.php:341 ../../mod/editpost.php:135
+msgid "Encrypt text"
+msgstr ""
+
+#: ../../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 "Отменить"
+
+#: ../../include/conversation.php:1376
+msgid "Commented Order"
+msgstr "По комментириям"
+
+#: ../../include/conversation.php:1379
+msgid "Sort by Comment Date"
+msgstr "Сортировка по дате создания комментариев"
+
+#: ../../include/conversation.php:1382
+msgid "Posted Order"
+msgstr "По добавлениям"
+
+#: ../../include/conversation.php:1385
+msgid "Sort by Post Date"
+msgstr "Сортировка по дате создания сообщения"
+
+#: ../../include/conversation.php:1389
+msgid "Personal"
+msgstr "Личные"
+
+#: ../../include/conversation.php:1392
+msgid "Posts that mention or involve you"
+msgstr "Сообщения, в которых упоминули или вовлекли вас"
+
+#: ../../include/conversation.php:1395 ../../mod/menu.php:57
+#: ../../mod/connections.php:209
+msgid "New"
+msgstr "Новые"
+
+#: ../../include/conversation.php:1398
+msgid "Activity Stream - by date"
+msgstr "Лента активности - по дате"
+
+#: ../../include/conversation.php:1405
+msgid "Starred"
+msgstr "Помеченные"
+
+#: ../../include/conversation.php:1408
+msgid "Favourite Posts"
+msgstr "Фаворит-сообщения"
+
+#: ../../include/conversation.php:1415
+msgid "Spam"
+msgstr "Спам"
+
+#: ../../include/conversation.php:1418
+msgid "Posts flagged as SPAM"
+msgstr "Как СПАМ помеченные сообщения"
+
+#: ../../include/conversation.php:1448
+msgid "Channel"
+msgstr "Канал"
+
+#: ../../include/conversation.php:1451
+msgid "Status Messages and Posts"
+msgstr ""
+
+#: ../../include/conversation.php:1455
+msgid "About"
+msgstr "О себе"
+
+#: ../../include/conversation.php:1458
+msgid "Profile Details"
+msgstr "Сведения о профиле"
+
+#: ../../include/conversation.php:1465 ../../include/photos.php:297
+msgid "Photo Albums"
+msgstr "Фотоальбомы"
+
+#: ../../include/conversation.php:1470 ../../mod/fbrowser.php:114
+msgid "Files"
+msgstr "Файлы"
 
-#: ../../include/identity.php:157
-msgid "Unable to retrieve created identity"
+#: ../../include/conversation.php:1473
+msgid "Files and Storage"
 msgstr ""
 
-#: ../../include/identity.php:214
-msgid "Default Profile"
-msgstr "Профиль по умолчанию"
+#: ../../include/conversation.php:1485
+msgid "Events and Calendar"
+msgstr "Мероприятия и календарь"
 
-#: ../../include/identity.php:239 ../../include/profile_selectors.php:42
-#: ../../mod/network.php:364 ../../mod/connections.php:377
-msgid "Friends"
-msgstr "Друзья"
+#: ../../include/conversation.php:1490
+msgid "Webpages"
+msgstr "Веб-страницы"
+
+#: ../../include/conversation.php:1493
+msgid "Manage Webpages"
+msgstr "Управление веб-страниц"
 
 #: ../../include/notify.php:23
 msgid "created a new post"
@@ -1227,41 +1833,39 @@ msgstr "создал новое сообщение"
 msgid "commented on %s's post"
 msgstr "прокомментировал %s's сообщение"
 
-#: ../../include/oembed.php:148
-msgid "Embedded content"
-msgstr ""
-
-#: ../../include/oembed.php:157
-msgid "Embedding disabled"
-msgstr ""
-
-#: ../../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/items.php:3359
-#: ../../mod/common.php:43 ../../mod/events.php:134 ../../mod/invite.php:13
-#: ../../mod/invite.php:102 ../../mod/allfriends.php:10
-#: ../../mod/webpages.php:40 ../../mod/api.php:26 ../../mod/api.php:31
-#: ../../mod/lastpost.php:93 ../../mod/page.php:30 ../../mod/setup.php:181
-#: ../../mod/settings.php:598 ../../mod/viewconnections.php:33
-#: ../../mod/viewconnections.php:38 ../../mod/delegate.php:6
-#: ../../mod/mitem.php:92 ../../mod/group.php:15 ../../mod/photos.php:74
-#: ../../mod/photos.php:647 ../../mod/viewsrc.php:12 ../../mod/menu.php:40
-#: ../../mod/message.php:204 ../../mod/layouts.php:27 ../../mod/layouts.php:42
-#: ../../mod/network.php:7 ../../mod/intro.php:50
-#: ../../mod/connections.php:174 ../../mod/profiles.php:163
-#: ../../mod/profiles.php:476 ../../mod/new_channel.php:66
-#: ../../mod/new_channel.php:97 ../../mod/manage.php:6
-#: ../../mod/crepair.php:115 ../../mod/editlayout.php:49
-#: ../../mod/nogroup.php:25 ../../mod/profile_photo.php:197
-#: ../../mod/profile_photo.php:210 ../../mod/editwebpage.php:43
-#: ../../mod/editwebpage.php:65 ../../mod/notifications.php:66
-#: ../../mod/blocks.php:29 ../../mod/blocks.php:44 ../../mod/editpost.php:13
-#: ../../mod/poke.php:128 ../../mod/channel.php:117 ../../mod/fsuggest.php:78
-#: ../../mod/editblock.php:49 ../../mod/item.php:163 ../../mod/suggest.php:32
-#: ../../mod/register.php:60 ../../mod/regmod.php:18 ../../mod/mood.php:114
-#: ../../index.php:178 ../../index.php:340
+#: ../../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: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: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/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 "Доступ запрещен."
 
@@ -1274,20 +1878,16 @@ msgstr ""
 msgid "Image file is empty."
 msgstr "файл пуст."
 
-#: ../../include/photos.php:124 ../../mod/profile_photo.php:157
+#: ../../include/photos.php:122 ../../mod/profile_photo.php:147
 msgid "Unable to process image"
 msgstr ""
 
-#: ../../include/photos.php:186
+#: ../../include/photos.php:184
 msgid "Photo storage failed."
 msgstr ""
 
-#: ../../include/photos.php:288 ../../boot.php:2192
-msgid "Photo Albums"
-msgstr "Фотоальбомы"
-
-#: ../../include/photos.php:292 ../../mod/photos.php:795
-#: ../../mod/photos.php:1269
+#: ../../include/photos.php:301 ../../mod/photos.php:821
+#: ../../mod/photos.php:1296
 msgid "Upload New Photos"
 msgstr "Загрузить новые фотографии"
 
@@ -1519,44 +2119,104 @@ msgstr "Не заботьтесь"
 msgid "Ask me"
 msgstr "Спроси меня"
 
-#: ../../include/attach.php:184 ../../include/attach.php:232
+#: ../../include/attach.php:179 ../../include/attach.php:227
 msgid "Item was not found."
 msgstr "Элемент не найден."
 
-#: ../../include/attach.php:285
+#: ../../include/attach.php:280
 msgid "No source file."
 msgstr "Нет исходного файла."
 
-#: ../../include/attach.php:302
+#: ../../include/attach.php:297
 msgid "Cannot locate file to replace"
 msgstr "Не удается найти файл, чтобы заменить"
 
-#: ../../include/attach.php:320
+#: ../../include/attach.php:315
 msgid "Cannot locate file to revise/update"
 msgstr "Не удается найти файл для пересмотра / обновления"
 
-#: ../../include/attach.php:331
+#: ../../include/attach.php:326
 #, php-format
 msgid "File exceeds size limit of %d"
 msgstr "Файл превышает предельный размер %d"
 
-#: ../../include/attach.php:342
+#: ../../include/attach.php:337
 #, php-format
 msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
 msgstr ""
 
-#: ../../include/attach.php:424
+#: ../../include/attach.php:421
 msgid "File upload failed. Possible system limit or action terminated."
 msgstr "Загрузка файла не удалась. Возможно система перегружена или попытка прекращена."
 
-#: ../../include/attach.php:436
+#: ../../include/attach.php:433
 msgid "Stored file could not be verified. Upload failed."
 msgstr ""
 
-#: ../../include/attach.php:480 ../../include/attach.php:497
+#: ../../include/attach.php:477 ../../include/attach.php:494
 msgid "Path not available."
 msgstr "Путь недоступен."
 
+#: ../../include/attach.php:544
+msgid "Empty pathname"
+msgstr ""
+
+#: ../../include/attach.php:562
+msgid "duplicate filename or path"
+msgstr ""
+
+#: ../../include/attach.php:587
+msgid "Path not found."
+msgstr "Путь не найден."
+
+#: ../../include/attach.php:632
+msgid "mkdir failed."
+msgstr ""
+
+#: ../../include/attach.php:636
+msgid "database storage failed."
+msgstr ""
+
+#: ../../include/taxonomy.php:210
+msgid "Tags"
+msgstr "Тэги"
+
+#: ../../include/taxonomy.php:227
+msgid "Keywords"
+msgstr "Ключевые слова"
+
+#: ../../include/taxonomy.php:252
+msgid "have"
+msgstr "иметь"
+
+#: ../../include/taxonomy.php:252
+msgid "has"
+msgstr "есть"
+
+#: ../../include/taxonomy.php:253
+msgid "want"
+msgstr "хотеть"
+
+#: ../../include/taxonomy.php:253
+msgid "wants"
+msgstr "хочет"
+
+#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:175
+msgid "like"
+msgstr "мне нравиться"
+
+#: ../../include/taxonomy.php:254
+msgid "likes"
+msgstr "мне нравиться"
+
+#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:176
+msgid "dislike"
+msgstr "мне не-нравиться"
+
+#: ../../include/taxonomy.php:255
+msgid "dislikes"
+msgstr "мне не-нравиться"
+
 #: ../../include/account.php:23
 msgid "Not a valid email address"
 msgstr "Не действительный адрес электронной почты"
@@ -1577,492 +2237,315 @@ msgstr "Требуется приглашение."
 msgid "Invitation could not be verified."
 msgstr "Не удалось проверить приглашение."
 
-#: ../../include/account.php:118
+#: ../../include/account.php:119
 msgid "Please enter the required information."
 msgstr "Пожалуйста, введите необходимую информацию."
 
-#: ../../include/account.php:186
+#: ../../include/account.php:187
 msgid "Failed to store account information."
 msgstr "Не удалось сохранить информацию аккаунта."
 
-#: ../../include/account.php:272
+#: ../../include/account.php:273
 #, php-format
 msgid "Registration request at %s"
 msgstr "Требуется регистрация на %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 "Администратор"
 
-#: ../../include/account.php:296
+#: ../../include/account.php:297
 msgid "your registration password"
 msgstr "Ваш пароль регистрации"
 
-#: ../../include/account.php:299 ../../include/account.php:356
+#: ../../include/account.php:300 ../../include/account.php:357
 #, php-format
 msgid "Registration details for %s"
 msgstr "Регистрационные данные для %s"
 
-#: ../../include/account.php:365
+#: ../../include/account.php:366
 msgid "Account approved."
 msgstr "Аккаунт утвержден."
 
-#: ../../include/account.php:399
+#: ../../include/account.php:400
 #, php-format
 msgid "Registration revoked for %s"
 msgstr "Регистрация отозвана для %s"
 
-#: ../../include/bbcode.php:94 ../../include/bbcode.php:423
-#: ../../include/bbcode.php:426
-msgid "Image/photo"
-msgstr "Изображение / фото"
-
-#: ../../include/bbcode.php:141
-#, php-format
-msgid "%1$s wrote the following %2$s %3$s"
-msgstr "%1$s написал следующее %2$s %3$s"
-
-#: ../../include/bbcode.php:143
-msgid "post"
-msgstr "сообщение"
-
-#: ../../include/bbcode.php:383 ../../include/bbcode.php:403
-msgid "$1 wrote:"
-msgstr "$1 писал:"
-
-#: ../../include/bbcode.php:430 ../../include/bbcode.php:431
-msgid "Encrypted content"
-msgstr "Зашифрованное содержание"
-
-#: ../../include/text.php:309
-msgid "prev"
-msgstr "предыдущий"
-
-#: ../../include/text.php:311
-msgid "first"
-msgstr "первый"
-
-#: ../../include/text.php:340
-msgid "last"
-msgstr "последний"
-
-#: ../../include/text.php:343
-msgid "next"
-msgstr "следующий"
-
-#: ../../include/text.php:355
-msgid "older"
-msgstr "старший"
-
-#: ../../include/text.php:357
-msgid "newer"
-msgstr "новее"
-
-#: ../../include/text.php:648
-msgid "No connections"
-msgstr "Нет каналов"
-
-#: ../../include/text.php:659
-#, php-format
-msgid "%d Connection"
-msgid_plural "%d Connections"
-msgstr[0] "%d канал"
-msgstr[1] "%d канала"
-msgstr[2] "%d каналов"
-
-#: ../../include/text.php:671
-msgid "View Connections"
-msgstr "Просмотр контактов"
-
-#: ../../include/text.php:732 ../../mod/filer.php:36
-msgid "Save"
-msgstr "Запомнить"
-
-#: ../../include/text.php:770
-msgid "poke"
-msgstr "подпихнуть"
-
-#: ../../include/text.php:770 ../../include/conversation.php:236
-msgid "poked"
-msgstr "подпихнул"
-
-#: ../../include/text.php:771
-msgid "ping"
-msgstr ""
-
-#: ../../include/text.php:771
-msgid "pinged"
-msgstr ""
-
-#: ../../include/text.php:772
-msgid "prod"
-msgstr ""
-
-#: ../../include/text.php:772
-msgid "prodded"
-msgstr ""
-
-#: ../../include/text.php:773
-msgid "slap"
-msgstr ""
-
-#: ../../include/text.php:773
-msgid "slapped"
-msgstr ""
-
-#: ../../include/text.php:774
-msgid "finger"
-msgstr ""
-
-#: ../../include/text.php:774
-msgid "fingered"
-msgstr ""
-
-#: ../../include/text.php:775
-msgid "rebuff"
-msgstr ""
-
-#: ../../include/text.php:775
-msgid "rebuffed"
+#: ../../include/dir_fns.php:15
+msgid "Sort Options"
 msgstr ""
 
-#: ../../include/text.php:787
-msgid "happy"
-msgstr "счастливый"
+#: ../../include/dir_fns.php:16
+msgid "Alphabetic"
+msgstr "По алфавиту"
 
-#: ../../include/text.php:788
-msgid "sad"
-msgstr ""
+#: ../../include/dir_fns.php:17
+msgid "Reverse Alphabetic"
+msgstr "По обратному алфавиту"
 
-#: ../../include/text.php:789
-msgid "mellow"
-msgstr ""
+#: ../../include/dir_fns.php:18
+msgid "Newest to Oldest"
+msgstr "От новых к старым"
 
-#: ../../include/text.php:790
-msgid "tired"
+#: ../../include/dir_fns.php:30
+msgid "Enable Safe Search"
 msgstr ""
 
-#: ../../include/text.php:791
-msgid "perky"
+#: ../../include/dir_fns.php:32
+msgid "Disable Safe Search"
 msgstr ""
 
-#: ../../include/text.php:792
-msgid "angry"
-msgstr "сердитый"
-
-#: ../../include/text.php:793
-msgid "stupified"
+#: ../../include/dir_fns.php:34
+msgid "Safe Mode"
 msgstr ""
 
-#: ../../include/text.php:794
-msgid "puzzled"
-msgstr ""
+#: ../../include/enotify.php:40
+msgid "Red Matrix Notification"
+msgstr "Оповещения Red матрицы"
 
-#: ../../include/text.php:795
-msgid "interested"
-msgstr ""
+#: ../../include/enotify.php:41
+msgid "redmatrix"
+msgstr "redmatrix"
 
-#: ../../include/text.php:796
-msgid "bitter"
-msgstr "озлобленный"
+#: ../../include/enotify.php:43
+msgid "Thank You,"
+msgstr "Спасибо,"
 
-#: ../../include/text.php:797
-msgid "cheerful"
-msgstr ""
+#: ../../include/enotify.php:45
+#, php-format
+msgid "%s Administrator"
+msgstr "%s администратор"
 
-#: ../../include/text.php:798
-msgid "alive"
-msgstr ""
+#: ../../include/enotify.php:80
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: ../../include/text.php:799
-msgid "annoyed"
-msgstr ""
+#: ../../include/enotify.php:84
+#, php-format
+msgid "[Red:Notify] New mail received at %s"
+msgstr "[Red:Уведомление] Получено новое сообщение в %s"
 
-#: ../../include/text.php:800
-msgid "anxious"
+#: ../../include/enotify.php:86
+#, php-format
+msgid "%1$s, %2$s sent you a new private message at %3$s."
 msgstr ""
 
-#: ../../include/text.php:801
-msgid "cranky"
-msgstr "капризный"
-
-#: ../../include/text.php:802
-msgid "disturbed"
-msgstr "встревоженный"
-
-#: ../../include/text.php:803
-msgid "frustrated"
-msgstr "разочарованный"
-
-#: ../../include/text.php:804
-msgid "motivated"
-msgstr "мотивированный"
-
-#: ../../include/text.php:805
-msgid "relaxed"
-msgstr "расслабленный"
-
-#: ../../include/text.php:806
-msgid "surprised"
-msgstr "удивленный"
-
-#: ../../include/text.php:968
-msgid "Monday"
-msgstr "Понедельник"
-
-#: ../../include/text.php:968
-msgid "Tuesday"
-msgstr "Вторник"
-
-#: ../../include/text.php:968
-msgid "Wednesday"
-msgstr "Среда"
-
-#: ../../include/text.php:968
-msgid "Thursday"
-msgstr "Четверг"
-
-#: ../../include/text.php:968
-msgid "Friday"
-msgstr "Пятница"
-
-#: ../../include/text.php:968
-msgid "Saturday"
-msgstr "Суббота"
-
-#: ../../include/text.php:968
-msgid "Sunday"
-msgstr "Воскресенье"
-
-#: ../../include/text.php:972
-msgid "January"
-msgstr "Январь"
-
-#: ../../include/text.php:972
-msgid "February"
-msgstr "Февраль"
-
-#: ../../include/text.php:972
-msgid "March"
-msgstr "Март"
-
-#: ../../include/text.php:972
-msgid "April"
-msgstr "Апрель"
-
-#: ../../include/text.php:972
-msgid "May"
-msgstr "Май"
-
-#: ../../include/text.php:972
-msgid "June"
-msgstr "Июнь"
-
-#: ../../include/text.php:972
-msgid "July"
-msgstr "Июль"
-
-#: ../../include/text.php:972
-msgid "August"
-msgstr "Август"
+#: ../../include/enotify.php:87
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s послал вам %2$s."
 
-#: ../../include/text.php:972
-msgid "September"
-msgstr "Сентябрь"
+#: ../../include/enotify.php:87
+msgid "a private message"
+msgstr "личное сообщение"
 
-#: ../../include/text.php:972
-msgid "October"
-msgstr "Октябрь"
+#: ../../include/enotify.php:88
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Пожалуйста, посетите %s для просмотра и/или ответа на ваши личные сообщения."
 
-#: ../../include/text.php:972
-msgid "November"
-msgstr "Ноябрь"
+#: ../../include/enotify.php:142
+#, php-format
+msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]"
+msgstr ""
 
-#: ../../include/text.php:972
-msgid "December"
-msgstr "Декабрь"
+#: ../../include/enotify.php:150
+#, php-format
+msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]"
+msgstr ""
 
-#: ../../include/text.php:1057 ../../mod/message.php:400
-msgid "unknown.???"
-msgstr "неизвестный.???"
+#: ../../include/enotify.php:159
+#, php-format
+msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]"
+msgstr ""
 
-#: ../../include/text.php:1058 ../../mod/message.php:401
-msgid "bytes"
-msgstr "байт"
+#: ../../include/enotify.php:170
+#, php-format
+msgid "[Red:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Red:Уведомление] Комментарий к разговору #%1$d по %2$s"
 
-#: ../../include/text.php:1094 ../../include/text.php:1109
-#: ../../include/conversation.php:820
-msgid "remove"
-msgstr "удалить"
+#: ../../include/enotify.php:171
+#, php-format
+msgid "%1$s, %2$s commented on an item/conversation you have been following."
+msgstr ""
 
-#: ../../include/text.php:1094 ../../include/text.php:1109
-msgid "[remove]"
-msgstr "[удалить]"
+#: ../../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 "Пожалуйста, посетите %s для просмотра и/или ответа разговора."
 
-#: ../../include/text.php:1097 ../../include/conversation.php:667
-msgid "Categories:"
-msgstr "Категории:"
+#: ../../include/enotify.php:180
+#, php-format
+msgid "[Red:Notify] %s posted to your profile wall"
+msgstr "[Red:Уведомление] %s добавил сообщениe на стену вашего профиля"
 
-#: ../../include/text.php:1112 ../../include/conversation.php:668
-msgid "Filed under:"
-msgstr "Хранить под:"
+#: ../../include/enotify.php:182
+#, php-format
+msgid "%1$s, %2$s posted to your profile wall at %3$s"
+msgstr ""
 
-#: ../../include/text.php:1128 ../../include/text.php:1140
-msgid "Click to open/close"
-msgstr "Нажмите, чтобы открыть/закрыть"
+#: ../../include/enotify.php:184
+#, php-format
+msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]"
+msgstr ""
 
-#: ../../include/text.php:1311 ../../mod/events.php:326
-msgid "link to source"
-msgstr "ссылка на источник"
+#: ../../include/enotify.php:208
+#, php-format
+msgid "[Red:Notify] %s tagged you"
+msgstr "[Red:Уведомление] %s добавил у вас тег"
 
-#: ../../include/text.php:1330
-msgid "Select a page layout: "
+#: ../../include/enotify.php:209
+#, php-format
+msgid "%1$s, %2$s tagged you at %3$s"
 msgstr ""
 
-#: ../../include/text.php:1333 ../../include/text.php:1398
-msgid "default"
-msgstr "по умолчанию"
-
-#: ../../include/text.php:1369
-msgid "Page content type: "
+#: ../../include/enotify.php:210
+#, php-format
+msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]."
 msgstr ""
 
-#: ../../include/text.php:1410
-msgid "Select an alternate language"
-msgstr "Выбор альтернативного языка"
+#: ../../include/enotify.php:223
+#, php-format
+msgid "[Red:Notify] %1$s poked you"
+msgstr "[Red:Уведомление] %1$s подпихнул вас"
 
-#: ../../include/text.php:1562 ../../include/conversation.php:117
-#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:45
-msgid "photo"
-msgstr "фото"
+#: ../../include/enotify.php:224
+#, php-format
+msgid "%1$s, %2$s poked you at %3$s"
+msgstr ""
 
-#: ../../include/text.php:1565 ../../include/conversation.php:120
-#: ../../mod/tagger.php:49
-msgid "event"
-msgstr "мероприятие"
+#: ../../include/enotify.php:225
+#, php-format
+msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]."
+msgstr ""
 
-#: ../../include/text.php:1568 ../../include/conversation.php:145
-#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:53
-msgid "status"
-msgstr "статус"
+#: ../../include/enotify.php:241
+#, php-format
+msgid "[Red:Notify] %s tagged your post"
+msgstr "[Red:Уведомление] %s добавил у вас в сообщении тег"
 
-#: ../../include/text.php:1570 ../../include/conversation.php:147
-#: ../../mod/tagger.php:55
-msgid "comment"
-msgstr "комментарий"
+#: ../../include/enotify.php:242
+#, php-format
+msgid "%1$s, %2$s tagged your post at %3$s"
+msgstr ""
 
-#: ../../include/text.php:1575
-msgid "activity"
-msgstr "активность"
+#: ../../include/enotify.php:243
+#, php-format
+msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]"
+msgstr ""
 
-#: ../../include/text.php:1836
-msgid "Design"
+#: ../../include/enotify.php:255
+msgid "[Red:Notify] Introduction received"
+msgstr "[Red:Уведомление] введение получено"
+
+#: ../../include/enotify.php:256
+#, php-format
+msgid "%1$s, you've received an introduction from '%2$s' at %3$s"
 msgstr ""
 
-#: ../../include/text.php:1837
-msgid "Blocks"
+#: ../../include/enotify.php:257
+#, php-format
+msgid "%1$s, you've received [zrl=%2$s]an introduction[/zrl] from %3$s."
 msgstr ""
 
-#: ../../include/text.php:1838
-msgid "Menus"
+#: ../../include/enotify.php:261 ../../include/enotify.php:280
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Вы можете посетить ​​профиль в %s"
+
+#: ../../include/enotify.php:263
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
 msgstr ""
 
-#: ../../include/text.php:1839
-msgid "Layouts"
+#: ../../include/enotify.php:270
+msgid "[Red:Notify] Friend suggestion received"
+msgstr "[Red:Уведомление] Получено предложение дружить"
+
+#: ../../include/enotify.php:271
+#, php-format
+msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s"
 msgstr ""
 
-#: ../../include/text.php:1840
-msgid "Pages"
+#: ../../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 ""
 
-#: ../../include/page_widgets.php:6
-msgid "New Page"
+#: ../../include/enotify.php:278
+msgid "Name:"
+msgstr "Имя:"
+
+#: ../../include/enotify.php:279
+msgid "Photo:"
+msgstr "Фото:"
+
+#: ../../include/enotify.php:282
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
 msgstr ""
 
-#: ../../include/auth.php:66
+#: ../../include/auth.php:69
 msgid "Logged out."
 msgstr "Вышел из системы."
 
-#: ../../include/auth.php:178
+#: ../../include/auth.php:181
 msgid "Failed authentication"
 msgstr "Ошибка аутентификации"
 
-#: ../../include/auth.php:187
+#: ../../include/auth.php:190
 msgid "Login failed."
 msgstr "Не удалось войти."
 
 #: ../../include/contact_widgets.php:14
 #, php-format
-msgid "You have %1$.0f of %2$.0f allowed connections."
-msgstr ""
-
-#: ../../include/contact_widgets.php:20
-msgid "Add New Connection"
-msgstr "Добавить новый контакт"
-
-#: ../../include/contact_widgets.php:21
-msgid "Enter the channel address"
-msgstr "Введите адрес канала"
-
-#: ../../include/contact_widgets.php:22
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Пример: bob@example.com, http://example.com/barbara"
-
-#: ../../include/contact_widgets.php:38
-#, php-format
 msgid "%d invitation available"
 msgid_plural "%d invitations available"
 msgstr[0] "имеется %d  приглашение"
 msgstr[1] "имеются %d  приглашения"
 msgstr[2] "имеется %d  приглашений"
 
-#: ../../include/contact_widgets.php:44
+#: ../../include/contact_widgets.php:20
 msgid "Find Channels"
 msgstr "Поиск контактов"
 
-#: ../../include/contact_widgets.php:45
+#: ../../include/contact_widgets.php:21
 msgid "Enter name or interest"
 msgstr "Впишите имя или интерес"
 
-#: ../../include/contact_widgets.php:46
+#: ../../include/contact_widgets.php:22
 msgid "Connect/Follow"
 msgstr "Подключить/следовать"
 
-#: ../../include/contact_widgets.php:47
+#: ../../include/contact_widgets.php:23
 msgid "Examples: Robert Morgenstein, Fishing"
 msgstr "Примеры: Владимир Ильич, Революционер"
 
-#: ../../include/contact_widgets.php:48 ../../mod/directory.php:182
-#: ../../mod/directory.php:187 ../../mod/connections.php:666
+#: ../../include/contact_widgets.php:24 ../../mod/directory.php:205
+#: ../../mod/directory.php:210 ../../mod/connections.php:355
 msgid "Find"
 msgstr "Поиск"
 
-#: ../../include/contact_widgets.php:49 ../../mod/suggest.php:64
+#: ../../include/contact_widgets.php:25 ../../mod/suggest.php:59
 msgid "Channel Suggestions"
 msgstr "Рекомендации каналов"
 
-#: ../../include/contact_widgets.php:50
-msgid "Similar Interests"
-msgstr "Похожие интересы"
-
-#: ../../include/contact_widgets.php:51
+#: ../../include/contact_widgets.php:27
 msgid "Random Profile"
 msgstr "Случайные"
 
-#: ../../include/contact_widgets.php:52
+#: ../../include/contact_widgets.php:28
 msgid "Invite Friends"
 msgstr "Пригласить друзей"
 
-#: ../../include/contact_widgets.php:79 ../../include/contact_widgets.php:113
-msgid "Everything"
-msgstr "Все"
-
-#: ../../include/contact_widgets.php:110
-msgid "Categories"
-msgstr "Категории"
-
-#: ../../include/contact_widgets.php:143
+#: ../../include/contact_widgets.php:120
 #, php-format
 msgid "%d connection in common"
 msgid_plural "%d connections in common"
@@ -2070,6 +2553,31 @@ msgstr[0] "%d совместный контакт"
 msgstr[1] "%d совместных контакта"
 msgstr[2] "%d совместных контактов"
 
+#: ../../include/page_widgets.php:6
+msgid "New Page"
+msgstr "Новая страница"
+
+#: ../../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 "Редактировать"
+
+#: ../../include/plugin.php:475 ../../include/plugin.php:477
+msgid "Click here to upgrade."
+msgstr "Нажмите здесь, чтобы обновить."
+
+#: ../../include/plugin.php:483
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr ""
+
+#: ../../include/plugin.php:488
+msgid "This action is not available under your subscription plan."
+msgstr ""
+
 #: ../../include/follow.php:21
 msgid "Channel is blocked on this site."
 msgstr "Канал блокируется на этом сайте."
@@ -2167,481 +2675,423 @@ msgid "Can edit my \"public\" pages"
 msgstr "Может редактировать мои \"публичные\" страницы"
 
 #: ../../include/permissions.php:31
+msgid "Can source my \"public\" posts in derived channels"
+msgstr ""
+
+#: ../../include/permissions.php:31
+msgid "Somewhat advanced - very useful in open communities"
+msgstr ""
+
+#: ../../include/permissions.php:32
 msgid "Can administer my channel resources"
 msgstr "Может администрировать мои ресурсы канала"
 
-#: ../../include/permissions.php:31
+#: ../../include/permissions.php:32
 msgid ""
 "Extremely advanced. Leave this alone unless you know what you are doing"
 msgstr ""
 
-#: ../../include/taxonomy.php:166
-msgid "Tags"
-msgstr "Тэги"
-
-#: ../../include/taxonomy.php:187
-msgid "have"
-msgstr "иметь"
-
-#: ../../include/taxonomy.php:187
-msgid "has"
-msgstr "есть"
-
-#: ../../include/taxonomy.php:188
-msgid "want"
-msgstr "хотеть"
-
-#: ../../include/taxonomy.php:188
-msgid "wants"
-msgstr "хочет"
+#: ../../include/comanche.php:35 ../../view/theme/redbasic/php/config.php:62
+#: ../../view/theme/apw/php/config.php:176
+msgid "Default"
+msgstr "По умолчанию"
 
-#: ../../include/taxonomy.php:189 ../../include/ItemObject.php:165
-msgid "like"
-msgstr "мне нравиться"
+#: ../../include/identity.php:29 ../../mod/item.php:1143
+msgid "Unable to obtain identity information from database"
+msgstr "Невозможно получить идентификационную информацию из базы данных"
 
-#: ../../include/taxonomy.php:189
-msgid "likes"
-msgstr "мне нравиться"
+#: ../../include/identity.php:62
+msgid "Empty name"
+msgstr "Пустое имя"
 
-#: ../../include/taxonomy.php:190 ../../include/ItemObject.php:166
-msgid "dislike"
-msgstr "мне не-нравиться"
+#: ../../include/identity.php:64
+msgid "Name too long"
+msgstr "Слишком длинное имя"
 
-#: ../../include/taxonomy.php:190
-msgid "dislikes"
-msgstr "мне не-нравиться"
+#: ../../include/identity.php:143
+msgid "No account identifier"
+msgstr "идентификатор аккаунта отсутствует"
 
-#: ../../include/plugin.php:440 ../../include/plugin.php:442
-msgid "Click here to upgrade."
-msgstr "Нажмите здесь, чтобы обновить."
+#: ../../include/identity.php:153
+msgid "Nickname is required."
+msgstr "Требуется псевдоним."
 
-#: ../../include/plugin.php:448
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr ""
+#: ../../include/identity.php:167
+msgid ""
+"Nickname has unsupported characters or is already being used on this site."
+msgstr "Псевдоним имеет недопустимые символы или уже используется на этом сайте."
 
-#: ../../include/plugin.php:453
-msgid "This action is not available under your subscription plan."
+#: ../../include/identity.php:226
+msgid "Unable to retrieve created identity"
 msgstr ""
 
-#: ../../include/ItemObject.php:87 ../../mod/photos.php:945
-msgid "Private Message"
-msgstr "Личное сообщение"
-
-#: ../../include/ItemObject.php:92 ../../mod/webpages.php:98
-#: ../../mod/settings.php:683 ../../mod/menu.php:55 ../../mod/layouts.php:89
-#: ../../mod/editlayout.php:101 ../../mod/editwebpage.php:120
-#: ../../mod/blocks.php:92 ../../mod/editpost.php:94
-#: ../../mod/editblock.php:115
-msgid "Edit"
-msgstr "Редактировать"
-
-#: ../../include/ItemObject.php:104 ../../include/conversation.php:631
-#: ../../mod/settings.php:684 ../../mod/group.php:182
-#: ../../mod/photos.php:1125 ../../mod/connections.php:344
-#: ../../mod/admin.php:640 ../../mod/filestorage.php:62
-msgid "Delete"
-msgstr "Удалить"
-
-#: ../../include/ItemObject.php:110 ../../include/conversation.php:630
-msgid "Select"
-msgstr "Выбрать"
-
-#: ../../include/ItemObject.php:114
-msgid "save to folder"
-msgstr "сохранить в папку"
-
-#: ../../include/ItemObject.php:142
-msgid "add star"
-msgstr "добавить маркировку"
-
-#: ../../include/ItemObject.php:143
-msgid "remove star"
-msgstr "удалить маркировку"
+#: ../../include/identity.php:285
+msgid "Default Profile"
+msgstr "Профиль по умолчанию"
 
-#: ../../include/ItemObject.php:144
-msgid "toggle star status"
-msgstr "переключение статуса маркировки"
+#: ../../include/identity.php:477
+msgid "Requested channel is not available."
+msgstr "Запрашиваемый канал не доступен."
 
-#: ../../include/ItemObject.php:148
-msgid "starred"
-msgstr "помеченные"
+#: ../../include/identity.php:489
+msgid " Sorry, you don't have the permission to view this profile. "
+msgstr ""
 
-#: ../../include/ItemObject.php:159
-msgid "add tag"
-msgstr "добавить тег"
+#: ../../include/identity.php:524 ../../mod/webpages.php:8
+#: ../../mod/connect.php:13 ../../mod/layouts.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 "Запрашиваемый профиль не доступен."
 
-#: ../../include/ItemObject.php:165 ../../mod/photos.php:1055
-msgid "I like this (toggle)"
-msgstr "мне это нравится (переключение)"
+#: ../../include/identity.php:639 ../../mod/profiles.php:615
+msgid "Change profile photo"
+msgstr "Изменить фотографию профиля"
 
-#: ../../include/ItemObject.php:166 ../../mod/photos.php:1056
-msgid "I don't like this (toggle)"
-msgstr "мне это не нравится (переключение)"
+#: ../../include/identity.php:645
+msgid "Profiles"
+msgstr "Профили"
 
-#: ../../include/ItemObject.php:168
-msgid "Share this"
-msgstr "Поделиться этим"
+#: ../../include/identity.php:645
+msgid "Manage/edit profiles"
+msgstr "Управление / Редактирование профилей"
 
-#: ../../include/ItemObject.php:168
-msgid "share"
-msgstr "поделиться"
+#: ../../include/identity.php:646 ../../mod/profiles.php:616
+msgid "Create New Profile"
+msgstr "Создать новый профиль"
 
-#: ../../include/ItemObject.php:192 ../../include/ItemObject.php:193
-#, php-format
-msgid "View %s's profile - %s"
-msgstr "Просмотр %s's профиля - %s"
+#: ../../include/identity.php:649
+msgid "Edit Profile"
+msgstr "Редактировать профиль"
 
-#: ../../include/ItemObject.php:194
-msgid "to"
-msgstr "к"
+#: ../../include/identity.php:660 ../../mod/profiles.php:627
+msgid "Profile Image"
+msgstr "Изображение профиля"
 
-#: ../../include/ItemObject.php:195
-msgid "Wall-to-Wall"
-msgstr "Стена-к-Стене"
+#: ../../include/identity.php:663 ../../mod/profiles.php:630
+msgid "visible to everybody"
+msgstr "видно всем"
 
-#: ../../include/ItemObject.php:196
-msgid "via Wall-To-Wall:"
-msgstr "через Стена-к-Стене:"
+#: ../../include/identity.php:664 ../../mod/profiles.php:631
+msgid "Edit visibility"
+msgstr "Редактировать видимость"
 
-#: ../../include/ItemObject.php:206 ../../include/conversation.php:677
-#, php-format
-msgid " from %s"
-msgstr " от %s"
+#: ../../include/identity.php:678 ../../include/identity.php:903
+#: ../../mod/directory.php:158
+msgid "Gender:"
+msgstr "Пол:"
 
-#: ../../include/ItemObject.php:233 ../../include/conversation.php:696
-#: ../../include/conversation.php:1092 ../../mod/photos.php:1058
-#: ../../mod/message.php:298 ../../mod/message.php:461
-#: ../../mod/editlayout.php:110 ../../mod/editwebpage.php:129
-#: ../../mod/editpost.php:103 ../../mod/editblock.php:124
-msgid "Please wait"
-msgstr "Подождите пожалуйста"
+#: ../../include/identity.php:679 ../../include/identity.php:923
+#: ../../mod/directory.php:160
+msgid "Status:"
+msgstr "Статус:"
 
-#: ../../include/ItemObject.php:254
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d комментарий"
-msgstr[1] "%d комментария"
-msgstr[2] "%d комментариев"
+#: ../../include/identity.php:680 ../../include/identity.php:934
+#: ../../mod/directory.php:162
+msgid "Homepage:"
+msgstr "Домашняя страница:"
 
-#: ../../include/ItemObject.php:502 ../../mod/photos.php:1073
-#: ../../mod/photos.php:1157
-msgid "This is you"
-msgstr "Это вы"
+#: ../../include/identity.php:747 ../../include/identity.php:827
+#: ../../mod/ping.php:230
+msgid "g A l F d"
+msgstr "g A l F d"
 
-#: ../../include/ItemObject.php:505 ../../mod/events.php:458
-#: ../../mod/thing.php:190 ../../mod/invite.php:153 ../../mod/setup.php:283
-#: ../../mod/setup.php:326 ../../mod/settings.php:621
-#: ../../mod/settings.php:733 ../../mod/settings.php:761
-#: ../../mod/settings.php:785 ../../mod/settings.php:856
-#: ../../mod/settings.php:1023 ../../mod/connect.php:96 ../../mod/group.php:87
-#: ../../mod/photos.php:678 ../../mod/photos.php:772 ../../mod/photos.php:1037
-#: ../../mod/photos.php:1076 ../../mod/photos.php:1160
-#: ../../mod/message.php:299 ../../mod/message.php:460
-#: ../../mod/connections.php:421 ../../mod/profiles.php:529
-#: ../../mod/admin.php:409 ../../mod/admin.php:633 ../../mod/admin.php:769
-#: ../../mod/admin.php:968 ../../mod/admin.php:1055 ../../mod/import.php:385
-#: ../../mod/crepair.php:166 ../../mod/poke.php:166 ../../mod/fsuggest.php:108
-#: ../../mod/mood.php:137 ../../view/theme/redbasic/php/config.php:136
-#: ../../view/theme/redbasic/php/config.php:154
-#: ../../view/theme/redstrap/php/config.php:131
-msgid "Submit"
-msgstr "Отправить"
+#: ../../include/identity.php:748 ../../include/identity.php:828
+msgid "F d"
+msgstr "F d"
 
-#: ../../include/ItemObject.php:506
-msgid "Bold"
-msgstr "Жирный"
+#: ../../include/identity.php:793 ../../include/identity.php:868
+#: ../../mod/ping.php:252
+msgid "[today]"
+msgstr "[сегодня]"
 
-#: ../../include/ItemObject.php:507
-msgid "Italic"
-msgstr "Курсив"
+#: ../../include/identity.php:805
+msgid "Birthday Reminders"
+msgstr "Напоминания о Днях Рождения"
 
-#: ../../include/ItemObject.php:508
-msgid "Underline"
-msgstr "Подчеркнутый"
+#: ../../include/identity.php:806
+msgid "Birthdays this week:"
+msgstr "Дни Рождения на этой неделе:"
 
-#: ../../include/ItemObject.php:509
-msgid "Quote"
-msgstr "Цитата"
+#: ../../include/identity.php:861
+msgid "[No description]"
+msgstr "[без описания]"
 
-#: ../../include/ItemObject.php:510
-msgid "Code"
-msgstr "Код"
+#: ../../include/identity.php:879
+msgid "Event Reminders"
+msgstr "Напоминания мероприятий"
 
-#: ../../include/ItemObject.php:511
-msgid "Image"
-msgstr "Изображение"
+#: ../../include/identity.php:880
+msgid "Events this week:"
+msgstr "Мероприятия на этой неделе:"
 
-#: ../../include/ItemObject.php:512
-msgid "Link"
-msgstr "Ссылка"
+#: ../../include/identity.php:893 ../../include/identity.php:975
+#: ../../mod/profperm.php:103
+msgid "Profile"
+msgstr "Профиль"
 
-#: ../../include/ItemObject.php:513
-msgid "Video"
-msgstr "Видео"
+#: ../../include/identity.php:901 ../../mod/settings.php:911
+msgid "Full Name:"
+msgstr "Полное имя:"
 
-#: ../../include/ItemObject.php:514 ../../include/conversation.php:1112
-#: ../../mod/photos.php:1077 ../../mod/editlayout.php:130
-#: ../../mod/editwebpage.php:151 ../../mod/editpost.php:123
-#: ../../mod/editblock.php:145
-msgid "Preview"
-msgstr "Предварительный просмотр"
+#: ../../include/identity.php:908
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: ../../include/conversation.php:123
-msgid "channel"
-msgstr "канал"
+#: ../../include/identity.php:909
+msgid "j F"
+msgstr "j F"
 
-#: ../../include/conversation.php:161 ../../mod/like.php:134
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s нравится %2$s's %3$s"
+#: ../../include/identity.php:916
+msgid "Birthday:"
+msgstr "День Рождения:"
 
-#: ../../include/conversation.php:164 ../../mod/like.php:136
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s не нравится %2$s's %3$s"
+#: ../../include/identity.php:920
+msgid "Age:"
+msgstr "Возраст:"
 
-#: ../../include/conversation.php:201
+#: ../../include/identity.php:929
 #, php-format
-msgid "%1$s is now connected with %2$s"
-msgstr "%1$s теперь соединен с %2$s"
+msgid "for %1$d %2$s"
+msgstr "для %1$d %2$s"
 
-#: ../../include/conversation.php:232
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s подпихнул %2$s"
+#: ../../include/identity.php:932 ../../mod/profiles.php:538
+msgid "Sexual Preference:"
+msgstr "Сексуальная ориентация:"
 
-#: ../../include/conversation.php:254 ../../mod/mood.php:63
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s в настоящее время %2$s"
+#: ../../include/identity.php:936 ../../mod/profiles.php:540
+msgid "Hometown:"
+msgstr "Родной город:"
 
-#: ../../include/conversation.php:655
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Просмотр %s's профиля @ %s"
+#: ../../include/identity.php:938
+msgid "Tags:"
+msgstr "Тэги:"
 
-#: ../../include/conversation.php:694
-msgid "View in context"
-msgstr "Показать в контексте"
+#: ../../include/identity.php:940 ../../mod/profiles.php:541
+msgid "Political Views:"
+msgstr "Политические взгляды:"
 
-#: ../../include/conversation.php:824
-msgid "Loading..."
-msgstr "Загрузка..."
+#: ../../include/identity.php:942
+msgid "Religion:"
+msgstr "Религия:"
 
-#: ../../include/conversation.php:825
-msgid "Delete Selected Items"
-msgstr "Удалить выбранные элементы"
+#: ../../include/identity.php:944 ../../mod/directory.php:164
+msgid "About:"
+msgstr "О себе:"
 
-#: ../../include/conversation.php:913
-msgid "Follow Thread"
-msgstr "Следобать теме"
+#: ../../include/identity.php:946
+msgid "Hobbies/Interests:"
+msgstr "Хобби / интересы:"
 
-#: ../../include/conversation.php:982
-#, php-format
-msgid "%s likes this."
-msgstr "%s нравится это."
+#: ../../include/identity.php:948 ../../mod/profiles.php:544
+msgid "Likes:"
+msgstr "Что вам нравится:"
 
-#: ../../include/conversation.php:982
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s не нравится это."
+#: ../../include/identity.php:950 ../../mod/profiles.php:545
+msgid "Dislikes:"
+msgstr "Что вам не нравится:"
 
-#: ../../include/conversation.php:986
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this."
-msgstr "<span  %1$s>%2$d чел.</span> нравится это."
+#: ../../include/identity.php:953
+msgid "Contact information and Social Networks:"
+msgstr "Информация и социальные сети контакта:"
 
-#: ../../include/conversation.php:988
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this."
-msgstr "<span  %1$s>%2$d чел.</span> не нравится это."
+#: ../../include/identity.php:955
+msgid "Musical interests:"
+msgstr "Музыкальные интересы:"
 
-#: ../../include/conversation.php:994
-msgid "and"
-msgstr "и"
+#: ../../include/identity.php:957
+msgid "Books, literature:"
+msgstr "Книги, литература:"
 
-#: ../../include/conversation.php:997
-#, php-format
-msgid ", and %d other people"
-msgstr ", и %d другие люди"
+#: ../../include/identity.php:959
+msgid "Television:"
+msgstr "Телевидение:"
 
-#: ../../include/conversation.php:998
-#, php-format
-msgid "%s like this."
-msgstr "%s нравится это."
+#: ../../include/identity.php:961
+msgid "Film/dance/culture/entertainment:"
+msgstr "Кино / танцы / культура / развлечения:"
 
-#: ../../include/conversation.php:998
-#, php-format
-msgid "%s don't like this."
-msgstr "%s не нравится это."
+#: ../../include/identity.php:963
+msgid "Love/Romance:"
+msgstr "Любовь / Романс:"
 
-#: ../../include/conversation.php:1048
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Видно для <strong>всех</strong>"
+#: ../../include/identity.php:965
+msgid "Work/employment:"
+msgstr "Работа / Занятость:"
 
-#: ../../include/conversation.php:1049 ../../mod/message.php:253
-#: ../../mod/message.php:365
-msgid "Please enter a link URL:"
-msgstr "Пожалуйста, введите URL ссылки:"
+#: ../../include/identity.php:967
+msgid "School/education:"
+msgstr "Школа / образование:"
 
-#: ../../include/conversation.php:1050
-msgid "Please enter a video link/URL:"
-msgstr "Пожалуйста, введите URL видео-ссылки:"
+#: ../../include/items.php:201 ../../mod/like.php:55 ../../mod/group.php:68
+#: ../../mod/profperm.php:19 ../../index.php:343
+msgid "Permission denied"
+msgstr "Доступ запрещен"
 
-#: ../../include/conversation.php:1051
-msgid "Please enter an audio link/URL:"
-msgstr "Пожалуйста, введите URL аудио-ссылки:"
+#: ../../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 "Элемент не найден."
 
-#: ../../include/conversation.php:1052
-msgid "Tag term:"
-msgstr "Теги:"
+#: ../../include/items.php:3734 ../../mod/group.php:38 ../../mod/group.php:140
+msgid "Collection not found."
+msgstr "Коллекция не найдена."
 
-#: ../../include/conversation.php:1053 ../../mod/filer.php:35
-msgid "Save to Folder:"
-msgstr "Сохранить в папку:"
+#: ../../include/items.php:3749
+msgid "Collection is empty."
+msgstr "Коллекция пуста."
 
-#: ../../include/conversation.php:1054
-msgid "Where are you right now?"
-msgstr "Где вы сейчас?"
+#: ../../include/items.php:3756
+#, php-format
+msgid "Collection: %s"
+msgstr "Коллекции: %s"
 
-#: ../../include/conversation.php:1069 ../../mod/photos.php:1057
-msgid "Share"
-msgstr "Поделиться"
+#: ../../include/items.php:3767
+#, php-format
+msgid "Connection: %s"
+msgstr "Контакты: %s"
 
-#: ../../include/conversation.php:1071
-msgid "Page link title"
-msgstr "Ссылка заголовока страницы"
+#: ../../include/items.php:3770
+msgid "Connection not found."
+msgstr "Контакт не найден."
 
-#: ../../include/conversation.php:1073 ../../mod/message.php:295
-#: ../../mod/message.php:457 ../../mod/editlayout.php:102
-#: ../../mod/editwebpage.php:121 ../../mod/editpost.php:95
-#: ../../mod/editblock.php:116
-msgid "Upload photo"
-msgstr "Загрузить фотографию"
+#: ../../include/ItemObject.php:89 ../../mod/photos.php:972
+msgid "Private Message"
+msgstr "Личное сообщение"
 
-#: ../../include/conversation.php:1074
-msgid "upload photo"
-msgstr "загрузить фотографию"
+#: ../../include/ItemObject.php:118
+msgid "save to folder"
+msgstr "сохранить в папку"
 
-#: ../../include/conversation.php:1075 ../../mod/message.php:296
-#: ../../mod/message.php:458 ../../mod/editlayout.php:103
-#: ../../mod/editwebpage.php:122 ../../mod/editpost.php:96
-#: ../../mod/editblock.php:117
-msgid "Attach file"
-msgstr "Прикрепить файл"
+#: ../../include/ItemObject.php:146
+msgid "add star"
+msgstr "добавить маркировку"
 
-#: ../../include/conversation.php:1076
-msgid "attach file"
-msgstr "прикрепить файл"
+#: ../../include/ItemObject.php:147
+msgid "remove star"
+msgstr "удалить маркировку"
 
-#: ../../include/conversation.php:1077 ../../mod/message.php:297
-#: ../../mod/message.php:459 ../../mod/editlayout.php:104
-#: ../../mod/editwebpage.php:123 ../../mod/editpost.php:97
-#: ../../mod/editblock.php:118
-msgid "Insert web link"
-msgstr "Вставить веб-ссылку"
+#: ../../include/ItemObject.php:148
+msgid "toggle star status"
+msgstr "переключение статуса маркировки"
 
-#: ../../include/conversation.php:1078
-msgid "web link"
-msgstr "веб-ссылка"
+#: ../../include/ItemObject.php:152
+msgid "starred"
+msgstr "помеченные"
 
-#: ../../include/conversation.php:1079
-msgid "Insert video link"
-msgstr "Вставить видео-ссылку"
+#: ../../include/ItemObject.php:169
+msgid "add tag"
+msgstr "добавить тег"
 
-#: ../../include/conversation.php:1080
-msgid "video link"
-msgstr "видео-ссылка"
+#: ../../include/ItemObject.php:175 ../../mod/photos.php:1078
+msgid "I like this (toggle)"
+msgstr "мне это нравится (переключение)"
 
-#: ../../include/conversation.php:1081
-msgid "Insert audio link"
-msgstr "Вставить аудио-ссылку"
+#: ../../include/ItemObject.php:176 ../../mod/photos.php:1079
+msgid "I don't like this (toggle)"
+msgstr "мне это не нравится (переключение)"
 
-#: ../../include/conversation.php:1082
-msgid "audio link"
-msgstr "аудио-ссылка"
+#: ../../include/ItemObject.php:178
+msgid "Share this"
+msgstr "Поделиться этим"
 
-#: ../../include/conversation.php:1083 ../../mod/editlayout.php:108
-#: ../../mod/editwebpage.php:127 ../../mod/editpost.php:101
-#: ../../mod/editblock.php:122
-msgid "Set your location"
-msgstr "Указание своего расположения"
+#: ../../include/ItemObject.php:178
+msgid "share"
+msgstr "поделиться"
 
-#: ../../include/conversation.php:1084
-msgid "set location"
-msgstr "указание расположения"
+#: ../../include/ItemObject.php:202 ../../include/ItemObject.php:203
+#, php-format
+msgid "View %s's profile - %s"
+msgstr "Просмотр %s's профиля - %s"
 
-#: ../../include/conversation.php:1085 ../../mod/editlayout.php:109
-#: ../../mod/editwebpage.php:128 ../../mod/editpost.php:102
-#: ../../mod/editblock.php:123
-msgid "Clear browser location"
-msgstr "Стереть указание расположения"
+#: ../../include/ItemObject.php:204
+msgid "to"
+msgstr "к"
+
+#: ../../include/ItemObject.php:205
+msgid "via"
+msgstr "через"
 
-#: ../../include/conversation.php:1086
-msgid "clear location"
-msgstr "стереть указание расположения"
+#: ../../include/ItemObject.php:206
+msgid "Wall-to-Wall"
+msgstr "Стена-к-Стене"
 
-#: ../../include/conversation.php:1088 ../../mod/editlayout.php:122
-#: ../../mod/editwebpage.php:143 ../../mod/editpost.php:115
-#: ../../mod/editblock.php:137
-msgid "Set title"
-msgstr "Заголовок"
+#: ../../include/ItemObject.php:207
+msgid "via Wall-To-Wall:"
+msgstr "через Стена-к-Стене:"
 
-#: ../../include/conversation.php:1091 ../../mod/editlayout.php:124
-#: ../../mod/editwebpage.php:145 ../../mod/editpost.php:117
-#: ../../mod/editblock.php:139
-msgid "Categories (comma-separated list)"
-msgstr "Категории (список через запятую)"
+#: ../../include/ItemObject.php:221
+#, php-format
+msgid "Expires: %s"
+msgstr ""
 
-#: ../../include/conversation.php:1093 ../../mod/editlayout.php:111
-#: ../../mod/editwebpage.php:130 ../../mod/editpost.php:104
-#: ../../mod/editblock.php:125
-msgid "Permission settings"
-msgstr "Настройки разрешений"
+#: ../../include/ItemObject.php:269
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d комментарий"
+msgstr[1] "%d комментария"
+msgstr[2] "%d комментариев"
 
-#: ../../include/conversation.php:1094
-msgid "permissions"
-msgstr "разрешения"
+#: ../../include/ItemObject.php:534 ../../mod/photos.php:1097
+#: ../../mod/photos.php:1184
+msgid "This is you"
+msgstr "Это вы"
 
-#: ../../include/conversation.php:1102 ../../mod/editlayout.php:119
-#: ../../mod/editwebpage.php:138 ../../mod/editpost.php:112
-#: ../../mod/editblock.php:134
-msgid "Public post"
-msgstr "Публичное сообщение"
+#: ../../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 "Отправить"
 
-#: ../../include/conversation.php:1104 ../../mod/editlayout.php:125
-#: ../../mod/editwebpage.php:146 ../../mod/editpost.php:118
-#: ../../mod/editblock.php:140
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Пример: bob@example.com, mary@example.com"
+#: ../../include/ItemObject.php:538
+msgid "Bold"
+msgstr "Жирный"
 
-#: ../../include/items.php:157 ../../mod/like.php:55 ../../mod/group.php:74
-#: ../../mod/profperm.php:28 ../../index.php:339
-msgid "Permission denied"
-msgstr "Доступ запрещен"
+#: ../../include/ItemObject.php:539
+msgid "Italic"
+msgstr "Курсив"
 
-#: ../../include/items.php:3308 ../../mod/page.php:66 ../../mod/viewsrc.php:18
-#: ../../mod/home.php:64 ../../mod/admin.php:142 ../../mod/admin.php:677
-#: ../../mod/admin.php:876 ../../mod/display.php:32
-msgid "Item not found."
-msgstr "Элемент не найден."
+#: ../../include/ItemObject.php:540
+msgid "Underline"
+msgstr "Подчеркнутый"
 
-#: ../../include/items.php:3480
-msgid "Archives"
-msgstr "Архивы"
+#: ../../include/ItemObject.php:541
+msgid "Quote"
+msgstr "Цитата"
 
-#: ../../include/items.php:3641 ../../mod/group.php:44 ../../mod/group.php:146
-msgid "Collection not found."
-msgstr "Коллекция не найдена."
+#: ../../include/ItemObject.php:542
+msgid "Code"
+msgstr "Код"
 
-#: ../../include/items.php:3651
-msgid "Collection has no members."
-msgstr "В коллекции нет ни одного пользователя."
+#: ../../include/ItemObject.php:543
+msgid "Image"
+msgstr "Изображение"
 
-#: ../../include/items.php:3667
-msgid "Connection not found."
-msgstr "Контакт не найден."
+#: ../../include/ItemObject.php:544
+msgid "Link"
+msgstr "Ссылка"
+
+#: ../../include/ItemObject.php:545
+msgid "Video"
+msgstr "Видео"
 
 #: ../../include/security.php:49
 msgid "Welcome "
@@ -2655,21 +3105,21 @@ msgstr "Загрузите пожалуйста фотографию профи
 msgid "Welcome back "
 msgstr "Добро пожаловать"
 
-#: ../../include/security.php:357
+#: ../../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 ""
 
-#: ../../include/zot.php:423
+#: ../../include/zot.php:545
 msgid "Invalid data packet"
 msgstr ""
 
-#: ../../include/zot.php:433
+#: ../../include/zot.php:555
 msgid "Unable to verify channel signature"
 msgstr "Невозможно проверить сигнатуру канала"
 
-#: ../../include/zot.php:571
+#: ../../include/zot.php:732
 #, php-format
 msgid "Unable to verify site signature for %s"
 msgstr ""
@@ -2678,147 +3128,159 @@ msgstr ""
 msgid "No channel."
 msgstr "Не канал."
 
-#: ../../mod/common.php:47
+#: ../../mod/common.php:39
 msgid "Common connections"
 msgstr "Общие контакты"
 
-#: ../../mod/common.php:52
+#: ../../mod/common.php:44
 msgid "No connections in common."
 msgstr "Общих контактов нет."
 
-#: ../../mod/events.php:66
+#: ../../mod/events.php:72
 msgid "Event title and start time are required."
 msgstr "Название события и время начала требуется."
 
-#: ../../mod/events.php:281
+#: ../../mod/events.php:287
 msgid "l, F j"
 msgstr "l, F j"
 
-#: ../../mod/events.php:303
+#: ../../mod/events.php:309
 msgid "Edit event"
 msgstr "Редактировать мероприятие"
 
-#: ../../mod/events.php:349
+#: ../../mod/events.php:355
 msgid "Create New Event"
 msgstr "Создать новое мероприятие"
 
-#: ../../mod/events.php:350
+#: ../../mod/events.php:356
 msgid "Previous"
 msgstr "Предыдущая"
 
-#: ../../mod/events.php:351 ../../mod/setup.php:237
+#: ../../mod/events.php:357 ../../mod/setup.php:258
 msgid "Next"
 msgstr "Следующая"
 
-#: ../../mod/events.php:425
+#: ../../mod/events.php:429
 msgid "hour:minute"
 msgstr "часы:минуты"
 
-#: ../../mod/events.php:435
+#: ../../mod/events.php:448
 msgid "Event details"
 msgstr "Детали мероприятия"
 
-#: ../../mod/events.php:436
+#: ../../mod/events.php:449
 #, php-format
 msgid "Format is %s %s. Starting date and Title are required."
 msgstr "Формат: %s %s. Дата начала и название необходимы."
 
-#: ../../mod/events.php:438
+#: ../../mod/events.php:451
 msgid "Event Starts:"
 msgstr "Начало мероприятий:"
 
-#: ../../mod/events.php:438 ../../mod/events.php:452
+#: ../../mod/events.php:451 ../../mod/events.php:465
 msgid "Required"
 msgstr "Необходимо"
 
-#: ../../mod/events.php:441
+#: ../../mod/events.php:454
 msgid "Finish date/time is not known or not relevant"
 msgstr "Дата окончания / время окончания не известны или не релевантны"
 
-#: ../../mod/events.php:443
+#: ../../mod/events.php:456
 msgid "Event Finishes:"
 msgstr "\t\nКонец мероприятий:"
 
-#: ../../mod/events.php:446
+#: ../../mod/events.php:459
 msgid "Adjust for viewer timezone"
 msgstr "Отрегулируйте для просмотра часовых поясов"
 
-#: ../../mod/events.php:448
+#: ../../mod/events.php:461
 msgid "Description:"
 msgstr "Описание:"
 
-#: ../../mod/events.php:452
+#: ../../mod/events.php:465
 msgid "Title:"
 msgstr "Заголовок:"
 
-#: ../../mod/events.php:454
+#: ../../mod/events.php:467
 msgid "Share this event"
 msgstr "Поделиться этим мероприятием"
 
-#: ../../mod/thing.php:109
+#: ../../mod/thing.php:94
+msgid "Thing updated"
+msgstr ""
+
+#: ../../mod/thing.php:153
 msgid "Object store: failed"
 msgstr ""
 
-#: ../../mod/thing.php:113
-msgid "thing/stuff added"
+#: ../../mod/thing.php:157
+msgid "Thing added"
 msgstr ""
 
-#: ../../mod/thing.php:129
+#: ../../mod/thing.php:175
 #, php-format
 msgid "OBJ: %1$s %2$s %3$s"
 msgstr ""
 
-#: ../../mod/thing.php:175
-msgid "not yet implemented."
-msgstr "еще не реализовано."
+#: ../../mod/thing.php:228
+msgid "Show Thing"
+msgstr ""
+
+#: ../../mod/thing.php:235
+msgid "item not found."
+msgstr "Элемент не найден."
 
-#: ../../mod/thing.php:181
-msgid "Add Stuff to your Profile"
+#: ../../mod/thing.php:263
+msgid "Edit Thing"
 msgstr ""
 
-#: ../../mod/thing.php:183
+#: ../../mod/thing.php:265 ../../mod/thing.php:311
 msgid "Select a profile"
 msgstr "Выберите профиль"
 
-#: ../../mod/thing.php:185
+#: ../../mod/thing.php:267 ../../mod/thing.php:313
 msgid "Select a category of stuff. e.g. I ______ something"
 msgstr ""
 
-#: ../../mod/thing.php:187
-msgid "Name of thing or stuff e.g. something"
+#: ../../mod/thing.php:270 ../../mod/thing.php:315
+msgid "Name of thing e.g. something"
+msgstr ""
+
+#: ../../mod/thing.php:272 ../../mod/thing.php:316
+msgid "URL of thing (optional)"
 msgstr ""
 
-#: ../../mod/thing.php:188
-msgid "URL of thing or stuff (optional)"
+#: ../../mod/thing.php:274 ../../mod/thing.php:317
+msgid "URL for photo of thing (optional)"
 msgstr ""
 
-#: ../../mod/thing.php:189
-msgid "URL for photo of thing or stuff (optional)"
+#: ../../mod/thing.php:309
+msgid "Add Thing to your Profile"
 msgstr ""
 
 #: ../../mod/invite.php:25
 msgid "Total invitation limit exceeded."
 msgstr ""
 
-#: ../../mod/invite.php:47
+#: ../../mod/invite.php:49
 #, php-format
 msgid "%s : Not a valid email address."
 msgstr "%s : Не действительный адрес электронной почты."
 
-#: ../../mod/invite.php:74
+#: ../../mod/invite.php:76
 msgid "Please join us on Red"
 msgstr "Пожалуйста, присоединяйтесь к нам в Red"
 
-#: ../../mod/invite.php:85
+#: ../../mod/invite.php:87
 msgid "Invitation limit exceeded. Please contact your site administrator."
 msgstr ""
 
-#: ../../mod/invite.php:90
+#: ../../mod/invite.php:92
 #, php-format
 msgid "%s : Message delivery failed."
 msgstr "%s : Доставка сообщения не удалась."
 
-#: ../../mod/invite.php:94
+#: ../../mod/invite.php:96
 #, php-format
 msgid "%d message sent."
 msgid_plural "%d messages sent."
@@ -2826,920 +3288,822 @@ msgstr[0] "%d сообщение отправленно."
 msgstr[1] "%d сообщения отправленно."
 msgstr[2] "%d сообщений отправленно."
 
-#: ../../mod/invite.php:113
+#: ../../mod/invite.php:115
 msgid "You have no more invitations available"
 msgstr "У вас больше нет приглашений"
 
-#: ../../mod/invite.php:139
+#: ../../mod/invite.php:141
 msgid "Send invitations"
 msgstr "Послать приглашения"
 
-#: ../../mod/invite.php:140
+#: ../../mod/invite.php:142
 msgid "Enter email addresses, one per line:"
 msgstr "Введите адреса электронной почты, по одному на строку:"
 
-#: ../../mod/invite.php:141 ../../mod/message.php:292
-#: ../../mod/message.php:453
+#: ../../mod/invite.php:143 ../../mod/mail.php:216 ../../mod/mail.php:328
 msgid "Your message:"
 msgstr "Ваше сообщение:"
 
-#: ../../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 social and information tool."
+" Matrix - a revolutionary new decentralised communication and information "
+"tool."
 msgstr ""
 
-#: ../../mod/invite.php:144
+#: ../../mod/invite.php:146
 msgid "You will need to supply this invitation code: $invite_code"
 msgstr ""
 
-#: ../../mod/invite.php:146
+#: ../../mod/invite.php:147
 msgid "Please visit my channel at"
 msgstr "Пожалуйста, посетите мой канал на"
 
-#: ../../mod/invite.php:150
+#: ../../mod/invite.php:151
 msgid ""
-"Once you have registered, please connect with my Red Matrix channel address:"
+"Once you have registered (on ANY Red Matrix site - they are all inter-"
+"connected), please connect with my Red Matrix channel address:"
+msgstr ""
+
+#: ../../mod/invite.php:153
+msgid "Click the [Register] link on the following page to join."
 msgstr ""
 
-#: ../../mod/invite.php:152
+#: ../../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 "
 "http://getzot.com"
 msgstr ""
 
-#: ../../mod/allfriends.php:35
-#, php-format
-msgid "Friends of %s"
-msgstr "Друзья %s"
-
-#: ../../mod/allfriends.php:41
-msgid "No friends to display."
-msgstr "Нет друзей для показа."
-
-#: ../../mod/webpages.php:8 ../../mod/connect.php:13 ../../mod/layouts.php:8
-#: ../../mod/blocks.php:10 ../../mod/profile.php:8 ../../mod/filestorage.php:8
-#: ../../boot.php:1602
-msgid "Requested profile is not available."
-msgstr "Запрашиваемый профиль не доступен."
-
-#: ../../mod/webpages.php:101 ../../mod/layouts.php:92 ../../mod/blocks.php:95
-msgid "View"
-msgstr "Просмотр"
-
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr ""
-
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr ""
-
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Пожалуйста, войдите, чтобы продолжить."
-
-#: ../../mod/api.php:104
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr ""
-
-#: ../../mod/api.php:105 ../../mod/settings.php:978 ../../mod/settings.php:983
-#: ../../mod/settings.php:1006 ../../mod/settings.php:1008
-#: ../../mod/settings.php:1009 ../../mod/settings.php:1010
-#: ../../mod/profiles.php:506
-msgid "Yes"
-msgstr "Да"
-
-#: ../../mod/api.php:106 ../../mod/settings.php:978 ../../mod/settings.php:983
-#: ../../mod/settings.php:1006 ../../mod/settings.php:1008
-#: ../../mod/settings.php:1009 ../../mod/settings.php:1010
-#: ../../mod/profiles.php:507
-msgid "No"
-msgstr "Нет"
-
-#: ../../mod/lastpost.php:16 ../../mod/channel.php:16
-msgid "You must be logged in to see this page."
-msgstr ""
-
-#: ../../mod/apps.php:8
-msgid "No installed applications."
-msgstr "Нет установленных приложений."
-
-#: ../../mod/apps.php:13
-msgid "Applications"
-msgstr "Приложения"
-
-#: ../../mod/page.php:35
-msgid "Invalid item."
-msgstr "Недействительный элемент."
-
-#: ../../mod/page.php:47 ../../mod/chanview.php:78 ../../mod/home.php:51
-#: ../../mod/magic.php:63 ../../mod/wall_upload.php:35
-msgid "Channel not found."
-msgstr "Канал не найден."
-
-#: ../../mod/attach.php:9
-msgid "Item not available."
-msgstr "Элемент недоступен."
-
-#: ../../mod/setup.php:142
-msgid "Red Matrix Server - Setup"
-msgstr "Red Matrix Сервер - Установка"
-
-#: ../../mod/setup.php:148
-msgid "Could not connect to database."
-msgstr "Не удалось подключиться к серверу баз данных."
-
-#: ../../mod/setup.php:152
-msgid ""
-"Could not connect to specified site URL. Possible SSL certificate or DNS "
-"issue."
+#: ../../mod/connedit.php:49 ../../mod/connections.php:37
+msgid "Could not access contact record."
 msgstr ""
 
-#: ../../mod/setup.php:157
-msgid "Could not create table."
-msgstr "Не удалось создать таблицу."
-
-#: ../../mod/setup.php:163
-msgid "Your site database has been installed."
-msgstr "Ваша база данных установлена."
-
-#: ../../mod/setup.php:168
-msgid ""
-"You may need to import the file \"install/database.sql\" manually using "
-"phpmyadmin or mysql."
+#: ../../mod/connedit.php:63 ../../mod/connections.php:51
+msgid "Could not locate selected profile."
 msgstr ""
 
-#: ../../mod/setup.php:169 ../../mod/setup.php:236 ../../mod/setup.php:565
-msgid "Please see the file \"install/INSTALL.txt\"."
-msgstr "Пожалуйста, обратитесь к файлу \"install/INSTALL.txt\"."
-
-#: ../../mod/setup.php:233
-msgid "System check"
-msgstr "Проверка системы"
-
-#: ../../mod/setup.php:238
-msgid "Check again"
-msgstr "Проверить снова"
-
-#: ../../mod/setup.php:260
-msgid "Database connection"
-msgstr "Подключение к базе данных"
+#: ../../mod/connedit.php:104 ../../mod/connections.php:92
+msgid "Connection updated."
+msgstr "Канал обновлен."
 
-#: ../../mod/setup.php:261
-msgid ""
-"In order to install Red Matrix we need to know how to connect to your "
-"database."
+#: ../../mod/connedit.php:106 ../../mod/connections.php:94
+msgid "Failed to update connection record."
 msgstr ""
 
-#: ../../mod/setup.php:262
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
+#: ../../mod/connedit.php:201
+msgid "Could not access address book record."
 msgstr ""
 
-#: ../../mod/setup.php:263
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
+#: ../../mod/connedit.php:215
+msgid "Refresh failed - channel is currently unavailable."
 msgstr ""
 
-#: ../../mod/setup.php:267
-msgid "Database Server Name"
-msgstr "Имя сервера базы данных"
-
-#: ../../mod/setup.php:267
-msgid "Default is localhost"
-msgstr "По умолчанию localhost"
-
-#: ../../mod/setup.php:268
-msgid "Database Port"
-msgstr "Порт базы данных"
-
-#: ../../mod/setup.php:268
-msgid "Communication port number - use 0 for default"
-msgstr "Порт коммуникации - используйте 0 по умолчанию"
-
-#: ../../mod/setup.php:269
-msgid "Database Login Name"
-msgstr "Имя для подключения к базе данных"
-
-#: ../../mod/setup.php:270
-msgid "Database Login Password"
-msgstr "Пароль для подключения к базе данных"
-
-#: ../../mod/setup.php:271
-msgid "Database Name"
-msgstr "Имя базы данных"
+#: ../../mod/connedit.php:222
+msgid "Channel has been unblocked"
+msgstr "Канал разблокирован"
 
-#: ../../mod/setup.php:273 ../../mod/setup.php:315
-msgid "Site administrator email address"
-msgstr "Адрес электронной почты администратора сайта"
+#: ../../mod/connedit.php:223
+msgid "Channel has been blocked"
+msgstr "Канал заблокирован"
 
-#: ../../mod/setup.php:273 ../../mod/setup.php:315
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
+#: ../../mod/connedit.php:227 ../../mod/connedit.php:239
+#: ../../mod/connedit.php:251 ../../mod/connedit.php:263
+#: ../../mod/connedit.php:278
+msgid "Unable to set address book parameters."
 msgstr ""
 
-#: ../../mod/setup.php:274 ../../mod/setup.php:317
-msgid "Website URL"
-msgstr "URL веб-сайта"
-
-#: ../../mod/setup.php:274 ../../mod/setup.php:317
-msgid "Please use SSL (https) URL if available."
-msgstr "Пожалуйста, используйте SSL (https) URL если возможно."
+#: ../../mod/connedit.php:234
+msgid "Channel has been unignored"
+msgstr "Канал не проигнорирован"
 
-#: ../../mod/setup.php:277 ../../mod/setup.php:320
-msgid "Please select a default timezone for your website"
-msgstr ""
+#: ../../mod/connedit.php:235
+msgid "Channel has been ignored"
+msgstr "Канал проигнорирован"
 
-#: ../../mod/setup.php:304
-msgid "Site settings"
-msgstr "Настройки сайта"
+#: ../../mod/connedit.php:246
+msgid "Channel has been unarchived"
+msgstr "Канал разархивирован"
 
-#: ../../mod/setup.php:360
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr ""
+#: ../../mod/connedit.php:247
+msgid "Channel has been archived"
+msgstr "Канал заархивирован"
 
-#: ../../mod/setup.php:361
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run background polling via cron."
-msgstr ""
+#: ../../mod/connedit.php:258
+msgid "Channel has been unhidden"
+msgstr "Канал открыт"
 
-#: ../../mod/setup.php:365
-msgid "PHP executable path"
-msgstr "PHP executable путь"
+#: ../../mod/connedit.php:259
+msgid "Channel has been hidden"
+msgstr "Канал скрыт"
 
-#: ../../mod/setup.php:365
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr ""
+#: ../../mod/connedit.php:273
+msgid "Channel has been approved"
+msgstr "Канал одобрен"
 
-#: ../../mod/setup.php:370
-msgid "Command line PHP"
-msgstr "Command line PHP"
+#: ../../mod/connedit.php:274
+msgid "Channel has been unapproved"
+msgstr "Канал не одобрен"
 
-#: ../../mod/setup.php:379
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr ""
+#: ../../mod/connedit.php:292
+msgid "Contact has been removed."
+msgstr "Канал удален."
 
-#: ../../mod/setup.php:380
-msgid "This is required for message delivery to work."
-msgstr ""
+#: ../../mod/connedit.php:312
+#, php-format
+msgid "View %s's profile"
+msgstr "Просмотр %s's профиля"
 
-#: ../../mod/setup.php:382
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../mod/connedit.php:316
+msgid "Refresh Permissions"
+msgstr "Обновить разрешения"
 
-#: ../../mod/setup.php:403
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
+#: ../../mod/connedit.php:319
+msgid "Fetch updated permissions"
 msgstr ""
 
-#: ../../mod/setup.php:404
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
+#: ../../mod/connedit.php:323
+msgid "Recent Activity"
 msgstr ""
 
-#: ../../mod/setup.php:406
-msgid "Generate encryption keys"
+#: ../../mod/connedit.php:326
+msgid "View recent posts and comments"
 msgstr ""
 
-#: ../../mod/setup.php:413
-msgid "libCurl PHP module"
-msgstr "libCurl PHP модуль"
+#: ../../mod/connedit.php:330 ../../mod/connedit.php:472
+#: ../../mod/admin.php:695
+msgid "Unblock"
+msgstr "Разрешить"
 
-#: ../../mod/setup.php:414
-msgid "GD graphics PHP module"
-msgstr "GD graphics PHP модуль"
+#: ../../mod/connedit.php:330 ../../mod/connedit.php:472
+#: ../../mod/admin.php:694
+msgid "Block"
+msgstr "Заблокировать"
 
-#: ../../mod/setup.php:415
-msgid "OpenSSL PHP module"
-msgstr "OpenSSL PHP модуль"
+#: ../../mod/connedit.php:333
+msgid "Block or Unblock this connection"
+msgstr "Запретить или разрешить этот канал"
 
-#: ../../mod/setup.php:416
-msgid "mysqli PHP module"
-msgstr "mysqli PHP модуль"
+#: ../../mod/connedit.php:337 ../../mod/connedit.php:473
+msgid "Unignore"
+msgstr "Не игнорировать"
 
-#: ../../mod/setup.php:417
-msgid "mb_string PHP module"
-msgstr "mb_string PHP модуль"
+#: ../../mod/connedit.php:337 ../../mod/connedit.php:473
+#: ../../mod/notifications.php:51
+msgid "Ignore"
+msgstr "Игнорировать"
 
-#: ../../mod/setup.php:418
-msgid "mcrypt PHP module"
-msgstr "mcrypt PHP модуль"
+#: ../../mod/connedit.php:340
+msgid "Ignore or Unignore this connection"
+msgstr "Игнорировать или не игнорировать этот канал"
 
-#: ../../mod/setup.php:423 ../../mod/setup.php:425
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite модуль"
+#: ../../mod/connedit.php:343
+msgid "Unarchive"
+msgstr "Разархивировать"
 
-#: ../../mod/setup.php:423
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr ""
+#: ../../mod/connedit.php:343
+msgid "Archive"
+msgstr "Заархивировать"
 
-#: ../../mod/setup.php:429 ../../mod/setup.php:432
-msgid "proc_open"
-msgstr "proc_open"
+#: ../../mod/connedit.php:346
+msgid "Archive or Unarchive this connection"
+msgstr " Заархивировать или разархивировать этот канал"
 
-#: ../../mod/setup.php:429
-msgid ""
-"Error: proc_open is required but is either not installed or has been "
-"disabled in php.ini"
-msgstr ""
+#: ../../mod/connedit.php:349
+msgid "Unhide"
+msgstr "Показать"
 
-#: ../../mod/setup.php:437
-msgid "Error: libCURL PHP module required but not installed."
-msgstr ""
+#: ../../mod/connedit.php:349
+msgid "Hide"
+msgstr "Скрыть"
 
-#: ../../mod/setup.php:441
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr ""
+#: ../../mod/connedit.php:352
+msgid "Hide or Unhide this connection"
+msgstr "Скрыть или показывать этот канал"
 
-#: ../../mod/setup.php:445
-msgid "Error: openssl PHP module required but not installed."
-msgstr ""
+#: ../../mod/connedit.php:359
+msgid "Delete this connection"
+msgstr "Удалить этот контакт"
 
-#: ../../mod/setup.php:449
-msgid "Error: mysqli PHP module required but not installed."
-msgstr ""
+#: ../../mod/connedit.php:392
+msgid "Unknown"
+msgstr "Неизвестный"
 
-#: ../../mod/setup.php:453
-msgid "Error: mb_string PHP module required but not installed."
-msgstr ""
+#: ../../mod/connedit.php:402 ../../mod/connedit.php:431
+msgid "Approve this connection"
+msgstr "Утвердить этот контакт"
 
-#: ../../mod/setup.php:457
-msgid "Error: mcrypt PHP module required but not installed."
+#: ../../mod/connedit.php:402
+msgid "Accept connection to allow communication"
 msgstr ""
 
-#: ../../mod/setup.php:473
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr ""
+#: ../../mod/connedit.php:418
+msgid "Automatic Permissions Settings"
+msgstr "Настройки автоматических разрешений"
 
-#: ../../mod/setup.php:474
-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."
+#: ../../mod/connedit.php:418
+#, php-format
+msgid "Connections: settings for %s"
 msgstr ""
 
-#: ../../mod/setup.php:475
+#: ../../mod/connedit.php:422
 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."
+"When receiving a channel introduction, any permissions provided here will be"
+" applied to the new connection automatically and the introduction approved. "
+"Leave this page if you do not wish to use this feature."
 msgstr ""
 
-#: ../../mod/setup.php:476
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"install/INSTALL.txt\" for instructions."
+#: ../../mod/connedit.php:424
+msgid "Slide to adjust your degree of friendship"
 msgstr ""
 
-#: ../../mod/setup.php:479
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php доступен для записи"
+#: ../../mod/connedit.php:430
+msgid "inherited"
+msgstr "унаследованный"
 
-#: ../../mod/setup.php:489
-msgid ""
-"Red uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
+#: ../../mod/connedit.php:432
+msgid "Connection has no individual permissions!"
 msgstr ""
 
-#: ../../mod/setup.php:490
+#: ../../mod/connedit.php:433
 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."
+"This may be appropriate based on your <a href=\"settings\">privacy "
+"settings</a>, though you may wish to review the \"Advanced Permissions\"."
 msgstr ""
 
-#: ../../mod/setup.php:491
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr ""
+#: ../../mod/connedit.php:435
+msgid "Profile Visibility"
+msgstr "Видимость профиля"
 
-#: ../../mod/setup.php:492
+#: ../../mod/connedit.php:436
+#, php-format
 msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/tpl/smarty3/ only--not the template files (.tpl) that it contains."
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
 msgstr ""
 
-#: ../../mod/setup.php:495
-msgid "view/tpl/smarty3 is writable"
-msgstr "view/tpl/smarty3 доступен для записи"
+#: ../../mod/connedit.php:437
+msgid "Contact Information / Notes"
+msgstr "Информация / Примечания о канале"
 
-#: ../../mod/setup.php:509
-msgid "SSL certificate validation"
-msgstr "проверка сертификата SSL"
+#: ../../mod/connedit.php:438
+msgid "Edit contact notes"
+msgstr "Редактировать примечания канала"
 
-#: ../../mod/setup.php:509
-msgid ""
-"SSL certificate cannot be validated. Fix certificate or disable https access"
-" to this site."
-msgstr ""
+#: ../../mod/connedit.php:440
+msgid "Their Settings"
+msgstr "Их настройки"
 
-#: ../../mod/setup.php:516
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr ""
+#: ../../mod/connedit.php:441
+msgid "My Settings"
+msgstr "Мои настройки"
 
-#: ../../mod/setup.php:518
-msgid "Url rewrite is working"
-msgstr "Url rewrite работает"
+#: ../../mod/connedit.php:443
+msgid "Forum Members"
+msgstr "Участники форума"
 
-#: ../../mod/setup.php:528
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr ""
+#: ../../mod/connedit.php:444
+msgid "Soapbox"
+msgstr "Soapbox"
 
-#: ../../mod/setup.php:552
-msgid "Errors encountered creating database tables."
+#: ../../mod/connedit.php:445
+msgid "Full Sharing"
+msgstr "Полный обмен"
+
+#: ../../mod/connedit.php:446
+msgid "Cautious Sharing"
 msgstr ""
 
-#: ../../mod/setup.php:563
-msgid "<h1>What next</h1>"
-msgstr "<h1>Что дальше</h1>"
+#: ../../mod/connedit.php:447
+msgid "Follow Only"
+msgstr "Только следовать"
 
-#: ../../mod/setup.php:564
+#: ../../mod/connedit.php:448
+msgid "Individual Permissions"
+msgstr "Индивидуальные разрешения"
+
+#: ../../mod/connedit.php:449
 msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
+"Some permissions may be inherited from your channel <a "
+"href=\"settings\">privacy settings</a>, which have higher priority. Changing"
+" those inherited settings on this page will have no effect."
 msgstr ""
 
-#: ../../mod/subthread.php:105
+#: ../../mod/connedit.php:450
+msgid "Advanced Permissions"
+msgstr "Дополнительные разрешения"
+
+#: ../../mod/connedit.php:451
+msgid "Quick Links"
+msgstr "Быстрые ссылки"
+
+#: ../../mod/connedit.php:455
 #, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s следит %2$s's %3$s"
+msgid "Visit %s's profile - %s"
+msgstr "Посетить %s's ​​профиль - %s"
 
-#: ../../mod/update_network.php:23 ../../mod/update_channel.php:43
-#: ../../mod/update_search.php:46 ../../mod/update_display.php:25
-#: ../../mod/update_community.php:18
-msgid "[Embedded content - reload page to view]"
-msgstr ""
+#: ../../mod/connedit.php:456
+msgid "Block/Unblock contact"
+msgstr "Запретить/разрешить контакт"
 
-#: ../../mod/chanview.php:94
-msgid "toggle full screen mode"
-msgstr "переключение полноэкранного режима"
+#: ../../mod/connedit.php:457
+msgid "Ignore contact"
+msgstr "Игнорировать контакт"
 
-#: ../../mod/tagger.php:98
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr ""
+#: ../../mod/connedit.php:458
+msgid "Repair URL settings"
+msgstr "Ремонт настройки URL"
 
-#: ../../mod/settings.php:51
-msgid "Account settings"
-msgstr "Настройки аккаунта"
+#: ../../mod/connedit.php:459
+msgid "View conversations"
+msgstr "Просмотр разговоров"
 
-#: ../../mod/settings.php:57
-msgid "Channel settings"
-msgstr "Настройки канала"
+#: ../../mod/connedit.php:461
+msgid "Delete contact"
+msgstr "Удалить контакт"
 
-#: ../../mod/settings.php:63
-msgid "Additional features"
-msgstr "Дополнительные функции"
+#: ../../mod/connedit.php:464
+msgid "Last update:"
+msgstr "Последнее обновление:"
 
-#: ../../mod/settings.php:69
-msgid "Feature settings"
-msgstr "Настройки компонентов"
+#: ../../mod/connedit.php:466
+msgid "Update public posts"
+msgstr "Обновить публичные сообщения"
 
-#: ../../mod/settings.php:75
-msgid "Display settings"
-msgstr "Настройки отображения"
+#: ../../mod/connedit.php:468
+msgid "Update now"
+msgstr "Обновить сейчас"
+
+#: ../../mod/connedit.php:474
+msgid "Currently blocked"
+msgstr "В настоящее время заблокирован"
+
+#: ../../mod/connedit.php:475
+msgid "Currently ignored"
+msgstr "В настоящее время игнорируются"
+
+#: ../../mod/connedit.php:476
+msgid "Currently archived"
+msgstr "В настоящее время зархивированны"
+
+#: ../../mod/connedit.php:477
+msgid "Currently pending"
+msgstr "В настоящее время в ожидании"
+
+#: ../../mod/connedit.php:478
+msgid "Hide this contact from others"
+msgstr "Скрыть этот канал от других"
+
+#: ../../mod/connedit.php:478
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr ""
+
+#: ../../mod/webpages.php:121 ../../mod/layouts.php:105
+#: ../../mod/blocks.php:96
+msgid "View"
+msgstr "Просмотр"
+
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr ""
+
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr ""
 
-#: ../../mod/settings.php:81
-msgid "Connected apps"
-msgstr "Подключенные приложения"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Пожалуйста, войдите, чтобы продолжить."
 
-#: ../../mod/settings.php:87
-msgid "Export channel"
-msgstr "Экспорт канала"
+#: ../../mod/api.php:104
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr ""
 
-#: ../../mod/settings.php:99
-msgid "Automatic Permissions (Advanced)"
-msgstr "Автоматические разрешения (дополнительно)"
+#: ../../mod/api.php:105 ../../mod/profiles.php:495 ../../mod/settings.php:865
+#: ../../mod/settings.php:870
+msgid "Yes"
+msgstr "Да"
 
-#: ../../mod/settings.php:109
-msgid "Premium Channel Settings"
-msgstr ""
+#: ../../mod/api.php:106 ../../mod/profiles.php:496 ../../mod/settings.php:865
+#: ../../mod/settings.php:870
+msgid "No"
+msgstr "Нет"
 
-#: ../../mod/settings.php:158
-msgid "Missing some important data!"
-msgstr "Отсутствуют некоторые важные данные!"
+#: ../../mod/apps.php:8
+msgid "No installed applications."
+msgstr "Нет установленных приложений."
 
-#: ../../mod/settings.php:161 ../../mod/settings.php:647
-msgid "Update"
-msgstr "Обновление"
+#: ../../mod/apps.php:13
+msgid "Applications"
+msgstr "Приложения"
 
-#: ../../mod/settings.php:274
-msgid "Passwords do not match. Password unchanged."
-msgstr "Пароли не совпадают. Пароль не изменён."
+#: ../../mod/page.php:35
+msgid "Invalid item."
+msgstr "Недействительный элемент."
 
-#: ../../mod/settings.php:278
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Пустые пароли не допускаются. Пароль не изменён."
+#: ../../mod/page.php:47 ../../mod/chanview.php:77 ../../mod/home.php:50
+#: ../../mod/wall_upload.php:35
+msgid "Channel not found."
+msgstr "Канал не найден."
 
-#: ../../mod/settings.php:291
-msgid "Password changed."
-msgstr "Пароль изменен."
+#: ../../mod/page.php:83 ../../mod/help.php:71 ../../mod/display.php:100
+#: ../../index.php:227
+msgid "Page not found."
+msgstr "Страница не найдена."
 
-#: ../../mod/settings.php:293
-msgid "Password update failed. Please try again."
-msgstr "Изменение пароля закончилось неуспешно. Пожалуйста, попробуйте еще раз."
+#: ../../mod/attach.php:9
+msgid "Item not available."
+msgstr "Элемент недоступен."
 
-#: ../../mod/settings.php:307
-msgid "Not valid email."
-msgstr "Не действительный адрес электронной почты."
+#: ../../mod/setup.php:161
+msgid "Red Matrix Server - Setup"
+msgstr "Red Matrix Сервер - Установка"
 
-#: ../../mod/settings.php:310
-msgid "Protected email address. Cannot change to that email."
-msgstr ""
+#: ../../mod/setup.php:167
+msgid "Could not connect to database."
+msgstr "Не удалось подключиться к серверу баз данных."
 
-#: ../../mod/settings.php:319
-msgid "System failure storing new email. Please try again."
+#: ../../mod/setup.php:171
+msgid ""
+"Could not connect to specified site URL. Possible SSL certificate or DNS "
+"issue."
 msgstr ""
 
-#: ../../mod/settings.php:549
-msgid "Settings updated."
-msgstr "Настройки обновленны."
-
-#: ../../mod/settings.php:620 ../../mod/settings.php:646
-#: ../../mod/settings.php:682
-msgid "Add application"
-msgstr "Добавить приложения"
+#: ../../mod/setup.php:176
+msgid "Could not create table."
+msgstr "Не удалось создать таблицу."
 
-#: ../../mod/settings.php:622 ../../mod/settings.php:648
-#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81
-#: ../../mod/fbrowser.php:116
-msgid "Cancel"
-msgstr "Отменить"
+#: ../../mod/setup.php:182
+msgid "Your site database has been installed."
+msgstr "Ваша база данных установлена."
 
-#: ../../mod/settings.php:623 ../../mod/settings.php:649
-#: ../../mod/admin.php:636 ../../mod/crepair.php:148
-msgid "Name"
-msgstr "Имя"
+#: ../../mod/setup.php:187
+msgid ""
+"You may need to import the file \"install/database.sql\" manually using "
+"phpmyadmin or mysql."
+msgstr ""
 
-#: ../../mod/settings.php:624 ../../mod/settings.php:650
-msgid "Consumer Key"
-msgstr "Ключ клиента"
+#: ../../mod/setup.php:188 ../../mod/setup.php:257 ../../mod/setup.php:606
+msgid "Please see the file \"install/INSTALL.txt\"."
+msgstr "Пожалуйста, обратитесь к файлу \"install/INSTALL.txt\"."
 
-#: ../../mod/settings.php:625 ../../mod/settings.php:651
-msgid "Consumer Secret"
-msgstr "Секрет клиента"
+#: ../../mod/setup.php:254
+msgid "System check"
+msgstr "Проверка системы"
 
-#: ../../mod/settings.php:626 ../../mod/settings.php:652
-msgid "Redirect"
-msgstr "Перенаправление"
+#: ../../mod/setup.php:259
+msgid "Check again"
+msgstr "Проверить снова"
 
-#: ../../mod/settings.php:627 ../../mod/settings.php:653
-msgid "Icon url"
-msgstr "URL-адрес значка"
+#: ../../mod/setup.php:281
+msgid "Database connection"
+msgstr "Подключение к базе данных"
 
-#: ../../mod/settings.php:638
-msgid "You can't edit this application."
-msgstr "Вы не можете редактировать это приложение."
+#: ../../mod/setup.php:282
+msgid ""
+"In order to install Red Matrix we need to know how to connect to your "
+"database."
+msgstr ""
 
-#: ../../mod/settings.php:681
-msgid "Connected Apps"
-msgstr "Подключенные приложения"
+#: ../../mod/setup.php:283
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr ""
 
-#: ../../mod/settings.php:685
-msgid "Client key starts with"
+#: ../../mod/setup.php:284
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
 msgstr ""
 
-#: ../../mod/settings.php:686
-msgid "No name"
-msgstr "Без названия"
+#: ../../mod/setup.php:288
+msgid "Database Server Name"
+msgstr "Имя сервера базы данных"
 
-#: ../../mod/settings.php:687
-msgid "Remove authorization"
-msgstr "Удалить разрешение"
+#: ../../mod/setup.php:288
+msgid "Default is localhost"
+msgstr "По умолчанию localhost"
 
-#: ../../mod/settings.php:698
-msgid "No feature settings configured"
-msgstr "Параметры функций не настроены"
+#: ../../mod/setup.php:289
+msgid "Database Port"
+msgstr "Порт базы данных"
 
-#: ../../mod/settings.php:706
-msgid "Feature Settings"
-msgstr "Настройки функции"
+#: ../../mod/setup.php:289
+msgid "Communication port number - use 0 for default"
+msgstr "Порт коммуникации - используйте 0 по умолчанию"
 
-#: ../../mod/settings.php:729
-msgid "Account Settings"
-msgstr "Настройки аккаунта"
+#: ../../mod/setup.php:290
+msgid "Database Login Name"
+msgstr "Имя для подключения к базе данных"
 
-#: ../../mod/settings.php:730
-msgid "Password Settings"
-msgstr "Настройки пароля"
+#: ../../mod/setup.php:291
+msgid "Database Login Password"
+msgstr "Пароль для подключения к базе данных"
 
-#: ../../mod/settings.php:731
-msgid "New Password:"
-msgstr "Новый пароль:"
+#: ../../mod/setup.php:292
+msgid "Database Name"
+msgstr "Имя базы данных"
 
-#: ../../mod/settings.php:732
-msgid "Confirm:"
-msgstr "Подтверждение:"
+#: ../../mod/setup.php:294 ../../mod/setup.php:336
+msgid "Site administrator email address"
+msgstr "Адрес электронной почты администратора сайта"
 
-#: ../../mod/settings.php:732
-msgid "Leave password fields blank unless changing"
-msgstr "Оставьте поля пустыми, если не меняется"
+#: ../../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 ""
 
-#: ../../mod/settings.php:734 ../../mod/settings.php:1032
-msgid "Email Address:"
-msgstr "Адрес электронной почты:"
+#: ../../mod/setup.php:295 ../../mod/setup.php:338
+msgid "Website URL"
+msgstr "URL веб-сайта"
 
-#: ../../mod/settings.php:735
-msgid "Remove Account"
-msgstr "Удалить аккаунт"
+#: ../../mod/setup.php:295 ../../mod/setup.php:338
+msgid "Please use SSL (https) URL if available."
+msgstr "Пожалуйста, используйте SSL (https) URL если возможно."
 
-#: ../../mod/settings.php:736
-msgid "Warning: This action is permanent and cannot be reversed."
+#: ../../mod/setup.php:298 ../../mod/setup.php:341
+msgid "Please select a default timezone for your website"
 msgstr ""
 
-#: ../../mod/settings.php:752
-msgid "Off"
-msgstr "Выкл."
-
-#: ../../mod/settings.php:752
-msgid "On"
-msgstr "Вкл."
+#: ../../mod/setup.php:325
+msgid "Site settings"
+msgstr "Настройки сайта"
 
-#: ../../mod/settings.php:759
-msgid "Additional Features"
-msgstr "Дополнительные функции"
+#: ../../mod/setup.php:381
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr ""
 
-#: ../../mod/settings.php:784
-msgid "Connector Settings"
-msgstr "Настройки соединителя"
+#: ../../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 ""
 
-#: ../../mod/settings.php:814 ../../mod/admin.php:361
-msgid "No special theme for mobile devices"
-msgstr "Нет специальной темы для мобильных устройств"
+#: ../../mod/setup.php:386
+msgid "PHP executable path"
+msgstr "PHP executable путь"
 
-#: ../../mod/settings.php:854
-msgid "Display Settings"
-msgstr "Настройки отображения"
+#: ../../mod/setup.php:386
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr ""
 
-#: ../../mod/settings.php:860
-msgid "Display Theme:"
-msgstr "Тема отображения:"
+#: ../../mod/setup.php:391
+msgid "Command line PHP"
+msgstr "Command line PHP"
 
-#: ../../mod/settings.php:861
-msgid "Mobile Theme:"
-msgstr "Мобильная тема отображения:"
+#: ../../mod/setup.php:400
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr ""
 
-#: ../../mod/settings.php:862
-msgid "Update browser every xx seconds"
-msgstr "Обновление браузера каждые ХХ секунд"
+#: ../../mod/setup.php:401
+msgid "This is required for message delivery to work."
+msgstr ""
 
-#: ../../mod/settings.php:862
-msgid "Minimum of 10 seconds, no maximum"
-msgstr "Минимум 10 секунд, без максимума"
+#: ../../mod/setup.php:403
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../mod/settings.php:863
-msgid "Maximum number of conversations to load at any time:"
+#: ../../mod/setup.php:424
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
 msgstr ""
 
-#: ../../mod/settings.php:863
-msgid "Maximum of 100 items"
-msgstr "Максимум 100 элементов"
+#: ../../mod/setup.php:425
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr ""
 
-#: ../../mod/settings.php:864
-msgid "Don't show emoticons"
-msgstr "Не показывать emoticons"
+#: ../../mod/setup.php:427
+msgid "Generate encryption keys"
+msgstr ""
 
-#: ../../mod/settings.php:900
-msgid "Nobody except yourself"
-msgstr "Никто, кроме вас"
+#: ../../mod/setup.php:434
+msgid "libCurl PHP module"
+msgstr "libCurl PHP модуль"
 
-#: ../../mod/settings.php:901
-msgid "Only those you specifically allow"
-msgstr "Только комы вы разрешили"
+#: ../../mod/setup.php:435
+msgid "GD graphics PHP module"
+msgstr "GD graphics PHP модуль"
 
-#: ../../mod/settings.php:902
-msgid "Anybody in your address book"
-msgstr "Любой в вашей адресной книге"
+#: ../../mod/setup.php:436
+msgid "OpenSSL PHP module"
+msgstr "OpenSSL PHP модуль"
 
-#: ../../mod/settings.php:903
-msgid "Anybody on this website"
-msgstr "Любой на этом веб-сайте"
+#: ../../mod/setup.php:437
+msgid "mysqli PHP module"
+msgstr "mysqli PHP модуль"
 
-#: ../../mod/settings.php:904
-msgid "Anybody in this network"
-msgstr "Любой в этой сети"
+#: ../../mod/setup.php:438
+msgid "mb_string PHP module"
+msgstr "mb_string PHP модуль"
 
-#: ../../mod/settings.php:905
-msgid "Anybody on the internet"
-msgstr "Любой в интернете"
+#: ../../mod/setup.php:439
+msgid "mcrypt PHP module"
+msgstr "mcrypt PHP модуль"
 
-#: ../../mod/settings.php:978
-msgid "Publish your default profile in the network directory"
-msgstr "Публикация вашего профиля по умолчанию в каталоге сети"
+#: ../../mod/setup.php:444 ../../mod/setup.php:446
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite модуль"
 
-#: ../../mod/settings.php:983
-msgid "Allow us to suggest you as a potential friend to new members?"
+#: ../../mod/setup.php:444
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
 msgstr ""
 
-#: ../../mod/settings.php:987 ../../mod/profile_photo.php:298
-msgid "or"
-msgstr "или"
-
-#: ../../mod/settings.php:992
-msgid "Your channel address is"
-msgstr "Адрес вашего канала:"
+#: ../../mod/setup.php:450 ../../mod/setup.php:453
+msgid "proc_open"
+msgstr "proc_open"
 
-#: ../../mod/settings.php:1003
-msgid "Automatically expire posts after this many days:"
+#: ../../mod/setup.php:450
+msgid ""
+"Error: proc_open is required but is either not installed or has been "
+"disabled in php.ini"
 msgstr ""
 
-#: ../../mod/settings.php:1003
-msgid "If empty, posts will not expire. Expired posts will be deleted"
+#: ../../mod/setup.php:458
+msgid "Error: libCURL PHP module required but not installed."
 msgstr ""
 
-#: ../../mod/settings.php:1004
-msgid "Advanced expiration settings"
+#: ../../mod/setup.php:462
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
 msgstr ""
 
-#: ../../mod/settings.php:1005
-msgid "Advanced Expiration"
-msgstr "Дополнительное истечение срока давности"
-
-#: ../../mod/settings.php:1006
-msgid "Expire posts:"
+#: ../../mod/setup.php:466
+msgid "Error: openssl PHP module required but not installed."
 msgstr ""
 
-#: ../../mod/settings.php:1008
-msgid "Expire starred posts:"
+#: ../../mod/setup.php:470
+msgid "Error: mysqli PHP module required but not installed."
 msgstr ""
 
-#: ../../mod/settings.php:1009
-msgid "Expire photos:"
+#: ../../mod/setup.php:474
+msgid "Error: mb_string PHP module required but not installed."
 msgstr ""
 
-#: ../../mod/settings.php:1010
-msgid "Only expire posts by others:"
+#: ../../mod/setup.php:478
+msgid "Error: mcrypt PHP module required but not installed."
 msgstr ""
 
-#: ../../mod/settings.php:1021
-msgid "Channel Settings"
-msgstr "Настройки канала"
-
-#: ../../mod/settings.php:1030
-msgid "Basic Settings"
-msgstr "Основные настройки"
-
-#: ../../mod/settings.php:1033
-msgid "Your Timezone:"
-msgstr "Ваш часовой пояс:"
-
-#: ../../mod/settings.php:1034
-msgid "Default Post Location:"
-msgstr "Откуда по умолчанию:"
-
-#: ../../mod/settings.php:1035
-msgid "Use Browser Location:"
-msgstr "Используйте указание браузерa:"
-
-#: ../../mod/settings.php:1038
-msgid "Security and Privacy Settings"
-msgstr "Параметры безопасности и конфиденциальности"
-
-#: ../../mod/settings.php:1040
-msgid "Quick Privacy Settings:"
-msgstr "Быстрые параметры безопасности и конфиденциальности:"
-
-#: ../../mod/settings.php:1041
-msgid "Very Public - extremely permissive"
-msgstr "Очень публично - чрезвычайно разрешающе"
-
-#: ../../mod/settings.php:1042
-msgid "Typical - default public, privacy when desired"
-msgstr "Типично - по умолчанию публично, конфиденциальность, только если настроена"
-
-#: ../../mod/settings.php:1043
-msgid "Private - default private, rarely open or public"
-msgstr "Частно  - по умолчанию частно, редко открыто или публично"
-
-#: ../../mod/settings.php:1044
-msgid "Blocked - default blocked to/from everybody"
-msgstr "Заблокированно - по умолчанию заблокировано для/от всех"
+#: ../../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 ""
 
-#: ../../mod/settings.php:1047
-msgid "Maximum Friend Requests/Day:"
+#: ../../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 ""
 
-#: ../../mod/settings.php:1047
-msgid "May reduce spam activity"
+#: ../../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 ""
 
-#: ../../mod/settings.php:1048
-msgid "Default Post Permissions"
+#: ../../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 ""
 
-#: ../../mod/settings.php:1049
-msgid "(click to open/close)"
-msgstr "(нажмите, чтобы открыть / закрыть)"
+#: ../../mod/setup.php:500
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php доступен для записи"
 
-#: ../../mod/settings.php:1062
-msgid "Maximum private messages per day from unknown people:"
+#: ../../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 ""
 
-#: ../../mod/settings.php:1062
-msgid "Useful to reduce spamming"
+#: ../../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 ""
 
-#: ../../mod/settings.php:1065
-msgid "Notification Settings"
-msgstr "Настройки уведомлений"
-
-#: ../../mod/settings.php:1066
-msgid "By default post a status message when:"
+#: ../../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 ""
 
-#: ../../mod/settings.php:1067
-msgid "accepting a friend request"
+#: ../../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 ""
 
-#: ../../mod/settings.php:1068
-msgid "joining a forum/community"
-msgstr ""
+#: ../../mod/setup.php:516
+msgid "view/tpl/smarty3 is writable"
+msgstr "view/tpl/smarty3 доступен для записи"
 
-#: ../../mod/settings.php:1069
-msgid "making an <em>interesting</em> profile change"
+#: ../../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 ""
 
-#: ../../mod/settings.php:1070
-msgid "Send a notification email when:"
-msgstr "Отправить уведомление по электронной почте, если:"
+#: ../../mod/setup.php:533
+msgid "store is writable"
+msgstr ""
 
-#: ../../mod/settings.php:1071
-msgid "You receive an introduction"
-msgstr "Вы получили введение"
+#: ../../mod/setup.php:548
+msgid "SSL certificate validation"
+msgstr "проверка сертификата SSL"
 
-#: ../../mod/settings.php:1072
-msgid "Your introductions are confirmed"
+#: ../../mod/setup.php:548
+msgid ""
+"SSL certificate cannot be validated. Fix certificate or disable https access"
+" to this site."
 msgstr ""
 
-#: ../../mod/settings.php:1073
-msgid "Someone writes on your profile wall"
+#: ../../mod/setup.php:555
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
 msgstr ""
 
-#: ../../mod/settings.php:1074
-msgid "Someone writes a followup comment"
-msgstr ""
+#: ../../mod/setup.php:557
+msgid "Url rewrite is working"
+msgstr "Url rewrite работает"
 
-#: ../../mod/settings.php:1075
-msgid "You receive a private message"
+#: ../../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 ""
 
-#: ../../mod/settings.php:1076
-msgid "You receive a friend suggestion"
+#: ../../mod/setup.php:591
+msgid "Errors encountered creating database tables."
 msgstr ""
 
-#: ../../mod/settings.php:1077
-msgid "You are tagged in a post"
-msgstr ""
+#: ../../mod/setup.php:604
+msgid "<h1>What next</h1>"
+msgstr "<h1>Что дальше</h1>"
 
-#: ../../mod/settings.php:1078
-msgid "You are poked/prodded/etc. in a post"
+#: ../../mod/setup.php:605
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
 msgstr ""
 
-#: ../../mod/settings.php:1081
-msgid "Advanced Account/Page Type Settings"
+#: ../../mod/rpost.php:84 ../../mod/editpost.php:42
+msgid "Edit post"
+msgstr "Редактировать сообщение"
+
+#: ../../mod/subthread.php:105
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s следит %2$s's %3$s"
+
+#: ../../mod/update_network.php:23 ../../mod/update_channel.php:43
+#: ../../mod/update_search.php:46 ../../mod/update_display.php:25
+#: ../../mod/update_community.php:18
+msgid "[Embedded content - reload page to view]"
 msgstr ""
 
-#: ../../mod/settings.php:1082
-msgid "Change the behaviour of this account for special situations"
+#: ../../mod/chanview.php:97
+msgid "toggle full screen mode"
+msgstr "переключение полноэкранного режима"
+
+#: ../../mod/tagger.php:98
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
 msgstr ""
 
-#: ../../mod/viewconnections.php:28 ../../mod/directory.php:23
-#: ../../mod/photos.php:561 ../../mod/display.php:9 ../../mod/search.php:80
-#: ../../mod/community.php:18
+#: ../../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 "Общественный доступ запрещен."
 
-#: ../../mod/viewconnections.php:57
+#: ../../mod/viewconnections.php:43
 msgid "No connections."
 msgstr "Никаких связей."
 
-#: ../../mod/viewconnections.php:69 ../../mod/nogroup.php:40
+#: ../../mod/viewconnections.php:55
 #, php-format
 msgid "Visit %s's profile [%s]"
 msgstr "Посетить %s's ​​профиль [%s]"
 
-#: ../../mod/viewconnections.php:84
+#: ../../mod/viewconnections.php:70
 msgid "View Connnections"
 msgstr "Просмотр контактов"
 
@@ -3759,46 +4123,46 @@ msgstr "Выбрать тег для удаления: "
 msgid "Remove"
 msgstr "Удалить"
 
-#: ../../mod/connect.php:59 ../../mod/connect.php:107
+#: ../../mod/connect.php:55 ../../mod/connect.php:103
 msgid "Continue"
 msgstr ""
 
-#: ../../mod/connect.php:88
+#: ../../mod/connect.php:84
 msgid "Premium Channel Setup"
 msgstr ""
 
-#: ../../mod/connect.php:90
+#: ../../mod/connect.php:86
 msgid "Enable premium channel connection restrictions"
 msgstr ""
 
-#: ../../mod/connect.php:91
+#: ../../mod/connect.php:87
 msgid ""
 "Please enter your restrictions or conditions, such as paypal receipt, usage "
 "guidelines, etc."
 msgstr ""
 
-#: ../../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 ""
 
-#: ../../mod/connect.php:94
+#: ../../mod/connect.php:90
 msgid ""
 "Potential connections will then see the following text before proceeding:"
 msgstr ""
 
-#: ../../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 ""
 
-#: ../../mod/connect.php:104
+#: ../../mod/connect.php:100
 msgid "(No specific instructions have been provided by the channel owner.)"
 msgstr ""
 
-#: ../../mod/connect.php:112
+#: ../../mod/connect.php:108
 msgid "Restricted or Premium Channel"
 msgstr ""
 
@@ -3837,1075 +4201,1159 @@ msgstr "Добавить"
 msgid "No entries."
 msgstr "Нет записей."
 
-#: ../../mod/directory.php:125 ../../mod/profiles.php:584
-msgid "Age: "
-msgstr "Возраст:"
-
-#: ../../mod/directory.php:128
-msgid "Gender: "
-msgstr "Пол:"
-
-#: ../../mod/directory.php:183
-msgid "Finding:"
-msgstr "Поиск:"
-
-#: ../../mod/directory.php:191
-msgid "next page"
-msgstr "следующая страница"
-
-#: ../../mod/directory.php:191
-msgid "previous page"
-msgstr "предыдущая страница"
-
-#: ../../mod/directory.php:198
-msgid "No entries (some entries may be hidden)."
-msgstr ""
-
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Поиск людей"
-
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "Нет соответствий"
-
-#: ../../mod/mitem.php:13 ../../mod/menu.php:87
-msgid "Menu not found."
-msgstr ""
-
-#: ../../mod/mitem.php:66
-msgid "Menu element updated."
-msgstr ""
-
-#: ../../mod/mitem.php:70
-msgid "Unable to update menu element."
-msgstr ""
-
-#: ../../mod/mitem.php:76
-msgid "Menu element added."
-msgstr ""
-
-#: ../../mod/mitem.php:80
-msgid "Unable to add menu element."
-msgstr ""
-
-#: ../../mod/mitem.php:97 ../../mod/xchan.php:25 ../../mod/menu.php:113
-msgid "Not found."
-msgstr "Не найдено."
-
-#: ../../mod/mitem.php:116
-msgid "Manage Menu Elements"
-msgstr ""
-
-#: ../../mod/mitem.php:119
-msgid "Edit menu"
+#: ../../mod/sources.php:28
+msgid "Failed to create source. No channel selected."
 msgstr ""
 
-#: ../../mod/mitem.php:122
-msgid "Edit element"
+#: ../../mod/sources.php:41
+msgid "Source created."
 msgstr ""
 
-#: ../../mod/mitem.php:123
-msgid "Drop element"
+#: ../../mod/sources.php:53
+msgid "Source updated."
 msgstr ""
 
-#: ../../mod/mitem.php:124
-msgid "New element"
+#: ../../mod/sources.php:82
+msgid "Manage remote sources of content for your channel."
 msgstr ""
 
-#: ../../mod/mitem.php:125
-msgid "Edit this menu container"
+#: ../../mod/sources.php:83 ../../mod/sources.php:93
+msgid "New Source"
 msgstr ""
 
-#: ../../mod/mitem.php:126
-msgid "Add menu element"
+#: ../../mod/sources.php:94 ../../mod/sources.php:126
+msgid ""
+"Import all or selected content from the following channel into this channel "
+"and distribute it according to your channel settings."
 msgstr ""
 
-#: ../../mod/mitem.php:127
-msgid "Delete this menu item"
+#: ../../mod/sources.php:95 ../../mod/sources.php:127
+msgid "Only import content with these words (one per line)"
 msgstr ""
 
-#: ../../mod/mitem.php:128
-msgid "Edit this menu item"
+#: ../../mod/sources.php:95 ../../mod/sources.php:127
+msgid "Leave blank to import all public content"
 msgstr ""
 
-#: ../../mod/mitem.php:141
-msgid "New Menu Element"
-msgstr ""
+#: ../../mod/sources.php:96 ../../mod/sources.php:130
+#: ../../mod/new_channel.php:110
+msgid "Channel Name"
+msgstr "Имя канала"
 
-#: ../../mod/mitem.php:143 ../../mod/mitem.php:184
-msgid "Link text"
+#: ../../mod/sources.php:116 ../../mod/sources.php:143
+msgid "Source not found."
 msgstr ""
 
-#: ../../mod/mitem.php:144 ../../mod/mitem.php:185
-msgid "URL of link"
+#: ../../mod/sources.php:123
+msgid "Edit Source"
 msgstr ""
 
-#: ../../mod/mitem.php:145 ../../mod/mitem.php:186
-msgid "Use Red magic-auth if available"
+#: ../../mod/sources.php:124
+msgid "Delete Source"
 msgstr ""
 
-#: ../../mod/mitem.php:146 ../../mod/mitem.php:187
-msgid "Open link in new window"
+#: ../../mod/sources.php:151
+msgid "Source removed"
 msgstr ""
 
-#: ../../mod/mitem.php:148 ../../mod/mitem.php:189
-msgid "Order in list"
+#: ../../mod/sources.php:153
+msgid "Unable to remove source."
 msgstr ""
 
-#: ../../mod/mitem.php:148 ../../mod/mitem.php:189
-msgid "Higher numbers will sink to bottom of listing"
-msgstr ""
+#: ../../mod/admin.php:48
+msgid "Theme settings updated."
+msgstr "Настройки темы обновленны."
 
-#: ../../mod/mitem.php:149 ../../mod/menu.php:79 ../../mod/new_channel.php:117
-msgid "Create"
-msgstr "Создать"
+#: ../../mod/admin.php:87 ../../mod/admin.php:419
+msgid "Site"
+msgstr "Сайт"
 
-#: ../../mod/mitem.php:161
-msgid "Menu item not found."
-msgstr ""
+#: ../../mod/admin.php:88 ../../mod/admin.php:685 ../../mod/admin.php:697
+msgid "Users"
+msgstr "Пользователи"
 
-#: ../../mod/mitem.php:170
-msgid "Menu item deleted."
-msgstr ""
+#: ../../mod/admin.php:89 ../../mod/admin.php:783 ../../mod/admin.php:825
+msgid "Plugins"
+msgstr "Плагины"
 
-#: ../../mod/mitem.php:172
-msgid "Menu item could not be deleted."
-msgstr ""
+#: ../../mod/admin.php:90 ../../mod/admin.php:988 ../../mod/admin.php:1024
+msgid "Themes"
+msgstr "Темы"
 
-#: ../../mod/mitem.php:181
-msgid "Edit Menu Element"
-msgstr ""
+#: ../../mod/admin.php:91 ../../mod/admin.php:478
+msgid "Server"
+msgstr "Сервер"
 
-#: ../../mod/mitem.php:190 ../../mod/menu.php:107
-msgid "Modify"
-msgstr ""
+#: ../../mod/admin.php:92
+msgid "DB updates"
+msgstr "Обновления базы данных"
 
-#: ../../mod/group.php:26
-msgid "Collection created."
-msgstr "Коллекция создана."
+#: ../../mod/admin.php:106 ../../mod/admin.php:113 ../../mod/admin.php:1111
+msgid "Logs"
+msgstr "Журналы"
 
-#: ../../mod/group.php:32
-msgid "Could not create collection."
-msgstr "Не удалось создать коллекцию."
+#: ../../mod/admin.php:112
+msgid "Plugin Features"
+msgstr "Функции плагинов"
 
-#: ../../mod/group.php:60
-msgid "Collection name changed."
-msgstr "Имя коллекции изменено."
+#: ../../mod/admin.php:114
+msgid "User registrations waiting for confirmation"
+msgstr "Регистрации пользователей, которые ждут подтверждения"
 
-#: ../../mod/group.php:92
-msgid "Create a collection of channels."
-msgstr "Создать коллекцию контактов"
+#: ../../mod/admin.php:188
+msgid "Message queues"
+msgstr "Очередь недоставленных сообщений"
 
-#: ../../mod/group.php:93 ../../mod/group.php:189
-msgid "Collection Name: "
-msgstr "Название коллекции:"
+#: ../../mod/admin.php:193 ../../mod/admin.php:418 ../../mod/admin.php:477
+#: ../../mod/admin.php:684 ../../mod/admin.php:782 ../../mod/admin.php:824
+#: ../../mod/admin.php:987 ../../mod/admin.php:1023 ../../mod/admin.php:1110
+msgid "Administration"
+msgstr "Администрация"
 
-#: ../../mod/group.php:95 ../../mod/group.php:192
-msgid "Members are visible to other channels"
-msgstr ""
+#: ../../mod/admin.php:194
+msgid "Summary"
+msgstr "Резюме"
 
-#: ../../mod/group.php:113
-msgid "Collection removed."
-msgstr "Коллекция удалена."
+#: ../../mod/admin.php:196
+msgid "Registered users"
+msgstr "Всего пользователeй"
 
-#: ../../mod/group.php:115
-msgid "Unable to remove collection."
-msgstr "Невозможно удалить коллекцию."
+#: ../../mod/admin.php:198 ../../mod/admin.php:481
+msgid "Pending registrations"
+msgstr "Ждут утверждения"
 
-#: ../../mod/group.php:188
-msgid "Collection Editor"
-msgstr "Редактор коллекций"
+#: ../../mod/admin.php:199
+msgid "Version"
+msgstr "Версия системы"
 
-#: ../../mod/group.php:202
-msgid "Members"
-msgstr "Участники"
+#: ../../mod/admin.php:201 ../../mod/admin.php:482
+msgid "Active plugins"
+msgstr "Активные плагины"
 
-#: ../../mod/group.php:204
-msgid "All Connected Channels"
-msgstr "Все подключенные контакы"
+#: ../../mod/admin.php:342
+msgid "Site settings updated."
+msgstr "Настройки сайта обновлены."
 
-#: ../../mod/group.php:237
-msgid "Click on a channel to add or remove."
-msgstr ""
+#: ../../mod/admin.php:371 ../../mod/settings.php:700
+msgid "No special theme for mobile devices"
+msgstr "Нет специальной темы для мобильных устройств"
 
-#: ../../mod/photos.php:83
-msgid "Page owner information could not be retrieved."
+#: ../../mod/admin.php:373
+msgid "No special theme for accessibility"
 msgstr ""
 
-#: ../../mod/photos.php:103
-msgid "Album not found."
-msgstr "Альбом не найден."
-
-#: ../../mod/photos.php:125 ../../mod/photos.php:773
-msgid "Delete Album"
-msgstr "Удалить альбом"
+#: ../../mod/admin.php:398
+msgid "Closed"
+msgstr "Регистрация закрыта"
 
-#: ../../mod/photos.php:165 ../../mod/photos.php:1038
-msgid "Delete Photo"
-msgstr "Удалить фотографию"
+#: ../../mod/admin.php:399
+msgid "Requires approval"
+msgstr "Регистрация требует подтверждения"
 
-#: ../../mod/photos.php:495
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s добавил тег в %2$s на %3$s"
+#: ../../mod/admin.php:400
+msgid "Open"
+msgstr "Регистрация открыта"
 
-#: ../../mod/photos.php:495
-msgid "a photo"
-msgstr "фотография"
+#: ../../mod/admin.php:405
+msgid "Private"
+msgstr "Личный доступ"
 
-#: ../../mod/photos.php:571
-msgid "No photos selected"
-msgstr "Никакие фотографии не выбраны"
+#: ../../mod/admin.php:406
+msgid "Paid Access"
+msgstr "Платный доступ"
 
-#: ../../mod/photos.php:625
-msgid "Access to this item is restricted."
-msgstr "Доступ к этому элементу ограничен."
+#: ../../mod/admin.php:407
+msgid "Free Access"
+msgstr "Свободный доступ"
 
-#: ../../mod/photos.php:689
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+#: ../../mod/admin.php:408
+msgid "Tiered Access"
 msgstr ""
 
-#: ../../mod/photos.php:692
-#, php-format
-msgid "You have used %1$.2f Mbytes of photo storage."
-msgstr ""
+#: ../../mod/admin.php:421 ../../mod/register.php:189
+msgid "Registration"
+msgstr "Регистрация"
 
-#: ../../mod/photos.php:700
-msgid "Upload Photos"
-msgstr "Загрузить фотографии"
+#: ../../mod/admin.php:422
+msgid "File upload"
+msgstr "Загрузка файла"
 
-#: ../../mod/photos.php:704 ../../mod/photos.php:768
-msgid "New album name: "
-msgstr "Название нового альбома:"
+#: ../../mod/admin.php:423
+msgid "Policies"
+msgstr "Правила"
 
-#: ../../mod/photos.php:705
-msgid "or existing album name: "
-msgstr "или существующий альбом:"
+#: ../../mod/admin.php:424
+msgid "Advanced"
+msgstr "Дополнительно"
 
-#: ../../mod/photos.php:706
-msgid "Do not show a status post for this upload"
-msgstr ""
+#: ../../mod/admin.php:428
+msgid "Site name"
+msgstr "Название сайта"
 
-#: ../../mod/photos.php:708 ../../mod/photos.php:1033
-msgid "Permissions"
-msgstr "Разрешения"
+#: ../../mod/admin.php:429
+msgid "Banner/Logo"
+msgstr "Баннер / логотип"
 
-#: ../../mod/photos.php:757 ../../mod/photos.php:779 ../../mod/photos.php:1205
-#: ../../mod/photos.php:1220
-msgid "Contact Photos"
-msgstr "Фотографии контакта"
+#: ../../mod/admin.php:430
+msgid "System language"
+msgstr "Язык системы"
 
-#: ../../mod/photos.php:783
-msgid "Edit Album"
-msgstr "Редактировать Фотоальбом"
+#: ../../mod/admin.php:431
+msgid "System theme"
+msgstr "Тема системы"
 
-#: ../../mod/photos.php:789
-msgid "Show Newest First"
-msgstr "Показать новые первыми"
+#: ../../mod/admin.php:431
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr ""
 
-#: ../../mod/photos.php:791
-msgid "Show Oldest First"
-msgstr "Показать старые первыми"
+#: ../../mod/admin.php:432
+msgid "Mobile system theme"
+msgstr "Мобильная тема системы"
 
-#: ../../mod/photos.php:835 ../../mod/photos.php:1252
-msgid "View Photo"
-msgstr "Посмотреть фотографию"
+#: ../../mod/admin.php:432
+msgid "Theme for mobile devices"
+msgstr "Тема для мобильных устройств"
 
-#: ../../mod/photos.php:879
-msgid "Permission denied. Access to this item may be restricted."
+#: ../../mod/admin.php:433
+msgid "Accessibility system theme"
 msgstr ""
 
-#: ../../mod/photos.php:881
-msgid "Photo not available"
-msgstr "Фотография не доступна"
+#: ../../mod/admin.php:433
+msgid "Accessibility theme"
+msgstr ""
 
-#: ../../mod/photos.php:939
-msgid "Use as profile photo"
-msgstr "Использовать в качестве фотографии профиля"
+#: ../../mod/admin.php:434
+msgid "Channel to use for this website's static pages"
+msgstr ""
 
-#: ../../mod/photos.php:967
-msgid "View Full Size"
-msgstr "Посмотреть в полный размер"
+#: ../../mod/admin.php:434
+msgid "Site Channel"
+msgstr "Канал сайта"
 
-#: ../../mod/photos.php:1021
-msgid "Edit photo"
-msgstr "Редактировать фотографию"
+#: ../../mod/admin.php:436
+msgid "Maximum image size"
+msgstr "Максимальный размер"
 
-#: ../../mod/photos.php:1023
-msgid "Rotate CW (right)"
-msgstr "Повернуть CW (направо)"
+#: ../../mod/admin.php:436
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr ""
 
-#: ../../mod/photos.php:1024
-msgid "Rotate CCW (left)"
-msgstr "Повернуть CCW (налево)"
+#: ../../mod/admin.php:437
+msgid "Register policy"
+msgstr "Статус регистрации"
 
-#: ../../mod/photos.php:1026
-msgid "New album name"
-msgstr "Новое название альбома:"
+#: ../../mod/admin.php:438
+msgid "Access policy"
+msgstr "Правила доступа"
 
-#: ../../mod/photos.php:1029
-msgid "Caption"
-msgstr "Подпись"
+#: ../../mod/admin.php:439
+msgid "Register text"
+msgstr "Текст регистрации"
 
-#: ../../mod/photos.php:1031
-msgid "Add a Tag"
-msgstr "Добавить тег"
+#: ../../mod/admin.php:439
+msgid "Will be displayed prominently on the registration page."
+msgstr ""
 
-#: ../../mod/photos.php:1035
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Например: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+#: ../../mod/admin.php:440
+msgid "Accounts abandoned after x days"
+msgstr ""
 
-#: ../../mod/photos.php:1258
-msgid "View Album"
-msgstr "Посмотреть фотоальбом"
+#: ../../mod/admin.php:440
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr ""
 
-#: ../../mod/photos.php:1267
-msgid "Recent Photos"
-msgstr "Последние фотографии"
+#: ../../mod/admin.php:441
+msgid "Allowed friend domains"
+msgstr ""
 
-#: ../../mod/ping.php:160
-msgid "sent you a private message"
-msgstr "отправил вам личное сообщение"
+#: ../../mod/admin.php:441
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr ""
 
-#: ../../mod/ping.php:218
-msgid "added your channel"
-msgstr "добавил ваш канал"
+#: ../../mod/admin.php:442
+msgid "Allowed email domains"
+msgstr ""
 
-#: ../../mod/ping.php:230 ../../boot.php:1808 ../../boot.php:1888
-msgid "g A l F d"
-msgstr "g A l F d"
+#: ../../mod/admin.php:442
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr ""
 
-#: ../../mod/ping.php:252 ../../boot.php:1854 ../../boot.php:1929
-msgid "[today]"
-msgstr "[сегодня]"
+#: ../../mod/admin.php:443
+msgid "Block public"
+msgstr "Блокировать публичный доступ"
 
-#: ../../mod/ping.php:262
-msgid "posted an event"
+#: ../../mod/admin.php:443
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
 msgstr ""
 
-#: ../../mod/filer.php:35
-msgid "- select -"
-msgstr "- выбрать -"
+#: ../../mod/admin.php:444
+msgid "Force publish"
+msgstr "Заставить публиковать"
 
-#: ../../mod/menu.php:17
-msgid "Menu updated."
+#: ../../mod/admin.php:444
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
 msgstr ""
 
-#: ../../mod/menu.php:21
-msgid "Unable to update menu."
+#: ../../mod/admin.php:445
+msgid "No login on Homepage"
 msgstr ""
 
-#: ../../mod/menu.php:26
-msgid "Menu created."
+#: ../../mod/admin.php:445
+msgid ""
+"Check to hide the login form from your sites homepage when visitors arrive "
+"who are not logged in (e.g. when you put the content of the homepage in via "
+"the site channel)."
 msgstr ""
 
-#: ../../mod/menu.php:30
-msgid "Unable to create menu."
-msgstr ""
+#: ../../mod/admin.php:447
+msgid "Proxy user"
+msgstr "Proxy пользователь"
 
-#: ../../mod/menu.php:53
-msgid "Manage Menus"
+#: ../../mod/admin.php:448
+msgid "Proxy URL"
+msgstr "Proxy URL"
+
+#: ../../mod/admin.php:449
+msgid "Network timeout"
+msgstr "Время ожидания сети"
+
+#: ../../mod/admin.php:449
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr ""
 
-#: ../../mod/menu.php:56
-msgid "Drop"
+#: ../../mod/admin.php:450
+msgid "Delivery interval"
+msgstr "Интервал доставки"
+
+#: ../../mod/admin.php:450
+msgid ""
+"Delay background delivery processes by this many seconds to reduce system "
+"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
+"for large dedicated servers."
 msgstr ""
 
-#: ../../mod/menu.php:57 ../../mod/network.php:298
-#: ../../mod/connections.php:521
-msgid "New"
-msgstr "Новые"
+#: ../../mod/admin.php:451
+msgid "Poll interval"
+msgstr "Интервал опроса"
 
-#: ../../mod/menu.php:58
-msgid "Create a new menu"
+#: ../../mod/admin.php:451
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
 msgstr ""
 
-#: ../../mod/menu.php:59
-msgid "Delete this menu"
+#: ../../mod/admin.php:452
+msgid "Maximum Load Average"
 msgstr ""
 
-#: ../../mod/menu.php:60 ../../mod/menu.php:104
-msgid "Edit menu contents"
+#: ../../mod/admin.php:452
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
 msgstr ""
 
-#: ../../mod/menu.php:61
-msgid "Edit this menu"
-msgstr ""
+#: ../../mod/admin.php:469
+msgid "No server found"
+msgstr "Сервер не найден"
 
-#: ../../mod/menu.php:76
-msgid "New Menu"
+#: ../../mod/admin.php:476 ../../mod/admin.php:698
+msgid "ID"
+msgstr "ID"
+
+#: ../../mod/admin.php:476
+msgid "for channel"
 msgstr ""
 
-#: ../../mod/menu.php:77 ../../mod/menu.php:105
-msgid "Menu name"
+#: ../../mod/admin.php:476
+msgid "on server"
 msgstr ""
 
-#: ../../mod/menu.php:77 ../../mod/menu.php:105
-msgid "Must be unique, only seen by you"
+#: ../../mod/admin.php:476
+msgid "Status"
+msgstr "Статус"
+
+#: ../../mod/admin.php:496
+msgid "Update has been marked successful"
 msgstr ""
 
-#: ../../mod/menu.php:78 ../../mod/menu.php:106
-msgid "Menu title"
+#: ../../mod/admin.php:506
+#, php-format
+msgid "Executing %s failed. Check system logs."
 msgstr ""
 
-#: ../../mod/menu.php:78 ../../mod/menu.php:106
-msgid "Menu title as seen by others"
+#: ../../mod/admin.php:509
+#, php-format
+msgid "Update %s was successfully applied."
 msgstr ""
 
-#: ../../mod/menu.php:93
-msgid "Menu deleted."
+#: ../../mod/admin.php:513
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr ""
 
-#: ../../mod/menu.php:95
-msgid "Menu could not be deleted."
+#: ../../mod/admin.php:516
+#, php-format
+msgid "Update function %s could not be found."
 msgstr ""
 
-#: ../../mod/menu.php:101
-msgid "Edit Menu"
+#: ../../mod/admin.php:531
+msgid "No failed updates."
+msgstr "Ошибок обновлений нет."
+
+#: ../../mod/admin.php:535
+msgid "Failed Updates"
+msgstr "Обновления с ошибками"
+
+#: ../../mod/admin.php:537
+msgid "Mark success (if update was manually applied)"
 msgstr ""
 
-#: ../../mod/menu.php:103
-msgid "Add or remove entries to this menu"
+#: ../../mod/admin.php:538
+msgid "Attempt to execute this update step automatically"
 msgstr ""
 
-#: ../../mod/home.php:76
+#: ../../mod/admin.php:564
 #, php-format
-msgid "Welcome to %s"
-msgstr "Добро пожаловать в %s"
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
-#: ../../mod/message.php:16
-msgid "Check Mail"
-msgstr "Проверить снова"
+#: ../../mod/admin.php:571
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s канал удален"
+msgstr[1] "%s канала удалены"
+msgstr[2] "%s каналов удалено"
 
-#: ../../mod/message.php:52
-msgid "Unable to lookup recipient."
-msgstr ""
+#: ../../mod/admin.php:602
+msgid "Account not found"
+msgstr "Аккаунт не найден"
 
-#: ../../mod/message.php:60
-msgid "Unable to communicate with requested channel."
-msgstr ""
+#: ../../mod/admin.php:613
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Пользователь '%s' удален"
 
-#: ../../mod/message.php:67
-msgid "Cannot verify requested channel."
-msgstr ""
+#: ../../mod/admin.php:622
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Пользователь '%s' разрешен"
 
-#: ../../mod/message.php:93
-msgid "Selected channel has private message restrictions. Send failed."
-msgstr ""
+#: ../../mod/admin.php:622
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Пользователь '%s' заблокирован"
 
-#: ../../mod/message.php:213 ../../mod/notifications.php:101
-msgid "Messages"
-msgstr "Переписка"
+#: ../../mod/admin.php:687
+msgid "select all"
+msgstr "выбрать все"
 
-#: ../../mod/message.php:224
-msgid "Message deleted."
-msgstr "Сообщение удалено."
+#: ../../mod/admin.php:688
+msgid "User registrations waiting for confirm"
+msgstr "Регистрации пользователей ждут подтверждения"
 
-#: ../../mod/message.php:231
-msgid "Conversation removed."
-msgstr "Разговор удален."
+#: ../../mod/admin.php:689
+msgid "Request date"
+msgstr "Дата запроса"
 
-#: ../../mod/message.php:282
-msgid "Send Private Message"
-msgstr "Отправить личное сообщение"
+#: ../../mod/admin.php:689 ../../mod/settings.php:509
+#: ../../mod/settings.php:535
+msgid "Name"
+msgstr "Имя"
 
-#: ../../mod/message.php:283 ../../mod/message.php:448
-msgid "To:"
-msgstr "Кому:"
+#: ../../mod/admin.php:690
+msgid "No registrations."
+msgstr "Новых регистраций пока нет."
 
-#: ../../mod/message.php:288 ../../mod/message.php:450
-msgid "Subject:"
-msgstr "Тема:"
+#: ../../mod/admin.php:691
+msgid "Approve"
+msgstr "Утвердить"
 
-#: ../../mod/message.php:317
-msgid "No messages."
-msgstr "Нет сообщений."
+#: ../../mod/admin.php:692
+msgid "Deny"
+msgstr "Запретить"
 
-#: ../../mod/message.php:333 ../../mod/message.php:419
-msgid "Delete message"
-msgstr "Удалить сообщение"
+#: ../../mod/admin.php:698
+msgid "Register date"
+msgstr "Дата регистрации"
 
-#: ../../mod/message.php:335
-msgid "D, d M Y - g:i A"
-msgstr "D, d M Y - g:i A"
+#: ../../mod/admin.php:698
+msgid "Last login"
+msgstr "Последний вход"
 
-#: ../../mod/message.php:354
-msgid "Message not found."
-msgstr "Сообщение не найдено."
+#: ../../mod/admin.php:698
+msgid "Expires"
+msgstr ""
 
-#: ../../mod/message.php:441
-msgid "Delete conversation"
-msgstr "Удалить разговор"
+#: ../../mod/admin.php:698
+msgid "Service Class"
+msgstr "Класс службы"
 
-#: ../../mod/message.php:443
+#: ../../mod/admin.php:700
 msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
 msgstr ""
 
-#: ../../mod/message.php:447
-msgid "Send Reply"
-msgstr "Отправить снова"
+#: ../../mod/admin.php:701
+msgid ""
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr ""
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Профиль отсутствует"
+#: ../../mod/admin.php:742
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Плагин %s отключен."
 
-#: ../../mod/help.php:30
-msgid "Help:"
-msgstr "Помощь:"
+#: ../../mod/admin.php:746
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Плагин %s включен."
 
-#: ../../mod/help.php:38 ../../index.php:226
-msgid "Not Found"
-msgstr "Не найдено"
+#: ../../mod/admin.php:756 ../../mod/admin.php:958
+msgid "Disable"
+msgstr "Запретить"
 
-#: ../../mod/help.php:41 ../../index.php:229
-msgid "Page not found."
-msgstr "Страница не найдена."
+#: ../../mod/admin.php:758 ../../mod/admin.php:960
+msgid "Enable"
+msgstr "Разрешить"
 
-#: ../../mod/rmagic.php:56
-msgid "Remote Authentication"
-msgstr "Удаленная аутентификация"
+#: ../../mod/admin.php:784 ../../mod/admin.php:989
+msgid "Toggle"
+msgstr "Переключить"
 
-#: ../../mod/rmagic.php:57
-msgid "Enter your channel address (e.g. channel@example.com)"
-msgstr "Введите адрес вашего канала (например: channel@example.com)"
+#: ../../mod/admin.php:792 ../../mod/admin.php:999
+msgid "Author: "
+msgstr "Автор: "
 
-#: ../../mod/rmagic.php:58
-msgid "Authenticate"
-msgstr "Проверка подлинности"
+#: ../../mod/admin.php:793 ../../mod/admin.php:1000
+msgid "Maintainer: "
+msgstr "Обслуживающий: "
 
-#: ../../mod/network.php:141 ../../mod/search.php:20
-msgid "Remove term"
-msgstr "Удалить термин"
+#: ../../mod/admin.php:922
+msgid "No themes found."
+msgstr "Темы не найдены."
 
-#: ../../mod/network.php:279
-msgid "Commented Order"
-msgstr "По комментириям"
+#: ../../mod/admin.php:981
+msgid "Screenshot"
+msgstr "Скриншот"
 
-#: ../../mod/network.php:282
-msgid "Sort by Comment Date"
-msgstr "Сортировка по дате создания комментариев"
+#: ../../mod/admin.php:1029
+msgid "[Experimental]"
+msgstr "[экспериментальный]"
 
-#: ../../mod/network.php:285
-msgid "Posted Order"
-msgstr "По добавлениям"
+#: ../../mod/admin.php:1030
+msgid "[Unsupported]"
+msgstr "[неподдерживаемый]"
 
-#: ../../mod/network.php:288
-msgid "Sort by Post Date"
-msgstr "Сортировка по дате создания сообщения"
+#: ../../mod/admin.php:1057
+msgid "Log settings updated."
+msgstr "Настройки журнала обновленны."
 
-#: ../../mod/network.php:292 ../../mod/notifications.php:86
-msgid "Personal"
-msgstr "Личные"
+#: ../../mod/admin.php:1113
+msgid "Clear"
+msgstr "Очистить"
 
-#: ../../mod/network.php:295
-msgid "Posts that mention or involve you"
-msgstr "Сообщения, в которых упоминули или вовлекли вас"
+#: ../../mod/admin.php:1119
+msgid "Debugging"
+msgstr "Включить/Выключить"
 
-#: ../../mod/network.php:301
-msgid "Activity Stream - by date"
-msgstr "Лента активности - по дате"
+#: ../../mod/admin.php:1120
+msgid "Log file"
+msgstr "Файл журнала"
 
-#: ../../mod/network.php:308
-msgid "Starred"
-msgstr "Помеченные"
+#: ../../mod/admin.php:1120
+msgid ""
+"Must be writable by web server. Relative to your Red top-level directory."
+msgstr "Должна быть доступна для записи веб-сервером. Относительно верхнего уровня веб-сайта."
 
-#: ../../mod/network.php:311
-msgid "Favourite Posts"
-msgstr "Фаворит-сообщения"
+#: ../../mod/admin.php:1121
+msgid "Log level"
+msgstr "Уровень журнала"
 
-#: ../../mod/network.php:318
-msgid "Spam"
-msgstr "Спам"
+#: ../../mod/mitem.php:14 ../../mod/menu.php:87
+msgid "Menu not found."
+msgstr "Меню не найдено."
 
-#: ../../mod/network.php:321
-msgid "Posts flagged as SPAM"
-msgstr "Как СПАМ помеченные сообщения"
+#: ../../mod/mitem.php:47
+msgid "Menu element updated."
+msgstr "Меню обновлено."
 
-#: ../../mod/network.php:361
-msgid "Refresh"
-msgstr "Обновить"
+#: ../../mod/mitem.php:51
+msgid "Unable to update menu element."
+msgstr ""
 
-#: ../../mod/network.php:362 ../../mod/connections.php:374
-msgid "Me"
-msgstr "Я"
+#: ../../mod/mitem.php:57
+msgid "Menu element added."
+msgstr "Элемент меню добавлен."
 
-#: ../../mod/network.php:363 ../../mod/connections.php:376
-msgid "Best Friends"
-msgstr "Лучшие друзья"
+#: ../../mod/mitem.php:61
+msgid "Unable to add menu element."
+msgstr ""
 
-#: ../../mod/network.php:365
-msgid "Co-workers"
-msgstr "Сотрудники"
+#: ../../mod/mitem.php:78 ../../mod/xchan.php:25 ../../mod/menu.php:113
+#: ../../mod/dirprofile.php:176
+msgid "Not found."
+msgstr "Не найдено."
 
-#: ../../mod/network.php:366 ../../mod/connections.php:378
-msgid "Former Friends"
-msgstr "Приятели"
+#: ../../mod/mitem.php:96
+msgid "Manage Menu Elements"
+msgstr ""
 
-#: ../../mod/network.php:367 ../../mod/connections.php:379
-msgid "Acquaintances"
-msgstr "Знакомые"
+#: ../../mod/mitem.php:99
+msgid "Edit menu"
+msgstr "Редактировать меню"
 
-#: ../../mod/network.php:368
-msgid "Everybody"
-msgstr "Все"
+#: ../../mod/mitem.php:102
+msgid "Edit element"
+msgstr "Редактировать элемент"
 
-#: ../../mod/network.php:385
-msgid "Search Results For:"
-msgstr "Результаты поиска для:"
+#: ../../mod/mitem.php:103
+msgid "Drop element"
+msgstr "Удалить элемент"
 
-#: ../../mod/network.php:430
-msgid "No such group"
-msgstr "Нет такой группы"
+#: ../../mod/mitem.php:104
+msgid "New element"
+msgstr "Новый элемент"
 
-#: ../../mod/network.php:441
-msgid "Group is empty"
-msgstr "Группа пуста"
+#: ../../mod/mitem.php:105
+msgid "Edit this menu container"
+msgstr ""
 
-#: ../../mod/network.php:456
-msgid "Contact: "
-msgstr "Канал: "
+#: ../../mod/mitem.php:106
+msgid "Add menu element"
+msgstr "Добавить элемент меню"
 
-#: ../../mod/network.php:459
-msgid "Invalid contact."
-msgstr "Недействительный канал."
+#: ../../mod/mitem.php:107
+msgid "Delete this menu item"
+msgstr ""
 
-#: ../../mod/intro.php:11 ../../mod/intro.php:98 ../../mod/admin.php:638
-#: ../../mod/notifications.php:159 ../../mod/notifications.php:206
-msgid "Approve"
-msgstr "Утвердить"
+#: ../../mod/mitem.php:108
+msgid "Edit this menu item"
+msgstr ""
 
-#: ../../mod/intro.php:14 ../../mod/intro.php:99 ../../mod/connections.php:318
-#: ../../mod/connections.php:459 ../../mod/admin.php:641
-msgid "Block"
-msgstr "Заблокировать"
+#: ../../mod/mitem.php:131
+msgid "New Menu Element"
+msgstr "Новый элемент меню"
 
-#: ../../mod/intro.php:17 ../../mod/intro.php:100
-#: ../../mod/connections.php:325 ../../mod/connections.php:460
-#: ../../mod/notifications.php:51 ../../mod/notifications.php:162
-#: ../../mod/notifications.php:208
-msgid "Ignore"
-msgstr "Игнорировать"
+#: ../../mod/mitem.php:133 ../../mod/mitem.php:176
+msgid "Menu Item Permissions"
+msgstr ""
 
-#: ../../mod/intro.php:29 ../../mod/connections.php:119
-msgid "Connection updated."
-msgstr "Канал обновлен."
+#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:930
+msgid "(click to open/close)"
+msgstr "(нажмите, чтобы открыть / закрыть)"
 
-#: ../../mod/intro.php:31
-msgid "Connection update failed."
-msgstr "Ошибка обновления канала."
+#: ../../mod/mitem.php:136 ../../mod/mitem.php:180
+msgid "Link text"
+msgstr "Текст ссылки"
 
-#: ../../mod/intro.php:56
-msgid "Introductions and Connection Requests"
+#: ../../mod/mitem.php:137 ../../mod/mitem.php:181
+msgid "URL of link"
 msgstr ""
 
-#: ../../mod/intro.php:67
-msgid "No pending introductions."
-msgstr "Введений в ожидании нет."
+#: ../../mod/mitem.php:138 ../../mod/mitem.php:182
+msgid "Use Red magic-auth if available"
+msgstr ""
 
-#: ../../mod/intro.php:72
-msgid "System error. Please try again later."
-msgstr "Системная ошибка. Пожалуйста, повторите попытку позже."
+#: ../../mod/mitem.php:139 ../../mod/mitem.php:183
+msgid "Open link in new window"
+msgstr ""
 
-#: ../../mod/intro.php:95 ../../mod/connections.php:465
-#: ../../mod/notifications.php:155 ../../mod/notifications.php:202
-msgid "Hide this contact from others"
-msgstr "Скрыть этот канал от других"
+#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
+msgid "Order in list"
+msgstr ""
 
-#: ../../mod/intro.php:96 ../../mod/notifications.php:156
-#: ../../mod/notifications.php:203
-msgid "Post a new friend activity"
+#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
+msgid "Higher numbers will sink to bottom of listing"
 msgstr ""
 
-#: ../../mod/intro.php:96 ../../mod/notifications.php:156
-#: ../../mod/notifications.php:203
-msgid "if applicable"
-msgstr "если это применимо"
+#: ../../mod/mitem.php:142 ../../mod/menu.php:79 ../../mod/new_channel.php:117
+msgid "Create"
+msgstr "Создать"
 
-#: ../../mod/intro.php:101 ../../mod/notifications.php:35
-#: ../../mod/notifications.php:163 ../../mod/notifications.php:209
-msgid "Discard"
-msgstr "Отменить"
+#: ../../mod/mitem.php:154
+msgid "Menu item not found."
+msgstr "Элемент меню не найден."
 
-#: ../../mod/connections.php:64
-msgid "Could not access contact record."
+#: ../../mod/mitem.php:163
+msgid "Menu item deleted."
 msgstr ""
 
-#: ../../mod/connections.php:78
-msgid "Could not locate selected profile."
+#: ../../mod/mitem.php:165
+msgid "Menu item could not be deleted."
 msgstr ""
 
-#: ../../mod/connections.php:121
-msgid "Failed to update connection record."
-msgstr ""
+#: ../../mod/mitem.php:174
+msgid "Edit Menu Element"
+msgstr "Редактировать элемент меню"
 
-#: ../../mod/connections.php:196
-msgid "Could not access address book record."
+#: ../../mod/mitem.php:186 ../../mod/menu.php:107
+msgid "Modify"
 msgstr ""
 
-#: ../../mod/connections.php:210
-msgid "Refresh failed - channel is currently unavailable."
+#: ../../mod/group.php:20
+msgid "Collection created."
+msgstr "Коллекция создана."
+
+#: ../../mod/group.php:26
+msgid "Could not create collection."
+msgstr "Не удалось создать коллекцию."
+
+#: ../../mod/group.php:54
+msgid "Collection updated."
 msgstr ""
 
-#: ../../mod/connections.php:217
-msgid "Channel has been unblocked"
-msgstr "Канал разблокирован"
+#: ../../mod/group.php:86
+msgid "Create a collection of channels."
+msgstr "Создать коллекцию контактов"
 
-#: ../../mod/connections.php:218
-msgid "Channel has been blocked"
-msgstr "Канал заблокирован"
+#: ../../mod/group.php:87 ../../mod/group.php:183
+msgid "Collection Name: "
+msgstr "Название коллекции:"
 
-#: ../../mod/connections.php:222 ../../mod/connections.php:234
-#: ../../mod/connections.php:246 ../../mod/connections.php:258
-#: ../../mod/connections.php:273
-msgid "Unable to set address book parameters."
+#: ../../mod/group.php:89 ../../mod/group.php:186
+msgid "Members are visible to other channels"
 msgstr ""
 
-#: ../../mod/connections.php:229
-msgid "Channel has been unignored"
-msgstr "Канал не проигнорирован"
+#: ../../mod/group.php:107
+msgid "Collection removed."
+msgstr "Коллекция удалена."
 
-#: ../../mod/connections.php:230
-msgid "Channel has been ignored"
-msgstr "Канал проигнорирован"
+#: ../../mod/group.php:109
+msgid "Unable to remove collection."
+msgstr "Невозможно удалить коллекцию."
 
-#: ../../mod/connections.php:241
-msgid "Channel has been unarchived"
-msgstr "Канал разархивирован"
+#: ../../mod/group.php:182
+msgid "Collection Editor"
+msgstr "Редактор коллекций"
 
-#: ../../mod/connections.php:242
-msgid "Channel has been archived"
-msgstr "Канал заархивирован"
+#: ../../mod/group.php:196
+msgid "Members"
+msgstr "Участники"
 
-#: ../../mod/connections.php:253
-msgid "Channel has been unhidden"
-msgstr "Канал открыт"
+#: ../../mod/group.php:198
+msgid "All Connected Channels"
+msgstr "Все подключенные контакы"
 
-#: ../../mod/connections.php:254
-msgid "Channel has been hidden"
-msgstr "Канал скрыт"
+#: ../../mod/group.php:231
+msgid "Click on a channel to add or remove."
+msgstr ""
 
-#: ../../mod/connections.php:268
-msgid "Channel has been approved"
-msgstr "Канал одобрен"
+#: ../../mod/photos.php:77
+msgid "Page owner information could not be retrieved."
+msgstr ""
 
-#: ../../mod/connections.php:269
-msgid "Channel has been unapproved"
-msgstr "Канал не одобрен"
+#: ../../mod/photos.php:97
+msgid "Album not found."
+msgstr "Альбом не найден."
 
-#: ../../mod/connections.php:287
-msgid "Contact has been removed."
-msgstr "Канал удален."
+#: ../../mod/photos.php:119 ../../mod/photos.php:799
+msgid "Delete Album"
+msgstr "Удалить альбом"
+
+#: ../../mod/photos.php:159 ../../mod/photos.php:1061
+msgid "Delete Photo"
+msgstr "Удалить фотографию"
 
-#: ../../mod/connections.php:307
+#: ../../mod/photos.php:500
 #, php-format
-msgid "View %s's profile"
-msgstr "Просмотр %s's профиля"
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s добавил тег в %2$s на %3$s"
 
-#: ../../mod/connections.php:311
-msgid "Refresh Permissions"
-msgstr "Обновить разрешения"
+#: ../../mod/photos.php:500
+msgid "a photo"
+msgstr "фотография"
 
-#: ../../mod/connections.php:314
-msgid "Fetch updated permissions"
-msgstr ""
+#: ../../mod/photos.php:583
+msgid "No photos selected"
+msgstr "Никакие фотографии не выбраны"
 
-#: ../../mod/connections.php:318 ../../mod/connections.php:459
-#: ../../mod/admin.php:642
-msgid "Unblock"
-msgstr "Разрешить"
+#: ../../mod/photos.php:630
+msgid "Access to this item is restricted."
+msgstr "Доступ к этому элементу ограничен."
 
-#: ../../mod/connections.php:321
-msgid "Block or Unblock this connection"
-msgstr "Запретить или разрешить этот канал"
+#: ../../mod/photos.php:704
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr ""
 
-#: ../../mod/connections.php:325 ../../mod/connections.php:460
-msgid "Unignore"
-msgstr "Не игнорировать"
+#: ../../mod/photos.php:707
+#, php-format
+msgid "You have used %1$.2f Mbytes of photo storage."
+msgstr ""
 
-#: ../../mod/connections.php:328
-msgid "Ignore or Unignore this connection"
-msgstr "Игнорировать или не игнорировать этот канал"
+#: ../../mod/photos.php:726
+msgid "Upload Photos"
+msgstr "Загрузить фотографии"
 
-#: ../../mod/connections.php:331
-msgid "Unarchive"
-msgstr "Разархивировать"
+#: ../../mod/photos.php:730 ../../mod/photos.php:794
+msgid "New album name: "
+msgstr "Название нового альбома:"
 
-#: ../../mod/connections.php:331
-msgid "Archive"
-msgstr "Заархивировать"
+#: ../../mod/photos.php:731
+msgid "or existing album name: "
+msgstr "или существующий альбом:"
 
-#: ../../mod/connections.php:334
-msgid "Archive or Unarchive this connection"
-msgstr " Заархивировать или разархивировать этот канал"
+#: ../../mod/photos.php:732
+msgid "Do not show a status post for this upload"
+msgstr ""
 
-#: ../../mod/connections.php:337
-msgid "Unhide"
-msgstr "Показать"
+#: ../../mod/photos.php:734 ../../mod/photos.php:1056
+#: ../../mod/filestorage.php:125
+msgid "Permissions"
+msgstr "Разрешения"
 
-#: ../../mod/connections.php:337
-msgid "Hide"
-msgstr "Скрыть"
+#: ../../mod/photos.php:783 ../../mod/photos.php:805 ../../mod/photos.php:1232
+#: ../../mod/photos.php:1247
+msgid "Contact Photos"
+msgstr "Фотографии контакта"
 
-#: ../../mod/connections.php:340
-msgid "Hide or Unhide this connection"
-msgstr "Скрыть или показывать этот канал"
+#: ../../mod/photos.php:809
+msgid "Edit Album"
+msgstr "Редактировать Фотоальбом"
 
-#: ../../mod/connections.php:347
-msgid "Delete this connection"
-msgstr "Удалить этот контакт"
+#: ../../mod/photos.php:815
+msgid "Show Newest First"
+msgstr "Показать новые первыми"
 
-#: ../../mod/connections.php:380
-msgid "Unknown"
-msgstr "Неизвестный"
+#: ../../mod/photos.php:817
+msgid "Show Oldest First"
+msgstr "Показать старые первыми"
 
-#: ../../mod/connections.php:390 ../../mod/connections.php:418
-msgid "Approve this connection"
-msgstr "Утвердить этот контакт"
+#: ../../mod/photos.php:860 ../../mod/photos.php:1279
+msgid "View Photo"
+msgstr "Посмотреть фотографию"
 
-#: ../../mod/connections.php:390
-msgid "Accept connection to allow communication"
+#: ../../mod/photos.php:906
+msgid "Permission denied. Access to this item may be restricted."
 msgstr ""
 
-#: ../../mod/connections.php:406
-msgid "Automatic Permissions Settings"
-msgstr "Настройки автоматических разрешений"
+#: ../../mod/photos.php:908
+msgid "Photo not available"
+msgstr "Фотография не доступна"
 
-#: ../../mod/connections.php:406
-#, php-format
-msgid "Connections: settings for %s"
-msgstr ""
+#: ../../mod/photos.php:966
+msgid "Use as profile photo"
+msgstr "Использовать в качестве фотографии профиля"
 
-#: ../../mod/connections.php:410
-msgid ""
-"When receiving a channel introduction, any permissions provided here will be"
-" applied to the new connection automatically and the introduction approved. "
-"Leave this page if you do not wish to use this feature."
-msgstr ""
+#: ../../mod/photos.php:990
+msgid "View Full Size"
+msgstr "Посмотреть в полный размер"
 
-#: ../../mod/connections.php:412
-msgid "Slide to adjust your degree of friendship"
-msgstr ""
+#: ../../mod/photos.php:1044
+msgid "Edit photo"
+msgstr "Редактировать фотографию"
 
-#: ../../mod/connections.php:419
-msgid "Connection has no individual permissions!"
-msgstr ""
+#: ../../mod/photos.php:1046
+msgid "Rotate CW (right)"
+msgstr "Повернуть CW (направо)"
 
-#: ../../mod/connections.php:420
-msgid ""
-"This may be appropriate based on your <a href=\"settings\">privacy "
-"settings</a>, though you may wish to review the \"Advanced Permissions\"."
-msgstr ""
+#: ../../mod/photos.php:1047
+msgid "Rotate CCW (left)"
+msgstr "Повернуть CCW (налево)"
 
-#: ../../mod/connections.php:422
-msgid "Profile Visibility"
-msgstr "Видимость профиля"
+#: ../../mod/photos.php:1049
+msgid "New album name"
+msgstr "Новое название альбома:"
 
-#: ../../mod/connections.php:423
-#, php-format
+#: ../../mod/photos.php:1052
+msgid "Caption"
+msgstr "Подпись"
+
+#: ../../mod/photos.php:1054
+msgid "Add a Tag"
+msgstr "Добавить тег"
+
+#: ../../mod/photos.php:1058
 msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Например: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: ../../mod/connections.php:424
-msgid "Contact Information / Notes"
-msgstr "Информация / Примечания о канале"
+#: ../../mod/photos.php:1285
+msgid "View Album"
+msgstr "Посмотреть фотоальбом"
 
-#: ../../mod/connections.php:425
-msgid "Edit contact notes"
-msgstr "Редактировать примечания канала"
+#: ../../mod/photos.php:1294
+msgid "Recent Photos"
+msgstr "Последние фотографии"
 
-#: ../../mod/connections.php:427
-msgid "Their Settings"
-msgstr "Их настройки"
+#: ../../mod/filer.php:35
+msgid "- select -"
+msgstr "- выбрать -"
 
-#: ../../mod/connections.php:428
-msgid "My Settings"
-msgstr "Мои настройки"
+#: ../../mod/menu.php:17
+msgid "Menu updated."
+msgstr "Меню обновлено."
 
-#: ../../mod/connections.php:430
-msgid "Forum Members"
-msgstr "Участники форума"
+#: ../../mod/menu.php:21
+msgid "Unable to update menu."
+msgstr "Невозможно обновление меню."
 
-#: ../../mod/connections.php:431
-msgid "Soapbox"
-msgstr "Soapbox"
+#: ../../mod/menu.php:26
+msgid "Menu created."
+msgstr "Меню создано."
 
-#: ../../mod/connections.php:432
-msgid "Full Sharing"
-msgstr "Полный обмен"
+#: ../../mod/menu.php:30
+msgid "Unable to create menu."
+msgstr "Невозможно создать меню."
 
-#: ../../mod/connections.php:433
-msgid "Cautious Sharing"
-msgstr ""
+#: ../../mod/menu.php:53
+msgid "Manage Menus"
+msgstr "Управление меню"
 
-#: ../../mod/connections.php:434
-msgid "Follow Only"
-msgstr "Только следовать"
+#: ../../mod/menu.php:56
+msgid "Drop"
+msgstr "Удалить"
 
-#: ../../mod/connections.php:435
-msgid "Individual Permissions"
-msgstr "Индивидуальные разрешения"
+#: ../../mod/menu.php:58
+msgid "Create a new menu"
+msgstr "Создать новое меню"
+
+#: ../../mod/menu.php:59
+msgid "Delete this menu"
+msgstr "Удалить это меню"
 
-#: ../../mod/connections.php:436
-msgid ""
-"Individual permissions are only enabled for <a href=\"settings\">privacy "
-"settings</a> which are set to \"Only those you specifically allow\". "
-"Otherwise they are controlled by your privacy settings."
-msgstr ""
+#: ../../mod/menu.php:60 ../../mod/menu.php:104
+msgid "Edit menu contents"
+msgstr "Редактировать содержание меню"
 
-#: ../../mod/connections.php:437
-msgid "Advanced Permissions"
-msgstr "Дополнительные разрешения"
+#: ../../mod/menu.php:61
+msgid "Edit this menu"
+msgstr "Редактировать это меню"
 
-#: ../../mod/connections.php:438
-msgid "Quick Links"
-msgstr "Быстрые ссылки"
+#: ../../mod/menu.php:76
+msgid "New Menu"
+msgstr "Новое меню"
 
-#: ../../mod/connections.php:442
-#, php-format
-msgid "Visit %s's profile - %s"
-msgstr "Посетить %s's ​​профиль - %s"
+#: ../../mod/menu.php:77 ../../mod/menu.php:105
+msgid "Menu name"
+msgstr "Название меню"
 
-#: ../../mod/connections.php:443
-msgid "Block/Unblock contact"
-msgstr "Запретить/разрешить контакт"
+#: ../../mod/menu.php:77 ../../mod/menu.php:105
+msgid "Must be unique, only seen by you"
+msgstr ""
 
-#: ../../mod/connections.php:444
-msgid "Ignore contact"
-msgstr "Игнорировать контакт"
+#: ../../mod/menu.php:78 ../../mod/menu.php:106
+msgid "Menu title"
+msgstr "Название меню"
 
-#: ../../mod/connections.php:445
-msgid "Repair URL settings"
-msgstr "Ремонт настройки URL"
+#: ../../mod/menu.php:78 ../../mod/menu.php:106
+msgid "Menu title as seen by others"
+msgstr ""
 
-#: ../../mod/connections.php:446
-msgid "View conversations"
-msgstr "Просмотр разговоров"
+#: ../../mod/menu.php:93
+msgid "Menu deleted."
+msgstr "Меню удалено."
 
-#: ../../mod/connections.php:448
-msgid "Delete contact"
-msgstr "Удалить контакт"
+#: ../../mod/menu.php:95
+msgid "Menu could not be deleted."
+msgstr ""
 
-#: ../../mod/connections.php:451
-msgid "Last update:"
-msgstr "Последнее обновление:"
+#: ../../mod/menu.php:101
+msgid "Edit Menu"
+msgstr "Редактировать меню"
 
-#: ../../mod/connections.php:453
-msgid "Update public posts"
-msgstr "Обновить публичные сообщения"
+#: ../../mod/menu.php:103
+msgid "Add or remove entries to this menu"
+msgstr ""
 
-#: ../../mod/connections.php:455
-msgid "Update now"
-msgstr "Обновить сейчас"
+#: ../../mod/home.php:89
+#, php-format
+msgid "Welcome to %s"
+msgstr "Добро пожаловать в %s"
 
-#: ../../mod/connections.php:461
-msgid "Currently blocked"
-msgstr "В настоящее время заблокирован"
+#: ../../mod/directory.php:143 ../../mod/profiles.php:573
+#: ../../mod/dirprofile.php:95
+msgid "Age: "
+msgstr "Возраст:"
 
-#: ../../mod/connections.php:462
-msgid "Currently ignored"
-msgstr "В настоящее время игнорируются"
+#: ../../mod/directory.php:146 ../../mod/dirprofile.php:98
+msgid "Gender: "
+msgstr "Пол:"
 
-#: ../../mod/connections.php:463
-msgid "Currently archived"
-msgstr "В настоящее время зархивированны"
+#: ../../mod/directory.php:206
+msgid "Finding:"
+msgstr "Поиск:"
 
-#: ../../mod/connections.php:464
-msgid "Currently pending"
-msgstr "В настоящее время в ожидании"
+#: ../../mod/directory.php:214
+msgid "next page"
+msgstr "следующая страница"
 
-#: ../../mod/connections.php:465
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
+#: ../../mod/directory.php:214
+msgid "previous page"
+msgstr "предыдущая страница"
+
+#: ../../mod/directory.php:221
+msgid "No entries (some entries may be hidden)."
 msgstr ""
 
-#: ../../mod/connections.php:501 ../../mod/connections.php:573
+#: ../../mod/connections.php:189 ../../mod/connections.php:261
 msgid "Blocked"
 msgstr "Заблокированные"
 
-#: ../../mod/connections.php:506 ../../mod/connections.php:580
+#: ../../mod/connections.php:194 ../../mod/connections.php:268
 msgid "Ignored"
 msgstr "Игнорируемые"
 
-#: ../../mod/connections.php:511 ../../mod/connections.php:594
+#: ../../mod/connections.php:199 ../../mod/connections.php:282
 msgid "Hidden"
 msgstr "Скрытые"
 
-#: ../../mod/connections.php:516 ../../mod/connections.php:587
+#: ../../mod/connections.php:204 ../../mod/connections.php:275
 msgid "Archived"
 msgstr "Зархивированные"
 
-#: ../../mod/connections.php:527
+#: ../../mod/connections.php:215
 msgid "All"
 msgstr "Все"
 
-#: ../../mod/connections.php:548
-msgid "Suggestions"
-msgstr "Рекомендации"
-
-#: ../../mod/connections.php:551
+#: ../../mod/connections.php:239
 msgid "Suggest new connections"
 msgstr "Предлагать новые контакты"
 
-#: ../../mod/connections.php:557
+#: ../../mod/connections.php:245
 msgid "Show pending (new) connections"
 msgstr "Просмотр (новых) ждущих контактов"
 
-#: ../../mod/connections.php:560
+#: ../../mod/connections.php:248
 msgid "All Connections"
 msgstr "Все контакты"
 
-#: ../../mod/connections.php:563
+#: ../../mod/connections.php:251
 msgid "Show all connections"
 msgstr "Просмотр всех контактов"
 
-#: ../../mod/connections.php:566
+#: ../../mod/connections.php:254
 msgid "Unblocked"
 msgstr "Разрешенные"
 
-#: ../../mod/connections.php:569
+#: ../../mod/connections.php:257
 msgid "Only show unblocked connections"
 msgstr "Показать только разрешенные контакты"
 
-#: ../../mod/connections.php:576
+#: ../../mod/connections.php:264
 msgid "Only show blocked connections"
 msgstr "Показать только заблокированные контакты"
 
-#: ../../mod/connections.php:583
+#: ../../mod/connections.php:271
 msgid "Only show ignored connections"
 msgstr "Показать только проигнорированные контакты"
 
-#: ../../mod/connections.php:590
+#: ../../mod/connections.php:278
 msgid "Only show archived connections"
 msgstr "Показать только архивированные контакты"
 
-#: ../../mod/connections.php:597
+#: ../../mod/connections.php:285
 msgid "Only show hidden connections"
 msgstr "Показать только скрытые контакты"
 
-#: ../../mod/connections.php:639
+#: ../../mod/connections.php:329
 #, php-format
 msgid "%1$s [%2$s]"
 msgstr "%1$s [%2$s]"
 
-#: ../../mod/connections.php:640 ../../mod/nogroup.php:41
+#: ../../mod/connections.php:330
 msgid "Edit contact"
 msgstr "Редактировать контакт"
 
-#: ../../mod/connections.php:664
+#: ../../mod/connections.php:353
 msgid "Search your connections"
 msgstr "Поиск ваших связей"
 
-#: ../../mod/connections.php:665
+#: ../../mod/connections.php:354
 msgid "Finding: "
 msgstr "Поиск:"
 
+#: ../../mod/layouts.php:52
+msgid "Layout Help"
+msgstr ""
+
+#: ../../mod/layouts.php:55
+msgid "Help with this feature"
+msgstr ""
+
+#: ../../mod/layouts.php:74
+msgid "Layout Name"
+msgstr ""
+
+#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55
+msgid "Help:"
+msgstr "Помощь:"
+
+#: ../../mod/help.php:68 ../../index.php:224
+msgid "Not Found"
+msgstr "Не найдено"
+
+#: ../../mod/rmagic.php:56
+msgid "Remote Authentication"
+msgstr "Удаленная аутентификация"
+
+#: ../../mod/rmagic.php:57
+msgid "Enter your channel address (e.g. channel@example.com)"
+msgstr "Введите адрес вашего канала (например: channel@example.com)"
+
+#: ../../mod/rmagic.php:58
+msgid "Authenticate"
+msgstr "Проверка подлинности"
+
+#: ../../mod/network.php:79
+msgid "No such group"
+msgstr "Нет такой группы"
+
+#: ../../mod/network.php:118
+msgid "Search Results For:"
+msgstr "Результаты поиска для:"
+
+#: ../../mod/network.php:172
+msgid "Collection is empty"
+msgstr "Коллекция пуста"
+
+#: ../../mod/network.php:180
+msgid "Collection: "
+msgstr "Коллекции: "
+
+#: ../../mod/network.php:193
+msgid "Connection: "
+msgstr "Контакты: "
+
+#: ../../mod/network.php:196
+msgid "Invalid connection."
+msgstr ""
+
+#: ../../mod/follow.php:25
+msgid "Channel added."
+msgstr "Контакт добавлен."
+
+#: ../../mod/post.php:226
+msgid ""
+"Remote authentication blocked. You are logged into this site locally. Please"
+" logout and retry."
+msgstr ""
+
+#: ../../mod/post.php:256
+#, php-format
+msgid "Welcome %s. Remote authentication successful."
+msgstr ""
+
 #: ../../mod/dirsearch.php:21
 msgid "This site is not a directory server"
 msgstr "Этот сайт не является сервером каталога"
@@ -4918,8 +5366,12 @@ msgstr ""
 msgid "Visible to:"
 msgstr "Кому видно:"
 
+#: ../../mod/magic.php:70
+msgid "Hub not found."
+msgstr "Hub не найден."
+
 #: ../../mod/profiles.php:18 ../../mod/profiles.php:138
-#: ../../mod/profiles.php:179 ../../mod/profiles.php:486
+#: ../../mod/profiles.php:168 ../../mod/profiles.php:475
 msgid "Profile not found."
 msgstr "Профиль не найден."
 
@@ -4939,244 +5391,232 @@ msgstr "Новый профиль создан."
 msgid "Profile unavailable to clone."
 msgstr "Профиль недоступен для клонирования."
 
-#: ../../mod/profiles.php:189
+#: ../../mod/profiles.php:178
 msgid "Profile Name is required."
 msgstr "Имя профиля требуется."
 
-#: ../../mod/profiles.php:317
+#: ../../mod/profiles.php:306
 msgid "Marital Status"
 msgstr "Семейное положение"
 
-#: ../../mod/profiles.php:321
+#: ../../mod/profiles.php:310
 msgid "Romantic Partner"
 msgstr "Романтический партнер"
 
-#: ../../mod/profiles.php:325
+#: ../../mod/profiles.php:314
 msgid "Likes"
 msgstr "мне нравиться"
 
-#: ../../mod/profiles.php:329
+#: ../../mod/profiles.php:318
 msgid "Dislikes"
 msgstr "мне не-нравиться"
 
-#: ../../mod/profiles.php:333
+#: ../../mod/profiles.php:322
 msgid "Work/Employment"
 msgstr "Работа / Занятость"
 
-#: ../../mod/profiles.php:336
+#: ../../mod/profiles.php:325
 msgid "Religion"
 msgstr "Религия"
 
-#: ../../mod/profiles.php:340
+#: ../../mod/profiles.php:329
 msgid "Political Views"
 msgstr "Политические взгляды"
 
-#: ../../mod/profiles.php:344
+#: ../../mod/profiles.php:333
 msgid "Gender"
 msgstr "Пол"
 
-#: ../../mod/profiles.php:348
+#: ../../mod/profiles.php:337
 msgid "Sexual Preference"
 msgstr "Сексуальная ориентация"
 
-#: ../../mod/profiles.php:352
+#: ../../mod/profiles.php:341
 msgid "Homepage"
 msgstr "Домашняя страница"
 
-#: ../../mod/profiles.php:356
+#: ../../mod/profiles.php:345
 msgid "Interests"
 msgstr "Интересы"
 
-#: ../../mod/profiles.php:360
+#: ../../mod/profiles.php:349
 msgid "Address"
 msgstr "Адрес"
 
-#: ../../mod/profiles.php:367
+#: ../../mod/profiles.php:356 ../../mod/pubsites.php:31
 msgid "Location"
 msgstr "Место"
 
-#: ../../mod/profiles.php:450
+#: ../../mod/profiles.php:439
 msgid "Profile updated."
 msgstr "Профиль обновлен."
 
-#: ../../mod/profiles.php:505
+#: ../../mod/profiles.php:494
 msgid "Hide your contact/friend list from viewers of this profile?"
 msgstr ""
 
-#: ../../mod/profiles.php:528
+#: ../../mod/profiles.php:517
 msgid "Edit Profile Details"
 msgstr "Редактирование профиля"
 
-#: ../../mod/profiles.php:530
+#: ../../mod/profiles.php:519
 msgid "View this profile"
 msgstr "Посмотреть этот профиль"
 
-#: ../../mod/profiles.php:531
+#: ../../mod/profiles.php:520
 msgid "Change Profile Photo"
 msgstr "Изменить фотографию профиля"
 
-#: ../../mod/profiles.php:532
+#: ../../mod/profiles.php:521
 msgid "Create a new profile using these settings"
 msgstr "Создайте новый профиль со следующими настройками"
 
-#: ../../mod/profiles.php:533
+#: ../../mod/profiles.php:522
 msgid "Clone this profile"
 msgstr "Клонировать этот профиль"
 
-#: ../../mod/profiles.php:534
+#: ../../mod/profiles.php:523
 msgid "Delete this profile"
 msgstr "Удалить этот профиль"
 
-#: ../../mod/profiles.php:535
+#: ../../mod/profiles.php:524
 msgid "Profile Name:"
 msgstr "Имя профиля:"
 
-#: ../../mod/profiles.php:536
+#: ../../mod/profiles.php:525
 msgid "Your Full Name:"
 msgstr "Ваше полное имя:"
 
-#: ../../mod/profiles.php:537
+#: ../../mod/profiles.php:526
 msgid "Title/Description:"
 msgstr "Название / Описание:"
 
-#: ../../mod/profiles.php:538
+#: ../../mod/profiles.php:527
 msgid "Your Gender:"
 msgstr "Ваш пол:"
 
-#: ../../mod/profiles.php:539
+#: ../../mod/profiles.php:528
 #, php-format
 msgid "Birthday (%s):"
 msgstr "Ваш День Рождения (%s):"
 
-#: ../../mod/profiles.php:540
+#: ../../mod/profiles.php:529
 msgid "Street Address:"
 msgstr "Улица:"
 
-#: ../../mod/profiles.php:541
+#: ../../mod/profiles.php:530
 msgid "Locality/City:"
 msgstr "Населенный пункт / город:"
 
-#: ../../mod/profiles.php:542
+#: ../../mod/profiles.php:531
 msgid "Postal/Zip Code:"
 msgstr "Почтовый индекс:"
 
-#: ../../mod/profiles.php:543
+#: ../../mod/profiles.php:532
 msgid "Country:"
 msgstr "Страна:"
 
-#: ../../mod/profiles.php:544
+#: ../../mod/profiles.php:533
 msgid "Region/State:"
 msgstr "Регион / Область:"
 
-#: ../../mod/profiles.php:545
+#: ../../mod/profiles.php:534
 msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
 msgstr ""
 
-#: ../../mod/profiles.php:546
+#: ../../mod/profiles.php:535
 msgid "Who: (if applicable)"
 msgstr "Кто: (если это применимо)"
 
-#: ../../mod/profiles.php:547
+#: ../../mod/profiles.php:536
 msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
 msgstr ""
 
-#: ../../mod/profiles.php:548
+#: ../../mod/profiles.php:537
 msgid "Since [date]:"
 msgstr "С тех пор [date]:"
 
-#: ../../mod/profiles.php:550
+#: ../../mod/profiles.php:539
 msgid "Homepage URL:"
 msgstr "URL-адрес домашней страницы:"
 
-#: ../../mod/profiles.php:553
+#: ../../mod/profiles.php:542
 msgid "Religious Views:"
 msgstr "Религиозные взгляды:"
 
-#: ../../mod/profiles.php:554
+#: ../../mod/profiles.php:543
 msgid "Keywords:"
 msgstr "Ключевые слова:"
 
-#: ../../mod/profiles.php:557
+#: ../../mod/profiles.php:546
 msgid "Example: fishing photography software"
 msgstr "Пример: fishing photography software"
 
-#: ../../mod/profiles.php:558
+#: ../../mod/profiles.php:547
 msgid "Used in directory listings"
 msgstr ""
 
-#: ../../mod/profiles.php:559
+#: ../../mod/profiles.php:548
 msgid "Tell us about yourself..."
 msgstr "Расскажите нам о себе ..."
 
-#: ../../mod/profiles.php:560
+#: ../../mod/profiles.php:549
 msgid "Hobbies/Interests"
 msgstr "Хобби / интересы"
 
-#: ../../mod/profiles.php:561
+#: ../../mod/profiles.php:550
 msgid "Contact information and Social Networks"
 msgstr "Информация и социальные сети контакта"
 
-#: ../../mod/profiles.php:562
+#: ../../mod/profiles.php:551
 msgid "My other channels"
 msgstr "Мои другие контакты"
 
-#: ../../mod/profiles.php:563
+#: ../../mod/profiles.php:552
 msgid "Musical interests"
 msgstr "Музыкальные интересы"
 
-#: ../../mod/profiles.php:564
+#: ../../mod/profiles.php:553
 msgid "Books, literature"
 msgstr "Книги, литература"
 
-#: ../../mod/profiles.php:565
+#: ../../mod/profiles.php:554
 msgid "Television"
 msgstr "Телевидение"
 
-#: ../../mod/profiles.php:566
+#: ../../mod/profiles.php:555
 msgid "Film/dance/culture/entertainment"
 msgstr "Кино / танцы / культура / развлечения"
 
-#: ../../mod/profiles.php:567
+#: ../../mod/profiles.php:556
 msgid "Love/romance"
 msgstr "Любовь / Романс"
 
-#: ../../mod/profiles.php:568
+#: ../../mod/profiles.php:557
 msgid "Work/employment"
 msgstr "Работа / Занятость"
 
-#: ../../mod/profiles.php:569
+#: ../../mod/profiles.php:558
 msgid "School/education"
 msgstr "Школа / образование"
 
-#: ../../mod/profiles.php:574
+#: ../../mod/profiles.php:563
 msgid ""
 "This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
 "be visible to anybody using the internet."
 msgstr ""
 
-#: ../../mod/profiles.php:623
+#: ../../mod/profiles.php:612
 msgid "Edit/Manage Profiles"
 msgstr "Редактирование  / Управление профилей"
 
-#: ../../mod/profiles.php:624 ../../boot.php:1710
-msgid "Change profile photo"
-msgstr "Изменить фотографию профиля"
-
-#: ../../mod/profiles.php:625 ../../boot.php:1717
-msgid "Create New Profile"
-msgstr "Создать новый профиль"
-
-#: ../../mod/profiles.php:636 ../../boot.php:1731
-msgid "Profile Image"
-msgstr "Изображение профиля"
-
-#: ../../mod/profiles.php:639 ../../boot.php:1734
-msgid "visible to everybody"
-msgstr "видно всем"
+#: ../../mod/profiles.php:613
+msgid "Add profile things"
+msgstr ""
 
-#: ../../mod/profiles.php:640 ../../boot.php:1735
-msgid "Edit visibility"
-msgstr "Редактировать видимость"
+#: ../../mod/profiles.php:614
+msgid "Include desirable objects in your profile"
+msgstr ""
 
 #: ../../mod/new_channel.php:107
 msgid "Add a Channel"
@@ -5190,10 +5630,6 @@ msgid ""
 "service provider allows."
 msgstr ""
 
-#: ../../mod/new_channel.php:110
-msgid "Channel Name"
-msgstr "Имя канала"
-
 #: ../../mod/new_channel.php:111
 msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "
 msgstr ""
@@ -5204,1038 +5640,859 @@ msgstr "Выберите короткий псевдоним"
 
 #: ../../mod/new_channel.php:113
 msgid ""
-"Your nickname will be used to create an easily remembered channel address "
-"(like an email address) which you can share with others."
-msgstr ""
-
-#: ../../mod/new_channel.php:114
-msgid "Or <a href=\"import\">import an existing channel</a> from another location"
-msgstr ""
-
-#: ../../mod/admin.php:48
-msgid "Theme settings updated."
-msgstr "Настройки темы обновленны."
-
-#: ../../mod/admin.php:83 ../../mod/admin.php:408
-msgid "Site"
-msgstr "Сайт"
-
-#: ../../mod/admin.php:84 ../../mod/admin.php:632 ../../mod/admin.php:644
-msgid "Users"
-msgstr "Пользователи"
-
-#: ../../mod/admin.php:85 ../../mod/admin.php:726 ../../mod/admin.php:768
-msgid "Plugins"
-msgstr "Плагины"
-
-#: ../../mod/admin.php:86 ../../mod/admin.php:931 ../../mod/admin.php:967
-msgid "Themes"
-msgstr "Темы"
-
-#: ../../mod/admin.php:87
-msgid "DB updates"
-msgstr "Обновления базы данных"
-
-#: ../../mod/admin.php:101 ../../mod/admin.php:108 ../../mod/admin.php:1054
-msgid "Logs"
-msgstr "Журналы"
-
-#: ../../mod/admin.php:107
-msgid "Plugin Features"
-msgstr "Функции плагинов"
-
-#: ../../mod/admin.php:109
-msgid "User registrations waiting for confirmation"
-msgstr "Регистрации пользователей, которые ждут подтверждения"
-
-#: ../../mod/admin.php:180
-msgid "Message queues"
-msgstr "Очередь недоставленных сообщений"
-
-#: ../../mod/admin.php:185 ../../mod/admin.php:407 ../../mod/admin.php:631
-#: ../../mod/admin.php:725 ../../mod/admin.php:767 ../../mod/admin.php:930
-#: ../../mod/admin.php:966 ../../mod/admin.php:1053
-msgid "Administration"
-msgstr "Администрация"
-
-#: ../../mod/admin.php:186
-msgid "Summary"
-msgstr "Резюме"
-
-#: ../../mod/admin.php:188
-msgid "Registered users"
-msgstr "Всего пользователeй"
-
-#: ../../mod/admin.php:190
-msgid "Pending registrations"
-msgstr "Ждут утверждения"
-
-#: ../../mod/admin.php:191
-msgid "Version"
-msgstr "Версия системы"
-
-#: ../../mod/admin.php:193
-msgid "Active plugins"
-msgstr "Активные плагины"
-
-#: ../../mod/admin.php:332
-msgid "Site settings updated."
-msgstr "Настройки сайта обновлены."
+"Your nickname will be used to create an easily remembered channel address "
+"(like an email address) which you can share with others."
+msgstr ""
 
-#: ../../mod/admin.php:363
-msgid "No special theme for accessibility"
+#: ../../mod/new_channel.php:114
+msgid "Or <a href=\"import\">import an existing channel</a> from another location"
 msgstr ""
 
-#: ../../mod/admin.php:388
-msgid "Closed"
-msgstr "Регистрация закрыта"
+#: ../../mod/filestorage.php:68
+msgid "Permission Denied."
+msgstr "Доступ запрещен."
 
-#: ../../mod/admin.php:389
-msgid "Requires approval"
-msgstr "Регистрация требует подтверждения"
+#: ../../mod/filestorage.php:86
+msgid "File not found."
+msgstr "Файл не найден."
 
-#: ../../mod/admin.php:390
-msgid "Open"
-msgstr "Регистрация открыта"
+#: ../../mod/filestorage.php:120
+msgid "Edit file permissions"
+msgstr "Редактировать разрешения файла"
 
-#: ../../mod/admin.php:395
-msgid "Private"
-msgstr "Личный доступ"
+#: ../../mod/filestorage.php:127
+msgid "Include all files and sub folders"
+msgstr ""
 
-#: ../../mod/admin.php:396
-msgid "Paid Access"
-msgstr "Платный доступ"
+#: ../../mod/filestorage.php:128
+msgid "Return to file list"
+msgstr ""
 
-#: ../../mod/admin.php:397
-msgid "Free Access"
-msgstr "Свободный доступ"
+#: ../../mod/filestorage.php:130
+msgid "Copy/paste this code to attach file to a post"
+msgstr ""
 
-#: ../../mod/admin.php:410 ../../mod/register.php:172
-msgid "Registration"
-msgstr "Регистрация"
+#: ../../mod/filestorage.php:131
+msgid "Copy/paste this URL to link file from a web page"
+msgstr ""
 
-#: ../../mod/admin.php:411
-msgid "File upload"
-msgstr "Загрузка файла"
+#: ../../mod/filestorage.php:168
+msgid "Download"
+msgstr ""
 
-#: ../../mod/admin.php:412
-msgid "Policies"
-msgstr "Правила"
+#: ../../mod/filestorage.php:174
+msgid "Used: "
+msgstr ""
 
-#: ../../mod/admin.php:413
-msgid "Advanced"
-msgstr "Дополнительно"
+#: ../../mod/filestorage.php:175
+msgid "[directory]"
+msgstr ""
 
-#: ../../mod/admin.php:417
-msgid "Site name"
-msgstr "Название сайта"
+#: ../../mod/filestorage.php:177
+msgid "Limit: "
+msgstr "Предел: "
 
-#: ../../mod/admin.php:418
-msgid "Banner/Logo"
-msgstr "Баннер / логотип"
+#: ../../mod/lostpass.php:15
+msgid "No valid account found."
+msgstr "Действительный аккаунт не найден."
 
-#: ../../mod/admin.php:419
-msgid "System language"
-msgstr "Язык системы"
+#: ../../mod/lostpass.php:29
+msgid "Password reset request issued. Check your email."
+msgstr ""
 
-#: ../../mod/admin.php:420
-msgid "System theme"
-msgstr "Тема системы"
+#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102
+#, php-format
+msgid "Site Member (%s)"
+msgstr "Участник сайта (%s)"
 
-#: ../../mod/admin.php:420
+#: ../../mod/lostpass.php:40
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Требуется сброс пароля на %s"
+
+#: ../../mod/lostpass.php:63
 msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
 msgstr ""
 
-#: ../../mod/admin.php:421
-msgid "Mobile system theme"
-msgstr "Мобильная тема системы"
-
-#: ../../mod/admin.php:421
-msgid "Theme for mobile devices"
-msgstr "Тема для мобильных устройств"
+#: ../../mod/lostpass.php:85 ../../boot.php:1426
+msgid "Password Reset"
+msgstr "Сбросить пароль"
 
-#: ../../mod/admin.php:422
-msgid "Accessibility system theme"
+#: ../../mod/lostpass.php:86
+msgid "Your password has been reset as requested."
 msgstr ""
 
-#: ../../mod/admin.php:422
-msgid "Accessibility theme"
+#: ../../mod/lostpass.php:87
+msgid "Your new password is"
+msgstr "Ваш новый пароль"
+
+#: ../../mod/lostpass.php:88
+msgid "Save or copy your new password - and then"
 msgstr ""
 
-#: ../../mod/admin.php:423
-msgid "Channel to use for this website's static pages"
+#: ../../mod/lostpass.php:89
+msgid "click here to login"
+msgstr "нажмите здесь чтобы выйти"
+
+#: ../../mod/lostpass.php:90
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
 msgstr ""
 
-#: ../../mod/admin.php:423
-msgid "Site Channel"
-msgstr "Канал сайта"
+#: ../../mod/lostpass.php:107
+#, php-format
+msgid "Your password has changed at %s"
+msgstr "Пароль изменен на %s"
 
-#: ../../mod/admin.php:425
-msgid "Maximum image size"
-msgstr "Максимальный размер"
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
+msgstr "Забыли пароль или логин?"
 
-#: ../../mod/admin.php:425
+#: ../../mod/lostpass.php:123
 msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
 msgstr ""
 
-#: ../../mod/admin.php:426
-msgid "Register policy"
-msgstr "Статус регистрации"
+#: ../../mod/lostpass.php:124
+msgid "Email Address"
+msgstr "Адрес электронной почты"
 
-#: ../../mod/admin.php:427
-msgid "Access policy"
-msgstr "Правила доступа"
+#: ../../mod/lostpass.php:125
+msgid "Reset"
+msgstr "Сброс"
 
-#: ../../mod/admin.php:428
-msgid "Register text"
-msgstr "Текст регистрации"
+#: ../../mod/import.php:36
+msgid "Nothing to import."
+msgstr "Ничего импортировать."
 
-#: ../../mod/admin.php:428
-msgid "Will be displayed prominently on the registration page."
-msgstr ""
+#: ../../mod/import.php:58
+msgid "Unable to download data from old server"
+msgstr "Невозможно загрузить данные из старого сервера"
 
-#: ../../mod/admin.php:429
-msgid "Accounts abandoned after x days"
-msgstr ""
+#: ../../mod/import.php:64
+msgid "Imported file is empty."
+msgstr "Импортированный файл пуст."
 
-#: ../../mod/admin.php:429
+#: ../../mod/import.php:88
 msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
+"Cannot create a duplicate channel identifier on this system. Import failed."
 msgstr ""
 
-#: ../../mod/admin.php:430
-msgid "Allowed friend domains"
+#: ../../mod/import.php:106
+msgid "Channel clone failed. Import failed."
 msgstr ""
 
-#: ../../mod/admin.php:430
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
+#: ../../mod/import.php:116
+msgid "Cloned channel not found. Import failed."
 msgstr ""
 
-#: ../../mod/admin.php:431
-msgid "Allowed email domains"
-msgstr ""
+#: ../../mod/import.php:358
+msgid "Import completed."
+msgstr "Импорт завершен."
 
-#: ../../mod/admin.php:431
-msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
-msgstr ""
+#: ../../mod/import.php:371
+msgid "You must be logged in to use this feature."
+msgstr "Вы должны войти в систему, чтобы использовать эту функцию."
 
-#: ../../mod/admin.php:432
-msgid "Block public"
-msgstr "Блокировать публичный доступ"
+#: ../../mod/import.php:376
+msgid "Import Channel"
+msgstr "Импорт канала"
 
-#: ../../mod/admin.php:432
+#: ../../mod/import.php:377
 msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
+"Use this form to import an existing channel from a different server/hub. You"
+" may retrieve the channel identity from the old server/hub via the network "
+"or provide an export file. Only identity and connections/relationships will "
+"be imported. Importation of content is not yet available."
 msgstr ""
 
-#: ../../mod/admin.php:433
-msgid "Force publish"
-msgstr "Заставить публиковать"
+#: ../../mod/import.php:378
+msgid "File to Upload"
+msgstr "Файл для загрузки"
 
-#: ../../mod/admin.php:433
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
+#: ../../mod/import.php:379
+msgid "Or provide the old server/hub details"
 msgstr ""
 
-#: ../../mod/admin.php:435
-msgid "Proxy user"
-msgstr "Proxy пользователь"
+#: ../../mod/import.php:380
+msgid "Your old identity address (xyz@example.com)"
+msgstr ""
 
-#: ../../mod/admin.php:436
-msgid "Proxy URL"
-msgstr "Proxy URL"
+#: ../../mod/import.php:381
+msgid "Your old login email address"
+msgstr "Ваш старый адрес электронной почты"
 
-#: ../../mod/admin.php:437
-msgid "Network timeout"
-msgstr "Время ожидания сети"
+#: ../../mod/import.php:382
+msgid "Your old login password"
+msgstr "Ваш старый пароль"
 
-#: ../../mod/admin.php:437
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+#: ../../mod/import.php:383
+msgid ""
+"For either option, please choose whether to make this hub your new primary "
+"address, or whether your old location should continue this role. You will be"
+" able to post from either location, but only one can be marked as the "
+"primary location for files, photos, and media."
 msgstr ""
 
-#: ../../mod/admin.php:438
-msgid "Delivery interval"
-msgstr "Интервал доставки"
+#: ../../mod/import.php:384
+msgid "Make this hub my primary location"
+msgstr ""
 
-#: ../../mod/admin.php:438
-msgid ""
-"Delay background delivery processes by this many seconds to reduce system "
-"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
-"for large dedicated servers."
+#: ../../mod/manage.php:63
+#, php-format
+msgid "You have created %1$.0f of %2$.0f allowed channels."
 msgstr ""
 
-#: ../../mod/admin.php:439
-msgid "Poll interval"
-msgstr "Интервал опроса"
+#: ../../mod/manage.php:71
+msgid "Create a new channel"
+msgstr "Создать новый канал"
 
-#: ../../mod/admin.php:439
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr ""
+#: ../../mod/manage.php:76
+msgid "Channel Manager"
+msgstr "Настройки канала"
 
-#: ../../mod/admin.php:440
-msgid "Maximum Load Average"
-msgstr ""
+#: ../../mod/manage.php:77
+msgid "Current Channel"
+msgstr "Текущий канал"
 
-#: ../../mod/admin.php:440
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
+#: ../../mod/manage.php:79
+msgid "Attach to one of your channels by selecting it."
 msgstr ""
 
-#: ../../mod/admin.php:456
-msgid "Update has been marked successful"
-msgstr ""
+#: ../../mod/manage.php:80
+msgid "Default Channel"
+msgstr "Канал по умолчанию"
+
+#: ../../mod/manage.php:81
+msgid "Make Default"
+msgstr "Сделать стандартным"
 
-#: ../../mod/admin.php:466
-#, php-format
-msgid "Executing %s failed. Check system logs."
+#: ../../mod/vote.php:97
+msgid "Total votes"
 msgstr ""
 
-#: ../../mod/admin.php:469
-#, php-format
-msgid "Update %s was successfully applied."
+#: ../../mod/vote.php:98
+msgid "Average Rating"
 msgstr ""
 
-#: ../../mod/admin.php:473
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
+#: ../../mod/match.php:16
+msgid "Profile Match"
 msgstr ""
 
-#: ../../mod/admin.php:476
-#, php-format
-msgid "Update function %s could not be found."
+#: ../../mod/match.php:24
+msgid "No keywords to match. Please add keywords to your default profile."
 msgstr ""
 
-#: ../../mod/admin.php:491
-msgid "No failed updates."
-msgstr "Ошибок обновлений нет."
+#: ../../mod/match.php:61
+msgid "is interested in:"
+msgstr "заинтересован в:"
 
-#: ../../mod/admin.php:495
-msgid "Failed Updates"
-msgstr "Обновления с ошибками"
+#: ../../mod/match.php:69
+msgid "No matches"
+msgstr "Нет соответствий"
 
-#: ../../mod/admin.php:497
-msgid "Mark success (if update was manually applied)"
+#: ../../mod/zfinger.php:23
+msgid "invalid target signature"
 msgstr ""
 
-#: ../../mod/admin.php:498
-msgid "Attempt to execute this update step automatically"
+#: ../../mod/settings.php:71
+msgid "Name is required"
+msgstr "Необходимо имя"
+
+#: ../../mod/settings.php:75
+msgid "Key and Secret are required"
 msgstr ""
 
-#: ../../mod/admin.php:524
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+#: ../../mod/settings.php:79 ../../mod/settings.php:533
+msgid "Update"
+msgstr "Обновление"
 
-#: ../../mod/admin.php:531
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s канал удален"
-msgstr[1] "%s канала удалены"
-msgstr[2] "%s каналов удалено"
+#: ../../mod/settings.php:192
+msgid "Passwords do not match. Password unchanged."
+msgstr "Пароли не совпадают. Пароль не изменён."
 
-#: ../../mod/admin.php:562
-msgid "Account not found"
-msgstr "Аккаунт не найден"
+#: ../../mod/settings.php:196
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Пустые пароли не допускаются. Пароль не изменён."
 
-#: ../../mod/admin.php:573
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Пользователь '%s' удален"
+#: ../../mod/settings.php:209
+msgid "Password changed."
+msgstr "Пароль изменен."
 
-#: ../../mod/admin.php:582
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Пользователь '%s' разрешен"
+#: ../../mod/settings.php:211
+msgid "Password update failed. Please try again."
+msgstr "Изменение пароля закончилось неуспешно. Пожалуйста, попробуйте еще раз."
 
-#: ../../mod/admin.php:582
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Пользователь '%s' заблокирован"
+#: ../../mod/settings.php:225
+msgid "Not valid email."
+msgstr "Не действительный адрес электронной почты."
 
-#: ../../mod/admin.php:613
-msgid "Normal Account"
-msgstr "Нормальный аккаунт"
+#: ../../mod/settings.php:228
+msgid "Protected email address. Cannot change to that email."
+msgstr ""
 
-#: ../../mod/admin.php:614
-msgid "Soapbox Account"
-msgstr "Soapbox аккаунт"
+#: ../../mod/settings.php:237
+msgid "System failure storing new email. Please try again."
+msgstr ""
 
-#: ../../mod/admin.php:615
-msgid "Community/Celebrity Account"
-msgstr "Community/Celebrity аккаунт"
+#: ../../mod/settings.php:435
+msgid "Settings updated."
+msgstr "Настройки обновленны."
 
-#: ../../mod/admin.php:616
-msgid "Automatic Friend Account"
-msgstr "Аккаунт \"автоматически друзья\""
+#: ../../mod/settings.php:506 ../../mod/settings.php:532
+#: ../../mod/settings.php:568
+msgid "Add application"
+msgstr "Добавить приложения"
 
-#: ../../mod/admin.php:634
-msgid "select all"
-msgstr "выбрать все"
+#: ../../mod/settings.php:509
+msgid "Name of application"
+msgstr ""
 
-#: ../../mod/admin.php:635
-msgid "User registrations waiting for confirm"
-msgstr "Регистрации пользователей ждут подтверждения"
+#: ../../mod/settings.php:510 ../../mod/settings.php:536
+msgid "Consumer Key"
+msgstr "Ключ клиента"
 
-#: ../../mod/admin.php:636
-msgid "Request date"
-msgstr "Дата запроса"
+#: ../../mod/settings.php:510 ../../mod/settings.php:511
+msgid "Automatically generated - change if desired. Max length 20"
+msgstr ""
 
-#: ../../mod/admin.php:637
-msgid "No registrations."
-msgstr "Новых регистраций пока нет."
+#: ../../mod/settings.php:511 ../../mod/settings.php:537
+msgid "Consumer Secret"
+msgstr "Секрет клиента"
 
-#: ../../mod/admin.php:639
-msgid "Deny"
-msgstr "Запретить"
+#: ../../mod/settings.php:512 ../../mod/settings.php:538
+msgid "Redirect"
+msgstr "Перенаправление"
 
-#: ../../mod/admin.php:645
-msgid "Register date"
-msgstr "Дата регистрации"
+#: ../../mod/settings.php:512
+msgid ""
+"Redirect URI - leave blank unless your application specifically requires "
+"this"
+msgstr ""
 
-#: ../../mod/admin.php:645
-msgid "Last login"
-msgstr "Последний вход"
+#: ../../mod/settings.php:513 ../../mod/settings.php:539
+msgid "Icon url"
+msgstr "URL-адрес значка"
 
-#: ../../mod/admin.php:645
-msgid "Service Class"
-msgstr "Класс службы"
+#: ../../mod/settings.php:513
+msgid "Optional"
+msgstr "Необязательно"
 
-#: ../../mod/admin.php:647
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr ""
+#: ../../mod/settings.php:524
+msgid "You can't edit this application."
+msgstr "Вы не можете редактировать это приложение."
 
-#: ../../mod/admin.php:648
-msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
+#: ../../mod/settings.php:567
+msgid "Connected Apps"
+msgstr "Подключенные приложения"
+
+#: ../../mod/settings.php:571
+msgid "Client key starts with"
 msgstr ""
 
-#: ../../mod/admin.php:689
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Плагин %s отключен."
+#: ../../mod/settings.php:572
+msgid "No name"
+msgstr "Без названия"
 
-#: ../../mod/admin.php:693
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Плагин %s включен."
+#: ../../mod/settings.php:573
+msgid "Remove authorization"
+msgstr "Удалить разрешение"
 
-#: ../../mod/admin.php:703 ../../mod/admin.php:901
-msgid "Disable"
-msgstr "Запретить"
+#: ../../mod/settings.php:584
+msgid "No feature settings configured"
+msgstr "Параметры функций не настроены"
 
-#: ../../mod/admin.php:705 ../../mod/admin.php:903
-msgid "Enable"
-msgstr "Разрешить"
+#: ../../mod/settings.php:592
+msgid "Feature Settings"
+msgstr "Настройки функции"
 
-#: ../../mod/admin.php:727 ../../mod/admin.php:932
-msgid "Toggle"
-msgstr "Переключить"
+#: ../../mod/settings.php:615
+msgid "Account Settings"
+msgstr "Настройки аккаунта"
 
-#: ../../mod/admin.php:735 ../../mod/admin.php:942
-msgid "Author: "
-msgstr "Автор: "
+#: ../../mod/settings.php:616
+msgid "Password Settings"
+msgstr "Настройки пароля"
 
-#: ../../mod/admin.php:736 ../../mod/admin.php:943
-msgid "Maintainer: "
-msgstr "Обслуживающий: "
+#: ../../mod/settings.php:617
+msgid "New Password:"
+msgstr "Новый пароль:"
 
-#: ../../mod/admin.php:865
-msgid "No themes found."
-msgstr "Темы не найдены."
+#: ../../mod/settings.php:618
+msgid "Confirm:"
+msgstr "Подтверждение:"
 
-#: ../../mod/admin.php:924
-msgid "Screenshot"
-msgstr "Скриншот"
+#: ../../mod/settings.php:618
+msgid "Leave password fields blank unless changing"
+msgstr "Оставьте поля пустыми, если не меняется"
 
-#: ../../mod/admin.php:972
-msgid "[Experimental]"
-msgstr "[экспериментальный]"
+#: ../../mod/settings.php:620 ../../mod/settings.php:912
+msgid "Email Address:"
+msgstr "Адрес электронной почты:"
 
-#: ../../mod/admin.php:973
-msgid "[Unsupported]"
-msgstr "[неподдерживаемый]"
+#: ../../mod/settings.php:621
+msgid "Remove Account"
+msgstr "Удалить аккаунт"
 
-#: ../../mod/admin.php:1000
-msgid "Log settings updated."
-msgstr "Настройки журнала обновленны."
+#: ../../mod/settings.php:622
+msgid "Warning: This action is permanent and cannot be reversed."
+msgstr ""
 
-#: ../../mod/admin.php:1056
-msgid "Clear"
-msgstr "Очистить"
+#: ../../mod/settings.php:638
+msgid "Off"
+msgstr "Выкл."
 
-#: ../../mod/admin.php:1062
-msgid "Debugging"
-msgstr "Включить/Выключить"
+#: ../../mod/settings.php:638
+msgid "On"
+msgstr "Вкл."
 
-#: ../../mod/admin.php:1063
-msgid "Log file"
-msgstr "Файл журнала"
+#: ../../mod/settings.php:645
+msgid "Additional Features"
+msgstr "Дополнительные функции"
 
-#: ../../mod/admin.php:1063
-msgid ""
-"Must be writable by web server. Relative to your Red top-level directory."
-msgstr "Должна быть доступна для записи веб-сервером. Относительно верхнего уровня веб-сайта."
+#: ../../mod/settings.php:670
+msgid "Connector Settings"
+msgstr "Настройки соединителя"
 
-#: ../../mod/admin.php:1064
-msgid "Log level"
-msgstr "Уровень журнала"
+#: ../../mod/settings.php:740
+msgid "Display Settings"
+msgstr "Настройки отображения"
 
-#: ../../mod/lostpass.php:15
-msgid "No valid account found."
-msgstr "Действительный аккаунт не найден."
+#: ../../mod/settings.php:746
+msgid "Display Theme:"
+msgstr "Тема отображения:"
 
-#: ../../mod/lostpass.php:29
-msgid "Password reset request issued. Check your email."
-msgstr ""
+#: ../../mod/settings.php:747
+msgid "Mobile Theme:"
+msgstr "Мобильная тема отображения:"
 
-#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102
-#, php-format
-msgid "Site Member (%s)"
-msgstr "Участник сайта (%s)"
+#: ../../mod/settings.php:748
+msgid "Update browser every xx seconds"
+msgstr "Обновление браузера каждые ХХ секунд"
 
-#: ../../mod/lostpass.php:40
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Требуется сброс пароля на %s"
+#: ../../mod/settings.php:748
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Минимум 10 секунд, без максимума"
 
-#: ../../mod/lostpass.php:63
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
+#: ../../mod/settings.php:749
+msgid "Maximum number of conversations to load at any time:"
 msgstr ""
 
-#: ../../mod/lostpass.php:85 ../../boot.php:1439
-msgid "Password Reset"
-msgstr "Сбросить пароль"
+#: ../../mod/settings.php:749
+msgid "Maximum of 100 items"
+msgstr "Максимум 100 элементов"
 
-#: ../../mod/lostpass.php:86
-msgid "Your password has been reset as requested."
-msgstr ""
+#: ../../mod/settings.php:750
+msgid "Don't show emoticons"
+msgstr "Не показывать emoticons"
 
-#: ../../mod/lostpass.php:87
-msgid "Your new password is"
-msgstr "Ваш новый пароль"
+#: ../../mod/settings.php:786
+msgid "Nobody except yourself"
+msgstr "Никто, кроме вас"
 
-#: ../../mod/lostpass.php:88
-msgid "Save or copy your new password - and then"
-msgstr ""
+#: ../../mod/settings.php:787
+msgid "Only those you specifically allow"
+msgstr "Только комы вы разрешили"
 
-#: ../../mod/lostpass.php:89
-msgid "click here to login"
-msgstr "нажмите здесь чтобы выйти"
+#: ../../mod/settings.php:788
+msgid "Anybody in your address book"
+msgstr "Любой в вашей адресной книге"
 
-#: ../../mod/lostpass.php:90
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr ""
+#: ../../mod/settings.php:789
+msgid "Anybody on this website"
+msgstr "Любой на этом веб-сайте"
+
+#: ../../mod/settings.php:790
+msgid "Anybody in this network"
+msgstr "Любой в этой сети"
 
-#: ../../mod/lostpass.php:107
-#, php-format
-msgid "Your password has changed at %s"
-msgstr "Пароль изменен на %s"
+#: ../../mod/settings.php:791
+msgid "Anybody on the internet"
+msgstr "Любой в интернете"
 
-#: ../../mod/lostpass.php:122
-msgid "Forgot your Password?"
-msgstr "Забыли пароль или логин?"
+#: ../../mod/settings.php:865
+msgid "Publish your default profile in the network directory"
+msgstr "Публикация вашего профиля по умолчанию в каталоге сети"
 
-#: ../../mod/lostpass.php:123
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
+#: ../../mod/settings.php:870
+msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr ""
 
-#: ../../mod/lostpass.php:124
-msgid "Email Address"
-msgstr "Адрес электронной почты"
+#: ../../mod/settings.php:874 ../../mod/profile_photo.php:288
+msgid "or"
+msgstr "или"
 
-#: ../../mod/lostpass.php:125
-msgid "Reset"
-msgstr "Сброс"
+#: ../../mod/settings.php:879
+msgid "Your channel address is"
+msgstr "Адрес вашего канала:"
 
-#: ../../mod/import.php:36
-msgid "Nothing to import."
-msgstr "Ничего импортировать."
+#: ../../mod/settings.php:901
+msgid "Channel Settings"
+msgstr "Настройки канала"
 
-#: ../../mod/import.php:58
-msgid "Unable to download data from old server"
-msgstr "Невозможно загрузить данные из старого сервера"
+#: ../../mod/settings.php:910
+msgid "Basic Settings"
+msgstr "Основные настройки"
 
-#: ../../mod/import.php:64
-msgid "Imported file is empty."
-msgstr "Импортированный файл пуст."
+#: ../../mod/settings.php:913
+msgid "Your Timezone:"
+msgstr "Ваш часовой пояс:"
 
-#: ../../mod/import.php:88
-msgid ""
-"Cannot create a duplicate channel identifier on this system. Import failed."
-msgstr ""
+#: ../../mod/settings.php:914
+msgid "Default Post Location:"
+msgstr "Откуда по умолчанию:"
 
-#: ../../mod/import.php:106
-msgid "Channel clone failed. Import failed."
+#: ../../mod/settings.php:915
+msgid "Use Browser Location:"
+msgstr "Используйте указание браузерa:"
+
+#: ../../mod/settings.php:917
+msgid "Adult Content"
 msgstr ""
 
-#: ../../mod/import.php:116
-msgid "Cloned channel not found. Import failed."
+#: ../../mod/settings.php:917
+msgid "This channel publishes adult content."
 msgstr ""
 
-#: ../../mod/import.php:356
-msgid "Import completed."
-msgstr "Импорт завершен."
+#: ../../mod/settings.php:919
+msgid "Security and Privacy Settings"
+msgstr "Параметры безопасности и конфиденциальности"
 
-#: ../../mod/import.php:369
-msgid "You must be logged in to use this feature."
-msgstr "Вы должны войти в систему, чтобы использовать эту функцию."
+#: ../../mod/settings.php:921
+msgid "Quick Privacy Settings:"
+msgstr "Быстрые параметры безопасности и конфиденциальности:"
 
-#: ../../mod/import.php:374
-msgid "Import Channel"
-msgstr "Импорт канала"
+#: ../../mod/settings.php:922
+msgid "Very Public - extremely permissive"
+msgstr "Очень публично - чрезвычайно разрешающе"
 
-#: ../../mod/import.php:375
-msgid ""
-"Use this form to import an existing channel from a different server/hub. You"
-" may retrieve the channel identity from the old server/hub via the network "
-"or provide an export file. Only identity and connections/relationships will "
-"be imported. Importation of content is not yet available."
+#: ../../mod/settings.php:923
+msgid "Typical - default public, privacy when desired"
+msgstr "Типично - по умолчанию публично, конфиденциальность, только если настроена"
+
+#: ../../mod/settings.php:924
+msgid "Private - default private, rarely open or public"
+msgstr "Частно  - по умолчанию частно, редко открыто или публично"
+
+#: ../../mod/settings.php:925
+msgid "Blocked - default blocked to/from everybody"
+msgstr "Заблокированно - по умолчанию заблокировано для/от всех"
+
+#: ../../mod/settings.php:928
+msgid "Maximum Friend Requests/Day:"
 msgstr ""
 
-#: ../../mod/import.php:376
-msgid "File to Upload"
-msgstr "Файл для загрузки"
+#: ../../mod/settings.php:928
+msgid "May reduce spam activity"
+msgstr ""
 
-#: ../../mod/import.php:377
-msgid "Or provide the old server/hub details"
+#: ../../mod/settings.php:929
+msgid "Default Post Permissions"
 msgstr ""
 
-#: ../../mod/import.php:378
-msgid "Your old identity address (xyz@example.com)"
+#: ../../mod/settings.php:941
+msgid "Maximum private messages per day from unknown people:"
 msgstr ""
 
-#: ../../mod/import.php:379
-msgid "Your old login email address"
-msgstr "Ваш старый адрес электронной почты"
+#: ../../mod/settings.php:941
+msgid "Useful to reduce spamming"
+msgstr ""
 
-#: ../../mod/import.php:380
-msgid "Your old login password"
-msgstr "Ваш старый пароль"
+#: ../../mod/settings.php:944
+msgid "Notification Settings"
+msgstr "Настройки уведомлений"
 
-#: ../../mod/import.php:381
-msgid ""
-"For either option, please choose whether to make this hub your new primary "
-"address, or whether your old location should continue this role. You will be"
-" able to post from either location, but only one can be marked as the "
-"primary location for files, photos, and media."
+#: ../../mod/settings.php:945
+msgid "By default post a status message when:"
 msgstr ""
 
-#: ../../mod/import.php:382
-msgid "Make this hub my primary location"
+#: ../../mod/settings.php:946
+msgid "accepting a friend request"
 msgstr ""
 
-#: ../../mod/manage.php:62
-#, php-format
-msgid "You have created %1$.0f of %2$.0f allowed channels."
+#: ../../mod/settings.php:947
+msgid "joining a forum/community"
 msgstr ""
 
-#: ../../mod/manage.php:70
-msgid "Create a new channel"
-msgstr "Создать новый канал"
+#: ../../mod/settings.php:948
+msgid "making an <em>interesting</em> profile change"
+msgstr ""
 
-#: ../../mod/manage.php:75
-msgid "Channel Manager"
-msgstr "Настройки канала"
+#: ../../mod/settings.php:949
+msgid "Send a notification email when:"
+msgstr "Отправить уведомление по электронной почте, если:"
 
-#: ../../mod/manage.php:76
-msgid "Current Channel"
-msgstr "Текущий канал"
+#: ../../mod/settings.php:950
+msgid "You receive an introduction"
+msgstr "Вы получили введение"
 
-#: ../../mod/manage.php:78
-msgid "Attach to one of your channels by selecting it."
+#: ../../mod/settings.php:951
+msgid "Your introductions are confirmed"
 msgstr ""
 
-#: ../../mod/manage.php:79
-msgid "Default Channel"
-msgstr "Канал по умолчанию"
-
-#: ../../mod/manage.php:80
-msgid "Make Default"
-msgstr "Сделать стандартным"
+#: ../../mod/settings.php:952
+msgid "Someone writes on your profile wall"
+msgstr ""
 
-#: ../../mod/vote.php:97
-msgid "Total votes"
+#: ../../mod/settings.php:953
+msgid "Someone writes a followup comment"
 msgstr ""
 
-#: ../../mod/vote.php:98
-msgid "Average Rating"
+#: ../../mod/settings.php:954
+msgid "You receive a private message"
 msgstr ""
 
-#: ../../mod/match.php:12
-msgid "Profile Match"
+#: ../../mod/settings.php:955
+msgid "You receive a friend suggestion"
 msgstr ""
 
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
+#: ../../mod/settings.php:956
+msgid "You are tagged in a post"
 msgstr ""
 
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr "заинтересован в:"
+#: ../../mod/settings.php:957
+msgid "You are poked/prodded/etc. in a post"
+msgstr ""
 
-#: ../../mod/crepair.php:102
-msgid "Contact settings applied."
+#: ../../mod/settings.php:960
+msgid "Advanced Account/Page Type Settings"
 msgstr ""
 
-#: ../../mod/crepair.php:104
-msgid "Contact update failed."
-msgstr "Ошибка обновления контакта."
+#: ../../mod/settings.php:961
+msgid "Change the behaviour of this account for special situations"
+msgstr ""
 
-#: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20
-#: ../../mod/fsuggest.php:92
-msgid "Contact not found."
-msgstr "Контакт не найден."
+#: ../../mod/mail.php:33
+msgid "Unable to lookup recipient."
+msgstr ""
 
-#: ../../mod/crepair.php:135
-msgid "Repair Contact Settings"
-msgstr "Починить настройки контакта"
+#: ../../mod/mail.php:41
+msgid "Unable to communicate with requested channel."
+msgstr ""
 
-#: ../../mod/crepair.php:137
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
+#: ../../mod/mail.php:48
+msgid "Cannot verify requested channel."
 msgstr ""
 
-#: ../../mod/crepair.php:138
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
+#: ../../mod/mail.php:74
+msgid "Selected channel has private message restrictions. Send failed."
 msgstr ""
 
-#: ../../mod/crepair.php:144
-msgid "Return to contact editor"
-msgstr "Вернуться к редактору контакта"
+#: ../../mod/mail.php:121 ../../mod/message.php:31
+msgid "Messages"
+msgstr "Переписка"
 
-#: ../../mod/crepair.php:149
-msgid "Account Nickname"
-msgstr "Псевдоним аккаунта"
+#: ../../mod/mail.php:132
+msgid "Message deleted."
+msgstr "Сообщение удалено."
 
-#: ../../mod/crepair.php:150
-msgid "@Tagname - overrides Name/Nickname"
+#: ../../mod/mail.php:149
+msgid "Message recalled."
 msgstr ""
 
-#: ../../mod/crepair.php:151
-msgid "Account URL"
-msgstr "URL аккаунта"
+#: ../../mod/mail.php:206
+msgid "Send Private Message"
+msgstr "Отправить личное сообщение"
 
-#: ../../mod/crepair.php:152
-msgid "Friend Request URL"
-msgstr ""
+#: ../../mod/mail.php:207 ../../mod/mail.php:323
+msgid "To:"
+msgstr "Кому:"
 
-#: ../../mod/crepair.php:153
-msgid "Friend Confirm URL"
-msgstr ""
+#: ../../mod/mail.php:212 ../../mod/mail.php:325
+msgid "Subject:"
+msgstr "Тема:"
+
+#: ../../mod/mail.php:249
+msgid "Message not found."
+msgstr "Сообщение не найдено."
+
+#: ../../mod/mail.php:292 ../../mod/message.php:72
+msgid "Delete message"
+msgstr "Удалить сообщение"
 
-#: ../../mod/crepair.php:154
-msgid "Notification Endpoint URL"
+#: ../../mod/mail.php:293
+msgid "Recall message"
 msgstr ""
 
-#: ../../mod/crepair.php:155
-msgid "Poll/Feed URL"
+#: ../../mod/mail.php:295
+msgid "Message has been recalled."
 msgstr ""
 
-#: ../../mod/crepair.php:156
-msgid "New photo from this URL"
-msgstr "Новое фото из этого URL"
+#: ../../mod/mail.php:312
+msgid "Private Conversation"
+msgstr "Личный разговор"
 
-#: ../../mod/zfinger.php:23
-msgid "invalid target signature"
+#: ../../mod/mail.php:316
+msgid "Delete conversation"
+msgstr "Удалить разговор"
+
+#: ../../mod/mail.php:318
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
 msgstr ""
 
-#: ../../mod/follow.php:25
-msgid "Channel added."
-msgstr "Контакт добавлен."
+#: ../../mod/mail.php:322
+msgid "Send Reply"
+msgstr "Отправить снова"
 
-#: ../../mod/editlayout.php:37 ../../mod/editwebpage.php:31
-#: ../../mod/editpost.php:20 ../../mod/editblock.php:37
+#: ../../mod/editlayout.php:36 ../../mod/editpost.php:20
+#: ../../mod/editwebpage.php:32 ../../mod/editblock.php:36
 msgid "Item not found"
 msgstr "Элемент не найден"
 
-#: ../../mod/editlayout.php:69
+#: ../../mod/editlayout.php:68
 msgid "Edit Layout"
 msgstr ""
 
-#: ../../mod/editlayout.php:105 ../../mod/editwebpage.php:124
-#: ../../mod/editpost.php:98 ../../mod/editblock.php:119
+#: ../../mod/editlayout.php:105 ../../mod/editpost.php:102
+#: ../../mod/editwebpage.php:148 ../../mod/editblock.php:119
 msgid "Insert YouTube video"
 msgstr "Вставить YouTube видео"
 
-#: ../../mod/editlayout.php:106 ../../mod/editwebpage.php:125
-#: ../../mod/editpost.php:99 ../../mod/editblock.php:120
+#: ../../mod/editlayout.php:106 ../../mod/editpost.php:103
+#: ../../mod/editwebpage.php:149 ../../mod/editblock.php:120
 msgid "Insert Vorbis [.ogg] video"
 msgstr "Вставить Vorbis [.ogg] видео"
 
-#: ../../mod/editlayout.php:107 ../../mod/editwebpage.php:126
-#: ../../mod/editpost.php:100 ../../mod/editblock.php:121
+#: ../../mod/editlayout.php:107 ../../mod/editpost.php:104
+#: ../../mod/editwebpage.php:150 ../../mod/editblock.php:121
 msgid "Insert Vorbis [.ogg] audio"
 msgstr "Вставить Vorbis [.ogg] музыку"
 
-#: ../../mod/editlayout.php:138
+#: ../../mod/editlayout.php:141
 msgid "Delete Layout"
 msgstr ""
 
-#: ../../mod/nogroup.php:58
-msgid "Contacts who are not members of a group"
-msgstr ""
-
-#: ../../mod/profile_photo.php:54
+#: ../../mod/profile_photo.php:44
 msgid "Image uploaded but image cropping failed."
 msgstr ""
 
-#: ../../mod/profile_photo.php:107
+#: ../../mod/profile_photo.php:97
 msgid "Image resize failed."
 msgstr "Изменение размера изображения не удалось."
 
-#: ../../mod/profile_photo.php:151
+#: ../../mod/profile_photo.php:141
 msgid ""
 "Shift-reload the page or clear browser cache if the new photo does not "
 "display immediately."
 msgstr ""
 
-#: ../../mod/profile_photo.php:173
+#: ../../mod/profile_photo.php:163
 #, php-format
 msgid "Image exceeds size limit of %d"
 msgstr ""
 
-#: ../../mod/profile_photo.php:182
+#: ../../mod/profile_photo.php:172
 msgid "Unable to process image."
 msgstr ""
 
-#: ../../mod/profile_photo.php:224 ../../mod/profile_photo.php:272
+#: ../../mod/profile_photo.php:214 ../../mod/profile_photo.php:262
 msgid "Photo not available."
 msgstr "Фотография не доступна."
 
-#: ../../mod/profile_photo.php:291
+#: ../../mod/profile_photo.php:281
 msgid "Upload File:"
 msgstr "Загрузить файл:"
 
-#: ../../mod/profile_photo.php:292
+#: ../../mod/profile_photo.php:282
 msgid "Select a profile:"
 msgstr "Выберите профиль:"
 
-#: ../../mod/profile_photo.php:293
+#: ../../mod/profile_photo.php:283
 msgid "Upload Profile Photo"
 msgstr "Загрузить фотографию профиля"
 
-#: ../../mod/profile_photo.php:294
+#: ../../mod/profile_photo.php:284
 msgid "Upload"
 msgstr "Загрузка"
 
-#: ../../mod/profile_photo.php:298
+#: ../../mod/profile_photo.php:288
 msgid "skip this step"
 msgstr "пропустить этот шаг"
 
-#: ../../mod/profile_photo.php:298
+#: ../../mod/profile_photo.php:288
 msgid "select a photo from your photo albums"
 msgstr ""
 
-#: ../../mod/profile_photo.php:312
+#: ../../mod/profile_photo.php:302
 msgid "Crop Image"
 msgstr "Обрезать изображение"
 
-#: ../../mod/profile_photo.php:313
+#: ../../mod/profile_photo.php:303
 msgid "Please adjust the image cropping for optimum viewing."
 msgstr ""
 
-#: ../../mod/profile_photo.php:315
+#: ../../mod/profile_photo.php:305
 msgid "Done Editing"
 msgstr "Закончить редактирование"
 
-#: ../../mod/profile_photo.php:350
+#: ../../mod/profile_photo.php:340
 msgid "Image uploaded successfully."
 msgstr "Загрузка изображениея прошла успешно."
 
-#: ../../mod/profile_photo.php:352
+#: ../../mod/profile_photo.php:342
 msgid "Image upload failed."
 msgstr "Загрузка изображениея прошла безуспешно."
 
-#: ../../mod/profile_photo.php:361
+#: ../../mod/profile_photo.php:351
 #, php-format
 msgid "Image size reduction [%s] failed."
 msgstr ""
 
-#: ../../mod/editwebpage.php:88
-msgid "Edit Webpage"
-msgstr ""
+#: ../../mod/editpost.php:31
+msgid "Item is not editable"
+msgstr "Элемент нельзя редактировать"
 
-#: ../../mod/editwebpage.php:159
-msgid "Delete Webpage"
-msgstr ""
+#: ../../mod/editpost.php:53
+msgid "Delete item?"
+msgstr "Удалить элемент?"
 
 #: ../../mod/notifications.php:26
 msgid "Invalid request identifier."
 msgstr ""
 
-#: ../../mod/notifications.php:76
-msgid "System"
-msgstr "Система"
-
-#: ../../mod/notifications.php:96
-msgid "Introductions"
-msgstr "Введения"
-
-#: ../../mod/notifications.php:121
-msgid "Show Ignored Requests"
-msgstr "Показать проигнорированные запросы"
-
-#: ../../mod/notifications.php:121
-msgid "Hide Ignored Requests"
-msgstr "Скрыть проигнорированные запросы"
-
-#: ../../mod/notifications.php:147 ../../mod/notifications.php:193
-msgid "Notification type: "
-msgstr "Тип оповещения:"
-
-#: ../../mod/notifications.php:148
-msgid "Friend Suggestion"
-msgstr ""
-
-#: ../../mod/notifications.php:150
-#, php-format
-msgid "suggested by %s"
-msgstr ""
-
-#: ../../mod/notifications.php:179
-msgid "Claims to be known to you: "
-msgstr ""
-
-#: ../../mod/notifications.php:179
-msgid "yes"
-msgstr "да"
-
-#: ../../mod/notifications.php:179
-msgid "no"
-msgstr "нет"
-
-#: ../../mod/notifications.php:186
-msgid "Approve as: "
-msgstr "Утвердить в качестве:"
-
-#: ../../mod/notifications.php:187
-msgid "Friend"
-msgstr "Друг"
-
-#: ../../mod/notifications.php:188
-msgid "Sharer"
-msgstr ""
-
-#: ../../mod/notifications.php:188
-msgid "Fan/Admirer"
-msgstr "Поклонник"
-
-#: ../../mod/notifications.php:194
-msgid "Friend/Connect Request"
-msgstr ""
-
-#: ../../mod/notifications.php:194
-msgid "New Follower"
-msgstr "Новый последователь"
-
-#: ../../mod/notifications.php:215
-msgid "No introductions."
-msgstr "Введений нет."
-
-#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
-#: ../../mod/notifications.php:465
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s нравится %s's сообщение"
-
-#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
-#: ../../mod/notifications.php:474
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s не нравится %s's сообщение"
-
-#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
-#: ../../mod/notifications.php:488
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s теперь в друзьях с %s"
-
-#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
-#, php-format
-msgid "%s created a new post"
-msgstr "%s создал новое сообщение"
-
-#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
-#: ../../mod/notifications.php:497
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s прокомментировал %s's сообщение"
-
-#: ../../mod/notifications.php:302
-msgid "No more network notifications."
-msgstr "Новых оповещений сети пока нет."
-
-#: ../../mod/notifications.php:306
-msgid "Network Notifications"
-msgstr "Оповещения сети"
+#: ../../mod/notifications.php:35
+msgid "Discard"
+msgstr "Отменить"
 
-#: ../../mod/notifications.php:332 ../../mod/notify.php:54
+#: ../../mod/notifications.php:93 ../../mod/notify.php:54
 msgid "No more system notifications."
 msgstr "Новых оповещений системы пока нет."
 
-#: ../../mod/notifications.php:336 ../../mod/notify.php:58
+#: ../../mod/notifications.php:97 ../../mod/notify.php:58
 msgid "System Notifications"
 msgstr "Системные оповещения "
 
-#: ../../mod/notifications.php:427
-msgid "No more personal notifications."
-msgstr "Новых личных оповещений пока нет."
-
-#: ../../mod/notifications.php:431
-msgid "Personal Notifications"
-msgstr "Личные оповещения "
-
-#: ../../mod/notifications.php:504
-msgid "No more home notifications."
-msgstr "Новых домашних оповещений пока нет."
+#: ../../mod/blocks.php:65
+msgid "Block Name"
+msgstr ""
 
-#: ../../mod/notifications.php:508
-msgid "Home Notifications"
-msgstr "Домашние оповещения"
+#: ../../mod/oexchange.php:23
+msgid "Unable to find your hub."
+msgstr ""
 
-#: ../../mod/oexchange.php:22
+#: ../../mod/oexchange.php:37
 msgid "Post successful."
 msgstr "Публикация прошла успешно."
 
-#: ../../mod/editpost.php:31
-msgid "Item is not editable"
-msgstr "Элемент нельзя редактировать"
+#: ../../mod/editwebpage.php:106
+msgid "Edit Webpage"
+msgstr ""
 
-#: ../../mod/editpost.php:40
-msgid "Edit post"
-msgstr "Редактировать сообщение"
+#: ../../mod/editwebpage.php:116
+msgid "Delete webpage?"
+msgstr ""
+
+#: ../../mod/editwebpage.php:189
+msgid "Delete Webpage"
+msgstr ""
 
-#: ../../mod/profile.php:111
+#: ../../mod/profile.php:64 ../../mod/profile.php:72
 msgid "Access to this profile has been restricted."
 msgstr "Доступ к этому профилю ограничен."
 
@@ -6259,10 +6516,18 @@ msgstr ""
 msgid "Make this post private"
 msgstr "Сделать это сообщение личным"
 
-#: ../../mod/wall_upload.php:41 ../../mod/item.php:1077
+#: ../../mod/wall_upload.php:41 ../../mod/item.php:1068
 msgid "Wall Photos"
 msgstr "Стена фотографий"
 
+#: ../../mod/channel.php:25
+msgid "You must be logged in to see this page."
+msgstr ""
+
+#: ../../mod/channel.php:85
+msgid "Insufficient permissions.  Request redirected to profile page."
+msgstr ""
+
 #: ../../mod/community.php:23
 msgid "Not available."
 msgstr "Недоступно."
@@ -6275,9 +6540,9 @@ msgstr "Сообщество"
 msgid "No results."
 msgstr "Ничего не найдено."
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "Файлы"
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+msgid "Contact not found."
+msgstr "Контакт не найден."
 
 #: ../../mod/fsuggest.php:63
 msgid "Friend suggestion sent."
@@ -6292,193 +6557,192 @@ msgstr "Пригласить друзей"
 msgid "Suggest a friend for %s"
 msgstr ""
 
-#: ../../mod/editblock.php:83
+#: ../../mod/editblock.php:82
 msgid "Edit Block"
-msgstr ""
+msgstr "Редактировать блок"
 
-#: ../../mod/editblock.php:154
+#: ../../mod/editblock.php:157
 msgid "Delete Block"
-msgstr ""
+msgstr "Удалить блок"
 
-#: ../../mod/profperm.php:34 ../../mod/profperm.php:64
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
 msgid "Invalid profile identifier."
 msgstr ""
 
-#: ../../mod/profperm.php:110
+#: ../../mod/profperm.php:101
 msgid "Profile Visibility Editor"
 msgstr "Редактор видимости профиля"
 
-#: ../../mod/profperm.php:114
+#: ../../mod/profperm.php:105
 msgid "Click on a contact to add or remove."
 msgstr ""
 
-#: ../../mod/profperm.php:123
+#: ../../mod/profperm.php:114
 msgid "Visible To"
 msgstr "Видно"
 
-#: ../../mod/profperm.php:139
+#: ../../mod/profperm.php:130
 msgid "All Contacts (with secure profile access)"
 msgstr "Все контакты (с доступом защищенному профилю)"
 
-#: ../../mod/item.php:133
-msgid "Unable to locate original post."
-msgstr "Не удалось найти оригинал."
-
-#: ../../mod/item.php:301
-msgid "Empty post discarded."
-msgstr "Отказаться от пустой почты."
-
-#: ../../mod/item.php:345
-msgid "Executable content type not permitted to this channel."
-msgstr ""
-
-#: ../../mod/item.php:792
-msgid "System error. Post not saved."
-msgstr "Системная ошибка. Сообщение не сохранено."
-
-#: ../../mod/item.php:1153
-#, php-format
-msgid "You have reached your limit of %1$.0f top level posts."
-msgstr ""
-
-#: ../../mod/item.php:1159
-#, php-format
-msgid "You have reached your limit of %1$.0f webpages."
-msgstr ""
-
-#: ../../mod/siteinfo.php:51
+#: ../../mod/siteinfo.php:57
 #, php-format
 msgid "Version %s"
 msgstr "Версия %s"
 
-#: ../../mod/siteinfo.php:65
+#: ../../mod/siteinfo.php:76
 msgid "Installed plugins/addons/apps:"
 msgstr ""
 
-#: ../../mod/siteinfo.php:78
+#: ../../mod/siteinfo.php:89
 msgid "No installed plugins/addons/apps"
 msgstr ""
 
-#: ../../mod/siteinfo.php:81
+#: ../../mod/siteinfo.php:92
 msgid "Red"
 msgstr "Red"
 
-#: ../../mod/siteinfo.php:82
+#: ../../mod/siteinfo.php:93
 msgid ""
-"This is Red - another decentralized, distributed communications project by "
-"the folks at Friendica."
+"This is a hub of the Red Matrix - a global cooperative network of "
+"decentralised privacy enhanced websites."
 msgstr ""
 
-#: ../../mod/siteinfo.php:84
+#: ../../mod/siteinfo.php:96
 msgid "Running at web location"
 msgstr ""
 
-#: ../../mod/siteinfo.php:85
+#: ../../mod/siteinfo.php:97
 msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica and/or Red project."
+"Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more "
+"about the Red Matrix."
 msgstr ""
 
-#: ../../mod/siteinfo.php:86
+#: ../../mod/siteinfo.php:98
 msgid "Bug reports and issues: please visit"
 msgstr ""
 
-#: ../../mod/siteinfo.php:89
+#: ../../mod/siteinfo.php:101
 msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
+"Suggestions, praise, donations, etc. - please email \"redmatrix\" at "
+"librelist - dot com"
 msgstr ""
 
-#: ../../mod/suggest.php:41
+#: ../../mod/suggest.php:35
 msgid ""
 "No suggestions available. If this is a new site, please try again in 24 "
 "hours."
 msgstr ""
 
-#: ../../mod/suggest.php:58
-msgid "Ignore/Hide"
-msgstr "Игнорировать / Скрыть"
+#: ../../mod/message.php:41
+msgid "Conversation removed."
+msgstr "Разговор удален."
+
+#: ../../mod/message.php:56
+msgid "No messages."
+msgstr "Нет сообщений."
+
+#: ../../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 ""
 
-#: ../../mod/pubsites.php:28
-msgid "Site URL"
+#: ../../mod/pubsites.php:25
+msgid ""
+"The listed sites allow public registration into the Red Matrix. All sites in"
+" the matrix are interlinked so membership on any of them conveys membership "
+"in the matrix as a whole. Some sites may require subscription or provide "
+"tiered service plans. The provider links <strong>may</strong> provide "
+"additional details."
 msgstr ""
 
-#: ../../mod/pubsites.php:28
+#: ../../mod/pubsites.php:31
+msgid "Site URL"
+msgstr "URL веб-сайта"
+
+#: ../../mod/pubsites.php:31
 msgid "Access Type"
 msgstr ""
 
-#: ../../mod/pubsites.php:28
+#: ../../mod/pubsites.php:31
 msgid "Registration Policy"
-msgstr ""
+msgstr "Правила регистрации"
 
-#: ../../mod/register.php:35
+#: ../../mod/register.php:43
 msgid "Maximum daily site registrations exceeded. Please try again tomorrow."
 msgstr ""
 
-#: ../../mod/register.php:41
+#: ../../mod/register.php:49
 msgid ""
 "Please indicate acceptance of the Terms of Service. Registration failed."
 msgstr ""
 
-#: ../../mod/register.php:69
+#: ../../mod/register.php:77
 msgid "Passwords do not match."
-msgstr ""
+msgstr "Пароли не совпадают."
 
-#: ../../mod/register.php:97
+#: ../../mod/register.php:105
 msgid ""
 "Registration successful. Please check your email for validation "
 "instructions."
 msgstr ""
 
-#: ../../mod/register.php:103
+#: ../../mod/register.php:111
 msgid "Your registration is pending approval by the site owner."
 msgstr ""
 
-#: ../../mod/register.php:106
+#: ../../mod/register.php:114
 msgid "Your registration can not be processed."
 msgstr ""
 
-#: ../../mod/register.php:141
+#: ../../mod/register.php:147
+msgid "Registration on this site/hub is by approval only."
+msgstr ""
+
+#: ../../mod/register.php:148
+msgid "<a href=\"pubsites\">Register at another affiliated site/hub</a>"
+msgstr ""
+
+#: ../../mod/register.php:156
 msgid ""
 "This site has exceeded the number of allowed daily account registrations. "
 "Please try again tomorrow."
 msgstr ""
 
-#: ../../mod/register.php:152
+#: ../../mod/register.php:167
 msgid "Terms of Service"
 msgstr ""
 
-#: ../../mod/register.php:158
+#: ../../mod/register.php:173
 #, php-format
 msgid "I accept the %s for this website"
 msgstr ""
 
-#: ../../mod/register.php:160
+#: ../../mod/register.php:175
 #, php-format
 msgid "I am over 13 years of age and accept the %s for this website"
 msgstr ""
 
-#: ../../mod/register.php:175
+#: ../../mod/register.php:194
 msgid "Membership on this site is by invitation only."
 msgstr ""
 
-#: ../../mod/register.php:176
+#: ../../mod/register.php:195
 msgid "Please enter your invitation code"
 msgstr ""
 
-#: ../../mod/register.php:179
+#: ../../mod/register.php:198
 msgid "Your email address"
 msgstr "Ваш адрес электронной почты"
 
-#: ../../mod/register.php:180
+#: ../../mod/register.php:199
 msgid "Choose a password"
 msgstr "Выберите пароль"
 
-#: ../../mod/register.php:181
+#: ../../mod/register.php:200
 msgid "Please re-enter your password"
 msgstr ""
 
@@ -6486,215 +6750,384 @@ msgstr ""
 msgid "Please login."
 msgstr "Войдите пожалуйста."
 
-#: ../../mod/post.php:114
+#: ../../mod/removeme.php:49
+msgid "Remove This Channel"
+msgstr "Удалить этот канал"
+
+#: ../../mod/removeme.php:50
 msgid ""
-"Remote authentication blocked. You are logged into this site locally. Please"
-" logout and retry."
+"This will completely remove this channel from the network. Once this has "
+"been done it is not recoverable."
 msgstr ""
 
-#: ../../mod/post.php:127
-#, php-format
-msgid "Welcome %s. Remote authentication successful."
+#: ../../mod/removeme.php:51
+msgid "Please enter your password for verification:"
+msgstr ""
+
+#: ../../mod/removeme.php:52
+msgid "Remove this channel and all its clones from the network"
 msgstr ""
 
-#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
+#: ../../mod/removeme.php:52
+msgid ""
+"By default only the instance of the channel located on this hub will be "
+"removed from the network"
+msgstr ""
+
+#: ../../mod/removeme.php:53
 msgid "Remove My Account"
 msgstr "Удалить мой аккаунт"
 
-#: ../../mod/removeme.php:46
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
+#: ../../mod/item.php:145
+msgid "Unable to locate original post."
+msgstr "Не удалось найти оригинал."
+
+#: ../../mod/item.php:343
+msgid "Empty post discarded."
+msgstr "Отказаться от пустой почты."
+
+#: ../../mod/item.php:385
+msgid "Executable content type not permitted to this channel."
 msgstr ""
 
-#: ../../mod/removeme.php:47
-msgid "Please enter your password for verification:"
+#: ../../mod/item.php:812
+msgid "System error. Post not saved."
+msgstr "Системная ошибка. Сообщение не сохранено."
+
+#: ../../mod/item.php:1148
+#, php-format
+msgid "You have reached your limit of %1$.0f top level posts."
 msgstr ""
 
-#: ../../mod/filestorage.php:22
-msgid "Permission Denied."
+#: ../../mod/item.php:1154
+#, php-format
+msgid "You have reached your limit of %1$.0f webpages."
 msgstr ""
 
-#: ../../mod/filestorage.php:59
-msgid "Download"
+#: ../../mod/mood.php:138
+msgid "Mood"
 msgstr ""
 
-#: ../../mod/filestorage.php:64
-msgid "Used: "
+#: ../../mod/mood.php:139
+msgid "Set your current mood and tell your friends"
 msgstr ""
 
-#: ../../mod/filestorage.php:66
-msgid "Limit: "
+#: ../../mod/ping.php:160
+msgid "sent you a private message"
+msgstr "отправил вам личное сообщение"
+
+#: ../../mod/ping.php:218
+msgid "added your channel"
+msgstr "добавил ваш канал"
+
+#: ../../mod/ping.php:262
+msgid "posted an event"
 msgstr ""
 
-#: ../../mod/mood.php:133
-msgid "Mood"
+#: ../../mod/dirprofile.php:111
+msgid "Status: "
 msgstr ""
 
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
+#: ../../mod/dirprofile.php:112
+msgid "Sexual Preference: "
+msgstr "Сексуальная ориентация:"
+
+#: ../../mod/dirprofile.php:114
+msgid "Homepage: "
+msgstr "Домашняя страница:"
+
+#: ../../mod/dirprofile.php:115
+msgid "Hometown: "
+msgstr ""
+
+#: ../../mod/dirprofile.php:117
+msgid "About: "
+msgstr "О себе:"
+
+#: ../../mod/dirprofile.php:163
+msgid "Keywords: "
+msgstr "Ключевые слова:"
+
+#: ../../view/theme/redbasic/php/config.php:74
+msgid "Scheme Default"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:75
+msgid "red"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:76
+msgid "black"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:77
+msgid "silver"
 msgstr ""
 
-#: ../../view/theme/redbasic/php/config.php:138
-#: ../../view/theme/redbasic/php/config.php:156
-#: ../../view/theme/redstrap/php/config.php:133
+#: ../../view/theme/redbasic/php/config.php:88
+#: ../../view/theme/apw/php/config.php:234
+#: ../../view/theme/blogga/view/theme/blog/config.php:69
+#: ../../view/theme/blogga/php/config.php:69
 msgid "Theme settings"
 msgstr "Настройки темы"
 
-#: ../../view/theme/redbasic/php/config.php:139
-#: ../../view/theme/redbasic/php/config.php:157
-#: ../../view/theme/redstrap/php/config.php:134
+#: ../../view/theme/redbasic/php/config.php:89
+#: ../../view/theme/apw/php/config.php:235
+msgid "Set scheme"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:90
+msgid "Navigation bar colour"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:91
+msgid "Set font-colour for banner"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:92
+msgid "Set the background colour"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:93
+msgid "Set the background image"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:94
+msgid "Set the background colour of items"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:95
+msgid "Set the opacity of items"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:96
+msgid "Set the basic colour for item icons"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:97
+msgid "Set the hover colour for item icons"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:98
+msgid "Set font-size for the entire application"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:99
+#: ../../view/theme/apw/php/config.php:236
 msgid "Set font-size for posts and comments"
 msgstr "Установить размер шрифта для сообщений и комментариев"
 
-#: ../../view/theme/redbasic/php/config.php:140
-#: ../../view/theme/redbasic/php/config.php:158
-#: ../../view/theme/redstrap/php/config.php:135
-msgid "Set line-height for posts and comments"
+#: ../../view/theme/redbasic/php/config.php:100
+msgid "Set font-colour for posts and comments"
 msgstr ""
 
-#: ../../view/theme/redbasic/php/config.php:141
-#: ../../view/theme/redbasic/php/config.php:159
-#: ../../view/theme/redstrap/php/config.php:136
-msgid "Set colour scheme"
-msgstr "Установите цветовую схему"
+#: ../../view/theme/redbasic/php/config.php:101
+msgid "Set radius of corners"
+msgstr ""
 
-#: ../../view/theme/redbasic/php/config.php:142
-#: ../../view/theme/redstrap/php/config.php:137
-msgid "Draw shadows"
+#: ../../view/theme/redbasic/php/config.php:102
+msgid "Set shadow depth of photos"
 msgstr ""
 
-#: ../../view/theme/redbasic/php/config.php:143
-#: ../../view/theme/redstrap/php/config.php:138
-msgid "Navigation bar colour"
+#: ../../view/theme/redbasic/php/config.php:103
+msgid "Set maximum width of conversation regions"
 msgstr ""
 
-#: ../../view/theme/redbasic/php/config.php:144
-#: ../../view/theme/redstrap/php/config.php:139
-msgid "Display style"
-msgstr "Стиль отображения"
+#: ../../view/theme/redbasic/php/config.php:104
+msgid "Set minimum opacity of nav bar - to hide it"
+msgstr ""
 
-#: ../../view/theme/redbasic/php/config.php:145
-#: ../../view/theme/redstrap/php/config.php:140
-msgid "Display colour of links - hex value, do not include the #"
+#: ../../view/theme/redbasic/php/config.php:105
+msgid "Set size of conversation author photo"
 msgstr ""
 
-#: ../../view/theme/redbasic/php/config.php:146
-#: ../../view/theme/redstrap/php/config.php:141
-msgid "Icons"
-msgstr "Значки"
+#: ../../view/theme/redbasic/php/config.php:106
+msgid "Set size of followup author photos"
+msgstr ""
 
-#: ../../view/theme/redbasic/php/config.php:147
-#: ../../view/theme/redstrap/php/config.php:142
-msgid "Shiny style"
+#: ../../view/theme/redbasic/php/config.php:107
+msgid "Sloppy photo albums"
 msgstr ""
 
-#: ../../view/theme/redbasic/php/config.php:148
-msgid "Corner radius"
-msgstr "Угловой радиус"
+#: ../../view/theme/redbasic/php/config.php:107
+msgid "Are you a clean desk or a messy desk person?"
+msgstr ""
 
-#: ../../view/theme/redbasic/php/config.php:148
-msgid "0-99 default: 5"
-msgstr "0-99 по умолчанию: 5"
+#: ../../view/theme/apw/php/config.php:193
+#: ../../view/theme/apw/php/config.php:211
+msgid "Schema Default"
+msgstr ""
 
-#: ../../boot.php:1242
-#, php-format
-msgid "Update %s failed. See error logs."
+#: ../../view/theme/apw/php/config.php:194
+msgid "Sans-Serif"
 msgstr ""
 
-#: ../../boot.php:1245
-#, php-format
-msgid "Update Error at %s"
-msgstr "Ошибка обновления на %s"
+#: ../../view/theme/apw/php/config.php:195
+msgid "Monospace"
+msgstr ""
 
-#: ../../boot.php:1403
-msgid "Create a New Account"
-msgstr "Создать новый аккаунт"
+#: ../../view/theme/apw/php/config.php:237
+msgid "Set font face"
+msgstr ""
 
-#: ../../boot.php:1432
-msgid "Password"
-msgstr "Пароль"
+#: ../../view/theme/apw/php/config.php:238
+msgid "Set iconset"
+msgstr ""
 
-#: ../../boot.php:1433
-msgid "Remember me"
-msgstr "Запомнить"
+#: ../../view/theme/apw/php/config.php:239
+msgid "Set big shadow size, default 15px 15px 15px"
+msgstr ""
 
-#: ../../boot.php:1438
-msgid "Forgot your password?"
-msgstr "Забыли пароль или логин?"
+#: ../../view/theme/apw/php/config.php:240
+msgid "Set small shadow size, default 5px 5px 5px"
+msgstr ""
 
-#: ../../boot.php:1557
-msgid "Requested channel is not available."
-msgstr "Запрашиваемый канал не доступен."
+#: ../../view/theme/apw/php/config.php:241
+msgid "Set shadow colour, default #000"
+msgstr ""
 
-#: ../../boot.php:1569
-msgid " Sorry, you don't have the permission to view this profile. "
+#: ../../view/theme/apw/php/config.php:242
+msgid "Set radius size, default 5px"
 msgstr ""
 
-#: ../../boot.php:1716
-msgid "Profiles"
-msgstr "Профили"
+#: ../../view/theme/apw/php/config.php:243
+msgid "Set line-height for posts and comments"
+msgstr ""
 
-#: ../../boot.php:1716
-msgid "Manage/edit profiles"
-msgstr "Управление / Редактирование профилей"
+#: ../../view/theme/apw/php/config.php:244
+msgid "Set background image"
+msgstr ""
 
-#: ../../boot.php:1720
-msgid "Edit Profile"
-msgstr "Редактировать профиль"
+#: ../../view/theme/apw/php/config.php:245
+msgid "Set background colour"
+msgstr ""
 
-#: ../../boot.php:1809 ../../boot.php:1889
-msgid "F d"
-msgstr "F d"
+#: ../../view/theme/apw/php/config.php:246
+msgid "Set section background image"
+msgstr ""
 
-#: ../../boot.php:1866
-msgid "Birthday Reminders"
-msgstr "Напоминания о Днях Рождения"
+#: ../../view/theme/apw/php/config.php:247
+msgid "Set section background colour"
+msgstr ""
 
-#: ../../boot.php:1867
-msgid "Birthdays this week:"
-msgstr "Дни Рождения на этой неделе:"
+#: ../../view/theme/apw/php/config.php:248
+msgid "Set colour of items - use hex"
+msgstr ""
 
-#: ../../boot.php:1922
-msgid "[No description]"
-msgstr "[без описания]"
+#: ../../view/theme/apw/php/config.php:249
+msgid "Set colour of links - use hex"
+msgstr ""
 
-#: ../../boot.php:1940
-msgid "Event Reminders"
-msgstr "Напоминания мероприятий"
+#: ../../view/theme/apw/php/config.php:250
+msgid "Set max-width for items.  Default 400px"
+msgstr ""
 
-#: ../../boot.php:1941
-msgid "Events this week:"
-msgstr "Мероприятия на этой неделе:"
+#: ../../view/theme/apw/php/config.php:251
+msgid "Set min-width for items.  Default 240px"
+msgstr ""
 
-#: ../../boot.php:2175
-msgid "Channel"
-msgstr "Канал"
+#: ../../view/theme/apw/php/config.php:252
+msgid "Set the generic content wrapper width.  Default 48%"
+msgstr ""
 
-#: ../../boot.php:2178
-msgid "Status Messages and Posts"
+#: ../../view/theme/apw/php/config.php:253
+msgid "Set colour of fonts - use hex"
 msgstr ""
 
-#: ../../boot.php:2182
-msgid "About"
-msgstr "О себе"
+#: ../../view/theme/apw/php/config.php:254
+msgid "Set background-size element"
+msgstr ""
 
-#: ../../boot.php:2185
-msgid "Profile Details"
-msgstr "Сведения о профиле"
+#: ../../view/theme/apw/php/config.php:255
+msgid "Item opacity"
+msgstr ""
 
-#: ../../boot.php:2203
-msgid "Events and Calendar"
-msgstr "Мероприятия и календарь"
+#: ../../view/theme/apw/php/config.php:256
+msgid "Display post previews only"
+msgstr ""
 
-#: ../../boot.php:2208
-msgid "Webpages"
-msgstr "Веб-страницы"
+#: ../../view/theme/apw/php/config.php:257
+msgid "Display side bar on channel page"
+msgstr ""
 
-#: ../../boot.php:2211
-msgid "Manage Webpages"
-msgstr "Управление веб-страниц"
+#: ../../view/theme/apw/php/config.php:258
+msgid "Colour of the navigation bar"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:259
+msgid "Item float"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:260
+msgid "Left offset of the section element"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:261
+msgid "Right offset of the section element"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:262
+msgid "Section width"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:263
+msgid "Left offset of the aside"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:264
+msgid "Right offset of the aside element"
+msgstr ""
+
+#: ../../view/theme/blogga/view/theme/blog/config.php:47
+#: ../../view/theme/blogga/php/config.php:47
+msgid "None"
+msgstr ""
+
+#: ../../view/theme/blogga/view/theme/blog/config.php:70
+#: ../../view/theme/blogga/php/config.php:70
+msgid "Header image"
+msgstr ""
+
+#: ../../view/theme/blogga/view/theme/blog/config.php:71
+#: ../../view/theme/blogga/php/config.php:71
+msgid "Header image only on profile pages"
+msgstr ""
+
+#: ../../boot.php:1224
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr ""
+
+#: ../../boot.php:1227
+#, php-format
+msgid "Update Error at %s"
+msgstr "Ошибка обновления на %s"
+
+#: ../../boot.php:1391
+msgid ""
+"Create an account to access services and applications within the Red Matrix"
+msgstr ""
+
+#: ../../boot.php:1419
+msgid "Password"
+msgstr "Пароль"
+
+#: ../../boot.php:1420
+msgid "Remember me"
+msgstr "Запомнить"
+
+#: ../../boot.php:1425
+msgid "Forgot your password?"
+msgstr "Забыли пароль или логин?"
+
+#: ../../boot.php:1490
+msgid "permission denied"
+msgstr "доступ запрещен"
+
+#: ../../boot.php:1491
+msgid "Got Zot?"
+msgstr "Got Zot?"
 
-#: ../../boot.php:2493
+#: ../../boot.php:1887
 msgid "toggle mobile"
 msgstr "мобильное подключение"
-- 
cgit v1.2.3


From 4fdd9c39c58b82d47afe1e9b838e174d283ff068 Mon Sep 17 00:00:00 2001
From: pixelroot <info@pixelbits.de>
Date: Mon, 13 Jan 2014 18:29:37 +0100
Subject: 	modified:   view/ru/messages.po 	modified:  
 view/ru/strings.php

---
 view/ru/messages.po |    4 +-
 view/ru/strings.php | 3519 +++++++++++++++++++++++----------------------------
 2 files changed, 1600 insertions(+), 1923 deletions(-)

(limited to 'view')

diff --git a/view/ru/messages.po b/view/ru/messages.po
index 24dcb2a53..8abc23b29 100644
--- a/view/ru/messages.po
+++ b/view/ru/messages.po
@@ -3,14 +3,14 @@
 # This file is distributed under the same license as the Red package.
 # 
 # Translators:
-# alexej <info@pixelbits.de>, 2013-2014
+# alexej <alex@red.pixelbits.de>, 2013-2014
 msgid ""
 msgstr ""
 "Project-Id-Version: Red Matrix\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-01-10 00:02-0800\n"
 "PO-Revision-Date: 2014-01-13 15:03+0000\n"
-"Last-Translator: alexej <info@pixelbits.de>\n"
+"Last-Translator: alexej <alex@red.pixelbits.de>\n"
 "Language-Team: Russian (http://www.transifex.com/projects/p/red-matrix/language/ru/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/view/ru/strings.php b/view/ru/strings.php
index 6559f8fd4..3ac8bbf67 100644
--- a/view/ru/strings.php
+++ b/view/ru/strings.php
@@ -4,853 +4,1088 @@ function string_plural_select_ru($n){
 	return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<10 || $n%100>=20) ? 1 : 2);;
 }
 ;
-$a->strings["Post successful."] = "Успешно добавлено.";
-$a->strings["[Embedded content - reload page to view]"] = "[Встроенное содержание - перезагрузите страницу для просмотра]";
-$a->strings["Contact settings applied."] = "Установки контакта приняты.";
-$a->strings["Contact update failed."] = "Обновление контакта неудачное.";
-$a->strings["Permission denied."] = "Нет разрешения.";
-$a->strings["Contact not found."] = "Контакт не найден.";
-$a->strings["Repair Contact Settings"] = "Восстановить установки контакта";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ВНИМАНИЕ: Это крайне важно!</strong> Если вы введете неверную информацию, ваша связь с этим контактом перестанет работать.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Пожалуйста, нажмите клавишу вашего браузера 'Back' или 'Назад' <strong>сейчас</strong>, если вы не уверены, что делаете на этой странице.";
-$a->strings["Return to contact editor"] = "";
-$a->strings["Name"] = "Имя";
-$a->strings["Account Nickname"] = "Ник аккаунта";
-$a->strings["@Tagname - overrides Name/Nickname"] = "";
-$a->strings["Account URL"] = "URL аккаунта";
-$a->strings["Friend Request URL"] = "URL запроса в друзья";
-$a->strings["Friend Confirm URL"] = "URL подтверждения друга";
-$a->strings["Notification Endpoint URL"] = "URL эндпоинта уведомления";
-$a->strings["Poll/Feed URL"] = "URL опроса/ленты";
-$a->strings["New photo from this URL"] = "Новое фото из этой URL";
-$a->strings["Submit"] = "Подтвердить";
-$a->strings["Help:"] = "Помощь:";
+$a->strings["Visible to everybody"] = "Видно всем";
+$a->strings["show"] = "показывать";
+$a->strings["don't show"] = "не показывать";
+$a->strings[" and "] = "и";
+$a->strings["public profile"] = "Публичный профиль";
+$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s изменил %2\$s на &ldquo;%3\$s&rdquo;";
+$a->strings["Visit %1\$s's %2\$s"] = "Посетить %1\$s's %2\$s";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "";
+$a->strings["Public Timeline"] = "Публичная шкала времени";
+$a->strings["Logout"] = "Выход";
+$a->strings["End this session"] = "Закончить эту сессию";
+$a->strings["Home"] = "Мой канал";
+$a->strings["Your posts and conversations"] = "Ваши сообщения и разговоры";
+$a->strings["View Profile"] = "Просмотр профиля";
+$a->strings["Your profile page"] = "Страницa вашего профиля";
+$a->strings["Edit Profiles"] = "Редактирование профилей";
+$a->strings["Manage/Edit Profiles"] = "Управление / Редактирование профилей";
+$a->strings["Photos"] = "Фотографии";
+$a->strings["Your photos"] = "Ваши фотографии";
+$a->strings["Login"] = "Войти";
+$a->strings["Sign in"] = "Войти";
+$a->strings["%s - click to logout"] = "%s - нажмите чтобы выйти";
+$a->strings["Click to authenticate to your home hub"] = "";
+$a->strings["Home Page"] = "Моя страница";
+$a->strings["Register"] = "Регистрация";
+$a->strings["Create an account"] = "Создать аккаунт";
 $a->strings["Help"] = "Помощь";
-$a->strings["Not Found"] = "Не найдено";
-$a->strings["Page not found."] = "Страница не найдена.";
-$a->strings["File exceeds size limit of %d"] = "Файл превышает предельный размер %d";
-$a->strings["File upload failed."] = "Загрузка файла не удалась.";
-$a->strings["Friend suggestion sent."] = "Приглашение в друзья отправлено.";
-$a->strings["Suggest Friends"] = "Предложить друзей";
-$a->strings["Suggest a friend for %s"] = "Предложить друга для %s.";
-$a->strings["Event title and start time are required."] = "";
-$a->strings["l, F j"] = "l, j F";
-$a->strings["Edit event"] = "Редактировать мероприятие";
-$a->strings["link to source"] = "ссылка на источник";
+$a->strings["Help and documentation"] = "Справочная информация и документация";
+$a->strings["Apps"] = "Приложения";
+$a->strings["Addon applications, utilities, games"] = "";
+$a->strings["Search"] = "Поиск";
+$a->strings["Search site content"] = "Поиск по содержанию сайту";
+$a->strings["Directory"] = "Каталог";
+$a->strings["Channel Locator"] = "Локатор каналов";
+$a->strings["Matrix"] = "Матрица";
+$a->strings["Your matrix"] = "Собственная матрица";
+$a->strings["Mark all matrix notifications seen"] = "Пометить все оповещения матрицы как прочитанное";
+$a->strings["Channel Home"] = "";
+$a->strings["Channel home"] = "";
+$a->strings["Mark all channel notifications seen"] = "Пометить все оповещения канала как прочитанное";
+$a->strings["Intros"] = "Контакты";
+$a->strings["New Connections"] = "Новые контакты";
+$a->strings["Notices"] = "Оповещения";
+$a->strings["Notifications"] = "Оповещения";
+$a->strings["See all notifications"] = "Просмотреть все оповещения";
+$a->strings["Mark all system notifications seen"] = "Пометить все оповещения как прочитанное";
+$a->strings["Mail"] = "Переписка";
+$a->strings["Private mail"] = "Ваша личная переписка";
+$a->strings["See all private messages"] = "Просмотреть все личные сообщения";
+$a->strings["Mark all private messages seen"] = "Пометить все личные сообщения как прочитанное";
+$a->strings["Inbox"] = "Входящие";
+$a->strings["Outbox"] = "Исходящие";
+$a->strings["New Message"] = "Новое личное сообщение";
 $a->strings["Events"] = "Мероприятия";
-$a->strings["Create New Event"] = "Создать новое мероприятие";
-$a->strings["Previous"] = "Назад";
-$a->strings["Next"] = "Далее";
-$a->strings["hour:minute"] = "час:минута";
-$a->strings["Event details"] = "Сведения о мероприятии";
-$a->strings["Format is %s %s. Starting date and Title are required."] = "";
-$a->strings["Event Starts:"] = "Начало мероприятия:";
-$a->strings["Required"] = "";
-$a->strings["Finish date/time is not known or not relevant"] = "Дата/время окончания не известны, или не указаны";
-$a->strings["Event Finishes:"] = "Окончание мероприятия:";
-$a->strings["Adjust for viewer timezone"] = "Настройка часового пояса";
-$a->strings["Description:"] = "Описание:";
+$a->strings["Event Calendar"] = "Календарь мероприятий";
+$a->strings["See all events"] = "Показать все мероприятия";
+$a->strings["Mark all events seen"] = "Пометить все мероприятия как прочитанное";
+$a->strings["Channel Select"] = "Выбор канала";
+$a->strings["Manage Your Channels"] = "Управление каналов";
+$a->strings["Settings"] = "Настройки";
+$a->strings["Account/Channel Settings"] = "Настройки аккаунта/канала";
+$a->strings["Connections"] = "Контакты";
+$a->strings["Manage/Edit Friends and Connections"] = "Управление/Редактирование друзей и связей";
+$a->strings["Admin"] = "Администрация";
+$a->strings["Site Setup and Configuration"] = "Установка и конфигурация сайта";
+$a->strings["Nothing new here"] = "Ничего нового здесь";
+$a->strings["Please wait..."] = "Подождите пожалуйста ...";
+$a->strings["Edit File properties"] = "";
+$a->strings["Connect"] = "Подключить";
+$a->strings["New window"] = "Новое окно";
+$a->strings["Open the selected location in a different window or browser tab"] = "";
+$a->strings["Categories"] = "Категории";
+$a->strings["Ignore/Hide"] = "Игнорировать / Скрыть";
+$a->strings["Suggestions"] = "Рекомендации";
+$a->strings["See more..."] = "Просмотреть больше...";
+$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "";
+$a->strings["Add New Connection"] = "Добавить новый контакт";
+$a->strings["Enter the channel address"] = "Введите адрес канала";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Пример: bob@example.com, http://example.com/barbara";
+$a->strings["Notes"] = "Заметки";
+$a->strings["Save"] = "Запомнить";
+$a->strings["Remove term"] = "Удалить термин";
+$a->strings["Saved Searches"] = "Запомненные поиски";
+$a->strings["add"] = "добавить";
+$a->strings["Saved Folders"] = "Запомненные папки";
+$a->strings["Everything"] = "Все";
+$a->strings["Archives"] = "Архивы";
+$a->strings["Refresh"] = "Обновить";
+$a->strings["Me"] = "Я";
+$a->strings["Best Friends"] = "Лучшие друзья";
+$a->strings["Friends"] = "Друзья";
+$a->strings["Co-workers"] = "Сотрудники";
+$a->strings["Former Friends"] = "Приятели";
+$a->strings["Acquaintances"] = "Знакомые";
+$a->strings["Everybody"] = "Все";
+$a->strings["Account settings"] = "Настройки аккаунта";
+$a->strings["Channel settings"] = "Настройки канала";
+$a->strings["Additional features"] = "Дополнительные функции";
+$a->strings["Feature settings"] = "Настройки компонентов";
+$a->strings["Display settings"] = "Настройки отображения";
+$a->strings["Connected apps"] = "Подключенные приложения";
+$a->strings["Export channel"] = "Экспорт канала";
+$a->strings["Automatic Permissions (Advanced)"] = "Автоматические разрешения (дополнительно)";
+$a->strings["Premium Channel Settings"] = "";
+$a->strings["Channel Sources"] = "";
+$a->strings["Check Mail"] = "Проверить снова";
+$a->strings["Unknown | Not categorised"] = "Неизвестные | Без категории";
+$a->strings["Block immediately"] = "Немедленно заблокировать";
+$a->strings["Shady, spammer, self-marketer"] = "";
+$a->strings["Known to me, but no opinion"] = "";
+$a->strings["OK, probably harmless"] = "OK, наверное безвредно";
+$a->strings["Reputable, has my trust"] = "Авторитетно, имеет мое доверие";
+$a->strings["Frequently"] = "Часто";
+$a->strings["Hourly"] = "Ежечасно";
+$a->strings["Twice daily"] = "Два раза в день";
+$a->strings["Daily"] = "Ежедневно";
+$a->strings["Weekly"] = "Еженедельно";
+$a->strings["Monthly"] = "Ежемесячно";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Email"] = "E-mail";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Zot!"] = "Zot!";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Miscellaneous"] = "Прочее";
+$a->strings["year"] = "год";
+$a->strings["month"] = "месяц";
+$a->strings["day"] = "день";
+$a->strings["never"] = "никогда";
+$a->strings["less than a second ago"] = "менее чем одну секунду назад";
+$a->strings["years"] = "лет";
+$a->strings["months"] = "мес.";
+$a->strings["week"] = "неделя";
+$a->strings["weeks"] = "недель";
+$a->strings["days"] = "дней";
+$a->strings["hour"] = "час";
+$a->strings["hours"] = "часов";
+$a->strings["minute"] = "минута";
+$a->strings["minutes"] = "минут";
+$a->strings["second"] = "секунда";
+$a->strings["seconds"] = "секунд";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s назад";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
+$a->strings["Starts:"] = "Начало:";
+$a->strings["Finishes:"] = "\t\nКонец:";
 $a->strings["Location:"] = "Откуда:";
-$a->strings["Title:"] = "";
-$a->strings["Share this event"] = "Поделитесь этим мероприятием";
-$a->strings["Cancel"] = "Отмена";
-$a->strings["Tag removed"] = "Ключевое слово удалено";
-$a->strings["Remove Item Tag"] = "Удалить ключевое слово";
-$a->strings["Select a tag to remove: "] = "Выберите ключевое слово для удаления: ";
-$a->strings["Remove"] = "Удалить";
-$a->strings["%s welcomes %s"] = "%s приветствует %s";
-$a->strings["Authorize application connection"] = "Разрешить связь с приложением";
-$a->strings["Return to your app and insert this Securty Code:"] = "Вернитесь в ваше приложение и задайте этот код:";
-$a->strings["Please login to continue."] = "Пожалуйста, войдите для продолжения.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "";
-$a->strings["Yes"] = "Да";
-$a->strings["No"] = "Нет";
-$a->strings["Photo Albums"] = "Фотоальбомы";
-$a->strings["Contact Photos"] = "Фотографии контакта";
-$a->strings["Upload New Photos"] = "Загрузить новые фото";
-$a->strings["everybody"] = "каждый";
-$a->strings["Contact information unavailable"] = "Информация о контакте недоступна";
-$a->strings["Profile Photos"] = "Фотографии профиля";
-$a->strings["Album not found."] = "Альбом не найден.";
-$a->strings["Delete Album"] = "Удалить альбом";
-$a->strings["Delete Photo"] = "Удалить фото";
-$a->strings["was tagged in a"] = "отмечен/а/ в";
+$a->strings["prev"] = "предыдущий";
+$a->strings["first"] = "первый";
+$a->strings["last"] = "последний";
+$a->strings["next"] = "следующий";
+$a->strings["older"] = "старший";
+$a->strings["newer"] = "новее";
+$a->strings["No connections"] = "Нет каналов";
+$a->strings["%d Connection"] = array(
+	0 => "%d канал",
+	1 => "%d канала",
+	2 => "%d каналов",
+);
+$a->strings["View Connections"] = "Просмотр контактов";
+$a->strings["poke"] = "подпихнуть";
+$a->strings["poked"] = "подпихнул";
+$a->strings["ping"] = "";
+$a->strings["pinged"] = "";
+$a->strings["prod"] = "";
+$a->strings["prodded"] = "";
+$a->strings["slap"] = "";
+$a->strings["slapped"] = "";
+$a->strings["finger"] = "";
+$a->strings["fingered"] = "";
+$a->strings["rebuff"] = "";
+$a->strings["rebuffed"] = "";
+$a->strings["happy"] = "счастливый";
+$a->strings["sad"] = "";
+$a->strings["mellow"] = "";
+$a->strings["tired"] = "";
+$a->strings["perky"] = "";
+$a->strings["angry"] = "сердитый";
+$a->strings["stupified"] = "";
+$a->strings["puzzled"] = "";
+$a->strings["interested"] = "";
+$a->strings["bitter"] = "озлобленный";
+$a->strings["cheerful"] = "";
+$a->strings["alive"] = "";
+$a->strings["annoyed"] = "";
+$a->strings["anxious"] = "";
+$a->strings["cranky"] = "капризный";
+$a->strings["disturbed"] = "встревоженный";
+$a->strings["frustrated"] = "разочарованный";
+$a->strings["motivated"] = "мотивированный";
+$a->strings["relaxed"] = "расслабленный";
+$a->strings["surprised"] = "удивленный";
+$a->strings["Monday"] = "Понедельник";
+$a->strings["Tuesday"] = "Вторник";
+$a->strings["Wednesday"] = "Среда";
+$a->strings["Thursday"] = "Четверг";
+$a->strings["Friday"] = "Пятница";
+$a->strings["Saturday"] = "Суббота";
+$a->strings["Sunday"] = "Воскресенье";
+$a->strings["January"] = "Январь";
+$a->strings["February"] = "Февраль";
+$a->strings["March"] = "Март";
+$a->strings["April"] = "Апрель";
+$a->strings["May"] = "Май";
+$a->strings["June"] = "Июнь";
+$a->strings["July"] = "Июль";
+$a->strings["August"] = "Август";
+$a->strings["September"] = "Сентябрь";
+$a->strings["October"] = "Октябрь";
+$a->strings["November"] = "Ноябрь";
+$a->strings["December"] = "Декабрь";
+$a->strings["unknown.???"] = "неизвестный.???";
+$a->strings["bytes"] = "байт";
+$a->strings["remove category"] = "";
+$a->strings["remove from file"] = "";
+$a->strings["Click to open/close"] = "Нажмите, чтобы открыть/закрыть";
+$a->strings["link to source"] = "ссылка на источник";
+$a->strings["Select a page layout: "] = "";
+$a->strings["default"] = "по умолчанию";
+$a->strings["Page content type: "] = "";
+$a->strings["Select an alternate language"] = "Выбор альтернативного языка";
 $a->strings["photo"] = "фото";
-$a->strings["by"] = "с";
-$a->strings["Image exceeds size limit of "] = "Размер фото превышает лимит ";
-$a->strings["Image file is empty."] = "Файл изображения пуст.";
-$a->strings["Unable to process image."] = "Невозможно обработать фото.";
-$a->strings["Image upload failed."] = "Загрузка фото неудачная.";
-$a->strings["Public access denied."] = "Свободный доступ закрыт.";
-$a->strings["No photos selected"] = "Не выбрано фото.";
-$a->strings["Access to this item is restricted."] = "Доступ к этому пункту ограничен.";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "";
-$a->strings["You have used %1$.2f Mbytes of photo storage."] = "";
-$a->strings["Upload Photos"] = "Загрузить фото";
-$a->strings["New album name: "] = "Название нового альбома: ";
-$a->strings["or existing album name: "] = "или название существующего альбома: ";
-$a->strings["Do not show a status post for this upload"] = "Не показывать статус-сообщение для этой закачки";
-$a->strings["Permissions"] = "Разрешения";
-$a->strings["Edit Album"] = "Редактировать альбом";
-$a->strings["Show Newest First"] = "";
-$a->strings["Show Oldest First"] = "";
-$a->strings["View Photo"] = "Просмотр фото";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Нет разрешения. Доступ к этому элементу ограничен.";
-$a->strings["Photo not available"] = "Фото недоступно";
-$a->strings["View photo"] = "Просмотр фото";
-$a->strings["Edit photo"] = "Редактировать фото";
-$a->strings["Use as profile photo"] = "Использовать как фото профиля";
-$a->strings["Private Message"] = "Личное сообщение";
-$a->strings["View Full Size"] = "Просмотреть полный размер";
-$a->strings["Tags: "] = "Ключевые слова: ";
-$a->strings["[Remove any tag]"] = "[Удалить любое ключевое слово]";
-$a->strings["Rotate CW (right)"] = "";
-$a->strings["Rotate CCW (left)"] = "";
-$a->strings["New album name"] = "Название нового альбома";
-$a->strings["Caption"] = "Подпись";
-$a->strings["Add a Tag"] = "Добавить ключевое слово (таг)";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
-$a->strings["I like this (toggle)"] = "Нравится";
-$a->strings["I don't like this (toggle)"] = "Не нравится";
-$a->strings["Share"] = "Поделиться";
-$a->strings["Please wait"] = "Пожалуйста, подождите";
-$a->strings["This is you"] = "Это вы";
+$a->strings["event"] = "мероприятие";
+$a->strings["status"] = "статус";
+$a->strings["comment"] = "комментарий";
+$a->strings["activity"] = "активность";
+$a->strings["Design"] = "Дизайн";
+$a->strings["Blocks"] = "";
+$a->strings["Menus"] = "";
+$a->strings["Layouts"] = "";
+$a->strings["Pages"] = "Страницы";
+$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."] = "";
+$a->strings["Default privacy group for new contacts"] = "";
+$a->strings["All Channels"] = "Все каналы";
+$a->strings["edit"] = "редактировать";
+$a->strings["Collections"] = "Коллекции";
+$a->strings["Edit collection"] = "Редактировать коллекцию";
+$a->strings["Create a new collection"] = "Создать новую коллекцию";
+$a->strings["Channels not in any collection"] = "Контакты не в какой коллекции";
+$a->strings["Delete this item?"] = "Удалить этот элемент?";
 $a->strings["Comment"] = "Комментарий";
-$a->strings["Preview"] = "предварительный просмотр";
+$a->strings["show more"] = "показать все";
+$a->strings["show fewer"] = "показать меньше";
+$a->strings["Password too short"] = "Пароль слишком короткий";
+$a->strings["Passwords do not match"] = "Пароли не совпадают";
+$a->strings["everybody"] = "все";
+$a->strings["Secret Passphrase"] = "";
+$a->strings["Passphrase hint"] = "";
+$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo";
+$a->strings["timeago.suffixAgo"] = "timeago.suffixAgo";
+$a->strings["ago"] = "тому назад";
+$a->strings["from now"] = "с этого времени";
+$a->strings["less than a minute"] = "менее чем одну минуту назад";
+$a->strings["about a minute"] = "около минуты";
+$a->strings["%d minutes"] = "%d мин.";
+$a->strings["about an hour"] = "около часа";
+$a->strings["about %d hours"] = "около %d час.";
+$a->strings["a day"] = "день";
+$a->strings["%d days"] = "%d дней";
+$a->strings["about a month"] = "около месяца";
+$a->strings["%d months"] = "%d мес.";
+$a->strings["about a year"] = "около года";
+$a->strings["%d years"] = "%d лет";
+$a->strings[" "] = " ";
+$a->strings["timeago.numbers"] = "timeago.numbers";
+$a->strings["No recipient provided."] = "";
+$a->strings["[no subject]"] = "[без темы]";
+$a->strings["Unable to determine sender."] = "Невозможно определить отправителя.";
+$a->strings["Stored post could not be verified."] = "";
+$a->strings["Profile Photos"] = "Фотографии профиля";
+$a->strings["view full size"] = "посмотреть в полный размер";
+$a->strings["Image/photo"] = "Изображение / фото";
+$a->strings["Encrypted content"] = "Зашифрованное содержание";
+$a->strings["QR code"] = "QR код";
+$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s написал следующее %2\$s %3\$s";
+$a->strings["post"] = "сообщение";
+$a->strings["$1 wrote:"] = "$1 писал:";
+$a->strings["Embedded content"] = "";
+$a->strings["Embedding disabled"] = "";
+$a->strings["General Features"] = "Главные функции";
+$a->strings["Content Expiration"] = "";
+$a->strings["Remove posts/comments and/or private messages at a future time"] = "";
+$a->strings["Multiple Profiles"] = "Несколько профилей";
+$a->strings["Ability to create multiple profiles"] = "Возможность создания нескольких профилей";
+$a->strings["Web Pages"] = "Веб-страницы";
+$a->strings["Provide managed web pages on your channel"] = "";
+$a->strings["Private Notes"] = "Личные заметки";
+$a->strings["Enables a tool to store notes and reminders"] = "";
+$a->strings["Extended Identity Sharing"] = "Расширенный обмен идентичности";
+$a->strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "";
+$a->strings["Expert Mode"] = "Экспертный режим";
+$a->strings["Enable Expert Mode to provide advanced configuration options"] = "";
+$a->strings["Premium Channel"] = "";
+$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "";
+$a->strings["Post Composition Features"] = "";
+$a->strings["Richtext Editor"] = "Редактор RichText";
+$a->strings["Enable richtext editor"] = "Включить редактор RichText";
+$a->strings["Post Preview"] = "Предварительный просмотр сообщения";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Разрешить предварительный просмотр сообщений и комментариев перед их публикацией";
+$a->strings["Automatically import channel content from other channels or feeds"] = "";
+$a->strings["Even More Encryption"] = "";
+$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "";
+$a->strings["Network and Stream Filtering"] = "Фильтрация сети и потока";
+$a->strings["Search by Date"] = "Поиск по дате";
+$a->strings["Ability to select posts by date ranges"] = "Возможность выбора сообщений по датам";
+$a->strings["Collections Filter"] = "Фильтр коллекций";
+$a->strings["Enable widget to display Network posts only from selected collections"] = "";
+$a->strings["Save search terms for re-use"] = "Сохранять результаты поиска для повторного использования";
+$a->strings["Network Personal Tab"] = "";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "";
+$a->strings["Network New Tab"] = "";
+$a->strings["Enable tab to display all new Network activity"] = "";
+$a->strings["Affinity Tool"] = "";
+$a->strings["Filter stream activity by depth of relationships"] = "";
+$a->strings["Suggest Channels"] = "";
+$a->strings["Show channel suggestions"] = "";
+$a->strings["Post/Comment Tools"] = "Инструменты сообщений/комментарий ";
+$a->strings["Edit Sent Posts"] = "Редактировать отправленные сообщения";
+$a->strings["Edit and correct posts and comments after sending"] = "Редактировать и исправлять сообщения и комментарии после отправки";
+$a->strings["Tagging"] = "Пометка";
+$a->strings["Ability to tag existing posts"] = "";
+$a->strings["Post Categories"] = "Категории сообщения";
+$a->strings["Add categories to your posts"] = "Добавить категории для ваших сообщений";
+$a->strings["Ability to file posts under folders"] = "";
+$a->strings["Dislike Posts"] = "Сообщение не нравится";
+$a->strings["Ability to dislike posts/comments"] = "";
+$a->strings["Star Posts"] = "Помечать сообщения";
+$a->strings["Ability to mark special posts with a star indicator"] = "";
+$a->strings["Tag Cloud"] = "Облако тегов";
+$a->strings["Provide a personal tag cloud on your channel page"] = "";
+$a->strings["channel"] = "канал";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s нравится %2\$s's %3\$s";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s не нравится %2\$s's %3\$s";
+$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s теперь соединен с %2\$s";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s подпихнул %2\$s";
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s в настоящее время %2\$s";
+$a->strings["Select"] = "Выбрать";
 $a->strings["Delete"] = "Удалить";
-$a->strings["View Album"] = "Просмотреть альбом";
-$a->strings["Recent Photos"] = "Последние фото";
-$a->strings["Not available."] = "Недоступно.";
-$a->strings["Community"] = "Сообщество";
-$a->strings["No results."] = "Нет результатов.";
-$a->strings["This is Friendica, version"] = "Это Friendica, версия";
-$a->strings["running at web location"] = "работает на веб-узле";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "";
-$a->strings["Bug reports and issues: please visit"] = "Отчет об ошибках и проблемах: пожалуйста, посетите";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "";
-$a->strings["Installed plugins/addons/apps:"] = "";
-$a->strings["No installed plugins/addons/apps"] = "Нет установленных плагинов / добавок / приложений";
-$a->strings["Item not found"] = "Элемент не найден";
-$a->strings["Edit post"] = "Редактировать сообщение";
-$a->strings["Post to Email"] = "Отправить на Email";
-$a->strings["Edit"] = "Редактировать";
-$a->strings["Upload photo"] = "Загрузить фото";
-$a->strings["Attach file"] = "Приложить файл";
+$a->strings["Message is verified"] = "";
+$a->strings["View %s's profile @ %s"] = "Просмотр %s's профиля @ %s";
+$a->strings["Categories:"] = "Категории:";
+$a->strings["Filed under:"] = "Хранить под:";
+$a->strings[" from %s"] = " от %s";
+$a->strings["last edited: %s"] = "";
+$a->strings["View in context"] = "Показать в контексте";
+$a->strings["Please wait"] = "Подождите пожалуйста";
+$a->strings["remove"] = "удалить";
+$a->strings["Loading..."] = "Загрузка...";
+$a->strings["Delete Selected Items"] = "Удалить выбранные элементы";
+$a->strings["View Source"] = "";
+$a->strings["Follow Thread"] = "Следобать теме";
+$a->strings["View Status"] = "Просмотр состояния";
+$a->strings["View Photos"] = "Просмотр фотографий";
+$a->strings["Matrix Activity"] = "Активность матрицы";
+$a->strings["Edit Contact"] = "Редактировать контакт";
+$a->strings["Send PM"] = "Отправить личное сообщение";
+$a->strings["Poke"] = "Подпихнуть";
+$a->strings["%s likes this."] = "%s нравится это.";
+$a->strings["%s doesn't like this."] = "%s не нравится это.";
+$a->strings["<span  %1\$s>%2\$d people</span> like this."] = array(
+	0 => "",
+	1 => "",
+	2 => "<span  %1\$s>%2\$d чел.</span> нравится это.",
+);
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this."] = array(
+	0 => "",
+	1 => "",
+	2 => "<span  %1\$s>%2\$d чел.</span> не нравится это.",
+);
+$a->strings["and"] = "и";
+$a->strings[", and %d other people"] = array(
+	0 => "",
+	1 => "",
+	2 => ", и %d другие люди",
+);
+$a->strings["%s like this."] = "%s нравится это.";
+$a->strings["%s don't like this."] = "%s не нравится это.";
+$a->strings["Visible to <strong>everybody</strong>"] = "Видно для <strong>всех</strong>";
+$a->strings["Please enter a link URL:"] = "Пожалуйста, введите URL ссылки:";
+$a->strings["Please enter a video link/URL:"] = "Пожалуйста, введите URL видео-ссылки:";
+$a->strings["Please enter an audio link/URL:"] = "Пожалуйста, введите URL аудио-ссылки:";
+$a->strings["Tag term:"] = "Теги:";
+$a->strings["Save to Folder:"] = "Сохранить в папку:";
+$a->strings["Where are you right now?"] = "Где вы сейчас?";
+$a->strings["Expires YYYY-MM-DD HH:MM"] = "";
+$a->strings["Preview"] = "Предварительный просмотр";
+$a->strings["Share"] = "Поделиться";
+$a->strings["Page link title"] = "Ссылка заголовока страницы";
+$a->strings["Upload photo"] = "Загрузить фотографию";
+$a->strings["upload photo"] = "загрузить фотографию";
+$a->strings["Attach file"] = "Прикрепить файл";
+$a->strings["attach file"] = "прикрепить файл";
 $a->strings["Insert web link"] = "Вставить веб-ссылку";
-$a->strings["Insert YouTube video"] = "Вставить видео YouTube";
-$a->strings["Insert Vorbis [.ogg] video"] = "Вставить Vorbis [.ogg] видео";
-$a->strings["Insert Vorbis [.ogg] audio"] = "Вставить Vorbis [.ogg] аудио";
-$a->strings["Set your location"] = "Задать ваше местоположение";
-$a->strings["Clear browser location"] = "Очистить местонахождение браузера";
+$a->strings["web link"] = "веб-ссылка";
+$a->strings["Insert video link"] = "Вставить видео-ссылку";
+$a->strings["video link"] = "видео-ссылка";
+$a->strings["Insert audio link"] = "Вставить аудио-ссылку";
+$a->strings["audio link"] = "аудио-ссылка";
+$a->strings["Set your location"] = "Указание своего расположения";
+$a->strings["set location"] = "указание расположения";
+$a->strings["Clear browser location"] = "Стереть указание расположения";
+$a->strings["clear location"] = "стереть указание расположения";
+$a->strings["Set title"] = "Заголовок";
+$a->strings["Categories (comma-separated list)"] = "Категории (список через запятую)";
 $a->strings["Permission settings"] = "Настройки разрешений";
-$a->strings["CC: email addresses"] = "Копии на email адреса";
+$a->strings["permissions"] = "разрешения";
 $a->strings["Public post"] = "Публичное сообщение";
-$a->strings["Set title"] = "Установить заголовок";
-$a->strings["Categories (comma-separated list)"] = "Категории (список через запятую)";
 $a->strings["Example: bob@example.com, mary@example.com"] = "Пример: bob@example.com, mary@example.com";
-$a->strings["This introduction has already been accepted."] = "Этот запрос был уже принят.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "Местоположение профиля является недопустимым или не содержит информацию о профиле.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Внимание: местоположение профиля не имеет идентифицируемого имени владельца.";
-$a->strings["Warning: profile location has no profile photo."] = "Внимание: местоположение профиля не имеет еще фотографии профиля.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-	0 => "%d требуемый параметр не был найден в заданном месте",
-	1 => "%d требуемых параметров не были найдены в заданном месте",
-	2 => "%d требуемых параметров не были найдены в заданном месте",
+$a->strings["Set expiration date"] = "";
+$a->strings["Encrypt text"] = "";
+$a->strings["OK"] = "OK";
+$a->strings["Cancel"] = "Отменить";
+$a->strings["Commented Order"] = "По комментириям";
+$a->strings["Sort by Comment Date"] = "Сортировка по дате создания комментариев";
+$a->strings["Posted Order"] = "По добавлениям";
+$a->strings["Sort by Post Date"] = "Сортировка по дате создания сообщения";
+$a->strings["Personal"] = "Личные";
+$a->strings["Posts that mention or involve you"] = "Сообщения, в которых упоминули или вовлекли вас";
+$a->strings["New"] = "Новые";
+$a->strings["Activity Stream - by date"] = "Лента активности - по дате";
+$a->strings["Starred"] = "Помеченные";
+$a->strings["Favourite Posts"] = "Фаворит-сообщения";
+$a->strings["Spam"] = "Спам";
+$a->strings["Posts flagged as SPAM"] = "Как СПАМ помеченные сообщения";
+$a->strings["Channel"] = "Канал";
+$a->strings["Status Messages and Posts"] = "";
+$a->strings["About"] = "О себе";
+$a->strings["Profile Details"] = "Сведения о профиле";
+$a->strings["Photo Albums"] = "Фотоальбомы";
+$a->strings["Files"] = "Файлы";
+$a->strings["Files and Storage"] = "";
+$a->strings["Events and Calendar"] = "Мероприятия и календарь";
+$a->strings["Webpages"] = "Веб-страницы";
+$a->strings["Manage Webpages"] = "Управление веб-страниц";
+$a->strings["created a new post"] = "создал новое сообщение";
+$a->strings["commented on %s's post"] = "прокомментировал %s's сообщение";
+$a->strings["Permission denied."] = "Доступ запрещен.";
+$a->strings["Image exceeds website size limit of %lu bytes"] = "";
+$a->strings["Image file is empty."] = "файл пуст.";
+$a->strings["Unable to process image"] = "";
+$a->strings["Photo storage failed."] = "";
+$a->strings["Upload New Photos"] = "Загрузить новые фотографии";
+$a->strings["Male"] = "Мужской";
+$a->strings["Female"] = "Женский";
+$a->strings["Currently Male"] = "В настоящее время мужской";
+$a->strings["Currently Female"] = "В настоящее время женский";
+$a->strings["Mostly Male"] = "В основном мужской";
+$a->strings["Mostly Female"] = "В основном женский";
+$a->strings["Transgender"] = "Транссексуал";
+$a->strings["Intersex"] = "Intersex";
+$a->strings["Transsexual"] = "Транссексуал";
+$a->strings["Hermaphrodite"] = "Гермафродит";
+$a->strings["Neuter"] = "Среднего рода";
+$a->strings["Non-specific"] = "Неспецифический";
+$a->strings["Other"] = "Другой";
+$a->strings["Undecided"] = "Нерешительный";
+$a->strings["Males"] = "Самец";
+$a->strings["Females"] = "Самка";
+$a->strings["Gay"] = "Гей";
+$a->strings["Lesbian"] = "Лесбиянка";
+$a->strings["No Preference"] = "Без предпочтений";
+$a->strings["Bisexual"] = "Двуполый";
+$a->strings["Autosexual"] = "Autosexual";
+$a->strings["Abstinent"] = "Воздержанный";
+$a->strings["Virgin"] = "Девственница";
+$a->strings["Deviant"] = "Отклоняющийся от нормы";
+$a->strings["Fetish"] = "Фетиш";
+$a->strings["Oodles"] = "Множественный";
+$a->strings["Nonsexual"] = "Несексуальный";
+$a->strings["Single"] = "Одинок";
+$a->strings["Lonely"] = "Уединенный";
+$a->strings["Available"] = "Доступный";
+$a->strings["Unavailable"] = "Недоступный";
+$a->strings["Has crush"] = "";
+$a->strings["Infatuated"] = "Влюбленный";
+$a->strings["Dating"] = "";
+$a->strings["Unfaithful"] = "Неверный";
+$a->strings["Sex Addict"] = "Секс наркоман";
+$a->strings["Friends/Benefits"] = "";
+$a->strings["Casual"] = "Случайный";
+$a->strings["Engaged"] = "Помолвленный";
+$a->strings["Married"] = "Женат";
+$a->strings["Imaginarily married"] = "Мысленно женат";
+$a->strings["Partners"] = "Партнеры";
+$a->strings["Cohabiting"] = "Сожительствующие";
+$a->strings["Common law"] = "";
+$a->strings["Happy"] = "Счастливый";
+$a->strings["Not looking"] = "Не нуждаюсь";
+$a->strings["Swinger"] = "";
+$a->strings["Betrayed"] = "";
+$a->strings["Separated"] = "";
+$a->strings["Unstable"] = "Колеблющийся";
+$a->strings["Divorced"] = "Разведенный";
+$a->strings["Imaginarily divorced"] = "Мысленно разведенный";
+$a->strings["Widowed"] = "Овдовевший";
+$a->strings["Uncertain"] = "Неопределенный";
+$a->strings["It's complicated"] = "Это сложно";
+$a->strings["Don't care"] = "Не заботьтесь";
+$a->strings["Ask me"] = "Спроси меня";
+$a->strings["Item was not found."] = "Элемент не найден.";
+$a->strings["No source file."] = "Нет исходного файла.";
+$a->strings["Cannot locate file to replace"] = "Не удается найти файл, чтобы заменить";
+$a->strings["Cannot locate file to revise/update"] = "Не удается найти файл для пересмотра / обновления";
+$a->strings["File exceeds size limit of %d"] = "Файл превышает предельный размер %d";
+$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "";
+$a->strings["File upload failed. Possible system limit or action terminated."] = "Загрузка файла не удалась. Возможно система перегружена или попытка прекращена.";
+$a->strings["Stored file could not be verified. Upload failed."] = "";
+$a->strings["Path not available."] = "Путь недоступен.";
+$a->strings["Empty pathname"] = "";
+$a->strings["duplicate filename or path"] = "";
+$a->strings["Path not found."] = "Путь не найден.";
+$a->strings["mkdir failed."] = "";
+$a->strings["database storage failed."] = "";
+$a->strings["Tags"] = "Тэги";
+$a->strings["Keywords"] = "Ключевые слова";
+$a->strings["have"] = "иметь";
+$a->strings["has"] = "есть";
+$a->strings["want"] = "хотеть";
+$a->strings["wants"] = "хочет";
+$a->strings["like"] = "мне нравиться";
+$a->strings["likes"] = "мне нравиться";
+$a->strings["dislike"] = "мне не-нравиться";
+$a->strings["dislikes"] = "мне не-нравиться";
+$a->strings["Not a valid email address"] = "Не действительный адрес электронной почты";
+$a->strings["Your email domain is not among those allowed on this site"] = "Домен электронной почты не входит в число тех, которые разрешены на этом сайте";
+$a->strings["Your email address is already registered at this site."] = "Ваш адрес электронной почты уже зарегистрирован на этом сайте.";
+$a->strings["An invitation is required."] = "Требуется приглашение.";
+$a->strings["Invitation could not be verified."] = "Не удалось проверить приглашение.";
+$a->strings["Please enter the required information."] = "Пожалуйста, введите необходимую информацию.";
+$a->strings["Failed to store account information."] = "Не удалось сохранить информацию аккаунта.";
+$a->strings["Registration request at %s"] = "Требуется регистрация на %s";
+$a->strings["Administrator"] = "Администратор";
+$a->strings["your registration password"] = "Ваш пароль регистрации";
+$a->strings["Registration details for %s"] = "Регистрационные данные для %s";
+$a->strings["Account approved."] = "Аккаунт утвержден.";
+$a->strings["Registration revoked for %s"] = "Регистрация отозвана для %s";
+$a->strings["Sort Options"] = "";
+$a->strings["Alphabetic"] = "По алфавиту";
+$a->strings["Reverse Alphabetic"] = "По обратному алфавиту";
+$a->strings["Newest to Oldest"] = "От новых к старым";
+$a->strings["Enable Safe Search"] = "";
+$a->strings["Disable Safe Search"] = "";
+$a->strings["Safe Mode"] = "";
+$a->strings["Red Matrix Notification"] = "Оповещения Red матрицы";
+$a->strings["redmatrix"] = "redmatrix";
+$a->strings["Thank You,"] = "Спасибо,";
+$a->strings["%s Administrator"] = "%s администратор";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Уведомление] Получено новое сообщение в %s";
+$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s послал вам %2\$s.";
+$a->strings["a private message"] = "личное сообщение";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Пожалуйста, посетите %s для просмотра и/или ответа на ваши личные сообщения.";
+$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "";
+$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "";
+$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "";
+$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Уведомление] Комментарий к разговору #%1\$d по %2\$s";
+$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Пожалуйста, посетите %s для просмотра и/или ответа разговора.";
+$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Уведомление] %s добавил сообщениe на стену вашего профиля";
+$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "";
+$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "";
+$a->strings["[Red:Notify] %s tagged you"] = "[Red:Уведомление] %s добавил у вас тег";
+$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "";
+$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "";
+$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Уведомление] %1\$s подпихнул вас";
+$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "";
+$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "";
+$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Уведомление] %s добавил у вас в сообщении тег";
+$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "";
+$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "";
+$a->strings["[Red:Notify] Introduction received"] = "[Red:Уведомление] введение получено";
+$a->strings["%1\$s, you've received an introduction from '%2\$s' at %3\$s"] = "";
+$a->strings["%1\$s, you've received [zrl=%2\$s]an introduction[/zrl] from %3\$s."] = "";
+$a->strings["You may visit their profile at %s"] = "Вы можете посетить ​​профиль в %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "";
+$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Уведомление] Получено предложение дружить";
+$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "";
+$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "";
+$a->strings["Name:"] = "Имя:";
+$a->strings["Photo:"] = "Фото:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "";
+$a->strings["Logged out."] = "Вышел из системы.";
+$a->strings["Failed authentication"] = "Ошибка аутентификации";
+$a->strings["Login failed."] = "Не удалось войти.";
+$a->strings["%d invitation available"] = array(
+	0 => "имеется %d  приглашение",
+	1 => "имеются %d  приглашения",
+	2 => "имеется %d  приглашений",
 );
-$a->strings["Introduction complete."] = "Запрос создан.";
-$a->strings["Unrecoverable protocol error."] = "Неисправимая ошибка протокола.";
-$a->strings["Profile unavailable."] = "Профиль недоступен.";
-$a->strings["%s has received too many connection requests today."] = "К %s пришло сегодня слишком много запросов на подключение.";
-$a->strings["Spam protection measures have been invoked."] = "Были применены меры защиты от спама.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Друзья советуют попробовать еще раз в ближайшие 24 часа.";
-$a->strings["Invalid locator"] = "Недопустимый локатор";
-$a->strings["Invalid email address."] = "";
-$a->strings["This account has not been configured for email. Request failed."] = "";
-$a->strings["Unable to resolve your name at the provided location."] = "Не удается установить ваше имя на предложенном местоположении.";
-$a->strings["You have already introduced yourself here."] = "Вы уже ввели информацию о себе здесь.";
-$a->strings["Apparently you are already friends with %s."] = "Похоже, что вы уже друзья с %s.";
-$a->strings["Invalid profile URL."] = "Неверный URL профиля.";
-$a->strings["Disallowed profile URL."] = "Запрещенный URL профиля.";
-$a->strings["Failed to update contact record."] = "Не удалось обновить запись контакта.";
-$a->strings["Your introduction has been sent."] = "Ваш запрос отправлен.";
-$a->strings["Please login to confirm introduction."] = "Для подтверждения запроса войдите пожалуйста с паролем.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Неверно идентифицирован вход. Пожалуйста, войдите в <strong>этот</strong> профиль.";
-$a->strings["Hide this contact"] = "";
-$a->strings["Welcome home %s."] = "Добро пожаловать домой, %s!";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Пожалуйста, подтвердите краткую информацию / запрос на подключение к %s.";
-$a->strings["Confirm"] = "Подтвердить";
-$a->strings["[Name Withheld]"] = "[Имя не разглашается]";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "";
-$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "";
-$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "";
-$a->strings["Friend/Connection Request"] = "Запрос в друзья / на подключение";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Примеры: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Пожалуйста, ответьте следующее:";
-$a->strings["Does %s know you?"] = "%s знает вас?";
-$a->strings["Add a personal note:"] = "Добавить личную заметку:";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet / Federated Social Web";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = "";
-$a->strings["Your Identity Address:"] = "Ваш идентификационный адрес:";
-$a->strings["Submit Request"] = "Отправить запрос";
-$a->strings["Friendica Social Communications Server - Setup"] = "";
-$a->strings["Could not connect to database."] = "Не удалось подключиться к базе данных.";
+$a->strings["Find Channels"] = "Поиск контактов";
+$a->strings["Enter name or interest"] = "Впишите имя или интерес";
+$a->strings["Connect/Follow"] = "Подключить/следовать";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Примеры: Владимир Ильич, Революционер";
+$a->strings["Find"] = "Поиск";
+$a->strings["Channel Suggestions"] = "Рекомендации каналов";
+$a->strings["Random Profile"] = "Случайные";
+$a->strings["Invite Friends"] = "Пригласить друзей";
+$a->strings["%d connection in common"] = array(
+	0 => "%d совместный контакт",
+	1 => "%d совместных контакта",
+	2 => "%d совместных контактов",
+);
+$a->strings["New Page"] = "Новая страница";
+$a->strings["Edit"] = "Редактировать";
+$a->strings["Click here to upgrade."] = "Нажмите здесь, чтобы обновить.";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "";
+$a->strings["This action is not available under your subscription plan."] = "";
+$a->strings["Channel is blocked on this site."] = "Канал блокируется на этом сайте.";
+$a->strings["Channel location missing."] = "Местоположение канала отсутствует.";
+$a->strings["Channel discovery failed. Website may be down or misconfigured."] = "";
+$a->strings["Response from remote channel was not understood."] = "";
+$a->strings["Response from remote channel was incomplete."] = "";
+$a->strings["local account not found."] = "локальный аккаунт не найден.";
+$a->strings["Cannot connect to yourself."] = "Нельзя подключиться к самому себе.";
+$a->strings["Can view my \"public\" stream and posts"] = "Может просматривать мои \"публичные\" поток и сообщения";
+$a->strings["Can view my \"public\" channel profile"] = "Может просматривать мой \"публичный\" профиль канала";
+$a->strings["Can view my \"public\" photo albums"] = "Может просматривать мои \"публичные\" фотоальбомы";
+$a->strings["Can view my \"public\" address book"] = "Может просматривать мою \"публичную\" адресную книгу";
+$a->strings["Can view my \"public\" file storage"] = "Может просматривать мои \"публичные\" файлы";
+$a->strings["Can view my \"public\" pages"] = "Может просматривать мои \"публичные\" страницы";
+$a->strings["Can send me their channel stream and posts"] = "Может прислать мне свои потоки и сообщения";
+$a->strings["Can post on my channel page (\"wall\")"] = "Может публиковать на моей странице канала (\"стена\")";
+$a->strings["Can comment on my posts"] = "Может комментировать мои сообщения";
+$a->strings["Can send me private mail messages"] = "Может отправлять мне личные сообщения по эл. почте";
+$a->strings["Can post photos to my photo albums"] = "Может публиковать фотографии в мои фотоальбомы";
+$a->strings["Can forward to all my channel contacts via post @mentions"] = "";
+$a->strings["Advanced - useful for creating group forum channels"] = "";
+$a->strings["Can chat with me (when available)"] = "Можете общаться со мной в чате (при наличии)";
+$a->strings["Requires compatible chat plugin"] = "Требуется совместимый чат-плагин";
+$a->strings["Can write to my \"public\" file storage"] = "";
+$a->strings["Can edit my \"public\" pages"] = "Может редактировать мои \"публичные\" страницы";
+$a->strings["Can source my \"public\" posts in derived channels"] = "";
+$a->strings["Somewhat advanced - very useful in open communities"] = "";
+$a->strings["Can administer my channel resources"] = "Может администрировать мои ресурсы канала";
+$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "";
+$a->strings["Default"] = "По умолчанию";
+$a->strings["Unable to obtain identity information from database"] = "Невозможно получить идентификационную информацию из базы данных";
+$a->strings["Empty name"] = "Пустое имя";
+$a->strings["Name too long"] = "Слишком длинное имя";
+$a->strings["No account identifier"] = "идентификатор аккаунта отсутствует";
+$a->strings["Nickname is required."] = "Требуется псевдоним.";
+$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Псевдоним имеет недопустимые символы или уже используется на этом сайте.";
+$a->strings["Unable to retrieve created identity"] = "";
+$a->strings["Default Profile"] = "Профиль по умолчанию";
+$a->strings["Requested channel is not available."] = "Запрашиваемый канал не доступен.";
+$a->strings[" Sorry, you don't have the permission to view this profile. "] = "";
+$a->strings["Requested profile is not available."] = "Запрашиваемый профиль не доступен.";
+$a->strings["Change profile photo"] = "Изменить фотографию профиля";
+$a->strings["Profiles"] = "Профили";
+$a->strings["Manage/edit profiles"] = "Управление / Редактирование профилей";
+$a->strings["Create New Profile"] = "Создать новый профиль";
+$a->strings["Edit Profile"] = "Редактировать профиль";
+$a->strings["Profile Image"] = "Изображение профиля";
+$a->strings["visible to everybody"] = "видно всем";
+$a->strings["Edit visibility"] = "Редактировать видимость";
+$a->strings["Gender:"] = "Пол:";
+$a->strings["Status:"] = "Статус:";
+$a->strings["Homepage:"] = "Домашняя страница:";
+$a->strings["g A l F d"] = "g A l F d";
+$a->strings["F d"] = "F d";
+$a->strings["[today]"] = "[сегодня]";
+$a->strings["Birthday Reminders"] = "Напоминания о Днях Рождения";
+$a->strings["Birthdays this week:"] = "Дни Рождения на этой неделе:";
+$a->strings["[No description]"] = "[без описания]";
+$a->strings["Event Reminders"] = "Напоминания мероприятий";
+$a->strings["Events this week:"] = "Мероприятия на этой неделе:";
+$a->strings["Profile"] = "Профиль";
+$a->strings["Full Name:"] = "Полное имя:";
+$a->strings["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "День Рождения:";
+$a->strings["Age:"] = "Возраст:";
+$a->strings["for %1\$d %2\$s"] = "для %1\$d %2\$s";
+$a->strings["Sexual Preference:"] = "Сексуальная ориентация:";
+$a->strings["Hometown:"] = "Родной город:";
+$a->strings["Tags:"] = "Тэги:";
+$a->strings["Political Views:"] = "Политические взгляды:";
+$a->strings["Religion:"] = "Религия:";
+$a->strings["About:"] = "О себе:";
+$a->strings["Hobbies/Interests:"] = "Хобби / интересы:";
+$a->strings["Likes:"] = "Что вам нравится:";
+$a->strings["Dislikes:"] = "Что вам не нравится:";
+$a->strings["Contact information and Social Networks:"] = "Информация и социальные сети контакта:";
+$a->strings["Musical interests:"] = "Музыкальные интересы:";
+$a->strings["Books, literature:"] = "Книги, литература:";
+$a->strings["Television:"] = "Телевидение:";
+$a->strings["Film/dance/culture/entertainment:"] = "Кино / танцы / культура / развлечения:";
+$a->strings["Love/Romance:"] = "Любовь / Романс:";
+$a->strings["Work/employment:"] = "Работа / Занятость:";
+$a->strings["School/education:"] = "Школа / образование:";
+$a->strings["Permission denied"] = "Доступ запрещен";
+$a->strings["Item not found."] = "Элемент не найден.";
+$a->strings["Collection not found."] = "Коллекция не найдена.";
+$a->strings["Collection is empty."] = "Коллекция пуста.";
+$a->strings["Collection: %s"] = "Коллекции: %s";
+$a->strings["Connection: %s"] = "Контакты: %s";
+$a->strings["Connection not found."] = "Контакт не найден.";
+$a->strings["Private Message"] = "Личное сообщение";
+$a->strings["save to folder"] = "сохранить в папку";
+$a->strings["add star"] = "добавить маркировку";
+$a->strings["remove star"] = "удалить маркировку";
+$a->strings["toggle star status"] = "переключение статуса маркировки";
+$a->strings["starred"] = "помеченные";
+$a->strings["add tag"] = "добавить тег";
+$a->strings["I like this (toggle)"] = "мне это нравится (переключение)";
+$a->strings["I don't like this (toggle)"] = "мне это не нравится (переключение)";
+$a->strings["Share this"] = "Поделиться этим";
+$a->strings["share"] = "поделиться";
+$a->strings["View %s's profile - %s"] = "Просмотр %s's профиля - %s";
+$a->strings["to"] = "к";
+$a->strings["via"] = "через";
+$a->strings["Wall-to-Wall"] = "Стена-к-Стене";
+$a->strings["via Wall-To-Wall:"] = "через Стена-к-Стене:";
+$a->strings["Expires: %s"] = "";
+$a->strings["%d comment"] = array(
+	0 => "%d комментарий",
+	1 => "%d комментария",
+	2 => "%d комментариев",
+);
+$a->strings["This is you"] = "Это вы";
+$a->strings["Submit"] = "Отправить";
+$a->strings["Bold"] = "Жирный";
+$a->strings["Italic"] = "Курсив";
+$a->strings["Underline"] = "Подчеркнутый";
+$a->strings["Quote"] = "Цитата";
+$a->strings["Code"] = "Код";
+$a->strings["Image"] = "Изображение";
+$a->strings["Link"] = "Ссылка";
+$a->strings["Video"] = "Видео";
+$a->strings["Welcome "] = "Добро пожаловать";
+$a->strings["Please upload a profile photo."] = "Загрузите пожалуйста фотографию профиля.";
+$a->strings["Welcome back "] = "Добро пожаловать";
+$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."] = "";
+$a->strings["Invalid data packet"] = "";
+$a->strings["Unable to verify channel signature"] = "Невозможно проверить сигнатуру канала";
+$a->strings["Unable to verify site signature for %s"] = "";
+$a->strings["No channel."] = "Не канал.";
+$a->strings["Common connections"] = "Общие контакты";
+$a->strings["No connections in common."] = "Общих контактов нет.";
+$a->strings["Event title and start time are required."] = "Название события и время начала требуется.";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Редактировать мероприятие";
+$a->strings["Create New Event"] = "Создать новое мероприятие";
+$a->strings["Previous"] = "Предыдущая";
+$a->strings["Next"] = "Следующая";
+$a->strings["hour:minute"] = "часы:минуты";
+$a->strings["Event details"] = "Детали мероприятия";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "Формат: %s %s. Дата начала и название необходимы.";
+$a->strings["Event Starts:"] = "Начало мероприятий:";
+$a->strings["Required"] = "Необходимо";
+$a->strings["Finish date/time is not known or not relevant"] = "Дата окончания / время окончания не известны или не релевантны";
+$a->strings["Event Finishes:"] = "\t\nКонец мероприятий:";
+$a->strings["Adjust for viewer timezone"] = "Отрегулируйте для просмотра часовых поясов";
+$a->strings["Description:"] = "Описание:";
+$a->strings["Title:"] = "Заголовок:";
+$a->strings["Share this event"] = "Поделиться этим мероприятием";
+$a->strings["Thing updated"] = "";
+$a->strings["Object store: failed"] = "";
+$a->strings["Thing added"] = "";
+$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "";
+$a->strings["Show Thing"] = "";
+$a->strings["item not found."] = "Элемент не найден.";
+$a->strings["Edit Thing"] = "";
+$a->strings["Select a profile"] = "Выберите профиль";
+$a->strings["Select a category of stuff. e.g. I ______ something"] = "";
+$a->strings["Name of thing e.g. something"] = "";
+$a->strings["URL of thing (optional)"] = "";
+$a->strings["URL for photo of thing (optional)"] = "";
+$a->strings["Add Thing to your Profile"] = "";
+$a->strings["Total invitation limit exceeded."] = "";
+$a->strings["%s : Not a valid email address."] = "%s : Не действительный адрес электронной почты.";
+$a->strings["Please join us on Red"] = "Пожалуйста, присоединяйтесь к нам в Red";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "";
+$a->strings["%s : Message delivery failed."] = "%s : Доставка сообщения не удалась.";
+$a->strings["%d message sent."] = array(
+	0 => "%d сообщение отправленно.",
+	1 => "%d сообщения отправленно.",
+	2 => "%d сообщений отправленно.",
+);
+$a->strings["You have no more invitations available"] = "У вас больше нет приглашений";
+$a->strings["Send invitations"] = "Послать приглашения";
+$a->strings["Enter email addresses, one per line:"] = "Введите адреса электронной почты, по одному на строку:";
+$a->strings["Your message:"] = "Ваше сообщение:";
+$a->strings["You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralised communication and information tool."] = "";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "";
+$a->strings["Please visit my channel at"] = "Пожалуйста, посетите мой канал на";
+$a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "";
+$a->strings["Click the [Register] link on the following page to join."] = "";
+$a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "";
+$a->strings["Could not access contact record."] = "";
+$a->strings["Could not locate selected profile."] = "";
+$a->strings["Connection updated."] = "Канал обновлен.";
+$a->strings["Failed to update connection record."] = "";
+$a->strings["Could not access address book record."] = "";
+$a->strings["Refresh failed - channel is currently unavailable."] = "";
+$a->strings["Channel has been unblocked"] = "Канал разблокирован";
+$a->strings["Channel has been blocked"] = "Канал заблокирован";
+$a->strings["Unable to set address book parameters."] = "";
+$a->strings["Channel has been unignored"] = "Канал не проигнорирован";
+$a->strings["Channel has been ignored"] = "Канал проигнорирован";
+$a->strings["Channel has been unarchived"] = "Канал разархивирован";
+$a->strings["Channel has been archived"] = "Канал заархивирован";
+$a->strings["Channel has been unhidden"] = "Канал открыт";
+$a->strings["Channel has been hidden"] = "Канал скрыт";
+$a->strings["Channel has been approved"] = "Канал одобрен";
+$a->strings["Channel has been unapproved"] = "Канал не одобрен";
+$a->strings["Contact has been removed."] = "Канал удален.";
+$a->strings["View %s's profile"] = "Просмотр %s's профиля";
+$a->strings["Refresh Permissions"] = "Обновить разрешения";
+$a->strings["Fetch updated permissions"] = "";
+$a->strings["Recent Activity"] = "";
+$a->strings["View recent posts and comments"] = "";
+$a->strings["Unblock"] = "Разрешить";
+$a->strings["Block"] = "Заблокировать";
+$a->strings["Block or Unblock this connection"] = "Запретить или разрешить этот канал";
+$a->strings["Unignore"] = "Не игнорировать";
+$a->strings["Ignore"] = "Игнорировать";
+$a->strings["Ignore or Unignore this connection"] = "Игнорировать или не игнорировать этот канал";
+$a->strings["Unarchive"] = "Разархивировать";
+$a->strings["Archive"] = "Заархивировать";
+$a->strings["Archive or Unarchive this connection"] = " Заархивировать или разархивировать этот канал";
+$a->strings["Unhide"] = "Показать";
+$a->strings["Hide"] = "Скрыть";
+$a->strings["Hide or Unhide this connection"] = "Скрыть или показывать этот канал";
+$a->strings["Delete this connection"] = "Удалить этот контакт";
+$a->strings["Unknown"] = "Неизвестный";
+$a->strings["Approve this connection"] = "Утвердить этот контакт";
+$a->strings["Accept connection to allow communication"] = "";
+$a->strings["Automatic Permissions Settings"] = "Настройки автоматических разрешений";
+$a->strings["Connections: settings for %s"] = "";
+$a->strings["When receiving a channel introduction, any permissions provided here will be applied to the new connection automatically and the introduction approved. Leave this page if you do not wish to use this feature."] = "";
+$a->strings["Slide to adjust your degree of friendship"] = "";
+$a->strings["inherited"] = "унаследованный";
+$a->strings["Connection has no individual permissions!"] = "";
+$a->strings["This may be appropriate based on your <a href=\"settings\">privacy settings</a>, though you may wish to review the \"Advanced Permissions\"."] = "";
+$a->strings["Profile Visibility"] = "Видимость профиля";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "";
+$a->strings["Contact Information / Notes"] = "Информация / Примечания о канале";
+$a->strings["Edit contact notes"] = "Редактировать примечания канала";
+$a->strings["Their Settings"] = "Их настройки";
+$a->strings["My Settings"] = "Мои настройки";
+$a->strings["Forum Members"] = "Участники форума";
+$a->strings["Soapbox"] = "Soapbox";
+$a->strings["Full Sharing"] = "Полный обмен";
+$a->strings["Cautious Sharing"] = "";
+$a->strings["Follow Only"] = "Только следовать";
+$a->strings["Individual Permissions"] = "Индивидуальные разрешения";
+$a->strings["Some permissions may be inherited from your channel <a href=\"settings\">privacy settings</a>, which have higher priority. Changing those inherited settings on this page will have no effect."] = "";
+$a->strings["Advanced Permissions"] = "Дополнительные разрешения";
+$a->strings["Quick Links"] = "Быстрые ссылки";
+$a->strings["Visit %s's profile - %s"] = "Посетить %s's ​​профиль - %s";
+$a->strings["Block/Unblock contact"] = "Запретить/разрешить контакт";
+$a->strings["Ignore contact"] = "Игнорировать контакт";
+$a->strings["Repair URL settings"] = "Ремонт настройки URL";
+$a->strings["View conversations"] = "Просмотр разговоров";
+$a->strings["Delete contact"] = "Удалить контакт";
+$a->strings["Last update:"] = "Последнее обновление:";
+$a->strings["Update public posts"] = "Обновить публичные сообщения";
+$a->strings["Update now"] = "Обновить сейчас";
+$a->strings["Currently blocked"] = "В настоящее время заблокирован";
+$a->strings["Currently ignored"] = "В настоящее время игнорируются";
+$a->strings["Currently archived"] = "В настоящее время зархивированны";
+$a->strings["Currently pending"] = "В настоящее время в ожидании";
+$a->strings["Hide this contact from others"] = "Скрыть этот канал от других";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "";
+$a->strings["View"] = "Просмотр";
+$a->strings["Authorize application connection"] = "";
+$a->strings["Return to your app and insert this Securty Code:"] = "";
+$a->strings["Please login to continue."] = "Пожалуйста, войдите, чтобы продолжить.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "";
+$a->strings["Yes"] = "Да";
+$a->strings["No"] = "Нет";
+$a->strings["No installed applications."] = "Нет установленных приложений.";
+$a->strings["Applications"] = "Приложения";
+$a->strings["Invalid item."] = "Недействительный элемент.";
+$a->strings["Channel not found."] = "Канал не найден.";
+$a->strings["Page not found."] = "Страница не найдена.";
+$a->strings["Item not available."] = "Элемент недоступен.";
+$a->strings["Red Matrix Server - Setup"] = "Red Matrix Сервер - Установка";
+$a->strings["Could not connect to database."] = "Не удалось подключиться к серверу баз данных.";
+$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "";
 $a->strings["Could not create table."] = "Не удалось создать таблицу.";
-$a->strings["Your Friendica site database has been installed."] = "База данных сайта установлена.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Пожалуйста, смотрите файл \"INSTALL.txt\".";
-$a->strings["System check"] = "";
-$a->strings["Check again"] = "Проверить еще раз";
+$a->strings["Your site database has been installed."] = "Ваша база данных установлена.";
+$a->strings["You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql."] = "";
+$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Пожалуйста, обратитесь к файлу \"install/INSTALL.txt\".";
+$a->strings["System check"] = "Проверка системы";
+$a->strings["Check again"] = "Проверить снова";
 $a->strings["Database connection"] = "Подключение к базе данных";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, если у вас есть вопросы об этих параметрах.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Базы данных, указанная ниже, должна уже существовать. Если этого нет, пожалуйста, создайте ее перед продолжением.";
+$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "";
 $a->strings["Database Server Name"] = "Имя сервера базы данных";
-$a->strings["Database Login Name"] = "Логин базы данных";
-$a->strings["Database Login Password"] = "Пароль базы данных";
+$a->strings["Default is localhost"] = "По умолчанию localhost";
+$a->strings["Database Port"] = "Порт базы данных";
+$a->strings["Communication port number - use 0 for default"] = "Порт коммуникации - используйте 0 по умолчанию";
+$a->strings["Database Login Name"] = "Имя для подключения к базе данных";
+$a->strings["Database Login Password"] = "Пароль для подключения к базе данных";
 $a->strings["Database Name"] = "Имя базы данных";
 $a->strings["Site administrator email address"] = "Адрес электронной почты администратора сайта";
 $a->strings["Your account email address must match this in order to use the web admin panel."] = "";
-$a->strings["Please select a default timezone for your website"] = "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта";
+$a->strings["Website URL"] = "URL веб-сайта";
+$a->strings["Please use SSL (https) URL if available."] = "Пожалуйста, используйте SSL (https) URL если возможно.";
+$a->strings["Please select a default timezone for your website"] = "";
 $a->strings["Site settings"] = "Настройки сайта";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Не удалось найти PATH веб-сервера в установках PHP.";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "";
-$a->strings["PHP executable path"] = "PHP executable path";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "";
+$a->strings["PHP executable path"] = "PHP executable путь";
 $a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "";
 $a->strings["Command line PHP"] = "Command line PHP";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Не включено \"register_argc_argv\" в установках PHP.";
-$a->strings["This is required for message delivery to work."] = "Это необходимо для работы доставки сообщений.";
-$a->strings["PHP register_argc_argv"] = "";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Ошибка: функция \"openssl_pkey_new\" в этой системе не в состоянии генерировать ключи шифрования";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Если вы работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\".";
-$a->strings["Generate encryption keys"] = "Генерация шифрованых ключей";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "";
+$a->strings["This is required for message delivery to work."] = "";
+$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "";
+$a->strings["Generate encryption keys"] = "";
 $a->strings["libCurl PHP module"] = "libCurl PHP модуль";
 $a->strings["GD graphics PHP module"] = "GD graphics PHP модуль";
 $a->strings["OpenSSL PHP module"] = "OpenSSL PHP модуль";
 $a->strings["mysqli PHP module"] = "mysqli PHP модуль";
 $a->strings["mb_string PHP module"] = "mb_string PHP модуль";
-$a->strings["Apache mod_rewrite module"] = "";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Ошибка: необходим libCURL PHP модуль, но он не установлен.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Ошибка: необходим PHP модуль GD графики с поддержкой JPEG, но он не установлен.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Ошибка: необходим PHP модуль OpenSSL, но он не установлен.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Ошибка: необходим PHP модуль MySQLi, но он не установлен.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Ошибка: необходим PHP модуль mb_string, но он не установлен.";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\ in the top folder of your web server and it is unable to do so."] = "Веб-инсталлятору требуется создать файл с именем \". htconfig.php\" в верхней папке веб-сервера, но он не в состоянии это сделать.";
-$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Это наиболее частые параметры разрешений, когда веб-сервер не может записать файлы в папке - даже если вы можете.";
-$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "";
-$a->strings[".htconfig.php is writable"] = ".htconfig.php is writable";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
-$a->strings["Url rewrite is working"] = "";
-$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Файл конфигурации базы данных \".htconfig.php\" не могла быть записан. Пожалуйста, используйте приложенный текст, чтобы создать конфигурационный файл в корневом каталоге веб-сервера.";
-$a->strings["Errors encountered creating database tables."] = "Обнаружены ошибки при создании таблиц базы данных.";
-$a->strings["<h1>What next</h1>"] = "";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для регистратора.";
-$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
-$a->strings["Time Conversion"] = "История общения";
-$a->strings["Friendika provides this service for sharing events with other networks and friends in unknown timezones."] = "";
-$a->strings["UTC time: %s"] = "UTC время: %s";
-$a->strings["Current timezone: %s"] = "Ваш часовой пояс: %s";
-$a->strings["Converted localtime: %s"] = "Ваше изменённое время: %s";
-$a->strings["Please select your timezone:"] = "Выберите пожалуйста ваш часовой пояс:";
-$a->strings["Poke/Prod"] = "";
-$a->strings["poke, prod or do other things to somebody"] = "";
-$a->strings["Recipient"] = "";
-$a->strings["Choose what you wish to do to recipient"] = "";
-$a->strings["Make this post private"] = "";
-$a->strings["Profile Match"] = "Похожие профили";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Нет соответствующих ключевых слов. Пожалуйста, добавьте ключевые слова для вашего профиля по умолчанию.";
-$a->strings["is interested in:"] = "";
-$a->strings["Connect"] = "Подключить";
-$a->strings["No matches"] = "Нет соответствий";
-$a->strings["Remote privacy information not available."] = "Личная информация удаленно недоступна.";
-$a->strings["Visible to:"] = "Кто может видеть:";
-$a->strings["No such group"] = "Нет такой группы";
-$a->strings["Group is empty"] = "Группа пуста";
-$a->strings["Group: "] = "Группа: ";
-$a->strings["Select"] = "Выберите";
-$a->strings["View %s's profile @ %s"] = "";
-$a->strings["%s from %s"] = "%s с %s";
-$a->strings["View in context"] = "Смотреть в контексте";
-$a->strings["%d comment"] = array(
-	0 => "%d комментарий",
-	1 => "%d комментариев",
-	2 => "%d комментариев",
-);
-$a->strings["comment"] = array(
-	0 => "",
-	1 => "",
-	2 => "комментарий",
-);
-$a->strings["show more"] = "показать больше";
-$a->strings["like"] = "";
-$a->strings["dislike"] = "не нравитса";
-$a->strings["Share this"] = "";
-$a->strings["share"] = "делиться";
-$a->strings["Bold"] = "";
-$a->strings["Italic"] = "";
-$a->strings["Underline"] = "";
-$a->strings["Quote"] = "";
-$a->strings["Code"] = "";
-$a->strings["Image"] = "";
-$a->strings["Link"] = "";
-$a->strings["Video"] = "";
-$a->strings["add star"] = "пометить";
-$a->strings["remove star"] = "убрать метку";
-$a->strings["toggle star status"] = "переключить статус";
-$a->strings["starred"] = "помечено";
-$a->strings["add tag"] = "добавить ключевое слово (таг)";
-$a->strings["save to folder"] = "сохранить в папке";
-$a->strings["to"] = "к";
-$a->strings["Wall-to-Wall"] = "Стена-на-Стену";
-$a->strings["via Wall-To-Wall:"] = "через Стена-на-Стену:";
-$a->strings["Welcome to %s"] = "Добро пожаловать на %s!";
-$a->strings["Invalid request identifier."] = "Неверный идентификатор запроса.";
-$a->strings["Discard"] = "Отказаться";
-$a->strings["Ignore"] = "Игнорировать";
-$a->strings["System"] = "Система";
-$a->strings["Network"] = "Сеть";
-$a->strings["Personal"] = "Персонал";
-$a->strings["Home"] = "Главная";
-$a->strings["Introductions"] = "Запросы";
-$a->strings["Messages"] = "Сообщения";
-$a->strings["Show Ignored Requests"] = "Показать проигнорированные запросы";
-$a->strings["Hide Ignored Requests"] = "Скрыть проигнорированные запросы";
-$a->strings["Notification type: "] = "Тип уведомления: ";
-$a->strings["Friend Suggestion"] = "Предложение в друзья";
-$a->strings["suggested by %s"] = "предложено юзером %s";
-$a->strings["Hide this contact from others"] = "Скрыть этот контакт от других";
-$a->strings["Post a new friend activity"] = "";
-$a->strings["if applicable"] = "";
-$a->strings["Approve"] = "Одобрить";
-$a->strings["Claims to be known to you: "] = "Утверждения, о которых должно быть вам известно: ";
-$a->strings["yes"] = "да";
-$a->strings["no"] = "нет";
-$a->strings["Approve as: "] = "Утвердить как: ";
-$a->strings["Friend"] = "Друг";
-$a->strings["Sharer"] = "Участник";
-$a->strings["Fan/Admirer"] = "Фанат / Поклонник";
-$a->strings["Friend/Connect Request"] = "Запрос в друзья / на подключение";
-$a->strings["New Follower"] = "Новый фолловер";
-$a->strings["No introductions."] = "Запросов нет.";
-$a->strings["Notifications"] = "Уведомления";
-$a->strings["%s liked %s's post"] = "%s нравится %s сообшение";
-$a->strings["%s disliked %s's post"] = "%s не нравится %s сообшение";
-$a->strings["%s is now friends with %s"] = "%s теперь друзья с %s";
-$a->strings["%s created a new post"] = "%s написал новое сообщение";
-$a->strings["%s commented on %s's post"] = "%s прокомментировал %s сообщение";
-$a->strings["No more network notifications."] = "Уведомлений из сети больше нет.";
-$a->strings["Network Notifications"] = "Уведомления сети";
-$a->strings["No more system notifications."] = "Системных уведомлений больше нет.";
-$a->strings["System Notifications"] = "Уведомления системы";
-$a->strings["No more personal notifications."] = "Персональных уведомлений больше нет.";
-$a->strings["Personal Notifications"] = "Личные уведомления";
-$a->strings["No more home notifications."] = "";
-$a->strings["Home Notifications"] = "";
-$a->strings["Could not access contact record."] = "Не удалось получить доступ к записи контакта.";
-$a->strings["Could not locate selected profile."] = "Не удалось найти выбранный профиль.";
-$a->strings["Contact updated."] = "Контакт обновлен.";
-$a->strings["Contact has been blocked"] = "Контакт заблокирован";
-$a->strings["Contact has been unblocked"] = "Контакт разблокирован";
-$a->strings["Contact has been ignored"] = "Контакт проигнорирован";
-$a->strings["Contact has been unignored"] = "У контакта отменено игнорирование";
-$a->strings["Contact has been archived"] = "";
-$a->strings["Contact has been unarchived"] = "";
-$a->strings["Contact has been removed."] = "Контакт удален.";
-$a->strings["You are mutual friends with %s"] = "У Вас взаимная дружба с %s";
-$a->strings["You are sharing with %s"] = "Вы делитесь с %s";
-$a->strings["%s is sharing with you"] = "%s делитса с Вами";
-$a->strings["Private communications are not available for this contact."] = "Личные коммуникации недоступны для этого контакта.";
-$a->strings["Never"] = "Никогда";
-$a->strings["(Update was successful)"] = "(Обновление было успешно)";
-$a->strings["(Update was not successful)"] = "(Обновление не удалось)";
-$a->strings["Suggest friends"] = "Предложить друзей";
-$a->strings["Network type: %s"] = "Сеть: %s";
-$a->strings["%d contact in common"] = array(
-	0 => "%d Контакт",
-	1 => "%d Контактов",
-	2 => "%d Контактов",
-);
-$a->strings["View all contacts"] = "Показать все контакты";
-$a->strings["Unblock"] = "Разблокировать";
-$a->strings["Block"] = "Блокировать";
-$a->strings["Toggle Blocked status"] = "";
-$a->strings["Unignore"] = "Не игнорировать";
-$a->strings["Toggle Ignored status"] = "";
-$a->strings["Unarchive"] = "";
-$a->strings["Archive"] = "";
-$a->strings["Toggle Archive status"] = "";
-$a->strings["Repair"] = "Восстановить";
-$a->strings["Advanced Contact Settings"] = "";
-$a->strings["Communications lost with this contact!"] = "";
-$a->strings["Contact Editor"] = "Редактор контакта";
-$a->strings["Profile Visibility"] = "Видимость профиля";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Пожалуйста, выберите профиль, который вы хотите отображать %s, когда просмотр вашего профиля безопасен.";
-$a->strings["Contact Information / Notes"] = "Информация о контакте / Заметки";
-$a->strings["Edit contact notes"] = "Редактировать заметки контакта";
-$a->strings["Visit %s's profile [%s]"] = "Посетить профиль %s [%s]";
-$a->strings["Block/Unblock contact"] = "Блокировать / Разблокировать контакт";
-$a->strings["Ignore contact"] = "Игнорировать контакт";
-$a->strings["Repair URL settings"] = "Восстановить настройки URL";
-$a->strings["View conversations"] = "Просмотр бесед";
-$a->strings["Delete contact"] = "Удалить контакт";
-$a->strings["Last update:"] = "Последнее обновление: ";
-$a->strings["Update public posts"] = "Обновить публичные сообщения";
-$a->strings["Update now"] = "Обновить сейчас";
-$a->strings["Currently blocked"] = "В настоящее время заблокирован";
-$a->strings["Currently ignored"] = "В настоящее время игнорируется";
-$a->strings["Currently archived"] = "";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "";
-$a->strings["Suggestions"] = "";
-$a->strings["Suggest potential friends"] = "";
-$a->strings["All Contacts"] = "Все контакты";
-$a->strings["Show all contacts"] = "";
-$a->strings["Unblocked"] = "";
-$a->strings["Only show unblocked contacts"] = "";
-$a->strings["Blocked"] = "";
-$a->strings["Only show blocked contacts"] = "";
-$a->strings["Ignored"] = "";
-$a->strings["Only show ignored contacts"] = "";
-$a->strings["Archived"] = "";
-$a->strings["Only show archived contacts"] = "";
-$a->strings["Hidden"] = "";
-$a->strings["Only show hidden contacts"] = "";
-$a->strings["Mutual Friendship"] = "Взаимная дружба";
-$a->strings["is a fan of yours"] = "является вашим поклонником";
-$a->strings["you are a fan of"] = "Вы - поклонник";
-$a->strings["Edit contact"] = "Редактировать контакт";
-$a->strings["Contacts"] = "Контакты";
-$a->strings["Search your contacts"] = "Поиск ваших контактов";
-$a->strings["Finding: "] = "Результат поиска: ";
-$a->strings["Find"] = "Найти";
-$a->strings["No valid account found."] = "Не найдено действительного аккаунта.";
-$a->strings["Password reset request issued. Check your email."] = "Запрос на сброс пароля принят. Проверьте вашу электронную почту.";
-$a->strings["Password reset requested at %s"] = "Запрос на сброс пароля получен %s";
-$a->strings["Administrator"] = "Администратор";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Запрос не может быть проверен. (Вы, возможно, ранее представляли его.) Попытка сброса пароля неудачная.";
-$a->strings["Password Reset"] = "Сброс пароля";
-$a->strings["Your password has been reset as requested."] = "Ваш пароль был сброшен по требованию.";
-$a->strings["Your new password is"] = "Ваш новый пароль";
-$a->strings["Save or copy your new password - and then"] = "Сохраните или скопируйте новый пароль - и затем";
-$a->strings["click here to login"] = "нажмите здесь для входа";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Ваш пароль может быть изменен на странице <em>Настройки</em> после успешного входа.";
-$a->strings["Forgot your Password?"] = "Забыли пароль?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Введите адрес электронной почты и подтвердите, что вы хотите сбросить ваш пароль. Затем проверьте свою электронную почту для получения дальнейших инструкций.";
-$a->strings["Nickname or Email: "] = "Ник или E-mail: ";
-$a->strings["Reset"] = "Сброс";
-$a->strings["Account settings"] = "Настройки аккаунта";
-$a->strings["Display settings"] = "Параметры дисплея";
-$a->strings["Connector settings"] = "Настройки соединителя";
-$a->strings["Plugin settings"] = "Настройки плагина";
-$a->strings["Connected apps"] = "";
-$a->strings["Export personal data"] = "Экспорт личных данных";
-$a->strings["Remove account"] = "";
-$a->strings["Settings"] = "Настройки";
-$a->strings["Missing some important data!"] = "Не хватает важных данных!";
-$a->strings["Update"] = "Обновление";
-$a->strings["Failed to connect with email account using the settings provided."] = "Не удалось подключиться к аккаунту e-mail, используя указанные настройки.";
-$a->strings["Email settings updated."] = "Настройки эл. почты обновлены.";
-$a->strings["Passwords do not match. Password unchanged."] = "Пароли не совпадают. Пароль не изменен.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Пустые пароли не допускаются. Пароль не изменен.";
-$a->strings["Password changed."] = "Пароль изменен.";
-$a->strings["Password update failed. Please try again."] = "Обновление пароля не удалось. Пожалуйста, попробуйте еще раз.";
-$a->strings[" Please use a shorter name."] = " Пожалуйста, используйте более короткое имя.";
-$a->strings[" Name too short."] = " Имя слишком короткое.";
-$a->strings[" Not valid email."] = " Неверный e-mail.";
-$a->strings[" Cannot change to that email."] = " Невозможно изменить на этот e-mail.";
-$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "";
-$a->strings["Private forum has no privacy permissions and no default privacy group."] = "";
-$a->strings["Settings updated."] = "Настройки обновлены.";
-$a->strings["Add application"] = "Добавить приложения";
-$a->strings["Consumer Key"] = "Consumer Key";
-$a->strings["Consumer Secret"] = "Consumer Secret";
-$a->strings["Redirect"] = "Перенаправление";
-$a->strings["Icon url"] = "URL символа";
-$a->strings["You can't edit this application."] = "Вы не можете изменить это приложение.";
-$a->strings["Connected Apps"] = "Подключенные приложения";
-$a->strings["Client key starts with"] = "Ключ клиента начинается с";
-$a->strings["No name"] = "Нет имени";
-$a->strings["Remove authorization"] = "Удалить авторизацию";
-$a->strings["No Plugin settings configured"] = "Нет сконфигурированных настроек плагина";
-$a->strings["Plugin Settings"] = "Настройки плагина";
-$a->strings["Built-in support for %s connectivity is %s"] = "Встроенная  поддержка для %s подключение %s";
-$a->strings["enabled"] = "подключено";
-$a->strings["disabled"] = "отключено";
-$a->strings["StatusNet"] = "StatusNet";
-$a->strings["Email access is disabled on this site."] = "Доступ эл. почты отключен на этом сайте.";
-$a->strings["Connector Settings"] = "Настройки соединителя";
-$a->strings["Email/Mailbox Setup"] = "Настройка эл. почты / почтового ящика";
-$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику.";
-$a->strings["Last successful email check:"] = "Последняя успешная проверка электронной почты:";
-$a->strings["IMAP server name:"] = "Имя IMAP сервера:";
-$a->strings["IMAP port:"] = "Порт IMAP:";
-$a->strings["Security:"] = "Безопасность:";
-$a->strings["None"] = "Ничего";
-$a->strings["Email login name:"] = "Логин эл. почты:";
-$a->strings["Email password:"] = "Пароль эл. почты:";
-$a->strings["Reply-to address:"] = "Адрес для ответа:";
-$a->strings["Send public posts to all email contacts:"] = "Отправлять открытые сообщения на все контакты электронной почты:";
-$a->strings["Action after import:"] = "Действие после импорта:";
-$a->strings["Mark as seen"] = "";
-$a->strings["Move to folder"] = "";
-$a->strings["Move to folder:"] = "";
-$a->strings["No special theme for mobile devices"] = "";
-$a->strings["Display Settings"] = "Параметры дисплея";
-$a->strings["Display Theme:"] = "Показать тему:";
-$a->strings["Mobile Theme:"] = "";
-$a->strings["Update browser every xx seconds"] = "Обновление браузера каждые хх секунд";
-$a->strings["Minimum of 10 seconds, no maximum"] = "Минимум 10 секунд, максимума нет";
-$a->strings["Number of items to display per page:"] = "";
-$a->strings["Maximum of 100 items"] = "";
-$a->strings["Don't show emoticons"] = "не показывать emoticons";
-$a->strings["Normal Account Page"] = "";
-$a->strings["This account is a normal personal profile"] = "Этот аккаунт является обычным персональным профилем";
-$a->strings["Soapbox Page"] = "";
-$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Автоматически одобряются все подключения / запросы в друзья, \"только для чтения\" поклонниками";
-$a->strings["Community Forum/Celebrity Account"] = "";
-$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Автоматически одобряются все подключения / запросы в друзья, \"для чтения и записей\" поклонников";
-$a->strings["Automatic Friend Page"] = "";
-$a->strings["Automatically approve all connection/friend requests as friends"] = "Автоматически одобряются все подключения / запросы в друзья, расширяется список друзей";
-$a->strings["Private Forum [Experimental]"] = "";
-$a->strings["Private forum - approved members only"] = "";
-$a->strings["OpenID:"] = "OpenID:";
-$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Необязательно) Разрешить этому OpenID входить в этот аккаунт";
-$a->strings["Publish your default profile in your local site directory?"] = "Публиковать ваш профиль по умолчанию в вашем локальном каталоге на сайте?";
-$a->strings["Publish your default profile in the global social directory?"] = "Публиковать ваш профиль по умолчанию в глобальном социальном каталоге?";
-$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Скрывать ваш список контактов/друзей от посетителей вашего профиля по умолчанию?";
-$a->strings["Hide your profile details from unknown viewers?"] = "Скрыть данные профиля из неизвестных зрителей?";
-$a->strings["Allow friends to post to your profile page?"] = "Разрешить друзьям оставлять сообщения на страницу вашего профиля?";
-$a->strings["Allow friends to tag your posts?"] = "Разрешить друзьям отмечять ваши сообщения?";
-$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Позвольть предлогать Вам потенциальных друзей?";
-$a->strings["Permit unknown people to send you private mail?"] = "";
-$a->strings["Profile is <strong>not published</strong>."] = "Профиль <strong>не публикуется</strong>.";
-$a->strings["or"] = "или";
-$a->strings["Your Identity Address is"] = "Ваш идентификационный адрес";
-$a->strings["Automatically expire posts after this many days:"] = "Автоматическое истекание срока действия сообщения после стольких дней:";
-$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Если пусто, срок действия сообщений не будет ограничен. Сообщения с истекшим сроком действия будут удалены";
-$a->strings["Advanced expiration settings"] = "Настройки расширенного окончания срока действия";
-$a->strings["Advanced Expiration"] = "Расширенное окончание срока действия";
-$a->strings["Expire posts:"] = "Срок хранения сообщений:";
-$a->strings["Expire personal notes:"] = "Срок хранения личных заметок:";
-$a->strings["Expire starred posts:"] = "Срок хранения усеянных сообщений:";
-$a->strings["Expire photos:"] = "Срок хранения фотографий:";
-$a->strings["Only expire posts by others:"] = "";
-$a->strings["Account Settings"] = "Настройки аккаунта";
-$a->strings["Password Settings"] = "Настройка пароля";
-$a->strings["New Password:"] = "Новый пароль:";
-$a->strings["Confirm:"] = "Подтвердите:";
-$a->strings["Leave password fields blank unless changing"] = "Оставьте поля пароля пустыми, если он не изменяется";
-$a->strings["Basic Settings"] = "Основные параметры";
-$a->strings["Full Name:"] = "Полное имя:";
-$a->strings["Email Address:"] = "Адрес электронной почты:";
-$a->strings["Your Timezone:"] = "Ваш часовой пояс:";
-$a->strings["Default Post Location:"] = "Местонахождение по умолчанию:";
-$a->strings["Use Browser Location:"] = "Использовать определение местоположения браузером:";
-$a->strings["Security and Privacy Settings"] = "Параметры безопасности и конфиденциальности";
-$a->strings["Maximum Friend Requests/Day:"] = "Максимум запросов в друзья в день:";
-$a->strings["(to prevent spam abuse)"] = "(для предотвращения спама)";
-$a->strings["Default Post Permissions"] = "Разрешение на сообщения по умолчанию";
-$a->strings["(click to open/close)"] = "(нажмите, чтобы открыть / закрыть)";
-$a->strings["Maximum private messages per day from unknown people:"] = "";
-$a->strings["Notification Settings"] = "Настройка уведомлений";
-$a->strings["By default post a status message when:"] = "";
-$a->strings["accepting a friend request"] = "";
-$a->strings["joining a forum/community"] = "";
-$a->strings["making an <em>interesting</em> profile change"] = "";
-$a->strings["Send a notification email when:"] = "Отправлять уведомление по электронной почте, когда:";
-$a->strings["You receive an introduction"] = "Вы получили запрос";
-$a->strings["Your introductions are confirmed"] = "Ваши запросы подтверждены";
-$a->strings["Someone writes on your profile wall"] = "Кто-то пишет на стене вашего профиля";
-$a->strings["Someone writes a followup comment"] = "Кто-то пишет последующий комментарий";
-$a->strings["You receive a private message"] = "Вы получаете личное сообщение";
-$a->strings["You receive a friend suggestion"] = "";
-$a->strings["You are tagged in a post"] = "";
-$a->strings["You are poked/prodded/etc. in a post"] = "";
-$a->strings["Advanced Account/Page Type Settings"] = "";
-$a->strings["Change the behaviour of this account for special situations"] = "";
-$a->strings["Manage Identities and/or Pages"] = "Управление идентификацией и / или страницами";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "";
-$a->strings["Select an identity to manage: "] = "Выберите идентификацию для управления: ";
-$a->strings["Search Results For:"] = "";
-$a->strings["Remove term"] = "Удалить элемент";
-$a->strings["Saved Searches"] = "запомненные поиски";
-$a->strings["add"] = "добавить";
-$a->strings["Commented Order"] = "Прокомментированный запрос";
-$a->strings["Sort by Comment Date"] = "";
-$a->strings["Posted Order"] = "Отправленный запрос";
-$a->strings["Sort by Post Date"] = "";
-$a->strings["Posts that mention or involve you"] = "";
-$a->strings["New"] = "Новый";
-$a->strings["Activity Stream - by date"] = "";
-$a->strings["Starred"] = "Помеченный";
-$a->strings["Favourite Posts"] = "";
-$a->strings["Shared Links"] = "";
-$a->strings["Interesting Links"] = "";
-$a->strings["Warning: This group contains %s member from an insecure network."] = array(
-	0 => "Внимание: Эта группа содержит %s участника с незащищенной сети.",
-	1 => "Внимание: Эта группа содержит %s участников с незащищенной сети.",
-	2 => "Внимание: Эта группа содержит %s участников с незащищенной сети.",
-);
-$a->strings["Private messages to this group are at risk of public disclosure."] = "Личные сообщения к этой группе находятся под угрозой обнародования.";
-$a->strings["Contact: "] = "Контакт: ";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Личные сообщения этому человеку находятся под угрозой обнародования.";
-$a->strings["Invalid contact."] = "Недопустимый контакт.";
-$a->strings["Personal Notes"] = "Личные заметки";
-$a->strings["Save"] = "Сохранить";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "";
-$a->strings["No recipient selected."] = "Не выбран получатель.";
-$a->strings["Unable to check your home location."] = "";
-$a->strings["Message could not be sent."] = "Сообщение не может быть отправлено.";
-$a->strings["Message collection failure."] = "";
-$a->strings["Message sent."] = "Сообщение отправлено.";
-$a->strings["No recipient."] = "";
-$a->strings["Please enter a link URL:"] = "Пожалуйста, введите URL ссылки:";
-$a->strings["Send Private Message"] = "Отправить личное сообщение";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "";
-$a->strings["To:"] = "Кому:";
-$a->strings["Subject:"] = "Тема:";
-$a->strings["Your message:"] = "Ваше сообщение:";
-$a->strings["Welcome to Friendica"] = "Добро пожаловать в Friendica";
-$a->strings["New Member Checklist"] = "Новый контрольный список участников";
-$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "";
-$a->strings["Getting Started"] = "";
-$a->strings["Friendica Walk-Through"] = "";
-$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "";
-$a->strings["Go to Your Settings"] = "";
-$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "";
-$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Просмотрите другие установки, в частности, параметры конфиденциальности. Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, вероятно, следует опубликовать свою информацию - если все ваши друзья и потенциальные друзья точно знают, как вас найти.";
-$a->strings["Profile"] = "Профиль";
-$a->strings["Upload Profile Photo"] = "Загрузить фото профиля";
-$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Загрузите фотографию профиля, если вы еще не сделали это. Исследования показали, что люди с реальными фотографиями имеют в десять раз больше шансов подружиться, чем люди, которые этого не делают.";
-$a->strings["Edit Your Profile"] = "";
-$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Отредактируйте профиль <strong>по умолчанию</strong> на свой ​​вкус. Просмотрите установки для сокрытия вашего списка друзей и сокрытия профиля от неизвестных посетителей.";
-$a->strings["Profile Keywords"] = "";
-$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Установите некоторые публичные ключевые слова для вашего профиля по умолчанию, которые описывают ваши интересы. Мы можем быть в состоянии найти других людей со схожими интересами и предложить дружбу.";
-$a->strings["Connecting"] = "";
-$a->strings["Facebook"] = "Facebook";
-$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Авторизуйте Facebook Connector , если у вас уже есть аккаунт на Facebook, и мы (по желанию) импортируем всех ваших друзей и беседы с Facebook.";
-$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "";
-$a->strings["Importing Emails"] = "";
-$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "";
-$a->strings["Go to Your Contacts Page"] = "";
-$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "";
-$a->strings["Go to Your Site's Directory"] = "";
-$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "На странице каталога вы можете найти других людей в этой сети или на других похожих сайтах. Ищите ссылки <em>Подключить</em> или <em>Следовать</em> на страницах их профилей. Укажите свой собственный адрес идентификации, если требуется.";
-$a->strings["Finding New People"] = "";
-$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "";
-$a->strings["Groups"] = "Группы";
-$a->strings["Group Your Contacts"] = "";
-$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "После того, как вы найдете несколько друзей, организуйте их в группы частных бесед в боковой панели на странице Контакты, а затем вы можете взаимодействовать с каждой группой приватно или на вашей странице Сеть.";
-$a->strings["Why Aren't My Posts Public?"] = "";
-$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "";
-$a->strings["Getting Help"] = "";
-$a->strings["Go to the Help Section"] = "";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Наши страницы <strong>помощи</strong> могут проконсультировать о подробностях и возможностях программы и ресурса.";
-$a->strings["Item not available."] = "Пункт не доступен.";
-$a->strings["Item was not found."] = "Пункт не был найден.";
-$a->strings["Group created."] = "Группа создана.";
-$a->strings["Could not create group."] = "Не удалось создать группу.";
-$a->strings["Group not found."] = "Группа не найдена.";
-$a->strings["Group name changed."] = "Название группы изменено.";
-$a->strings["Permission denied"] = "Доступ запрещен";
-$a->strings["Create a group of contacts/friends."] = "Создать группу контактов / друзей.";
-$a->strings["Group Name: "] = "Название группы: ";
-$a->strings["Group removed."] = "Группа удалена.";
-$a->strings["Unable to remove group."] = "Не удается удалить группу.";
-$a->strings["Group Editor"] = "Редактор групп";
-$a->strings["Members"] = "Участники";
-$a->strings["Click on a contact to add or remove."] = "Нажмите на контакт, чтобы добавить или удалить.";
-$a->strings["Invalid profile identifier."] = "Недопустимый идентификатор профиля.";
-$a->strings["Profile Visibility Editor"] = "Редактор видимости профиля";
-$a->strings["Visible To"] = "Видимый для";
-$a->strings["All Contacts (with secure profile access)"] = "Все контакты (с безопасным доступом к профилю)";
-$a->strings["No contacts."] = "Нет контактов.";
-$a->strings["View Contacts"] = "Просмотр контактов";
-$a->strings["Registration details for %s"] = "Подробности регистрации для %s";
-$a->strings["Registration successful. Please check your email for further instructions."] = "Регистрация успешна. Пожалуйста, проверьте свою электронную почту для получения дальнейших инструкций.";
-$a->strings["Failed to send email message. Here is the message that failed."] = "Невозможно отправить сообщение электронной почтой. Вот сообщение, которое не удалось.";
-$a->strings["Your registration can not be processed."] = "Ваша регистрация не может быть обработана.";
-$a->strings["Registration request at %s"] = "Запрос на регистрацию на %s";
-$a->strings["Your registration is pending approval by the site owner."] = "Ваша регистрация в ожидании одобрения владельцем сайта.";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Вы можете (по желанию), заполнить эту форму с помощью OpenID, поддерживая ваш OpenID и нажав клавишу \"Регистрация\".";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и заполните остальные элементы.";
-$a->strings["Your OpenID (optional): "] = "Ваш OpenID (необязательно):";
-$a->strings["Include your profile in member directory?"] = "Включить ваш профиль в каталог участников?";
-$a->strings["Membership on this site is by invitation only."] = "Членство на сайте только по приглашению.";
-$a->strings["Your invitation ID: "] = "ID вашего приглашения:";
-$a->strings["Registration"] = "Регистрация";
-$a->strings["Your Full Name (e.g. Joe Smith): "] = "Ваше полное имя (например, Joe Smith): ";
-$a->strings["Your Email Address: "] = "Ваш адрес электронной почты: ";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Выбор псевдонима профиля. Он должен начинаться с буквы. Адрес вашего профиля на данном сайте будет в этом случае '<strong>nickname@\$sitename</strong>'.";
-$a->strings["Choose a nickname: "] = "Выберите псевдоним: ";
-$a->strings["Register"] = "Регистрация";
-$a->strings["People Search"] = "Поиск людей";
-$a->strings["status"] = "статус";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s нравится %3\$s от %2\$s ";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s не нравится %3\$s от %2\$s ";
-$a->strings["Item not found."] = "Пункт не найден.";
-$a->strings["Access denied."] = "Доступ запрещен.";
-$a->strings["Photos"] = "Фото";
-$a->strings["Files"] = "";
-$a->strings["Account approved."] = "Аккаунт утвержден.";
-$a->strings["Registration revoked for %s"] = "Регистрация отменена для %s";
-$a->strings["Please login."] = "Пожалуйста, войдите с паролем.";
-$a->strings["Unable to locate original post."] = "Не удалось найти оригинальный пост.";
-$a->strings["Empty post discarded."] = "Пустое сообщение отбрасывается.";
-$a->strings["Wall Photos"] = "Фото стены";
-$a->strings["System error. Post not saved."] = "Системная ошибка. Сообщение не сохранено.";
-$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "";
-$a->strings["You may visit them online at %s"] = "Вы можете посетить их в онлайне на %s";
-$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения.";
-$a->strings["%s posted an update."] = "%s отправил/а/ обновление.";
-$a->strings["%1\$s is currently %2\$s"] = "";
-$a->strings["Mood"] = "";
-$a->strings["Set your current mood and tell your friends"] = "";
-$a->strings["Image uploaded but image cropping failed."] = "Изображение загружено, но обрезка изображения не удалась.";
-$a->strings["Image size reduction [%s] failed."] = "Уменьшение размера изображения [%s] не удалось.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "";
-$a->strings["Unable to process image"] = "Не удается обработать изображение";
-$a->strings["Image exceeds size limit of %d"] = "Изображение превышает предельный размер %d";
-$a->strings["Upload File:"] = "Загрузить файл:";
-$a->strings["Select a profile:"] = "";
-$a->strings["Upload"] = "Загрузить";
-$a->strings["skip this step"] = "пропустить этот шаг";
-$a->strings["select a photo from your photo albums"] = "выберите фото из ваших фотоальбомов";
-$a->strings["Crop Image"] = "Обрезать изображение";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Пожалуйста, настройте обрезку изображения для оптимального просмотра.";
-$a->strings["Done Editing"] = "Редактирование выполнено";
-$a->strings["Image uploaded successfully."] = "Изображение загружено успешно.";
-$a->strings["No profile"] = "Нет профиля";
-$a->strings["Remove My Account"] = "Удалить мой аккаунт";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит.";
-$a->strings["Please enter your password for verification:"] = "Пожалуйста, введите свой пароль для проверки:";
-$a->strings["New Message"] = "Новое сообщение";
-$a->strings["Unable to locate contact information."] = "Не удалось найти контактную информацию.";
-$a->strings["Message deleted."] = "Сообщение удалено.";
-$a->strings["Conversation removed."] = "Беседа удалена.";
-$a->strings["No messages."] = "Нет сообщений.";
-$a->strings["Unknown sender - %s"] = "";
-$a->strings["You and %s"] = "";
-$a->strings["%s and You"] = "%s и Вы";
-$a->strings["Delete conversation"] = "Удалить историю общения";
-$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
-$a->strings["%d message"] = array(
-	0 => "%d сообщение",
-	1 => "%d сообщений",
-	2 => "%d сообщений",
-);
-$a->strings["Message not available."] = "Сообщение не доступно.";
-$a->strings["Delete message"] = "Удалить сообщение";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "";
-$a->strings["Send Reply"] = "Отправить ответ";
-$a->strings["Friends of %s"] = "%s Друзья";
-$a->strings["No friends to display."] = "Нет друзей.";
-$a->strings["Theme settings updated."] = "";
+$a->strings["mcrypt PHP module"] = "mcrypt PHP модуль";
+$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite модуль";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "";
+$a->strings["proc_open"] = "proc_open";
+$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "";
+$a->strings["Error: libCURL PHP module required but not installed."] = "";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "";
+$a->strings["Error: openssl PHP module required but not installed."] = "";
+$a->strings["Error: mysqli PHP module required but not installed."] = "";
+$a->strings["Error: mb_string PHP module required but not installed."] = "";
+$a->strings["Error: mcrypt PHP module required but not installed."] = "";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\ in the top folder of your web server and it is unable to do so."] = "";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php доступен для записи";
+$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/tpl/smarty3/ under the Red top level folder."] = "";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "";
+$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."] = "";
+$a->strings["view/tpl/smarty3 is writable"] = "view/tpl/smarty3 доступен для записи";
+$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"] = "";
+$a->strings["store is writable"] = "";
+$a->strings["SSL certificate validation"] = "проверка сертификата SSL";
+$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
+$a->strings["Url rewrite is working"] = "Url rewrite работает";
+$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "";
+$a->strings["Errors encountered creating database tables."] = "";
+$a->strings["<h1>What next</h1>"] = "<h1>Что дальше</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "";
+$a->strings["Edit post"] = "Редактировать сообщение";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s следит %2\$s's %3\$s";
+$a->strings["[Embedded content - reload page to view]"] = "";
+$a->strings["toggle full screen mode"] = "переключение полноэкранного режима";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "";
+$a->strings["Public access denied."] = "Общественный доступ запрещен.";
+$a->strings["No connections."] = "Никаких связей.";
+$a->strings["Visit %s's profile [%s]"] = "Посетить %s's ​​профиль [%s]";
+$a->strings["View Connnections"] = "Просмотр контактов";
+$a->strings["Tag removed"] = "Тег удален";
+$a->strings["Remove Item Tag"] = "Удалить Тег";
+$a->strings["Select a tag to remove: "] = "Выбрать тег для удаления: ";
+$a->strings["Remove"] = "Удалить";
+$a->strings["Continue"] = "";
+$a->strings["Premium Channel Setup"] = "";
+$a->strings["Enable premium channel connection restrictions"] = "";
+$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "";
+$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "";
+$a->strings["Potential connections will then see the following text before proceeding:"] = "";
+$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "";
+$a->strings["(No specific instructions have been provided by the channel owner.)"] = "";
+$a->strings["Restricted or Premium Channel"] = "";
+$a->strings["No potential page delegates located."] = "";
+$a->strings["Delegate Page Management"] = "";
+$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "";
+$a->strings["Existing Page Managers"] = "";
+$a->strings["Existing Page Delegates"] = "";
+$a->strings["Potential Delegates"] = "";
+$a->strings["Add"] = "Добавить";
+$a->strings["No entries."] = "Нет записей.";
+$a->strings["Failed to create source. No channel selected."] = "";
+$a->strings["Source created."] = "";
+$a->strings["Source updated."] = "";
+$a->strings["Manage remote sources of content for your channel."] = "";
+$a->strings["New Source"] = "";
+$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "";
+$a->strings["Only import content with these words (one per line)"] = "";
+$a->strings["Leave blank to import all public content"] = "";
+$a->strings["Channel Name"] = "Имя канала";
+$a->strings["Source not found."] = "";
+$a->strings["Edit Source"] = "";
+$a->strings["Delete Source"] = "";
+$a->strings["Source removed"] = "";
+$a->strings["Unable to remove source."] = "";
+$a->strings["Theme settings updated."] = "Настройки темы обновленны.";
 $a->strings["Site"] = "Сайт";
 $a->strings["Users"] = "Пользователи";
 $a->strings["Plugins"] = "Плагины";
-$a->strings["Themes"] = "";
-$a->strings["DB updates"] = "";
+$a->strings["Themes"] = "Темы";
+$a->strings["Server"] = "Сервер";
+$a->strings["DB updates"] = "Обновления базы данных";
 $a->strings["Logs"] = "Журналы";
-$a->strings["Admin"] = "Администратор";
-$a->strings["Plugin Features"] = "";
-$a->strings["User registrations waiting for confirmation"] = "Регистрации пользователей, ожидающие подтверждения";
-$a->strings["Normal Account"] = "Обычный аккаунт";
-$a->strings["Soapbox Account"] = "Аккаунт Витрина";
-$a->strings["Community/Celebrity Account"] = "Аккаунт Сообщество / Знаменитость";
-$a->strings["Automatic Friend Account"] = "\"Автоматический друг\" Аккаунт";
-$a->strings["Blog Account"] = "";
-$a->strings["Private Forum"] = "";
-$a->strings["Message queues"] = "";
+$a->strings["Plugin Features"] = "Функции плагинов";
+$a->strings["User registrations waiting for confirmation"] = "Регистрации пользователей, которые ждут подтверждения";
+$a->strings["Message queues"] = "Очередь недоставленных сообщений";
 $a->strings["Administration"] = "Администрация";
 $a->strings["Summary"] = "Резюме";
-$a->strings["Registered users"] = "Зарегистрированные пользователи";
-$a->strings["Pending registrations"] = "Ожидающие регистрации";
-$a->strings["Version"] = "Версия";
+$a->strings["Registered users"] = "Всего пользователeй";
+$a->strings["Pending registrations"] = "Ждут утверждения";
+$a->strings["Version"] = "Версия системы";
 $a->strings["Active plugins"] = "Активные плагины";
-$a->strings["Site settings updated."] = "Установки сайта обновлены.";
-$a->strings["Closed"] = "Закрыто";
-$a->strings["Requires approval"] = "Требуется подтверждение";
-$a->strings["Open"] = "Открыто";
-$a->strings["No SSL policy, links will track page SSL state"] = "";
-$a->strings["Force all links to use SSL"] = "Заставить все ссылки использовать SSL";
-$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "";
-$a->strings["File upload"] = "Загрузка файлов";
-$a->strings["Policies"] = "Политики";
-$a->strings["Advanced"] = "Расширенный";
+$a->strings["Site settings updated."] = "Настройки сайта обновлены.";
+$a->strings["No special theme for mobile devices"] = "Нет специальной темы для мобильных устройств";
+$a->strings["No special theme for accessibility"] = "";
+$a->strings["Closed"] = "Регистрация закрыта";
+$a->strings["Requires approval"] = "Регистрация требует подтверждения";
+$a->strings["Open"] = "Регистрация открыта";
+$a->strings["Private"] = "Личный доступ";
+$a->strings["Paid Access"] = "Платный доступ";
+$a->strings["Free Access"] = "Свободный доступ";
+$a->strings["Tiered Access"] = "";
+$a->strings["Registration"] = "Регистрация";
+$a->strings["File upload"] = "Загрузка файла";
+$a->strings["Policies"] = "Правила";
+$a->strings["Advanced"] = "Дополнительно";
 $a->strings["Site name"] = "Название сайта";
-$a->strings["Banner/Logo"] = "Баннер/Логотип";
-$a->strings["System language"] = "Системный язык";
-$a->strings["System theme"] = "Системная тема";
+$a->strings["Banner/Logo"] = "Баннер / логотип";
+$a->strings["System language"] = "Язык системы";
+$a->strings["System theme"] = "Тема системы";
 $a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
-$a->strings["Mobile system theme"] = "";
-$a->strings["Theme for mobile devices"] = "";
-$a->strings["SSL link policy"] = "";
-$a->strings["Determines whether generated links should be forced to use SSL"] = "Ссылки должны быть вынуждены использовать SSL";
-$a->strings["Maximum image size"] = "Максимальный размер изображения";
+$a->strings["Mobile system theme"] = "Мобильная тема системы";
+$a->strings["Theme for mobile devices"] = "Тема для мобильных устройств";
+$a->strings["Accessibility system theme"] = "";
+$a->strings["Accessibility theme"] = "";
+$a->strings["Channel to use for this website's static pages"] = "";
+$a->strings["Site Channel"] = "Канал сайта";
+$a->strings["Maximum image size"] = "Максимальный размер";
 $a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "";
-$a->strings["Maximum image length"] = "";
-$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "";
-$a->strings["JPEG image quality"] = "";
-$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "";
-$a->strings["Register policy"] = "Политика регистрация";
+$a->strings["Register policy"] = "Статус регистрации";
+$a->strings["Access policy"] = "Правила доступа";
 $a->strings["Register text"] = "Текст регистрации";
 $a->strings["Will be displayed prominently on the registration page."] = "";
-$a->strings["Accounts abandoned after x days"] = "Аккаунт считается после x дней не воспользованным";
+$a->strings["Accounts abandoned after x days"] = "";
 $a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "";
-$a->strings["Allowed friend domains"] = "Разрешенные домены друзей";
+$a->strings["Allowed friend domains"] = "";
 $a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "";
-$a->strings["Allowed email domains"] = "Разрешенные почтовые домены";
+$a->strings["Allowed email domains"] = "";
 $a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "";
-$a->strings["Block public"] = "Блокировать общественный доступ";
+$a->strings["Block public"] = "Блокировать публичный доступ";
 $a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "";
-$a->strings["Force publish"] = "Принудительная публикация";
+$a->strings["Force publish"] = "Заставить публиковать";
 $a->strings["Check to force all profiles on this site to be listed in the site directory."] = "";
-$a->strings["Global directory update URL"] = "URL обновления глобального каталога";
-$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "";
-$a->strings["Allow threaded items"] = "";
-$a->strings["Allow infinite level threading for items on this site."] = "";
-$a->strings["Private posts by default for new users"] = "";
-$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "";
-$a->strings["Block multiple registrations"] = "Блокировать множественные регистрации";
-$a->strings["Disallow users to register additional accounts for use as pages."] = "Запретить пользователям регистрировать дополнительные аккаунты для использования в качестве страниц.";
-$a->strings["OpenID support"] = "Поддержка OpenID";
-$a->strings["OpenID support for registration and logins."] = "";
-$a->strings["Fullname check"] = "Проверка полного имени";
-$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "";
-$a->strings["UTF-8 Regular expressions"] = "UTF-8 регулярные выражения";
-$a->strings["Use PHP UTF8 regular expressions"] = "";
-$a->strings["Show Community Page"] = "Показать страницу сообщества";
-$a->strings["Display a Community page showing all recent public postings on this site."] = "Показывать страницу сообщества с указанием всех последних публичных сообщений на этом сайте.";
-$a->strings["Enable OStatus support"] = "Включить поддержку OStatus";
-$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "";
-$a->strings["Enable Diaspora support"] = "Включить поддержку Diaspora";
-$a->strings["Provide built-in Diaspora network compatibility."] = "";
-$a->strings["Only allow Friendica contacts"] = "Позвольть только  Friendica контакты";
-$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Все контакты должны использовать только Friendica протоколы. Все другие встроенные коммуникационные протоколы отключены.";
-$a->strings["Verify SSL"] = "Проверка SSL";
-$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "";
-$a->strings["Proxy user"] = "Прокси пользователь";
-$a->strings["Proxy URL"] = "Прокси URL";
-$a->strings["Network timeout"] = "Тайм-аут сети";
+$a->strings["No login on Homepage"] = "";
+$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "";
+$a->strings["Proxy user"] = "Proxy пользователь";
+$a->strings["Proxy URL"] = "Proxy URL";
+$a->strings["Network timeout"] = "Время ожидания сети";
 $a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "";
-$a->strings["Delivery interval"] = "";
+$a->strings["Delivery interval"] = "Интервал доставки";
 $a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "";
-$a->strings["Poll interval"] = "";
+$a->strings["Poll interval"] = "Интервал опроса";
 $a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "";
 $a->strings["Maximum Load Average"] = "";
 $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "";
+$a->strings["No server found"] = "Сервер не найден";
+$a->strings["ID"] = "ID";
+$a->strings["for channel"] = "";
+$a->strings["on server"] = "";
+$a->strings["Status"] = "Статус";
 $a->strings["Update has been marked successful"] = "";
 $a->strings["Executing %s failed. Check system logs."] = "";
 $a->strings["Update %s was successfully applied."] = "";
 $a->strings["Update %s did not return a status. Unknown if it succeeded."] = "";
 $a->strings["Update function %s could not be found."] = "";
-$a->strings["No failed updates."] = "";
-$a->strings["Failed Updates"] = "";
-$a->strings["This does not include updates prior to 1139, which did not return a status."] = "";
+$a->strings["No failed updates."] = "Ошибок обновлений нет.";
+$a->strings["Failed Updates"] = "Обновления с ошибками";
 $a->strings["Mark success (if update was manually applied)"] = "";
 $a->strings["Attempt to execute this update step automatically"] = "";
 $a->strings["%s user blocked/unblocked"] = array(
@@ -859,1161 +1094,603 @@ $a->strings["%s user blocked/unblocked"] = array(
 	2 => "",
 );
 $a->strings["%s user deleted"] = array(
-	0 => "%s человек удален",
-	1 => "%s чел. удалено",
-	2 => "%s чел. удалено",
+	0 => "%s канал удален",
+	1 => "%s канала удалены",
+	2 => "%s каналов удалено",
 );
+$a->strings["Account not found"] = "Аккаунт не найден";
 $a->strings["User '%s' deleted"] = "Пользователь '%s' удален";
-$a->strings["User '%s' unblocked"] = "Пользователь '%s' разблокирован";
-$a->strings["User '%s' blocked"] = "Пользователь '%s' блокирован";
+$a->strings["User '%s' unblocked"] = "Пользователь '%s' разрешен";
+$a->strings["User '%s' blocked"] = "Пользователь '%s' заблокирован";
 $a->strings["select all"] = "выбрать все";
-$a->strings["User registrations waiting for confirm"] = "Регистрации пользователей, ожидающие подтверждения";
-$a->strings["Request date"] = "Запрос даты";
-$a->strings["Email"] = "Эл. почта";
-$a->strings["No registrations."] = "Нет регистраций.";
-$a->strings["Deny"] = "Отклонить";
-$a->strings["Site admin"] = "";
+$a->strings["User registrations waiting for confirm"] = "Регистрации пользователей ждут подтверждения";
+$a->strings["Request date"] = "Дата запроса";
+$a->strings["Name"] = "Имя";
+$a->strings["No registrations."] = "Новых регистраций пока нет.";
+$a->strings["Approve"] = "Утвердить";
+$a->strings["Deny"] = "Запретить";
 $a->strings["Register date"] = "Дата регистрации";
 $a->strings["Last login"] = "Последний вход";
-$a->strings["Last item"] = "Последний пункт";
-$a->strings["Account"] = "Аккаунт";
-$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?";
-$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Пользователь {0} будет удален!\\n\\nВсе, что этот пользователь написал на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?";
+$a->strings["Expires"] = "";
+$a->strings["Service Class"] = "Класс службы";
+$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
+$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
 $a->strings["Plugin %s disabled."] = "Плагин %s отключен.";
 $a->strings["Plugin %s enabled."] = "Плагин %s включен.";
-$a->strings["Disable"] = "Отключить";
-$a->strings["Enable"] = "Включить";
+$a->strings["Disable"] = "Запретить";
+$a->strings["Enable"] = "Разрешить";
 $a->strings["Toggle"] = "Переключить";
-$a->strings["Author: "] = "Автор:";
-$a->strings["Maintainer: "] = "";
-$a->strings["No themes found."] = "";
+$a->strings["Author: "] = "Автор: ";
+$a->strings["Maintainer: "] = "Обслуживающий: ";
+$a->strings["No themes found."] = "Темы не найдены.";
 $a->strings["Screenshot"] = "Скриншот";
-$a->strings["[Experimental]"] = "[экспериментально]";
-$a->strings["[Unsupported]"] = "[Неподдерживаемое]";
-$a->strings["Log settings updated."] = "Настройки журнала обновлены.";
+$a->strings["[Experimental]"] = "[экспериментальный]";
+$a->strings["[Unsupported]"] = "[неподдерживаемый]";
+$a->strings["Log settings updated."] = "Настройки журнала обновленны.";
 $a->strings["Clear"] = "Очистить";
-$a->strings["Debugging"] = "Отладка";
-$a->strings["Log file"] = "Лог-файл";
-$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "";
-$a->strings["Log level"] = "Уровень лога";
-$a->strings["Close"] = "Закрыть";
-$a->strings["FTP Host"] = "FTP хост";
-$a->strings["FTP Path"] = "Путь FTP";
-$a->strings["FTP User"] = "FTP пользователь";
-$a->strings["FTP Password"] = "FTP пароль";
-$a->strings["Requested profile is not available."] = "Запрашиваемый профиль недоступен.";
-$a->strings["Access to this profile has been restricted."] = "Доступ к этому профилю ограничен.";
-$a->strings["Tips for New Members"] = "Советы для новых участников";
-$a->strings["{0} wants to be your friend"] = "{0} хочет стать Вашим другом";
-$a->strings["{0} sent you a message"] = "{0} отправил Вам сообщение";
-$a->strings["{0} requested registration"] = "{0} требуемая регистрация";
-$a->strings["{0} commented %s's post"] = "{0} прокомментировал сообщение от %s";
-$a->strings["{0} liked %s's post"] = "{0} нравится сообщение от %s";
-$a->strings["{0} disliked %s's post"] = "{0} не нравится сообщение от %s";
-$a->strings["{0} is now friends with %s"] = "{0} теперь друзья с %s";
-$a->strings["{0} posted"] = "{0} опубликовано";
-$a->strings["{0} tagged %s's post with #%s"] = "{0} пометил сообщение %s с #%s";
-$a->strings["{0} mentioned you in a post"] = "{0} упоменул Вас в сообщение";
-$a->strings["Contacts who are not members of a group"] = "";
-$a->strings["OpenID protocol error. No ID returned."] = "";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Аккаунт не найден и OpenID регистрация не допускается на этом сайте.";
-$a->strings["Login failed."] = "Войти не удалось.";
-$a->strings["Contact added"] = "";
-$a->strings["Common Friends"] = "Общие друзья";
-$a->strings["No contacts in common."] = "";
-$a->strings["link"] = "";
-$a->strings["Item has been removed."] = "Пункт был удален.";
-$a->strings["Applications"] = "Приложения";
-$a->strings["No installed applications."] = "Нет установленных приложений.";
-$a->strings["Search"] = "Поиск";
+$a->strings["Debugging"] = "Включить/Выключить";
+$a->strings["Log file"] = "Файл журнала";
+$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Должна быть доступна для записи веб-сервером. Относительно верхнего уровня веб-сайта.";
+$a->strings["Log level"] = "Уровень журнала";
+$a->strings["Menu not found."] = "Меню не найдено.";
+$a->strings["Menu element updated."] = "Меню обновлено.";
+$a->strings["Unable to update menu element."] = "";
+$a->strings["Menu element added."] = "Элемент меню добавлен.";
+$a->strings["Unable to add menu element."] = "";
+$a->strings["Not found."] = "Не найдено.";
+$a->strings["Manage Menu Elements"] = "";
+$a->strings["Edit menu"] = "Редактировать меню";
+$a->strings["Edit element"] = "Редактировать элемент";
+$a->strings["Drop element"] = "Удалить элемент";
+$a->strings["New element"] = "Новый элемент";
+$a->strings["Edit this menu container"] = "";
+$a->strings["Add menu element"] = "Добавить элемент меню";
+$a->strings["Delete this menu item"] = "";
+$a->strings["Edit this menu item"] = "";
+$a->strings["New Menu Element"] = "Новый элемент меню";
+$a->strings["Menu Item Permissions"] = "";
+$a->strings["(click to open/close)"] = "(нажмите, чтобы открыть / закрыть)";
+$a->strings["Link text"] = "Текст ссылки";
+$a->strings["URL of link"] = "";
+$a->strings["Use Red magic-auth if available"] = "";
+$a->strings["Open link in new window"] = "";
+$a->strings["Order in list"] = "";
+$a->strings["Higher numbers will sink to bottom of listing"] = "";
+$a->strings["Create"] = "Создать";
+$a->strings["Menu item not found."] = "Элемент меню не найден.";
+$a->strings["Menu item deleted."] = "";
+$a->strings["Menu item could not be deleted."] = "";
+$a->strings["Edit Menu Element"] = "Редактировать элемент меню";
+$a->strings["Modify"] = "";
+$a->strings["Collection created."] = "Коллекция создана.";
+$a->strings["Could not create collection."] = "Не удалось создать коллекцию.";
+$a->strings["Collection updated."] = "";
+$a->strings["Create a collection of channels."] = "Создать коллекцию контактов";
+$a->strings["Collection Name: "] = "Название коллекции:";
+$a->strings["Members are visible to other channels"] = "";
+$a->strings["Collection removed."] = "Коллекция удалена.";
+$a->strings["Unable to remove collection."] = "Невозможно удалить коллекцию.";
+$a->strings["Collection Editor"] = "Редактор коллекций";
+$a->strings["Members"] = "Участники";
+$a->strings["All Connected Channels"] = "Все подключенные контакы";
+$a->strings["Click on a channel to add or remove."] = "";
+$a->strings["Page owner information could not be retrieved."] = "";
+$a->strings["Album not found."] = "Альбом не найден.";
+$a->strings["Delete Album"] = "Удалить альбом";
+$a->strings["Delete Photo"] = "Удалить фотографию";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s добавил тег в %2\$s на %3\$s";
+$a->strings["a photo"] = "фотография";
+$a->strings["No photos selected"] = "Никакие фотографии не выбраны";
+$a->strings["Access to this item is restricted."] = "Доступ к этому элементу ограничен.";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "";
+$a->strings["You have used %1$.2f Mbytes of photo storage."] = "";
+$a->strings["Upload Photos"] = "Загрузить фотографии";
+$a->strings["New album name: "] = "Название нового альбома:";
+$a->strings["or existing album name: "] = "или существующий альбом:";
+$a->strings["Do not show a status post for this upload"] = "";
+$a->strings["Permissions"] = "Разрешения";
+$a->strings["Contact Photos"] = "Фотографии контакта";
+$a->strings["Edit Album"] = "Редактировать Фотоальбом";
+$a->strings["Show Newest First"] = "Показать новые первыми";
+$a->strings["Show Oldest First"] = "Показать старые первыми";
+$a->strings["View Photo"] = "Посмотреть фотографию";
+$a->strings["Permission denied. Access to this item may be restricted."] = "";
+$a->strings["Photo not available"] = "Фотография не доступна";
+$a->strings["Use as profile photo"] = "Использовать в качестве фотографии профиля";
+$a->strings["View Full Size"] = "Посмотреть в полный размер";
+$a->strings["Edit photo"] = "Редактировать фотографию";
+$a->strings["Rotate CW (right)"] = "Повернуть CW (направо)";
+$a->strings["Rotate CCW (left)"] = "Повернуть CCW (налево)";
+$a->strings["New album name"] = "Новое название альбома:";
+$a->strings["Caption"] = "Подпись";
+$a->strings["Add a Tag"] = "Добавить тег";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Например: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
+$a->strings["View Album"] = "Посмотреть фотоальбом";
+$a->strings["Recent Photos"] = "Последние фотографии";
+$a->strings["- select -"] = "- выбрать -";
+$a->strings["Menu updated."] = "Меню обновлено.";
+$a->strings["Unable to update menu."] = "Невозможно обновление меню.";
+$a->strings["Menu created."] = "Меню создано.";
+$a->strings["Unable to create menu."] = "Невозможно создать меню.";
+$a->strings["Manage Menus"] = "Управление меню";
+$a->strings["Drop"] = "Удалить";
+$a->strings["Create a new menu"] = "Создать новое меню";
+$a->strings["Delete this menu"] = "Удалить это меню";
+$a->strings["Edit menu contents"] = "Редактировать содержание меню";
+$a->strings["Edit this menu"] = "Редактировать это меню";
+$a->strings["New Menu"] = "Новое меню";
+$a->strings["Menu name"] = "Название меню";
+$a->strings["Must be unique, only seen by you"] = "";
+$a->strings["Menu title"] = "Название меню";
+$a->strings["Menu title as seen by others"] = "";
+$a->strings["Menu deleted."] = "Меню удалено.";
+$a->strings["Menu could not be deleted."] = "";
+$a->strings["Edit Menu"] = "Редактировать меню";
+$a->strings["Add or remove entries to this menu"] = "";
+$a->strings["Welcome to %s"] = "Добро пожаловать в %s";
+$a->strings["Age: "] = "Возраст:";
+$a->strings["Gender: "] = "Пол:";
+$a->strings["Finding:"] = "Поиск:";
+$a->strings["next page"] = "следующая страница";
+$a->strings["previous page"] = "предыдущая страница";
+$a->strings["No entries (some entries may be hidden)."] = "";
+$a->strings["Blocked"] = "Заблокированные";
+$a->strings["Ignored"] = "Игнорируемые";
+$a->strings["Hidden"] = "Скрытые";
+$a->strings["Archived"] = "Зархивированные";
+$a->strings["All"] = "Все";
+$a->strings["Suggest new connections"] = "Предлагать новые контакты";
+$a->strings["Show pending (new) connections"] = "Просмотр (новых) ждущих контактов";
+$a->strings["All Connections"] = "Все контакты";
+$a->strings["Show all connections"] = "Просмотр всех контактов";
+$a->strings["Unblocked"] = "Разрешенные";
+$a->strings["Only show unblocked connections"] = "Показать только разрешенные контакты";
+$a->strings["Only show blocked connections"] = "Показать только заблокированные контакты";
+$a->strings["Only show ignored connections"] = "Показать только проигнорированные контакты";
+$a->strings["Only show archived connections"] = "Показать только архивированные контакты";
+$a->strings["Only show hidden connections"] = "Показать только скрытые контакты";
+$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]";
+$a->strings["Edit contact"] = "Редактировать контакт";
+$a->strings["Search your connections"] = "Поиск ваших связей";
+$a->strings["Finding: "] = "Поиск:";
+$a->strings["Layout Help"] = "";
+$a->strings["Help with this feature"] = "";
+$a->strings["Layout Name"] = "";
+$a->strings["Help:"] = "Помощь:";
+$a->strings["Not Found"] = "Не найдено";
+$a->strings["Remote Authentication"] = "Удаленная аутентификация";
+$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Введите адрес вашего канала (например: channel@example.com)";
+$a->strings["Authenticate"] = "Проверка подлинности";
+$a->strings["No such group"] = "Нет такой группы";
+$a->strings["Search Results For:"] = "Результаты поиска для:";
+$a->strings["Collection is empty"] = "Коллекция пуста";
+$a->strings["Collection: "] = "Коллекции: ";
+$a->strings["Connection: "] = "Контакты: ";
+$a->strings["Invalid connection."] = "";
+$a->strings["Channel added."] = "Контакт добавлен.";
+$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "";
+$a->strings["Welcome %s. Remote authentication successful."] = "";
+$a->strings["This site is not a directory server"] = "Этот сайт не является сервером каталога";
+$a->strings["Remote privacy information not available."] = "";
+$a->strings["Visible to:"] = "Кому видно:";
+$a->strings["Hub not found."] = "Hub не найден.";
 $a->strings["Profile not found."] = "Профиль не найден.";
-$a->strings["Profile Name is required."] = "Необходимо имя профиля.";
-$a->strings["Marital Status"] = "";
-$a->strings["Romantic Partner"] = "";
-$a->strings["Likes"] = "";
-$a->strings["Dislikes"] = "";
-$a->strings["Work/Employment"] = "";
-$a->strings["Religion"] = "";
-$a->strings["Political Views"] = "";
-$a->strings["Gender"] = "";
-$a->strings["Sexual Preference"] = "";
-$a->strings["Homepage"] = "";
-$a->strings["Interests"] = "";
-$a->strings["Address"] = "";
-$a->strings["Location"] = "";
-$a->strings["Profile updated."] = "Профиль обновлен.";
-$a->strings[" and "] = "";
-$a->strings["public profile"] = "";
-$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "";
-$a->strings[" - Visit %1\$s's %2\$s"] = "";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "";
 $a->strings["Profile deleted."] = "Профиль удален.";
 $a->strings["Profile-"] = "Профиль-";
 $a->strings["New profile created."] = "Новый профиль создан.";
 $a->strings["Profile unavailable to clone."] = "Профиль недоступен для клонирования.";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Скрывать ваш список контактов / друзей от посетителей этого профиля?";
-$a->strings["Edit Profile Details"] = "Редактировать детали профиля";
-$a->strings["View this profile"] = "Просмотреть этот профиль";
-$a->strings["Create a new profile using these settings"] = "Создать новый профиль, используя эти настройки";
+$a->strings["Profile Name is required."] = "Имя профиля требуется.";
+$a->strings["Marital Status"] = "Семейное положение";
+$a->strings["Romantic Partner"] = "Романтический партнер";
+$a->strings["Likes"] = "мне нравиться";
+$a->strings["Dislikes"] = "мне не-нравиться";
+$a->strings["Work/Employment"] = "Работа / Занятость";
+$a->strings["Religion"] = "Религия";
+$a->strings["Political Views"] = "Политические взгляды";
+$a->strings["Gender"] = "Пол";
+$a->strings["Sexual Preference"] = "Сексуальная ориентация";
+$a->strings["Homepage"] = "Домашняя страница";
+$a->strings["Interests"] = "Интересы";
+$a->strings["Address"] = "Адрес";
+$a->strings["Location"] = "Место";
+$a->strings["Profile updated."] = "Профиль обновлен.";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "";
+$a->strings["Edit Profile Details"] = "Редактирование профиля";
+$a->strings["View this profile"] = "Посмотреть этот профиль";
+$a->strings["Change Profile Photo"] = "Изменить фотографию профиля";
+$a->strings["Create a new profile using these settings"] = "Создайте новый профиль со следующими настройками";
 $a->strings["Clone this profile"] = "Клонировать этот профиль";
 $a->strings["Delete this profile"] = "Удалить этот профиль";
 $a->strings["Profile Name:"] = "Имя профиля:";
 $a->strings["Your Full Name:"] = "Ваше полное имя:";
-$a->strings["Title/Description:"] = "Заголовок / Описание:";
+$a->strings["Title/Description:"] = "Название / Описание:";
 $a->strings["Your Gender:"] = "Ваш пол:";
-$a->strings["Birthday (%s):"] = "День рождения (%s):";
-$a->strings["Street Address:"] = "Адрес:";
-$a->strings["Locality/City:"] = "Город / Населенный пункт:";
+$a->strings["Birthday (%s):"] = "Ваш День Рождения (%s):";
+$a->strings["Street Address:"] = "Улица:";
+$a->strings["Locality/City:"] = "Населенный пункт / город:";
 $a->strings["Postal/Zip Code:"] = "Почтовый индекс:";
 $a->strings["Country:"] = "Страна:";
-$a->strings["Region/State:"] = "Район / Область:";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Семейное положение:";
-$a->strings["Who: (if applicable)"] = "Кто: (если требуется)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Примеры: cathy123, Кэти Уильямс, cathy@example.com";
-$a->strings["Since [date]:"] = "";
-$a->strings["Sexual Preference:"] = "Сексуальные предпочтения:";
-$a->strings["Homepage URL:"] = "Адрес домашней странички:";
-$a->strings["Hometown:"] = "";
-$a->strings["Political Views:"] = "Политические взгляды:";
+$a->strings["Region/State:"] = "Регион / Область:";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "";
+$a->strings["Who: (if applicable)"] = "Кто: (если это применимо)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "";
+$a->strings["Since [date]:"] = "С тех пор [date]:";
+$a->strings["Homepage URL:"] = "URL-адрес домашней страницы:";
 $a->strings["Religious Views:"] = "Религиозные взгляды:";
-$a->strings["Public Keywords:"] = "Общественные ключевые слова:";
-$a->strings["Private Keywords:"] = "Личные ключевые слова:";
-$a->strings["Likes:"] = "";
-$a->strings["Dislikes:"] = "";
-$a->strings["Example: fishing photography software"] = "Пример: рыбалка фотографии программное обеспечение";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Используется для предложения потенциальным друзьям, могут увидеть другие)";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(Используется для поиска профилей, никогда не показывается другим)";
+$a->strings["Keywords:"] = "Ключевые слова:";
+$a->strings["Example: fishing photography software"] = "Пример: fishing photography software";
+$a->strings["Used in directory listings"] = "";
 $a->strings["Tell us about yourself..."] = "Расскажите нам о себе ...";
-$a->strings["Hobbies/Interests"] = "Хобби / Интересы";
-$a->strings["Contact information and Social Networks"] = "Контактная информация и социальные сети";
+$a->strings["Hobbies/Interests"] = "Хобби / интересы";
+$a->strings["Contact information and Social Networks"] = "Информация и социальные сети контакта";
+$a->strings["My other channels"] = "Мои другие контакты";
 $a->strings["Musical interests"] = "Музыкальные интересы";
 $a->strings["Books, literature"] = "Книги, литература";
 $a->strings["Television"] = "Телевидение";
 $a->strings["Film/dance/culture/entertainment"] = "Кино / танцы / культура / развлечения";
-$a->strings["Love/romance"] = "Любовь / романтика";
-$a->strings["Work/employment"] = "Работа / занятость";
+$a->strings["Love/romance"] = "Любовь / Романс";
+$a->strings["Work/employment"] = "Работа / Занятость";
 $a->strings["School/education"] = "Школа / образование";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Это ваш <strong>публичный</strong> профиль. <br /> Он <strong>может</strong> быть виден каждому, используя Интернет.";
-$a->strings["Age: "] = "Возраст: ";
-$a->strings["Edit/Manage Profiles"] = "Редактировать профиль";
-$a->strings["Change profile photo"] = "Изменить фото профиля";
-$a->strings["Create New Profile"] = "Создать новый профиль";
-$a->strings["Profile Image"] = "Фото профиля";
-$a->strings["visible to everybody"] = "видимый всем";
-$a->strings["Edit visibility"] = "Редактировать видимость";
-$a->strings["Save to Folder:"] = "Сохранить в папку:";
-$a->strings["- select -"] = "";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s tagged %2\$s's %3\$s в %4\$s";
-$a->strings["No potential page delegates located."] = "";
-$a->strings["Delegate Page Management"] = "Делегировать управление страницей";
-$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "";
-$a->strings["Existing Page Managers"] = "Существующие менеджеры страницы";
-$a->strings["Existing Page Delegates"] = "Существующие уполномоченные страницы";
-$a->strings["Potential Delegates"] = "";
-$a->strings["Add"] = "Добавить";
-$a->strings["No entries."] = "Нет записей.";
-$a->strings["Source (bbcode) text:"] = "";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "";
-$a->strings["Source input: "] = "";
-$a->strings["bb2html: "] = "";
-$a->strings["bb2html2bb: "] = "";
-$a->strings["bb2md: "] = "";
-$a->strings["bb2md2html: "] = "";
-$a->strings["bb2dia2bb: "] = "";
-$a->strings["bb2md2html2bb: "] = "";
-$a->strings["Source input (Diaspora format): "] = "";
-$a->strings["diaspora2bb: "] = "";
-$a->strings["Friend Suggestions"] = "Предложения друзей";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "";
-$a->strings["Ignore/Hide"] = "Проигнорировать/Скрыть";
-$a->strings["Global Directory"] = "Глобальный каталог";
-$a->strings["Find on this site"] = "Найти на этом сайте";
-$a->strings["Site Directory"] = "Каталог сайта";
-$a->strings["Gender: "] = "Пол: ";
-$a->strings["Gender:"] = "Пол:";
-$a->strings["Status:"] = "Статус:";
-$a->strings["Homepage:"] = "Домашняя страничка:";
-$a->strings["About:"] = "О себе:";
-$a->strings["No entries (some entries may be hidden)."] = "Нет записей (некоторые записи могут быть скрыты).";
-$a->strings["%s : Not a valid email address."] = "%s: Неверный адрес электронной почты.";
-$a->strings["Please join us on Friendica"] = "";
-$a->strings["%s : Message delivery failed."] = "%s: Доставка сообщения не удалась.";
-$a->strings["%d message sent."] = array(
-	0 => "%d сообщение отправлено.",
-	1 => "%d сообщений отправлено.",
-	2 => "%d сообщений отправлено.",
-);
-$a->strings["You have no more invitations available"] = "У вас нет больше приглашений";
-$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "";
-$a->strings["Send invitations"] = "Отправить приглашения";
-$a->strings["Enter email addresses, one per line:"] = "Введите адреса электронной почты, по одному в строке:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Вам нужно будет предоставить этот код приглашения: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "";
-$a->strings["Response from remote site was not understood."] = "Ответ от удаленного сайта не был понят.";
-$a->strings["Unexpected response from remote site: "] = "Неожиданный ответ от удаленного сайта: ";
-$a->strings["Confirmation completed successfully."] = "Подтверждение успешно завершено.";
-$a->strings["Remote site reported: "] = "Удаленный сайт сообщил: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Временные неудачи. Подождите и попробуйте еще раз.";
-$a->strings["Introduction failed or was revoked."] = "Запрос ошибочен или был отозван.";
-$a->strings["Unable to set contact photo."] = "Не удается установить фото контакта.";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s и %2\$s теперь друзья";
-$a->strings["No user record found for '%s' "] = "Не найдено записи пользователя для '%s' ";
-$a->strings["Our site encryption key is apparently messed up."] = "Наш ключ шифрования сайта, по-видимому, перепутался.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Был предоставлен пустой URL сайта ​​или URL не может быть расшифрован нами.";
-$a->strings["Contact record was not found for you on our site."] = "Запись контакта не найдена для вас на нашем сайте.";
-$a->strings["Site public key not available in contact record for URL %s."] = "";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "ID, предложенный вашей системой, является дубликатом в нашей системе. Он должен работать, если вы повторите попытку.";
-$a->strings["Unable to set your contact credentials on our system."] = "Не удалось установить ваши учетные данные контакта в нашей системе.";
-$a->strings["Unable to update your contact profile details on our system"] = "Не удается обновить ваши контактные детали профиля в нашей системе";
-$a->strings["Connection accepted at %s"] = "Подключение принято в %s";
-$a->strings["%1\$s has joined %2\$s"] = "";
-$a->strings["Google+ Import Settings"] = "";
-$a->strings["Enable Google+ Import"] = "";
-$a->strings["Google Account ID"] = "";
-$a->strings["Google+ Import Settings saved."] = "";
-$a->strings["Facebook disabled"] = "Facebook отключен";
-$a->strings["Updating contacts"] = "Обновление контактов";
-$a->strings["Facebook API key is missing."] = "Отсутствует ключ Facebook API.";
-$a->strings["Facebook Connect"] = "Facebook подключение";
-$a->strings["Install Facebook connector for this account."] = "Установить Facebook Connector для этого аккаунта.";
-$a->strings["Remove Facebook connector"] = "Удалить Facebook Connector";
-$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "";
-$a->strings["Post to Facebook by default"] = "Отправлять на Facebook по умолчанию";
-$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "";
-$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "";
-$a->strings["Link all your Facebook friends and conversations on this website"] = "";
-$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "";
-$a->strings["On this website, your Facebook friend stream is only visible to you."] = "";
-$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "";
-$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "";
-$a->strings["Do not import your Facebook profile wall conversations"] = "Не импортировать Facebook разговоров с Вашей страницы";
-$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "";
-$a->strings["Comma separated applications to ignore"] = "Игнорировать приложения (список через запятую)";
-$a->strings["Problems with Facebook Real-Time Updates"] = "";
-$a->strings["Facebook Connector Settings"] = "Настройки подключения Facebook";
-$a->strings["Facebook API Key"] = "Facebook API Key";
-$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "";
-$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "";
-$a->strings["The given API Key seems to work correctly."] = "";
-$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "";
-$a->strings["App-ID / API-Key"] = "App-ID / API-Key";
-$a->strings["Application secret"] = "Секрет приложения";
-$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "";
-$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "";
-$a->strings["Real-Time Updates"] = "";
-$a->strings["Real-Time Updates are activated."] = "";
-$a->strings["Deactivate Real-Time Updates"] = "Отключить Real-Time обновления";
-$a->strings["Real-Time Updates not activated."] = "";
-$a->strings["Activate Real-Time Updates"] = "Активировать Real-Time обновления";
-$a->strings["The new values have been saved."] = "";
-$a->strings["Post to Facebook"] = "Отправить на Facebook";
-$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Отправка на Facebook отменена из-за конфликта разрешений доступа разных сетей.";
-$a->strings["View on Friendica"] = "";
-$a->strings["Facebook post failed. Queued for retry."] = "Ошибка отправки сообщения на Facebook. В очереди на еще одну попытку.";
-$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "";
-$a->strings["Facebook connection became invalid"] = "Facebook подключение не удалось";
-$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = "";
-$a->strings["StatusNet AutoFollow settings updated."] = "";
-$a->strings["StatusNet AutoFollow Settings"] = "";
-$a->strings["Automatically follow any StatusNet followers/mentioners"] = "";
-$a->strings["Bg settings updated."] = "";
-$a->strings["Bg Settings"] = "";
-$a->strings["How many contacts to display on profile sidebar"] = "";
-$a->strings["Lifetime of the cache (in hours)"] = "";
-$a->strings["Cache Statistics"] = "";
-$a->strings["Number of items"] = "";
-$a->strings["Size of the cache"] = "";
-$a->strings["Delete the whole cache"] = "";
-$a->strings["Facebook Post disabled"] = "";
-$a->strings["Facebook Post"] = "";
-$a->strings["Install Facebook Post connector for this account."] = "";
-$a->strings["Remove Facebook Post connector"] = "";
-$a->strings["Facebook Post Settings"] = "";
-$a->strings["%d person likes this"] = array(
-	0 => "",
-	1 => "",
-	2 => "",
-);
-$a->strings["%d person doesn't like this"] = array(
-	0 => "",
-	1 => "",
-	2 => "",
-);
-$a->strings["Get added to this list!"] = "";
-$a->strings["Generate new key"] = "Сгенерировать новый ключ";
-$a->strings["Widgets key"] = "Ключ виджетов";
-$a->strings["Widgets available"] = "Виджеты доступны";
-$a->strings["Connect on Friendica!"] = "Подключены к Friendica!";
-$a->strings["bitchslap"] = "";
-$a->strings["bitchslapped"] = "";
-$a->strings["shag"] = "";
-$a->strings["shagged"] = "";
-$a->strings["do something obscenely biological to"] = "";
-$a->strings["did something obscenely biological to"] = "";
-$a->strings["point out the poke feature to"] = "";
-$a->strings["pointed out the poke feature to"] = "";
-$a->strings["declare undying love for"] = "";
-$a->strings["declared undying love for"] = "";
-$a->strings["patent"] = "";
-$a->strings["patented"] = "";
-$a->strings["stroke beard"] = "";
-$a->strings["stroked their beard at"] = "";
-$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = "";
-$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = "";
-$a->strings["hug"] = "";
-$a->strings["hugged"] = "";
-$a->strings["kiss"] = "";
-$a->strings["kissed"] = "";
-$a->strings["raise eyebrows at"] = "";
-$a->strings["raised their eyebrows at"] = "";
-$a->strings["insult"] = "";
-$a->strings["insulted"] = "";
-$a->strings["praise"] = "";
-$a->strings["praised"] = "";
-$a->strings["be dubious of"] = "";
-$a->strings["was dubious of"] = "";
-$a->strings["eat"] = "";
-$a->strings["ate"] = "";
-$a->strings["giggle and fawn at"] = "";
-$a->strings["giggled and fawned at"] = "";
-$a->strings["doubt"] = "";
-$a->strings["doubted"] = "";
-$a->strings["glare"] = "";
-$a->strings["glared at"] = "";
-$a->strings["YourLS Settings"] = "";
-$a->strings["URL: http://"] = "URL: http://";
-$a->strings["Username:"] = "Имя:";
-$a->strings["Password:"] = "Пароль:";
-$a->strings["Use SSL "] = "Использовать SSL";
-$a->strings["yourls Settings saved."] = "Настройки сохранены.";
-$a->strings["Post to LiveJournal"] = "";
-$a->strings["LiveJournal Post Settings"] = "";
-$a->strings["Enable LiveJournal Post Plugin"] = "Включить LiveJournal  плагин сообщений";
-$a->strings["LiveJournal username"] = "";
-$a->strings["LiveJournal password"] = "";
-$a->strings["Post to LiveJournal by default"] = "";
-$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "";
-$a->strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW.  This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "";
-$a->strings["Enable Content filter"] = "Включить фильтр содержимого";
-$a->strings["Comma separated list of keywords to hide"] = "ключевые слова, которые скрыть (список через запятую)";
-$a->strings["Use /expression/ to provide regular expressions"] = "";
-$a->strings["NSFW Settings saved."] = "NSFW Настройки сохранены.";
-$a->strings["%s - Click to open/close"] = "%s - Нажмите для открытия / закрытия";
-$a->strings["Forums"] = "Форумы";
-$a->strings["Forums:"] = "";
-$a->strings["Page settings updated."] = "";
-$a->strings["Page Settings"] = "";
-$a->strings["How many forums to display on sidebar without paging"] = "";
-$a->strings["Randomise Page/Forum list"] = "";
-$a->strings["Show pages/forums on profile page"] = "";
-$a->strings["Planets Settings"] = "";
-$a->strings["Enable Planets Plugin"] = "";
-$a->strings["Login"] = "Вход";
-$a->strings["OpenID"] = "OpenID";
-$a->strings["Latest users"] = "";
-$a->strings["Most active users"] = "Самые активные пользователи";
-$a->strings["Latest photos"] = "";
-$a->strings["Latest likes"] = "";
-$a->strings["event"] = "мероприятие";
-$a->strings["No access"] = "";
-$a->strings["Could not open component for editing"] = "";
-$a->strings["Go back to the calendar"] = "";
-$a->strings["Event data"] = "";
-$a->strings["Calendar"] = "";
-$a->strings["Special color"] = "";
-$a->strings["Subject"] = "";
-$a->strings["Starts"] = "";
-$a->strings["Ends"] = "";
-$a->strings["Description"] = "";
-$a->strings["Recurrence"] = "";
-$a->strings["Frequency"] = "";
-$a->strings["Daily"] = "Ежедневно";
-$a->strings["Weekly"] = "Еженедельно";
-$a->strings["Monthly"] = "Ежемесячно";
-$a->strings["Yearly"] = "";
-$a->strings["days"] = "дней";
-$a->strings["weeks"] = "недель";
-$a->strings["months"] = "мес.";
-$a->strings["years"] = "лет";
-$a->strings["Interval"] = "";
-$a->strings["All %select% %time%"] = "";
-$a->strings["Days"] = "";
-$a->strings["Sunday"] = "Воскресенье";
-$a->strings["Monday"] = "Понедельник";
-$a->strings["Tuesday"] = "Вторник";
-$a->strings["Wednesday"] = "Среда";
-$a->strings["Thursday"] = "Четверг";
-$a->strings["Friday"] = "Пятница";
-$a->strings["Saturday"] = "Суббота";
-$a->strings["First day of week:"] = "";
-$a->strings["Day of month"] = "";
-$a->strings["#num#th of each month"] = "";
-$a->strings["#num#th-last of each month"] = "";
-$a->strings["#num#th #wkday# of each month"] = "";
-$a->strings["#num#th-last #wkday# of each month"] = "";
-$a->strings["Month"] = "";
-$a->strings["#num#th of the given month"] = "";
-$a->strings["#num#th-last of the given month"] = "";
-$a->strings["#num#th #wkday# of the given month"] = "";
-$a->strings["#num#th-last #wkday# of the given month"] = "";
-$a->strings["Repeat until"] = "";
-$a->strings["Infinite"] = "";
-$a->strings["Until the following date"] = "";
-$a->strings["Number of times"] = "";
-$a->strings["Exceptions"] = "";
-$a->strings["none"] = "";
-$a->strings["Notification"] = "";
-$a->strings["Notify by"] = "";
-$a->strings["E-Mail"] = "";
-$a->strings["On Friendica / Display"] = "";
-$a->strings["Time"] = "";
-$a->strings["Hours"] = "";
-$a->strings["Minutes"] = "";
-$a->strings["Seconds"] = "";
-$a->strings["Weeks"] = "";
-$a->strings["before the"] = "";
-$a->strings["start of the event"] = "";
-$a->strings["end of the event"] = "";
-$a->strings["Add a notification"] = "";
-$a->strings["The event #name# will start at #date"] = "";
-$a->strings["#name# is about to begin."] = "";
-$a->strings["Saved"] = "";
-$a->strings["U.S. Time Format (mm/dd/YYYY)"] = "";
-$a->strings["German Time Format (dd.mm.YYYY)"] = "";
-$a->strings["Private Events"] = "";
-$a->strings["Private Addressbooks"] = "";
-$a->strings["Friendica-Native events"] = "";
-$a->strings["Friendica-Contacts"] = "";
-$a->strings["Your Friendica-Contacts"] = "";
-$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = "";
-$a->strings["Something went wrong when trying to import the file. Sorry."] = "";
-$a->strings["The ICS-File has been imported."] = "";
-$a->strings["No file was uploaded."] = "";
-$a->strings["Import a ICS-file"] = "";
-$a->strings["ICS-File"] = "";
-$a->strings["Overwrite all #num# existing events"] = "";
-$a->strings["New event"] = "";
-$a->strings["Today"] = "";
-$a->strings["Day"] = "";
-$a->strings["Week"] = "";
-$a->strings["Reload"] = "";
-$a->strings["Date"] = "";
-$a->strings["Error"] = "";
-$a->strings["The calendar has been updated."] = "";
-$a->strings["The new calendar has been created."] = "";
-$a->strings["The calendar has been deleted."] = "";
-$a->strings["Calendar Settings"] = "";
-$a->strings["Date format"] = "";
-$a->strings["Time zone"] = "";
-$a->strings["Calendars"] = "";
-$a->strings["Create a new calendar"] = "";
-$a->strings["Limitations"] = "";
-$a->strings["Warning"] = "";
-$a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = "";
-$a->strings["Synchronizing this calendar with the iPhone"] = "";
-$a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = "";
-$a->strings["The current version of this plugin has not been set up correctly. Please contact the system administrator of your installation of friendica to fix this."] = "";
-$a->strings["Extended calendar with CalDAV-support"] = "";
-$a->strings["noreply"] = "без ответа";
-$a->strings["Notification: "] = "";
-$a->strings["The database tables have been installed."] = "";
-$a->strings["An error occurred during the installation."] = "";
-$a->strings["The database tables have been updated."] = "";
-$a->strings["An error occurred during the update."] = "";
-$a->strings["No system-wide settings yet."] = "";
-$a->strings["Database status"] = "";
-$a->strings["Installed"] = "";
-$a->strings["Upgrade needed"] = "";
-$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events <i>should</i> be converted to the new database structure, it's always safe to have a backup. Below, you can have a look at the database-queries that will be made when pressing the 'update'-button."] = "";
-$a->strings["Upgrade"] = "";
-$a->strings["Not installed"] = "";
-$a->strings["Install"] = "";
-$a->strings["Unknown"] = "";
-$a->strings["Something really went wrong. I cannot recover from this state automatically, sorry. Please go to the database backend, back up the data, and delete all tables beginning with 'dav_' manually. Afterwards, this installation routine should be able to reinitialize the tables automatically."] = "";
-$a->strings["Troubleshooting"] = "";
-$a->strings["Manual creation of the database tables:"] = "";
-$a->strings["Show SQL-statements"] = "";
-$a->strings["Private Calendar"] = "";
-$a->strings["Friendica Events: Mine"] = "";
-$a->strings["Friendica Events: Contacts"] = "";
-$a->strings["Private Addresses"] = "";
-$a->strings["Friendica Contacts"] = "";
-$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"] = "";
-$a->strings["Template URL (with {category})"] = "";
-$a->strings["OAuth end-point"] = "";
-$a->strings["Api"] = "Api";
-$a->strings["Member since:"] = "Зарегистрирован с:";
-$a->strings["Three Dimensional Tic-Tac-Toe"] = "Трехмерные крестики-нолики";
-$a->strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe";
-$a->strings["New game"] = "Новая игра";
-$a->strings["New game with handicap"] = "Новая игра с гандикапом";
-$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Трехмерная игра в крестики-нолики точно такая же, как традиционная игра, за исключением того, что она играется на нескольких уровнях одновременно.";
-$a->strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "В этом случае существуют три уровня. Вы выиграете, поставив три в ряд на любом уровне, а также вверх, вниз и по диагонали на разных уровнях.";
-$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "Игра с гандикапом отключает центральное положение на среднем уровне, потому что игрок, занимающий эту площадь, часто имеет несправедливое преимущество.";
-$a->strings["You go first..."] = "Вы хотите первым...";
-$a->strings["I'm going first this time..."] = "Я буду первым на этот раз...";
-$a->strings["You won!"] = "Вы выиграли!";
-$a->strings["\"Cat\" game!"] = "Игра \"Кошка\"!";
-$a->strings["I won!"] = "Я выиграл!";
-$a->strings["Randplace Settings"] = "Настройки Случайного места";
-$a->strings["Enable Randplace Plugin"] = "Включить Randplace  плагин";
-$a->strings["Post to Dreamwidth"] = "";
-$a->strings["Dreamwidth Post Settings"] = "Dreamwidth настройки сообщений";
-$a->strings["Enable dreamwidth Post Plugin"] = "Включить dreamwidth плагин сообщений";
-$a->strings["dreamwidth username"] = "dreamwidth имя пользователя";
-$a->strings["dreamwidth password"] = "dreamwidth пароль";
-$a->strings["Post to dreamwidth by default"] = "";
-$a->strings["Post to Drupal"] = "";
-$a->strings["Drupal Post Settings"] = "";
-$a->strings["Enable Drupal Post Plugin"] = "Включить Drupal  плагин сообщений";
-$a->strings["Drupal username"] = "Drupal имя пользователя";
-$a->strings["Drupal password"] = "Drupal пароль";
-$a->strings["Post Type - article,page,or blog"] = "";
-$a->strings["Drupal site URL"] = "Drupal site URL";
-$a->strings["Drupal site uses clean URLS"] = "";
-$a->strings["Post to Drupal by default"] = "";
-$a->strings["Post from Friendica"] = "Сообщение от Friendica";
-$a->strings["Startpage Settings"] = "";
-$a->strings["Home page to load after login  - leave blank for profile wall"] = "";
-$a->strings["Examples: &quot;network&quot; or &quot;notifications/system&quot;"] = "";
-$a->strings["Geonames settings updated."] = "";
-$a->strings["Geonames Settings"] = "";
-$a->strings["Enable Geonames Plugin"] = "Включить Geonames  плагин";
-$a->strings["Your account on %s will expire in a few days."] = "";
-$a->strings["Your Friendica account is about to expire."] = "";
-$a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = "";
-$a->strings["Upload a file"] = "Загрузить файл";
-$a->strings["Drop files here to upload"] = "Перетащите файлы сюда для загрузки";
-$a->strings["Failed"] = "Ошибка";
-$a->strings["No files were uploaded."] = "Нет загруженных файлов.";
-$a->strings["Uploaded file is empty"] = "Загруженный файл пустой";
-$a->strings["File has an invalid extension, it should be one of "] = "Файл имеет недопустимое расширение, оно должно быть одним из следующих ";
-$a->strings["Upload was cancelled, or server error encountered"] = "Загрузка была отменена, или произошла ошибка сервера";
-$a->strings["OEmbed settings updated"] = "OEmbed настройки обновлены";
-$a->strings["Use OEmbed for YouTube videos"] = "Использовать OEmbed для видео YouTube";
-$a->strings["URL to embed:"] = "URL для встраивания:";
-$a->strings["show/hide"] = "";
-$a->strings["No forum subscriptions"] = "";
-$a->strings["Forumlist settings updated."] = "";
-$a->strings["Forumlist Settings"] = "";
-$a->strings["Randomise forum list"] = "";
-$a->strings["Show forums on profile page"] = "";
-$a->strings["Impressum"] = "Impressum";
-$a->strings["Site Owner"] = "Владелец сайта";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "";
+$a->strings["Edit/Manage Profiles"] = "Редактирование  / Управление профилей";
+$a->strings["Add profile things"] = "";
+$a->strings["Include desirable objects in your profile"] = "";
+$a->strings["Add a Channel"] = "Добавить контакт";
+$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."] = "";
+$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "";
+$a->strings["Choose a short nickname"] = "Выберите короткий псевдоним";
+$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "";
+$a->strings["Or <a href=\"import\">import an existing channel</a> from another location"] = "";
+$a->strings["Permission Denied."] = "Доступ запрещен.";
+$a->strings["File not found."] = "Файл не найден.";
+$a->strings["Edit file permissions"] = "Редактировать разрешения файла";
+$a->strings["Include all files and sub folders"] = "";
+$a->strings["Return to file list"] = "";
+$a->strings["Copy/paste this code to attach file to a post"] = "";
+$a->strings["Copy/paste this URL to link file from a web page"] = "";
+$a->strings["Download"] = "";
+$a->strings["Used: "] = "";
+$a->strings["[directory]"] = "";
+$a->strings["Limit: "] = "Предел: ";
+$a->strings["No valid account found."] = "Действительный аккаунт не найден.";
+$a->strings["Password reset request issued. Check your email."] = "";
+$a->strings["Site Member (%s)"] = "Участник сайта (%s)";
+$a->strings["Password reset requested at %s"] = "Требуется сброс пароля на %s";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "";
+$a->strings["Password Reset"] = "Сбросить пароль";
+$a->strings["Your password has been reset as requested."] = "";
+$a->strings["Your new password is"] = "Ваш новый пароль";
+$a->strings["Save or copy your new password - and then"] = "";
+$a->strings["click here to login"] = "нажмите здесь чтобы выйти";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "";
+$a->strings["Your password has changed at %s"] = "Пароль изменен на %s";
+$a->strings["Forgot your Password?"] = "Забыли пароль или логин?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "";
 $a->strings["Email Address"] = "Адрес электронной почты";
-$a->strings["Postal Address"] = "Почтовый адрес";
-$a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "Расширение Impressum должно быть настроено!<br /> Пожалуйста, добавьте по крайней мере переменную <tt>владельца</tt> в ваш конфигурационный файл. Описание других переменных можно найти в файле README для расширения.";
-$a->strings["The page operators name."] = "";
-$a->strings["Site Owners Profile"] = "Профиль владельцев сайта";
-$a->strings["Profile address of the operator."] = "";
-$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "";
-$a->strings["Notes"] = "Заметки";
-$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "";
-$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "";
-$a->strings["Footer note"] = "";
-$a->strings["Text for the footer. You can use BBCode here."] = "";
-$a->strings["Report Bug"] = "Сообщить об ошибке";
-$a->strings["No Timeline settings updated."] = "";
-$a->strings["No Timeline Settings"] = "";
-$a->strings["Disable Archive selector on profile wall"] = "";
-$a->strings["\"Blockem\" Settings"] = "\"Blockem\" настройки";
-$a->strings["Comma separated profile URLS to block"] = "URLS, которые заблокировать (список через запятую)";
-$a->strings["BLOCKEM Settings saved."] = "BLOCKEM-Настройки сохранены.";
-$a->strings["Blocked %s - Click to open/close"] = "Заблокированные %s - Нажмите, чтобы открыть/закрыть";
-$a->strings["Unblock Author"] = "";
-$a->strings["Block Author"] = "Блокировать Автора";
-$a->strings["blockem settings updated"] = "\"Blockem\" настройки обновлены";
-$a->strings[":-)"] = ":-)";
-$a->strings[":-("] = ":-(";
-$a->strings["lol"] = "lol";
-$a->strings["Quick Comment Settings"] = "";
-$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "";
-$a->strings["Enter quick comments, one per line"] = "Введите короткие комментарии, по одному в строке:";
-$a->strings["Quick Comment settings saved."] = "";
-$a->strings["Tile Server URL"] = "";
-$a->strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "Список <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">общедоступных серверов</a>";
-$a->strings["Default zoom"] = "zoom по умолчанию";
-$a->strings["The default zoom level. (1:world, 18:highest)"] = "";
-$a->strings["Editplain settings updated."] = "Editplain настройки обновлены.";
-$a->strings["Group Text"] = "";
-$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "";
-$a->strings["Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"] = "";
-$a->strings["generic profile image"] = "";
-$a->strings["random geometric pattern"] = "";
-$a->strings["monster face"] = "";
-$a->strings["computer generated face"] = "";
-$a->strings["retro arcade style face"] = "";
-$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "";
-$a->strings["This addon is not functional on your server."] = "";
-$a->strings["Information"] = "";
-$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "";
-$a->strings["Default avatar image"] = "";
-$a->strings["Select default avatar image if none was found. See README"] = "";
-$a->strings["Libravatar settings updated."] = "";
-$a->strings["Post to libertree"] = "";
-$a->strings["libertree Post Settings"] = "";
-$a->strings["Enable Libertree Post Plugin"] = "";
-$a->strings["Libertree API token"] = "";
-$a->strings["Libertree site URL"] = "";
-$a->strings["Post to Libertree by default"] = "";
-$a->strings["Altpager settings updated."] = "";
-$a->strings["Alternate Pagination Setting"] = "";
-$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = "";
-$a->strings["The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail."] = "";
-$a->strings["Use the MathJax renderer"] = "";
-$a->strings["MathJax Base URL"] = "";
-$a->strings["The URL for the javascript file that should be included to use MathJax. Can be either the MathJax CDN or another installation of MathJax."] = "";
-$a->strings["Editplain Settings"] = "Editplain настройки";
-$a->strings["Disable richtext status editor"] = "Отключить richtext status editor";
-$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "";
-$a->strings["Select default avatar image if none was found at Gravatar. See README"] = "";
-$a->strings["Rating of images"] = "";
-$a->strings["Select the appropriate avatar rating for your site. See README"] = "";
-$a->strings["Gravatar settings updated."] = "";
-$a->strings["Your Friendica test account is about to expire."] = "";
-$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = "";
-$a->strings["\"pageheader\" Settings"] = "";
-$a->strings["pageheader Settings saved."] = "";
-$a->strings["Post to Insanejournal"] = "";
-$a->strings["InsaneJournal Post Settings"] = "";
-$a->strings["Enable InsaneJournal Post Plugin"] = "Включить InsaneJournal  плагин сообщений";
-$a->strings["InsaneJournal username"] = "";
-$a->strings["InsaneJournal password"] = "";
-$a->strings["Post to InsaneJournal by default"] = "";
-$a->strings["Jappix Mini addon settings"] = "";
-$a->strings["Activate addon"] = "";
-$a->strings["Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"] = "";
-$a->strings["Jabber username"] = "";
-$a->strings["Jabber server"] = "";
-$a->strings["Jabber BOSH host"] = "";
-$a->strings["Jabber password"] = "";
-$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = "";
-$a->strings["Friendica password"] = "";
-$a->strings["Approve subscription requests from Friendica contacts automatically"] = "";
-$a->strings["Subscribe to Friendica contacts automatically"] = "";
-$a->strings["Purge internal list of jabber addresses of contacts"] = "";
-$a->strings["Add contact"] = "";
-$a->strings["View Source"] = "Просмотр HTML-кода";
-$a->strings["Post to StatusNet"] = "Отправить на StatusNet";
-$a->strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "Пожалуйста, обратитесь к администратору сайта. <br /> Предложенный URL API недействителен.";
-$a->strings["We could not contact the StatusNet API with the Path you entered."] = "Мы не смогли связаться с API StatusNet с маршрутом, который вы ввели.";
-$a->strings["StatusNet settings updated."] = "Настройки StatusNet обновлены.";
-$a->strings["StatusNet Posting Settings"] = "Настройка отправки сообщений на StatusNet";
-$a->strings["Globally Available StatusNet OAuthKeys"] = "Глобально доступные StatusNet OAuthKeys";
-$a->strings["There are preconfigured OAuth key pairs for some StatusNet servers available. If you are useing one of them, please use these credentials. If not feel free to connect to any other StatusNet instance (see below)."] = "Доступны предварительно сконфигурированные OAuth пары ключей для некоторых серверов StatusNet. Если вы используете один из них, пожалуйста, используйте эти учетные данные. Если нет, не стесняйтесь подключиться к любому другому экземпляру StatusNet (см. ниже).";
-$a->strings["Provide your own OAuth Credentials"] = "Укажите свои собственные полномочия OAuth";
-$a->strings["No consumer key pair for StatusNet found. Register your Friendica Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited StatusNet installation."] = "";
-$a->strings["OAuth Consumer Key"] = "OAuth Consumer Key";
-$a->strings["OAuth Consumer Secret"] = "OAuth Consumer Secret";
-$a->strings["Base API Path (remember the trailing /)"] = "Путь базы API (помните о слеше /)";
-$a->strings["To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to StatusNet."] = "Чтобы подключиться к StatusNet аккаунту, нажмите на кнопку ниже, чтобы получить код безопасности от StatusNet, который нужно скопировать в поле ввода ниже, и отправить форму. Только ваши <strong>публичные сообщения</strong> будут отправляться на StatusNet.";
-$a->strings["Log in with StatusNet"] = "Войдите со StatusNet";
-$a->strings["Copy the security code from StatusNet here"] = "Скопируйте код безопасности от StatusNet здесь";
-$a->strings["Cancel Connection Process"] = "Отмена процесса подключения";
-$a->strings["Current StatusNet API is"] = "Текущим StatusNet API является";
-$a->strings["Cancel StatusNet Connection"] = "Отмена StatusNet подключения";
-$a->strings["Currently connected to: "] = "В настоящее время соединены с: ";
-$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Если включено, то все ваши <strong>общественные сообщения</strong> могут быть отправлены на соответствующий аккаунт StatusNet. Вы можете сделать это по умолчанию (здесь) или для каждого сообщения отдельно при написании записи.";
-$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to StatusNet will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "";
-$a->strings["Allow posting to StatusNet"] = "Разрешить отправку на StatusNet";
-$a->strings["Send public postings to StatusNet by default"] = "Отправлять публичные сообщения на StatusNet по умолчанию";
-$a->strings["Send linked #-tags and @-names to StatusNet"] = "";
-$a->strings["Clear OAuth configuration"] = "Очистить конфигурацию OAuth";
-$a->strings["API URL"] = "API URL";
-$a->strings["Infinite Improbability Drive"] = "";
-$a->strings["Post to Tumblr"] = "Написать в Tumblr";
-$a->strings["Tumblr Post Settings"] = "Tumblr Настройки сообщения";
-$a->strings["Enable Tumblr Post Plugin"] = "Включить Tumblr  плагин сообщений";
-$a->strings["Tumblr login"] = "Tumblr вход";
-$a->strings["Tumblr password"] = "Tumblr пароль";
-$a->strings["Post to Tumblr by default"] = "Сообщение Tumblr по умолчанию";
-$a->strings["Numfriends settings updated."] = "";
-$a->strings["Numfriends Settings"] = "";
-$a->strings["Gnot settings updated."] = "";
-$a->strings["Gnot Settings"] = "";
-$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "";
-$a->strings["Enable this plugin/addon?"] = "Включить этот плагин / аддон?";
-$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "";
-$a->strings["Post to Wordpress"] = "Сообщение для Wordpress";
-$a->strings["WordPress Post Settings"] = "Настройки сообщений для Wordpress";
-$a->strings["Enable WordPress Post Plugin"] = "Включить WordPress  плагин сообщений";
-$a->strings["WordPress username"] = "WordPress Имя пользователя";
-$a->strings["WordPress password"] = "WordPress паролъ";
-$a->strings["WordPress API URL"] = "WordPress API URL";
-$a->strings["Post to WordPress by default"] = "Сообщение WordPress по умолчанию";
-$a->strings["Provide a backlink to the Friendica post"] = "";
-$a->strings["Read the original post and comment stream on Friendica"] = "";
-$a->strings["\"Show more\" Settings"] = "";
-$a->strings["Enable Show More"] = "Включить Показать больше";
-$a->strings["Cutting posts after how much characters"] = "Обрезание сообщения после превывения числа символов";
-$a->strings["Show More Settings saved."] = "";
-$a->strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "Этот веб-сайт отслеживается с помощью <a href='http://www.piwik.org'> Piwik </ a> инструмент аналитики.";
-$a->strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "Если вы не хотите, чтобы ваши посещения записывались таким образом, вы <a href='%s'> можете установить куки для предотвращения отслеживания Piwik от дальнейших посещений сайта </a> (opt-out).";
-$a->strings["Piwik Base URL"] = "Piwik основной URL";
-$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "";
-$a->strings["Site ID"] = "ID сайта";
-$a->strings["Show opt-out cookie link?"] = "Показать ссылку opt-out cookie?";
-$a->strings["Asynchronous tracking"] = "Асинхронное отслеживание";
-$a->strings["Post to Twitter"] = "Отправить в Твиттер";
-$a->strings["Twitter settings updated."] = "Настройки Твиттера обновлены.";
-$a->strings["Twitter Posting Settings"] = "Настройка отправки сообщений в Твиттер";
-$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Не найдено пары потребительских ключей для Твиттера. Пожалуйста, обратитесь к администратору сайта.";
-$a->strings["At this Friendica instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter."] = "";
-$a->strings["Log in with Twitter"] = "Войдите с Твиттером";
-$a->strings["Copy the PIN from Twitter here"] = "Скопируйте PIN с Twitter здесь";
-$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Если включено, то все ваши <strong>общественные сообщения</strong> могут быть отправлены на связанный аккаунт Твиттер. Вы можете сделать это по умолчанию (здесь) или для каждого сообщения отдельно при написании записи.";
-$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "";
-$a->strings["Allow posting to Twitter"] = "Разрешить отправку сообщений на Twitter";
-$a->strings["Send public postings to Twitter by default"] = "Отправлять сообщения для всех на Твиттер по умолчанию";
-$a->strings["Send linked #-tags and @-names to Twitter"] = "";
-$a->strings["Consumer key"] = "Consumer key";
-$a->strings["Consumer secret"] = "Consumer secret";
-$a->strings["IRC Settings"] = "";
-$a->strings["Channel(s) to auto connect (comma separated)"] = "";
-$a->strings["Popular Channels (comma separated)"] = "";
-$a->strings["IRC settings saved."] = "";
-$a->strings["IRC Chatroom"] = "";
-$a->strings["Popular Channels"] = "";
-$a->strings["Fromapp settings updated."] = "";
-$a->strings["FromApp Settings"] = "";
-$a->strings["The application name you would like to show your posts originating from."] = "";
-$a->strings["Use this application name even if another application was used."] = "";
-$a->strings["Post to blogger"] = "";
-$a->strings["Blogger Post Settings"] = "";
-$a->strings["Enable Blogger Post Plugin"] = "";
-$a->strings["Blogger username"] = "";
-$a->strings["Blogger password"] = "";
-$a->strings["Blogger API URL"] = "";
-$a->strings["Post to Blogger by default"] = "";
-$a->strings["Post to Posterous"] = "";
-$a->strings["Posterous Post Settings"] = "";
-$a->strings["Enable Posterous Post Plugin"] = "Включить Posterous  плагин сообщений";
-$a->strings["Posterous login"] = "";
-$a->strings["Posterous password"] = "";
-$a->strings["Posterous site ID"] = "";
-$a->strings["Posterous API token"] = "";
-$a->strings["Post to Posterous by default"] = "";
-$a->strings["Theme settings"] = "";
-$a->strings["Set resize level for images in posts and comments (width and height)"] = "";
-$a->strings["Set font-size for posts and comments"] = "";
-$a->strings["Set theme width"] = "";
-$a->strings["Color scheme"] = "Цветовая схема";
-$a->strings["Your posts and conversations"] = "Ваши сообщения и беседы";
-$a->strings["Your profile page"] = "Страница Вашего профиля";
-$a->strings["Your contacts"] = "Ваши контакты";
-$a->strings["Your photos"] = "Ваши фотографии";
-$a->strings["Your events"] = "Ваши события";
-$a->strings["Personal notes"] = "Личные заметки";
-$a->strings["Your personal photos"] = "Ваши личные фотографии";
-$a->strings["Community Pages"] = "Страницы сообщества";
-$a->strings["Community Profiles"] = "";
-$a->strings["Last users"] = "Последние пользователи";
-$a->strings["Last likes"] = "Последние likes";
-$a->strings["Last photos"] = "Последние фото";
-$a->strings["Find Friends"] = "Найти друзей";
-$a->strings["Local Directory"] = "";
-$a->strings["Similar Interests"] = "Похожие интересы";
-$a->strings["Invite Friends"] = "Пригласить друзей";
-$a->strings["Earth Layers"] = "";
-$a->strings["Set zoomfactor for Earth Layers"] = "";
-$a->strings["Set longitude (X) for Earth Layers"] = "";
-$a->strings["Set latitude (Y) for Earth Layers"] = "";
-$a->strings["Help or @NewHere ?"] = "";
-$a->strings["Connect Services"] = "Подключить службы";
-$a->strings["Last Tweets"] = "";
-$a->strings["Set twitter search term"] = "";
-$a->strings["don't show"] = "не показывать";
-$a->strings["show"] = "показывать";
-$a->strings["Show/hide boxes at right-hand column:"] = "";
+$a->strings["Reset"] = "Сброс";
+$a->strings["Nothing to import."] = "Ничего импортировать.";
+$a->strings["Unable to download data from old server"] = "Невозможно загрузить данные из старого сервера";
+$a->strings["Imported file is empty."] = "Импортированный файл пуст.";
+$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "";
+$a->strings["Channel clone failed. Import failed."] = "";
+$a->strings["Cloned channel not found. Import failed."] = "";
+$a->strings["Import completed."] = "Импорт завершен.";
+$a->strings["You must be logged in to use this feature."] = "Вы должны войти в систему, чтобы использовать эту функцию.";
+$a->strings["Import Channel"] = "Импорт канала";
+$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = "";
+$a->strings["File to Upload"] = "Файл для загрузки";
+$a->strings["Or provide the old server/hub details"] = "";
+$a->strings["Your old identity address (xyz@example.com)"] = "";
+$a->strings["Your old login email address"] = "Ваш старый адрес электронной почты";
+$a->strings["Your old login password"] = "Ваш старый пароль";
+$a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "";
+$a->strings["Make this hub my primary location"] = "";
+$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "";
+$a->strings["Create a new channel"] = "Создать новый канал";
+$a->strings["Channel Manager"] = "Настройки канала";
+$a->strings["Current Channel"] = "Текущий канал";
+$a->strings["Attach to one of your channels by selecting it."] = "";
+$a->strings["Default Channel"] = "Канал по умолчанию";
+$a->strings["Make Default"] = "Сделать стандартным";
+$a->strings["Total votes"] = "";
+$a->strings["Average Rating"] = "";
+$a->strings["Profile Match"] = "";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "";
+$a->strings["is interested in:"] = "заинтересован в:";
+$a->strings["No matches"] = "Нет соответствий";
+$a->strings["invalid target signature"] = "";
+$a->strings["Name is required"] = "Необходимо имя";
+$a->strings["Key and Secret are required"] = "";
+$a->strings["Update"] = "Обновление";
+$a->strings["Passwords do not match. Password unchanged."] = "Пароли не совпадают. Пароль не изменён.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Пустые пароли не допускаются. Пароль не изменён.";
+$a->strings["Password changed."] = "Пароль изменен.";
+$a->strings["Password update failed. Please try again."] = "Изменение пароля закончилось неуспешно. Пожалуйста, попробуйте еще раз.";
+$a->strings["Not valid email."] = "Не действительный адрес электронной почты.";
+$a->strings["Protected email address. Cannot change to that email."] = "";
+$a->strings["System failure storing new email. Please try again."] = "";
+$a->strings["Settings updated."] = "Настройки обновленны.";
+$a->strings["Add application"] = "Добавить приложения";
+$a->strings["Name of application"] = "";
+$a->strings["Consumer Key"] = "Ключ клиента";
+$a->strings["Automatically generated - change if desired. Max length 20"] = "";
+$a->strings["Consumer Secret"] = "Секрет клиента";
+$a->strings["Redirect"] = "Перенаправление";
+$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "";
+$a->strings["Icon url"] = "URL-адрес значка";
+$a->strings["Optional"] = "Необязательно";
+$a->strings["You can't edit this application."] = "Вы не можете редактировать это приложение.";
+$a->strings["Connected Apps"] = "Подключенные приложения";
+$a->strings["Client key starts with"] = "";
+$a->strings["No name"] = "Без названия";
+$a->strings["Remove authorization"] = "Удалить разрешение";
+$a->strings["No feature settings configured"] = "Параметры функций не настроены";
+$a->strings["Feature Settings"] = "Настройки функции";
+$a->strings["Account Settings"] = "Настройки аккаунта";
+$a->strings["Password Settings"] = "Настройки пароля";
+$a->strings["New Password:"] = "Новый пароль:";
+$a->strings["Confirm:"] = "Подтверждение:";
+$a->strings["Leave password fields blank unless changing"] = "Оставьте поля пустыми, если не меняется";
+$a->strings["Email Address:"] = "Адрес электронной почты:";
+$a->strings["Remove Account"] = "Удалить аккаунт";
+$a->strings["Warning: This action is permanent and cannot be reversed."] = "";
+$a->strings["Off"] = "Выкл.";
+$a->strings["On"] = "Вкл.";
+$a->strings["Additional Features"] = "Дополнительные функции";
+$a->strings["Connector Settings"] = "Настройки соединителя";
+$a->strings["Display Settings"] = "Настройки отображения";
+$a->strings["Display Theme:"] = "Тема отображения:";
+$a->strings["Mobile Theme:"] = "Мобильная тема отображения:";
+$a->strings["Update browser every xx seconds"] = "Обновление браузера каждые ХХ секунд";
+$a->strings["Minimum of 10 seconds, no maximum"] = "Минимум 10 секунд, без максимума";
+$a->strings["Maximum number of conversations to load at any time:"] = "";
+$a->strings["Maximum of 100 items"] = "Максимум 100 элементов";
+$a->strings["Don't show emoticons"] = "Не показывать emoticons";
+$a->strings["Nobody except yourself"] = "Никто, кроме вас";
+$a->strings["Only those you specifically allow"] = "Только комы вы разрешили";
+$a->strings["Anybody in your address book"] = "Любой в вашей адресной книге";
+$a->strings["Anybody on this website"] = "Любой на этом веб-сайте";
+$a->strings["Anybody in this network"] = "Любой в этой сети";
+$a->strings["Anybody on the internet"] = "Любой в интернете";
+$a->strings["Publish your default profile in the network directory"] = "Публикация вашего профиля по умолчанию в каталоге сети";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "";
+$a->strings["or"] = "или";
+$a->strings["Your channel address is"] = "Адрес вашего канала:";
+$a->strings["Channel Settings"] = "Настройки канала";
+$a->strings["Basic Settings"] = "Основные настройки";
+$a->strings["Your Timezone:"] = "Ваш часовой пояс:";
+$a->strings["Default Post Location:"] = "Откуда по умолчанию:";
+$a->strings["Use Browser Location:"] = "Используйте указание браузерa:";
+$a->strings["Adult Content"] = "";
+$a->strings["This channel publishes adult content."] = "";
+$a->strings["Security and Privacy Settings"] = "Параметры безопасности и конфиденциальности";
+$a->strings["Quick Privacy Settings:"] = "Быстрые параметры безопасности и конфиденциальности:";
+$a->strings["Very Public - extremely permissive"] = "Очень публично - чрезвычайно разрешающе";
+$a->strings["Typical - default public, privacy when desired"] = "Типично - по умолчанию публично, конфиденциальность, только если настроена";
+$a->strings["Private - default private, rarely open or public"] = "Частно  - по умолчанию частно, редко открыто или публично";
+$a->strings["Blocked - default blocked to/from everybody"] = "Заблокированно - по умолчанию заблокировано для/от всех";
+$a->strings["Maximum Friend Requests/Day:"] = "";
+$a->strings["May reduce spam activity"] = "";
+$a->strings["Default Post Permissions"] = "";
+$a->strings["Maximum private messages per day from unknown people:"] = "";
+$a->strings["Useful to reduce spamming"] = "";
+$a->strings["Notification Settings"] = "Настройки уведомлений";
+$a->strings["By default post a status message when:"] = "";
+$a->strings["accepting a friend request"] = "";
+$a->strings["joining a forum/community"] = "";
+$a->strings["making an <em>interesting</em> profile change"] = "";
+$a->strings["Send a notification email when:"] = "Отправить уведомление по электронной почте, если:";
+$a->strings["You receive an introduction"] = "Вы получили введение";
+$a->strings["Your introductions are confirmed"] = "";
+$a->strings["Someone writes on your profile wall"] = "";
+$a->strings["Someone writes a followup comment"] = "";
+$a->strings["You receive a private message"] = "";
+$a->strings["You receive a friend suggestion"] = "";
+$a->strings["You are tagged in a post"] = "";
+$a->strings["You are poked/prodded/etc. in a post"] = "";
+$a->strings["Advanced Account/Page Type Settings"] = "";
+$a->strings["Change the behaviour of this account for special situations"] = "";
+$a->strings["Unable to lookup recipient."] = "";
+$a->strings["Unable to communicate with requested channel."] = "";
+$a->strings["Cannot verify requested channel."] = "";
+$a->strings["Selected channel has private message restrictions. Send failed."] = "";
+$a->strings["Messages"] = "Переписка";
+$a->strings["Message deleted."] = "Сообщение удалено.";
+$a->strings["Message recalled."] = "";
+$a->strings["Send Private Message"] = "Отправить личное сообщение";
+$a->strings["To:"] = "Кому:";
+$a->strings["Subject:"] = "Тема:";
+$a->strings["Message not found."] = "Сообщение не найдено.";
+$a->strings["Delete message"] = "Удалить сообщение";
+$a->strings["Recall message"] = "";
+$a->strings["Message has been recalled."] = "";
+$a->strings["Private Conversation"] = "Личный разговор";
+$a->strings["Delete conversation"] = "Удалить разговор";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "";
+$a->strings["Send Reply"] = "Отправить снова";
+$a->strings["Item not found"] = "Элемент не найден";
+$a->strings["Edit Layout"] = "";
+$a->strings["Insert YouTube video"] = "Вставить YouTube видео";
+$a->strings["Insert Vorbis [.ogg] video"] = "Вставить Vorbis [.ogg] видео";
+$a->strings["Insert Vorbis [.ogg] audio"] = "Вставить Vorbis [.ogg] музыку";
+$a->strings["Delete Layout"] = "";
+$a->strings["Image uploaded but image cropping failed."] = "";
+$a->strings["Image resize failed."] = "Изменение размера изображения не удалось.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "";
+$a->strings["Image exceeds size limit of %d"] = "";
+$a->strings["Unable to process image."] = "";
+$a->strings["Photo not available."] = "Фотография не доступна.";
+$a->strings["Upload File:"] = "Загрузить файл:";
+$a->strings["Select a profile:"] = "Выберите профиль:";
+$a->strings["Upload Profile Photo"] = "Загрузить фотографию профиля";
+$a->strings["Upload"] = "Загрузка";
+$a->strings["skip this step"] = "пропустить этот шаг";
+$a->strings["select a photo from your photo albums"] = "";
+$a->strings["Crop Image"] = "Обрезать изображение";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "";
+$a->strings["Done Editing"] = "Закончить редактирование";
+$a->strings["Image uploaded successfully."] = "Загрузка изображениея прошла успешно.";
+$a->strings["Image upload failed."] = "Загрузка изображениея прошла безуспешно.";
+$a->strings["Image size reduction [%s] failed."] = "";
+$a->strings["Item is not editable"] = "Элемент нельзя редактировать";
+$a->strings["Delete item?"] = "Удалить элемент?";
+$a->strings["Invalid request identifier."] = "";
+$a->strings["Discard"] = "Отменить";
+$a->strings["No more system notifications."] = "Новых оповещений системы пока нет.";
+$a->strings["System Notifications"] = "Системные оповещения ";
+$a->strings["Block Name"] = "";
+$a->strings["Unable to find your hub."] = "";
+$a->strings["Post successful."] = "Публикация прошла успешно.";
+$a->strings["Edit Webpage"] = "";
+$a->strings["Delete webpage?"] = "";
+$a->strings["Delete Webpage"] = "";
+$a->strings["Access to this profile has been restricted."] = "Доступ к этому профилю ограничен.";
+$a->strings["Poke/Prod"] = "";
+$a->strings["poke, prod or do other things to somebody"] = "";
+$a->strings["Recipient"] = "Получатель";
+$a->strings["Choose what you wish to do to recipient"] = "";
+$a->strings["Make this post private"] = "Сделать это сообщение личным";
+$a->strings["Wall Photos"] = "Стена фотографий";
+$a->strings["You must be logged in to see this page."] = "";
+$a->strings["Insufficient permissions.  Request redirected to profile page."] = "";
+$a->strings["Not available."] = "Недоступно.";
+$a->strings["Community"] = "Сообщество";
+$a->strings["No results."] = "Ничего не найдено.";
+$a->strings["Contact not found."] = "Контакт не найден.";
+$a->strings["Friend suggestion sent."] = "";
+$a->strings["Suggest Friends"] = "Пригласить друзей";
+$a->strings["Suggest a friend for %s"] = "";
+$a->strings["Edit Block"] = "Редактировать блок";
+$a->strings["Delete Block"] = "Удалить блок";
+$a->strings["Invalid profile identifier."] = "";
+$a->strings["Profile Visibility Editor"] = "Редактор видимости профиля";
+$a->strings["Click on a contact to add or remove."] = "";
+$a->strings["Visible To"] = "Видно";
+$a->strings["All Contacts (with secure profile access)"] = "Все контакты (с доступом защищенному профилю)";
+$a->strings["Version %s"] = "Версия %s";
+$a->strings["Installed plugins/addons/apps:"] = "";
+$a->strings["No installed plugins/addons/apps"] = "";
+$a->strings["Red"] = "Red";
+$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralised privacy enhanced websites."] = "";
+$a->strings["Running at web location"] = "";
+$a->strings["Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more about the Red Matrix."] = "";
+$a->strings["Bug reports and issues: please visit"] = "";
+$a->strings["Suggestions, praise, donations, etc. - please email \"redmatrix\" at librelist - dot com"] = "";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "";
+$a->strings["Conversation removed."] = "Разговор удален.";
+$a->strings["No messages."] = "Нет сообщений.";
+$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
+$a->strings["Public Sites"] = "";
+$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."] = "";
+$a->strings["Site URL"] = "URL веб-сайта";
+$a->strings["Access Type"] = "";
+$a->strings["Registration Policy"] = "Правила регистрации";
+$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "";
+$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "";
+$a->strings["Passwords do not match."] = "Пароли не совпадают.";
+$a->strings["Registration successful. Please check your email for validation instructions."] = "";
+$a->strings["Your registration is pending approval by the site owner."] = "";
+$a->strings["Your registration can not be processed."] = "";
+$a->strings["Registration on this site/hub is by approval only."] = "";
+$a->strings["<a href=\"pubsites\">Register at another affiliated site/hub</a>"] = "";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "";
+$a->strings["Terms of Service"] = "";
+$a->strings["I accept the %s for this website"] = "";
+$a->strings["I am over 13 years of age and accept the %s for this website"] = "";
+$a->strings["Membership on this site is by invitation only."] = "";
+$a->strings["Please enter your invitation code"] = "";
+$a->strings["Your email address"] = "Ваш адрес электронной почты";
+$a->strings["Choose a password"] = "Выберите пароль";
+$a->strings["Please re-enter your password"] = "";
+$a->strings["Please login."] = "Войдите пожалуйста.";
+$a->strings["Remove This Channel"] = "Удалить этот канал";
+$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "";
+$a->strings["Please enter your password for verification:"] = "";
+$a->strings["Remove this channel and all its clones from the network"] = "";
+$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "";
+$a->strings["Remove My Account"] = "Удалить мой аккаунт";
+$a->strings["Unable to locate original post."] = "Не удалось найти оригинал.";
+$a->strings["Empty post discarded."] = "Отказаться от пустой почты.";
+$a->strings["Executable content type not permitted to this channel."] = "";
+$a->strings["System error. Post not saved."] = "Системная ошибка. Сообщение не сохранено.";
+$a->strings["You have reached your limit of %1$.0f top level posts."] = "";
+$a->strings["You have reached your limit of %1$.0f webpages."] = "";
+$a->strings["Mood"] = "";
+$a->strings["Set your current mood and tell your friends"] = "";
+$a->strings["sent you a private message"] = "отправил вам личное сообщение";
+$a->strings["added your channel"] = "добавил ваш канал";
+$a->strings["posted an event"] = "";
+$a->strings["Status: "] = "";
+$a->strings["Sexual Preference: "] = "Сексуальная ориентация:";
+$a->strings["Homepage: "] = "Домашняя страница:";
+$a->strings["Hometown: "] = "";
+$a->strings["About: "] = "О себе:";
+$a->strings["Keywords: "] = "Ключевые слова:";
+$a->strings["Scheme Default"] = "";
+$a->strings["red"] = "";
+$a->strings["black"] = "";
+$a->strings["silver"] = "";
+$a->strings["Theme settings"] = "Настройки темы";
+$a->strings["Set scheme"] = "";
+$a->strings["Navigation bar colour"] = "";
+$a->strings["Set font-colour for banner"] = "";
+$a->strings["Set the background colour"] = "";
+$a->strings["Set the background image"] = "";
+$a->strings["Set the background colour of items"] = "";
+$a->strings["Set the opacity of items"] = "";
+$a->strings["Set the basic colour for item icons"] = "";
+$a->strings["Set the hover colour for item icons"] = "";
+$a->strings["Set font-size for the entire application"] = "";
+$a->strings["Set font-size for posts and comments"] = "Установить размер шрифта для сообщений и комментариев";
+$a->strings["Set font-colour for posts and comments"] = "";
+$a->strings["Set radius of corners"] = "";
+$a->strings["Set shadow depth of photos"] = "";
+$a->strings["Set maximum width of conversation regions"] = "";
+$a->strings["Set minimum opacity of nav bar - to hide it"] = "";
+$a->strings["Set size of conversation author photo"] = "";
+$a->strings["Set size of followup author photos"] = "";
+$a->strings["Sloppy photo albums"] = "";
+$a->strings["Are you a clean desk or a messy desk person?"] = "";
+$a->strings["Schema Default"] = "";
+$a->strings["Sans-Serif"] = "";
+$a->strings["Monospace"] = "";
+$a->strings["Set font face"] = "";
+$a->strings["Set iconset"] = "";
+$a->strings["Set big shadow size, default 15px 15px 15px"] = "";
+$a->strings["Set small shadow size, default 5px 5px 5px"] = "";
+$a->strings["Set shadow colour, default #000"] = "";
+$a->strings["Set radius size, default 5px"] = "";
 $a->strings["Set line-height for posts and comments"] = "";
-$a->strings["Set resolution for middle column"] = "";
-$a->strings["Set color scheme"] = "";
-$a->strings["Set zoomfactor for Earth Layer"] = "";
-$a->strings["Last tweets"] = "";
-$a->strings["Alignment"] = "Выравнивание";
-$a->strings["Left"] = "";
-$a->strings["Center"] = "Центр";
-$a->strings["Set colour scheme"] = "";
-$a->strings["j F, Y"] = "j F, Y";
-$a->strings["j F"] = "j F";
-$a->strings["Birthday:"] = "День рождения:";
-$a->strings["Age:"] = "Возраст:";
-$a->strings["for %1\$d %2\$s"] = "";
-$a->strings["Tags:"] = "";
-$a->strings["Religion:"] = "Религия:";
-$a->strings["Hobbies/Interests:"] = "Хобби / Интересы:";
-$a->strings["Contact information and Social Networks:"] = "Информация о контакте и социальных сетях:";
-$a->strings["Musical interests:"] = "Музыкальные интересы:";
-$a->strings["Books, literature:"] = "Книги, литература:";
-$a->strings["Television:"] = "Телевидение:";
-$a->strings["Film/dance/culture/entertainment:"] = "Кино / Танцы / Культура / Развлечения:";
-$a->strings["Love/Romance:"] = "Любовь / Романтика:";
-$a->strings["Work/employment:"] = "Работа / Занятость:";
-$a->strings["School/education:"] = "Школа / Образование:";
-$a->strings["Unknown | Not categorised"] = "Неизвестно | Не определено";
-$a->strings["Block immediately"] = "Блокировать немедленно";
-$a->strings["Shady, spammer, self-marketer"] = "Тролль, спаммер, рассылает рекламу";
-$a->strings["Known to me, but no opinion"] = "Известные мне, но нет определенного мнения";
-$a->strings["OK, probably harmless"] = "Хорошо, наверное, безвредные";
-$a->strings["Reputable, has my trust"] = "Уважаемые, есть мое доверие";
-$a->strings["Frequently"] = "Часто";
-$a->strings["Hourly"] = "Раз в час";
-$a->strings["Twice daily"] = "Два раза в день";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Zot!"] = "Zot!";
-$a->strings["LinkedIn"] = "LinkedIn";
-$a->strings["XMPP/IM"] = "XMPP/IM";
-$a->strings["MySpace"] = "MySpace";
-$a->strings["Male"] = "Мужчина";
-$a->strings["Female"] = "Женщина";
-$a->strings["Currently Male"] = "В данный момент мужчина";
-$a->strings["Currently Female"] = "В настоящее время женщина";
-$a->strings["Mostly Male"] = "В основном мужчина";
-$a->strings["Mostly Female"] = "В основном женщина";
-$a->strings["Transgender"] = "Транссексуал";
-$a->strings["Intersex"] = "Интерсексуал";
-$a->strings["Transsexual"] = "Транссексуал";
-$a->strings["Hermaphrodite"] = "Гермафродит";
-$a->strings["Neuter"] = "Средний род";
-$a->strings["Non-specific"] = "Не определен";
-$a->strings["Other"] = "Другой";
-$a->strings["Undecided"] = "Не решено";
-$a->strings["Males"] = "Мужчины";
-$a->strings["Females"] = "Женщины";
-$a->strings["Gay"] = "Гей";
-$a->strings["Lesbian"] = "Лесбиянка";
-$a->strings["No Preference"] = "Без предпочтений";
-$a->strings["Bisexual"] = "Бисексуал";
-$a->strings["Autosexual"] = "Автосексуал";
-$a->strings["Abstinent"] = "Воздержанный";
-$a->strings["Virgin"] = "Девственница";
-$a->strings["Deviant"] = "Deviant";
-$a->strings["Fetish"] = "Фетиш";
-$a->strings["Oodles"] = "Групповой";
-$a->strings["Nonsexual"] = "Нет интереса к сексу";
-$a->strings["Single"] = "Без пары";
-$a->strings["Lonely"] = "Пока никого нет";
-$a->strings["Available"] = "Доступный";
-$a->strings["Unavailable"] = "Не ищу никого";
-$a->strings["Has crush"] = "";
-$a->strings["Infatuated"] = "";
-$a->strings["Dating"] = "Свидания";
-$a->strings["Unfaithful"] = "Изменяю супругу";
-$a->strings["Sex Addict"] = "Люблю секс";
-$a->strings["Friends"] = "Друзья";
-$a->strings["Friends/Benefits"] = "Друзья / Предпочтения";
-$a->strings["Casual"] = "Обычный";
-$a->strings["Engaged"] = "Занят";
-$a->strings["Married"] = "Женат / Замужем";
-$a->strings["Imaginarily married"] = "";
-$a->strings["Partners"] = "Партнеры";
-$a->strings["Cohabiting"] = "Партнерство";
-$a->strings["Common law"] = "";
-$a->strings["Happy"] = "Счастлив/а/";
-$a->strings["Not looking"] = "";
-$a->strings["Swinger"] = "Свинг";
-$a->strings["Betrayed"] = "Преданный";
-$a->strings["Separated"] = "Разделенный";
-$a->strings["Unstable"] = "Нестабильный";
-$a->strings["Divorced"] = "Разведен(а)";
-$a->strings["Imaginarily divorced"] = "";
-$a->strings["Widowed"] = "Овдовевший";
-$a->strings["Uncertain"] = "Неопределенный";
-$a->strings["It's complicated"] = "";
-$a->strings["Don't care"] = "Не беспокоить";
-$a->strings["Ask me"] = "Спросите меня";
-$a->strings["Starts:"] = "Начало:";
-$a->strings["Finishes:"] = "Окончание:";
-$a->strings["(no subject)"] = "(без темы)";
-$a->strings[" on Last.fm"] = "";
-$a->strings["prev"] = "пред.";
-$a->strings["first"] = "первый";
-$a->strings["last"] = "последний";
-$a->strings["next"] = "след.";
-$a->strings["newer"] = "";
-$a->strings["older"] = "";
-$a->strings["No contacts"] = "Нет контактов";
-$a->strings["%d Contact"] = array(
-	0 => "%d контакт",
-	1 => "%d контактов",
-	2 => "%d контактов",
-);
-$a->strings["poke"] = "";
-$a->strings["poked"] = "";
-$a->strings["ping"] = "";
-$a->strings["pinged"] = "";
-$a->strings["prod"] = "";
-$a->strings["prodded"] = "";
-$a->strings["slap"] = "";
-$a->strings["slapped"] = "";
-$a->strings["finger"] = "";
-$a->strings["fingered"] = "";
-$a->strings["rebuff"] = "";
-$a->strings["rebuffed"] = "";
-$a->strings["happy"] = "";
-$a->strings["sad"] = "";
-$a->strings["mellow"] = "";
-$a->strings["tired"] = "";
-$a->strings["perky"] = "";
-$a->strings["angry"] = "";
-$a->strings["stupified"] = "";
-$a->strings["puzzled"] = "";
-$a->strings["interested"] = "";
-$a->strings["bitter"] = "";
-$a->strings["cheerful"] = "";
-$a->strings["alive"] = "";
-$a->strings["annoyed"] = "";
-$a->strings["anxious"] = "";
-$a->strings["cranky"] = "";
-$a->strings["disturbed"] = "";
-$a->strings["frustrated"] = "";
-$a->strings["motivated"] = "";
-$a->strings["relaxed"] = "";
-$a->strings["surprised"] = "";
-$a->strings["January"] = "Январь";
-$a->strings["February"] = "Февраль";
-$a->strings["March"] = "Март";
-$a->strings["April"] = "Апрель";
-$a->strings["May"] = "Май";
-$a->strings["June"] = "Июнь";
-$a->strings["July"] = "Июль";
-$a->strings["August"] = "Август";
-$a->strings["September"] = "Сентябрь";
-$a->strings["October"] = "Октябрь";
-$a->strings["November"] = "Ноябрь";
-$a->strings["December"] = "Декабрь";
-$a->strings["bytes"] = "байт";
-$a->strings["Click to open/close"] = "Нажмите, чтобы открыть / закрыть";
-$a->strings["default"] = "значение по умолчанию";
-$a->strings["Select an alternate language"] = "Выбор альтернативного языка";
-$a->strings["activity"] = "активность";
-$a->strings["post"] = "";
-$a->strings["Item filed"] = "";
-$a->strings["Sharing notification from Diaspora network"] = "Делиться уведомлениями из сети Diaspora";
-$a->strings["Attachments:"] = "Вложения:";
-$a->strings["view full size"] = "посмотреть в полный размер";
-$a->strings["Embedded content"] = "Встроенное содержание";
-$a->strings["Embedding disabled"] = "Встраивание отключено";
-$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."] = "";
-$a->strings["Default privacy group for new contacts"] = "";
-$a->strings["Everybody"] = "Каждый";
-$a->strings["edit"] = "редактировать";
-$a->strings["Edit group"] = "Редактировать группу";
-$a->strings["Create a new group"] = "Создать новую группу";
-$a->strings["Contacts not in any group"] = "";
-$a->strings["Logout"] = "Выход";
-$a->strings["End this session"] = "Конец этой сессии";
-$a->strings["Status"] = "Статус";
-$a->strings["Sign in"] = "Вход";
-$a->strings["Home Page"] = "Главная страница";
-$a->strings["Create an account"] = "Создать аккаунт";
-$a->strings["Help and documentation"] = "Помощь и документация";
-$a->strings["Apps"] = "Приложения";
-$a->strings["Addon applications, utilities, games"] = "Дополнительные приложения, утилиты, игры";
-$a->strings["Search site content"] = "Поиск по сайту";
-$a->strings["Conversations on this site"] = "Беседы на этом сайте";
-$a->strings["Directory"] = "Каталог";
-$a->strings["People directory"] = "Каталог участников";
-$a->strings["Conversations from your friends"] = "Беседы с друзьями";
-$a->strings["Friend Requests"] = "Запросы на добавление в список друзей";
-$a->strings["See all notifications"] = "Посмотреть все уведомления";
-$a->strings["Mark all system notifications seen"] = "";
-$a->strings["Private mail"] = "Личная почта";
-$a->strings["Inbox"] = "Входящие";
-$a->strings["Outbox"] = "Исходящие";
-$a->strings["Manage"] = "Управлять";
-$a->strings["Manage other pages"] = "Управление другими страницами";
-$a->strings["Profiles"] = "Профили";
-$a->strings["Manage/edit profiles"] = "Управление / редактирование профилей";
-$a->strings["Manage/edit friends and contacts"] = "Управление / редактирование друзей и контактов";
-$a->strings["Site setup and configuration"] = "Установка и конфигурация сайта";
-$a->strings["Nothing new here"] = "Ничего нового здесь";
-$a->strings["Add New Contact"] = "Добавить контакт";
-$a->strings["Enter address or web location"] = "Введите адрес или веб-местонахождение";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Пример: bob@example.com, http://example.com/barbara";
-$a->strings["%d invitation available"] = array(
-	0 => "%d приглашение доступно",
-	1 => "%d приглашений доступно",
-	2 => "%d приглашений доступно",
-);
-$a->strings["Find People"] = "Поиск людей";
-$a->strings["Enter name or interest"] = "Введите имя или интерес";
-$a->strings["Connect/Follow"] = "Подключиться/Следовать";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Примеры: Роберт Morgenstein, Рыбалка";
-$a->strings["Random Profile"] = "";
-$a->strings["Networks"] = "Сети";
-$a->strings["All Networks"] = "Все сети";
-$a->strings["Saved Folders"] = "";
-$a->strings["Everything"] = "Всё";
-$a->strings["Categories"] = "Категории";
-$a->strings["Logged out."] = "Выход из системы.";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "";
-$a->strings["The error message was:"] = "";
-$a->strings["Miscellaneous"] = "Разное";
-$a->strings["year"] = "год";
-$a->strings["month"] = "мес.";
-$a->strings["day"] = "день";
-$a->strings["never"] = "никогда";
-$a->strings["less than a second ago"] = "менее сек. назад";
-$a->strings["week"] = "неделя";
-$a->strings["hour"] = "час";
-$a->strings["hours"] = "час.";
-$a->strings["minute"] = "минута";
-$a->strings["minutes"] = "мин.";
-$a->strings["second"] = "секунда";
-$a->strings["seconds"] = "сек.";
-$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s назад";
-$a->strings["%s's birthday"] = "";
-$a->strings["Happy Birthday %s"] = "";
-$a->strings["From: "] = "От: ";
-$a->strings["Image/photo"] = "Изображение / Фото";
-$a->strings["$1 wrote:"] = "$1 написал:";
-$a->strings["Encrypted content"] = "";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Не могу найти информацию для DNS-сервера базы данных '%s'";
-$a->strings["[no subject]"] = "[без темы]";
-$a->strings["Visible to everybody"] = "Видимо всем";
-$a->strings["Friendica Notification"] = "Friendica уведомления";
-$a->strings["Thank You,"] = "Спасибо,";
-$a->strings["%s Administrator"] = "%s администратор";
-$a->strings["%s <!item_type!>"] = "";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "";
-$a->strings["%1\$s sent you %2\$s."] = "";
-$a->strings["a private message"] = "личное сообщение";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "";
-$a->strings["%s commented on an item/conversation you have been following."] = "";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "";
-$a->strings["[Friendica:Notify] %s tagged you"] = "";
-$a->strings["%1\$s tagged you at %2\$s"] = "";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "";
-$a->strings["%1\$s poked you at %2\$s"] = "";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "";
-$a->strings["%1\$s tagged your post at %2\$s"] = "";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Сообщение] получен запрос";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "";
-$a->strings["You may visit their profile at %s"] = "";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Посетите %s для подтверждения или отказа запроса.";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "";
-$a->strings["Name:"] = "Имя:";
-$a->strings["Photo:"] = "Фото:";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "";
-$a->strings["Connect URL missing."] = "Connect-URL отсутствует.";
-$a->strings["This site is not configured to allow communications with other networks."] = "Данный сайт не настроен так, чтобы держать связь с другими сетями.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Обнаружены несовместимые протоколы связи или каналы.";
-$a->strings["The profile address specified does not provide adequate information."] = "Указанный адрес профиля не дает адекватной информации.";
-$a->strings["An author or name was not found."] = "Автор или имя не найдены.";
-$a->strings["No browser URL could be matched to this address."] = "Нет URL браузера, который соответствует этому адресу.";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "";
-$a->strings["Use mailto: in front of address to force email check."] = "";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Указанный адрес профиля принадлежит сети, недоступной на этом сайта.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Ограниченный профиль. Этот человек не сможет получить прямые / личные уведомления от вас.";
-$a->strings["Unable to retrieve contact information."] = "Невозможно получить контактную информацию.";
-$a->strings["following"] = "следует";
-$a->strings["A new person is sharing with you at "] = "Новый человек делится с вами";
-$a->strings["You have a new follower at "] = "У вас есть новый фолловер на ";
-$a->strings["Archives"] = "";
-$a->strings["An invitation is required."] = "Требуется приглашение.";
-$a->strings["Invitation could not be verified."] = "Приглашение не может быть проверено.";
-$a->strings["Invalid OpenID url"] = "Неверный URL OpenID";
-$a->strings["Please enter the required information."] = "Пожалуйста, введите необходимую информацию.";
-$a->strings["Please use a shorter name."] = "Пожалуйста, используйте более короткое имя.";
-$a->strings["Name too short."] = "Имя слишком короткое.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Кажется, что это ваше неполное (Имя Фамилия) имя.";
-$a->strings["Your email domain is not among those allowed on this site."] = "Домен вашего адреса электронной почты не относится к числу разрешенных на этом сайте.";
-$a->strings["Not a valid email address."] = "Неверный адрес электронной почты.";
-$a->strings["Cannot use that email."] = "Нельзя использовать этот Email.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Ваш \"ник\" может содержать только \"a-z\", \"0-9\", \"-\", и \"_\", а также должен начинаться с буквы.";
-$a->strings["Nickname is already registered. Please choose another."] = "Такой ник уже зарегистрирован. Пожалуйста, выберите другой.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась.";
-$a->strings["An error occurred during registration. Please try again."] = "Ошибка при регистрации. Пожалуйста, попробуйте еще раз.";
-$a->strings["An error occurred creating your default profile. Please try again."] = "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз.";
-$a->strings["Welcome "] = "Добро пожаловать, ";
-$a->strings["Please upload a profile photo."] = "Пожалуйста, загрузите фотографию профиля.";
-$a->strings["Welcome back "] = "Добро пожаловать обратно, ";
-$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."] = "";
-$a->strings["stopped following"] = "остановлено следование";
-$a->strings["Poke"] = "";
-$a->strings["View Status"] = "";
-$a->strings["View Profile"] = "";
-$a->strings["View Photos"] = "";
-$a->strings["Network Posts"] = "";
-$a->strings["Edit Contact"] = "";
-$a->strings["Send PM"] = "Отправить ЛС";
-$a->strings["%1\$s poked %2\$s"] = "";
-$a->strings["post/item"] = "";
-$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s пометил %2\$s %3\$s как Фаворит";
-$a->strings["Categories:"] = "";
-$a->strings["Filed under:"] = "";
-$a->strings["remove"] = "удалить";
-$a->strings["Delete Selected Items"] = "Удалить выбранные позиции";
-$a->strings["%s likes this."] = "%s нравится это.";
-$a->strings["%s doesn't like this."] = "%s не нравится это.";
-$a->strings["<span  %1\$s>%2\$d people</span> like this."] = "<span  %1\$s>%2\$d чел.</span> нравится это.";
-$a->strings["<span  %1\$s>%2\$d people</span> don't like this."] = "<span  %1\$s>%2\$d чел.</span> не нравится это.";
-$a->strings["and"] = "и";
-$a->strings[", and %d other people"] = ", и %d других чел.";
-$a->strings["%s like this."] = "%s нравится это.";
-$a->strings["%s don't like this."] = "%s не нравится это.";
-$a->strings["Visible to <strong>everybody</strong>"] = "Видимое <strong>всем</strong>";
-$a->strings["Please enter a video link/URL:"] = "";
-$a->strings["Please enter an audio link/URL:"] = "";
-$a->strings["Tag term:"] = "";
-$a->strings["Where are you right now?"] = "И где вы сейчас?";
-$a->strings["upload photo"] = "загрузить фото";
-$a->strings["attach file"] = "приложить файл";
-$a->strings["web link"] = "веб-ссылка";
-$a->strings["Insert video link"] = "Вставить ссылку видео";
-$a->strings["video link"] = "видео-ссылка";
-$a->strings["Insert audio link"] = "Вставить ссылку аудио";
-$a->strings["audio link"] = "аудио-ссылка";
-$a->strings["set location"] = "установить местонахождение";
-$a->strings["clear location"] = "убрать местонахождение";
-$a->strings["permissions"] = "разрешения";
-$a->strings["Click here to upgrade."] = "";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "";
-$a->strings["This action is not available under your subscription plan."] = "";
-$a->strings["Delete this item?"] = "Удалить этот элемент?";
-$a->strings["show fewer"] = "показать меньше";
+$a->strings["Set background image"] = "";
+$a->strings["Set background colour"] = "";
+$a->strings["Set section background image"] = "";
+$a->strings["Set section background colour"] = "";
+$a->strings["Set colour of items - use hex"] = "";
+$a->strings["Set colour of links - use hex"] = "";
+$a->strings["Set max-width for items.  Default 400px"] = "";
+$a->strings["Set min-width for items.  Default 240px"] = "";
+$a->strings["Set the generic content wrapper width.  Default 48%"] = "";
+$a->strings["Set colour of fonts - use hex"] = "";
+$a->strings["Set background-size element"] = "";
+$a->strings["Item opacity"] = "";
+$a->strings["Display post previews only"] = "";
+$a->strings["Display side bar on channel page"] = "";
+$a->strings["Colour of the navigation bar"] = "";
+$a->strings["Item float"] = "";
+$a->strings["Left offset of the section element"] = "";
+$a->strings["Right offset of the section element"] = "";
+$a->strings["Section width"] = "";
+$a->strings["Left offset of the aside"] = "";
+$a->strings["Right offset of the aside element"] = "";
+$a->strings["None"] = "";
+$a->strings["Header image"] = "";
+$a->strings["Header image only on profile pages"] = "";
 $a->strings["Update %s failed. See error logs."] = "";
-$a->strings["Update Error at %s"] = "";
-$a->strings["Create a New Account"] = "Создать новый аккаунт";
-$a->strings["Nickname or Email address: "] = "Ник или адрес электронной почты: ";
-$a->strings["Password: "] = "Пароль: ";
-$a->strings["Or login using OpenID: "] = "";
-$a->strings["Forgot your password?"] = "Забыли пароль?";
-$a->strings["Requested account is not available."] = "";
-$a->strings["Edit profile"] = "Редактировать профиль";
-$a->strings["Message"] = "";
-$a->strings["g A l F d"] = "g A l F d";
-$a->strings["F d"] = "F d";
-$a->strings["[today]"] = "[сегодня]";
-$a->strings["Birthday Reminders"] = "Напоминания о днях рождения";
-$a->strings["Birthdays this week:"] = "Дни рождения на этой неделе:";
-$a->strings["[No description]"] = "[без описания]";
-$a->strings["Event Reminders"] = "Напоминания о мероприятиях";
-$a->strings["Events this week:"] = "Мероприятия на этой неделе:";
-$a->strings["Status Messages and Posts"] = "";
-$a->strings["Profile Details"] = "";
-$a->strings["Events and Calendar"] = "";
-$a->strings["Only You Can See This"] = "";
+$a->strings["Update Error at %s"] = "Ошибка обновления на %s";
+$a->strings["Create an account to access services and applications within the Red Matrix"] = "";
+$a->strings["Password"] = "Пароль";
+$a->strings["Remember me"] = "Запомнить";
+$a->strings["Forgot your password?"] = "Забыли пароль или логин?";
+$a->strings["permission denied"] = "доступ запрещен";
+$a->strings["Got Zot?"] = "Got Zot?";
+$a->strings["toggle mobile"] = "мобильное подключение";
-- 
cgit v1.2.3


From d9d894cbb3ef1be5c4f0b30ed703f229d4c61473 Mon Sep 17 00:00:00 2001
From: Christian Vogeley <christian.vogeley@hotmail.de>
Date: Mon, 13 Jan 2014 22:32:13 +0100
Subject: Confirm box: fall back to standard js confirm dialog if bootstrap
 isn't available

---
 view/tpl/jot-header.tpl | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

(limited to 'view')

diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl
index 687ad7302..878e1e7da 100755
--- a/view/tpl/jot-header.tpl
+++ b/view/tpl/jot-header.tpl
@@ -309,11 +309,16 @@ function enableOnUser(){
 <script>
 $( document ).on( "click", ".wall-item-delete-link,.page-delete-link,.layout-delete-link,.block-delete-link", function(e) {
 	var link = $(this).attr("href"); // "get" the intended link in a var
-    e.preventDefault();
-  	bootbox.confirm("<h4>{{$confirmdelete}}</h4>", function(result) {
+
+    if (typeof(eval($.fn.modal)) === 'function'){
+        e.preventDefault();
+  		bootbox.confirm("<h4>{{$confirmdelete}}</h4>",function(result) {
     				if (result) {
       				document.location.href = link;}
-      				});
+      				});}
+    else { 
+    	return confirm("{{$confirmdelete}}");
+    }			
     });
 </script>
 
-- 
cgit v1.2.3


From cd72fd3f01125e50787ff42469a571e1b17ca802 Mon Sep 17 00:00:00 2001
From: Thomas Willingham <founder@kakste.com>
Date: Thu, 16 Jan 2014 02:53:05 +0000
Subject: Tweak "typical" perms macro

---
 view/js/mod_settings.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'view')

diff --git a/view/js/mod_settings.js b/view/js/mod_settings.js
index 7f9a9e960..1c411113e 100644
--- a/view/js/mod_settings.js
+++ b/view/js/mod_settings.js
@@ -76,9 +76,9 @@ function channel_privacy_macro(n) {
         $('#id_view_contacts option').eq(5).attr('selected','selected');
         $('#id_view_storage option').eq(5).attr('selected','selected');
         $('#id_view_pages option').eq(5).attr('selected','selected');
-        $('#id_send_stream option').eq(1).attr('selected','selected');
+        $('#id_send_stream option').eq(2).attr('selected','selected');
         $('#id_post_wall option').eq(1).attr('selected','selected');
-        $('#id_post_comments option').eq(1).attr('selected','selected');
+        $('#id_post_comments option').eq(2).attr('selected','selected');
         $('#id_post_mail option').eq(1).attr('selected','selected');
         $('#id_post_photos option').eq(0).attr('selected','selected');
         $('#id_tag_deliver option').eq(1).attr('selected','selected');
@@ -117,4 +117,4 @@ function channel_privacy_macro(n) {
 
 
 
-}
\ No newline at end of file
+}
-- 
cgit v1.2.3


From 6920c203d16df3571c98d818636b1b2c765ce2b7 Mon Sep 17 00:00:00 2001
From: Thomas Willingham <founder@kakste.com>
Date: Thu, 16 Jan 2014 04:18:19 +0000
Subject: Remove deprecated CSS - there is a dark schema now, and shadows and
 stuff are cofigurable.

---
 view/theme/redbasic/css/dark.css  | 186 --------------------------------------
 view/theme/redbasic/css/fancy.css | 107 ----------------------
 2 files changed, 293 deletions(-)
 delete mode 100644 view/theme/redbasic/css/dark.css
 delete mode 100644 view/theme/redbasic/css/fancy.css

(limited to 'view')

diff --git a/view/theme/redbasic/css/dark.css b/view/theme/redbasic/css/dark.css
deleted file mode 100644
index 3bcf15bc9..000000000
--- a/view/theme/redbasic/css/dark.css
+++ /dev/null
@@ -1,186 +0,0 @@
-/* This file is deprecated.  We'll keep it here as reference until somebody
-defines a dark colour scheme */
-
-
-body {	font-family: sans-serif;
-	font-size: 12px;
-	background-color: #101010;
-	background-image: -moz-linear-gradient(top, #000 16%, #101010 82%);
-	background-image: linear-gradient(bottom, #000 16%, #101010 82%);
-	background-image: -o-linear-gradient(bottom, #000 16%, #101010 82%);
-	background-image: -webkit-linear-gradient(bottom, #000 16%, #101010 82%);
-	background-image: -ms-linear-gradient(bottom, #000 16%, #101010 82%);
-	background-repeat: no-repeat;
-	background-attachment: fixed;
-	color: #eec;
-	
-}
-
-aside {
-border: none;
-color: #fff;
-}
-
-.fn {
-  color: #fff;
-}
-
-.acl-list-item,
-.profile-jot-net {
-  color: #000;
-}
-
-
-.tab.active {
-	color: #fff;
-}
-
-blockquote {color: #000;}
-
-.wall-item-content-wrapper {
-	background: #262626;
-	border-radius: 5px; 
-	box-shadow: 12px 12px 12px #000; 
-	margin-bottom: 20px;
-}
-
-.wall-item-content-wrapper.comment {
-	margin-left: 50px;
-	box-shadow: 5px 5px 5px #000; 
-}
-
-.comment-edit-text-empty, .comment-edit-text-full {
-	border-radius: 5px 5px 5px 5px;
-	box-shadow: 5px 5px 5px #000 inset;
-}
-
-
-#profile-jot-text {
-	height: 20px;
-	color:#000;
-	border: 1px solid #cccccc;
-	padding: 8px;
-	margin-right: 0px;
-	width: 90%; 
-	-moz-border-radius: 5px;
-	border-radius: 5px;	
-	box-shadow: 4px 4px 3px 0 #666 inset; 
-}
-#profile-jot-text:hover {
-	color: #000000;
-}
-
-#profile-jot-submit {
-    height: auto;
-    background-color: #0080FF;
-    color: #eeeeec;
-    font-weight: bold;
-    -webkit-border-radius: 5px;
-    -moz-border-radius: 5px;
-    border-radius: 5px;
-    border: 2px outset #222420 !important;
-    margin: 0;
-    float: right;
-    text-shadow: 1px 1px #111;
-    width: auto;
-    box-shadow: 5px 5px 5px #444;
-}
-
-
-.widget {
-	border-bottom: 1px solid #eec;
-	padding: 8px;
-	margin-top: 5px;
-	-moz-border-radius:5px;
-	-webkit-border-radius:5px;
-	border-radius:5px;
-
-}
-
-nav a,
-nav a:active,
-nav a:visited,
-nav a:link {
-  color: #ffffff;
-  text-decoration: none;
-  outline: none;
-}
-
-.nav-menu.selected a {
-  color: #0080ff !important;
-}
-
-nav .nav-menu-icon {
-  position: relative;
-  height: 22px;
-  padding: 5px;
-/*  margin: 3px 10px; */
-  -moz-border-radius: 5px 5px 0 0;
-  -webkit-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
-
-nav .nav-notify {
-  background-color: #0080FF;
-  color: #fff;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  opacity: 0.6;
-  filter:alpha(opacity=60);
-
-}
-.nav-notify:hover, nav .nav-notify.selected span {
-	color: #ffffff;
-}
-
-ul.menu-popup {
-  
-  position: absolute;
-  display: none;
-  width: 10em;
-  background: #000;
-  color: #fff;
-  padding: 0px;
-  list-style: none;
-  border-radius: 0px 0px 20px 20px;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-ul.menu-popup a {
-  display: block;
-  color: #FFFFFF;
-  padding: 5px 10px;
-  text-decoration: none;
-}
-
-
-ul.menu-popup a:hover {
-  background-color: #888888;
-  color: #FFFFFF;
-}
-ul.menu-popup .menu-sep {
-  border-top: 1px solid #9eabb0;
-}
-
-.wall-item-photo, 
-.photo,
-.contact-block-img,
-.my-comment-photo {
-  border-radius: 5px;
-  box-shadow: 4px 4px 3px #000;
-}
-
-
-div#pagelist-content-wrapper {
-width: 80%;
-background: #111;
-margin-left: auto;
-margin-right: auto;
-}
-
-div.page-list-item {
-margin: 20px;
-}
diff --git a/view/theme/redbasic/css/fancy.css b/view/theme/redbasic/css/fancy.css
deleted file mode 100644
index 9b8899d2f..000000000
--- a/view/theme/redbasic/css/fancy.css
+++ /dev/null
@@ -1,107 +0,0 @@
-/*This file is deprecated.  We'll keep it for reference until we provide window decorations */
-
-
-aside {
-border-radius: $radiuspx;}
-
-
-.tab {
-    height: auto;
-    background-color: #f00;
-    color: #fff !important;
-    font-weight: bold;
-    -webkit-border-radius: $radiuspx;
-    -moz-border-radius: $radiuspx;
-    border-radius: $radiuspx;
-    margin: 0;
-    width: auto;
-    margin-left: 8px;
-    padding: 4px;
-    text-align: center;
-}
-.tab:hover, .tab.active:hover {
-    background: #d00;
-    color: #fff; 
- ;
-}
-.tab:active {
-    background: #fff;
-    color: #f00;
-}
-.tab.active {
-    background: #f00;
-    color: #fff; 
-    box-shadow: 3px 3px 3px #333 inset;
-    padding: 5px; /* strageness of the human mind - has to be larger than inactive tabs, or it looks smaller than them */
-}
-
-
-
-.wall-item-content-wrapper {
-	position: relative;
-	border-radius: $radiuspx;
-	box-shadow: 8px 8px 8px #000;
-	border: 1px solid #eec;
-}
-
-.wall-item-content-wrapper.comment {
-	margin-top: 15px;
-}
-
-.wall-item-like:hover, .wall-item-dislike:hover{
-opacity: 1;
-}
-
-.wall-item-author {
-	margin-top: 10px;
-}
-
-.comment-edit-wrapper {
-	margin-top: 15px;
-	background: #ffffff;
-	margin-left: 50px;
-}
-
-#profile-jot-submit {
-    background-color: #dd0000;
-}
-
-ul.menu-popup {
-  background: #dd0000;
-  color: #eec;
-  border-radius: $radiuspx;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-ul.menu-popup a {
-  color: #eec;
-}
-ul.menu-popup a:hover {
-  background-color: #eec;
-  color: #f00;
-}
-
-section {
-left: 0px;
-width: 800px;
-margin-left: auto;
-margin-right: auto;
-}
-body {background-color: #d00 !important;}
-
-.page-content-wrapper {background: #fff;
-		color: #000;
-		border-radius: 20px;
-		box-shadow: 5px 5px 5px #111;
-}
-
-h3.page-title {
-padding-top: 30px;
-		color: #033}
-.page-body {padding: 40px;}
-
-.page-body strong {color: #033;}
-
-.nav-links {margin-top: 5px;}
-- 
cgit v1.2.3


From a59b7c97f45d0c17e925284a42e2610d734f1a24 Mon Sep 17 00:00:00 2001
From: Thomas Willingham <founder@kakste.com>
Date: Fri, 17 Jan 2014 23:30:33 +0000
Subject: Missed these from git add...a year ago

---
 view/tpl/profile_advanced.tpl | 7 +++++++
 1 file changed, 7 insertions(+)

(limited to 'view')

diff --git a/view/tpl/profile_advanced.tpl b/view/tpl/profile_advanced.tpl
index 9f17a0ffa..f25608430 100755
--- a/view/tpl/profile_advanced.tpl
+++ b/view/tpl/profile_advanced.tpl
@@ -111,6 +111,13 @@
 </dl>
 {{/if}}
 
+{{if $profile.channels}}
+<dl id="aprofile-channels" class="aprofile">
+ <dt>{{$profile.channels.0}}</dt>
+ <dd>{{$profile.channels.1}}</dd>
+</dl>
+{{/if}}
+
 
 {{if $profile.music}}
 <dl id="aprofile-music" class="aprofile">
-- 
cgit v1.2.3


From a13593590b5e5488554225ba9ff9bced24cffd0c Mon Sep 17 00:00:00 2001
From: Michael Meer <michael@meer.name>
Date: Mon, 20 Jan 2014 12:12:40 +0100
Subject: added buttons to perform later hubloc actions

---
 view/tpl/admin_hubloc.tpl | 2 ++
 1 file changed, 2 insertions(+)

(limited to 'view')

diff --git a/view/tpl/admin_hubloc.tpl b/view/tpl/admin_hubloc.tpl
index a9f250652..e1c8b3647 100755
--- a/view/tpl/admin_hubloc.tpl
+++ b/view/tpl/admin_hubloc.tpl
@@ -14,6 +14,8 @@
 			
 			{{foreach $hubloc as $hub}}<tr>
 			<td>{{$hub.hubloc_id}}</td><td>{{$hub.hubloc_addr}}</td><td>{{$hub.hubloc_host}}</td><td>{{$hub.hubloc_status}}</td>
+			<td><input type="hidden" name="hublocid" value="{{$hub.hubloc_id}}"><input type="submit" name="check" value="check" ></td>
+			<td><input type="hidden" name="hublocid" value="{{$hub.hubloc_id}}"><input type="submit" name="repair" value="repair" ></td>
 			</tr>{{/foreach}}
 		</tbody>
 	</table>
-- 
cgit v1.2.3


From 86e2237555e23a83dcb5286488af677f5d52d610 Mon Sep 17 00:00:00 2001
From: Michael Meer <michael@meer.name>
Date: Mon, 20 Jan 2014 13:03:24 +0100
Subject: no need to have a doule hublocid

---
 view/tpl/admin_hubloc.tpl | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

(limited to 'view')

diff --git a/view/tpl/admin_hubloc.tpl b/view/tpl/admin_hubloc.tpl
index e1c8b3647..6e7629094 100755
--- a/view/tpl/admin_hubloc.tpl
+++ b/view/tpl/admin_hubloc.tpl
@@ -14,8 +14,9 @@
 			
 			{{foreach $hubloc as $hub}}<tr>
 			<td>{{$hub.hubloc_id}}</td><td>{{$hub.hubloc_addr}}</td><td>{{$hub.hubloc_host}}</td><td>{{$hub.hubloc_status}}</td>
-			<td><input type="hidden" name="hublocid" value="{{$hub.hubloc_id}}"><input type="submit" name="check" value="check" ></td>
-			<td><input type="hidden" name="hublocid" value="{{$hub.hubloc_id}}"><input type="submit" name="repair" value="repair" ></td>
+			<td><input type="hidden" name="hublocid" value="{{$hub.hubloc_id}}">
+			<input type="submit" name="check" value="check" >
+			<input type="submit" name="repair" value="repair" ></td>
 			</tr>{{/foreach}}
 		</tbody>
 	</table>
-- 
cgit v1.2.3


From 60416d6f33e94d44bab4e47e616b363b36dbd777 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Tue, 21 Jan 2014 14:56:42 -0800
Subject: fix the admin interface to pending registrations

---
 view/tpl/admin_users.tpl | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

(limited to 'view')

diff --git a/view/tpl/admin_users.tpl b/view/tpl/admin_users.tpl
index 3549dc5c2..65fffd17c 100755
--- a/view/tpl/admin_users.tpl
+++ b/view/tpl/admin_users.tpl
@@ -29,9 +29,8 @@
 				<tbody>
 			{{foreach $pending as $u}}
 				<tr>
-					<td class="created">{{$u.created}}</td>
-					<td class="name">{{$u.name}}</td>
-					<td class="email">{{$u.email}}</td>
+					<td class="created">{{$u.account_created}}</td>
+					<td class="email">{{$u.account_email}}</td>
 					<td class="checkbox"><input type="checkbox" class="pending_ckbx" id="id_pending_{{$u.hash}}" name="pending[]" value="{{$u.hash}}" /></td>
 					<td class="tools">
 						<a href="{{$baseurl}}/regmod/allow/{{$u.hash}}" title='{{$approve}}'><i class='icon-thumbs-up-alt admin-icons'></i></a>
-- 
cgit v1.2.3


From 05951a9877a2e8d0369ae3201a4379016b9b4968 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Tue, 21 Jan 2014 18:45:40 -0800
Subject: add primary webbie to directory popup

---
 view/tpl/direntry_large.tpl | 4 ++++
 1 file changed, 4 insertions(+)

(limited to 'view')

diff --git a/view/tpl/direntry_large.tpl b/view/tpl/direntry_large.tpl
index befd2a27a..a3fa7e4c3 100755
--- a/view/tpl/direntry_large.tpl
+++ b/view/tpl/direntry_large.tpl
@@ -12,10 +12,14 @@
 
 <div class="clear"></div>
 
+
 <div class="contact-name" id="directory-name-{{$id}}"  >{{$name}}</div>
 {{if $connect}}
 <div class="directory-connect"><a href="{{$connect}}">{{$conn_label}}</a></div>
 {{/if}}
+
+<div class="contact-webbie">{{$address}}</div>
+
 <div class="contact-details">{{$details}}</div>
 {{if $marital}}
 <div class="directory-marital">{{$marital}} </div>
-- 
cgit v1.2.3


From ffabb4cc867f59d86380eced3253053d368327f2 Mon Sep 17 00:00:00 2001
From: Michael Meer <michael@meer.name>
Date: Wed, 22 Jan 2014 11:29:49 +0100
Subject: reorg formula data for hubloc checks

---
 view/tpl/admin_hubloc.tpl | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

(limited to 'view')

diff --git a/view/tpl/admin_hubloc.tpl b/view/tpl/admin_hubloc.tpl
index 6e7629094..ea840e1b3 100755
--- a/view/tpl/admin_hubloc.tpl
+++ b/view/tpl/admin_hubloc.tpl
@@ -1,9 +1,6 @@
 <div class="generic-content-wrapper" id='adminpage'>
 	<h1>{{$title}} - {{$page}}</h1>
 
-	<form action="{{$baseurl}}/admin/hubloc" method="post">
-	<input type='hidden' name='form_security_token' value='{{$form_security_token}}'>
-	
 	<table id='server'>
 		<thead>
 			<tr>
@@ -14,9 +11,13 @@
 			
 			{{foreach $hubloc as $hub}}<tr>
 			<td>{{$hub.hubloc_id}}</td><td>{{$hub.hubloc_addr}}</td><td>{{$hub.hubloc_host}}</td><td>{{$hub.hubloc_status}}</td>
-			<td><input type="hidden" name="hublocid" value="{{$hub.hubloc_id}}">
+			<td>
+			<form action="{{$baseurl}}/admin/hubloc" method="post">
+			<input type="hidden" name="hublocid" value="{{$hub.hubloc_id}}">
+			<input type='hidden' name='form_security_token' value='{{$form_security_token}}'>
 			<input type="submit" name="check" value="check" >
 			<input type="submit" name="repair" value="repair" ></td>
+			</form>
 			</tr>{{/foreach}}
 		</tbody>
 	</table>
-- 
cgit v1.2.3


From 3869b16298041887d0c90c884ffb5b22df8d56e9 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Fri, 24 Jan 2014 14:35:32 -0800
Subject: prettyphoto (js|css) not found

---
 view/php/theme_init.php | 3 ---
 1 file changed, 3 deletions(-)

(limited to 'view')

diff --git a/view/php/theme_init.php b/view/php/theme_init.php
index a8edb0673..0e473f728 100644
--- a/view/php/theme_init.php
+++ b/view/php/theme_init.php
@@ -8,10 +8,8 @@ head_add_css('library/fancybox/jquery.fancybox-1.3.4.css');
 head_add_css('library/tiptip/tipTip.css');
 head_add_css('library/jgrowl/jquery.jgrowl.css');
 head_add_css('library/jslider/css/jslider.css');
-head_add_css('library/prettyphoto/css/prettyPhoto.css');
 head_add_css('library/colorbox/colorbox.css');
 
-// head_add_css('library/font_awesome/css/font-awesome.min.css');
 head_add_css('view/css/conversation.css');
 head_add_css('view/css/bootstrap-red.css');
 head_add_css('view/css/widgets.css');
@@ -43,7 +41,6 @@ head_add_js('main.js');
 head_add_js('crypto.js');
 head_add_js('library/jslider/bin/jquery.slider.min.js');
 head_add_js('docready.js');
-head_add_js('library/prettyphoto/js/jquery.prettyPhoto.js');
 head_add_js('library/colorbox/jquery.colorbox-min.js');
 head_add_js('library/bootstrap-datetimepicker/js/moment.js');
 head_add_js('library/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js');
-- 
cgit v1.2.3


From d3a0d37b0ddb73fed81fa71d355d6cb596e139ca Mon Sep 17 00:00:00 2001
From: Thomas Willingham <founder@kakste.com>
Date: Fri, 24 Jan 2014 23:58:41 +0000
Subject: Add admin info to admin panel and site info.

Since we can have multiple admins, this is freeform bbcode.
---
 view/tpl/admin_site.tpl | 1 +
 view/tpl/siteinfo.tpl   | 2 ++
 2 files changed, 3 insertions(+)

(limited to 'view')

diff --git a/view/tpl/admin_site.tpl b/view/tpl/admin_site.tpl
index b0f9d4a74..9b90fb4b0 100755
--- a/view/tpl/admin_site.tpl
+++ b/view/tpl/admin_site.tpl
@@ -42,6 +42,7 @@
 
 	{{include file="field_input.tpl" field=$sitename}}
 	{{include file="field_textarea.tpl" field=$banner}}
+	{{include file="field_textarea.tpl" field=$admininfo}}
 	{{include file="field_select.tpl" field=$language}}
 	{{include file="field_select.tpl" field=$theme}}
     {{include file="field_select.tpl" field=$theme_mobile}}
diff --git a/view/tpl/siteinfo.tpl b/view/tpl/siteinfo.tpl
index a60b406cf..4baa1969b 100755
--- a/view/tpl/siteinfo.tpl
+++ b/view/tpl/siteinfo.tpl
@@ -7,6 +7,8 @@
 <p>{{$web_location}}</p>
 <p>{{$visit}}</p>
 <p>{{$bug_text}} <a href="{{$bug_link_url}}">{{$bug_link_text}}</a></p>
+<p>{{$adminlabel}}</p>
+<p>{{$admininfo}}</p>
 <p>{{$contact}}</p>
 <p>{{$plugins_text}}</p>
 {{if $plugins_list}}
-- 
cgit v1.2.3


From 88f25191e06ecf74f863f15e4f87c118a6c5dde0 Mon Sep 17 00:00:00 2001
From: Tobias Diekershoff <tobias.diekershoff@gmx.net>
Date: Sat, 25 Jan 2014 07:28:30 +0100
Subject: DE: update to the strings

---
 view/de/messages.po | 2515 ++++++++++++++++++++++++++-------------------------
 view/de/strings.php |  440 ++++-----
 2 files changed, 1481 insertions(+), 1474 deletions(-)

(limited to 'view')

diff --git a/view/de/messages.po b/view/de/messages.po
index c1d036c13..68f1e0dd5 100644
--- a/view/de/messages.po
+++ b/view/de/messages.po
@@ -1,5 +1,5 @@
-# Red Communications Project
-# Copyright (C) 2013 the Red Matrix Project
+# Red Matrix Project
+# Copyright (C) 2012-2014 the Red Matrix Project
 # This file is distributed under the same license as the Red package.
 # 
 # Translators:
@@ -14,13 +14,13 @@
 # Fraengii <frank@lumina-verte.org>, 2013
 # Oliver <post@toktan.org>, 2013
 # bavatar <tobias.diekershoff@gmx.net>, 2013-2014
-# zottel <transifex@zottel.net>, 2013
+# zottel <transifex@zottel.net>, 2013-2014
 msgid ""
 msgstr ""
 "Project-Id-Version: Red Matrix\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-01-10 00:02-0800\n"
-"PO-Revision-Date: 2014-01-13 06:23+0000\n"
+"POT-Creation-Date: 2014-01-23 02:30-0800\n"
+"PO-Revision-Date: 2014-01-25 06:22+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"
@@ -68,7 +68,7 @@ msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert."
 msgid "Public Timeline"
 msgstr "Öffentliche Zeitleiste"
 
-#: ../../include/nav.php:72 ../../include/nav.php:87 ../../boot.php:1415
+#: ../../include/nav.php:72 ../../include/nav.php:87 ../../boot.php:1420
 msgid "Logout"
 msgstr "Abmelden"
 
@@ -101,7 +101,7 @@ msgstr "Profile bearbeiten"
 msgid "Manage/Edit Profiles"
 msgstr "Verwalte/Bearbeite Profile"
 
-#: ../../include/nav.php:79 ../../include/conversation.php:1462
+#: ../../include/nav.php:79 ../../include/conversation.php:1473
 #: ../../mod/fbrowser.php:25
 msgid "Photos"
 msgstr "Fotos"
@@ -110,7 +110,7 @@ msgstr "Fotos"
 msgid "Your photos"
 msgstr "Deine Bilder"
 
-#: ../../include/nav.php:85 ../../boot.php:1416
+#: ../../include/nav.php:85 ../../boot.php:1421
 msgid "Login"
 msgstr "Anmelden"
 
@@ -131,7 +131,7 @@ msgstr "Klick zum Authentifizieren bei Deinem Heimat-Hub"
 msgid "Home Page"
 msgstr "Homepage"
 
-#: ../../include/nav.php:125 ../../mod/register.php:206 ../../boot.php:1392
+#: ../../include/nav.php:125 ../../mod/register.php:206 ../../boot.php:1397
 msgid "Register"
 msgstr "Registrieren"
 
@@ -156,7 +156,7 @@ 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:28
+#: ../../include/text.php:750 ../../mod/search.php:29
 msgid "Search"
 msgstr "Suche"
 
@@ -164,7 +164,7 @@ msgstr "Suche"
 msgid "Search site content"
 msgstr "Durchsuche Seiten-Inhalt"
 
-#: ../../include/nav.php:138 ../../mod/directory.php:209
+#: ../../include/nav.php:138 ../../mod/directory.php:210
 msgid "Directory"
 msgstr "Verzeichnis"
 
@@ -248,7 +248,7 @@ msgstr "Ausgang"
 msgid "New Message"
 msgstr "Neue Nachricht"
 
-#: ../../include/nav.php:171 ../../include/conversation.php:1482
+#: ../../include/nav.php:171 ../../include/conversation.php:1491
 #: ../../mod/events.php:354
 msgid "Events"
 msgstr "Veranstaltungen"
@@ -274,7 +274,7 @@ msgid "Manage Your Channels"
 msgstr "Verwalte Deine Kanäle"
 
 #: ../../include/nav.php:177 ../../include/widgets.php:487
-#: ../../mod/admin.php:785 ../../mod/admin.php:990
+#: ../../mod/admin.php:787 ../../mod/admin.php:992
 msgid "Settings"
 msgstr "Einstellungen"
 
@@ -306,14 +306,10 @@ msgstr "Nichts Neues hier"
 msgid "Please wait..."
 msgstr "Bitte warten..."
 
-#: ../../include/reddav.php:940
-msgid "Edit File properties"
-msgstr "Dateieigenschaften ändern"
-
-#: ../../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
+#: ../../include/Contact.php:104 ../../include/identity.php:625
+#: ../../include/widgets.php:115 ../../include/widgets.php:155
+#: ../../mod/directory.php:183 ../../mod/match.php:62 ../../mod/suggest.php:51
+#: ../../mod/dirprofile.php:166
 msgid "Connect"
 msgstr "Verbinden"
 
@@ -325,152 +321,6 @@ 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:29 ../../include/contact_widgets.php:87
-msgid "Categories"
-msgstr "Kategorien"
-
-#: ../../include/widgets.php:117 ../../mod/suggest.php:53
-msgid "Ignore/Hide"
-msgstr "Ignorieren/Verstecken"
-
-#: ../../include/widgets.php:123 ../../mod/connections.php:236
-msgid "Suggestions"
-msgstr "Vorschläge"
-
-#: ../../include/widgets.php:124
-msgid "See more..."
-msgstr "Mehr anzeigen..."
-
-#: ../../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:152
-msgid "Add New Connection"
-msgstr "Neue Verbindung hinzufügen"
-
-#: ../../include/widgets.php:153
-msgid "Enter the channel address"
-msgstr "Adresse des Kanals eingeben"
-
-#: ../../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:171
-msgid "Notes"
-msgstr "Notizen"
-
-#: ../../include/widgets.php:173 ../../include/text.php:738
-#: ../../include/text.php:752 ../../mod/filer.php:36
-msgid "Save"
-msgstr "Speichern"
-
-#: ../../include/widgets.php:243
-msgid "Remove term"
-msgstr "Eintrag löschen"
-
-#: ../../include/widgets.php:252 ../../include/features.php:50
-msgid "Saved Searches"
-msgstr "Gesicherte Suchanfragen"
-
-#: ../../include/widgets.php:253 ../../include/group.php:290
-msgid "add"
-msgstr "hinzufügen"
-
-#: ../../include/widgets.php:283 ../../include/features.php:64
-#: ../../include/contact_widgets.php:53
-msgid "Saved Folders"
-msgstr "Gesicherte Ordner"
-
-#: ../../include/widgets.php:286 ../../include/contact_widgets.php:56
-#: ../../include/contact_widgets.php:90
-msgid "Everything"
-msgstr "Alles"
-
-#: ../../include/widgets.php:318 ../../include/items.php:3566
-msgid "Archives"
-msgstr "Archive"
-
-#: ../../include/widgets.php:370
-msgid "Refresh"
-msgstr "Aktualisieren"
-
-#: ../../include/widgets.php:371 ../../mod/connedit.php:386
-msgid "Me"
-msgstr "Ich"
-
-#: ../../include/widgets.php:372 ../../mod/connedit.php:388
-msgid "Best Friends"
-msgstr "Beste Freunde"
-
-#: ../../include/widgets.php:373 ../../include/profile_selectors.php:42
-#: ../../include/identity.php:310 ../../mod/connedit.php:389
-msgid "Friends"
-msgstr "Freunde"
-
-#: ../../include/widgets.php:374
-msgid "Co-workers"
-msgstr "Kollegen"
-
-#: ../../include/widgets.php:375 ../../mod/connedit.php:390
-msgid "Former Friends"
-msgstr "ehem. Freunde"
-
-#: ../../include/widgets.php:376 ../../mod/connedit.php:391
-msgid "Acquaintances"
-msgstr "Bekanntschaften"
-
-#: ../../include/widgets.php:377
-msgid "Everybody"
-msgstr "Jeder"
-
-#: ../../include/widgets.php:409
-msgid "Account settings"
-msgstr "Konto-Einstellungen"
-
-#: ../../include/widgets.php:415
-msgid "Channel settings"
-msgstr "Kanal-Einstellungen"
-
-#: ../../include/widgets.php:421
-msgid "Additional features"
-msgstr "Zusätzliche Funktionen"
-
-#: ../../include/widgets.php:427
-msgid "Feature settings"
-msgstr "Funktions-Einstellungen"
-
-#: ../../include/widgets.php:433
-msgid "Display settings"
-msgstr "Anzeige-Einstellungen"
-
-#: ../../include/widgets.php:439
-msgid "Connected apps"
-msgstr "Verbundene Apps"
-
-#: ../../include/widgets.php:445
-msgid "Export channel"
-msgstr "Kanal exportieren"
-
-#: ../../include/widgets.php:457
-msgid "Automatic Permissions (Advanced)"
-msgstr "Automatische Berechtigungen (Erweitert)"
-
-#: ../../include/widgets.php:467
-msgid "Premium Channel Settings"
-msgstr "Prämium-Kanal Einstellungen"
-
-#: ../../include/widgets.php:476 ../../include/features.php:41
-#: ../../mod/sources.php:81
-msgid "Channel Sources"
-msgstr "Kanal Quellen"
-
-#: ../../include/widgets.php:504
-msgid "Check Mail"
-msgstr "E-Mails abrufen"
-
 #: ../../include/contact_selectors.php:30
 msgid "Unknown | Not categorised"
 msgstr "Unbekannt | Nicht kategorisiert"
@@ -531,8 +381,8 @@ msgstr "OStatus"
 msgid "RSS/Atom"
 msgstr "RSS/Atom"
 
-#: ../../include/contact_selectors.php:77 ../../mod/admin.php:689
-#: ../../mod/admin.php:698 ../../boot.php:1418
+#: ../../include/contact_selectors.php:77 ../../mod/admin.php:691
+#: ../../mod/admin.php:700 ../../boot.php:1423
 msgid "Email"
 msgstr "E-Mail"
 
@@ -636,7 +486,7 @@ msgstr "vor %1$d %2$s"
 #: ../../include/dba/dba_driver.php:50
 #, php-format
 msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Kann die DNS Information für den Datenbank Server '%s' nicht finden"
+msgstr "Kann die DNS-Info für den Datenbank-Server '%s' nicht finden"
 
 #: ../../include/event.php:11 ../../include/bb2diaspora.php:433
 msgid "l F d, Y \\@ g:i A"
@@ -651,7 +501,7 @@ msgid "Finishes:"
 msgstr "Endet:"
 
 #: ../../include/event.php:40 ../../include/identity.php:676
-#: ../../include/bb2diaspora.php:455 ../../mod/events.php:463
+#: ../../include/bb2diaspora.php:455 ../../mod/events.php:462
 #: ../../mod/directory.php:156 ../../mod/dirprofile.php:108
 msgid "Location:"
 msgstr "Ort:"
@@ -695,6 +545,11 @@ msgstr[1] "%d Verbindungen"
 msgid "View Connections"
 msgstr "Zeige Verbindungen"
 
+#: ../../include/text.php:738 ../../include/text.php:752
+#: ../../include/widgets.php:173 ../../mod/filer.php:36
+msgid "Save"
+msgstr "Speichern"
+
 #: ../../include/text.php:818
 msgid "poke"
 msgstr "anstupsen"
@@ -983,47 +838,12 @@ msgstr "Layouts"
 msgid "Pages"
 msgstr "Seiten"
 
-#: ../../include/group.php:25
-msgid ""
-"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."
-msgstr "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."
-
-#: ../../include/group.php:223
-msgid "Default privacy group for new contacts"
-msgstr "Standard-Privatsphärengruppe für neue Kontakte"
-
-#: ../../include/group.php:242 ../../mod/admin.php:698
-msgid "All Channels"
-msgstr "Alle Kanäle"
-
-#: ../../include/group.php:264
-msgid "edit"
-msgstr "Bearbeiten"
-
-#: ../../include/group.php:285
-msgid "Collections"
-msgstr "Sammlungen"
-
-#: ../../include/group.php:286
-msgid "Edit collection"
-msgstr "Bearbeite Sammlungen"
-
-#: ../../include/group.php:287
-msgid "Create a new collection"
-msgstr "Neue Sammlung erzeugen"
-
-#: ../../include/group.php:288
-msgid "Channels not in any collection"
-msgstr "Kanäle, die nicht in einer Sammlung sind"
-
 #: ../../include/js_strings.php:5
 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
+#: ../../mod/photos.php:968 ../../mod/photos.php:1055
 msgid "Comment"
 msgstr "Kommentar"
 
@@ -1146,7 +966,7 @@ msgid "Stored post could not be verified."
 msgstr "Gespeicherter Beitrag konnten nicht überprüft werden."
 
 #: ../../include/photo/photo_driver.php:637 ../../include/photos.php:51
-#: ../../mod/photos.php:91 ../../mod/photos.php:783 ../../mod/photos.php:805
+#: ../../mod/photos.php:91 ../../mod/photos.php:652 ../../mod/photos.php:674
 #: ../../mod/profile_photo.php:78 ../../mod/profile_photo.php:225
 #: ../../mod/profile_photo.php:336
 msgid "Profile Photos"
@@ -1156,61 +976,301 @@ msgstr "Profilfotos"
 msgid "view full size"
 msgstr "In Vollbildansicht anschauen"
 
-#: ../../include/bbcode.php:94 ../../include/bbcode.php:509
-#: ../../include/bbcode.php:512
-msgid "Image/photo"
-msgstr "Bild/Foto"
-
-#: ../../include/bbcode.php:129 ../../include/bbcode.php:517
-msgid "Encrypted content"
-msgstr "Verschlüsselter Inhalt"
+#: ../../include/identity.php:29 ../../mod/item.php:1150
+msgid "Unable to obtain identity information from database"
+msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen"
 
-#: ../../include/bbcode.php:136
-msgid "QR code"
-msgstr "QR Code"
+#: ../../include/identity.php:62
+msgid "Empty name"
+msgstr "Namensfeld leer"
 
-#: ../../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/identity.php:64
+msgid "Name too long"
+msgstr "Name ist zu lang"
 
-#: ../../include/bbcode.php:181
-msgid "post"
-msgstr "Beitrag"
+#: ../../include/identity.php:143
+msgid "No account identifier"
+msgstr "Keine Account-Kennung"
 
-#: ../../include/bbcode.php:469 ../../include/bbcode.php:489
-msgid "$1 wrote:"
-msgstr "$1 schrieb:"
+#: ../../include/identity.php:153
+msgid "Nickname is required."
+msgstr "Spitzname ist erforderlich."
 
-#: ../../include/oembed.php:150
-msgid "Embedded content"
-msgstr "Eingebetteter Inhalt"
+#: ../../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/oembed.php:159
-msgid "Embedding disabled"
-msgstr "Einbetten ausgeschaltet"
+#: ../../include/identity.php:226
+msgid "Unable to retrieve created identity"
+msgstr "Kann die erstellte Identität nicht empfangen"
 
-#: ../../include/features.php:21
-msgid "General Features"
-msgstr "Allgemeine Funktionen"
+#: ../../include/identity.php:285
+msgid "Default Profile"
+msgstr "Standard-Profil"
 
-#: ../../include/features.php:23
-msgid "Content Expiration"
-msgstr "Verfall von Inhalten"
+#: ../../include/identity.php:310 ../../include/profile_selectors.php:42
+#: ../../include/widgets.php:373 ../../mod/connedit.php:389
+msgid "Friends"
+msgstr "Freunde"
 
-#: ../../include/features.php:23
-msgid "Remove posts/comments and/or private messages at a future time"
-msgstr "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum."
+#: ../../include/identity.php:477
+msgid "Requested channel is not available."
+msgstr "Angeforderte Kanal nicht verfügbar."
 
-#: ../../include/features.php:24
-msgid "Multiple Profiles"
-msgstr "Mehrfachprofile"
+#: ../../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/features.php:24
-msgid "Ability to create multiple profiles"
-msgstr "Mehrfachprofile anlegen können"
+#: ../../include/identity.php:524 ../../mod/webpages.php:8
+#: ../../mod/connect.php:13 ../../mod/layouts.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 "Erwünschte Profil ist nicht verfügbar."
 
-#: ../../include/features.php:25
+#: ../../include/identity.php:639 ../../mod/profiles.php:615
+msgid "Change profile photo"
+msgstr "Ändere das Profilfoto"
+
+#: ../../include/identity.php:645
+msgid "Profiles"
+msgstr "Profile"
+
+#: ../../include/identity.php:645
+msgid "Manage/edit profiles"
+msgstr "Verwalte/Bearbeite Profile"
+
+#: ../../include/identity.php:646 ../../mod/profiles.php:616
+msgid "Create New Profile"
+msgstr "Neues Profil erstellen"
+
+#: ../../include/identity.php:649
+msgid "Edit Profile"
+msgstr "Profile bearbeiten"
+
+#: ../../include/identity.php:660 ../../mod/profiles.php:627
+msgid "Profile Image"
+msgstr "Profilfoto:"
+
+#: ../../include/identity.php:663 ../../mod/profiles.php:630
+msgid "visible to everybody"
+msgstr "sichtbar für jeden"
+
+#: ../../include/identity.php:664 ../../mod/profiles.php:631
+msgid "Edit visibility"
+msgstr "Sichtbarkeit bearbeiten"
+
+#: ../../include/identity.php:678 ../../include/identity.php:903
+#: ../../mod/directory.php:158
+msgid "Gender:"
+msgstr "Geschlecht:"
+
+#: ../../include/identity.php:679 ../../include/identity.php:923
+#: ../../mod/directory.php:160
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../include/identity.php:680 ../../include/identity.php:934
+#: ../../mod/directory.php:162
+msgid "Homepage:"
+msgstr "Homepage:"
+
+#: ../../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:748 ../../include/identity.php:828
+msgid "F d"
+msgstr "d. F"
+
+#: ../../include/identity.php:793 ../../include/identity.php:868
+#: ../../mod/ping.php:252
+msgid "[today]"
+msgstr "[Heute]"
+
+#: ../../include/identity.php:805
+msgid "Birthday Reminders"
+msgstr "Geburtstags Erinnerungen"
+
+#: ../../include/identity.php:806
+msgid "Birthdays this week:"
+msgstr "Geburtstage in dieser Woche:"
+
+#: ../../include/identity.php:861
+msgid "[No description]"
+msgstr "[Keine Beschreibung]"
+
+#: ../../include/identity.php:879
+msgid "Event Reminders"
+msgstr "Veranstaltungs- Erinnerungen"
+
+#: ../../include/identity.php:880
+msgid "Events this week:"
+msgstr "Veranstaltungen in dieser Woche:"
+
+#: ../../include/identity.php:893 ../../include/identity.php:977
+#: ../../mod/profperm.php:103
+msgid "Profile"
+msgstr "Profil"
+
+#: ../../include/identity.php:901 ../../mod/settings.php:911
+msgid "Full Name:"
+msgstr "Voller Name:"
+
+#: ../../include/identity.php:908
+msgid "j F, Y"
+msgstr "j F, Y"
+
+#: ../../include/identity.php:909
+msgid "j F"
+msgstr "j F"
+
+#: ../../include/identity.php:916
+msgid "Birthday:"
+msgstr "Geburtstag:"
+
+#: ../../include/identity.php:920
+msgid "Age:"
+msgstr "Alter:"
+
+#: ../../include/identity.php:929
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "für %1$d %2$s"
+
+#: ../../include/identity.php:932 ../../mod/profiles.php:538
+msgid "Sexual Preference:"
+msgstr "Sexuelle Orientierung:"
+
+#: ../../include/identity.php:936 ../../mod/profiles.php:540
+msgid "Hometown:"
+msgstr "Heimatstadt:"
+
+#: ../../include/identity.php:938
+msgid "Tags:"
+msgstr "Schlagworte:"
+
+#: ../../include/identity.php:940 ../../mod/profiles.php:541
+msgid "Political Views:"
+msgstr "Politische Ansichten:"
+
+#: ../../include/identity.php:942
+msgid "Religion:"
+msgstr "Religion:"
+
+#: ../../include/identity.php:944 ../../mod/directory.php:164
+msgid "About:"
+msgstr "Über:"
+
+#: ../../include/identity.php:946
+msgid "Hobbies/Interests:"
+msgstr "Hobbys/Interessen:"
+
+#: ../../include/identity.php:948 ../../mod/profiles.php:544
+msgid "Likes:"
+msgstr "Gefällt-mir:"
+
+#: ../../include/identity.php:950 ../../mod/profiles.php:545
+msgid "Dislikes:"
+msgstr "Gefällt-mir-nicht:"
+
+#: ../../include/identity.php:953
+msgid "Contact information and Social Networks:"
+msgstr "Kontaktinformation und soziale Netzwerke:"
+
+#: ../../include/identity.php:955
+msgid "My other channels:"
+msgstr "Meine anderen Kanäle:"
+
+#: ../../include/identity.php:957
+msgid "Musical interests:"
+msgstr "Musikalische Interessen:"
+
+#: ../../include/identity.php:959
+msgid "Books, literature:"
+msgstr "Bücher, Literatur:"
+
+#: ../../include/identity.php:961
+msgid "Television:"
+msgstr "Fernsehen:"
+
+#: ../../include/identity.php:963
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film/Tanz/Kultur/Unterhaltung:"
+
+#: ../../include/identity.php:965
+msgid "Love/Romance:"
+msgstr "Liebe/Romantik:"
+
+#: ../../include/identity.php:967
+msgid "Work/employment:"
+msgstr "Arbeit/Anstellung:"
+
+#: ../../include/identity.php:969
+msgid "School/education:"
+msgstr "Schule/Ausbildung:"
+
+#: ../../include/reddav.php:1018
+msgid "Edit File properties"
+msgstr "Dateieigenschaften ändern"
+
+#: ../../include/bbcode.php:94 ../../include/bbcode.php:509
+#: ../../include/bbcode.php:512
+msgid "Image/photo"
+msgstr "Bild/Foto"
+
+#: ../../include/bbcode.php:129 ../../include/bbcode.php:517
+msgid "Encrypted content"
+msgstr "Verschlüsselter Inhalt"
+
+#: ../../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:181
+msgid "post"
+msgstr "Beitrag"
+
+#: ../../include/bbcode.php:469 ../../include/bbcode.php:489
+msgid "$1 wrote:"
+msgstr "$1 schrieb:"
+
+#: ../../include/oembed.php:157
+msgid "Embedded content"
+msgstr "Eingebetteter Inhalt"
+
+#: ../../include/oembed.php:166
+msgid "Embedding disabled"
+msgstr "Einbetten ausgeschaltet"
+
+#: ../../include/features.php:21
+msgid "General Features"
+msgstr "Allgemeine Funktionen"
+
+#: ../../include/features.php:23
+msgid "Content Expiration"
+msgstr "Verfall von Inhalten"
+
+#: ../../include/features.php:23
+msgid "Remove posts/comments and/or private messages at a future time"
+msgstr "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum."
+
+#: ../../include/features.php:24
+msgid "Multiple Profiles"
+msgstr "Mehrfachprofile"
+
+#: ../../include/features.php:24
+msgid "Ability to create multiple profiles"
+msgstr "Mehrfachprofile anlegen können"
+
+#: ../../include/features.php:25
 msgid "Web Pages"
 msgstr "Webseiten"
 
@@ -1274,6 +1334,11 @@ msgstr "Voransicht"
 msgid "Allow previewing posts and comments before publishing them"
 msgstr "Erlaube Voransicht von Beiträgen und Kommentaren vor Veröffentlichung"
 
+#: ../../include/features.php:41 ../../include/widgets.php:476
+#: ../../mod/sources.php:81
+msgid "Channel Sources"
+msgstr "Kanal Quellen"
+
 #: ../../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."
@@ -1307,6 +1372,10 @@ msgstr "Filter für Sammlung"
 msgid "Enable widget to display Network posts only from selected collections"
 msgstr "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen"
 
+#: ../../include/features.php:50 ../../include/widgets.php:252
+msgid "Saved Searches"
+msgstr "Gesicherte Suchanfragen"
+
 #: ../../include/features.php:50
 msgid "Save search terms for re-use"
 msgstr "Gesicherte Suchbegriffe zur Wiederverwendung"
@@ -1371,6 +1440,11 @@ msgstr "Beitrags-Kategorien"
 msgid "Add categories to your posts"
 msgstr "Kategorien für Beiträge"
 
+#: ../../include/features.php:64 ../../include/widgets.php:283
+#: ../../include/contact_widgets.php:53
+msgid "Saved Folders"
+msgstr "Gesicherte Ordner"
+
 #: ../../include/features.php:64
 msgid "Ability to file posts under folders"
 msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln"
@@ -1399,437 +1473,44 @@ msgstr "Tag Wolke"
 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/group.php:25
+msgid ""
+"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."
+msgstr "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."
 
-#: ../../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/group.php:223
+msgid "Default privacy group for new contacts"
+msgstr "Standard-Privatsphärengruppe für neue Kontakte"
 
-#: ../../include/conversation.php:1458
-msgid "Profile Details"
-msgstr "Profil-Details"
+#: ../../include/group.php:242 ../../mod/admin.php:700
+msgid "All Channels"
+msgstr "Alle Kanäle"
 
-#: ../../include/conversation.php:1465 ../../include/photos.php:297
-msgid "Photo Albums"
-msgstr "Fotoalben"
+#: ../../include/group.php:264
+msgid "edit"
+msgstr "Bearbeiten"
 
-#: ../../include/conversation.php:1470 ../../mod/fbrowser.php:114
-msgid "Files"
-msgstr "Dateien"
+#: ../../include/group.php:285
+msgid "Collections"
+msgstr "Sammlungen"
 
-#: ../../include/conversation.php:1473
-msgid "Files and Storage"
-msgstr "Dateien und Speicher"
+#: ../../include/group.php:286
+msgid "Edit collection"
+msgstr "Bearbeite Sammlungen"
 
-#: ../../include/conversation.php:1485
-msgid "Events and Calendar"
-msgstr "Veranstaltungen und Kalender"
+#: ../../include/group.php:287
+msgid "Create a new collection"
+msgstr "Neue Sammlung erzeugen"
 
-#: ../../include/conversation.php:1490
-msgid "Webpages"
-msgstr "Webseiten"
+#: ../../include/group.php:288
+msgid "Channels not in any collection"
+msgstr "Kanäle, die nicht in einer Sammlung sind"
 
-#: ../../include/conversation.php:1493
-msgid "Manage Webpages"
-msgstr "Webseiten verwalten"
+#: ../../include/group.php:290 ../../include/widgets.php:253
+msgid "add"
+msgstr "hinzufügen"
 
 #: ../../include/notify.php:23
 msgid "created a new post"
@@ -1844,8 +1525,8 @@ msgstr "hat %s's Beitrag kommentiert"
 #: ../../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
+#: ../../include/attach.php:462 ../../include/attach.php:540
+#: ../../include/items.php:3454 ../../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
@@ -1853,7 +1534,7 @@ msgstr "hat %s's Beitrag kommentiert"
 #: ../../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:653 ../../mod/viewsrc.php:12
+#: ../../mod/photos.php:68 ../../mod/photos.php:522 ../../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
@@ -1867,34 +1548,38 @@ msgstr "hat %s's Beitrag kommentiert"
 #: ../../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
+#: ../../mod/channel.php:88 ../../mod/channel.php:188
+#: ../../mod/channel.php:231 ../../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:348
 msgid "Permission denied."
 msgstr "Zugang verweigert"
 
-#: ../../include/photos.php:88
+#: ../../include/photos.php:89
 #, php-format
 msgid "Image exceeds website size limit of %lu bytes"
 msgstr "Bild überschreitet das Limit der Webseite von %lu bytes"
 
-#: ../../include/photos.php:95
+#: ../../include/photos.php:96
 msgid "Image file is empty."
 msgstr "Bilddatei ist leer."
 
-#: ../../include/photos.php:122 ../../mod/profile_photo.php:147
+#: ../../include/photos.php:123 ../../mod/profile_photo.php:147
 msgid "Unable to process image"
 msgstr "Kann Bild nicht verarbeiten"
 
-#: ../../include/photos.php:184
+#: ../../include/photos.php:185
 msgid "Photo storage failed."
 msgstr "Foto speichern schlug fehl"
 
-#: ../../include/photos.php:301 ../../mod/photos.php:821
-#: ../../mod/photos.php:1296
+#: ../../include/photos.php:302 ../../include/conversation.php:1476
+msgid "Photo Albums"
+msgstr "Fotoalben"
+
+#: ../../include/photos.php:306 ../../mod/photos.php:690
+#: ../../mod/photos.php:1165
 msgid "Upload New Photos"
 msgstr "Lade neue Fotos hoch"
 
@@ -2147,40 +1832,40 @@ msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden"
 msgid "File exceeds size limit of %d"
 msgstr "Datei überschreitet das Größen-Limit von %d"
 
-#: ../../include/attach.php:337
+#: ../../include/attach.php:338
 #, 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:421
+#: ../../include/attach.php:422
 msgid "File upload failed. Possible system limit or action terminated."
 msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."
 
-#: ../../include/attach.php:433
+#: ../../include/attach.php:434
 msgid "Stored file could not be verified. Upload failed."
 msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."
 
-#: ../../include/attach.php:477 ../../include/attach.php:494
+#: ../../include/attach.php:478 ../../include/attach.php:495
 msgid "Path not available."
 msgstr "Pfad nicht verfügbar."
 
-#: ../../include/attach.php:544
+#: ../../include/attach.php:545
 msgid "Empty pathname"
 msgstr "leere Pfadangabe"
 
-#: ../../include/attach.php:562
+#: ../../include/attach.php:563
 msgid "duplicate filename or path"
 msgstr "doppelter Dateiname oder Pfad"
 
-#: ../../include/attach.php:587
+#: ../../include/attach.php:588
 msgid "Path not found."
 msgstr "Pfad nicht gefunden."
 
-#: ../../include/attach.php:632
+#: ../../include/attach.php:633
 msgid "mkdir failed."
 msgstr "mkdir fehlgeschlagen."
 
-#: ../../include/attach.php:636
+#: ../../include/attach.php:637
 msgid "database storage failed."
 msgstr "Speichern in der Datenbank fehlgeschlagen."
 
@@ -2224,6 +1909,18 @@ msgstr "Gefällt-mir-nicht"
 msgid "dislikes"
 msgstr "Gefällt-mir-nicht"
 
+#: ../../include/auth.php:76
+msgid "Logged out."
+msgstr "Ausgeloggt."
+
+#: ../../include/auth.php:188
+msgid "Failed authentication"
+msgstr "Authentifizierung fehlgeschlagen"
+
+#: ../../include/auth.php:203
+msgid "Login failed."
+msgstr "Login fehlgeschlagen."
+
 #: ../../include/account.php:23
 msgid "Not a valid email address"
 msgstr "Ungültige E-Mail-Adresse"
@@ -2372,7 +2069,7 @@ msgstr "%1$s, %2$s hat [zrl=%3$s]deinen %4$s[/zrl] kommentiert"
 #: ../../include/enotify.php:170
 #, php-format
 msgid "[Red:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Red:Notify] Kommentar in Unterhaltung #%1$d von %2$s"
+msgstr "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1$d von %2$s"
 
 #: ../../include/enotify.php:171
 #, php-format
@@ -2434,7 +2131,7 @@ msgstr "%1$s, %2$s [zrl=%2$s]hat dich angestupst[/zrl]."
 #: ../../include/enotify.php:241
 #, php-format
 msgid "[Red:Notify] %s tagged your post"
-msgstr "[Red:Hinweis] %s hat Dich getagged"
+msgstr "[Red:Hinweis] %s hat Dich getaggt"
 
 #: ../../include/enotify.php:242
 #, php-format
@@ -2472,7 +2169,7 @@ msgstr "Bitte besuche %s um sie anzunehmen oder abzulehnen."
 
 #: ../../include/enotify.php:270
 msgid "[Red:Notify] Friend suggestion received"
-msgstr "[Red:Hinweis] Freundschaftsvorschlag erhalten"
+msgstr "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten"
 
 #: ../../include/enotify.php:271
 #, php-format
@@ -2499,17 +2196,123 @@ msgstr "Foto:"
 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."
-msgstr "Ausgeloggt."
+#: ../../include/widgets.php:29 ../../include/contact_widgets.php:87
+msgid "Categories"
+msgstr "Kategorien"
 
-#: ../../include/auth.php:181
-msgid "Failed authentication"
-msgstr "Authentifizierung fehlgeschlagen"
+#: ../../include/widgets.php:117 ../../mod/suggest.php:53
+msgid "Ignore/Hide"
+msgstr "Ignorieren/Verstecken"
 
-#: ../../include/auth.php:190
-msgid "Login failed."
-msgstr "Login fehlgeschlagen."
+#: ../../include/widgets.php:123 ../../mod/connections.php:236
+msgid "Suggestions"
+msgstr "Vorschläge"
+
+#: ../../include/widgets.php:124
+msgid "See more..."
+msgstr "Mehr anzeigen..."
+
+#: ../../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:152
+msgid "Add New Connection"
+msgstr "Neue Verbindung hinzufügen"
+
+#: ../../include/widgets.php:153
+msgid "Enter the channel address"
+msgstr "Adresse des Kanals eingeben"
+
+#: ../../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:171
+msgid "Notes"
+msgstr "Notizen"
+
+#: ../../include/widgets.php:243
+msgid "Remove term"
+msgstr "Eintrag löschen"
+
+#: ../../include/widgets.php:286 ../../include/contact_widgets.php:56
+#: ../../include/contact_widgets.php:90
+msgid "Everything"
+msgstr "Alles"
+
+#: ../../include/widgets.php:318 ../../include/items.php:3575
+msgid "Archives"
+msgstr "Archive"
+
+#: ../../include/widgets.php:370
+msgid "Refresh"
+msgstr "Aktualisieren"
+
+#: ../../include/widgets.php:371 ../../mod/connedit.php:386
+msgid "Me"
+msgstr "Ich"
+
+#: ../../include/widgets.php:372 ../../mod/connedit.php:388
+msgid "Best Friends"
+msgstr "Beste Freunde"
+
+#: ../../include/widgets.php:374
+msgid "Co-workers"
+msgstr "Kollegen"
+
+#: ../../include/widgets.php:375 ../../mod/connedit.php:390
+msgid "Former Friends"
+msgstr "ehem. Freunde"
+
+#: ../../include/widgets.php:376 ../../mod/connedit.php:391
+msgid "Acquaintances"
+msgstr "Bekanntschaften"
+
+#: ../../include/widgets.php:377
+msgid "Everybody"
+msgstr "Jeder"
+
+#: ../../include/widgets.php:409
+msgid "Account settings"
+msgstr "Konto-Einstellungen"
+
+#: ../../include/widgets.php:415
+msgid "Channel settings"
+msgstr "Kanal-Einstellungen"
+
+#: ../../include/widgets.php:421
+msgid "Additional features"
+msgstr "Zusätzliche Funktionen"
+
+#: ../../include/widgets.php:427
+msgid "Feature settings"
+msgstr "Funktions-Einstellungen"
+
+#: ../../include/widgets.php:433
+msgid "Display settings"
+msgstr "Anzeige-Einstellungen"
+
+#: ../../include/widgets.php:439
+msgid "Connected apps"
+msgstr "Verbundene Apps"
+
+#: ../../include/widgets.php:445
+msgid "Export channel"
+msgstr "Kanal exportieren"
+
+#: ../../include/widgets.php:457
+msgid "Automatic Permissions (Advanced)"
+msgstr "Automatische Berechtigungen (Erweitert)"
+
+#: ../../include/widgets.php:467
+msgid "Premium Channel Settings"
+msgstr "Prämium-Kanal Einstellungen"
+
+#: ../../include/widgets.php:504
+msgid "Check Mail"
+msgstr "E-Mails abrufen"
 
 #: ../../include/contact_widgets.php:14
 #, php-format
@@ -2534,8 +2337,8 @@ msgstr "Verbinden/Folgen"
 msgid "Examples: Robert Morgenstein, Fishing"
 msgstr "Beispiele: Robert Morgenstein, Angeln"
 
-#: ../../include/contact_widgets.php:24 ../../mod/directory.php:205
-#: ../../mod/directory.php:210 ../../mod/connections.php:355
+#: ../../include/contact_widgets.php:24 ../../mod/directory.php:206
+#: ../../mod/directory.php:211 ../../mod/connections.php:355
 msgid "Find"
 msgstr "Finde"
 
@@ -2565,9 +2368,9 @@ msgstr "Neue Seite"
 #: ../../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/settings.php:569 ../../mod/editlayout.php:106
 #: ../../mod/editpost.php:98 ../../mod/blocks.php:93
-#: ../../mod/editwebpage.php:144 ../../mod/editblock.php:115
+#: ../../mod/editwebpage.php:144 ../../mod/editblock.php:120
 msgid "Edit"
 msgstr "Bearbeiten"
 
@@ -2623,497 +2426,697 @@ msgstr "Kann meinen öffentliches Kanal-Profil sehen"
 msgid "Can view my \"public\" photo albums"
 msgstr "Kann meine öffentlichen Fotoalben sehen"
 
-#: ../../include/permissions.php:16
-msgid "Can view my \"public\" address book"
-msgstr "Kann mein öffentliches Adressbuch sehen"
+#: ../../include/permissions.php:16
+msgid "Can view my \"public\" address book"
+msgstr "Kann mein öffentliches Adressbuch sehen"
+
+#: ../../include/permissions.php:17
+msgid "Can view my \"public\" file storage"
+msgstr "Kann meinen öffentlichen Dateiordner sehen"
+
+#: ../../include/permissions.php:18
+msgid "Can view my \"public\" pages"
+msgstr "Kann meine öffentlichen Seiten sehen"
+
+#: ../../include/permissions.php:21
+msgid "Can send me their channel stream and posts"
+msgstr "Können mir den Stream und die Beiträge aus ihrem Kanal schicken"
+
+#: ../../include/permissions.php:22
+msgid "Can post on my channel page (\"wall\")"
+msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"
+
+#: ../../include/permissions.php:23
+msgid "Can comment on my posts"
+msgstr "Kann meine Beiträge kommentieren"
+
+#: ../../include/permissions.php:24
+msgid "Can send me private mail messages"
+msgstr "Kann mir private Nachrichten schicken"
+
+#: ../../include/permissions.php:25
+msgid "Can post photos to my photo albums"
+msgstr "Kann Fotos in meinen Fotoalben veröffentlichen"
+
+#: ../../include/permissions.php:26
+msgid "Can forward to all my channel contacts via post @mentions"
+msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten"
+
+#: ../../include/permissions.php:26
+msgid "Advanced - useful for creating group forum channels"
+msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen"
+
+#: ../../include/permissions.php:27
+msgid "Can chat with me (when available)"
+msgstr "Kann mit mir chatten (wenn verfügbar)"
+
+#: ../../include/permissions.php:27
+msgid "Requires compatible chat plugin"
+msgstr "Benötigt ein kompatibles Chat-Plugin"
+
+#: ../../include/permissions.php:28
+msgid "Can write to my \"public\" file storage"
+msgstr "Kann in meinen öffentlichen Dateiordner schreiben"
+
+#: ../../include/permissions.php:29
+msgid "Can edit my \"public\" pages"
+msgstr "Kann meine öffentlichen Seiten bearbeiten"
+
+#: ../../include/permissions.php:31
+msgid "Can source my \"public\" posts in derived channels"
+msgstr "Kann meine \"öffentlichen\" Beiträge als Quellen von Kanälen verwenden"
+
+#: ../../include/permissions.php:31
+msgid "Somewhat advanced - very useful in open communities"
+msgstr "Etwas Fortgeschritten - sehr nützlich in offenen Gemeinschaften."
+
+#: ../../include/permissions.php:32
+msgid "Can administer my channel resources"
+msgstr "Kann meine Kanäle administrieren"
+
+#: ../../include/permissions.php:32
+msgid ""
+"Extremely advanced. Leave this alone unless you know what you are doing"
+msgstr "Sehr fortgeschritten. Bearbeite dies nur, wenn du genau weißt, was du machst"
+
+#: ../../include/comanche.php:35 ../../view/theme/redbasic/php/config.php:62
+#: ../../view/theme/apw/php/config.php:176
+msgid "Default"
+msgstr "Standard"
+
+#: ../../include/items.php:208 ../../mod/like.php:55 ../../mod/group.php:68
+#: ../../mod/profperm.php:19 ../../index.php:347
+msgid "Permission denied"
+msgstr "Keine Berechtigung"
+
+#: ../../include/items.php:3392 ../../mod/thing.php:74 ../../mod/admin.php:150
+#: ../../mod/admin.php:732 ../../mod/admin.php:935 ../../mod/viewsrc.php:18
+#: ../../mod/home.php:63 ../../mod/filestorage.php:18 ../../mod/display.php:32
+msgid "Item not found."
+msgstr "Element nicht gefunden."
+
+#: ../../include/items.php:3743 ../../mod/group.php:38 ../../mod/group.php:140
+msgid "Collection not found."
+msgstr "Sammlung nicht gefunden"
+
+#: ../../include/items.php:3758
+msgid "Collection is empty."
+msgstr "Sammlung ist leer."
+
+#: ../../include/items.php:3765
+#, php-format
+msgid "Collection: %s"
+msgstr "Sammlung: %s"
+
+#: ../../include/items.php:3776
+#, php-format
+msgid "Connection: %s"
+msgstr "Verbindung: %s"
+
+#: ../../include/items.php:3779
+msgid "Connection not found."
+msgstr "Die Verbindung wurde nicht gefunden."
+
+#: ../../include/ItemObject.php:89 ../../mod/photos.php:841
+msgid "Private Message"
+msgstr "Private Nachricht"
+
+#: ../../include/ItemObject.php:108 ../../include/conversation.php:632
+#: ../../mod/thing.php:230 ../../mod/connedit.php:356 ../../mod/admin.php:695
+#: ../../mod/group.php:176 ../../mod/photos.php:1019
+#: ../../mod/filestorage.php:172 ../../mod/settings.php:570
+msgid "Delete"
+msgstr "Löschen"
+
+#: ../../include/ItemObject.php:114 ../../include/conversation.php:631
+msgid "Select"
+msgstr "Auswählen"
+
+#: ../../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:161 ../../include/conversation.php:642
+msgid "Message is verified"
+msgstr "Nachricht überprüft"
+
+#: ../../include/ItemObject.php:169
+msgid "add tag"
+msgstr "Schlagwort hinzufügen"
+
+#: ../../include/ItemObject.php:175 ../../mod/photos.php:947
+msgid "I like this (toggle)"
+msgstr "Ich mag das (Umschalter)"
 
-#: ../../include/permissions.php:17
-msgid "Can view my \"public\" file storage"
-msgstr "Kann meinen öffentlichen Dateiordner sehen"
+#: ../../include/ItemObject.php:176 ../../mod/photos.php:948
+msgid "I don't like this (toggle)"
+msgstr "Ich mag das nicht (Umschalter)"
 
-#: ../../include/permissions.php:18
-msgid "Can view my \"public\" pages"
-msgstr "Kann meine öffentlichen Seiten sehen"
+#: ../../include/ItemObject.php:178
+msgid "Share this"
+msgstr "Teile dies"
 
-#: ../../include/permissions.php:21
-msgid "Can send me their channel stream and posts"
-msgstr "Können mir den Stream und die Beiträge aus ihrem Kanal schicken"
+#: ../../include/ItemObject.php:178
+msgid "share"
+msgstr "Teilen"
 
-#: ../../include/permissions.php:22
-msgid "Can post on my channel page (\"wall\")"
-msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"
+#: ../../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/permissions.php:23
-msgid "Can comment on my posts"
-msgstr "Kann meine Beiträge kommentieren"
+#: ../../include/ItemObject.php:204
+msgid "to"
+msgstr "zu"
 
-#: ../../include/permissions.php:24
-msgid "Can send me private mail messages"
-msgstr "Kann mir private Nachrichten schicken"
+#: ../../include/ItemObject.php:205
+msgid "via"
+msgstr "via"
 
-#: ../../include/permissions.php:25
-msgid "Can post photos to my photo albums"
-msgstr "Kann Fotos in meinen Fotoalben veröffentlichen"
+#: ../../include/ItemObject.php:206
+msgid "Wall-to-Wall"
+msgstr "Wall-to-Wall"
 
-#: ../../include/permissions.php:26
-msgid "Can forward to all my channel contacts via post @mentions"
-msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten"
+#: ../../include/ItemObject.php:207
+msgid "via Wall-To-Wall:"
+msgstr "via Wall-To-Wall:"
 
-#: ../../include/permissions.php:26
-msgid "Advanced - useful for creating group forum channels"
-msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen"
+#: ../../include/ItemObject.php:217 ../../include/conversation.php:686
+#, php-format
+msgid " from %s"
+msgstr "von %s"
 
-#: ../../include/permissions.php:27
-msgid "Can chat with me (when available)"
-msgstr "Kann mit mir chatten (wenn verfügbar)"
+#: ../../include/ItemObject.php:220 ../../include/conversation.php:689
+#, php-format
+msgid "last edited: %s"
+msgstr "zuletzt bearbeitet: %s"
 
-#: ../../include/permissions.php:27
-msgid "Requires compatible chat plugin"
-msgstr "Benötigt ein kompatibles Chat-Plugin"
+#: ../../include/ItemObject.php:221
+#, php-format
+msgid "Expires: %s"
+msgstr "Verfällt: %s"
 
-#: ../../include/permissions.php:28
-msgid "Can write to my \"public\" file storage"
-msgstr "Kann in meinen öffentlichen Dateiordner schreiben"
+#: ../../include/ItemObject.php:248 ../../include/conversation.php:706
+#: ../../include/conversation.php:1119 ../../mod/photos.php:950
+#: ../../mod/mail.php:222 ../../mod/mail.php:336 ../../mod/editlayout.php:115
+#: ../../mod/editpost.php:107 ../../mod/editwebpage.php:153
+#: ../../mod/editblock.php:129
+msgid "Please wait"
+msgstr "Bitte warten"
 
-#: ../../include/permissions.php:29
-msgid "Can edit my \"public\" pages"
-msgstr "Kann meine öffentlichen Seiten bearbeiten"
+#: ../../include/ItemObject.php:269
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d Kommentar"
+msgstr[1] "%d Kommentare"
 
-#: ../../include/permissions.php:31
-msgid "Can source my \"public\" posts in derived channels"
-msgstr "Kann meine \"öffentlichen\" Beiträge als Quellen von Kanälen verwenden"
+#: ../../include/ItemObject.php:534 ../../mod/photos.php:966
+#: ../../mod/photos.php:1053
+msgid "This is you"
+msgstr "Das bist du"
 
-#: ../../include/permissions.php:31
-msgid "Somewhat advanced - very useful in open communities"
-msgstr "Etwas Fortgeschritten - sehr nützlich in offenen Gemeinschaften."
+#: ../../include/ItemObject.php:537 ../../mod/events.php:469
+#: ../../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:688 ../../mod/admin.php:828
+#: ../../mod/admin.php:1027 ../../mod/admin.php:1114 ../../mod/group.php:81
+#: ../../mod/photos.php:562 ../../mod/photos.php:667 ../../mod/photos.php:929
+#: ../../mod/photos.php:969 ../../mod/photos.php:1056
+#: ../../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/permissions.php:32
-msgid "Can administer my channel resources"
-msgstr "Kann meine Kanäle administrieren"
+#: ../../include/ItemObject.php:538
+msgid "Bold"
+msgstr "Fett"
 
-#: ../../include/permissions.php:32
-msgid ""
-"Extremely advanced. Leave this alone unless you know what you are doing"
-msgstr "Sehr fortgeschritten. Bearbeite dies nur, wenn du genau weißt, was du machst"
+#: ../../include/ItemObject.php:539
+msgid "Italic"
+msgstr "Kursiv"
 
-#: ../../include/comanche.php:35 ../../view/theme/redbasic/php/config.php:62
-#: ../../view/theme/apw/php/config.php:176
-msgid "Default"
-msgstr "Standard"
+#: ../../include/ItemObject.php:540
+msgid "Underline"
+msgstr "Unterstrichen"
 
-#: ../../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"
+#: ../../include/ItemObject.php:541
+msgid "Quote"
+msgstr "Zitat"
 
-#: ../../include/identity.php:62
-msgid "Empty name"
-msgstr "Namensfeld leer"
+#: ../../include/ItemObject.php:542
+msgid "Code"
+msgstr "Code"
 
-#: ../../include/identity.php:64
-msgid "Name too long"
-msgstr "Name ist zu lang"
+#: ../../include/ItemObject.php:543
+msgid "Image"
+msgstr "Bild"
 
-#: ../../include/identity.php:143
-msgid "No account identifier"
-msgstr "Keine Account-Kennung"
+#: ../../include/ItemObject.php:544
+msgid "Link"
+msgstr "Link"
 
-#: ../../include/identity.php:153
-msgid "Nickname is required."
-msgstr "Spitzname ist erforderlich."
+#: ../../include/ItemObject.php:545
+msgid "Video"
+msgstr "Video"
 
-#: ../../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/ItemObject.php:546 ../../include/conversation.php:1082
+#: ../../mod/webpages.php:122 ../../mod/photos.php:970
+#: ../../mod/editlayout.php:136 ../../mod/editpost.php:127
+#: ../../mod/editwebpage.php:177 ../../mod/editblock.php:151
+msgid "Preview"
+msgstr "Vorschau"
 
-#: ../../include/identity.php:226
-msgid "Unable to retrieve created identity"
-msgstr "Kann die erstellte Identität nicht empfangen"
+#: ../../include/ItemObject.php:549 ../../include/conversation.php:1146
+#: ../../mod/mail.php:228 ../../mod/mail.php:341 ../../mod/editpost.php:135
+msgid "Encrypt text"
+msgstr "Text verschlüsseln"
 
-#: ../../include/identity.php:285
-msgid "Default Profile"
-msgstr "Standard-Profil"
+#: ../../include/security.php:49
+msgid "Welcome "
+msgstr "Willkommen"
 
-#: ../../include/identity.php:477
-msgid "Requested channel is not available."
-msgstr "Angeforderte Kanal nicht verfügbar."
+#: ../../include/security.php:50
+msgid "Please upload a profile photo."
+msgstr "Bitte lade ein Profilfoto hoch."
 
-#: ../../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/security.php:53
+msgid "Welcome back "
+msgstr "Willkommen zurück"
 
-#: ../../include/identity.php:524 ../../mod/webpages.php:8
-#: ../../mod/connect.php:13 ../../mod/layouts.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 "Erwünschte Profil ist nicht verfügbar."
+#: ../../include/security.php:363
+msgid ""
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde."
 
-#: ../../include/identity.php:639 ../../mod/profiles.php:615
-msgid "Change profile photo"
-msgstr "Ändere das Profilfoto"
+#: ../../include/conversation.php:123
+msgid "channel"
+msgstr "Kanal"
 
-#: ../../include/identity.php:645
-msgid "Profiles"
-msgstr "Profile"
+#: ../../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/identity.php:645
-msgid "Manage/edit profiles"
-msgstr "Verwalte/Bearbeite Profile"
+#: ../../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/identity.php:646 ../../mod/profiles.php:616
-msgid "Create New Profile"
-msgstr "Neues Profil erstellen"
+#: ../../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/identity.php:649
-msgid "Edit Profile"
-msgstr "Profile bearbeiten"
+#: ../../include/conversation.php:236
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s stupste %2$s"
 
-#: ../../include/identity.php:660 ../../mod/profiles.php:627
-msgid "Profile Image"
-msgstr "Profilfoto:"
+#: ../../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/identity.php:663 ../../mod/profiles.php:630
-msgid "visible to everybody"
-msgstr "sichtbar für jeden"
+#: ../../include/conversation.php:662
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Schaue Dir %s's Profil auf %s an."
 
-#: ../../include/identity.php:664 ../../mod/profiles.php:631
-msgid "Edit visibility"
-msgstr "Sichtbarkeit bearbeiten"
+#: ../../include/conversation.php:676
+msgid "Categories:"
+msgstr "Kategorien:"
 
-#: ../../include/identity.php:678 ../../include/identity.php:903
-#: ../../mod/directory.php:158
-msgid "Gender:"
-msgstr "Geschlecht:"
+#: ../../include/conversation.php:677
+msgid "Filed under:"
+msgstr "Gespeichert unter:"
 
-#: ../../include/identity.php:679 ../../include/identity.php:923
-#: ../../mod/directory.php:160
-msgid "Status:"
-msgstr "Status:"
+#: ../../include/conversation.php:704
+msgid "View in context"
+msgstr "Im Zusammenhang anschauen"
 
-#: ../../include/identity.php:680 ../../include/identity.php:934
-#: ../../mod/directory.php:162
-msgid "Homepage:"
-msgstr "Homepage:"
+#: ../../include/conversation.php:833
+msgid "remove"
+msgstr "lösche"
 
-#: ../../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/conversation.php:837
+msgid "Loading..."
+msgstr "Lädt ..."
 
-#: ../../include/identity.php:748 ../../include/identity.php:828
-msgid "F d"
-msgstr "d. F"
+#: ../../include/conversation.php:838
+msgid "Delete Selected Items"
+msgstr "Lösche die ausgewählten Elemente"
 
-#: ../../include/identity.php:793 ../../include/identity.php:868
-#: ../../mod/ping.php:252
-msgid "[today]"
-msgstr "[Heute]"
+#: ../../include/conversation.php:929
+msgid "View Source"
+msgstr "Quelle anzeigen"
 
-#: ../../include/identity.php:805
-msgid "Birthday Reminders"
-msgstr "Geburtstags Erinnerungen"
+#: ../../include/conversation.php:930
+msgid "Follow Thread"
+msgstr "Unterhaltung folgen"
 
-#: ../../include/identity.php:806
-msgid "Birthdays this week:"
-msgstr "Geburtstage in dieser Woche:"
+#: ../../include/conversation.php:931
+msgid "View Status"
+msgstr "Status ansehen"
 
-#: ../../include/identity.php:861
-msgid "[No description]"
-msgstr "[Keine Beschreibung]"
+#: ../../include/conversation.php:933
+msgid "View Photos"
+msgstr "Fotos ansehen"
 
-#: ../../include/identity.php:879
-msgid "Event Reminders"
-msgstr "Veranstaltungs- Erinnerungen"
+#: ../../include/conversation.php:934
+msgid "Matrix Activity"
+msgstr "Matrix Aktivität"
 
-#: ../../include/identity.php:880
-msgid "Events this week:"
-msgstr "Veranstaltungen in dieser Woche:"
+#: ../../include/conversation.php:935
+msgid "Edit Contact"
+msgstr "Kontakt bearbeiten"
 
-#: ../../include/identity.php:893 ../../include/identity.php:975
-#: ../../mod/profperm.php:103
-msgid "Profile"
-msgstr "Profil"
+#: ../../include/conversation.php:936
+msgid "Send PM"
+msgstr "Sende PN"
 
-#: ../../include/identity.php:901 ../../mod/settings.php:911
-msgid "Full Name:"
-msgstr "Voller Name:"
+#: ../../include/conversation.php:937
+msgid "Poke"
+msgstr "Anstupsen"
 
-#: ../../include/identity.php:908
-msgid "j F, Y"
-msgstr "j F, Y"
+#: ../../include/conversation.php:999
+#, php-format
+msgid "%s likes this."
+msgstr "%s gefällt das."
 
-#: ../../include/identity.php:909
-msgid "j F"
-msgstr "j F"
+#: ../../include/conversation.php:999
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s gefällt das nicht."
 
-#: ../../include/identity.php:916
-msgid "Birthday:"
-msgstr "Geburtstag:"
+#: ../../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/identity.php:920
-msgid "Age:"
-msgstr "Alter:"
+#: ../../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/identity.php:929
+#: ../../include/conversation.php:1011
+msgid "and"
+msgstr "und"
+
+#: ../../include/conversation.php:1014
 #, php-format
-msgid "for %1$d %2$s"
-msgstr "für %1$d %2$s"
+msgid ", and %d other people"
+msgid_plural ", and %d other people"
+msgstr[0] ""
+msgstr[1] ", und %d andere"
 
-#: ../../include/identity.php:932 ../../mod/profiles.php:538
-msgid "Sexual Preference:"
-msgstr "Sexuelle Orientierung:"
+#: ../../include/conversation.php:1015
+#, php-format
+msgid "%s like this."
+msgstr "%s gefällt das."
 
-#: ../../include/identity.php:936 ../../mod/profiles.php:540
-msgid "Hometown:"
-msgstr "Heimatstadt:"
+#: ../../include/conversation.php:1015
+#, php-format
+msgid "%s don't like this."
+msgstr "%s gefällt das nicht."
 
-#: ../../include/identity.php:938
-msgid "Tags:"
-msgstr "Schlagworte:"
+#: ../../include/conversation.php:1065
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Sichtbar für <strong>jeden</strong>"
 
-#: ../../include/identity.php:940 ../../mod/profiles.php:541
-msgid "Political Views:"
-msgstr "Politische Ansichten:"
+#: ../../include/conversation.php:1066 ../../mod/mail.php:171
+#: ../../mod/mail.php:269
+msgid "Please enter a link URL:"
+msgstr "Gib eine URL ein:"
 
-#: ../../include/identity.php:942
-msgid "Religion:"
-msgstr "Religion:"
+#: ../../include/conversation.php:1067
+msgid "Please enter a video link/URL:"
+msgstr "Gib einen Video-Link/URL ein:"
 
-#: ../../include/identity.php:944 ../../mod/directory.php:164
-msgid "About:"
-msgstr "Über:"
+#: ../../include/conversation.php:1068
+msgid "Please enter an audio link/URL:"
+msgstr "Gib einen Audio-Link/URL ein:"
 
-#: ../../include/identity.php:946
-msgid "Hobbies/Interests:"
-msgstr "Hobbys/Interessen:"
+#: ../../include/conversation.php:1069
+msgid "Tag term:"
+msgstr "Schlagwort:"
 
-#: ../../include/identity.php:948 ../../mod/profiles.php:544
-msgid "Likes:"
-msgstr "Gefällt-mir:"
+#: ../../include/conversation.php:1070 ../../mod/filer.php:35
+msgid "Save to Folder:"
+msgstr "Speichern in Ordner:"
 
-#: ../../include/identity.php:950 ../../mod/profiles.php:545
-msgid "Dislikes:"
-msgstr "Gefällt-mir-nicht:"
+#: ../../include/conversation.php:1071
+msgid "Where are you right now?"
+msgstr "Wo bist du jetzt grade?"
 
-#: ../../include/identity.php:953
-msgid "Contact information and Social Networks:"
-msgstr "Kontaktinformation und soziale Netzwerke:"
+#: ../../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/identity.php:955
-msgid "Musical interests:"
-msgstr "Musikalische Interessen:"
+#: ../../include/conversation.php:1096 ../../mod/photos.php:949
+msgid "Share"
+msgstr "Teilen"
 
-#: ../../include/identity.php:957
-msgid "Books, literature:"
-msgstr "Bücher, Literatur:"
+#: ../../include/conversation.php:1098 ../../mod/editwebpage.php:140
+msgid "Page link title"
+msgstr "Seitentitel-Link"
 
-#: ../../include/identity.php:959
-msgid "Television:"
-msgstr "Fernsehen:"
+#: ../../include/conversation.php:1100 ../../mod/mail.php:219
+#: ../../mod/mail.php:332 ../../mod/editlayout.php:107
+#: ../../mod/editpost.php:99 ../../mod/editwebpage.php:145
+#: ../../mod/editblock.php:121
+msgid "Upload photo"
+msgstr "Foto hochladen"
 
-#: ../../include/identity.php:961
-msgid "Film/dance/culture/entertainment:"
-msgstr "Film/Tanz/Kultur/Unterhaltung:"
+#: ../../include/conversation.php:1101
+msgid "upload photo"
+msgstr "Foto hochladen"
 
-#: ../../include/identity.php:963
-msgid "Love/Romance:"
-msgstr "Liebe/Romantik:"
+#: ../../include/conversation.php:1102 ../../mod/mail.php:220
+#: ../../mod/mail.php:333 ../../mod/editlayout.php:108
+#: ../../mod/editpost.php:100 ../../mod/editwebpage.php:146
+#: ../../mod/editblock.php:122
+msgid "Attach file"
+msgstr "Datei anhängen"
 
-#: ../../include/identity.php:965
-msgid "Work/employment:"
-msgstr "Arbeit/Anstellung:"
+#: ../../include/conversation.php:1103
+msgid "attach file"
+msgstr "Datei anfügen"
 
-#: ../../include/identity.php:967
-msgid "School/education:"
-msgstr "Schule/Ausbildung:"
+#: ../../include/conversation.php:1104 ../../mod/mail.php:221
+#: ../../mod/mail.php:334 ../../mod/editlayout.php:109
+#: ../../mod/editpost.php:101 ../../mod/editwebpage.php:147
+#: ../../mod/editblock.php:123
+msgid "Insert web link"
+msgstr "Link einfügen"
 
-#: ../../include/items.php:201 ../../mod/like.php:55 ../../mod/group.php:68
-#: ../../mod/profperm.php:19 ../../index.php:343
-msgid "Permission denied"
-msgstr "Keine Berechtigung"
+#: ../../include/conversation.php:1105
+msgid "web link"
+msgstr "Web-Link"
 
-#: ../../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 "Element nicht gefunden."
+#: ../../include/conversation.php:1106
+msgid "Insert video link"
+msgstr "Video-Link einfügen"
 
-#: ../../include/items.php:3734 ../../mod/group.php:38 ../../mod/group.php:140
-msgid "Collection not found."
-msgstr "Sammlung nicht gefunden"
+#: ../../include/conversation.php:1107
+msgid "video link"
+msgstr "Video-Link"
 
-#: ../../include/items.php:3749
-msgid "Collection is empty."
-msgstr "Sammlung ist leer."
+#: ../../include/conversation.php:1108
+msgid "Insert audio link"
+msgstr "Audio-Link einfügen"
 
-#: ../../include/items.php:3756
-#, php-format
-msgid "Collection: %s"
-msgstr "Sammlung: %s"
+#: ../../include/conversation.php:1109
+msgid "audio link"
+msgstr "Audio-Link"
 
-#: ../../include/items.php:3767
-#, php-format
-msgid "Connection: %s"
-msgstr "Verbindung: %s"
+#: ../../include/conversation.php:1110 ../../mod/editlayout.php:113
+#: ../../mod/editpost.php:105 ../../mod/editwebpage.php:151
+#: ../../mod/editblock.php:127
+msgid "Set your location"
+msgstr "Standort"
 
-#: ../../include/items.php:3770
-msgid "Connection not found."
-msgstr "Die Verbindung wurde nicht gefunden."
+#: ../../include/conversation.php:1111
+msgid "set location"
+msgstr "Standort"
 
-#: ../../include/ItemObject.php:89 ../../mod/photos.php:972
-msgid "Private Message"
-msgstr "Private Nachricht"
+#: ../../include/conversation.php:1112 ../../mod/editlayout.php:114
+#: ../../mod/editpost.php:106 ../../mod/editwebpage.php:152
+#: ../../mod/editblock.php:128
+msgid "Clear browser location"
+msgstr "Browser-Standort löschen"
 
-#: ../../include/ItemObject.php:118
-msgid "save to folder"
-msgstr "In Ordner speichern"
+#: ../../include/conversation.php:1113
+msgid "clear location"
+msgstr "Standort löschen"
 
-#: ../../include/ItemObject.php:146
-msgid "add star"
-msgstr "markieren"
+#: ../../include/conversation.php:1115 ../../mod/editlayout.php:127
+#: ../../mod/editpost.php:119 ../../mod/editwebpage.php:169
+#: ../../mod/editblock.php:142
+msgid "Set title"
+msgstr "Titel"
 
-#: ../../include/ItemObject.php:147
-msgid "remove star"
-msgstr "Markierung entfernen"
+#: ../../include/conversation.php:1118 ../../mod/editlayout.php:130
+#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:171
+#: ../../mod/editblock.php:145
+msgid "Categories (comma-separated list)"
+msgstr "Kategorien (Kommagetrennte Liste)"
 
-#: ../../include/ItemObject.php:148
-msgid "toggle star status"
-msgstr "Stern-Status umschalten"
+#: ../../include/conversation.php:1120 ../../mod/editlayout.php:116
+#: ../../mod/editpost.php:108 ../../mod/editwebpage.php:154
+#: ../../mod/editblock.php:130
+msgid "Permission settings"
+msgstr "Berechtigungs-Einstellungen"
 
-#: ../../include/ItemObject.php:152
-msgid "starred"
-msgstr "markiert"
+#: ../../include/conversation.php:1121
+msgid "permissions"
+msgstr "Berechtigungen"
 
-#: ../../include/ItemObject.php:169
-msgid "add tag"
-msgstr "Schlagwort hinzufügen"
+#: ../../include/conversation.php:1129 ../../mod/editlayout.php:124
+#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:164
+#: ../../mod/editblock.php:139
+msgid "Public post"
+msgstr "Öffentlicher Beitrag"
 
-#: ../../include/ItemObject.php:175 ../../mod/photos.php:1078
-msgid "I like this (toggle)"
-msgstr "Ich mag das (Umschalter)"
+#: ../../include/conversation.php:1131 ../../mod/editlayout.php:131
+#: ../../mod/editpost.php:122 ../../mod/editwebpage.php:172
+#: ../../mod/editblock.php:146
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Beispiel: bob@example.com, mary@example.com"
 
-#: ../../include/ItemObject.php:176 ../../mod/photos.php:1079
-msgid "I don't like this (toggle)"
-msgstr "Ich mag das nicht (Umschalter)"
+#: ../../include/conversation.php:1144 ../../mod/mail.php:226
+#: ../../mod/mail.php:339 ../../mod/editlayout.php:141
+#: ../../mod/editpost.php:133 ../../mod/editwebpage.php:182
+#: ../../mod/editblock.php:156
+msgid "Set expiration date"
+msgstr "Verfallsdatum"
 
-#: ../../include/ItemObject.php:178
-msgid "Share this"
-msgstr "Teile dies"
+#: ../../include/conversation.php:1148 ../../mod/editpost.php:136
+msgid "OK"
+msgstr "OK"
 
-#: ../../include/ItemObject.php:178
-msgid "share"
-msgstr "Teilen"
+#: ../../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/ItemObject.php:202 ../../include/ItemObject.php:203
-#, php-format
-msgid "View %s's profile - %s"
-msgstr "Schaue dir %s's Profil an - %s"
+#: ../../include/conversation.php:1379
+msgid "Commented Order"
+msgstr "Neueste Kommentare"
 
-#: ../../include/ItemObject.php:204
-msgid "to"
-msgstr "zu"
+#: ../../include/conversation.php:1382
+msgid "Sort by Comment Date"
+msgstr "Nach Kommentardatum sortiert"
 
-#: ../../include/ItemObject.php:205
-msgid "via"
-msgstr "via"
+#: ../../include/conversation.php:1385
+msgid "Posted Order"
+msgstr "Neueste Beiträge"
 
-#: ../../include/ItemObject.php:206
-msgid "Wall-to-Wall"
-msgstr "Wall-to-Wall"
+#: ../../include/conversation.php:1388
+msgid "Sort by Post Date"
+msgstr "Nach Beitragsdatum sortiert"
 
-#: ../../include/ItemObject.php:207
-msgid "via Wall-To-Wall:"
-msgstr "via Wall-To-Wall:"
+#: ../../include/conversation.php:1392
+msgid "Personal"
+msgstr "Persönlich"
 
-#: ../../include/ItemObject.php:221
-#, php-format
-msgid "Expires: %s"
-msgstr "Verfällt: %s"
+#: ../../include/conversation.php:1395
+msgid "Posts that mention or involve you"
+msgstr "Beiträge mit Beteiligung deinerseits"
 
-#: ../../include/ItemObject.php:269
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d Kommentar"
-msgstr[1] "%d Kommentare"
+#: ../../include/conversation.php:1398 ../../mod/menu.php:57
+#: ../../mod/connections.php:209
+msgid "New"
+msgstr "Neu"
 
-#: ../../include/ItemObject.php:534 ../../mod/photos.php:1097
-#: ../../mod/photos.php:1184
-msgid "This is you"
-msgstr "Das bist du"
+#: ../../include/conversation.php:1401
+msgid "Activity Stream - by date"
+msgstr "Activity Stream - nach Datum sortiert"
 
-#: ../../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/conversation.php:1408
+msgid "Starred"
+msgstr "Markiert"
 
-#: ../../include/ItemObject.php:538
-msgid "Bold"
-msgstr "Fett"
+#: ../../include/conversation.php:1411
+msgid "Favourite Posts"
+msgstr "Beiträge mit Sternchen"
 
-#: ../../include/ItemObject.php:539
-msgid "Italic"
-msgstr "Kursiv"
+#: ../../include/conversation.php:1418
+msgid "Spam"
+msgstr "Spam"
 
-#: ../../include/ItemObject.php:540
-msgid "Underline"
-msgstr "Unterstrichen"
+#: ../../include/conversation.php:1421
+msgid "Posts flagged as SPAM"
+msgstr "Nachrichten die als SPAM markiert wurden"
 
-#: ../../include/ItemObject.php:541
-msgid "Quote"
-msgstr "Zitat"
+#: ../../include/conversation.php:1452
+msgid "Channel"
+msgstr "Kanal"
 
-#: ../../include/ItemObject.php:542
-msgid "Code"
-msgstr "Code"
+#: ../../include/conversation.php:1455
+msgid "Status Messages and Posts"
+msgstr "Statusnachrichten und Beiträge"
 
-#: ../../include/ItemObject.php:543
-msgid "Image"
-msgstr "Bild"
+#: ../../include/conversation.php:1464
+msgid "About"
+msgstr "Über"
 
-#: ../../include/ItemObject.php:544
-msgid "Link"
-msgstr "Link"
+#: ../../include/conversation.php:1467
+msgid "Profile Details"
+msgstr "Profil-Details"
 
-#: ../../include/ItemObject.php:545
-msgid "Video"
-msgstr "Video"
+#: ../../include/conversation.php:1482 ../../mod/fbrowser.php:114
+msgid "Files"
+msgstr "Dateien"
 
-#: ../../include/security.php:49
-msgid "Welcome "
-msgstr "Willkommen"
+#: ../../include/conversation.php:1485
+msgid "Files and Storage"
+msgstr "Dateien und Speicher"
 
-#: ../../include/security.php:50
-msgid "Please upload a profile photo."
-msgstr "Bitte lade ein Profilfoto hoch."
+#: ../../include/conversation.php:1494
+msgid "Events and Calendar"
+msgstr "Veranstaltungen und Kalender"
 
-#: ../../include/security.php:53
-msgid "Welcome back "
-msgstr "Willkommen zurück"
+#: ../../include/conversation.php:1501
+msgid "Webpages"
+msgstr "Webseiten"
 
-#: ../../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/conversation.php:1504
+msgid "Manage Webpages"
+msgstr "Webseiten verwalten"
 
 #: ../../include/zot.php:545
 msgid "Invalid data packet"
@@ -3130,7 +3133,7 @@ msgstr "Kann die Signatur der Seite von %s nicht verifizieren"
 
 #: ../../mod/common.php:10
 msgid "No channel."
-msgstr "Kein Channel."
+msgstr "Kein Kanal."
 
 #: ../../mod/common.php:39
 msgid "Common connections"
@@ -3164,48 +3167,48 @@ msgstr "Voriges"
 msgid "Next"
 msgstr "Nächste"
 
-#: ../../mod/events.php:429
+#: ../../mod/events.php:428
 msgid "hour:minute"
 msgstr "Stunde:Minute"
 
-#: ../../mod/events.php:448
+#: ../../mod/events.php:447
 msgid "Event details"
 msgstr "Veranstaltungs-Details"
 
-#: ../../mod/events.php:449
+#: ../../mod/events.php:448
 #, php-format
 msgid "Format is %s %s. Starting date and Title are required."
 msgstr "Format ist %s %s. Startzeit und Titel sind erforderlich."
 
-#: ../../mod/events.php:451
+#: ../../mod/events.php:450
 msgid "Event Starts:"
 msgstr "Veranstaltung startet:"
 
-#: ../../mod/events.php:451 ../../mod/events.php:465
+#: ../../mod/events.php:450 ../../mod/events.php:464
 msgid "Required"
 msgstr "Benötigt"
 
-#: ../../mod/events.php:454
+#: ../../mod/events.php:453
 msgid "Finish date/time is not known or not relevant"
 msgstr "Ende Datum/Zeit sind unbekannt oder unwichtig"
 
-#: ../../mod/events.php:456
+#: ../../mod/events.php:455
 msgid "Event Finishes:"
 msgstr "Veranstaltung endet:"
 
-#: ../../mod/events.php:459
+#: ../../mod/events.php:458
 msgid "Adjust for viewer timezone"
 msgstr "An die Zeitzone des Betrachters anpassen"
 
-#: ../../mod/events.php:461
+#: ../../mod/events.php:460
 msgid "Description:"
 msgstr "Beschreibung:"
 
-#: ../../mod/events.php:465
+#: ../../mod/events.php:464
 msgid "Title:"
 msgstr "Titel:"
 
-#: ../../mod/events.php:467
+#: ../../mod/events.php:466
 msgid "Share this event"
 msgstr "Die Veranstaltung teilen"
 
@@ -3273,7 +3276,7 @@ msgstr "%s : Keine gültige Email Adresse."
 
 #: ../../mod/invite.php:76
 msgid "Please join us on Red"
-msgstr "Bitte schließe Dich uns an und werde Teil der Red Matrix"
+msgstr "Schließe Dich uns an und werde Teil der Red-Matrix"
 
 #: ../../mod/invite.php:87
 msgid "Invitation limit exceeded. Please contact your site administrator."
@@ -3339,6 +3342,10 @@ msgid ""
 "http://getzot.com"
 msgstr "Für weitere Informationen über das Red Matrix Projekt und warum es das Potential hat das Internet wie wir es kennen grundlegend zu verändern schau dir bitte http://getzot.com an"
 
+#: ../../mod/cloud.php:88
+msgid "Red Matrix - Guests: Username: {your email address}, Password: +++"
+msgstr "Red Matrix Gäste: Nutzername: {deine Email Adresse}; Passwort: +++"
+
 #: ../../mod/connedit.php:49 ../../mod/connections.php:37
 msgid "Could not access contact record."
 msgstr "Konnte auf den Kontakteintrag nicht zugreifen."
@@ -3435,12 +3442,12 @@ msgid "View recent posts and comments"
 msgstr "Betrachte die neuesten Beiträge und Kommentare"
 
 #: ../../mod/connedit.php:330 ../../mod/connedit.php:472
-#: ../../mod/admin.php:695
+#: ../../mod/admin.php:697
 msgid "Unblock"
 msgstr "Freigeben"
 
 #: ../../mod/connedit.php:330 ../../mod/connedit.php:472
-#: ../../mod/admin.php:694
+#: ../../mod/admin.php:696
 msgid "Block"
 msgstr "Blockieren"
 
@@ -3684,7 +3691,7 @@ msgstr "Zum Weitermachen, bitte einloggen."
 msgid ""
 "Do you want to authorize this application to access your posts and contacts,"
 " and/or create new posts for you?"
-msgstr "Möchtest du der Anwendung erlauben deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für dich zu erstellen?"
+msgstr "Möchtest du der Anwendung erlauben, deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für dich zu erstellen?"
 
 #: ../../mod/api.php:105 ../../mod/profiles.php:495 ../../mod/settings.php:865
 #: ../../mod/settings.php:870
@@ -4082,7 +4089,7 @@ msgstr "%1$s folgt nun %2$s's %3$s"
 msgid "[Embedded content - reload page to view]"
 msgstr "[Eingebetteter Inhalte - bitte lade die Seite zur Anzeige neu]"
 
-#: ../../mod/chanview.php:97
+#: ../../mod/chanview.php:93
 msgid "toggle full screen mode"
 msgstr "auf Vollbildmodus umschalten"
 
@@ -4091,8 +4098,8 @@ 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:12
-#: ../../mod/photos.php:573 ../../mod/directory.php:15 ../../mod/display.php:9
+#: ../../mod/viewconnections.php:17 ../../mod/search.php:13
+#: ../../mod/photos.php:442 ../../mod/directory.php:15 ../../mod/display.php:9
 #: ../../mod/community.php:18 ../../mod/dirprofile.php:9
 msgid "Public access denied."
 msgstr "Öffentlicher Zugang verweigert."
@@ -4241,7 +4248,7 @@ msgstr "Leer lassen um alle öffentlichen Beiträge zu importieren"
 #: ../../mod/sources.php:96 ../../mod/sources.php:130
 #: ../../mod/new_channel.php:110
 msgid "Channel Name"
-msgstr "Channel-Name"
+msgstr "Name des Kanals"
 
 #: ../../mod/sources.php:116 ../../mod/sources.php:143
 msgid "Source not found."
@@ -4271,19 +4278,19 @@ msgstr "Theme-Einstellungen aktualisiert."
 msgid "Site"
 msgstr "Seite"
 
-#: ../../mod/admin.php:88 ../../mod/admin.php:685 ../../mod/admin.php:697
+#: ../../mod/admin.php:88 ../../mod/admin.php:687 ../../mod/admin.php:699
 msgid "Users"
 msgstr "Benutzer"
 
-#: ../../mod/admin.php:89 ../../mod/admin.php:783 ../../mod/admin.php:825
+#: ../../mod/admin.php:89 ../../mod/admin.php:785 ../../mod/admin.php:827
 msgid "Plugins"
 msgstr "Plug-Ins"
 
-#: ../../mod/admin.php:90 ../../mod/admin.php:988 ../../mod/admin.php:1024
+#: ../../mod/admin.php:90 ../../mod/admin.php:990 ../../mod/admin.php:1026
 msgid "Themes"
 msgstr "Themes"
 
-#: ../../mod/admin.php:91 ../../mod/admin.php:478
+#: ../../mod/admin.php:91 ../../mod/admin.php:479
 msgid "Server"
 msgstr "Server"
 
@@ -4291,7 +4298,7 @@ msgstr "Server"
 msgid "DB updates"
 msgstr "DB-Aktualisierungen"
 
-#: ../../mod/admin.php:106 ../../mod/admin.php:113 ../../mod/admin.php:1111
+#: ../../mod/admin.php:106 ../../mod/admin.php:113 ../../mod/admin.php:1113
 msgid "Logs"
 msgstr "Protokolle"
 
@@ -4307,9 +4314,9 @@ msgstr "Nutzer Anmeldungen die auf Bestätigung warten"
 msgid "Message queues"
 msgstr "Nachrichten Warteschlange"
 
-#: ../../mod/admin.php:193 ../../mod/admin.php:418 ../../mod/admin.php:477
-#: ../../mod/admin.php:684 ../../mod/admin.php:782 ../../mod/admin.php:824
-#: ../../mod/admin.php:987 ../../mod/admin.php:1023 ../../mod/admin.php:1110
+#: ../../mod/admin.php:193 ../../mod/admin.php:418 ../../mod/admin.php:478
+#: ../../mod/admin.php:686 ../../mod/admin.php:784 ../../mod/admin.php:826
+#: ../../mod/admin.php:989 ../../mod/admin.php:1025 ../../mod/admin.php:1112
 msgid "Administration"
 msgstr "Administration"
 
@@ -4321,7 +4328,7 @@ msgstr "Zusammenfassung"
 msgid "Registered users"
 msgstr "Registrierte Benutzer"
 
-#: ../../mod/admin.php:198 ../../mod/admin.php:481
+#: ../../mod/admin.php:198 ../../mod/admin.php:482
 msgid "Pending registrations"
 msgstr "Ausstehende Registrierungen"
 
@@ -4329,7 +4336,7 @@ msgstr "Ausstehende Registrierungen"
 msgid "Version"
 msgstr "Version"
 
-#: ../../mod/admin.php:201 ../../mod/admin.php:482
+#: ../../mod/admin.php:201 ../../mod/admin.php:483
 msgid "Active plugins"
 msgstr "Aktive Plug-Ins"
 
@@ -4569,224 +4576,219 @@ msgid ""
 "default 50."
 msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
 
-#: ../../mod/admin.php:469
+#: ../../mod/admin.php:470
 msgid "No server found"
 msgstr "Kein Server gefunden"
 
-#: ../../mod/admin.php:476 ../../mod/admin.php:698
+#: ../../mod/admin.php:477 ../../mod/admin.php:700
 msgid "ID"
 msgstr "ID"
 
-#: ../../mod/admin.php:476
+#: ../../mod/admin.php:477
 msgid "for channel"
 msgstr "für Kanal"
 
-#: ../../mod/admin.php:476
+#: ../../mod/admin.php:477
 msgid "on server"
 msgstr "auf Server"
 
-#: ../../mod/admin.php:476
+#: ../../mod/admin.php:477
 msgid "Status"
 msgstr "Status"
 
-#: ../../mod/admin.php:496
+#: ../../mod/admin.php:498
 msgid "Update has been marked successful"
 msgstr "Update wurde als erfolgreich markiert"
 
-#: ../../mod/admin.php:506
+#: ../../mod/admin.php:508
 #, php-format
 msgid "Executing %s failed. Check system logs."
 msgstr "Aufrufen von %s fehlgeschlagen. Überprüfe die Systemlogs."
 
-#: ../../mod/admin.php:509
+#: ../../mod/admin.php:511
 #, php-format
 msgid "Update %s was successfully applied."
 msgstr "Update %s wurde erfolgreich angewandt."
 
-#: ../../mod/admin.php:513
+#: ../../mod/admin.php:515
 #, php-format
 msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr "Update %s liefert keinen Rückgabewert. Unbekannt ob es erfolgreich war."
 
-#: ../../mod/admin.php:516
+#: ../../mod/admin.php:518
 #, php-format
 msgid "Update function %s could not be found."
 msgstr "Update Funktion %s konnte nicht gefunden werden."
 
-#: ../../mod/admin.php:531
+#: ../../mod/admin.php:533
 msgid "No failed updates."
 msgstr "Keine fehlgeschlagenen Aktualisierungen."
 
-#: ../../mod/admin.php:535
+#: ../../mod/admin.php:537
 msgid "Failed Updates"
 msgstr "Fehlgeschlagene Aktualisierungen"
 
-#: ../../mod/admin.php:537
+#: ../../mod/admin.php:539
 msgid "Mark success (if update was manually applied)"
 msgstr "Als erfolgreich markieren (wenn das Update manuell angewandt wurde)"
 
-#: ../../mod/admin.php:538
+#: ../../mod/admin.php:540
 msgid "Attempt to execute this update step automatically"
 msgstr "Versuche diesen Updateschritt automatisch anzuwenden"
 
-#: ../../mod/admin.php:564
+#: ../../mod/admin.php:566
 #, php-format
 msgid "%s user blocked/unblocked"
 msgid_plural "%s users blocked/unblocked"
 msgstr[0] "%s Nutzer blockiert/freigegeben"
 msgstr[1] "%s Nutzer blockiert/freigegeben"
 
-#: ../../mod/admin.php:571
+#: ../../mod/admin.php:573
 #, php-format
 msgid "%s user deleted"
 msgid_plural "%s users deleted"
 msgstr[0] "%s Nutzer gelöscht"
 msgstr[1] "%s Nutzer gelöscht"
 
-#: ../../mod/admin.php:602
+#: ../../mod/admin.php:604
 msgid "Account not found"
 msgstr "Konto nicht gefunden"
 
-#: ../../mod/admin.php:613
+#: ../../mod/admin.php:615
 #, php-format
 msgid "User '%s' deleted"
 msgstr "Benutzer '%s' gelöscht"
 
-#: ../../mod/admin.php:622
+#: ../../mod/admin.php:624
 #, php-format
 msgid "User '%s' unblocked"
 msgstr "Benutzer '%s' freigegeben"
 
-#: ../../mod/admin.php:622
+#: ../../mod/admin.php:624
 #, php-format
 msgid "User '%s' blocked"
 msgstr "Benutzer '%s' blockiert"
 
-#: ../../mod/admin.php:687
+#: ../../mod/admin.php:689
 msgid "select all"
 msgstr "Alle auswählen"
 
-#: ../../mod/admin.php:688
+#: ../../mod/admin.php:690
 msgid "User registrations waiting for confirm"
 msgstr "Neuanmeldungen, die auf deine Bestätigung warten"
 
-#: ../../mod/admin.php:689
+#: ../../mod/admin.php:691
 msgid "Request date"
 msgstr "Antragsdatum"
 
-#: ../../mod/admin.php:689 ../../mod/settings.php:509
-#: ../../mod/settings.php:535
-msgid "Name"
-msgstr "Name"
-
-#: ../../mod/admin.php:690
+#: ../../mod/admin.php:692
 msgid "No registrations."
 msgstr "Keine Registrierungen."
 
-#: ../../mod/admin.php:691
+#: ../../mod/admin.php:693
 msgid "Approve"
 msgstr "Genehmigen"
 
-#: ../../mod/admin.php:692
+#: ../../mod/admin.php:694
 msgid "Deny"
 msgstr "Verweigern"
 
-#: ../../mod/admin.php:698
+#: ../../mod/admin.php:700
 msgid "Register date"
 msgstr "Registrierungs-Datum"
 
-#: ../../mod/admin.php:698
+#: ../../mod/admin.php:700
 msgid "Last login"
 msgstr "Letzte Anmeldung"
 
-#: ../../mod/admin.php:698
+#: ../../mod/admin.php:700
 msgid "Expires"
 msgstr "Verfällt"
 
-#: ../../mod/admin.php:698
+#: ../../mod/admin.php:700
 msgid "Service Class"
 msgstr "Service-Klasse"
 
-#: ../../mod/admin.php:700
+#: ../../mod/admin.php:702
 msgid ""
 "Selected users will be deleted!\\n\\nEverything these users had posted on "
 "this site will be permanently deleted!\\n\\nAre you sure?"
 msgstr "Markierte Nutzer werden gelöscht\\n\\nAlles was diese Nutzer auf dieser Seite veröffentlicht haben wird permanent gelöscht\\n\\nBist du sicher?"
 
-#: ../../mod/admin.php:701
+#: ../../mod/admin.php:703
 msgid ""
 "The user {0} will be deleted!\\n\\nEverything this user has posted on this "
 "site will be permanently deleted!\\n\\nAre you sure?"
 msgstr "Der Nutzer {0} wird gelöscht\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat wird permanent gelöscht werden\\n\\nBist du sicher?"
 
-#: ../../mod/admin.php:742
+#: ../../mod/admin.php:744
 #, php-format
 msgid "Plugin %s disabled."
 msgstr "Plug-In %s deaktiviert."
 
-#: ../../mod/admin.php:746
+#: ../../mod/admin.php:748
 #, php-format
 msgid "Plugin %s enabled."
 msgstr "Plug-In %s aktiviert."
 
-#: ../../mod/admin.php:756 ../../mod/admin.php:958
+#: ../../mod/admin.php:758 ../../mod/admin.php:960
 msgid "Disable"
 msgstr "Deaktivieren"
 
-#: ../../mod/admin.php:758 ../../mod/admin.php:960
+#: ../../mod/admin.php:760 ../../mod/admin.php:962
 msgid "Enable"
 msgstr "Aktivieren"
 
-#: ../../mod/admin.php:784 ../../mod/admin.php:989
+#: ../../mod/admin.php:786 ../../mod/admin.php:991
 msgid "Toggle"
 msgstr "Umschalten"
 
-#: ../../mod/admin.php:792 ../../mod/admin.php:999
+#: ../../mod/admin.php:794 ../../mod/admin.php:1001
 msgid "Author: "
 msgstr "Autor: "
 
-#: ../../mod/admin.php:793 ../../mod/admin.php:1000
+#: ../../mod/admin.php:795 ../../mod/admin.php:1002
 msgid "Maintainer: "
 msgstr "Betreuer:"
 
-#: ../../mod/admin.php:922
+#: ../../mod/admin.php:924
 msgid "No themes found."
 msgstr "Keine Theme gefunden."
 
-#: ../../mod/admin.php:981
+#: ../../mod/admin.php:983
 msgid "Screenshot"
 msgstr "Bildschirmfoto"
 
-#: ../../mod/admin.php:1029
+#: ../../mod/admin.php:1031
 msgid "[Experimental]"
 msgstr "[Experimentell]"
 
-#: ../../mod/admin.php:1030
+#: ../../mod/admin.php:1032
 msgid "[Unsupported]"
 msgstr "[Nicht unterstützt]"
 
-#: ../../mod/admin.php:1057
+#: ../../mod/admin.php:1059
 msgid "Log settings updated."
 msgstr "Protokoll-Einstellungen aktualisiert."
 
-#: ../../mod/admin.php:1113
+#: ../../mod/admin.php:1115
 msgid "Clear"
 msgstr "Leeren"
 
-#: ../../mod/admin.php:1119
+#: ../../mod/admin.php:1121
 msgid "Debugging"
 msgstr "Debugging"
 
-#: ../../mod/admin.php:1120
+#: ../../mod/admin.php:1122
 msgid "Log file"
 msgstr "Protokolldatei"
 
-#: ../../mod/admin.php:1120
+#: ../../mod/admin.php:1122
 msgid ""
 "Must be writable by web server. Relative to your Red top-level directory."
 msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Red Stammverzeichnis."
 
-#: ../../mod/admin.php:1121
+#: ../../mod/admin.php:1123
 msgid "Log level"
 msgstr "Protokollstufe"
 
@@ -4811,7 +4813,7 @@ 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
+#: ../../mod/dirprofile.php:177
 msgid "Not found."
 msgstr "Nicht gefunden."
 
@@ -4953,7 +4955,7 @@ msgstr "Mitglieder"
 
 #: ../../mod/group.php:198
 msgid "All Connected Channels"
-msgstr "Alle verbundene Channels"
+msgstr "Alle verbundenen Kanäle"
 
 #: ../../mod/group.php:231
 msgid "Click on a channel to add or remove."
@@ -4967,133 +4969,124 @@ 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:799
+#: ../../mod/photos.php:119 ../../mod/photos.php:668
 msgid "Delete Album"
 msgstr "Album löschen"
 
-#: ../../mod/photos.php:159 ../../mod/photos.php:1061
+#: ../../mod/photos.php:159 ../../mod/photos.php:930
 msgid "Delete Photo"
 msgstr "Foto löschen"
 
-#: ../../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:500
-msgid "a photo"
-msgstr "Foto"
-
-#: ../../mod/photos.php:583
+#: ../../mod/photos.php:452
 msgid "No photos selected"
 msgstr "Keine Fotos ausgewählt"
 
-#: ../../mod/photos.php:630
+#: ../../mod/photos.php:499
 msgid "Access to this item is restricted."
 msgstr "Zugriff auf dieses Foto wurde eingeschränkt."
 
-#: ../../mod/photos.php:704
+#: ../../mod/photos.php:573
 #, 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:707
+#: ../../mod/photos.php:576
 #, php-format
 msgid "You have used %1$.2f Mbytes of photo storage."
 msgstr "Du verwendets %1$.2f MBytes deines Foto-Speichers."
 
-#: ../../mod/photos.php:726
+#: ../../mod/photos.php:595
 msgid "Upload Photos"
 msgstr "Fotos hochladen"
 
-#: ../../mod/photos.php:730 ../../mod/photos.php:794
+#: ../../mod/photos.php:599 ../../mod/photos.php:663
 msgid "New album name: "
 msgstr "Name des neuen Albums:"
 
-#: ../../mod/photos.php:731
+#: ../../mod/photos.php:600
 msgid "or existing album name: "
 msgstr "oder bestehenden Album Namen:"
 
-#: ../../mod/photos.php:732
+#: ../../mod/photos.php:601
 msgid "Do not show a status post for this upload"
 msgstr "Keine Statusnachricht für diesen Upload senden"
 
-#: ../../mod/photos.php:734 ../../mod/photos.php:1056
+#: ../../mod/photos.php:603 ../../mod/photos.php:925
 #: ../../mod/filestorage.php:125
 msgid "Permissions"
 msgstr "Berechtigungen"
 
-#: ../../mod/photos.php:783 ../../mod/photos.php:805 ../../mod/photos.php:1232
-#: ../../mod/photos.php:1247
+#: ../../mod/photos.php:652 ../../mod/photos.php:674 ../../mod/photos.php:1101
+#: ../../mod/photos.php:1116
 msgid "Contact Photos"
 msgstr "Kontakt Bilder"
 
-#: ../../mod/photos.php:809
+#: ../../mod/photos.php:678
 msgid "Edit Album"
 msgstr "Album bearbeiten"
 
-#: ../../mod/photos.php:815
+#: ../../mod/photos.php:684
 msgid "Show Newest First"
 msgstr "Zeige neueste zuerst"
 
-#: ../../mod/photos.php:817
+#: ../../mod/photos.php:686
 msgid "Show Oldest First"
 msgstr "Zeige älteste zuerst"
 
-#: ../../mod/photos.php:860 ../../mod/photos.php:1279
+#: ../../mod/photos.php:729 ../../mod/photos.php:1148
 msgid "View Photo"
 msgstr "Foto ansehen"
 
-#: ../../mod/photos.php:906
+#: ../../mod/photos.php:775
 msgid "Permission denied. Access to this item may be restricted."
 msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."
 
-#: ../../mod/photos.php:908
+#: ../../mod/photos.php:777
 msgid "Photo not available"
 msgstr "Foto nicht verfügbar"
 
-#: ../../mod/photos.php:966
+#: ../../mod/photos.php:835
 msgid "Use as profile photo"
 msgstr "Als Profilfoto verwenden"
 
-#: ../../mod/photos.php:990
+#: ../../mod/photos.php:859
 msgid "View Full Size"
 msgstr "In voller Größe anzeigen"
 
-#: ../../mod/photos.php:1044
+#: ../../mod/photos.php:913
 msgid "Edit photo"
 msgstr "Foto bearbeiten"
 
-#: ../../mod/photos.php:1046
+#: ../../mod/photos.php:915
 msgid "Rotate CW (right)"
 msgstr "Drehen US (rechts)"
 
-#: ../../mod/photos.php:1047
+#: ../../mod/photos.php:916
 msgid "Rotate CCW (left)"
 msgstr "Drehen EUS (links)"
 
-#: ../../mod/photos.php:1049
+#: ../../mod/photos.php:918
 msgid "New album name"
 msgstr "Name des neuen Albums:"
 
-#: ../../mod/photos.php:1052
+#: ../../mod/photos.php:921
 msgid "Caption"
 msgstr "Bildunterschrift"
 
-#: ../../mod/photos.php:1054
+#: ../../mod/photos.php:923
 msgid "Add a Tag"
 msgstr "Schlagwort hinzufügen"
 
-#: ../../mod/photos.php:1058
+#: ../../mod/photos.php:927
 msgid ""
 "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: ../../mod/photos.php:1285
+#: ../../mod/photos.php:1154
 msgid "View Album"
 msgstr "Album ansehen"
 
-#: ../../mod/photos.php:1294
+#: ../../mod/photos.php:1163
 msgid "Recent Photos"
 msgstr "Neueste Fotos"
 
@@ -5191,19 +5184,19 @@ msgstr "Alter:"
 msgid "Gender: "
 msgstr "Geschlecht:"
 
-#: ../../mod/directory.php:206
+#: ../../mod/directory.php:207
 msgid "Finding:"
 msgstr "Ergebnisse:"
 
-#: ../../mod/directory.php:214
+#: ../../mod/directory.php:215
 msgid "next page"
 msgstr "nächste Seite"
 
-#: ../../mod/directory.php:214
+#: ../../mod/directory.php:215
 msgid "previous page"
 msgstr "vorige Seite"
 
-#: ../../mod/directory.php:221
+#: ../../mod/directory.php:222
 msgid "No entries (some entries may be hidden)."
 msgstr "Keine Einträge gefunden (einige könnten versteckt sein)."
 
@@ -5310,7 +5303,7 @@ msgstr "Entfernte Authentifizierung"
 
 #: ../../mod/rmagic.php:57
 msgid "Enter your channel address (e.g. channel@example.com)"
-msgstr "Deine Kanal-Adresse (z.B. channel@example.com)"
+msgstr "Deine Kanal-Adresse (z. B. channel@example.com)"
 
 #: ../../mod/rmagic.php:58
 msgid "Authenticate"
@@ -5571,7 +5564,7 @@ msgstr "Kontaktinformation und soziale Netzwerke"
 
 #: ../../mod/profiles.php:551
 msgid "My other channels"
-msgstr "Meine anderen Channels"
+msgstr "Meine anderen Kanäle"
 
 #: ../../mod/profiles.php:552
 msgid "Musical interests"
@@ -5621,7 +5614,7 @@ msgstr "binde begehrenswerte Dinge in dein Profil ein"
 
 #: ../../mod/new_channel.php:107
 msgid "Add a Channel"
-msgstr "Channel hinzufügen"
+msgstr "Kanal hinzufügen"
 
 #: ../../mod/new_channel.php:108
 msgid ""
@@ -5717,7 +5710,7 @@ msgid ""
 "Password reset failed."
 msgstr "Die Anfrage konnte nicht verifiziert werden. (Es könnte sein, dass du vorher bereits eine Anfrage eingereicht hast.) Passwort Anforderung fehlgeschlagen."
 
-#: ../../mod/lostpass.php:85 ../../boot.php:1426
+#: ../../mod/lostpass.php:85 ../../boot.php:1431
 msgid "Password Reset"
 msgstr "Zurücksetzen des Kennworts"
 
@@ -5949,6 +5942,10 @@ msgstr "Einstellungen aktualisiert."
 msgid "Add application"
 msgstr "Anwendung hinzufügen"
 
+#: ../../mod/settings.php:509 ../../mod/settings.php:535
+msgid "Name"
+msgstr "Name"
+
 #: ../../mod/settings.php:509
 msgid "Name of application"
 msgstr "Name der Anwendung"
@@ -6133,7 +6130,7 @@ msgstr "Deine Kanal-Adresse lautet"
 
 #: ../../mod/settings.php:901
 msgid "Channel Settings"
-msgstr "Channel-Einstellungen"
+msgstr "Kanal-Einstellungen"
 
 #: ../../mod/settings.php:910
 msgid "Basic Settings"
@@ -6346,26 +6343,30 @@ msgstr "Antwort senden"
 msgid "Item not found"
 msgstr "Element nicht gefunden"
 
-#: ../../mod/editlayout.php:68
+#: ../../mod/editlayout.php:72
 msgid "Edit Layout"
 msgstr "Layout bearbeiten"
 
-#: ../../mod/editlayout.php:105 ../../mod/editpost.php:102
-#: ../../mod/editwebpage.php:148 ../../mod/editblock.php:119
+#: ../../mod/editlayout.php:82
+msgid "Delete layout?"
+msgstr "Layout löschen?"
+
+#: ../../mod/editlayout.php:110 ../../mod/editpost.php:102
+#: ../../mod/editwebpage.php:148 ../../mod/editblock.php:124
 msgid "Insert YouTube video"
 msgstr "YouTube-Video einfügen"
 
-#: ../../mod/editlayout.php:106 ../../mod/editpost.php:103
-#: ../../mod/editwebpage.php:149 ../../mod/editblock.php:120
+#: ../../mod/editlayout.php:111 ../../mod/editpost.php:103
+#: ../../mod/editwebpage.php:149 ../../mod/editblock.php:125
 msgid "Insert Vorbis [.ogg] video"
 msgstr "Vorbis [.ogg]-Video einfügen"
 
-#: ../../mod/editlayout.php:107 ../../mod/editpost.php:104
-#: ../../mod/editwebpage.php:150 ../../mod/editblock.php:121
+#: ../../mod/editlayout.php:112 ../../mod/editpost.php:104
+#: ../../mod/editwebpage.php:150 ../../mod/editblock.php:126
 msgid "Insert Vorbis [.ogg] audio"
 msgstr "Vorbis [.ogg]-Audio einfügen"
 
-#: ../../mod/editlayout.php:141
+#: ../../mod/editlayout.php:147
 msgid "Delete Layout"
 msgstr "Layout löschen"
 
@@ -6517,7 +6518,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:1068
+#: ../../mod/wall_upload.php:41 ../../mod/item.php:1075
 msgid "Wall Photos"
 msgstr "Wall Fotos"
 
@@ -6558,11 +6559,15 @@ msgstr "Kontakte Vorschlagen"
 msgid "Suggest a friend for %s"
 msgstr "Schlage %s einen Kontakt vor"
 
-#: ../../mod/editblock.php:82
+#: ../../mod/editblock.php:86
 msgid "Edit Block"
 msgstr "Block bearbeiten"
 
-#: ../../mod/editblock.php:157
+#: ../../mod/editblock.php:96
+msgid "Delete block?"
+msgstr "Block löschen?"
+
+#: ../../mod/editblock.php:163
 msgid "Delete Block"
 msgstr "Block löschen"
 
@@ -6776,31 +6781,31 @@ msgid ""
 msgstr "Standartmäßig wird der Kanal nur auf diesem Knoten gelöscht, seine Klone verbleiben im Netzwerk"
 
 #: ../../mod/removeme.php:53
-msgid "Remove My Account"
-msgstr "Mein Konto entfernen"
+msgid "Remove Channel"
+msgstr "Kanal entfernen"
 
 #: ../../mod/item.php:145
 msgid "Unable to locate original post."
 msgstr "Originalbeitrag kann nicht gefunden werden."
 
-#: ../../mod/item.php:343
+#: ../../mod/item.php:346
 msgid "Empty post discarded."
 msgstr "Leerer Beitrag verworfen."
 
-#: ../../mod/item.php:385
+#: ../../mod/item.php:388
 msgid "Executable content type not permitted to this channel."
 msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."
 
-#: ../../mod/item.php:812
+#: ../../mod/item.php:819
 msgid "System error. Post not saved."
 msgstr "Systemfehler. Beitrag nicht gespeichert."
 
-#: ../../mod/item.php:1148
+#: ../../mod/item.php:1155
 #, 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:1154
+#: ../../mod/item.php:1161
 #, php-format
 msgid "You have reached your limit of %1$.0f webpages."
 msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."
@@ -6845,7 +6850,7 @@ msgstr "Wohnort:"
 msgid "About: "
 msgstr "Über:"
 
-#: ../../mod/dirprofile.php:163
+#: ../../mod/dirprofile.php:164
 msgid "Keywords: "
 msgstr "Schlüsselbegriffe:"
 
@@ -7094,41 +7099,41 @@ msgstr "Titelbild"
 msgid "Header image only on profile pages"
 msgstr "Titelbild nur auf Profil-Seiten anzeigen"
 
-#: ../../boot.php:1224
+#: ../../boot.php:1229
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen."
 
-#: ../../boot.php:1227
+#: ../../boot.php:1232
 #, php-format
 msgid "Update Error at %s"
 msgstr "Aktualisierungsfehler auf %s"
 
-#: ../../boot.php:1391
+#: ../../boot.php:1396
 msgid ""
 "Create an account to access services and applications within the Red Matrix"
 msgstr "Erstelle einen Account um Anwendungen und Dienste innerhalb der Red Matrix verwenden zu können."
 
-#: ../../boot.php:1419
+#: ../../boot.php:1424
 msgid "Password"
 msgstr "Kennwort"
 
-#: ../../boot.php:1420
+#: ../../boot.php:1425
 msgid "Remember me"
 msgstr "Angaben speichern"
 
-#: ../../boot.php:1425
+#: ../../boot.php:1430
 msgid "Forgot your password?"
 msgstr "Passwort vergessen?"
 
-#: ../../boot.php:1490
+#: ../../boot.php:1495
 msgid "permission denied"
 msgstr "Zugriff verweigert"
 
-#: ../../boot.php:1491
+#: ../../boot.php:1496
 msgid "Got Zot?"
 msgstr "Haste schon Zot?"
 
-#: ../../boot.php:1887
+#: ../../boot.php:1892
 msgid "toggle mobile"
 msgstr "auf/von Mobile Ansicht wechseln"
diff --git a/view/de/strings.php b/view/de/strings.php
index 1dbbb36cc..0beec543e 100644
--- a/view/de/strings.php
+++ b/view/de/strings.php
@@ -71,45 +71,9 @@ $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";
-$a->strings["Categories"] = "Kategorien";
-$a->strings["Ignore/Hide"] = "Ignorieren/Verstecken";
-$a->strings["Suggestions"] = "Vorschläge";
-$a->strings["See more..."] = "Mehr anzeigen...";
-$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von %2$.0f erlaubten Verbindungen eingegangen.";
-$a->strings["Add New Connection"] = "Neue Verbindung hinzufügen";
-$a->strings["Enter the channel address"] = "Adresse des Kanals eingeben";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@beispiel.com, http://beispiel.com/barbara";
-$a->strings["Notes"] = "Notizen";
-$a->strings["Save"] = "Speichern";
-$a->strings["Remove term"] = "Eintrag löschen";
-$a->strings["Saved Searches"] = "Gesicherte Suchanfragen";
-$a->strings["add"] = "hinzufügen";
-$a->strings["Saved Folders"] = "Gesicherte Ordner";
-$a->strings["Everything"] = "Alles";
-$a->strings["Archives"] = "Archive";
-$a->strings["Refresh"] = "Aktualisieren";
-$a->strings["Me"] = "Ich";
-$a->strings["Best Friends"] = "Beste Freunde";
-$a->strings["Friends"] = "Freunde";
-$a->strings["Co-workers"] = "Kollegen";
-$a->strings["Former Friends"] = "ehem. Freunde";
-$a->strings["Acquaintances"] = "Bekanntschaften";
-$a->strings["Everybody"] = "Jeder";
-$a->strings["Account settings"] = "Konto-Einstellungen";
-$a->strings["Channel settings"] = "Kanal-Einstellungen";
-$a->strings["Additional features"] = "Zusätzliche Funktionen";
-$a->strings["Feature settings"] = "Funktions-Einstellungen";
-$a->strings["Display settings"] = "Anzeige-Einstellungen";
-$a->strings["Connected apps"] = "Verbundene Apps";
-$a->strings["Export channel"] = "Kanal exportieren";
-$a->strings["Automatic Permissions (Advanced)"] = "Automatische Berechtigungen (Erweitert)";
-$a->strings["Premium Channel Settings"] = "Prämium-Kanal Einstellungen";
-$a->strings["Channel Sources"] = "Kanal Quellen";
-$a->strings["Check Mail"] = "E-Mails abrufen";
 $a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
 $a->strings["Block immediately"] = "Sofort blockieren";
 $a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
@@ -150,7 +114,7 @@ $a->strings["minutes"] = "Minuten";
 $a->strings["second"] = "Sekunde";
 $a->strings["seconds"] = "Sekunden";
 $a->strings["%1\$d %2\$s ago"] = "vor %1\$d %2\$s";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Information für den Datenbank Server '%s' nicht finden";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS-Info für den Datenbank-Server '%s' nicht finden";
 $a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\\\, H:i";
 $a->strings["Starts:"] = "Beginnt:";
 $a->strings["Finishes:"] = "Endet:";
@@ -167,6 +131,7 @@ $a->strings["%d Connection"] = array(
 	1 => "%d Verbindungen",
 );
 $a->strings["View Connections"] = "Zeige Verbindungen";
+$a->strings["Save"] = "Speichern";
 $a->strings["poke"] = "anstupsen";
 $a->strings["poked"] = "stupste";
 $a->strings["ping"] = "anpingen";
@@ -238,14 +203,6 @@ $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";
-$a->strings["edit"] = "Bearbeiten";
-$a->strings["Collections"] = "Sammlungen";
-$a->strings["Edit collection"] = "Bearbeite Sammlungen";
-$a->strings["Create a new collection"] = "Neue Sammlung erzeugen";
-$a->strings["Channels not in any collection"] = "Kanäle, die nicht in einer Sammlung sind";
 $a->strings["Delete this item?"] = "Dieses Element löschen?";
 $a->strings["Comment"] = "Kommentar";
 $a->strings["show more"] = "mehr zeigen";
@@ -278,6 +235,63 @@ $a->strings["Unable to determine sender."] = "Kann Absender nicht bestimmen.";
 $a->strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden.";
 $a->strings["Profile Photos"] = "Profilfotos";
 $a->strings["view full size"] = "In Vollbildansicht anschauen";
+$a->strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen";
+$a->strings["Empty name"] = "Namensfeld leer";
+$a->strings["Name too long"] = "Name ist zu lang";
+$a->strings["No account identifier"] = "Keine Account-Kennung";
+$a->strings["Nickname is required."] = "Spitzname ist erforderlich.";
+$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt.";
+$a->strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen";
+$a->strings["Default Profile"] = "Standard-Profil";
+$a->strings["Friends"] = "Freunde";
+$a->strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar.";
+$a->strings[" Sorry, you don't have the permission to view this profile. "] = "Entschuldigung, aber du besitzt nicht die nötigen Rechte um dieses Profil ansehen zu dürfen.";
+$a->strings["Requested profile is not available."] = "Erwünschte Profil ist nicht verfügbar.";
+$a->strings["Change profile photo"] = "Ändere das Profilfoto";
+$a->strings["Profiles"] = "Profile";
+$a->strings["Manage/edit profiles"] = "Verwalte/Bearbeite Profile";
+$a->strings["Create New Profile"] = "Neues Profil erstellen";
+$a->strings["Edit Profile"] = "Profile bearbeiten";
+$a->strings["Profile Image"] = "Profilfoto:";
+$a->strings["visible to everybody"] = "sichtbar für jeden";
+$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
+$a->strings["Gender:"] = "Geschlecht:";
+$a->strings["Status:"] = "Status:";
+$a->strings["Homepage:"] = "Homepage:";
+$a->strings["g A l F d"] = "l, d. F G \\\\U\\\\h\\\\r";
+$a->strings["F d"] = "d. F";
+$a->strings["[today]"] = "[Heute]";
+$a->strings["Birthday Reminders"] = "Geburtstags Erinnerungen";
+$a->strings["Birthdays this week:"] = "Geburtstage in dieser Woche:";
+$a->strings["[No description]"] = "[Keine Beschreibung]";
+$a->strings["Event Reminders"] = "Veranstaltungs- Erinnerungen";
+$a->strings["Events this week:"] = "Veranstaltungen in dieser Woche:";
+$a->strings["Profile"] = "Profil";
+$a->strings["Full Name:"] = "Voller Name:";
+$a->strings["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "Geburtstag:";
+$a->strings["Age:"] = "Alter:";
+$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
+$a->strings["Sexual Preference:"] = "Sexuelle Orientierung:";
+$a->strings["Hometown:"] = "Heimatstadt:";
+$a->strings["Tags:"] = "Schlagworte:";
+$a->strings["Political Views:"] = "Politische Ansichten:";
+$a->strings["Religion:"] = "Religion:";
+$a->strings["About:"] = "Über:";
+$a->strings["Hobbies/Interests:"] = "Hobbys/Interessen:";
+$a->strings["Likes:"] = "Gefällt-mir:";
+$a->strings["Dislikes:"] = "Gefällt-mir-nicht:";
+$a->strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:";
+$a->strings["My other channels:"] = "Meine anderen Kanäle:";
+$a->strings["Musical interests:"] = "Musikalische Interessen:";
+$a->strings["Books, literature:"] = "Bücher, Literatur:";
+$a->strings["Television:"] = "Fernsehen:";
+$a->strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltung:";
+$a->strings["Love/Romance:"] = "Liebe/Romantik:";
+$a->strings["Work/employment:"] = "Arbeit/Anstellung:";
+$a->strings["School/education:"] = "Schule/Ausbildung:";
+$a->strings["Edit File properties"] = "Dateieigenschaften ändern";
 $a->strings["Image/photo"] = "Bild/Foto";
 $a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
 $a->strings["QR code"] = "QR Code";
@@ -306,6 +320,7 @@ $a->strings["Richtext Editor"] = "Formatierungseditor";
 $a->strings["Enable richtext editor"] = "Aktiviere Formatierungseditor";
 $a->strings["Post Preview"] = "Voransicht";
 $a->strings["Allow previewing posts and comments before publishing them"] = "Erlaube Voransicht von Beiträgen und Kommentaren vor Veröffentlichung";
+$a->strings["Channel Sources"] = "Kanal Quellen";
 $a->strings["Automatically import channel content from other channels or feeds"] = "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds.";
 $a->strings["Even More Encryption"] = "Noch mehr Verschlüsselung";
 $a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Erlaube optionale Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Sicherheitsschlüssel)";
@@ -314,6 +329,7 @@ $a->strings["Search by Date"] = "Suche nach Datum";
 $a->strings["Ability to select posts by date ranges"] = "Möglichkeit, Beiträge nach Zeiträumen auszuwählen";
 $a->strings["Collections Filter"] = "Filter für Sammlung";
 $a->strings["Enable widget to display Network posts only from selected collections"] = "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen";
+$a->strings["Saved Searches"] = "Gesicherte Suchanfragen";
 $a->strings["Save search terms for re-use"] = "Gesicherte Suchbegriffe zur Wiederverwendung";
 $a->strings["Network Personal Tab"] = "Persönlicher Netzwerkreiter";
 $a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviere Reiter nur für die Netzwerk-Beiträge, mit denen Du interagiert hast";
@@ -330,6 +346,7 @@ $a->strings["Tagging"] = "Verschlagworten";
 $a->strings["Ability to tag existing posts"] = "Möglichkeit, um existierende Beiträge zu verschlagworten";
 $a->strings["Post Categories"] = "Beitrags-Kategorien";
 $a->strings["Add categories to your posts"] = "Kategorien für Beiträge";
+$a->strings["Saved Folders"] = "Gesicherte Ordner";
 $a->strings["Ability to file posts under folders"] = "Möglichkeit, Beiträge in Verzeichnissen zu sammeln";
 $a->strings["Dislike Posts"] = "Gefällt-mir-nicht Beiträge";
 $a->strings["Ability to dislike posts/comments"] = "Möglichkeit für Gefällt-mir-nicht für Beiträge/Kommentare";
@@ -337,107 +354,15 @@ $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["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";
+$a->strings["edit"] = "Bearbeiten";
+$a->strings["Collections"] = "Sammlungen";
+$a->strings["Edit collection"] = "Bearbeite Sammlungen";
+$a->strings["Create a new collection"] = "Neue Sammlung erzeugen";
+$a->strings["Channels not in any collection"] = "Kanäle, die nicht in einer Sammlung sind";
+$a->strings["add"] = "hinzufügen";
 $a->strings["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";
@@ -445,6 +370,7 @@ $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";
@@ -527,6 +453,9 @@ $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["Logged out."] = "Ausgeloggt.";
+$a->strings["Failed authentication"] = "Authentifizierung fehlgeschlagen";
+$a->strings["Login failed."] = "Login fehlgeschlagen.";
 $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";
 $a->strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert.";
@@ -560,7 +489,7 @@ $a->strings["Please visit %s to view and/or reply to your private messages."] =
 $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["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1\$d von %2\$s";
 $a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s hat 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";
@@ -572,7 +501,7 @@ $a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3
 $a->strings["[Red:Notify] %1\$s poked you"] = "[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["[Red:Notify] %s tagged your post"] = "[Red:Hinweis] %s hat Dich getaggt";
 $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";
@@ -580,15 +509,41 @@ $a->strings["%1\$s, you've received an introduction from '%2\$s' at %3\$s"] = "%
 $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["[Red:Notify] Friend suggestion received"] = "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten";
 $a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, du hast einen 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.";
+$a->strings["Categories"] = "Kategorien";
+$a->strings["Ignore/Hide"] = "Ignorieren/Verstecken";
+$a->strings["Suggestions"] = "Vorschläge";
+$a->strings["See more..."] = "Mehr anzeigen...";
+$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von %2$.0f erlaubten Verbindungen eingegangen.";
+$a->strings["Add New Connection"] = "Neue Verbindung hinzufügen";
+$a->strings["Enter the channel address"] = "Adresse des Kanals eingeben";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@beispiel.com, http://beispiel.com/barbara";
+$a->strings["Notes"] = "Notizen";
+$a->strings["Remove term"] = "Eintrag löschen";
+$a->strings["Everything"] = "Alles";
+$a->strings["Archives"] = "Archive";
+$a->strings["Refresh"] = "Aktualisieren";
+$a->strings["Me"] = "Ich";
+$a->strings["Best Friends"] = "Beste Freunde";
+$a->strings["Co-workers"] = "Kollegen";
+$a->strings["Former Friends"] = "ehem. Freunde";
+$a->strings["Acquaintances"] = "Bekanntschaften";
+$a->strings["Everybody"] = "Jeder";
+$a->strings["Account settings"] = "Konto-Einstellungen";
+$a->strings["Channel settings"] = "Kanal-Einstellungen";
+$a->strings["Additional features"] = "Zusätzliche Funktionen";
+$a->strings["Feature settings"] = "Funktions-Einstellungen";
+$a->strings["Display settings"] = "Anzeige-Einstellungen";
+$a->strings["Connected apps"] = "Verbundene Apps";
+$a->strings["Export channel"] = "Kanal exportieren";
+$a->strings["Automatic Permissions (Advanced)"] = "Automatische Berechtigungen (Erweitert)";
+$a->strings["Premium Channel Settings"] = "Prämium-Kanal Einstellungen";
+$a->strings["Check Mail"] = "E-Mails abrufen";
 $a->strings["%d invitation available"] = array(
 	0 => "%d Einladung verfügbar",
 	1 => "%d Einladungen verfügbar",
@@ -639,60 +594,6 @@ $a->strings["Somewhat advanced - very useful in open communities"] = "Etwas Fort
 $a->strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren";
 $a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite dies nur, wenn du genau weißt, was du machst";
 $a->strings["Default"] = "Standard";
-$a->strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen";
-$a->strings["Empty name"] = "Namensfeld leer";
-$a->strings["Name too long"] = "Name ist zu lang";
-$a->strings["No account identifier"] = "Keine Account-Kennung";
-$a->strings["Nickname is required."] = "Spitzname ist erforderlich.";
-$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt.";
-$a->strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen";
-$a->strings["Default Profile"] = "Standard-Profil";
-$a->strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar.";
-$a->strings[" Sorry, you don't have the permission to view this profile. "] = "Entschuldigung, aber du besitzt nicht die nötigen Rechte um dieses Profil ansehen zu dürfen.";
-$a->strings["Requested profile is not available."] = "Erwünschte Profil ist nicht verfügbar.";
-$a->strings["Change profile photo"] = "Ändere das Profilfoto";
-$a->strings["Profiles"] = "Profile";
-$a->strings["Manage/edit profiles"] = "Verwalte/Bearbeite Profile";
-$a->strings["Create New Profile"] = "Neues Profil erstellen";
-$a->strings["Edit Profile"] = "Profile bearbeiten";
-$a->strings["Profile Image"] = "Profilfoto:";
-$a->strings["visible to everybody"] = "sichtbar für jeden";
-$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
-$a->strings["Gender:"] = "Geschlecht:";
-$a->strings["Status:"] = "Status:";
-$a->strings["Homepage:"] = "Homepage:";
-$a->strings["g A l F d"] = "l, d. F G \\\\U\\\\h\\\\r";
-$a->strings["F d"] = "d. F";
-$a->strings["[today]"] = "[Heute]";
-$a->strings["Birthday Reminders"] = "Geburtstags Erinnerungen";
-$a->strings["Birthdays this week:"] = "Geburtstage in dieser Woche:";
-$a->strings["[No description]"] = "[Keine Beschreibung]";
-$a->strings["Event Reminders"] = "Veranstaltungs- Erinnerungen";
-$a->strings["Events this week:"] = "Veranstaltungen in dieser Woche:";
-$a->strings["Profile"] = "Profil";
-$a->strings["Full Name:"] = "Voller Name:";
-$a->strings["j F, Y"] = "j F, Y";
-$a->strings["j F"] = "j F";
-$a->strings["Birthday:"] = "Geburtstag:";
-$a->strings["Age:"] = "Alter:";
-$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
-$a->strings["Sexual Preference:"] = "Sexuelle Orientierung:";
-$a->strings["Hometown:"] = "Heimatstadt:";
-$a->strings["Tags:"] = "Schlagworte:";
-$a->strings["Political Views:"] = "Politische Ansichten:";
-$a->strings["Religion:"] = "Religion:";
-$a->strings["About:"] = "Über:";
-$a->strings["Hobbies/Interests:"] = "Hobbys/Interessen:";
-$a->strings["Likes:"] = "Gefällt-mir:";
-$a->strings["Dislikes:"] = "Gefällt-mir-nicht:";
-$a->strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:";
-$a->strings["Musical interests:"] = "Musikalische Interessen:";
-$a->strings["Books, literature:"] = "Bücher, Literatur:";
-$a->strings["Television:"] = "Fernsehen:";
-$a->strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltung:";
-$a->strings["Love/Romance:"] = "Liebe/Romantik:";
-$a->strings["Work/employment:"] = "Arbeit/Anstellung:";
-$a->strings["School/education:"] = "Schule/Ausbildung:";
 $a->strings["Permission denied"] = "Keine Berechtigung";
 $a->strings["Item not found."] = "Element nicht gefunden.";
 $a->strings["Collection not found."] = "Sammlung nicht gefunden";
@@ -701,11 +602,14 @@ $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["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["I don't like this (toggle)"] = "Ich mag das nicht (Umschalter)";
@@ -716,7 +620,10 @@ $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["Expires: %s"] = "Verfällt: %s";
+$a->strings["Please wait"] = "Bitte warten";
 $a->strings["%d comment"] = array(
 	0 => "%d Kommentar",
 	1 => "%d Kommentare",
@@ -731,14 +638,108 @@ $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["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["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["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["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 mit Beteiligung deinerseits";
+$a->strings["New"] = "Neu";
+$a->strings["Activity Stream - by date"] = "Activity Stream - nach Datum sortiert";
+$a->strings["Starred"] = "Markiert";
+$a->strings["Favourite Posts"] = "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["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["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["No channel."] = "Kein Kanal.";
 $a->strings["Common connections"] = "Gemeinsame Verbindungen";
 $a->strings["No connections in common."] = "Keine gemeinsamen Verbindungen.";
 $a->strings["Event title and start time are required."] = "Veranstaltungs- Titel und Startzeit sind erforderlich.";
@@ -773,7 +774,7 @@ $a->strings["URL for photo of thing (optional)"] = "URL eines Fotos von dem Ding
 $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";
+$a->strings["Please join us on Red"] = "Schließe Dich uns an und werde Teil der Red-Matrix";
 $a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Einladungslimit überschritten. Bitte kontaktiere den Administrator deiner Seite.";
 $a->strings["%s : Message delivery failed."] = "%s : Nachricht konnte nicht zugestellt werden.";
 $a->strings["%d message sent."] = array(
@@ -790,6 +791,7 @@ $a->strings["Please visit my channel at"] = "Bitte besuche meinen Kanal auf";
 $a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "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:";
 $a->strings["Click the [Register] link on the following page to join."] = "Klicke den [Registrieren]-Link auf der nächsten Seite, um dich anzumelden.";
 $a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "Für weitere Informationen über das Red Matrix Projekt und warum es das Potential hat das Internet wie wir es kennen grundlegend zu verändern schau dir bitte http://getzot.com an";
+$a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"] = "Red Matrix Gäste: Nutzername: {deine Email Adresse}; Passwort: +++";
 $a->strings["Could not access contact record."] = "Konnte auf den Kontakteintrag nicht zugreifen.";
 $a->strings["Could not locate selected profile."] = "Konnte das gewählte Profil nicht finden.";
 $a->strings["Connection updated."] = "Verbindung aktualisiert.";
@@ -870,7 +872,7 @@ $a->strings["View"] = "Ansicht";
 $a->strings["Authorize application connection"] = "Zugriff der Anwendung authorizieren";
 $a->strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode bei der Anwendung ein:";
 $a->strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest du der Anwendung erlauben deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für dich zu erstellen?";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest du der Anwendung erlauben, deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für dich zu erstellen?";
 $a->strings["Yes"] = "Ja";
 $a->strings["No"] = "Nein";
 $a->strings["No installed applications."] = "Keine installierten Applikationen";
@@ -990,7 +992,7 @@ $a->strings["New Source"] = "Neue Quelle";
 $a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals.";
 $a->strings["Only import content with these words (one per line)"] = "Importiere ausschließlich Beiträge, die folgende Wörter (eines pro Zeile) enthalten";
 $a->strings["Leave blank to import all public content"] = "Leer lassen um alle öffentlichen Beiträge zu importieren";
-$a->strings["Channel Name"] = "Channel-Name";
+$a->strings["Channel Name"] = "Name des Kanals";
 $a->strings["Source not found."] = "Quelle nicht gefunden.";
 $a->strings["Edit Source"] = "Quelle bearbeiten";
 $a->strings["Delete Source"] = "Quelle löschen";
@@ -1095,7 +1097,6 @@ $a->strings["User '%s' blocked"] = "Benutzer '%s' blockiert";
 $a->strings["select all"] = "Alle auswählen";
 $a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf deine Bestätigung warten";
 $a->strings["Request date"] = "Antragsdatum";
-$a->strings["Name"] = "Name";
 $a->strings["No registrations."] = "Keine Registrierungen.";
 $a->strings["Approve"] = "Genehmigen";
 $a->strings["Deny"] = "Verweigern";
@@ -1162,14 +1163,12 @@ $a->strings["Collection removed."] = "Sammlung gelöscht.";
 $a->strings["Unable to remove collection."] = "Löschen der Sammlung nicht möglich.";
 $a->strings["Collection Editor"] = "Sammlung-Editor";
 $a->strings["Members"] = "Mitglieder";
-$a->strings["All Connected Channels"] = "Alle verbundene Channels";
+$a->strings["All Connected Channels"] = "Alle verbundenen Kanäle";
 $a->strings["Click on a channel to add or remove."] = "Wähle einen Kanal zum hinzufügen oder entfernen aus.";
 $a->strings["Page owner information could not be retrieved."] = "Informationen über den Betreiber der Seite konnten nicht gefunden werden.";
 $a->strings["Album not found."] = "Album nicht gefunden.";
 $a->strings["Delete Album"] = "Album löschen";
 $a->strings["Delete Photo"] = "Foto löschen";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde auf %2\$s von %3\$s getaggt";
-$a->strings["a photo"] = "Foto";
 $a->strings["No photos selected"] = "Keine Fotos ausgewählt";
 $a->strings["Access to this item is restricted."] = "Zugriff auf dieses Foto wurde eingeschränkt.";
 $a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du benutzt %1$.2f MBytes deines %2$.2f MBytes großen Bilder-Speichers.";
@@ -1249,7 +1248,7 @@ $a->strings["Layout Name"] = "Layout Name";
 $a->strings["Help:"] = "Hilfe:";
 $a->strings["Not Found"] = "Nicht gefunden";
 $a->strings["Remote Authentication"] = "Entfernte Authentifizierung";
-$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z.B. channel@example.com)";
+$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z. B. channel@example.com)";
 $a->strings["Authenticate"] = "Authentifizieren";
 $a->strings["No such group"] = "Gruppe existiert nicht";
 $a->strings["Search Results For:"] = "Suchergebnisse für:";
@@ -1313,7 +1312,7 @@ $a->strings["Used in directory listings"] = "Wird in Verzeichnis Auflistungen ve
 $a->strings["Tell us about yourself..."] = "Erzähl uns ein wenig von Dir...";
 $a->strings["Hobbies/Interests"] = "Hobbys/Interessen";
 $a->strings["Contact information and Social Networks"] = "Kontaktinformation und soziale Netzwerke";
-$a->strings["My other channels"] = "Meine anderen Channels";
+$a->strings["My other channels"] = "Meine anderen Kanäle";
 $a->strings["Musical interests"] = "Musikalische Interessen";
 $a->strings["Books, literature"] = "Bücher, Literatur";
 $a->strings["Television"] = "Fernsehen";
@@ -1325,7 +1324,7 @@ $a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</
 $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["Add a Channel"] = "Kanal hinzufügen";
 $a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Ein Kanal ist deine eigene Sammlung von verbundenen Webseiten. Ein Kanal kann genutzt werden, um 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\" ";
 $a->strings["Choose a short nickname"] = "Wähle einen kurzen Spitznahmen";
@@ -1401,6 +1400,7 @@ $a->strings["Protected email address. Cannot change to that email."] = "Geschüt
 $a->strings["System failure storing new email. Please try again."] = "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal.";
 $a->strings["Settings updated."] = "Einstellungen aktualisiert.";
 $a->strings["Add application"] = "Anwendung hinzufügen";
+$a->strings["Name"] = "Name";
 $a->strings["Name of application"] = "Name der Anwendung";
 $a->strings["Consumer Key"] = "Consumer Key";
 $a->strings["Automatically generated - change if desired. Max length 20"] = "Automatisch erzeugt - ändern falls erwünscht. Maximale Länge 20";
@@ -1446,7 +1446,7 @@ $a->strings["Publish your default profile in the network directory"] = "Veröffe
 $a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?";
 $a->strings["or"] = "oder";
 $a->strings["Your channel address is"] = "Deine Kanal-Adresse lautet";
-$a->strings["Channel Settings"] = "Channel-Einstellungen";
+$a->strings["Channel Settings"] = "Kanal-Einstellungen";
 $a->strings["Basic Settings"] = "Grundeinstellungen";
 $a->strings["Your Timezone:"] = "Ihre Zeitzone:";
 $a->strings["Default Post Location:"] = "Standardstandort:";
@@ -1500,6 +1500,7 @@ $a->strings["No secure communications available. You <strong>may</strong> be abl
 $a->strings["Send Reply"] = "Antwort senden";
 $a->strings["Item not found"] = "Element nicht gefunden";
 $a->strings["Edit Layout"] = "Layout bearbeiten";
+$a->strings["Delete layout?"] = "Layout löschen?";
 $a->strings["Insert YouTube video"] = "YouTube-Video einfügen";
 $a->strings["Insert Vorbis [.ogg] video"] = "Vorbis [.ogg]-Video einfügen";
 $a->strings["Insert Vorbis [.ogg] audio"] = "Vorbis [.ogg]-Audio einfügen";
@@ -1551,6 +1552,7 @@ $a->strings["Friend suggestion sent."] = "Freundschaftsempfehlung senden.";
 $a->strings["Suggest Friends"] = "Kontakte Vorschlagen";
 $a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
 $a->strings["Edit Block"] = "Block bearbeiten";
+$a->strings["Delete block?"] = "Block löschen?";
 $a->strings["Delete Block"] = "Block löschen";
 $a->strings["Invalid profile identifier."] = "Ungültiger Profil Identifikator";
 $a->strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits Editor";
@@ -1598,7 +1600,7 @@ $a->strings["This will completely remove this channel from the network. Once thi
 $a->strings["Please enter your password for verification:"] = "Bitte gib zur Bestätigung dein Passwort ein:";
 $a->strings["Remove this channel and all its clones from the network"] = "Lösche diesen Kanal und all seine Klone aus dem Netzwerk";
 $a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "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["Remove Channel"] = "Kanal entfernen";
 $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.";
-- 
cgit v1.2.3


From 4b66a399e4a43d615372cd6a818bafe70bea8bb0 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sat, 25 Jan 2014 02:53:31 -0800
Subject: get rid of bootstrap's blockqote margin css which is just bloody
 wrong and can't easily be over-ridden

---
 view/theme/redbasic/css/style.css | 1 +
 1 file changed, 1 insertion(+)

(limited to 'view')

diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index f039b7374..b2f90cbc1 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -91,6 +91,7 @@ blockquote {
 	border-left: 4px solid #dae4ee;
 	padding: 0.4em;
 	color: #000;
+	margin-left: 20px;
 }
 
 .ccollapse-wrapper {
-- 
cgit v1.2.3


From d67fdd129921549b6a1e7cb5e5ebea7bdc38bf0e Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sun, 26 Jan 2014 14:41:43 -0800
Subject: add davguest param to cut/paste link for directories in
 mod/filestorage

---
 view/tpl/attach_edit.tpl | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

(limited to 'view')

diff --git a/view/tpl/attach_edit.tpl b/view/tpl/attach_edit.tpl
index f9c6e96ce..77f32b5bc 100644
--- a/view/tpl/attach_edit.tpl
+++ b/view/tpl/attach_edit.tpl
@@ -23,12 +23,11 @@
 {{else}}
 <div class="cut-paste-desc">{{$cpdesc}}</div>
 <input type="text" id="cutpasteinput" name="cutpastelink" value="[attachment]{{$file.hash}},{{$file.revision}}[/attachment]" onclick="this.select();" /><br />
+{{/if}}
 
 <div class="cut-paste-desc">{{$cpldesc}}</div>
 <input type="text" id="linkpasteinput" name="cutpasteextlink" value="{{$cloudpath}}" onclick="this.select();"/><br />
 
-{{/if}}
-
 <div id="attach-edit-perms" >
 {{$aclselect}}
 </div>
-- 
cgit v1.2.3


From d6a9497e4a3839d9fb4dba4634167f006bb3fe87 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Mon, 27 Jan 2014 14:46:39 -0800
Subject: cleanup include/menu in preparation for the next phase of bookmarking

---
 view/php/theme_init.php | 1 +
 1 file changed, 1 insertion(+)

(limited to 'view')

diff --git a/view/php/theme_init.php b/view/php/theme_init.php
index 0e473f728..b6aa5de0f 100644
--- a/view/php/theme_init.php
+++ b/view/php/theme_init.php
@@ -44,6 +44,7 @@ head_add_js('docready.js');
 head_add_js('library/colorbox/jquery.colorbox-min.js');
 head_add_js('library/bootstrap-datetimepicker/js/moment.js');
 head_add_js('library/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js');
+
 /**
  * Those who require this feature will know what to do with it.
  * Those who don't, won't.
-- 
cgit v1.2.3


From 3100b5d93e9f440a17b99d2856ee022b29d73f80 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Mon, 27 Jan 2014 18:06:09 -0800
Subject: photo tagging still broken - but at least don't create a new linked
 item every time a photo is edited.

---
 view/tpl/photo_view.tpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/tpl/photo_view.tpl b/view/tpl/photo_view.tpl
index e56fd5b57..93e9abfa5 100755
--- a/view/tpl/photo_view.tpl
+++ b/view/tpl/photo_view.tpl
@@ -24,7 +24,7 @@
 <div id="photo-edit-edit" style="display: none;">
 <form action="photos/{{$edit.nickname}}/{{$edit.resource_id}}" method="post" id="photo_edit_form" >
 
-	<input type="hidden" name="item_id" value="{{$item_id}}" />
+	<input type="hidden" name="item_id" value="{{$edit.item_id}}" />
 
 	<label id="photo-edit-albumname-label" for="photo-edit-albumname">{{$edit.newalbum}}</label>
 	<input id="photo-edit-albumname" type="text" size="32" name="albname" value="{{$edit.album}}" />
-- 
cgit v1.2.3


From 8efac0cfd6db063a469ada1db4e5767a5fd975c6 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Tue, 28 Jan 2014 16:16:55 -0800
Subject: fix sql query and provide setting to hide online status

---
 view/tpl/settings.tpl | 3 +++
 1 file changed, 3 insertions(+)

(limited to 'view')

diff --git a/view/tpl/settings.tpl b/view/tpl/settings.tpl
index 7b6add231..b1a4f956d 100755
--- a/view/tpl/settings.tpl
+++ b/view/tpl/settings.tpl
@@ -22,6 +22,9 @@
 
 <h3 class="settings-heading">{{$h_prv}}</h3>
 
+{{include file="field_checkbox.tpl" field=$hide_presence}}
+
+
 <div id="settings-privacy-macros">{{$lbl_pmacro}}</div>
 <ul>
 <li><a href="#" onclick="channel_privacy_macro(3); return false" id="settings_pmacro3">{{$pmacro3}}</a></li>
-- 
cgit v1.2.3


From cc11535e34f1cc91251d7ca3f38ef38997774857 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Tue, 28 Jan 2014 17:07:25 -0800
Subject: online indication on profile sidebar

---
 view/js/icon_translate.js         | 1 +
 view/theme/redbasic/css/style.css | 4 ++++
 view/tpl/profile_vcard.tpl        | 2 +-
 3 files changed, 6 insertions(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/js/icon_translate.js b/view/js/icon_translate.js
index 9e69e0b7d..838ff899f 100644
--- a/view/js/icon_translate.js
+++ b/view/js/icon_translate.js
@@ -50,4 +50,5 @@ $(document).ready(function() {
 		$('.icon-check').addClass('');
 		$('.icon-globe').addClass('');
 		$('.icon-circle-blank').addClass('');
+		$('.icon-circle').addClass('');
 });
\ No newline at end of file
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index b2f90cbc1..02832b5f0 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -2445,4 +2445,8 @@ img.mail-list-sender-photo {
 
 .abook-self {
 	background-color: #ffdddd;
+}
+.online-now {
+	color: red;
+	cursor: pointer;
 }
\ No newline at end of file
diff --git a/view/tpl/profile_vcard.tpl b/view/tpl/profile_vcard.tpl
index aaee02ab5..7a857fd67 100755
--- a/view/tpl/profile_vcard.tpl
+++ b/view/tpl/profile_vcard.tpl
@@ -16,7 +16,7 @@
 	</div>
 	{{/if}}
 
-	<div class="fn label">{{$profile.name}}</div>
+	<div class="fn label">{{$profile.name}}{{if $profile.online}} <i class="icon-asterisk online-now" title="{{$profile.online}}"></i>{{/if}}</div>
 		
 	{{if $pdesc}}<div class="title">{{$profile.pdesc}}</div>{{/if}}
 	<div id="profile-photo-wrapper"><img class="photo" width="175" height="175" src="{{$profile.photo}}?rev={{$profile.picdate}}" alt="{{$profile.name}}"></div>
-- 
cgit v1.2.3


From d970c69f91b96b3ef40752a95ecec8ca8b11b62a Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Tue, 28 Jan 2014 19:49:56 -0800
Subject: online indication to the directory popup

---
 view/tpl/direntry_large.tpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/tpl/direntry_large.tpl b/view/tpl/direntry_large.tpl
index a3fa7e4c3..f00448175 100755
--- a/view/tpl/direntry_large.tpl
+++ b/view/tpl/direntry_large.tpl
@@ -13,7 +13,7 @@
 <div class="clear"></div>
 
 
-<div class="contact-name" id="directory-name-{{$id}}"  >{{$name}}</div>
+<div class="contact-name" id="directory-name-{{$id}}"  >{{$name}}{{if $online}} <i class="icon-asterisk online-now" title="{{$online}}"></i>{{/if}}</div>
 {{if $connect}}
 <div class="directory-connect"><a href="{{$connect}}">{{$conn_label}}</a></div>
 {{/if}}
-- 
cgit v1.2.3


From f84ba95e870ce5b63e5af4cc7be43b516d4c163d Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Wed, 29 Jan 2014 01:53:15 -0800
Subject: add template for chatroomlist widget

---
 view/tpl/chatroomlist.tpl | 11 +++++++++++
 1 file changed, 11 insertions(+)
 create mode 100644 view/tpl/chatroomlist.tpl

(limited to 'view')

diff --git a/view/tpl/chatroomlist.tpl b/view/tpl/chatroomlist.tpl
new file mode 100644
index 000000000..34050eef3
--- /dev/null
+++ b/view/tpl/chatroomlist.tpl
@@ -0,0 +1,11 @@
+<div class="widget">
+<h3>{{$header}}</h3>
+{{$if $items}}
+<table>
+{{for $items as $item}}
+<tr><td>{{$item.cr_name}}</td><td>{{$item.cr_inroom}}</td></tr>
+{{/for}}
+</table>
+{{/if}}
+</div>
+
-- 
cgit v1.2.3


From 6a9d43bcbe167ff3a8f9bd8a2ce93d9fc298fcdf Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Wed, 29 Jan 2014 03:16:07 -0800
Subject: debug chatroom_list widget

---
 view/tpl/chatroomlist.tpl | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'view')

diff --git a/view/tpl/chatroomlist.tpl b/view/tpl/chatroomlist.tpl
index 34050eef3..d2cf4d7b0 100644
--- a/view/tpl/chatroomlist.tpl
+++ b/view/tpl/chatroomlist.tpl
@@ -1,10 +1,10 @@
 <div class="widget">
 <h3>{{$header}}</h3>
-{{$if $items}}
+{{if $items}}
 <table>
-{{for $items as $item}}
+{{foreach $items as $item}}
 <tr><td>{{$item.cr_name}}</td><td>{{$item.cr_inroom}}</td></tr>
-{{/for}}
+{{/foreach}}
 </table>
 {{/if}}
 </div>
-- 
cgit v1.2.3


From fe2b6f3dfb4a9473905dde49b7741a6c03699c23 Mon Sep 17 00:00:00 2001
From: marijus <mario@localhost.localdomain>
Date: Thu, 30 Jan 2014 00:01:19 +0100
Subject: add image floating to bbcode

---
 view/tpl/item_attach.tpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/tpl/item_attach.tpl b/view/tpl/item_attach.tpl
index 25c127a15..7dc8dfd59 100644
--- a/view/tpl/item_attach.tpl
+++ b/view/tpl/item_attach.tpl
@@ -1,6 +1,6 @@
+<div class="clear"></div>
 <div class="body-attach">
 {{foreach $attaches as $a}} 
 <a href="{{$a.url}}" title="{{$a.title}}" class="attachlink" ><i class="icon-paper-clip attach-icons attach-clip"></i><i class="{{$a.icon}} attach-icons"></i></a>
 {{/foreach}}
-<div class="clear"></div>
 </div>
-- 
cgit v1.2.3


From 677f5f641e6c37244ee67459b6fa2c7e5aea119b Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Wed, 29 Jan 2014 16:02:02 -0800
Subject: more testing of chatroom interfaces, also corrected a function call
 that should have been a class instantiation in reddav

---
 view/tpl/chatroomlist.tpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/tpl/chatroomlist.tpl b/view/tpl/chatroomlist.tpl
index d2cf4d7b0..c26ba0c33 100644
--- a/view/tpl/chatroomlist.tpl
+++ b/view/tpl/chatroomlist.tpl
@@ -3,7 +3,7 @@
 {{if $items}}
 <table>
 {{foreach $items as $item}}
-<tr><td>{{$item.cr_name}}</td><td>{{$item.cr_inroom}}</td></tr>
+<tr><td align="left"><a href="{{$baseurl}}/chat/{{$nickname}}/{{$item.cr_id}}">{{$item.cr_name}}</a></td><td align="right">{{$item.cr_inroom}}</td></tr>
 {{/foreach}}
 </table>
 {{/if}}
-- 
cgit v1.2.3


From b8fb6a437335ce16e658f8acda632916bb28e574 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Wed, 29 Jan 2014 17:09:20 -0800
Subject: more chat infrastructure

---
 view/tpl/chat.tpl | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 view/tpl/chat.tpl

(limited to 'view')

diff --git a/view/tpl/chat.tpl b/view/tpl/chat.tpl
new file mode 100644
index 000000000..6378b8776
--- /dev/null
+++ b/view/tpl/chat.tpl
@@ -0,0 +1,18 @@
+<div id="chatContainer">
+
+    <div id="chatTopBar" class="rounded"></div>
+    <div id="chatLineHolder"></div>
+
+    <div id="chatUsers" class="rounded"></div>
+
+    <div id="chatBottomBar" class="rounded">
+        <div class="tip"></div>
+
+        <form id="submitForm" method="post" action="">
+            <input id="chatText" name="chatText" class="rounded" maxlength="255" />
+            <input type="submit" class="blueButton" value="Submit" />
+        </form>
+
+    </div>
+
+</div>
\ No newline at end of file
-- 
cgit v1.2.3


From 9fdee53c9a35d584de8cacd071c6608de88a18b6 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Wed, 29 Jan 2014 20:14:18 -0800
Subject: start on the ajax bits

---
 view/tpl/chat.tpl | 33 +++++++++++++++++++++++++++++----
 1 file changed, 29 insertions(+), 4 deletions(-)

(limited to 'view')

diff --git a/view/tpl/chat.tpl b/view/tpl/chat.tpl
index 6378b8776..d0f9418a0 100644
--- a/view/tpl/chat.tpl
+++ b/view/tpl/chat.tpl
@@ -8,11 +8,36 @@
     <div id="chatBottomBar" class="rounded">
         <div class="tip"></div>
 
-        <form id="submitForm" method="post" action="">
-            <input id="chatText" name="chatText" class="rounded" maxlength="255" />
-            <input type="submit" class="blueButton" value="Submit" />
+        <form id="chat-form" method="post" action="#">
+			<input type="hidden" name="room_id" value="{{$room_id}}" />
+            <textarea id="chatText" name="chat_text" rows=3 cols=80></textarea><br />
+            <input type="submit" name="submit" value="{{$submit}}" />
         </form>
 
     </div>
 
-</div>
\ No newline at end of file
+</div>
+
+<script>
+var room_id = {{$room_id}};
+
+$('#chat-form').submit(function(ev) {
+	$('body').css('cursor','wait');
+	$.post("chatsvc", $('#chat-form').serialize(),function(data) {
+			load_chats(data);
+			$('body').css('cursor','auto');
+		},'json');
+	ev.preventDefault();
+});
+
+function load_chats(data) {
+	var chat_data = data;
+	if(! data) {
+		$.get("chatsvc?f=&room_id=" + room_id,function(data) {
+			chat_data = $this;
+		});
+	}
+
+
+}
+</script>
-- 
cgit v1.2.3


From 7b609782623d91c2bdf81c04cd801aaae927e9fa Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Wed, 29 Jan 2014 20:40:37 -0800
Subject: back-end for changing online status and keeping presence refreshed

---
 view/pdl/mod_chat.pdl | 3 +++
 1 file changed, 3 insertions(+)
 create mode 100644 view/pdl/mod_chat.pdl

(limited to 'view')

diff --git a/view/pdl/mod_chat.pdl b/view/pdl/mod_chat.pdl
new file mode 100644
index 000000000..6b1d2a15e
--- /dev/null
+++ b/view/pdl/mod_chat.pdl
@@ -0,0 +1,3 @@
+[region=aside]
+[widget=profile][/widget]
+[/region]
-- 
cgit v1.2.3


From 080928f214c9f83879f1578e05baa6032fa2b7b8 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Wed, 29 Jan 2014 21:29:48 -0800
Subject: chatroom management front-end stuff

---
 view/js/mod_chat.js         | 16 ++++++++++++++++
 view/js/mod_filestorage.php | 16 ++++++++++++++++
 view/tpl/chatroom_new.tpl   | 12 ++++++++++++
 3 files changed, 44 insertions(+)
 create mode 100644 view/js/mod_chat.js
 create mode 100644 view/js/mod_filestorage.php
 create mode 100644 view/tpl/chatroom_new.tpl

(limited to 'view')

diff --git a/view/js/mod_chat.js b/view/js/mod_chat.js
new file mode 100644
index 000000000..82957ae44
--- /dev/null
+++ b/view/js/mod_chat.js
@@ -0,0 +1,16 @@
+$(document).ready(function() {
+
+	$('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
+		var selstr;
+		$('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() {
+			selstr = $(this).text();
+			$('#jot-perms-icon').removeClass('unlock').addClass('lock');
+			$('#jot-public').hide();
+		});
+		if(selstr == null) { 
+			$('#jot-perms-icon').removeClass('lock').addClass('unlock');
+			$('#jot-public').show();
+		}
+
+	}).trigger('change');
+});
diff --git a/view/js/mod_filestorage.php b/view/js/mod_filestorage.php
new file mode 100644
index 000000000..82957ae44
--- /dev/null
+++ b/view/js/mod_filestorage.php
@@ -0,0 +1,16 @@
+$(document).ready(function() {
+
+	$('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
+		var selstr;
+		$('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() {
+			selstr = $(this).text();
+			$('#jot-perms-icon').removeClass('unlock').addClass('lock');
+			$('#jot-public').hide();
+		});
+		if(selstr == null) { 
+			$('#jot-perms-icon').removeClass('lock').addClass('unlock');
+			$('#jot-public').show();
+		}
+
+	}).trigger('change');
+});
diff --git a/view/tpl/chatroom_new.tpl b/view/tpl/chatroom_new.tpl
new file mode 100644
index 000000000..86eadb132
--- /dev/null
+++ b/view/tpl/chatroom_new.tpl
@@ -0,0 +1,12 @@
+<h1>{{$header}}</h1>
+
+<form action="chat" method="post" >
+{{include file="field_input.tpl" field=$name}}
+<br />
+<br />
+{{$acl}}
+<div class="clear"></div>
+<input type="submit" name="submit" value="{{$submit}}" />
+</form>
+
+
-- 
cgit v1.2.3


From 6c6a9b963a925d33b2cc436d877a4edc5f0d59b1 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Thu, 30 Jan 2014 01:00:46 -0800
Subject: a bit more ajax work on chat and chatsvc and some fiddling with
 layouts

---
 view/tpl/chat.tpl | 35 +++++++++++++++++++++++++----------
 1 file changed, 25 insertions(+), 10 deletions(-)

(limited to 'view')

diff --git a/view/tpl/chat.tpl b/view/tpl/chat.tpl
index d0f9418a0..13862c339 100644
--- a/view/tpl/chat.tpl
+++ b/view/tpl/chat.tpl
@@ -1,11 +1,12 @@
-<div id="chatContainer">
+<div id="chatContainer" style="height: 100%; width: 100%; position: absolute; right: 0; bottom: 0;">
 
-    <div id="chatTopBar" class="rounded"></div>
+    <div id="chatTopBar" style="float: left; height: 80%;"></div>
     <div id="chatLineHolder"></div>
 
-    <div id="chatUsers" class="rounded"></div>
+    <div id="chatUsers" style="float: right; width: 120px; height: 100%; border: 1px solid #000;" ></div>
 
-    <div id="chatBottomBar" class="rounded">
+	<div class="clear"></div>
+    <div id="chatBottomBar" style="position: absolute; bottom: 0; height: 150px;">
         <div class="tip"></div>
 
         <form id="chat-form" method="post" action="#">
@@ -20,24 +21,38 @@
 
 <script>
 var room_id = {{$room_id}};
+var last_chat = 0;
+var chat_timer = null;
 
 $('#chat-form').submit(function(ev) {
 	$('body').css('cursor','wait');
 	$.post("chatsvc", $('#chat-form').serialize(),function(data) {
-			load_chats(data);
+			if(chat_timer) clearTimeout(chat_timer);
+			load_chats();
 			$('body').css('cursor','auto');
 		},'json');
 	ev.preventDefault();
 });
 
-function load_chats(data) {
-	var chat_data = data;
-	if(! data) {
-		$.get("chatsvc?f=&room_id=" + room_id,function(data) {
-			chat_data = $this;
+function load_chats() {
+
+	$.get("chatsvc?f=&room_id=" + room_id + '&last=' + last_chat,function(data) {
+		if(data.success) {
+			update_inroom(data.inroom);
+			update_chats(data.chats);
 		});
 	}
 
+	chat_timer = setTimeout(load_chats,10000);
+
+}
+
+function update_inroom(inroom) {
 
 }
+
+function update_chats(chats) {
+
+}
+
 </script>
-- 
cgit v1.2.3


From 0a2b2a139080b41c10bbc7fc0f3b24129f2c3c38 Mon Sep 17 00:00:00 2001
From: Michael Meer <michael@meer.name>
Date: Thu, 30 Jan 2014 10:39:09 +0100
Subject: attempt with fix URL for testing works

---
 view/tpl/admin_hubloc.tpl | 1 +
 1 file changed, 1 insertion(+)

(limited to 'view')

diff --git a/view/tpl/admin_hubloc.tpl b/view/tpl/admin_hubloc.tpl
index ea840e1b3..06a8cdf6a 100755
--- a/view/tpl/admin_hubloc.tpl
+++ b/view/tpl/admin_hubloc.tpl
@@ -15,6 +15,7 @@
 			<form action="{{$baseurl}}/admin/hubloc" method="post">
 			<input type="hidden" name="hublocid" value="{{$hub.hubloc_id}}">
 			<input type='hidden' name='form_security_token' value='{{$form_security_token}}'>
+			<input type='hidden' name='url' value='{{$hub.hubloc_host}}'>
 			<input type="submit" name="check" value="check" >
 			<input type="submit" name="repair" value="repair" ></td>
 			</form>
-- 
cgit v1.2.3


From 48bc9b546cdc0fae23efc3756e37ce59dc81737a Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Thu, 30 Jan 2014 03:51:25 -0800
Subject: typo and clear chattext after submission

---
 view/tpl/chat.tpl | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

(limited to 'view')

diff --git a/view/tpl/chat.tpl b/view/tpl/chat.tpl
index 13862c339..c65c117cd 100644
--- a/view/tpl/chat.tpl
+++ b/view/tpl/chat.tpl
@@ -28,6 +28,7 @@ $('#chat-form').submit(function(ev) {
 	$('body').css('cursor','wait');
 	$.post("chatsvc", $('#chat-form').serialize(),function(data) {
 			if(chat_timer) clearTimeout(chat_timer);
+			$('#chatText').val('');
 			load_chats();
 			$('body').css('cursor','auto');
 		},'json');
@@ -40,9 +41,9 @@ function load_chats() {
 		if(data.success) {
 			update_inroom(data.inroom);
 			update_chats(data.chats);
-		});
-	}
-
+		}
+	});
+	
 	chat_timer = setTimeout(load_chats,10000);
 
 }
-- 
cgit v1.2.3


From 3bdbdbab53e76ef86b2ff4df6db708b16d216f77 Mon Sep 17 00:00:00 2001
From: marijus <mario@localhost.localdomain>
Date: Thu, 30 Jan 2014 19:44:50 +0100
Subject: dont show an empty link to profile creation if multi_profile is not
 enabled

---
 view/tpl/profile_vcard.tpl | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

(limited to 'view')

diff --git a/view/tpl/profile_vcard.tpl b/view/tpl/profile_vcard.tpl
index 7a857fd67..187c3039d 100755
--- a/view/tpl/profile_vcard.tpl
+++ b/view/tpl/profile_vcard.tpl
@@ -10,8 +10,7 @@
 		</li>
 		{{/foreach}}
 		<li><a href="profile_photo" >{{$profile.menu.chg_photo}}</a></li>
-		<li><a href="profiles/new" id="profile-listing-new-link">{{$profile.menu.cr_new}}</a></li>
-				
+		{{if $profile.menu.cr_new}}<li><a href="profiles/new" id="profile-listing-new-link">{{$profile.menu.cr_new}}</a></li>{{/if}}
 	</ul>
 	</div>
 	{{/if}}
-- 
cgit v1.2.3


From f69bf5e5987dafa9be3a1b278f68a9d0e48aa06a Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Thu, 30 Jan 2014 18:57:46 -0800
Subject: more chat work - this time the ajax bits to actually show chats on
 the page

---
 view/tpl/chat.tpl | 39 ++++++++++++++++++++++++++++++++++-----
 1 file changed, 34 insertions(+), 5 deletions(-)

(limited to 'view')

diff --git a/view/tpl/chat.tpl b/view/tpl/chat.tpl
index c65c117cd..f3f3ee5bd 100644
--- a/view/tpl/chat.tpl
+++ b/view/tpl/chat.tpl
@@ -1,12 +1,13 @@
-<div id="chatContainer" style="height: 100%; width: 100%; position: absolute; right: 0; bottom: 0;">
+<div id="chatContainer" style="height: 100%; width: 100%;">
 
-    <div id="chatTopBar" style="float: left; height: 80%;"></div>
-    <div id="chatLineHolder"></div>
+    <div id="chatTopBar" style="float: left; height: 400px; width: 400px; overflow-y: auto;">
+    	<div id="chatLineHolder"></div>
+	</div>
 
     <div id="chatUsers" style="float: right; width: 120px; height: 100%; border: 1px solid #000;" ></div>
 
 	<div class="clear"></div>
-    <div id="chatBottomBar" style="position: absolute; bottom: 0; height: 150px;">
+    <div id="chatBottomBar" style="position: relative; bottom: 0; height: 150px; margin-top: 20px;">
         <div class="tip"></div>
 
         <form id="chat-form" method="post" action="#">
@@ -18,12 +19,23 @@
     </div>
 
 </div>
+<style>
+section {
+	padding-bottom: 0;
+}
+</style>
 
 <script>
 var room_id = {{$room_id}};
 var last_chat = 0;
 var chat_timer = null;
 
+$(document).ready(function() {
+	chat_timer = setTimeout(load_chats,300);
+
+});
+
+
 $('#chat-form').submit(function(ev) {
 	$('body').css('cursor','wait');
 	$.post("chatsvc", $('#chat-form').serialize(),function(data) {
@@ -49,11 +61,28 @@ function load_chats() {
 }
 
 function update_inroom(inroom) {
-
+	var html = document.createElement('div');
+	var count = inroom.length;
+	$.each( inroom, function(index, item) {
+		var newNode = document.createElement('div');
+		$(newNode).html('<img style="height: 32px; width: 32px;" src="' + item.img + '" alt="' + item.name + '" />');
+		html.appendChild(newNode); 		
+	});
+	$('#chatUsers').html(html);	
 }
 
 function update_chats(chats) {
 
+	var count = chats.length;
+	$.each( chats, function(index, item) {
+		last_chat = item.id;
+		var newNode = document.createElement('div');
+		$(newNode).html('<div style="margin-bottom: 5px; clear: both;"><img style="height: 32px; width: 32px; float: left;" src="' + item.img + '" alt="' + item.name + '" /><div class="chat-body; style="float: left; width: 80%;">' + item.text + '</div></div>');
+		$('#chatLineHolder').append(newNode);
+		});
+	var elem = document.getElementById('chatTopBar');
+	elem.scrollTop = elem.scrollHeight;
+
 }
 
 </script>
-- 
cgit v1.2.3


From aaa3c62efa2999d083063a0384b3a23b758d3380 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Thu, 30 Jan 2014 21:09:02 -0800
Subject: keep presence updated - typo was causing it to logout

---
 view/tpl/chat.tpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/tpl/chat.tpl b/view/tpl/chat.tpl
index f3f3ee5bd..19b3425da 100644
--- a/view/tpl/chat.tpl
+++ b/view/tpl/chat.tpl
@@ -1,6 +1,6 @@
 <div id="chatContainer" style="height: 100%; width: 100%;">
 
-    <div id="chatTopBar" style="float: left; height: 400px; width: 400px; overflow-y: auto;">
+    <div id="chatTopBar" style="float: left; height: 400px; width: 650px; overflow-y: auto;">
     	<div id="chatLineHolder"></div>
 	</div>
 
-- 
cgit v1.2.3


From af75b77253bf051b9e3f486809bbabcd3c415732 Mon Sep 17 00:00:00 2001
From: marijus <mario@localhost.localdomain>
Date: Fri, 31 Jan 2014 18:31:14 +0100
Subject: comment out since it is not clear if this is not implemented yet or
 obsolete

---
 view/tpl/nav.tpl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'view')

diff --git a/view/tpl/nav.tpl b/view/tpl/nav.tpl
index f27afed09..048f53743 100755
--- a/view/tpl/nav.tpl
+++ b/view/tpl/nav.tpl
@@ -39,7 +39,7 @@
 			<a class="{{$nav.network.2}}" href="{{$nav.network.0}}" title="{{$nav.network.3}}" ><i class="icon-th nav-icon"></i></a>
 			<span id="net-update" class="nav-notify fakelink" rel="#nav-network-menu"></span>
 			<ul id="nav-network-menu" class="menu-popup notify-menus" rel="network">
-				<li id="nav-network-see-all"><a href="{{$nav.network.all.0}}">{{$nav.network.all.1}}</a></li>
+				{{* <li id="nav-network-see-all"><a href="{{$nav.network.all.0}}">{{$nav.network.all.1}}</a></li> *}}
 				<li id="nav-network-mark-all"><a href="#" onclick="markRead('network'); return false;">{{$nav.network.mark.1}}</a></li>
 				<li class="empty">{{$emptynotifications}}</li>
 			</ul>
@@ -51,7 +51,7 @@
 			<a class="{{$nav.home.2}}" href="{{$nav.home.0}}" title="{{$nav.home.3}}" ><i class="icon-home nav-icon"></i></a>
 			<span id="home-update" class="nav-notify fakelink" rel="#nav-home-menu"></span>
 			<ul id="nav-home-menu" class="menu-popup notify-menus" rel="home">
-				<li id="nav-home-see-all"><a href="{{$nav.home.all.0}}">{{$nav.home.all.1}}</a></li>
+				{{* <li id="nav-home-see-all"><a href="{{$nav.home.all.0}}">{{$nav.home.all.1}}</a></li> *}}
 				<li id="nav-home-mark-all"><a href="#" onclick="markRead('home'); return false;">{{$nav.home.mark.1}}</a></li>
 				<li class="empty">{{$emptynotifications}}</li>
 			</ul>
-- 
cgit v1.2.3


From 33f3cd3d4a5935422f5ef910390263c6928e5c57 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Fri, 31 Jan 2014 20:48:26 -0800
Subject: chat formatting/style improvements

---
 view/tpl/chat.tpl | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

(limited to 'view')

diff --git a/view/tpl/chat.tpl b/view/tpl/chat.tpl
index 19b3425da..420430550 100644
--- a/view/tpl/chat.tpl
+++ b/view/tpl/chat.tpl
@@ -65,7 +65,7 @@ function update_inroom(inroom) {
 	var count = inroom.length;
 	$.each( inroom, function(index, item) {
 		var newNode = document.createElement('div');
-		$(newNode).html('<img style="height: 32px; width: 32px;" src="' + item.img + '" alt="' + item.name + '" />');
+		$(newNode).html('<img style="height: 32px; width: 32px;" src="' + item.img + '" alt="' + item.name + '" /><br />' + item.name + '<br/>');
 		html.appendChild(newNode); 		
 	});
 	$('#chatUsers').html(html);	
@@ -77,8 +77,10 @@ function update_chats(chats) {
 	$.each( chats, function(index, item) {
 		last_chat = item.id;
 		var newNode = document.createElement('div');
-		$(newNode).html('<div style="margin-bottom: 5px; clear: both;"><img style="height: 32px; width: 32px; float: left;" src="' + item.img + '" alt="' + item.name + '" /><div class="chat-body; style="float: left; width: 80%;">' + item.text + '</div></div>');
+		$(newNode).html('<div style="margin-bottom: 5px; clear: both;"><img style="height: 32px; width: 32px; float: left;" src="' + item.img + '" alt="' + item.name + '" /><div class="chat-body" style="float: left; width: 80%; margin-left: 15px; font-size: 14px;">' + item.name + ' <span class="autotime" title="' + item.isotime + '">' + item.localtime + '</span><br />' + item.text + '</div></div>');
 		$('#chatLineHolder').append(newNode);
+		$(".autotime").timeago();
+
 		});
 	var elem = document.getElementById('chatTopBar');
 	elem.scrollTop = elem.scrollHeight;
-- 
cgit v1.2.3


From d14afc0ee442a2ba4013c193fa80917026bb6111 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sat, 1 Feb 2014 00:54:20 -0800
Subject: provide the room name for the room you're in.

---
 view/tpl/chat.tpl | 1 +
 1 file changed, 1 insertion(+)

(limited to 'view')

diff --git a/view/tpl/chat.tpl b/view/tpl/chat.tpl
index 420430550..eda1f83af 100644
--- a/view/tpl/chat.tpl
+++ b/view/tpl/chat.tpl
@@ -1,3 +1,4 @@
+<h1>{{$room_name}}</h1>
 <div id="chatContainer" style="height: 100%; width: 100%;">
 
     <div id="chatTopBar" style="float: left; height: 400px; width: 650px; overflow-y: auto;">
-- 
cgit v1.2.3


From 94e59d47705f30cab039c01e2ba2bc079496938e Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sat, 1 Feb 2014 01:00:26 -0800
Subject: status indication

---
 view/tpl/chat.tpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/tpl/chat.tpl b/view/tpl/chat.tpl
index eda1f83af..0ebe879a1 100644
--- a/view/tpl/chat.tpl
+++ b/view/tpl/chat.tpl
@@ -66,7 +66,7 @@ function update_inroom(inroom) {
 	var count = inroom.length;
 	$.each( inroom, function(index, item) {
 		var newNode = document.createElement('div');
-		$(newNode).html('<img style="height: 32px; width: 32px;" src="' + item.img + '" alt="' + item.name + '" /><br />' + item.name + '<br/>');
+		$(newNode).html('<img style="height: 32px; width: 32px;" src="' + item.img + '" alt="' + item.name + '" /> ' + item.status + '<br />' + item.name + '<br/>');
 		html.appendChild(newNode); 		
 	});
 	$('#chatUsers').html(html);	
-- 
cgit v1.2.3


From 30aeb42bed0b4bb6bf90c16674565ee5d7a26945 Mon Sep 17 00:00:00 2001
From: Christian Vogeley <christian.vogeley@hotmail.de>
Date: Sat, 1 Feb 2014 23:28:27 +0100
Subject: Press return to post chat posts- SHIFT-RETURN creates line break

on mobile devices keep default behavior
---
 view/tpl/chat.tpl | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

(limited to 'view')

diff --git a/view/tpl/chat.tpl b/view/tpl/chat.tpl
index 0ebe879a1..a0c18f8d6 100644
--- a/view/tpl/chat.tpl
+++ b/view/tpl/chat.tpl
@@ -89,3 +89,20 @@ function update_chats(chats) {
 }
 
 </script>
+<script>
+function isMobile() {
+  try{ document.createEvent("TouchEvent"); return true; }
+  catch(e){ return false; }
+}
+$(function(){
+
+  $('#chatText').keypress(function(e){
+  	if (e.keyCode == 13 && e.shiftKey||isMobile()) {
+	}
+    else if (e.keyCode == 13) {
+	  e.preventDefault();
+      $(this).parent('form').trigger('submit');
+    }
+  });
+});
+</script>
-- 
cgit v1.2.3


From a2761213e025d55f96803847712db10ac5f8e78c Mon Sep 17 00:00:00 2001
From: Tazman DeVille <tazmandevil@gmx.com>
Date: Sun, 2 Feb 2014 04:26:56 +0100
Subject: link colour options

---
 view/theme/redbasic/css/style.css          | 6 +++---
 view/theme/redbasic/php/config.php         | 3 +++
 view/theme/redbasic/php/style.php          | 3 +++
 view/theme/redbasic/tpl/theme_settings.tpl | 1 +
 4 files changed, 10 insertions(+), 3 deletions(-)

(limited to 'view')

diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 02832b5f0..c4eddc179 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -40,11 +40,11 @@ abbr {
 
 a, a:visited, a:link, .fakelink, .fakelink:visited, .fakelink:link { 
 	font-weight: bold;
-	color: #0080FF; 
+	color: #7b0000; 
 	text-decoration: none; 
 }
 
-a:hover, .fakelink:hover { color: #44AAFF; text-decoration: underline; }
+a:hover, .fakelink:hover { color: #c40003; text-decoration: underline; }
 
 .fakelink {
 	cursor: pointer;
@@ -2449,4 +2449,4 @@ img.mail-list-sender-photo {
 .online-now {
 	color: red;
 	cursor: pointer;
-}
\ No newline at end of file
+}
diff --git a/view/theme/redbasic/php/config.php b/view/theme/redbasic/php/config.php
index 20355197f..d6adf5381 100644
--- a/view/theme/redbasic/php/config.php
+++ b/view/theme/redbasic/php/config.php
@@ -7,6 +7,7 @@ function theme_content(&$a) {
 
 	$arr['schema'] = get_pconfig(local_user(),'redbasic', 'schema' );
 	$arr['nav_colour'] = get_pconfig(local_user(),'redbasic', 'nav_colour' );
+	$arr['link_colour'] = get_pconfig(local_user(),'redbasic', 'link_colour' );
 	$arr['banner_colour'] = get_pconfig(local_user(),'redbasic', 'banner_colour' );
 	$arr['bgcolour'] = get_pconfig(local_user(),'redbasic', 'background_colour' );
 	$arr['background_image'] = get_pconfig(local_user(),'redbasic', 'background_image' );
@@ -33,6 +34,7 @@ function theme_post(&$a) {
 	if (isset($_POST['redbasic-settings-submit'])) {
 		set_pconfig(local_user(), 'redbasic', 'schema', $_POST['redbasic_schema']);
 		set_pconfig(local_user(), 'redbasic', 'nav_colour', $_POST['redbasic_nav_colour']);
+		set_pconfig(local_user(), 'redbasic', 'link_colour', $_POST['redbasic_link_colour']);
 		set_pconfig(local_user(), 'redbasic', 'background_colour', $_POST['redbasic_background_colour']);
 		set_pconfig(local_user(), 'redbasic', 'banner_colour', $_POST['redbasic_banner_colour']);
 		set_pconfig(local_user(), 'redbasic', 'background_image', $_POST['redbasic_background_image']);
@@ -88,6 +90,7 @@ if(feature_enabled(local_user(),'expert'))
 		'$title' => t("Theme settings"),
 		'$schema' => array('redbasic_schema', t('Set scheme'), $arr['schema'], '', $scheme_choices),
 		'$nav_colour' => array('redbasic_nav_colour', t('Navigation bar colour'), $arr['nav_colour'], '', $nav_colours),
+		'$link_colour' => array('redbasic_link_colour', t('link colour'), $arr['link_colour'], '', $link_colours),
 		'$banner_colour' => array('redbasic_banner_colour', t('Set font-colour for banner'), $arr['banner_colour']),
 		'$bgcolour' => array('redbasic_background_colour', t('Set the background colour'), $arr['bgcolour']),
 		'$background_image' => array('redbasic_background_image', t('Set the background image'), $arr['background_image']),
diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php
index 9956ccd31..85420fbaf 100644
--- a/view/theme/redbasic/php/style.php
+++ b/view/theme/redbasic/php/style.php
@@ -63,6 +63,8 @@
 			$nav_bg_3 = "#f00";
 			$nav_bg_4 = "#b00";
 		}
+	if (! $link_colour)
+		$link_colour = "#7b0000";
 	if (! $banner_colour)
 		$banner_colour = "fff";
 	if (! $bgcolour)
@@ -141,6 +143,7 @@ $options = array (
 '$nav_bg_2' => $nav_bg_2,
 '$nav_bg_3' => $nav_bg_3,
 '$nav_bg_4' => $nav_bg_4,
+'$link_colour' => $link_colour,
 '$banner_colour' => $banner_colour,
 '$search_background' => $search_background,
 '$bgcolour' => $bgcolour,
diff --git a/view/theme/redbasic/tpl/theme_settings.tpl b/view/theme/redbasic/tpl/theme_settings.tpl
index e0f546896..ca05986a2 100644
--- a/view/theme/redbasic/tpl/theme_settings.tpl
+++ b/view/theme/redbasic/tpl/theme_settings.tpl
@@ -6,6 +6,7 @@
 {{if $expert}}
 {{include file="field_select.tpl" field=$nav_colour}}
 {{include file="field_input.tpl" field=$banner_colour}}
+{{include file="field_input.tpl" field=$link_colour}}
 {{include file="field_input.tpl" field=$bgcolour}}
 {{include file="field_input.tpl" field=$background_image}}
 {{include file="field_input.tpl" field=$item_colour}}
-- 
cgit v1.2.3


From bd8378339117f307c73e176e80a3417c8fb2a3f4 Mon Sep 17 00:00:00 2001
From: Tazman DeVille <tazmandevil@gmx.com>
Date: Sun, 2 Feb 2014 04:32:43 +0100
Subject: link colours

---
 view/theme/redbasic/php/style.php | 1 +
 1 file changed, 1 insertion(+)

(limited to 'view')

diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php
index 85420fbaf..35fe54fe4 100644
--- a/view/theme/redbasic/php/style.php
+++ b/view/theme/redbasic/php/style.php
@@ -10,6 +10,7 @@
 // A further two - $nav_bg_3 and $nav_bg_4 are used to create the hover, if any particular scheme
 // wants to implement that
 	    $nav_colour = get_pconfig($uid, "redbasic", "nav_colour");	
+	    $link_colour = get_pconfig($uid, "redbasic", "link_colour");	
 
 // Load the owners pconfig
 		$banner_colour = get_pconfig($uid,'redbasic','banner_colour');
-- 
cgit v1.2.3


From de412abe88a697f08755f09694fd16f9230482cb Mon Sep 17 00:00:00 2001
From: Tazman DeVille <tazmandevil@gmx.com>
Date: Sun, 2 Feb 2014 05:19:29 +0100
Subject: user configured link colour

---
 view/theme/redbasic/css/style.css | 2 +-
 view/theme/redbasic/php/style.php | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

(limited to 'view')

diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index c4eddc179..1a36c1c43 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -40,7 +40,7 @@ abbr {
 
 a, a:visited, a:link, .fakelink, .fakelink:visited, .fakelink:link { 
 	font-weight: bold;
-	color: #7b0000; 
+	color: $link_colour; 
 	text-decoration: none; 
 }
 
diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php
index 35fe54fe4..fcb762891 100644
--- a/view/theme/redbasic/php/style.php
+++ b/view/theme/redbasic/php/style.php
@@ -10,10 +10,10 @@
 // A further two - $nav_bg_3 and $nav_bg_4 are used to create the hover, if any particular scheme
 // wants to implement that
 	    $nav_colour = get_pconfig($uid, "redbasic", "nav_colour");	
-	    $link_colour = get_pconfig($uid, "redbasic", "link_colour");	
 
 // Load the owners pconfig
 		$banner_colour = get_pconfig($uid,'redbasic','banner_colour');
+	    $link_colour = get_pconfig($uid, "redbasic", "link_colour");	
 		$schema = get_pconfig($uid,'redbasic','schema');
 	    $bgcolour = get_pconfig($uid, "redbasic", "background_colour");	
 	    $background_image = get_pconfig($uid, "redbasic", "background_image");	
-- 
cgit v1.2.3


From 61cc4de2255b344e9f607ae9fa545f45d7423b56 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sat, 1 Feb 2014 21:03:21 -0800
Subject: provide donation options on siteinfo page

---
 view/tpl/siteinfo.tpl | 1 +
 1 file changed, 1 insertion(+)

(limited to 'view')

diff --git a/view/tpl/siteinfo.tpl b/view/tpl/siteinfo.tpl
index 4baa1969b..d956a7228 100755
--- a/view/tpl/siteinfo.tpl
+++ b/view/tpl/siteinfo.tpl
@@ -14,3 +14,4 @@
 {{if $plugins_list}}
    <div style="margin-left: 25px; margin-right: 25px;">{{$plugins_list}}</div>
 {{/if}}
+<p>{{$donate}}</p>
-- 
cgit v1.2.3


From 17436f060f54e1c218296bce0bdc7b05abe4ee33 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sat, 1 Feb 2014 21:12:26 -0800
Subject: fix default link color

---
 view/theme/redbasic/css/style.css | 2 +-
 view/theme/redbasic/php/style.php | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

(limited to 'view')

diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 1a36c1c43..fe6d24f18 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -44,7 +44,7 @@ a, a:visited, a:link, .fakelink, .fakelink:visited, .fakelink:link {
 	text-decoration: none; 
 }
 
-a:hover, .fakelink:hover { color: #c40003; text-decoration: underline; }
+a:hover, .fakelink:hover { color: #44AAFF; text-decoration: underline; }
 
 .fakelink {
 	cursor: pointer;
diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php
index fcb762891..981aaddb2 100644
--- a/view/theme/redbasic/php/style.php
+++ b/view/theme/redbasic/php/style.php
@@ -65,7 +65,7 @@
 			$nav_bg_4 = "#b00";
 		}
 	if (! $link_colour)
-		$link_colour = "#7b0000";
+		$link_colour = "#0080FF";
 	if (! $banner_colour)
 		$banner_colour = "fff";
 	if (! $bgcolour)
-- 
cgit v1.2.3


From e83419b53e27078867f8449f476d87b064b9d502 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sun, 2 Feb 2014 03:43:52 -0800
Subject: add links to change chat status and leave room

---
 view/tpl/chat.tpl | 2 ++
 1 file changed, 2 insertions(+)

(limited to 'view')

diff --git a/view/tpl/chat.tpl b/view/tpl/chat.tpl
index a0c18f8d6..dba6a777f 100644
--- a/view/tpl/chat.tpl
+++ b/view/tpl/chat.tpl
@@ -17,6 +17,8 @@
             <input type="submit" name="submit" value="{{$submit}}" />
         </form>
 
+		<a href="{{$baseurl}}/chat/{{$nickname}}/{{$room_id}}/leave">{{$leave}}</a> | <a href="{{$baseurl}}/chatsvc?f=&room_id={{$room_id}}&status=away">{{$away}}</a> | <a href="{{$baseurl}}/chatsvc?f=&room_id={{$room_id}}&status=online">{{$online}}</a>
+
     </div>
 
 </div>
-- 
cgit v1.2.3


From a2fa1a162d9526987539479b22a328e5298954e8 Mon Sep 17 00:00:00 2001
From: Christian Vogeley <christian.vogeley@hotmail.de>
Date: Sun, 2 Feb 2014 13:59:20 +0100
Subject: Other not so elegant way of detecting touch screen devices

But at least it seems to work
---
 view/tpl/chat.tpl | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

(limited to 'view')

diff --git a/view/tpl/chat.tpl b/view/tpl/chat.tpl
index a0c18f8d6..5c96e79fe 100644
--- a/view/tpl/chat.tpl
+++ b/view/tpl/chat.tpl
@@ -91,8 +91,19 @@ function update_chats(chats) {
 </script>
 <script>
 function isMobile() {
-  try{ document.createEvent("TouchEvent"); return true; }
-  catch(e){ return false; }
+if( navigator.userAgent.match(/Android/i)
+ || navigator.userAgent.match(/webOS/i)
+ || navigator.userAgent.match(/iPhone/i)
+ || navigator.userAgent.match(/iPad/i)
+ || navigator.userAgent.match(/iPod/i)
+ || navigator.userAgent.match(/BlackBerry/i)
+ || navigator.userAgent.match(/Windows Phone/i)
+ ){
+    return true;
+  }
+ else {
+    return false;
+  }
 }
 $(function(){
 
-- 
cgit v1.2.3


From 16e818def78ce22527dcdd91d57dca8ee55b9069 Mon Sep 17 00:00:00 2001
From: Tazman DeVille <tazmandevil@gmx.com>
Date: Sun, 2 Feb 2014 14:01:12 +0100
Subject: link hover colour remains user set link_colour (w/o change default,
 Mike)

---
 view/theme/redbasic/css/style.css | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index fe6d24f18..776b4c31a 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -44,7 +44,7 @@ a, a:visited, a:link, .fakelink, .fakelink:visited, .fakelink:link {
 	text-decoration: none; 
 }
 
-a:hover, .fakelink:hover { color: #44AAFF; text-decoration: underline; }
+a:hover, .fakelink:hover { color: $link_colour; text-decoration: underline; }
 
 .fakelink {
 	cursor: pointer;
-- 
cgit v1.2.3


From 5846dc105a368eb4000a97341890abd9fa27381a Mon Sep 17 00:00:00 2001
From: Thomas Willingham <founder@kakste.com>
Date: Sun, 2 Feb 2014 16:28:58 +0000
Subject: Move CSS out of chat template

---
 view/css/mod_chat.css | 31 +++++++++++++++++++++++++++++++
 view/tpl/chat.tpl     | 13 ++++---------
 2 files changed, 35 insertions(+), 9 deletions(-)
 create mode 100644 view/css/mod_chat.css

(limited to 'view')

diff --git a/view/css/mod_chat.css b/view/css/mod_chat.css
new file mode 100644
index 000000000..7f33f2c48
--- /dev/null
+++ b/view/css/mod_chat.css
@@ -0,0 +1,31 @@
+ .chatContainer {
+	 height: 100%;
+	 width: 100%;
+ }
+ 
+ .chatTopBar {
+	 float: left;
+	 height: 400px;
+	 width: 650px;
+	 overflow-y: auto;
+ }
+ 
+ .chatUsers {
+	 float: right;
+	 width: 120px;
+	 height: 100%;
+	 border: 1px solid #000;
+ }
+ 
+ .chatBottomBar {
+	 position: relative;
+	 bottom: 0;
+	 height: 150px;
+	 margin-top: 20px;
+ }
+ 
+ section {
+	 padding-bottom: 0;
+ }
+ 
+ 
\ No newline at end of file
diff --git a/view/tpl/chat.tpl b/view/tpl/chat.tpl
index dba6a777f..eb98063fa 100644
--- a/view/tpl/chat.tpl
+++ b/view/tpl/chat.tpl
@@ -1,14 +1,14 @@
 <h1>{{$room_name}}</h1>
-<div id="chatContainer" style="height: 100%; width: 100%;">
+<div id="chatContainer"">
 
-    <div id="chatTopBar" style="float: left; height: 400px; width: 650px; overflow-y: auto;">
+    <div id="chatTopBar">
     	<div id="chatLineHolder"></div>
 	</div>
 
-    <div id="chatUsers" style="float: right; width: 120px; height: 100%; border: 1px solid #000;" ></div>
+    <div id="chatUsers"></div>
 
 	<div class="clear"></div>
-    <div id="chatBottomBar" style="position: relative; bottom: 0; height: 150px; margin-top: 20px;">
+    <div id="chatBottomBar">
         <div class="tip"></div>
 
         <form id="chat-form" method="post" action="#">
@@ -22,11 +22,6 @@
     </div>
 
 </div>
-<style>
-section {
-	padding-bottom: 0;
-}
-</style>
 
 <script>
 var room_id = {{$room_id}};
-- 
cgit v1.2.3


From 67899677db8bde044284aaec6237559a68a27b6a Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sun, 2 Feb 2014 15:50:07 -0800
Subject: make chat honour the pause key (but we still need to ping the server
 to maintain the in_room status), also the recent change to pull css out of
 the template file used classes instead of ids so none of the styles were
 sticking

---
 view/css/mod_chat.css | 8 ++++----
 view/tpl/chat.tpl     | 4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

(limited to 'view')

diff --git a/view/css/mod_chat.css b/view/css/mod_chat.css
index 7f33f2c48..ce6e59af1 100644
--- a/view/css/mod_chat.css
+++ b/view/css/mod_chat.css
@@ -1,23 +1,23 @@
- .chatContainer {
+ #chatContainer {
 	 height: 100%;
 	 width: 100%;
  }
  
- .chatTopBar {
+ #chatTopBar {
 	 float: left;
 	 height: 400px;
 	 width: 650px;
 	 overflow-y: auto;
  }
  
- .chatUsers {
+ #chatUsers {
 	 float: right;
 	 width: 120px;
 	 height: 100%;
 	 border: 1px solid #000;
  }
  
- .chatBottomBar {
+ #chatBottomBar {
 	 position: relative;
 	 bottom: 0;
 	 height: 150px;
diff --git a/view/tpl/chat.tpl b/view/tpl/chat.tpl
index eb98063fa..e4cd1d20b 100644
--- a/view/tpl/chat.tpl
+++ b/view/tpl/chat.tpl
@@ -47,8 +47,8 @@ $('#chat-form').submit(function(ev) {
 
 function load_chats() {
 
-	$.get("chatsvc?f=&room_id=" + room_id + '&last=' + last_chat,function(data) {
-		if(data.success) {
+	$.get("chatsvc?f=&room_id=" + room_id + '&last=' + last_chat + ((stopped) ? '&stopped=1' : ''),function(data) {
+		if(data.success && (! stopped)) {
 			update_inroom(data.inroom);
 			update_chats(data.chats);
 		}
-- 
cgit v1.2.3


From 2768262f9386e063efb4d7e276c5a7108c40d44b Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sun, 2 Feb 2014 16:49:09 -0800
Subject: Add switch to allow menus to be used as bookmark collections

---
 view/tpl/menuedit.tpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/tpl/menuedit.tpl b/view/tpl/menuedit.tpl
index ea9e775e2..324dbe426 100644
--- a/view/tpl/menuedit.tpl
+++ b/view/tpl/menuedit.tpl
@@ -13,7 +13,7 @@
 
 {{include file="field_input.tpl" field=$menu_name}} 
 {{include file="field_input.tpl" field=$menu_desc}}
-
+{{include file="field_checkbox.tpl" field=$menu_bookmark}}
 <div class="menuedit-submit-wrapper" >
 <input type="submit" name="submit" class="menuedit-submit" value="{{$submit}}" />
 </div>
-- 
cgit v1.2.3


From d2b55f5eeab330b08410424d96211f40050d7a1f Mon Sep 17 00:00:00 2001
From: Tazman DeVille <tazmandevil@gmx.com>
Date: Mon, 3 Feb 2014 02:06:07 +0100
Subject: added Thomas' additional navbar colours from APW to redbasic

---
 view/theme/redbasic/php/config.php | 14 +++++++++++---
 view/theme/redbasic/php/style.php  | 32 ++++++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+), 3 deletions(-)

(limited to 'view')

diff --git a/view/theme/redbasic/php/config.php b/view/theme/redbasic/php/config.php
index d6adf5381..68a72fffd 100644
--- a/view/theme/redbasic/php/config.php
+++ b/view/theme/redbasic/php/config.php
@@ -74,9 +74,17 @@ function redbasic_form(&$a, $arr) {
 		
 		$nav_colours = array (
 		  '' => t('Scheme Default'),
-		  'red' => t('red'),
-		  'black' => t('black'),	
-		  'silver' => t('silver'),	
+		'red' => 'red',	
+		'pink' => 'pink',
+		'green' => 'green',
+		'blue' => 'blue',
+		'purple' => 'purple',
+		'black' => 'black',
+		'orange' => 'orange',
+		'brown' => 'brown',
+		'grey' => 'grey',
+		'gold' => 'gold',
+		'silver' => t('silver'),	
 		);
 
 if(feature_enabled(local_user(),'expert')) 
diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php
index 981aaddb2..aec27961e 100644
--- a/view/theme/redbasic/php/style.php
+++ b/view/theme/redbasic/php/style.php
@@ -133,6 +133,38 @@
 					$nav_bg_1 = $nav_bg_2 = $nav_bg_3 = $nav_bg_4 = "silver";
 					$search_background = '#EEEEEE';
 		}
+		if($nav_colour === "pink") {
+		      $nav_bg_1 = $nav_bg_3 = "#FFC1CA";
+		      $nav_bg_2 = $nav_bg_4 = "#FFC1CA";
+	}
+		if($nav_colour === "green") {
+		      $nav_bg_1 = $nav_bg_3 = "#5CD65C";
+		      $nav_bg_2 = $nav_bg_4 = "#5CD65C";
+	}
+		if($nav_colour === "blue") {
+		      $nav_bg_1 = $nav_bg_3 = "#1872a2";
+		      $nav_bg_2 = $nav_bg_4 = "#1872a2";
+	}
+		if($nav_colour === "purple") {
+		      $nav_bg_1 = $nav_bg_3 = "#551A8B";
+		      $nav_bg_2 = $nav_bg_4 = "#551A8B";
+	}
+		if($nav_colour === "orange") {
+		      $nav_bg_1 = $nav_bg_3 = "#FF3D0D";
+		      $nav_bg_2 = $nav_bg_4 = "#FF3D0D";
+	}	
+		if($nav_colour === "brown") {
+		      $nav_bg_1 = $nav_bg_3 = "#330000";
+		      $nav_bg_2 = $nav_bg_4 = "#330000";
+	}
+		if($nav_colour === "grey") {
+		      $nav_bg_1 = $nav_bg_3 = "#2e2f2e";
+		      $nav_bg_2 = $nav_bg_4 = "#2e2f2e";
+	}
+		if($nav_colour === "gold") {
+		      $nav_bg_1 = $nav_bg_3 = "#FFAA00";
+		      $nav_bg_2 = $nav_bg_4 = "#FFAA00";
+	}
 
 		
 // Apply the settings
-- 
cgit v1.2.3


From ee1580427e9a1bc4e2b86906f7b42d3071ed516d Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sun, 2 Feb 2014 17:54:36 -0800
Subject: don't draw attention to advanced permissions and their corresponding
 complexity and clearly mark the simple permissions which people are
 encouraged to use.

---
 view/css/mod_connedit.css | 14 ++++++++++++++
 view/css/mod_settings.css | 14 ++++++++++++++
 view/tpl/abook_edit.tpl   | 37 ++++++++++++++++++++++---------------
 view/tpl/settings.tpl     |  3 ++-
 4 files changed, 52 insertions(+), 16 deletions(-)

(limited to 'view')

diff --git a/view/css/mod_connedit.css b/view/css/mod_connedit.css
index c460fec28..f6da96433 100644
--- a/view/css/mod_connedit.css
+++ b/view/css/mod_connedit.css
@@ -135,3 +135,17 @@
 .contact-entry-end {
 	clear: both;
 }
+
+#abook-advanced-panel, #abook-advanced {
+	opacity: 0.3;
+	filter:alpha(opacity=30);
+}
+
+#abook-advanced-panel:hover, #abook-advanced:hover {
+	opacity: 1.0;
+	filter:alpha(opacity=100);
+}
+
+#abook-advanced {
+	margin-top: 15px;
+}
\ No newline at end of file
diff --git a/view/css/mod_settings.css b/view/css/mod_settings.css
index 601cb2e0e..2049d9bc6 100644
--- a/view/css/mod_settings.css
+++ b/view/css/mod_settings.css
@@ -1,3 +1,17 @@
+#settings-permissions-wrapper, #settings-perm-advanced {
+	opacity: 0.3;
+	filter:alpha(opacity=30);
+}
+
+#settings-permissions-wrapper:hover, #settings-perm-advanced:hover {
+	opacity: 1.0;
+	filter:alpha(opacity=100);
+}
+
+#settings-perm-advanced {
+	margin-top: 15px;
+}
+
 #settings-permissions-wrapper .field {
 	margin-bottom: 10px;
 }
diff --git a/view/tpl/abook_edit.tpl b/view/tpl/abook_edit.tpl
index 590213fd3..265a1a953 100755
--- a/view/tpl/abook_edit.tpl
+++ b/view/tpl/abook_edit.tpl
@@ -31,6 +31,22 @@
 
 
 
+
+{{if $is_pending}}
+<div class="abook-pending-contact">
+{{include file="field_checkbox.tpl" field=$unapproved}}
+</div>
+{{/if}}
+
+{{if $multiprofs }}
+<div>
+<h3>{{$lbl_vis1}}</h3>
+<div>{{$lbl_vis2}}</div>
+
+{{$profile_select}}
+</div>
+{{/if}}
+
 <h3>{{$permlbl}}</h3>
 <div id="perm-desc" class="descriptive-text">{{$permnote}}</div>
 
@@ -38,20 +54,16 @@
 <input type="hidden" name="contact_id" value="{{$contact_id}}">
 <input id="contact-closeness-mirror" type="hidden" name="closeness" value="{{$close}}" />
 
-{{if $noperms}}
+{{* {{if $noperms}}
 <div id="noperm-msg" class="warning-text">{{$noperms}}</div>
 <div id="noperm-text" class="descriptive-text">{{$noperm_desc}}</div>
 {{/if}}
+*}}
 
 
-{{if $is_pending}}
-<div class="abook-pending-contact">
-{{include file="field_checkbox.tpl" field=$unapproved}}
-</div>
-{{/if}}
 
 <br />
-<b>{{$quick}}</b>
+<h3>{{$quick}}</h3>
 <ul>
 {{if $self}}
 <li><span class="fakelink" onclick="connectForum(); // $('#abook-edit-form').submit();">{{$forum}}</span></li>
@@ -62,6 +74,9 @@
 <li><span class="fakelink" onclick="connectFollowOnly(); // $('#abook-edit-form').submit();">{{$follow}}</span></li>
 </ul>
 
+<input class="contact-edit-submit" type="submit" name="done" value="{{$submit}}" />
+
+
 <div id="abook-advanced" class="fakelink" onclick="openClose('abook-advanced-panel');">{{$advanced}}</div>
 
 <div id="abook-advanced-panel" style="display: block;">
@@ -76,14 +91,6 @@
 
 </div>
 
-{{if $multiprofs }}
-<div>
-<h3>{{$lbl_vis1}}</h3>
-<div>{{$lbl_vis2}}</div>
-
-{{$profile_select}}
-</div>
-{{/if}}
 
 <input class="contact-edit-submit" type="submit" name="done" value="{{$submit}}" />
 
diff --git a/view/tpl/settings.tpl b/view/tpl/settings.tpl
index b1a4f956d..ab5bb02cc 100755
--- a/view/tpl/settings.tpl
+++ b/view/tpl/settings.tpl
@@ -25,7 +25,7 @@
 {{include file="field_checkbox.tpl" field=$hide_presence}}
 
 
-<div id="settings-privacy-macros">{{$lbl_pmacro}}</div>
+<h3 id="settings-privacy-macros">{{$lbl_pmacro}}</h3>
 <ul>
 <li><a href="#" onclick="channel_privacy_macro(3); return false" id="settings_pmacro3">{{$pmacro3}}</a></li>
 <li><a href="#" onclick="channel_privacy_macro(2); return false" id="settings_pmacro2">{{$pmacro2}}</a></li>
@@ -34,6 +34,7 @@
 </ul>
 
 
+<h3 id="settings-perm-advanced">{{$lbl_p2macro}}</h3>
 
 <div id="settings-permissions-wrapper">
 {{foreach $permiss_arr as $permit}}
-- 
cgit v1.2.3


From baf3b052f645d7826ada25a05c742d1e5d4a0b51 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sun, 2 Feb 2014 18:18:22 -0800
Subject: don't load any configs from DB if installing - especially in
 style.pcss

---
 view/theme/redbasic/php/style.php | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php
index aec27961e..8d5c23a03 100644
--- a/view/theme/redbasic/php/style.php
+++ b/view/theme/redbasic/php/style.php
@@ -1,5 +1,7 @@
 <?php
-// Get the UID of the channel owner
+
+if(! $a->install) {
+	// Get the UID of the channel owner
 	$uid = get_theme_uid();
 
 	if($uid)
@@ -32,6 +34,8 @@
 		$top_photo=get_pconfig($uid,'redbasic','top_photo');
 		$reply_photo=get_pconfig($uid,'redbasic','reply_photo');
 
+}
+
 // Now load the scheme.  If a value is changed above, we'll keep the settings
 // If not, we'll keep those defined by the schema
 // Setting $scheme to '' wasn't working for some reason, so we'll check it's
-- 
cgit v1.2.3


From 5cc6efe21f51f5e3696b5f047a74186e957a7780 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sun, 2 Feb 2014 20:14:57 -0800
Subject: changed order of the privacy macros so that the dangerous settings
 come last and the preferred settings come first

---
 view/tpl/settings.tpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/tpl/settings.tpl b/view/tpl/settings.tpl
index ab5bb02cc..c4b89a543 100755
--- a/view/tpl/settings.tpl
+++ b/view/tpl/settings.tpl
@@ -27,9 +27,9 @@
 
 <h3 id="settings-privacy-macros">{{$lbl_pmacro}}</h3>
 <ul>
-<li><a href="#" onclick="channel_privacy_macro(3); return false" id="settings_pmacro3">{{$pmacro3}}</a></li>
 <li><a href="#" onclick="channel_privacy_macro(2); return false" id="settings_pmacro2">{{$pmacro2}}</a></li>
 <li><a href="#" onclick="channel_privacy_macro(1); return false" id="settings_pmacro1">{{$pmacro1}}</a></li>
+<li><a href="#" onclick="channel_privacy_macro(3); return false" id="settings_pmacro3">{{$pmacro3}}</a></li>
 <li><a href="#" onclick="channel_privacy_macro(0); return false" id="settings_pmacro0">{{$pmacro0}}</a></li>
 </ul>
 
-- 
cgit v1.2.3


From c4d088459634d8148620a27c56ba06b33814668f Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Mon, 3 Feb 2014 14:03:43 -0800
Subject: accept new connection broke yesterday

---
 view/tpl/abook_edit.tpl | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'view')

diff --git a/view/tpl/abook_edit.tpl b/view/tpl/abook_edit.tpl
index 265a1a953..274d0d5de 100755
--- a/view/tpl/abook_edit.tpl
+++ b/view/tpl/abook_edit.tpl
@@ -30,6 +30,9 @@
 {{/if}}
 
 
+<form id="abook-edit-form" action="connedit/{{$contact_id}}" method="post" >
+<input type="hidden" name="contact_id" value="{{$contact_id}}">
+<input id="contact-closeness-mirror" type="hidden" name="closeness" value="{{$close}}" />
 
 
 {{if $is_pending}}
@@ -50,9 +53,6 @@
 <h3>{{$permlbl}}</h3>
 <div id="perm-desc" class="descriptive-text">{{$permnote}}</div>
 
-<form id="abook-edit-form" action="connedit/{{$contact_id}}" method="post" >
-<input type="hidden" name="contact_id" value="{{$contact_id}}">
-<input id="contact-closeness-mirror" type="hidden" name="closeness" value="{{$close}}" />
 
 {{* {{if $noperms}}
 <div id="noperm-msg" class="warning-text">{{$noperms}}</div>
-- 
cgit v1.2.3


From 1572403e980b013e211de1d317631551dfe5f304 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Mon, 3 Feb 2014 20:44:42 -0800
Subject: photo tagging somewhat working - but can't remove photo tags until we
 update tagrm

---
 view/tpl/photo_view.tpl | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

(limited to 'view')

diff --git a/view/tpl/photo_view.tpl b/view/tpl/photo_view.tpl
index 93e9abfa5..8c19d39d7 100755
--- a/view/tpl/photo_view.tpl
+++ b/view/tpl/photo_view.tpl
@@ -14,10 +14,12 @@
 <div id="photo-photo-end"></div>
 <div id="photo-caption">{{$desc}}</div>
 {{if $tags}}
-<div id="in-this-photo-text">{{$tags.0}}</div>
-<div id="in-this-photo">{{$tags.1}}</div>
+<div id="in-this-photo-text">{{$tag_hdr}}</div>
+{{foreach $tags as $t}}
+<div id="in-this-photo">{{$t.0}}</div>
+{{if $edit}}<div id="tag-remove"><a href="{{$t.1}}">{{$t.2}}</a></div>{{/if}}
+{{/foreach}}
 {{/if}}
-{{if $tags.2}}<div id="tag-remove"><a href="{{$tags.2}}">{{$tags.3}}</a></div>{{/if}}
 
 {{if $edit}}
 <div id="photo-edit-edit-wrapper" class="fakelink" onclick="openClose('photo-edit-edit');">{{$edit.edit}}</div>
-- 
cgit v1.2.3


From 7ff2c018c5bdf761ea9ba03fdd06ec46c1e9f4e5 Mon Sep 17 00:00:00 2001
From: Tobias Diekershoff <tobias.diekershoff@gmx.net>
Date: Tue, 4 Feb 2014 07:50:32 +0100
Subject: DE: update to the strings

---
 view/de/messages.po | 4195 ++++++++++++++++++++++++++-------------------------
 view/de/strings.php |  225 +--
 2 files changed, 2237 insertions(+), 2183 deletions(-)

(limited to 'view')

diff --git a/view/de/messages.po b/view/de/messages.po
index 68f1e0dd5..bcaad338a 100644
--- a/view/de/messages.po
+++ b/view/de/messages.po
@@ -19,8 +19,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Red Matrix\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-01-23 02:30-0800\n"
-"PO-Revision-Date: 2014-01-25 06:22+0000\n"
+"POT-Creation-Date: 2014-01-31 00:02-0800\n"
+"PO-Revision-Date: 2014-02-04 06:40+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"
@@ -64,10 +64,6 @@ msgstr "Besuche %1$s's %2$s"
 msgid "%1$s has an updated %2$s, changing %3$s."
 msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert."
 
-#: ../../include/api.php:973
-msgid "Public Timeline"
-msgstr "Öffentliche Zeitleiste"
-
 #: ../../include/nav.php:72 ../../include/nav.php:87 ../../boot.php:1420
 msgid "Logout"
 msgstr "Abmelden"
@@ -84,7 +80,7 @@ msgstr "Home"
 msgid "Your posts and conversations"
 msgstr "Deine Beiträge und Unterhaltungen"
 
-#: ../../include/nav.php:76 ../../include/conversation.php:932
+#: ../../include/nav.php:76 ../../include/conversation.php:933
 #: ../../mod/connedit.php:309 ../../mod/connedit.php:423
 msgid "View Profile"
 msgstr "Profil ansehen"
@@ -101,7 +97,7 @@ msgstr "Profile bearbeiten"
 msgid "Manage/Edit Profiles"
 msgstr "Verwalte/Bearbeite Profile"
 
-#: ../../include/nav.php:79 ../../include/conversation.php:1473
+#: ../../include/nav.php:79 ../../include/conversation.php:1475
 #: ../../mod/fbrowser.php:25
 msgid "Photos"
 msgstr "Fotos"
@@ -248,7 +244,7 @@ msgstr "Ausgang"
 msgid "New Message"
 msgstr "Neue Nachricht"
 
-#: ../../include/nav.php:171 ../../include/conversation.php:1491
+#: ../../include/nav.php:171 ../../include/conversation.php:1493
 #: ../../mod/events.php:354
 msgid "Events"
 msgstr "Veranstaltungen"
@@ -274,7 +270,7 @@ msgid "Manage Your Channels"
 msgstr "Verwalte Deine Kanäle"
 
 #: ../../include/nav.php:177 ../../include/widgets.php:487
-#: ../../mod/admin.php:787 ../../mod/admin.php:992
+#: ../../mod/admin.php:837 ../../mod/admin.php:1042
 msgid "Settings"
 msgstr "Einstellungen"
 
@@ -290,7 +286,7 @@ msgstr "Verbindungen"
 msgid "Manage/Edit Friends and Connections"
 msgstr "Verwalte/Bearbeite Freunde und Verbindungen"
 
-#: ../../include/nav.php:186 ../../mod/admin.php:111
+#: ../../include/nav.php:186 ../../mod/admin.php:112
 msgid "Admin"
 msgstr "Admin"
 
@@ -306,10 +302,63 @@ msgstr "Nichts Neues hier"
 msgid "Please wait..."
 msgstr "Bitte warten..."
 
-#: ../../include/Contact.php:104 ../../include/identity.php:625
+#: ../../include/chat.php:10
+msgid "Missing room name"
+msgstr "Der Chatraum hat keinen Namen"
+
+#: ../../include/chat.php:19
+msgid "Duplicate room name"
+msgstr "Name des Chatraums bereits vergeben"
+
+#: ../../include/chat.php:68 ../../include/chat.php:76
+msgid "Invalid room specifier."
+msgstr "Ungültiger Raumbezeichner."
+
+#: ../../include/chat.php:102
+msgid "Room not found."
+msgstr "Chatraum konnte nicht gefunden werden."
+
+#: ../../include/chat.php:113 ../../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:462
+#: ../../include/attach.php:540 ../../include/items.php:3454
+#: ../../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:522
+#: ../../mod/chat.php:84 ../../mod/chat.php:89 ../../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:453
+#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97
+#: ../../mod/achievements.php:27 ../../mod/filestorage.php:10
+#: ../../mod/filestorage.php:59 ../../mod/filestorage.php:75
+#: ../../mod/filestorage.php:98 ../../mod/manage.php:6
+#: ../../mod/settings.php:486 ../../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/editwebpage.php:44
+#: ../../mod/editwebpage.php:83 ../../mod/poke.php:128
+#: ../../mod/channel.php:88 ../../mod/channel.php:188
+#: ../../mod/channel.php:231 ../../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:347
+msgid "Permission denied."
+msgstr "Zugang verweigert"
+
+#: ../../include/Contact.php:104 ../../include/identity.php:628
 #: ../../include/widgets.php:115 ../../include/widgets.php:155
 #: ../../mod/directory.php:183 ../../mod/match.php:62 ../../mod/suggest.php:51
-#: ../../mod/dirprofile.php:166
+#: ../../mod/dirprofile.php:170
 msgid "Connect"
 msgstr "Verbinden"
 
@@ -381,8 +430,8 @@ msgstr "OStatus"
 msgid "RSS/Atom"
 msgstr "RSS/Atom"
 
-#: ../../include/contact_selectors.php:77 ../../mod/admin.php:691
-#: ../../mod/admin.php:700 ../../boot.php:1423
+#: ../../include/contact_selectors.php:77 ../../mod/admin.php:741
+#: ../../mod/admin.php:750 ../../boot.php:1423
 msgid "Email"
 msgstr "E-Mail"
 
@@ -488,6 +537,10 @@ msgstr "vor %1$d %2$s"
 msgid "Cannot locate DNS info for database server '%s'"
 msgstr "Kann die DNS-Info für den Datenbank-Server '%s' nicht finden"
 
+#: ../../include/network.php:640
+msgid "view full size"
+msgstr "In Vollbildansicht anschauen"
+
 #: ../../include/event.php:11 ../../include/bb2diaspora.php:433
 msgid "l F d, Y \\@ g:i A"
 msgstr "l, d. F Y\\\\, H:i"
@@ -500,2051 +553,2034 @@ msgstr "Beginnt:"
 msgid "Finishes:"
 msgstr "Endet:"
 
-#: ../../include/event.php:40 ../../include/identity.php:676
+#: ../../include/event.php:40 ../../include/identity.php:679
 #: ../../include/bb2diaspora.php:455 ../../mod/events.php:462
-#: ../../mod/directory.php:156 ../../mod/dirprofile.php:108
+#: ../../mod/directory.php:156 ../../mod/dirprofile.php:111
 msgid "Location:"
 msgstr "Ort:"
 
-#: ../../include/text.php:315
-msgid "prev"
-msgstr "vorherige"
-
-#: ../../include/text.php:317
-msgid "first"
-msgstr "erste"
+#: ../../include/bbcode.php:128 ../../include/bbcode.php:537
+#: ../../include/bbcode.php:540 ../../include/bbcode.php:545
+#: ../../include/bbcode.php:548 ../../include/bbcode.php:551
+#: ../../include/bbcode.php:554 ../../include/bbcode.php:559
+#: ../../include/bbcode.php:562 ../../include/bbcode.php:567
+#: ../../include/bbcode.php:570 ../../include/bbcode.php:573
+#: ../../include/bbcode.php:576
+msgid "Image/photo"
+msgstr "Bild/Foto"
 
-#: ../../include/text.php:346
-msgid "last"
-msgstr "letzte"
+#: ../../include/bbcode.php:163 ../../include/bbcode.php:582
+msgid "Encrypted content"
+msgstr "Verschlüsselter Inhalt"
 
-#: ../../include/text.php:349
-msgid "next"
-msgstr "nächste"
+#: ../../include/bbcode.php:170
+msgid "QR code"
+msgstr "QR Code"
 
-#: ../../include/text.php:361
-msgid "older"
-msgstr "älter"
+#: ../../include/bbcode.php:213
+#, php-format
+msgid "%1$s wrote the following %2$s %3$s"
+msgstr "%1$s schrieb den folgenden %2$s %3$s"
 
-#: ../../include/text.php:363
-msgid "newer"
-msgstr "neuer"
+#: ../../include/bbcode.php:215
+msgid "post"
+msgstr "Beitrag"
 
-#: ../../include/text.php:654
-msgid "No connections"
-msgstr "Keine Verbindungen"
+#: ../../include/bbcode.php:505 ../../include/bbcode.php:525
+msgid "$1 wrote:"
+msgstr "$1 schrieb:"
 
-#: ../../include/text.php:665
-#, php-format
-msgid "%d Connection"
-msgid_plural "%d Connections"
-msgstr[0] "%d Verbindung"
-msgstr[1] "%d Verbindungen"
+#: ../../include/js_strings.php:5
+msgid "Delete this item?"
+msgstr "Dieses Element löschen?"
 
-#: ../../include/text.php:677
-msgid "View Connections"
-msgstr "Zeige Verbindungen"
+#: ../../include/js_strings.php:6 ../../include/ItemObject.php:536
+#: ../../mod/photos.php:972 ../../mod/photos.php:1059
+msgid "Comment"
+msgstr "Kommentar"
 
-#: ../../include/text.php:738 ../../include/text.php:752
-#: ../../include/widgets.php:173 ../../mod/filer.php:36
-msgid "Save"
-msgstr "Speichern"
+#: ../../include/js_strings.php:7 ../../include/contact_widgets.php:125
+#: ../../include/ItemObject.php:270
+msgid "show more"
+msgstr "mehr zeigen"
 
-#: ../../include/text.php:818
-msgid "poke"
-msgstr "anstupsen"
+#: ../../include/js_strings.php:8
+msgid "show fewer"
+msgstr "Zeige weniger"
 
-#: ../../include/text.php:818 ../../include/conversation.php:240
-msgid "poked"
-msgstr "stupste"
+#: ../../include/js_strings.php:9
+msgid "Password too short"
+msgstr "Kennwort zu kurz"
 
-#: ../../include/text.php:819
-msgid "ping"
-msgstr "anpingen"
+#: ../../include/js_strings.php:10
+msgid "Passwords do not match"
+msgstr "Kennwörter stimmen nicht überein"
 
-#: ../../include/text.php:819
-msgid "pinged"
-msgstr "pingte"
+#: ../../include/js_strings.php:11 ../../mod/photos.php:39
+msgid "everybody"
+msgstr "alle"
 
-#: ../../include/text.php:820
-msgid "prod"
-msgstr "knuffen"
+#: ../../include/js_strings.php:12
+msgid "Secret Passphrase"
+msgstr "geheime Passwort-Phrase"
 
-#: ../../include/text.php:820
-msgid "prodded"
-msgstr "knuffte"
+#: ../../include/js_strings.php:13
+msgid "Passphrase hint"
+msgstr "Hinweis zur Phrase"
 
-#: ../../include/text.php:821
-msgid "slap"
-msgstr "ohrfeigen"
+#: ../../include/js_strings.php:15
+msgid "timeago.prefixAgo"
+msgstr "timeago.prefixAgo"
 
-#: ../../include/text.php:821
-msgid "slapped"
-msgstr "ohrfeigte"
+#: ../../include/js_strings.php:16
+msgid "timeago.suffixAgo"
+msgstr "timeago.suffixAgo"
 
-#: ../../include/text.php:822
-msgid "finger"
-msgstr "befummeln"
+#: ../../include/js_strings.php:17
+msgid "ago"
+msgstr "her"
 
-#: ../../include/text.php:822
-msgid "fingered"
-msgstr "befummelte"
+#: ../../include/js_strings.php:18
+msgid "from now"
+msgstr "von jetzt"
 
-#: ../../include/text.php:823
-msgid "rebuff"
-msgstr "eine Abfuhr erteilen"
+#: ../../include/js_strings.php:19
+msgid "less than a minute"
+msgstr "weniger als eine Minute"
 
-#: ../../include/text.php:823
-msgid "rebuffed"
-msgstr "abfuhrerteilte"
+#: ../../include/js_strings.php:20
+msgid "about a minute"
+msgstr "ungefähr eine Minute"
 
-#: ../../include/text.php:835
-msgid "happy"
-msgstr "glücklich"
+#: ../../include/js_strings.php:21
+#, php-format
+msgid "%d minutes"
+msgstr "%d Minuten"
 
-#: ../../include/text.php:836
-msgid "sad"
-msgstr "traurig"
+#: ../../include/js_strings.php:22
+msgid "about an hour"
+msgstr "ungefähr eine Stunde"
 
-#: ../../include/text.php:837
-msgid "mellow"
-msgstr "sanft"
+#: ../../include/js_strings.php:23
+#, php-format
+msgid "about %d hours"
+msgstr "ungefähr %d Stunden"
 
-#: ../../include/text.php:838
-msgid "tired"
-msgstr "müde"
+#: ../../include/js_strings.php:24
+msgid "a day"
+msgstr "ein Tag"
 
-#: ../../include/text.php:839
-msgid "perky"
-msgstr "frech"
+#: ../../include/js_strings.php:25
+#, php-format
+msgid "%d days"
+msgstr "%d Tage"
 
-#: ../../include/text.php:840
-msgid "angry"
-msgstr "sauer"
+#: ../../include/js_strings.php:26
+msgid "about a month"
+msgstr "ungefähr ein Monat"
 
-#: ../../include/text.php:841
-msgid "stupified"
-msgstr "verblüfft"
+#: ../../include/js_strings.php:27
+#, php-format
+msgid "%d months"
+msgstr "%d Monate"
 
-#: ../../include/text.php:842
-msgid "puzzled"
-msgstr "verwirrt"
+#: ../../include/js_strings.php:28
+msgid "about a year"
+msgstr "ungefähr ein Jahr"
 
-#: ../../include/text.php:843
-msgid "interested"
-msgstr "interessiert"
+#: ../../include/js_strings.php:29
+#, php-format
+msgid "%d years"
+msgstr "%d Jahre"
 
-#: ../../include/text.php:844
-msgid "bitter"
-msgstr "verbittert"
+#: ../../include/js_strings.php:30
+msgid " "
+msgstr " "
 
-#: ../../include/text.php:845
-msgid "cheerful"
-msgstr "fröhlich"
+#: ../../include/js_strings.php:31
+msgid "timeago.numbers"
+msgstr "timeago.numbers"
 
-#: ../../include/text.php:846
-msgid "alive"
-msgstr "lebendig"
+#: ../../include/message.php:18
+msgid "No recipient provided."
+msgstr "Kein Empfänger angegeben"
 
-#: ../../include/text.php:847
-msgid "annoyed"
-msgstr "verärgert"
+#: ../../include/message.php:23
+msgid "[no subject]"
+msgstr "[no subject]"
 
-#: ../../include/text.php:848
-msgid "anxious"
-msgstr "unruhig"
+#: ../../include/message.php:42
+msgid "Unable to determine sender."
+msgstr "Kann Absender nicht bestimmen."
 
-#: ../../include/text.php:849
-msgid "cranky"
-msgstr "schrullig"
+#: ../../include/message.php:143
+msgid "Stored post could not be verified."
+msgstr "Gespeicherter Beitrag konnten nicht überprüft werden."
 
-#: ../../include/text.php:850
-msgid "disturbed"
-msgstr "verstört"
+#: ../../include/photo/photo_driver.php:637 ../../include/photos.php:51
+#: ../../mod/photos.php:91 ../../mod/photos.php:652 ../../mod/photos.php:674
+#: ../../mod/profile_photo.php:78 ../../mod/profile_photo.php:225
+#: ../../mod/profile_photo.php:336
+msgid "Profile Photos"
+msgstr "Profilfotos"
 
-#: ../../include/text.php:851
-msgid "frustrated"
-msgstr "frustriert"
+#: ../../include/identity.php:29 ../../mod/item.php:1150
+msgid "Unable to obtain identity information from database"
+msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen"
 
-#: ../../include/text.php:852
-msgid "motivated"
-msgstr "motiviert"
+#: ../../include/identity.php:62
+msgid "Empty name"
+msgstr "Namensfeld leer"
 
-#: ../../include/text.php:853
-msgid "relaxed"
-msgstr "entspannt"
+#: ../../include/identity.php:64
+msgid "Name too long"
+msgstr "Name ist zu lang"
 
-#: ../../include/text.php:854
-msgid "surprised"
-msgstr "überrascht"
+#: ../../include/identity.php:143
+msgid "No account identifier"
+msgstr "Keine Account-Kennung"
 
-#: ../../include/text.php:1016
-msgid "Monday"
-msgstr "Montag"
+#: ../../include/identity.php:153
+msgid "Nickname is required."
+msgstr "Spitzname ist erforderlich."
 
-#: ../../include/text.php:1016
-msgid "Tuesday"
-msgstr "Dienstag"
+#: ../../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/text.php:1016
-msgid "Wednesday"
-msgstr "Mittwoch"
+#: ../../include/identity.php:226
+msgid "Unable to retrieve created identity"
+msgstr "Kann die erstellte Identität nicht empfangen"
 
-#: ../../include/text.php:1016
-msgid "Thursday"
-msgstr "Donnerstag"
+#: ../../include/identity.php:285
+msgid "Default Profile"
+msgstr "Standard-Profil"
 
-#: ../../include/text.php:1016
-msgid "Friday"
-msgstr "Freitag"
+#: ../../include/identity.php:310 ../../include/profile_selectors.php:42
+#: ../../include/widgets.php:373 ../../mod/connedit.php:389
+msgid "Friends"
+msgstr "Freunde"
 
-#: ../../include/text.php:1016
-msgid "Saturday"
-msgstr "Samstag"
+#: ../../include/identity.php:477
+msgid "Requested channel is not available."
+msgstr "Angeforderte Kanal nicht verfügbar."
 
-#: ../../include/text.php:1016
-msgid "Sunday"
-msgstr "Sonntag"
+#: ../../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/text.php:1020
-msgid "January"
-msgstr "Januar"
+#: ../../include/identity.php:524 ../../mod/webpages.php:8
+#: ../../mod/connect.php:13 ../../mod/layouts.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 "Erwünschte Profil ist nicht verfügbar."
 
-#: ../../include/text.php:1020
-msgid "February"
-msgstr "Februar"
+#: ../../include/identity.php:642 ../../mod/profiles.php:603
+msgid "Change profile photo"
+msgstr "Ändere das Profilfoto"
 
-#: ../../include/text.php:1020
-msgid "March"
-msgstr "März"
+#: ../../include/identity.php:648
+msgid "Profiles"
+msgstr "Profile"
 
-#: ../../include/text.php:1020
-msgid "April"
-msgstr "April"
+#: ../../include/identity.php:648
+msgid "Manage/edit profiles"
+msgstr "Verwalte/Bearbeite Profile"
 
-#: ../../include/text.php:1020
-msgid "May"
-msgstr "Mai"
+#: ../../include/identity.php:649 ../../mod/profiles.php:604
+msgid "Create New Profile"
+msgstr "Neues Profil erstellen"
 
-#: ../../include/text.php:1020
-msgid "June"
-msgstr "Juni"
+#: ../../include/identity.php:652
+msgid "Edit Profile"
+msgstr "Profile bearbeiten"
 
-#: ../../include/text.php:1020
-msgid "July"
-msgstr "Juli"
+#: ../../include/identity.php:663 ../../mod/profiles.php:615
+msgid "Profile Image"
+msgstr "Profilfoto:"
 
-#: ../../include/text.php:1020
-msgid "August"
-msgstr "August"
+#: ../../include/identity.php:666 ../../mod/profiles.php:618
+msgid "visible to everybody"
+msgstr "sichtbar für jeden"
 
-#: ../../include/text.php:1020
-msgid "September"
-msgstr "September"
+#: ../../include/identity.php:667 ../../mod/profiles.php:619
+msgid "Edit visibility"
+msgstr "Sichtbarkeit bearbeiten"
 
-#: ../../include/text.php:1020
-msgid "October"
-msgstr "Oktober"
+#: ../../include/identity.php:681 ../../include/identity.php:908
+#: ../../mod/directory.php:158
+msgid "Gender:"
+msgstr "Geschlecht:"
 
-#: ../../include/text.php:1020
-msgid "November"
-msgstr "November"
+#: ../../include/identity.php:682 ../../include/identity.php:928
+#: ../../mod/directory.php:160
+msgid "Status:"
+msgstr "Status:"
 
-#: ../../include/text.php:1020
-msgid "December"
-msgstr "Dezember"
+#: ../../include/identity.php:683 ../../include/identity.php:939
+#: ../../mod/directory.php:162
+msgid "Homepage:"
+msgstr "Homepage:"
 
-#: ../../include/text.php:1098
-msgid "unknown.???"
-msgstr "unbekannt.???"
+#: ../../include/identity.php:684 ../../mod/dirprofile.php:157
+msgid "Online Now"
+msgstr "gerade online"
 
-#: ../../include/text.php:1099
-msgid "bytes"
-msgstr "Bytes"
+#: ../../include/identity.php:752 ../../include/identity.php:832
+#: ../../mod/ping.php:256
+msgid "g A l F d"
+msgstr "l, d. F G \\\\U\\\\h\\\\r"
 
-#: ../../include/text.php:1134
-msgid "remove category"
-msgstr "Kategorie entfernen"
+#: ../../include/identity.php:753 ../../include/identity.php:833
+msgid "F d"
+msgstr "d. F"
 
-#: ../../include/text.php:1156
-msgid "remove from file"
-msgstr "aus der Datei entfernen"
+#: ../../include/identity.php:798 ../../include/identity.php:873
+#: ../../mod/ping.php:278
+msgid "[today]"
+msgstr "[Heute]"
 
-#: ../../include/text.php:1214 ../../include/text.php:1226
-msgid "Click to open/close"
-msgstr "Klicke zum Öffnen/Schließen"
+#: ../../include/identity.php:810
+msgid "Birthday Reminders"
+msgstr "Geburtstags Erinnerungen"
 
-#: ../../include/text.php:1402 ../../mod/events.php:332
-msgid "link to source"
-msgstr "Link zum Originalbeitrag"
+#: ../../include/identity.php:811
+msgid "Birthdays this week:"
+msgstr "Geburtstage in dieser Woche:"
 
-#: ../../include/text.php:1421
-msgid "Select a page layout: "
-msgstr "Ein Seiten-Layout auswählen"
+#: ../../include/identity.php:866
+msgid "[No description]"
+msgstr "[Keine Beschreibung]"
 
-#: ../../include/text.php:1424 ../../include/text.php:1489
-msgid "default"
-msgstr "Standard"
+#: ../../include/identity.php:884
+msgid "Event Reminders"
+msgstr "Veranstaltungs- Erinnerungen"
 
-#: ../../include/text.php:1460
-msgid "Page content type: "
-msgstr "Content-Typ der Seite"
+#: ../../include/identity.php:885
+msgid "Events this week:"
+msgstr "Veranstaltungen in dieser Woche:"
 
-#: ../../include/text.php:1501
-msgid "Select an alternate language"
-msgstr "Wähle eine alternative Sprache"
+#: ../../include/identity.php:898 ../../include/identity.php:982
+#: ../../mod/profperm.php:107
+msgid "Profile"
+msgstr "Profil"
 
-#: ../../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/identity.php:906 ../../mod/settings.php:916
+msgid "Full Name:"
+msgstr "Voller Name:"
 
-#: ../../include/text.php:1656 ../../include/conversation.php:120
-#: ../../mod/tagger.php:49
-msgid "event"
-msgstr "Ereignis"
+#: ../../include/identity.php:913
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: ../../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/identity.php:914
+msgid "j F"
+msgstr "j F"
 
-#: ../../include/text.php:1661 ../../include/conversation.php:147
-#: ../../mod/tagger.php:55
-msgid "comment"
-msgstr "Kommentar"
+#: ../../include/identity.php:921
+msgid "Birthday:"
+msgstr "Geburtstag:"
 
-#: ../../include/text.php:1666
-msgid "activity"
-msgstr "Aktivität"
+#: ../../include/identity.php:925
+msgid "Age:"
+msgstr "Alter:"
 
-#: ../../include/text.php:1928
-msgid "Design"
-msgstr "Design"
+#: ../../include/identity.php:934
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "für %1$d %2$s"
 
-#: ../../include/text.php:1930
-msgid "Blocks"
-msgstr "Blöcke"
+#: ../../include/identity.php:937 ../../mod/profiles.php:526
+msgid "Sexual Preference:"
+msgstr "Sexuelle Orientierung:"
 
-#: ../../include/text.php:1931
-msgid "Menus"
-msgstr "Menüs"
+#: ../../include/identity.php:941 ../../mod/profiles.php:528
+msgid "Hometown:"
+msgstr "Heimatstadt:"
 
-#: ../../include/text.php:1932
-msgid "Layouts"
-msgstr "Layouts"
+#: ../../include/identity.php:943
+msgid "Tags:"
+msgstr "Schlagworte:"
 
-#: ../../include/text.php:1933
-msgid "Pages"
-msgstr "Seiten"
+#: ../../include/identity.php:945 ../../mod/profiles.php:529
+msgid "Political Views:"
+msgstr "Politische Ansichten:"
 
-#: ../../include/js_strings.php:5
-msgid "Delete this item?"
-msgstr "Dieses Element löschen?"
+#: ../../include/identity.php:947
+msgid "Religion:"
+msgstr "Religion:"
 
-#: ../../include/js_strings.php:6 ../../include/ItemObject.php:536
-#: ../../mod/photos.php:968 ../../mod/photos.php:1055
-msgid "Comment"
-msgstr "Kommentar"
+#: ../../include/identity.php:949 ../../mod/directory.php:164
+msgid "About:"
+msgstr "Über:"
 
-#: ../../include/js_strings.php:7 ../../include/contact_widgets.php:125
-#: ../../include/ItemObject.php:270
-msgid "show more"
-msgstr "mehr zeigen"
+#: ../../include/identity.php:951
+msgid "Hobbies/Interests:"
+msgstr "Hobbys/Interessen:"
 
-#: ../../include/js_strings.php:8
-msgid "show fewer"
-msgstr "Zeige weniger"
+#: ../../include/identity.php:953 ../../mod/profiles.php:532
+msgid "Likes:"
+msgstr "Gefällt-mir:"
 
-#: ../../include/js_strings.php:9
-msgid "Password too short"
-msgstr "Kennwort zu kurz"
+#: ../../include/identity.php:955 ../../mod/profiles.php:533
+msgid "Dislikes:"
+msgstr "Gefällt-mir-nicht:"
 
-#: ../../include/js_strings.php:10
-msgid "Passwords do not match"
-msgstr "Kennwörter stimmen nicht überein"
+#: ../../include/identity.php:958
+msgid "Contact information and Social Networks:"
+msgstr "Kontaktinformation und soziale Netzwerke:"
 
-#: ../../include/js_strings.php:11 ../../mod/photos.php:39
-msgid "everybody"
-msgstr "alle"
+#: ../../include/identity.php:960
+msgid "My other channels:"
+msgstr "Meine anderen Kanäle:"
 
-#: ../../include/js_strings.php:12
-msgid "Secret Passphrase"
-msgstr "geheime Passwort-Phrase"
+#: ../../include/identity.php:962
+msgid "Musical interests:"
+msgstr "Musikalische Interessen:"
 
-#: ../../include/js_strings.php:13
-msgid "Passphrase hint"
-msgstr "Hinweis zur Phrase"
+#: ../../include/identity.php:964
+msgid "Books, literature:"
+msgstr "Bücher, Literatur:"
 
-#: ../../include/js_strings.php:15
-msgid "timeago.prefixAgo"
-msgstr "timeago.prefixAgo"
+#: ../../include/identity.php:966
+msgid "Television:"
+msgstr "Fernsehen:"
 
-#: ../../include/js_strings.php:16
-msgid "timeago.suffixAgo"
-msgstr "timeago.suffixAgo"
+#: ../../include/identity.php:968
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film/Tanz/Kultur/Unterhaltung:"
 
-#: ../../include/js_strings.php:17
-msgid "ago"
-msgstr "her"
+#: ../../include/identity.php:970
+msgid "Love/Romance:"
+msgstr "Liebe/Romantik:"
 
-#: ../../include/js_strings.php:18
-msgid "from now"
-msgstr "von jetzt"
+#: ../../include/identity.php:972
+msgid "Work/employment:"
+msgstr "Arbeit/Anstellung:"
 
-#: ../../include/js_strings.php:19
-msgid "less than a minute"
-msgstr "weniger als eine Minute"
+#: ../../include/identity.php:974
+msgid "School/education:"
+msgstr "Schule/Ausbildung:"
 
-#: ../../include/js_strings.php:20
-msgid "about a minute"
-msgstr "ungefähr eine Minute"
+#: ../../include/reddav.php:1018
+msgid "Edit File properties"
+msgstr "Dateieigenschaften ändern"
 
-#: ../../include/js_strings.php:21
-#, php-format
-msgid "%d minutes"
-msgstr "%d Minuten"
+#: ../../include/oembed.php:157
+msgid "Embedded content"
+msgstr "Eingebetteter Inhalt"
 
-#: ../../include/js_strings.php:22
-msgid "about an hour"
-msgstr "ungefähr eine Stunde"
+#: ../../include/oembed.php:166
+msgid "Embedding disabled"
+msgstr "Einbetten ausgeschaltet"
 
-#: ../../include/js_strings.php:23
-#, php-format
-msgid "about %d hours"
-msgstr "ungefähr %d Stunden"
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Allgemeine Funktionen"
 
-#: ../../include/js_strings.php:24
-msgid "a day"
-msgstr "ein Tag"
+#: ../../include/features.php:25
+msgid "Content Expiration"
+msgstr "Verfall von Inhalten"
 
-#: ../../include/js_strings.php:25
-#, php-format
-msgid "%d days"
-msgstr "%d Tage"
+#: ../../include/features.php:25
+msgid "Remove posts/comments and/or private messages at a future time"
+msgstr "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum."
 
-#: ../../include/js_strings.php:26
-msgid "about a month"
-msgstr "ungefähr ein Monat"
+#: ../../include/features.php:26
+msgid "Multiple Profiles"
+msgstr "Mehrfachprofile"
 
-#: ../../include/js_strings.php:27
-#, php-format
-msgid "%d months"
-msgstr "%d Monate"
+#: ../../include/features.php:26
+msgid "Ability to create multiple profiles"
+msgstr "Mehrfachprofile anlegen können"
 
-#: ../../include/js_strings.php:28
-msgid "about a year"
-msgstr "ungefähr ein Jahr"
+#: ../../include/features.php:27
+msgid "Web Pages"
+msgstr "Webseiten"
 
-#: ../../include/js_strings.php:29
-#, php-format
-msgid "%d years"
-msgstr "%d Jahre"
+#: ../../include/features.php:27
+msgid "Provide managed web pages on your channel"
+msgstr "Stelle verwaltete Webseiten in Deinem Kanal zur Verfügung"
 
-#: ../../include/js_strings.php:30
-msgid " "
-msgstr " "
+#: ../../include/features.php:28
+msgid "Private Notes"
+msgstr "private Notizen"
 
-#: ../../include/js_strings.php:31
-msgid "timeago.numbers"
-msgstr "timeago.numbers"
+#: ../../include/features.php:28
+msgid "Enables a tool to store notes and reminders"
+msgstr "Werkzeug zum Speichern von Notizen und Erinnerungen aktivieren"
 
-#: ../../include/message.php:18
-msgid "No recipient provided."
-msgstr "Kein Empfänger angegeben"
+#: ../../include/features.php:33
+msgid "Extended Identity Sharing"
+msgstr "Erweitertes Teilen von Identitäten"
 
-#: ../../include/message.php:23
-msgid "[no subject]"
-msgstr "[no subject]"
+#: ../../include/features.php:33
+msgid ""
+"Share your identity with all websites on the internet. When disabled, "
+"identity is only shared with sites in the matrix."
+msgstr "Teile deine Identität mit allen Webseiten im Internet. Ist dies deaktiviert wird deine Identität nur mit Seiten der Matrix geteilt."
 
-#: ../../include/message.php:42
-msgid "Unable to determine sender."
-msgstr "Kann Absender nicht bestimmen."
+#: ../../include/features.php:34
+msgid "Expert Mode"
+msgstr "Expertenmodus"
 
-#: ../../include/message.php:143
-msgid "Stored post could not be verified."
-msgstr "Gespeicherter Beitrag konnten nicht überprüft werden."
+#: ../../include/features.php:34
+msgid "Enable Expert Mode to provide advanced configuration options"
+msgstr "Aktiviere Expertenmodus, um fortgeschrittene Konfiguration zur Verfügung zu stellen"
 
-#: ../../include/photo/photo_driver.php:637 ../../include/photos.php:51
-#: ../../mod/photos.php:91 ../../mod/photos.php:652 ../../mod/photos.php:674
-#: ../../mod/profile_photo.php:78 ../../mod/profile_photo.php:225
-#: ../../mod/profile_photo.php:336
-msgid "Profile Photos"
-msgstr "Profilfotos"
+#: ../../include/features.php:35
+msgid "Premium Channel"
+msgstr "Premium-Kanal"
 
-#: ../../include/network.php:640
-msgid "view full size"
-msgstr "In Vollbildansicht anschauen"
+#: ../../include/features.php:35
+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/identity.php:29 ../../mod/item.php:1150
-msgid "Unable to obtain identity information from database"
-msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen"
+#: ../../include/features.php:40
+msgid "Post Composition Features"
+msgstr "Nachbearbeitungsfunktionen"
 
-#: ../../include/identity.php:62
-msgid "Empty name"
-msgstr "Namensfeld leer"
+#: ../../include/features.php:41
+msgid "Richtext Editor"
+msgstr "Formatierungseditor"
 
-#: ../../include/identity.php:64
-msgid "Name too long"
-msgstr "Name ist zu lang"
+#: ../../include/features.php:41
+msgid "Enable richtext editor"
+msgstr "Aktiviere Formatierungseditor"
 
-#: ../../include/identity.php:143
-msgid "No account identifier"
-msgstr "Keine Account-Kennung"
+#: ../../include/features.php:42
+msgid "Post Preview"
+msgstr "Voransicht"
 
-#: ../../include/identity.php:153
-msgid "Nickname is required."
-msgstr "Spitzname ist erforderlich."
+#: ../../include/features.php:42
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Erlaube Voransicht von Beiträgen und Kommentaren vor Veröffentlichung"
 
-#: ../../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/features.php:43 ../../include/widgets.php:476
+#: ../../mod/sources.php:81
+msgid "Channel Sources"
+msgstr "Kanal Quellen"
 
-#: ../../include/identity.php:226
-msgid "Unable to retrieve created identity"
-msgstr "Kann die erstellte Identität nicht empfangen"
+#: ../../include/features.php:43
+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/identity.php:285
-msgid "Default Profile"
-msgstr "Standard-Profil"
+#: ../../include/features.php:44
+msgid "Even More Encryption"
+msgstr "Noch mehr Verschlüsselung"
 
-#: ../../include/identity.php:310 ../../include/profile_selectors.php:42
-#: ../../include/widgets.php:373 ../../mod/connedit.php:389
-msgid "Friends"
-msgstr "Freunde"
+#: ../../include/features.php:44
+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/identity.php:477
-msgid "Requested channel is not available."
-msgstr "Angeforderte Kanal nicht verfügbar."
+#: ../../include/features.php:49
+msgid "Network and Stream Filtering"
+msgstr "Netzwerk- und Stream-Filter"
 
-#: ../../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/features.php:50
+msgid "Search by Date"
+msgstr "Suche nach Datum"
 
-#: ../../include/identity.php:524 ../../mod/webpages.php:8
-#: ../../mod/connect.php:13 ../../mod/layouts.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 "Erwünschte Profil ist nicht verfügbar."
+#: ../../include/features.php:50
+msgid "Ability to select posts by date ranges"
+msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen"
 
-#: ../../include/identity.php:639 ../../mod/profiles.php:615
-msgid "Change profile photo"
-msgstr "Ändere das Profilfoto"
+#: ../../include/features.php:51
+msgid "Collections Filter"
+msgstr "Filter für Sammlung"
 
-#: ../../include/identity.php:645
-msgid "Profiles"
-msgstr "Profile"
+#: ../../include/features.php:51
+msgid "Enable widget to display Network posts only from selected collections"
+msgstr "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen"
 
-#: ../../include/identity.php:645
-msgid "Manage/edit profiles"
-msgstr "Verwalte/Bearbeite Profile"
+#: ../../include/features.php:52 ../../include/widgets.php:252
+msgid "Saved Searches"
+msgstr "Gesicherte Suchanfragen"
 
-#: ../../include/identity.php:646 ../../mod/profiles.php:616
-msgid "Create New Profile"
-msgstr "Neues Profil erstellen"
+#: ../../include/features.php:52
+msgid "Save search terms for re-use"
+msgstr "Gesicherte Suchbegriffe zur Wiederverwendung"
 
-#: ../../include/identity.php:649
-msgid "Edit Profile"
-msgstr "Profile bearbeiten"
+#: ../../include/features.php:53
+msgid "Network Personal Tab"
+msgstr "Persönlicher Netzwerkreiter"
 
-#: ../../include/identity.php:660 ../../mod/profiles.php:627
-msgid "Profile Image"
-msgstr "Profilfoto:"
+#: ../../include/features.php:53
+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/identity.php:663 ../../mod/profiles.php:630
-msgid "visible to everybody"
-msgstr "sichtbar für jeden"
+#: ../../include/features.php:54
+msgid "Network New Tab"
+msgstr "Netzwerkreiter Neu"
 
-#: ../../include/identity.php:664 ../../mod/profiles.php:631
-msgid "Edit visibility"
-msgstr "Sichtbarkeit bearbeiten"
+#: ../../include/features.php:54
+msgid "Enable tab to display all new Network activity"
+msgstr "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen"
 
-#: ../../include/identity.php:678 ../../include/identity.php:903
-#: ../../mod/directory.php:158
-msgid "Gender:"
-msgstr "Geschlecht:"
+#: ../../include/features.php:55
+msgid "Affinity Tool"
+msgstr "Beziehungs-Tool"
 
-#: ../../include/identity.php:679 ../../include/identity.php:923
-#: ../../mod/directory.php:160
-msgid "Status:"
-msgstr "Status:"
+#: ../../include/features.php:55
+msgid "Filter stream activity by depth of relationships"
+msgstr "Filter Aktivitätenstream nach Tiefe der Beziehung"
 
-#: ../../include/identity.php:680 ../../include/identity.php:934
-#: ../../mod/directory.php:162
-msgid "Homepage:"
-msgstr "Homepage:"
+#: ../../include/features.php:56
+msgid "Suggest Channels"
+msgstr "Kanäle Vorschlagen"
 
-#: ../../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/features.php:56
+msgid "Show channel suggestions"
+msgstr "Kanal-Vorschläge anzeigen"
 
-#: ../../include/identity.php:748 ../../include/identity.php:828
-msgid "F d"
-msgstr "d. F"
+#: ../../include/features.php:61
+msgid "Post/Comment Tools"
+msgstr "Beitrag-/Kommentar-Tools"
 
-#: ../../include/identity.php:793 ../../include/identity.php:868
-#: ../../mod/ping.php:252
-msgid "[today]"
-msgstr "[Heute]"
+#: ../../include/features.php:63
+msgid "Edit Sent Posts"
+msgstr "Bearbeite gesendete Beiträge"
 
-#: ../../include/identity.php:805
-msgid "Birthday Reminders"
-msgstr "Geburtstags Erinnerungen"
+#: ../../include/features.php:63
+msgid "Edit and correct posts and comments after sending"
+msgstr "Bearbeite und korrigiere Beiträge und Kommentare nach dem Senden"
 
-#: ../../include/identity.php:806
-msgid "Birthdays this week:"
-msgstr "Geburtstage in dieser Woche:"
+#: ../../include/features.php:64
+msgid "Tagging"
+msgstr "Verschlagworten"
 
-#: ../../include/identity.php:861
-msgid "[No description]"
-msgstr "[Keine Beschreibung]"
+#: ../../include/features.php:64
+msgid "Ability to tag existing posts"
+msgstr "Möglichkeit, um existierende Beiträge zu verschlagworten"
 
-#: ../../include/identity.php:879
-msgid "Event Reminders"
-msgstr "Veranstaltungs- Erinnerungen"
+#: ../../include/features.php:65
+msgid "Post Categories"
+msgstr "Beitrags-Kategorien"
 
-#: ../../include/identity.php:880
-msgid "Events this week:"
-msgstr "Veranstaltungen in dieser Woche:"
+#: ../../include/features.php:65
+msgid "Add categories to your posts"
+msgstr "Kategorien für Beiträge"
 
-#: ../../include/identity.php:893 ../../include/identity.php:977
-#: ../../mod/profperm.php:103
-msgid "Profile"
-msgstr "Profil"
+#: ../../include/features.php:66 ../../include/widgets.php:283
+#: ../../include/contact_widgets.php:53
+msgid "Saved Folders"
+msgstr "Gesicherte Ordner"
 
-#: ../../include/identity.php:901 ../../mod/settings.php:911
-msgid "Full Name:"
-msgstr "Voller Name:"
+#: ../../include/features.php:66
+msgid "Ability to file posts under folders"
+msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln"
 
-#: ../../include/identity.php:908
-msgid "j F, Y"
-msgstr "j F, Y"
+#: ../../include/features.php:67
+msgid "Dislike Posts"
+msgstr "Gefällt-mir-nicht Beiträge"
 
-#: ../../include/identity.php:909
-msgid "j F"
-msgstr "j F"
+#: ../../include/features.php:67
+msgid "Ability to dislike posts/comments"
+msgstr "Möglichkeit für Gefällt-mir-nicht für Beiträge/Kommentare"
 
-#: ../../include/identity.php:916
-msgid "Birthday:"
-msgstr "Geburtstag:"
+#: ../../include/features.php:68
+msgid "Star Posts"
+msgstr "Beiträge mit Sternchen versehen"
 
-#: ../../include/identity.php:920
-msgid "Age:"
-msgstr "Alter:"
+#: ../../include/features.php:68
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Möglichkeit, spezielle Beiträge mit Sternchen-Symbol zu markieren"
 
-#: ../../include/identity.php:929
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "für %1$d %2$s"
+#: ../../include/features.php:69
+msgid "Tag Cloud"
+msgstr "Tag Wolke"
 
-#: ../../include/identity.php:932 ../../mod/profiles.php:538
-msgid "Sexual Preference:"
-msgstr "Sexuelle Orientierung:"
+#: ../../include/features.php:69
+msgid "Provide a personal tag cloud on your channel page"
+msgstr "Persönliche Schlagwort-Wolke für deine Kanal-Seite anlegen"
 
-#: ../../include/identity.php:936 ../../mod/profiles.php:540
-msgid "Hometown:"
-msgstr "Heimatstadt:"
+#: ../../include/group.php:25
+msgid ""
+"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."
+msgstr "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."
 
-#: ../../include/identity.php:938
-msgid "Tags:"
-msgstr "Schlagworte:"
+#: ../../include/group.php:223
+msgid "Default privacy group for new contacts"
+msgstr "Standard-Privatsphärengruppe für neue Kontakte"
 
-#: ../../include/identity.php:940 ../../mod/profiles.php:541
-msgid "Political Views:"
-msgstr "Politische Ansichten:"
+#: ../../include/group.php:242 ../../mod/admin.php:750
+msgid "All Channels"
+msgstr "Alle Kanäle"
 
-#: ../../include/identity.php:942
-msgid "Religion:"
-msgstr "Religion:"
+#: ../../include/group.php:264
+msgid "edit"
+msgstr "Bearbeiten"
 
-#: ../../include/identity.php:944 ../../mod/directory.php:164
-msgid "About:"
-msgstr "Über:"
+#: ../../include/group.php:285
+msgid "Collections"
+msgstr "Sammlungen"
 
-#: ../../include/identity.php:946
-msgid "Hobbies/Interests:"
-msgstr "Hobbys/Interessen:"
+#: ../../include/group.php:286
+msgid "Edit collection"
+msgstr "Bearbeite Sammlungen"
 
-#: ../../include/identity.php:948 ../../mod/profiles.php:544
-msgid "Likes:"
-msgstr "Gefällt-mir:"
+#: ../../include/group.php:287
+msgid "Create a new collection"
+msgstr "Neue Sammlung erzeugen"
 
-#: ../../include/identity.php:950 ../../mod/profiles.php:545
-msgid "Dislikes:"
-msgstr "Gefällt-mir-nicht:"
+#: ../../include/group.php:288
+msgid "Channels not in any collection"
+msgstr "Kanäle, die nicht in einer Sammlung sind"
 
-#: ../../include/identity.php:953
-msgid "Contact information and Social Networks:"
-msgstr "Kontaktinformation und soziale Netzwerke:"
+#: ../../include/group.php:290 ../../include/widgets.php:253
+msgid "add"
+msgstr "hinzufügen"
 
-#: ../../include/identity.php:955
-msgid "My other channels:"
-msgstr "Meine anderen Kanäle:"
+#: ../../include/notify.php:23
+msgid "created a new post"
+msgstr "Neuer Beitrag wurde erzeugt"
 
-#: ../../include/identity.php:957
-msgid "Musical interests:"
-msgstr "Musikalische Interessen:"
+#: ../../include/notify.php:24
+#, php-format
+msgid "commented on %s's post"
+msgstr "hat %s's Beitrag kommentiert"
 
-#: ../../include/identity.php:959
-msgid "Books, literature:"
-msgstr "Bücher, Literatur:"
+#: ../../include/photos.php:89
+#, php-format
+msgid "Image exceeds website size limit of %lu bytes"
+msgstr "Bild überschreitet das Limit der Webseite von %lu bytes"
 
-#: ../../include/identity.php:961
-msgid "Television:"
-msgstr "Fernsehen:"
+#: ../../include/photos.php:96
+msgid "Image file is empty."
+msgstr "Bilddatei ist leer."
 
-#: ../../include/identity.php:963
-msgid "Film/dance/culture/entertainment:"
-msgstr "Film/Tanz/Kultur/Unterhaltung:"
+#: ../../include/photos.php:123 ../../mod/profile_photo.php:147
+msgid "Unable to process image"
+msgstr "Kann Bild nicht verarbeiten"
 
-#: ../../include/identity.php:965
-msgid "Love/Romance:"
-msgstr "Liebe/Romantik:"
+#: ../../include/photos.php:185
+msgid "Photo storage failed."
+msgstr "Foto speichern schlug fehl"
 
-#: ../../include/identity.php:967
-msgid "Work/employment:"
-msgstr "Arbeit/Anstellung:"
+#: ../../include/photos.php:302 ../../include/conversation.php:1478
+msgid "Photo Albums"
+msgstr "Fotoalben"
 
-#: ../../include/identity.php:969
-msgid "School/education:"
-msgstr "Schule/Ausbildung:"
+#: ../../include/photos.php:306 ../../mod/photos.php:690
+#: ../../mod/photos.php:1169
+msgid "Upload New Photos"
+msgstr "Lade neue Fotos hoch"
 
-#: ../../include/reddav.php:1018
-msgid "Edit File properties"
-msgstr "Dateieigenschaften ändern"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Männlich"
 
-#: ../../include/bbcode.php:94 ../../include/bbcode.php:509
-#: ../../include/bbcode.php:512
-msgid "Image/photo"
-msgstr "Bild/Foto"
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Weiblich"
 
-#: ../../include/bbcode.php:129 ../../include/bbcode.php:517
-msgid "Encrypted content"
-msgstr "Verschlüsselter Inhalt"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Momentan männlich"
 
-#: ../../include/bbcode.php:136
-msgid "QR code"
-msgstr "QR Code"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Momentan weiblich"
 
-#: ../../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/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Größtenteils männlich"
 
-#: ../../include/bbcode.php:181
-msgid "post"
-msgstr "Beitrag"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Größtenteils weiblich"
 
-#: ../../include/bbcode.php:469 ../../include/bbcode.php:489
-msgid "$1 wrote:"
-msgstr "$1 schrieb:"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transsexuell"
 
-#: ../../include/oembed.php:157
-msgid "Embedded content"
-msgstr "Eingebetteter Inhalt"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Zwischengeschlechtlich"
 
-#: ../../include/oembed.php:166
-msgid "Embedding disabled"
-msgstr "Einbetten ausgeschaltet"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transsexuell"
 
-#: ../../include/features.php:21
-msgid "General Features"
-msgstr "Allgemeine Funktionen"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Zwitter"
 
-#: ../../include/features.php:23
-msgid "Content Expiration"
-msgstr "Verfall von Inhalten"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Geschlechtslos"
 
-#: ../../include/features.php:23
-msgid "Remove posts/comments and/or private messages at a future time"
-msgstr "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum."
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "unklar"
 
-#: ../../include/features.php:24
-msgid "Multiple Profiles"
-msgstr "Mehrfachprofile"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Anders"
 
-#: ../../include/features.php:24
-msgid "Ability to create multiple profiles"
-msgstr "Mehrfachprofile anlegen können"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Unentschieden"
 
-#: ../../include/features.php:25
-msgid "Web Pages"
-msgstr "Webseiten"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Männer"
 
-#: ../../include/features.php:25
-msgid "Provide managed web pages on your channel"
-msgstr "Stelle verwaltete Webseiten in Deinem Kanal zur Verfügung"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Frauen"
 
-#: ../../include/features.php:26
-msgid "Private Notes"
-msgstr "private Notizen"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Schwul"
 
-#: ../../include/features.php:26
-msgid "Enables a tool to store notes and reminders"
-msgstr "Werkzeug zum Speichern von Notizen und Erinnerungen aktivieren"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbisch"
 
-#: ../../include/features.php:31
-msgid "Extended Identity Sharing"
-msgstr "Erweitertes Teilen von Identitäten"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Keine Bevorzugung"
 
-#: ../../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/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bisexuell"
 
-#: ../../include/features.php:32
-msgid "Expert Mode"
-msgstr "Expertenmodus"
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autosexuell"
 
-#: ../../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/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Enthaltsam"
 
-#: ../../include/features.php:33
-msgid "Premium Channel"
-msgstr "Premium-Kanal"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Jungfräulich"
 
-#: ../../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/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Abweichend"
 
-#: ../../include/features.php:38
-msgid "Post Composition Features"
-msgstr "Nachbearbeitungsfunktionen"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetisch"
 
-#: ../../include/features.php:39
-msgid "Richtext Editor"
-msgstr "Formatierungseditor"
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Unmengen"
 
-#: ../../include/features.php:39
-msgid "Enable richtext editor"
-msgstr "Aktiviere Formatierungseditor"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Sexlos"
 
-#: ../../include/features.php:40
-msgid "Post Preview"
-msgstr "Voransicht"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Single"
 
-#: ../../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/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Einsam"
 
-#: ../../include/features.php:41 ../../include/widgets.php:476
-#: ../../mod/sources.php:81
-msgid "Channel Sources"
-msgstr "Kanal Quellen"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Verfügbar"
 
-#: ../../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/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Nicht verfügbar"
 
-#: ../../include/features.php:42
-msgid "Even More Encryption"
-msgstr "Noch mehr Verschlüsselung"
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "Verguckt"
 
-#: ../../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/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "Verknallt"
 
-#: ../../include/features.php:47
-msgid "Network and Stream Filtering"
-msgstr "Netzwerk- und Stream-Filter"
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Lerne gerade jemanden kennen"
 
-#: ../../include/features.php:48
-msgid "Search by Date"
-msgstr "Suche nach Datum"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Treulos"
 
-#: ../../include/features.php:48
-msgid "Ability to select posts by date ranges"
-msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Sexabhängig"
 
-#: ../../include/features.php:49
-msgid "Collections Filter"
-msgstr "Filter für Sammlung"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Freunde/Begünstigte"
 
-#: ../../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/profile_selectors.php:42
+msgid "Casual"
+msgstr "Lose"
 
-#: ../../include/features.php:50 ../../include/widgets.php:252
-msgid "Saved Searches"
-msgstr "Gesicherte Suchanfragen"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Verlobt"
 
-#: ../../include/features.php:50
-msgid "Save search terms for re-use"
-msgstr "Gesicherte Suchbegriffe zur Wiederverwendung"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Verheiratet"
 
-#: ../../include/features.php:51
-msgid "Network Personal Tab"
-msgstr "Persönlicher Netzwerkreiter"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "Gewissermaßen verheiratet"
 
-#: ../../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/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partner"
 
-#: ../../include/features.php:52
-msgid "Network New Tab"
-msgstr "Netzwerkreiter Neu"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "Lebensgemeinschaft"
 
-#: ../../include/features.php:52
-msgid "Enable tab to display all new Network activity"
-msgstr "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen"
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "Informelle Ehe"
 
-#: ../../include/features.php:53
-msgid "Affinity Tool"
-msgstr "Beziehungs-Tool"
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Glücklich"
 
-#: ../../include/features.php:53
-msgid "Filter stream activity by depth of relationships"
-msgstr "Filter Aktivitätenstream nach Tiefe der Beziehung"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Nicht Ausschau haltend"
 
-#: ../../include/features.php:54
-msgid "Suggest Channels"
-msgstr "Kanäle Vorschlagen"
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Swinger"
 
-#: ../../include/features.php:54
-msgid "Show channel suggestions"
-msgstr "Kanal-Vorschläge anzeigen"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Betrogen"
 
-#: ../../include/features.php:59
-msgid "Post/Comment Tools"
-msgstr "Beitrag-/Kommentar-Tools"
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Getrennt"
 
-#: ../../include/features.php:61
-msgid "Edit Sent Posts"
-msgstr "Bearbeite gesendete Beiträge"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Labil"
 
-#: ../../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/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Geschieden"
 
-#: ../../include/features.php:62
-msgid "Tagging"
-msgstr "Verschlagworten"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "Gewissermaßen geschieden"
 
-#: ../../include/features.php:62
-msgid "Ability to tag existing posts"
-msgstr "Möglichkeit, um existierende Beiträge zu verschlagworten"
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Verwitwet"
 
-#: ../../include/features.php:63
-msgid "Post Categories"
-msgstr "Beitrags-Kategorien"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Ungewiss"
 
-#: ../../include/features.php:63
-msgid "Add categories to your posts"
-msgstr "Kategorien für Beiträge"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "Es ist kompliziert"
 
-#: ../../include/features.php:64 ../../include/widgets.php:283
-#: ../../include/contact_widgets.php:53
-msgid "Saved Folders"
-msgstr "Gesicherte Ordner"
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Interessiert mich nicht"
 
-#: ../../include/features.php:64
-msgid "Ability to file posts under folders"
-msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln"
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Frag mich mal"
 
-#: ../../include/features.php:65
-msgid "Dislike Posts"
-msgstr "Gefällt-mir-nicht Beiträge"
+#: ../../include/attach.php:179 ../../include/attach.php:227
+msgid "Item was not found."
+msgstr "Beitrag wurde nicht gefunden."
 
-#: ../../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/attach.php:280
+msgid "No source file."
+msgstr "Keine Quelldatei."
 
-#: ../../include/features.php:66
-msgid "Star Posts"
-msgstr "Beiträge mit Sternchen versehen"
+#: ../../include/attach.php:297
+msgid "Cannot locate file to replace"
+msgstr "Kann Datei zum Ersetzen nicht finden"
 
-#: ../../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/attach.php:315
+msgid "Cannot locate file to revise/update"
+msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden"
 
-#: ../../include/features.php:67
-msgid "Tag Cloud"
-msgstr "Tag Wolke"
+#: ../../include/attach.php:326
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Datei überschreitet das Größen-Limit von %d"
 
-#: ../../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/attach.php:338
+#, 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/group.php:25
-msgid ""
-"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."
-msgstr "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."
+#: ../../include/attach.php:422
+msgid "File upload failed. Possible system limit or action terminated."
+msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."
 
-#: ../../include/group.php:223
-msgid "Default privacy group for new contacts"
-msgstr "Standard-Privatsphärengruppe für neue Kontakte"
+#: ../../include/attach.php:434
+msgid "Stored file could not be verified. Upload failed."
+msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."
 
-#: ../../include/group.php:242 ../../mod/admin.php:700
-msgid "All Channels"
-msgstr "Alle Kanäle"
+#: ../../include/attach.php:478 ../../include/attach.php:495
+msgid "Path not available."
+msgstr "Pfad nicht verfügbar."
 
-#: ../../include/group.php:264
-msgid "edit"
-msgstr "Bearbeiten"
+#: ../../include/attach.php:545
+msgid "Empty pathname"
+msgstr "leere Pfadangabe"
 
-#: ../../include/group.php:285
-msgid "Collections"
-msgstr "Sammlungen"
+#: ../../include/attach.php:563
+msgid "duplicate filename or path"
+msgstr "doppelter Dateiname oder Pfad"
 
-#: ../../include/group.php:286
-msgid "Edit collection"
-msgstr "Bearbeite Sammlungen"
+#: ../../include/attach.php:588
+msgid "Path not found."
+msgstr "Pfad nicht gefunden."
 
-#: ../../include/group.php:287
-msgid "Create a new collection"
-msgstr "Neue Sammlung erzeugen"
+#: ../../include/attach.php:633
+msgid "mkdir failed."
+msgstr "mkdir fehlgeschlagen."
 
-#: ../../include/group.php:288
-msgid "Channels not in any collection"
-msgstr "Kanäle, die nicht in einer Sammlung sind"
+#: ../../include/attach.php:637
+msgid "database storage failed."
+msgstr "Speichern in der Datenbank fehlgeschlagen."
 
-#: ../../include/group.php:290 ../../include/widgets.php:253
-msgid "add"
-msgstr "hinzufügen"
+#: ../../include/taxonomy.php:210
+msgid "Tags"
+msgstr "Tags"
 
-#: ../../include/notify.php:23
-msgid "created a new post"
-msgstr "Neuer Beitrag wurde erzeugt"
+#: ../../include/taxonomy.php:227
+msgid "Keywords"
+msgstr "Schlüsselbegriffe"
 
-#: ../../include/notify.php:24
-#, php-format
-msgid "commented on %s's post"
-msgstr "hat %s's Beitrag kommentiert"
+#: ../../include/taxonomy.php:252
+msgid "have"
+msgstr "habe"
 
-#: ../../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:462 ../../include/attach.php:540
-#: ../../include/items.php:3454 ../../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:522 ../../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: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/editwebpage.php:44
-#: ../../mod/editwebpage.php:83 ../../mod/poke.php:128
-#: ../../mod/channel.php:88 ../../mod/channel.php:188
-#: ../../mod/channel.php:231 ../../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:348
-msgid "Permission denied."
-msgstr "Zugang verweigert"
+#: ../../include/taxonomy.php:252
+msgid "has"
+msgstr "hat"
 
-#: ../../include/photos.php:89
-#, php-format
-msgid "Image exceeds website size limit of %lu bytes"
-msgstr "Bild überschreitet das Limit der Webseite von %lu bytes"
+#: ../../include/taxonomy.php:253
+msgid "want"
+msgstr "will"
 
-#: ../../include/photos.php:96
-msgid "Image file is empty."
-msgstr "Bilddatei ist leer."
+#: ../../include/taxonomy.php:253
+msgid "wants"
+msgstr "will"
 
-#: ../../include/photos.php:123 ../../mod/profile_photo.php:147
-msgid "Unable to process image"
-msgstr "Kann Bild nicht verarbeiten"
+#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:175
+msgid "like"
+msgstr "Gefällt-mir"
 
-#: ../../include/photos.php:185
-msgid "Photo storage failed."
-msgstr "Foto speichern schlug fehl"
+#: ../../include/taxonomy.php:254
+msgid "likes"
+msgstr "Gefällt-mir"
 
-#: ../../include/photos.php:302 ../../include/conversation.php:1476
-msgid "Photo Albums"
-msgstr "Fotoalben"
+#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:176
+msgid "dislike"
+msgstr "Gefällt-mir-nicht"
 
-#: ../../include/photos.php:306 ../../mod/photos.php:690
-#: ../../mod/photos.php:1165
-msgid "Upload New Photos"
-msgstr "Lade neue Fotos hoch"
+#: ../../include/taxonomy.php:255
+msgid "dislikes"
+msgstr "Gefällt-mir-nicht"
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Männlich"
+#: ../../include/auth.php:76
+msgid "Logged out."
+msgstr "Ausgeloggt."
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Weiblich"
+#: ../../include/auth.php:188
+msgid "Failed authentication"
+msgstr "Authentifizierung fehlgeschlagen"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Momentan männlich"
+#: ../../include/auth.php:203
+msgid "Login failed."
+msgstr "Login fehlgeschlagen."
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Momentan weiblich"
+#: ../../include/account.php:23
+msgid "Not a valid email address"
+msgstr "Ungültige E-Mail-Adresse"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Größtenteils männlich"
+#: ../../include/account.php:25
+msgid "Your email domain is not among those allowed on this site"
+msgstr "Deine E-Mail-Adresse ist nicht unter denen, die auf dieser Seite erlaubt sind"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Größtenteils weiblich"
+#: ../../include/account.php:31
+msgid "Your email address is already registered at this site."
+msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transsexuell"
+#: ../../include/account.php:64
+msgid "An invitation is required."
+msgstr "Eine Einladung wird benötigt"
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Zwischengeschlechtlich"
+#: ../../include/account.php:68
+msgid "Invitation could not be verified."
+msgstr "Die Einladung konnte nicht bestätigt werden"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transsexuell"
+#: ../../include/account.php:119
+msgid "Please enter the required information."
+msgstr "Bitte gib die benötigten Informationen ein."
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Zwitter"
+#: ../../include/account.php:187
+msgid "Failed to store account information."
+msgstr "Speichern der Account-Informationen fehlgeschlagen"
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Geschlechtslos"
+#: ../../include/account.php:273
+#, php-format
+msgid "Registration request at %s"
+msgstr "Registrierungsanfrage auf %s"
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "unklar"
+#: ../../include/account.php:275 ../../include/account.php:302
+#: ../../include/account.php:359
+msgid "Administrator"
+msgstr "Administrator"
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Anders"
+#: ../../include/account.php:297
+msgid "your registration password"
+msgstr "dein Registrierungspasswort"
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Unentschieden"
+#: ../../include/account.php:300 ../../include/account.php:357
+#, php-format
+msgid "Registration details for %s"
+msgstr "Registrierungsdetails für %s"
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Männer"
+#: ../../include/account.php:366
+msgid "Account approved."
+msgstr "Account bestätigt."
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Frauen"
+#: ../../include/account.php:400
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registrierung für %s widerrufen"
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Schwul"
+#: ../../include/dir_fns.php:15
+msgid "Sort Options"
+msgstr "Sortieroptionen"
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbisch"
+#: ../../include/dir_fns.php:16
+msgid "Alphabetic"
+msgstr "alphabetisch"
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Keine Bevorzugung"
+#: ../../include/dir_fns.php:17
+msgid "Reverse Alphabetic"
+msgstr "Entgegengesetzt alphabetisch"
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bisexuell"
+#: ../../include/dir_fns.php:18
+msgid "Newest to Oldest"
+msgstr "Neueste zuerst"
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autosexuell"
+#: ../../include/dir_fns.php:30
+msgid "Enable Safe Search"
+msgstr "Sichere Suche einschalten"
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Enthaltsam"
+#: ../../include/dir_fns.php:32
+msgid "Disable Safe Search"
+msgstr "Sichere Suche ausschalten"
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Jungfräulich"
+#: ../../include/dir_fns.php:34
+msgid "Safe Mode"
+msgstr "Sicherer Modus"
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Abweichend"
+#: ../../include/enotify.php:40
+msgid "Red Matrix Notification"
+msgstr "Red Matrix Benachrichtigung"
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetisch"
+#: ../../include/enotify.php:41
+msgid "redmatrix"
+msgstr "redmatrix"
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Unmengen"
+#: ../../include/enotify.php:43
+msgid "Thank You,"
+msgstr "Danke."
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Sexlos"
+#: ../../include/enotify.php:45
+#, php-format
+msgid "%s Administrator"
+msgstr "%s Administrator"
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Single"
+#: ../../include/enotify.php:80
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Einsam"
+#: ../../include/enotify.php:84
+#, php-format
+msgid "[Red:Notify] New mail received at %s"
+msgstr "[Red Notify] Neue Mail auf %s empfangen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Verfügbar"
+#: ../../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/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Nicht verfügbar"
+#: ../../include/enotify.php:87
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s hat dir %2$s geschickt."
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "Verguckt"
+#: ../../include/enotify.php:87
+msgid "a private message"
+msgstr "eine private Nachricht"
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "Verknallt"
+#: ../../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/profile_selectors.php:42
-msgid "Dating"
-msgstr "Lerne gerade jemanden kennen"
+#: ../../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 hat [zrl=%3$s]a %4$s[/zrl] kommentiert"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Treulos"
+#: ../../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 hat [zrl=%3$s]%4$ss %5$s[/zrl] kommentiert"
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Sexabhängig"
+#: ../../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 hat [zrl=%3$s]deinen %4$s[/zrl] kommentiert"
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Freunde/Begünstigte"
+#: ../../include/enotify.php:170
+#, php-format
+msgid "[Red:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1$d von %2$s"
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Lose"
+#: ../../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 hat ein Thema kommentiert, dem du folgst."
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Verlobt"
+#: ../../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 "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Verheiratet"
+#: ../../include/enotify.php:180
+#, php-format
+msgid "[Red:Notify] %s posted to your profile wall"
+msgstr "[Red:Hinweis] %s schrieb auf Deine Pinnwand"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "Gewissermaßen verheiratet"
+#: ../../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/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partner"
+#: ../../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/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "Lebensgemeinschaft"
+#: ../../include/enotify.php:208
+#, php-format
+msgid "[Red:Notify] %s tagged you"
+msgstr "[Red Notify] %s hat dich getaggt"
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr "Informelle Ehe"
+#: ../../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/profile_selectors.php:42
-msgid "Happy"
-msgstr "Glücklich"
+#: ../../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/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Nicht Ausschau haltend"
+#: ../../include/enotify.php:223
+#, php-format
+msgid "[Red:Notify] %1$s poked you"
+msgstr "[Red Notify] %1$s hat dich angestupst"
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: ../../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/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Betrogen"
+#: ../../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/profile_selectors.php:42
-msgid "Separated"
-msgstr "Getrennt"
+#: ../../include/enotify.php:241
+#, php-format
+msgid "[Red:Notify] %s tagged your post"
+msgstr "[Red:Hinweis] %s hat Dich getaggt"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Labil"
+#: ../../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/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Geschieden"
+#: ../../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/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "Gewissermaßen geschieden"
+#: ../../include/enotify.php:255
+msgid "[Red:Notify] Introduction received"
+msgstr "[Red:Notify] Vorstellung erhalten"
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Verwitwet"
+#: ../../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/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Ungewiss"
+#: ../../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/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "Es ist kompliziert"
+#: ../../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/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Interessiert mich nicht"
+#: ../../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/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Frag mich mal"
+#: ../../include/enotify.php:270
+msgid "[Red:Notify] Friend suggestion received"
+msgstr "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten"
 
-#: ../../include/attach.php:179 ../../include/attach.php:227
-msgid "Item was not found."
-msgstr "Beitrag wurde nicht gefunden."
+#: ../../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/attach.php:280
-msgid "No source file."
-msgstr "Keine Quelldatei."
+#: ../../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/attach.php:297
-msgid "Cannot locate file to replace"
-msgstr "Kann Datei zum Ersetzen nicht finden"
+#: ../../include/enotify.php:278
+msgid "Name:"
+msgstr "Name:"
 
-#: ../../include/attach.php:315
-msgid "Cannot locate file to revise/update"
-msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden"
+#: ../../include/enotify.php:279
+msgid "Photo:"
+msgstr "Foto:"
 
-#: ../../include/attach.php:326
+#: ../../include/enotify.php:282
 #, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Datei überschreitet das Größen-Limit von %d"
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen."
 
-#: ../../include/attach.php:338
-#, 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/widgets.php:29 ../../include/contact_widgets.php:87
+msgid "Categories"
+msgstr "Kategorien"
 
-#: ../../include/attach.php:422
-msgid "File upload failed. Possible system limit or action terminated."
-msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."
+#: ../../include/widgets.php:117 ../../mod/suggest.php:53
+msgid "Ignore/Hide"
+msgstr "Ignorieren/Verstecken"
 
-#: ../../include/attach.php:434
-msgid "Stored file could not be verified. Upload failed."
-msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."
+#: ../../include/widgets.php:123 ../../mod/connections.php:236
+msgid "Suggestions"
+msgstr "Vorschläge"
 
-#: ../../include/attach.php:478 ../../include/attach.php:495
-msgid "Path not available."
-msgstr "Pfad nicht verfügbar."
+#: ../../include/widgets.php:124
+msgid "See more..."
+msgstr "Mehr anzeigen..."
+
+#: ../../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:152
+msgid "Add New Connection"
+msgstr "Neue Verbindung hinzufügen"
+
+#: ../../include/widgets.php:153
+msgid "Enter the channel address"
+msgstr "Adresse des Kanals eingeben"
 
-#: ../../include/attach.php:545
-msgid "Empty pathname"
-msgstr "leere Pfadangabe"
+#: ../../include/widgets.php:154
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara"
 
-#: ../../include/attach.php:563
-msgid "duplicate filename or path"
-msgstr "doppelter Dateiname oder Pfad"
+#: ../../include/widgets.php:171
+msgid "Notes"
+msgstr "Notizen"
 
-#: ../../include/attach.php:588
-msgid "Path not found."
-msgstr "Pfad nicht gefunden."
+#: ../../include/widgets.php:173 ../../include/text.php:738
+#: ../../include/text.php:752 ../../mod/filer.php:36
+msgid "Save"
+msgstr "Speichern"
 
-#: ../../include/attach.php:633
-msgid "mkdir failed."
-msgstr "mkdir fehlgeschlagen."
+#: ../../include/widgets.php:243
+msgid "Remove term"
+msgstr "Eintrag löschen"
 
-#: ../../include/attach.php:637
-msgid "database storage failed."
-msgstr "Speichern in der Datenbank fehlgeschlagen."
+#: ../../include/widgets.php:286 ../../include/contact_widgets.php:56
+#: ../../include/contact_widgets.php:90
+msgid "Everything"
+msgstr "Alles"
 
-#: ../../include/taxonomy.php:210
-msgid "Tags"
-msgstr "Tags"
+#: ../../include/widgets.php:318 ../../include/items.php:3575
+msgid "Archives"
+msgstr "Archive"
 
-#: ../../include/taxonomy.php:227
-msgid "Keywords"
-msgstr "Schlüsselbegriffe"
+#: ../../include/widgets.php:370
+msgid "Refresh"
+msgstr "Aktualisieren"
 
-#: ../../include/taxonomy.php:252
-msgid "have"
-msgstr "habe"
+#: ../../include/widgets.php:371 ../../mod/connedit.php:386
+msgid "Me"
+msgstr "Ich"
 
-#: ../../include/taxonomy.php:252
-msgid "has"
-msgstr "hat"
+#: ../../include/widgets.php:372 ../../mod/connedit.php:388
+msgid "Best Friends"
+msgstr "Beste Freunde"
 
-#: ../../include/taxonomy.php:253
-msgid "want"
-msgstr "will"
+#: ../../include/widgets.php:374
+msgid "Co-workers"
+msgstr "Kollegen"
 
-#: ../../include/taxonomy.php:253
-msgid "wants"
-msgstr "will"
+#: ../../include/widgets.php:375 ../../mod/connedit.php:390
+msgid "Former Friends"
+msgstr "ehem. Freunde"
 
-#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:175
-msgid "like"
-msgstr "Gefällt-mir"
+#: ../../include/widgets.php:376 ../../mod/connedit.php:391
+msgid "Acquaintances"
+msgstr "Bekanntschaften"
 
-#: ../../include/taxonomy.php:254
-msgid "likes"
-msgstr "Gefällt-mir"
+#: ../../include/widgets.php:377
+msgid "Everybody"
+msgstr "Jeder"
 
-#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:176
-msgid "dislike"
-msgstr "Gefällt-mir-nicht"
+#: ../../include/widgets.php:409
+msgid "Account settings"
+msgstr "Konto-Einstellungen"
 
-#: ../../include/taxonomy.php:255
-msgid "dislikes"
-msgstr "Gefällt-mir-nicht"
+#: ../../include/widgets.php:415
+msgid "Channel settings"
+msgstr "Kanal-Einstellungen"
 
-#: ../../include/auth.php:76
-msgid "Logged out."
-msgstr "Ausgeloggt."
+#: ../../include/widgets.php:421
+msgid "Additional features"
+msgstr "Zusätzliche Funktionen"
 
-#: ../../include/auth.php:188
-msgid "Failed authentication"
-msgstr "Authentifizierung fehlgeschlagen"
+#: ../../include/widgets.php:427
+msgid "Feature settings"
+msgstr "Funktions-Einstellungen"
 
-#: ../../include/auth.php:203
-msgid "Login failed."
-msgstr "Login fehlgeschlagen."
+#: ../../include/widgets.php:433
+msgid "Display settings"
+msgstr "Anzeige-Einstellungen"
 
-#: ../../include/account.php:23
-msgid "Not a valid email address"
-msgstr "Ungültige E-Mail-Adresse"
+#: ../../include/widgets.php:439
+msgid "Connected apps"
+msgstr "Verbundene Apps"
 
-#: ../../include/account.php:25
-msgid "Your email domain is not among those allowed on this site"
-msgstr "Deine E-Mail-Adresse ist nicht unter denen, die auf dieser Seite erlaubt sind"
+#: ../../include/widgets.php:445
+msgid "Export channel"
+msgstr "Kanal exportieren"
 
-#: ../../include/account.php:31
-msgid "Your email address is already registered at this site."
-msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."
+#: ../../include/widgets.php:457
+msgid "Automatic Permissions (Advanced)"
+msgstr "Automatische Berechtigungen (Erweitert)"
 
-#: ../../include/account.php:64
-msgid "An invitation is required."
-msgstr "Eine Einladung wird benötigt"
+#: ../../include/widgets.php:467
+msgid "Premium Channel Settings"
+msgstr "Prämium-Kanal Einstellungen"
 
-#: ../../include/account.php:68
-msgid "Invitation could not be verified."
-msgstr "Die Einladung konnte nicht bestätigt werden"
+#: ../../include/widgets.php:504
+msgid "Check Mail"
+msgstr "E-Mails abrufen"
 
-#: ../../include/account.php:119
-msgid "Please enter the required information."
-msgstr "Bitte gib die benötigten Informationen ein."
+#: ../../include/widgets.php:585
+msgid "Chat Rooms"
+msgstr "Chaträume"
 
-#: ../../include/account.php:187
-msgid "Failed to store account information."
-msgstr "Speichern der Account-Informationen fehlgeschlagen"
+#: ../../include/api.php:974
+msgid "Public Timeline"
+msgstr "Öffentliche Zeitleiste"
 
-#: ../../include/account.php:273
+#: ../../include/contact_widgets.php:14
 #, php-format
-msgid "Registration request at %s"
-msgstr "Registrierungsanfrage auf %s"
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d Einladung verfügbar"
+msgstr[1] "%d Einladungen verfügbar"
 
-#: ../../include/account.php:275 ../../include/account.php:302
-#: ../../include/account.php:359
-msgid "Administrator"
-msgstr "Administrator"
+#: ../../include/contact_widgets.php:20
+msgid "Find Channels"
+msgstr "Finde Kanäle"
 
-#: ../../include/account.php:297
-msgid "your registration password"
-msgstr "dein Registrierungspasswort"
+#: ../../include/contact_widgets.php:21
+msgid "Enter name or interest"
+msgstr "Name oder Interessen eingeben"
 
-#: ../../include/account.php:300 ../../include/account.php:357
-#, php-format
-msgid "Registration details for %s"
-msgstr "Registrierungsdetails für %s"
+#: ../../include/contact_widgets.php:22
+msgid "Connect/Follow"
+msgstr "Verbinden/Folgen"
 
-#: ../../include/account.php:366
-msgid "Account approved."
-msgstr "Account bestätigt."
+#: ../../include/contact_widgets.php:23
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Beispiele: Robert Morgenstein, Angeln"
 
-#: ../../include/account.php:400
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrierung für %s widerrufen"
+#: ../../include/contact_widgets.php:24 ../../mod/directory.php:206
+#: ../../mod/directory.php:211 ../../mod/connections.php:355
+msgid "Find"
+msgstr "Finde"
 
-#: ../../include/dir_fns.php:15
-msgid "Sort Options"
-msgstr "Sortieroptionen"
+#: ../../include/contact_widgets.php:25 ../../mod/suggest.php:59
+msgid "Channel Suggestions"
+msgstr "Kanal-Vorschläge"
 
-#: ../../include/dir_fns.php:16
-msgid "Alphabetic"
-msgstr "alphabetisch"
+#: ../../include/contact_widgets.php:27
+msgid "Random Profile"
+msgstr "Zufallsprofil"
 
-#: ../../include/dir_fns.php:17
-msgid "Reverse Alphabetic"
-msgstr "Entgegengesetzt alphabetisch"
+#: ../../include/contact_widgets.php:28
+msgid "Invite Friends"
+msgstr "Lade Freunde ein"
 
-#: ../../include/dir_fns.php:18
-msgid "Newest to Oldest"
-msgstr "Neueste zuerst"
+#: ../../include/contact_widgets.php:120
+#, php-format
+msgid "%d connection in common"
+msgid_plural "%d connections in common"
+msgstr[0] "%d gemeinsame Verbindung"
+msgstr[1] "%d gemeinsame Verbindungen"
 
-#: ../../include/dir_fns.php:30
-msgid "Enable Safe Search"
-msgstr "Sichere Suche einschalten"
+#: ../../include/page_widgets.php:6
+msgid "New Page"
+msgstr "Neue Seite"
 
-#: ../../include/dir_fns.php:32
-msgid "Disable Safe Search"
-msgstr "Sichere Suche ausschalten"
+#: ../../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:170
+#: ../../mod/settings.php:571 ../../mod/editlayout.php:106
+#: ../../mod/editpost.php:103 ../../mod/blocks.php:93
+#: ../../mod/editwebpage.php:144 ../../mod/editblock.php:120
+msgid "Edit"
+msgstr "Bearbeiten"
 
-#: ../../include/dir_fns.php:34
-msgid "Safe Mode"
-msgstr "Sicherer Modus"
+#: ../../include/plugin.php:475 ../../include/plugin.php:477
+msgid "Click here to upgrade."
+msgstr "Klicke hier, um das Upgrade durchzuführen."
 
-#: ../../include/enotify.php:40
-msgid "Red Matrix Notification"
-msgstr "Red Matrix Benachrichtigung"
+#: ../../include/plugin.php:483
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements."
 
-#: ../../include/enotify.php:41
-msgid "redmatrix"
-msgstr "redmatrix"
+#: ../../include/plugin.php:488
+msgid "This action is not available under your subscription plan."
+msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."
 
-#: ../../include/enotify.php:43
-msgid "Thank You,"
-msgstr "Danke."
+#: ../../include/follow.php:21
+msgid "Channel is blocked on this site."
+msgstr "Der Kanal ist auf dieser Seite blockiert "
+
+#: ../../include/follow.php:26
+msgid "Channel location missing."
+msgstr "Adresse des Kanals fehlt."
 
-#: ../../include/enotify.php:45
-#, php-format
-msgid "%s Administrator"
-msgstr "%s Administrator"
+#: ../../include/follow.php:43
+msgid "Channel discovery failed. Website may be down or misconfigured."
+msgstr "Auffinden des Kanals schlug fehl. Die Webseite könnte falsch konfiguriert oder abgeschaltet sein."
 
-#: ../../include/enotify.php:80
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: ../../include/follow.php:51
+msgid "Response from remote channel was not understood."
+msgstr "Antwort des entfernten Kanals war unverständlich."
 
-#: ../../include/enotify.php:84
-#, php-format
-msgid "[Red:Notify] New mail received at %s"
-msgstr "[Red Notify] Neue Mail auf %s empfangen"
+#: ../../include/follow.php:58
+msgid "Response from remote channel was incomplete."
+msgstr "Antwort des entfernten Kanals war unvollständig."
 
-#: ../../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/follow.php:129
+msgid "local account not found."
+msgstr "Lokales Konto nicht gefunden."
 
-#: ../../include/enotify.php:87
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s hat dir %2$s geschickt."
+#: ../../include/follow.php:138
+msgid "Cannot connect to yourself."
+msgstr "Du kannst dich nicht mit dir selbst verbinden."
 
-#: ../../include/enotify.php:87
-msgid "a private message"
-msgstr "eine private Nachricht"
+#: ../../include/permissions.php:13
+msgid "Can view my \"public\" stream and posts"
+msgstr "Kann meinen öffentlichen Stream und Beiträge sehen"
 
-#: ../../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/permissions.php:14
+msgid "Can view my \"public\" channel profile"
+msgstr "Kann meinen öffentliches Kanal-Profil sehen"
 
-#: ../../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 hat [zrl=%3$s]a %4$s[/zrl] kommentiert"
+#: ../../include/permissions.php:15
+msgid "Can view my \"public\" photo albums"
+msgstr "Kann meine öffentlichen Fotoalben sehen"
 
-#: ../../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 hat [zrl=%3$s]%4$ss %5$s[/zrl] kommentiert"
+#: ../../include/permissions.php:16
+msgid "Can view my \"public\" address book"
+msgstr "Kann mein öffentliches Adressbuch sehen"
 
-#: ../../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 hat [zrl=%3$s]deinen %4$s[/zrl] kommentiert"
+#: ../../include/permissions.php:17
+msgid "Can view my \"public\" file storage"
+msgstr "Kann meinen öffentlichen Dateiordner sehen"
 
-#: ../../include/enotify.php:170
-#, php-format
-msgid "[Red:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1$d von %2$s"
+#: ../../include/permissions.php:18
+msgid "Can view my \"public\" pages"
+msgstr "Kann meine öffentlichen Seiten sehen"
 
-#: ../../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 hat ein Thema kommentiert, dem du folgst."
+#: ../../include/permissions.php:21
+msgid "Can send me their channel stream and posts"
+msgstr "Können mir den Stream und die Beiträge aus ihrem Kanal schicken"
 
-#: ../../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 "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
+#: ../../include/permissions.php:22
+msgid "Can post on my channel page (\"wall\")"
+msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"
 
-#: ../../include/enotify.php:180
-#, php-format
-msgid "[Red:Notify] %s posted to your profile wall"
-msgstr "[Red:Hinweis] %s schrieb auf Deine Pinnwand"
+#: ../../include/permissions.php:23
+msgid "Can comment on my posts"
+msgstr "Kann meine Beiträge kommentieren"
 
-#: ../../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/permissions.php:24
+msgid "Can send me private mail messages"
+msgstr "Kann mir private Nachrichten schicken"
 
-#: ../../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/permissions.php:25
+msgid "Can post photos to my photo albums"
+msgstr "Kann Fotos in meinen Fotoalben veröffentlichen"
 
-#: ../../include/enotify.php:208
-#, php-format
-msgid "[Red:Notify] %s tagged you"
-msgstr "[Red Notify] %s hat dich getaggt"
+#: ../../include/permissions.php:26
+msgid "Can forward to all my channel contacts via post @mentions"
+msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten"
 
-#: ../../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/permissions.php:26
+msgid "Advanced - useful for creating group forum channels"
+msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen"
 
-#: ../../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/permissions.php:27
+msgid "Can chat with me (when available)"
+msgstr "Kann mit mir chatten (wenn verfügbar)"
 
-#: ../../include/enotify.php:223
-#, php-format
-msgid "[Red:Notify] %1$s poked you"
-msgstr "[Red Notify] %1$s hat dich angestupst"
+#: ../../include/permissions.php:27
+msgid "Requires compatible chat plugin"
+msgstr "Benötigt ein kompatibles Chat-Plugin"
 
-#: ../../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/permissions.php:28
+msgid "Can write to my \"public\" file storage"
+msgstr "Kann in meinen öffentlichen Dateiordner schreiben"
 
-#: ../../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/permissions.php:29
+msgid "Can edit my \"public\" pages"
+msgstr "Kann meine öffentlichen Seiten bearbeiten"
 
-#: ../../include/enotify.php:241
-#, php-format
-msgid "[Red:Notify] %s tagged your post"
-msgstr "[Red:Hinweis] %s hat Dich getaggt"
+#: ../../include/permissions.php:31
+msgid "Can source my \"public\" posts in derived channels"
+msgstr "Kann meine \"öffentlichen\" Beiträge als Quellen von Kanälen verwenden"
 
-#: ../../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/permissions.php:31
+msgid "Somewhat advanced - very useful in open communities"
+msgstr "Etwas Fortgeschritten - sehr nützlich in offenen Gemeinschaften."
 
-#: ../../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/permissions.php:32
+msgid "Can administer my channel resources"
+msgstr "Kann meine Kanäle administrieren"
 
-#: ../../include/enotify.php:255
-msgid "[Red:Notify] Introduction received"
-msgstr "[Red:Notify] Vorstellung erhalten"
+#: ../../include/permissions.php:32
+msgid ""
+"Extremely advanced. Leave this alone unless you know what you are doing"
+msgstr "Sehr fortgeschritten. Bearbeite dies nur, wenn du genau weißt, was du machst"
 
-#: ../../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/comanche.php:35 ../../view/theme/redbasic/php/config.php:62
+#: ../../view/theme/apw/php/config.php:176
+msgid "Default"
+msgstr "Standard"
 
-#: ../../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/items.php:208 ../../mod/like.php:55 ../../mod/group.php:68
+#: ../../mod/profperm.php:23 ../../index.php:346
+msgid "Permission denied"
+msgstr "Keine Berechtigung"
 
-#: ../../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/items.php:3392 ../../mod/thing.php:74 ../../mod/admin.php:151
+#: ../../mod/admin.php:782 ../../mod/admin.php:985 ../../mod/viewsrc.php:18
+#: ../../mod/home.php:63 ../../mod/filestorage.php:18 ../../mod/display.php:32
+msgid "Item not found."
+msgstr "Element nicht gefunden."
 
-#: ../../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/items.php:3748 ../../mod/group.php:38 ../../mod/group.php:140
+msgid "Collection not found."
+msgstr "Sammlung nicht gefunden"
 
-#: ../../include/enotify.php:270
-msgid "[Red:Notify] Friend suggestion received"
-msgstr "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten"
+#: ../../include/items.php:3763
+msgid "Collection is empty."
+msgstr "Sammlung ist leer."
 
-#: ../../include/enotify.php:271
+#: ../../include/items.php:3770
 #, 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"
+msgid "Collection: %s"
+msgstr "Sammlung: %s"
 
-#: ../../include/enotify.php:272
+#: ../../include/items.php:3781
 #, 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/enotify.php:278
-msgid "Name:"
-msgstr "Name:"
+msgid "Connection: %s"
+msgstr "Verbindung: %s"
 
-#: ../../include/enotify.php:279
-msgid "Photo:"
-msgstr "Foto:"
+#: ../../include/items.php:3784
+msgid "Connection not found."
+msgstr "Die Verbindung wurde nicht gefunden."
 
-#: ../../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/security.php:280
+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/widgets.php:29 ../../include/contact_widgets.php:87
-msgid "Categories"
-msgstr "Kategorien"
+#: ../../include/text.php:315
+msgid "prev"
+msgstr "vorherige"
 
-#: ../../include/widgets.php:117 ../../mod/suggest.php:53
-msgid "Ignore/Hide"
-msgstr "Ignorieren/Verstecken"
+#: ../../include/text.php:317
+msgid "first"
+msgstr "erste"
 
-#: ../../include/widgets.php:123 ../../mod/connections.php:236
-msgid "Suggestions"
-msgstr "Vorschläge"
+#: ../../include/text.php:346
+msgid "last"
+msgstr "letzte"
 
-#: ../../include/widgets.php:124
-msgid "See more..."
-msgstr "Mehr anzeigen..."
+#: ../../include/text.php:349
+msgid "next"
+msgstr "nächste"
 
-#: ../../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/text.php:361
+msgid "older"
+msgstr "älter"
 
-#: ../../include/widgets.php:152
-msgid "Add New Connection"
-msgstr "Neue Verbindung hinzufügen"
+#: ../../include/text.php:363
+msgid "newer"
+msgstr "neuer"
 
-#: ../../include/widgets.php:153
-msgid "Enter the channel address"
-msgstr "Adresse des Kanals eingeben"
+#: ../../include/text.php:654
+msgid "No connections"
+msgstr "Keine Verbindungen"
 
-#: ../../include/widgets.php:154
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara"
+#: ../../include/text.php:665
+#, php-format
+msgid "%d Connection"
+msgid_plural "%d Connections"
+msgstr[0] "%d Verbindung"
+msgstr[1] "%d Verbindungen"
 
-#: ../../include/widgets.php:171
-msgid "Notes"
-msgstr "Notizen"
+#: ../../include/text.php:677
+msgid "View Connections"
+msgstr "Zeige Verbindungen"
 
-#: ../../include/widgets.php:243
-msgid "Remove term"
-msgstr "Eintrag löschen"
+#: ../../include/text.php:818
+msgid "poke"
+msgstr "anstupsen"
 
-#: ../../include/widgets.php:286 ../../include/contact_widgets.php:56
-#: ../../include/contact_widgets.php:90
-msgid "Everything"
-msgstr "Alles"
+#: ../../include/text.php:818 ../../include/conversation.php:240
+msgid "poked"
+msgstr "stupste"
 
-#: ../../include/widgets.php:318 ../../include/items.php:3575
-msgid "Archives"
-msgstr "Archive"
+#: ../../include/text.php:819
+msgid "ping"
+msgstr "anpingen"
 
-#: ../../include/widgets.php:370
-msgid "Refresh"
-msgstr "Aktualisieren"
+#: ../../include/text.php:819
+msgid "pinged"
+msgstr "pingte"
 
-#: ../../include/widgets.php:371 ../../mod/connedit.php:386
-msgid "Me"
-msgstr "Ich"
+#: ../../include/text.php:820
+msgid "prod"
+msgstr "knuffen"
 
-#: ../../include/widgets.php:372 ../../mod/connedit.php:388
-msgid "Best Friends"
-msgstr "Beste Freunde"
+#: ../../include/text.php:820
+msgid "prodded"
+msgstr "knuffte"
 
-#: ../../include/widgets.php:374
-msgid "Co-workers"
-msgstr "Kollegen"
+#: ../../include/text.php:821
+msgid "slap"
+msgstr "ohrfeigen"
 
-#: ../../include/widgets.php:375 ../../mod/connedit.php:390
-msgid "Former Friends"
-msgstr "ehem. Freunde"
+#: ../../include/text.php:821
+msgid "slapped"
+msgstr "ohrfeigte"
 
-#: ../../include/widgets.php:376 ../../mod/connedit.php:391
-msgid "Acquaintances"
-msgstr "Bekanntschaften"
+#: ../../include/text.php:822
+msgid "finger"
+msgstr "befummeln"
 
-#: ../../include/widgets.php:377
-msgid "Everybody"
-msgstr "Jeder"
+#: ../../include/text.php:822
+msgid "fingered"
+msgstr "befummelte"
 
-#: ../../include/widgets.php:409
-msgid "Account settings"
-msgstr "Konto-Einstellungen"
+#: ../../include/text.php:823
+msgid "rebuff"
+msgstr "eine Abfuhr erteilen"
 
-#: ../../include/widgets.php:415
-msgid "Channel settings"
-msgstr "Kanal-Einstellungen"
+#: ../../include/text.php:823
+msgid "rebuffed"
+msgstr "abfuhrerteilte"
 
-#: ../../include/widgets.php:421
-msgid "Additional features"
-msgstr "Zusätzliche Funktionen"
+#: ../../include/text.php:835
+msgid "happy"
+msgstr "glücklich"
 
-#: ../../include/widgets.php:427
-msgid "Feature settings"
-msgstr "Funktions-Einstellungen"
+#: ../../include/text.php:836
+msgid "sad"
+msgstr "traurig"
 
-#: ../../include/widgets.php:433
-msgid "Display settings"
-msgstr "Anzeige-Einstellungen"
+#: ../../include/text.php:837
+msgid "mellow"
+msgstr "sanft"
 
-#: ../../include/widgets.php:439
-msgid "Connected apps"
-msgstr "Verbundene Apps"
+#: ../../include/text.php:838
+msgid "tired"
+msgstr "müde"
 
-#: ../../include/widgets.php:445
-msgid "Export channel"
-msgstr "Kanal exportieren"
+#: ../../include/text.php:839
+msgid "perky"
+msgstr "frech"
 
-#: ../../include/widgets.php:457
-msgid "Automatic Permissions (Advanced)"
-msgstr "Automatische Berechtigungen (Erweitert)"
+#: ../../include/text.php:840
+msgid "angry"
+msgstr "sauer"
 
-#: ../../include/widgets.php:467
-msgid "Premium Channel Settings"
-msgstr "Prämium-Kanal Einstellungen"
+#: ../../include/text.php:841
+msgid "stupified"
+msgstr "verblüfft"
 
-#: ../../include/widgets.php:504
-msgid "Check Mail"
-msgstr "E-Mails abrufen"
+#: ../../include/text.php:842
+msgid "puzzled"
+msgstr "verwirrt"
 
-#: ../../include/contact_widgets.php:14
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d Einladung verfügbar"
-msgstr[1] "%d Einladungen verfügbar"
+#: ../../include/text.php:843
+msgid "interested"
+msgstr "interessiert"
 
-#: ../../include/contact_widgets.php:20
-msgid "Find Channels"
-msgstr "Finde Kanäle"
+#: ../../include/text.php:844
+msgid "bitter"
+msgstr "verbittert"
 
-#: ../../include/contact_widgets.php:21
-msgid "Enter name or interest"
-msgstr "Name oder Interessen eingeben"
+#: ../../include/text.php:845
+msgid "cheerful"
+msgstr "fröhlich"
 
-#: ../../include/contact_widgets.php:22
-msgid "Connect/Follow"
-msgstr "Verbinden/Folgen"
+#: ../../include/text.php:846
+msgid "alive"
+msgstr "lebendig"
 
-#: ../../include/contact_widgets.php:23
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Beispiele: Robert Morgenstein, Angeln"
+#: ../../include/text.php:847
+msgid "annoyed"
+msgstr "verärgert"
 
-#: ../../include/contact_widgets.php:24 ../../mod/directory.php:206
-#: ../../mod/directory.php:211 ../../mod/connections.php:355
-msgid "Find"
-msgstr "Finde"
+#: ../../include/text.php:848
+msgid "anxious"
+msgstr "unruhig"
 
-#: ../../include/contact_widgets.php:25 ../../mod/suggest.php:59
-msgid "Channel Suggestions"
-msgstr "Kanal-Vorschläge"
+#: ../../include/text.php:849
+msgid "cranky"
+msgstr "schrullig"
 
-#: ../../include/contact_widgets.php:27
-msgid "Random Profile"
-msgstr "Zufallsprofil"
+#: ../../include/text.php:850
+msgid "disturbed"
+msgstr "verstört"
 
-#: ../../include/contact_widgets.php:28
-msgid "Invite Friends"
-msgstr "Lade Freunde ein"
+#: ../../include/text.php:851
+msgid "frustrated"
+msgstr "frustriert"
 
-#: ../../include/contact_widgets.php:120
-#, php-format
-msgid "%d connection in common"
-msgid_plural "%d connections in common"
-msgstr[0] "%d gemeinsame Verbindung"
-msgstr[1] "%d gemeinsame Verbindungen"
+#: ../../include/text.php:852
+msgid "motivated"
+msgstr "motiviert"
 
-#: ../../include/page_widgets.php:6
-msgid "New Page"
-msgstr "Neue Seite"
+#: ../../include/text.php:853
+msgid "relaxed"
+msgstr "entspannt"
 
-#: ../../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:106
-#: ../../mod/editpost.php:98 ../../mod/blocks.php:93
-#: ../../mod/editwebpage.php:144 ../../mod/editblock.php:120
-msgid "Edit"
-msgstr "Bearbeiten"
+#: ../../include/text.php:854
+msgid "surprised"
+msgstr "überrascht"
 
-#: ../../include/plugin.php:475 ../../include/plugin.php:477
-msgid "Click here to upgrade."
-msgstr "Klicke hier, um das Upgrade durchzuführen."
+#: ../../include/text.php:1017
+msgid "Monday"
+msgstr "Montag"
 
-#: ../../include/plugin.php:483
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements."
+#: ../../include/text.php:1017
+msgid "Tuesday"
+msgstr "Dienstag"
 
-#: ../../include/plugin.php:488
-msgid "This action is not available under your subscription plan."
-msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."
+#: ../../include/text.php:1017
+msgid "Wednesday"
+msgstr "Mittwoch"
 
-#: ../../include/follow.php:21
-msgid "Channel is blocked on this site."
-msgstr "Der Kanal ist auf dieser Seite blockiert "
+#: ../../include/text.php:1017
+msgid "Thursday"
+msgstr "Donnerstag"
 
-#: ../../include/follow.php:26
-msgid "Channel location missing."
-msgstr "Adresse des Kanals fehlt."
+#: ../../include/text.php:1017
+msgid "Friday"
+msgstr "Freitag"
 
-#: ../../include/follow.php:43
-msgid "Channel discovery failed. Website may be down or misconfigured."
-msgstr "Auffinden des Kanals schlug fehl. Die Webseite könnte falsch konfiguriert oder abgeschaltet sein."
+#: ../../include/text.php:1017
+msgid "Saturday"
+msgstr "Samstag"
 
-#: ../../include/follow.php:51
-msgid "Response from remote channel was not understood."
-msgstr "Antwort des entfernten Kanals war unverständlich."
+#: ../../include/text.php:1017
+msgid "Sunday"
+msgstr "Sonntag"
 
-#: ../../include/follow.php:58
-msgid "Response from remote channel was incomplete."
-msgstr "Antwort des entfernten Kanals war unvollständig."
+#: ../../include/text.php:1021
+msgid "January"
+msgstr "Januar"
 
-#: ../../include/follow.php:129
-msgid "local account not found."
-msgstr "Lokales Konto nicht gefunden."
+#: ../../include/text.php:1021
+msgid "February"
+msgstr "Februar"
 
-#: ../../include/follow.php:138
-msgid "Cannot connect to yourself."
-msgstr "Du kannst dich nicht mit dir selbst verbinden."
+#: ../../include/text.php:1021
+msgid "March"
+msgstr "März"
 
-#: ../../include/permissions.php:13
-msgid "Can view my \"public\" stream and posts"
-msgstr "Kann meinen öffentlichen Stream und Beiträge sehen"
+#: ../../include/text.php:1021
+msgid "April"
+msgstr "April"
 
-#: ../../include/permissions.php:14
-msgid "Can view my \"public\" channel profile"
-msgstr "Kann meinen öffentliches Kanal-Profil sehen"
+#: ../../include/text.php:1021
+msgid "May"
+msgstr "Mai"
 
-#: ../../include/permissions.php:15
-msgid "Can view my \"public\" photo albums"
-msgstr "Kann meine öffentlichen Fotoalben sehen"
+#: ../../include/text.php:1021
+msgid "June"
+msgstr "Juni"
 
-#: ../../include/permissions.php:16
-msgid "Can view my \"public\" address book"
-msgstr "Kann mein öffentliches Adressbuch sehen"
+#: ../../include/text.php:1021
+msgid "July"
+msgstr "Juli"
 
-#: ../../include/permissions.php:17
-msgid "Can view my \"public\" file storage"
-msgstr "Kann meinen öffentlichen Dateiordner sehen"
+#: ../../include/text.php:1021
+msgid "August"
+msgstr "August"
 
-#: ../../include/permissions.php:18
-msgid "Can view my \"public\" pages"
-msgstr "Kann meine öffentlichen Seiten sehen"
+#: ../../include/text.php:1021
+msgid "September"
+msgstr "September"
 
-#: ../../include/permissions.php:21
-msgid "Can send me their channel stream and posts"
-msgstr "Können mir den Stream und die Beiträge aus ihrem Kanal schicken"
+#: ../../include/text.php:1021
+msgid "October"
+msgstr "Oktober"
 
-#: ../../include/permissions.php:22
-msgid "Can post on my channel page (\"wall\")"
-msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"
+#: ../../include/text.php:1021
+msgid "November"
+msgstr "November"
 
-#: ../../include/permissions.php:23
-msgid "Can comment on my posts"
-msgstr "Kann meine Beiträge kommentieren"
+#: ../../include/text.php:1021
+msgid "December"
+msgstr "Dezember"
 
-#: ../../include/permissions.php:24
-msgid "Can send me private mail messages"
-msgstr "Kann mir private Nachrichten schicken"
+#: ../../include/text.php:1099
+msgid "unknown.???"
+msgstr "unbekannt.???"
 
-#: ../../include/permissions.php:25
-msgid "Can post photos to my photo albums"
-msgstr "Kann Fotos in meinen Fotoalben veröffentlichen"
+#: ../../include/text.php:1100
+msgid "bytes"
+msgstr "Bytes"
 
-#: ../../include/permissions.php:26
-msgid "Can forward to all my channel contacts via post @mentions"
-msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten"
+#: ../../include/text.php:1135
+msgid "remove category"
+msgstr "Kategorie entfernen"
 
-#: ../../include/permissions.php:26
-msgid "Advanced - useful for creating group forum channels"
-msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen"
+#: ../../include/text.php:1157
+msgid "remove from file"
+msgstr "aus der Datei entfernen"
 
-#: ../../include/permissions.php:27
-msgid "Can chat with me (when available)"
-msgstr "Kann mit mir chatten (wenn verfügbar)"
+#: ../../include/text.php:1215 ../../include/text.php:1227
+msgid "Click to open/close"
+msgstr "Klicke zum Öffnen/Schließen"
 
-#: ../../include/permissions.php:27
-msgid "Requires compatible chat plugin"
-msgstr "Benötigt ein kompatibles Chat-Plugin"
+#: ../../include/text.php:1403 ../../mod/events.php:332
+msgid "link to source"
+msgstr "Link zum Originalbeitrag"
 
-#: ../../include/permissions.php:28
-msgid "Can write to my \"public\" file storage"
-msgstr "Kann in meinen öffentlichen Dateiordner schreiben"
+#: ../../include/text.php:1422
+msgid "Select a page layout: "
+msgstr "Ein Seiten-Layout auswählen"
 
-#: ../../include/permissions.php:29
-msgid "Can edit my \"public\" pages"
-msgstr "Kann meine öffentlichen Seiten bearbeiten"
+#: ../../include/text.php:1425 ../../include/text.php:1490
+msgid "default"
+msgstr "Standard"
 
-#: ../../include/permissions.php:31
-msgid "Can source my \"public\" posts in derived channels"
-msgstr "Kann meine \"öffentlichen\" Beiträge als Quellen von Kanälen verwenden"
+#: ../../include/text.php:1461
+msgid "Page content type: "
+msgstr "Content-Typ der Seite"
 
-#: ../../include/permissions.php:31
-msgid "Somewhat advanced - very useful in open communities"
-msgstr "Etwas Fortgeschritten - sehr nützlich in offenen Gemeinschaften."
+#: ../../include/text.php:1502
+msgid "Select an alternate language"
+msgstr "Wähle eine alternative Sprache"
 
-#: ../../include/permissions.php:32
-msgid "Can administer my channel resources"
-msgstr "Kann meine Kanäle administrieren"
+#: ../../include/text.php:1654 ../../include/conversation.php:117
+#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:45
+msgid "photo"
+msgstr "Foto"
 
-#: ../../include/permissions.php:32
-msgid ""
-"Extremely advanced. Leave this alone unless you know what you are doing"
-msgstr "Sehr fortgeschritten. Bearbeite dies nur, wenn du genau weißt, was du machst"
+#: ../../include/text.php:1657 ../../include/conversation.php:120
+#: ../../mod/tagger.php:49
+msgid "event"
+msgstr "Ereignis"
 
-#: ../../include/comanche.php:35 ../../view/theme/redbasic/php/config.php:62
-#: ../../view/theme/apw/php/config.php:176
-msgid "Default"
-msgstr "Standard"
+#: ../../include/text.php:1660 ../../include/conversation.php:145
+#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:53
+msgid "status"
+msgstr "Status"
 
-#: ../../include/items.php:208 ../../mod/like.php:55 ../../mod/group.php:68
-#: ../../mod/profperm.php:19 ../../index.php:347
-msgid "Permission denied"
-msgstr "Keine Berechtigung"
+#: ../../include/text.php:1662 ../../include/conversation.php:147
+#: ../../mod/tagger.php:55
+msgid "comment"
+msgstr "Kommentar"
 
-#: ../../include/items.php:3392 ../../mod/thing.php:74 ../../mod/admin.php:150
-#: ../../mod/admin.php:732 ../../mod/admin.php:935 ../../mod/viewsrc.php:18
-#: ../../mod/home.php:63 ../../mod/filestorage.php:18 ../../mod/display.php:32
-msgid "Item not found."
-msgstr "Element nicht gefunden."
+#: ../../include/text.php:1667
+msgid "activity"
+msgstr "Aktivität"
 
-#: ../../include/items.php:3743 ../../mod/group.php:38 ../../mod/group.php:140
-msgid "Collection not found."
-msgstr "Sammlung nicht gefunden"
+#: ../../include/text.php:1929
+msgid "Design"
+msgstr "Design"
 
-#: ../../include/items.php:3758
-msgid "Collection is empty."
-msgstr "Sammlung ist leer."
+#: ../../include/text.php:1931
+msgid "Blocks"
+msgstr "Blöcke"
 
-#: ../../include/items.php:3765
-#, php-format
-msgid "Collection: %s"
-msgstr "Sammlung: %s"
+#: ../../include/text.php:1932
+msgid "Menus"
+msgstr "Menüs"
 
-#: ../../include/items.php:3776
-#, php-format
-msgid "Connection: %s"
-msgstr "Verbindung: %s"
+#: ../../include/text.php:1933
+msgid "Layouts"
+msgstr "Layouts"
 
-#: ../../include/items.php:3779
-msgid "Connection not found."
-msgstr "Die Verbindung wurde nicht gefunden."
+#: ../../include/text.php:1934
+msgid "Pages"
+msgstr "Seiten"
 
-#: ../../include/ItemObject.php:89 ../../mod/photos.php:841
+#: ../../include/ItemObject.php:89 ../../mod/photos.php:843
 msgid "Private Message"
 msgstr "Private Nachricht"
 
 #: ../../include/ItemObject.php:108 ../../include/conversation.php:632
-#: ../../mod/thing.php:230 ../../mod/connedit.php:356 ../../mod/admin.php:695
-#: ../../mod/group.php:176 ../../mod/photos.php:1019
-#: ../../mod/filestorage.php:172 ../../mod/settings.php:570
+#: ../../mod/thing.php:230 ../../mod/connedit.php:356 ../../mod/admin.php:745
+#: ../../mod/group.php:176 ../../mod/photos.php:1023
+#: ../../mod/filestorage.php:171 ../../mod/settings.php:572
 msgid "Delete"
 msgstr "Löschen"
 
@@ -2580,11 +2616,11 @@ msgstr "Nachricht überprüft"
 msgid "add tag"
 msgstr "Schlagwort hinzufügen"
 
-#: ../../include/ItemObject.php:175 ../../mod/photos.php:947
+#: ../../include/ItemObject.php:175 ../../mod/photos.php:951
 msgid "I like this (toggle)"
 msgstr "Ich mag das (Umschalter)"
 
-#: ../../include/ItemObject.php:176 ../../mod/photos.php:948
+#: ../../include/ItemObject.php:176 ../../mod/photos.php:952
 msgid "I don't like this (toggle)"
 msgstr "Ich mag das nicht (Umschalter)"
 
@@ -2627,15 +2663,15 @@ msgstr "von %s"
 msgid "last edited: %s"
 msgstr "zuletzt bearbeitet: %s"
 
-#: ../../include/ItemObject.php:221
+#: ../../include/ItemObject.php:221 ../../include/conversation.php:690
 #, php-format
 msgid "Expires: %s"
 msgstr "Verfällt: %s"
 
-#: ../../include/ItemObject.php:248 ../../include/conversation.php:706
-#: ../../include/conversation.php:1119 ../../mod/photos.php:950
+#: ../../include/ItemObject.php:248 ../../include/conversation.php:707
+#: ../../include/conversation.php:1120 ../../mod/photos.php:954
 #: ../../mod/mail.php:222 ../../mod/mail.php:336 ../../mod/editlayout.php:115
-#: ../../mod/editpost.php:107 ../../mod/editwebpage.php:153
+#: ../../mod/editpost.php:112 ../../mod/editwebpage.php:153
 #: ../../mod/editblock.php:129
 msgid "Please wait"
 msgstr "Bitte warten"
@@ -2647,8 +2683,8 @@ msgid_plural "%d comments"
 msgstr[0] "%d Kommentar"
 msgstr[1] "%d Kommentare"
 
-#: ../../include/ItemObject.php:534 ../../mod/photos.php:966
-#: ../../mod/photos.php:1053
+#: ../../include/ItemObject.php:534 ../../mod/photos.php:970
+#: ../../mod/photos.php:1057
 msgid "This is you"
 msgstr "Das bist du"
 
@@ -2656,16 +2692,17 @@ msgstr "Das bist du"
 #: ../../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:688 ../../mod/admin.php:828
-#: ../../mod/admin.php:1027 ../../mod/admin.php:1114 ../../mod/group.php:81
-#: ../../mod/photos.php:562 ../../mod/photos.php:667 ../../mod/photos.php:929
-#: ../../mod/photos.php:969 ../../mod/photos.php:1056
-#: ../../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
+#: ../../mod/admin.php:431 ../../mod/admin.php:738 ../../mod/admin.php:878
+#: ../../mod/admin.php:1077 ../../mod/admin.php:1164 ../../mod/group.php:81
+#: ../../mod/photos.php:562 ../../mod/photos.php:667 ../../mod/photos.php:933
+#: ../../mod/photos.php:973 ../../mod/photos.php:1060 ../../mod/chat.php:107
+#: ../../mod/chat.php:133 ../../mod/profiles.php:506
+#: ../../mod/filestorage.php:131 ../../mod/import.php:387
+#: ../../mod/settings.php:509 ../../mod/settings.php:621
+#: ../../mod/settings.php:649 ../../mod/settings.php:673
+#: ../../mod/settings.php:744 ../../mod/settings.php:908
+#: ../../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
@@ -2705,36 +2742,18 @@ msgstr "Link"
 msgid "Video"
 msgstr "Video"
 
-#: ../../include/ItemObject.php:546 ../../include/conversation.php:1082
-#: ../../mod/webpages.php:122 ../../mod/photos.php:970
-#: ../../mod/editlayout.php:136 ../../mod/editpost.php:127
+#: ../../include/ItemObject.php:546 ../../include/conversation.php:1083
+#: ../../mod/webpages.php:122 ../../mod/photos.php:974
+#: ../../mod/editlayout.php:136 ../../mod/editpost.php:132
 #: ../../mod/editwebpage.php:177 ../../mod/editblock.php:151
 msgid "Preview"
 msgstr "Vorschau"
 
-#: ../../include/ItemObject.php:549 ../../include/conversation.php:1146
-#: ../../mod/mail.php:228 ../../mod/mail.php:341 ../../mod/editpost.php:135
+#: ../../include/ItemObject.php:549 ../../include/conversation.php:1147
+#: ../../mod/mail.php:228 ../../mod/mail.php:341 ../../mod/editpost.php:140
 msgid "Encrypt text"
 msgstr "Text verschlüsseln"
 
-#: ../../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:363
-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/conversation.php:123
 msgid "channel"
 msgstr "Kanal"
@@ -2777,344 +2796,344 @@ msgstr "Kategorien:"
 msgid "Filed under:"
 msgstr "Gespeichert unter:"
 
-#: ../../include/conversation.php:704
+#: ../../include/conversation.php:705
 msgid "View in context"
 msgstr "Im Zusammenhang anschauen"
 
-#: ../../include/conversation.php:833
+#: ../../include/conversation.php:834
 msgid "remove"
 msgstr "lösche"
 
-#: ../../include/conversation.php:837
+#: ../../include/conversation.php:838
 msgid "Loading..."
 msgstr "Lädt ..."
 
-#: ../../include/conversation.php:838
+#: ../../include/conversation.php:839
 msgid "Delete Selected Items"
 msgstr "Lösche die ausgewählten Elemente"
 
-#: ../../include/conversation.php:929
+#: ../../include/conversation.php:930
 msgid "View Source"
 msgstr "Quelle anzeigen"
 
-#: ../../include/conversation.php:930
+#: ../../include/conversation.php:931
 msgid "Follow Thread"
 msgstr "Unterhaltung folgen"
 
-#: ../../include/conversation.php:931
+#: ../../include/conversation.php:932
 msgid "View Status"
 msgstr "Status ansehen"
 
-#: ../../include/conversation.php:933
+#: ../../include/conversation.php:934
 msgid "View Photos"
 msgstr "Fotos ansehen"
 
-#: ../../include/conversation.php:934
+#: ../../include/conversation.php:935
 msgid "Matrix Activity"
 msgstr "Matrix Aktivität"
 
-#: ../../include/conversation.php:935
+#: ../../include/conversation.php:936
 msgid "Edit Contact"
 msgstr "Kontakt bearbeiten"
 
-#: ../../include/conversation.php:936
+#: ../../include/conversation.php:937
 msgid "Send PM"
 msgstr "Sende PN"
 
-#: ../../include/conversation.php:937
+#: ../../include/conversation.php:938
 msgid "Poke"
 msgstr "Anstupsen"
 
-#: ../../include/conversation.php:999
+#: ../../include/conversation.php:1000
 #, php-format
 msgid "%s likes this."
 msgstr "%s gefällt das."
 
-#: ../../include/conversation.php:999
+#: ../../include/conversation.php:1000
 #, php-format
 msgid "%s doesn't like this."
 msgstr "%s gefällt das nicht."
 
-#: ../../include/conversation.php:1003
+#: ../../include/conversation.php:1004
 #, 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
+#: ../../include/conversation.php:1006
 #, 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
+#: ../../include/conversation.php:1012
 msgid "and"
 msgstr "und"
 
-#: ../../include/conversation.php:1014
+#: ../../include/conversation.php:1015
 #, php-format
 msgid ", and %d other people"
 msgid_plural ", and %d other people"
 msgstr[0] ""
 msgstr[1] ", und %d andere"
 
-#: ../../include/conversation.php:1015
+#: ../../include/conversation.php:1016
 #, php-format
 msgid "%s like this."
 msgstr "%s gefällt das."
 
-#: ../../include/conversation.php:1015
+#: ../../include/conversation.php:1016
 #, php-format
 msgid "%s don't like this."
 msgstr "%s gefällt das nicht."
 
-#: ../../include/conversation.php:1065
+#: ../../include/conversation.php:1066
 msgid "Visible to <strong>everybody</strong>"
 msgstr "Sichtbar für <strong>jeden</strong>"
 
-#: ../../include/conversation.php:1066 ../../mod/mail.php:171
+#: ../../include/conversation.php:1067 ../../mod/mail.php:171
 #: ../../mod/mail.php:269
 msgid "Please enter a link URL:"
 msgstr "Gib eine URL ein:"
 
-#: ../../include/conversation.php:1067
+#: ../../include/conversation.php:1068
 msgid "Please enter a video link/URL:"
 msgstr "Gib einen Video-Link/URL ein:"
 
-#: ../../include/conversation.php:1068
+#: ../../include/conversation.php:1069
 msgid "Please enter an audio link/URL:"
 msgstr "Gib einen Audio-Link/URL ein:"
 
-#: ../../include/conversation.php:1069
+#: ../../include/conversation.php:1070
 msgid "Tag term:"
 msgstr "Schlagwort:"
 
-#: ../../include/conversation.php:1070 ../../mod/filer.php:35
+#: ../../include/conversation.php:1071 ../../mod/filer.php:35
 msgid "Save to Folder:"
 msgstr "Speichern in Ordner:"
 
-#: ../../include/conversation.php:1071
+#: ../../include/conversation.php:1072
 msgid "Where are you right now?"
 msgstr "Wo bist du jetzt grade?"
 
-#: ../../include/conversation.php:1072 ../../mod/mail.php:172
+#: ../../include/conversation.php:1073 ../../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:1096 ../../mod/photos.php:949
+#: ../../include/conversation.php:1097 ../../mod/photos.php:953
 msgid "Share"
 msgstr "Teilen"
 
-#: ../../include/conversation.php:1098 ../../mod/editwebpage.php:140
+#: ../../include/conversation.php:1099 ../../mod/editwebpage.php:140
 msgid "Page link title"
 msgstr "Seitentitel-Link"
 
-#: ../../include/conversation.php:1100 ../../mod/mail.php:219
+#: ../../include/conversation.php:1101 ../../mod/mail.php:219
 #: ../../mod/mail.php:332 ../../mod/editlayout.php:107
-#: ../../mod/editpost.php:99 ../../mod/editwebpage.php:145
+#: ../../mod/editpost.php:104 ../../mod/editwebpage.php:145
 #: ../../mod/editblock.php:121
 msgid "Upload photo"
 msgstr "Foto hochladen"
 
-#: ../../include/conversation.php:1101
+#: ../../include/conversation.php:1102
 msgid "upload photo"
 msgstr "Foto hochladen"
 
-#: ../../include/conversation.php:1102 ../../mod/mail.php:220
+#: ../../include/conversation.php:1103 ../../mod/mail.php:220
 #: ../../mod/mail.php:333 ../../mod/editlayout.php:108
-#: ../../mod/editpost.php:100 ../../mod/editwebpage.php:146
+#: ../../mod/editpost.php:105 ../../mod/editwebpage.php:146
 #: ../../mod/editblock.php:122
 msgid "Attach file"
 msgstr "Datei anhängen"
 
-#: ../../include/conversation.php:1103
+#: ../../include/conversation.php:1104
 msgid "attach file"
 msgstr "Datei anfügen"
 
-#: ../../include/conversation.php:1104 ../../mod/mail.php:221
+#: ../../include/conversation.php:1105 ../../mod/mail.php:221
 #: ../../mod/mail.php:334 ../../mod/editlayout.php:109
-#: ../../mod/editpost.php:101 ../../mod/editwebpage.php:147
+#: ../../mod/editpost.php:106 ../../mod/editwebpage.php:147
 #: ../../mod/editblock.php:123
 msgid "Insert web link"
 msgstr "Link einfügen"
 
-#: ../../include/conversation.php:1105
+#: ../../include/conversation.php:1106
 msgid "web link"
 msgstr "Web-Link"
 
-#: ../../include/conversation.php:1106
+#: ../../include/conversation.php:1107
 msgid "Insert video link"
 msgstr "Video-Link einfügen"
 
-#: ../../include/conversation.php:1107
+#: ../../include/conversation.php:1108
 msgid "video link"
 msgstr "Video-Link"
 
-#: ../../include/conversation.php:1108
+#: ../../include/conversation.php:1109
 msgid "Insert audio link"
 msgstr "Audio-Link einfügen"
 
-#: ../../include/conversation.php:1109
+#: ../../include/conversation.php:1110
 msgid "audio link"
 msgstr "Audio-Link"
 
-#: ../../include/conversation.php:1110 ../../mod/editlayout.php:113
-#: ../../mod/editpost.php:105 ../../mod/editwebpage.php:151
+#: ../../include/conversation.php:1111 ../../mod/editlayout.php:113
+#: ../../mod/editpost.php:110 ../../mod/editwebpage.php:151
 #: ../../mod/editblock.php:127
 msgid "Set your location"
 msgstr "Standort"
 
-#: ../../include/conversation.php:1111
+#: ../../include/conversation.php:1112
 msgid "set location"
 msgstr "Standort"
 
-#: ../../include/conversation.php:1112 ../../mod/editlayout.php:114
-#: ../../mod/editpost.php:106 ../../mod/editwebpage.php:152
+#: ../../include/conversation.php:1113 ../../mod/editlayout.php:114
+#: ../../mod/editpost.php:111 ../../mod/editwebpage.php:152
 #: ../../mod/editblock.php:128
 msgid "Clear browser location"
 msgstr "Browser-Standort löschen"
 
-#: ../../include/conversation.php:1113
+#: ../../include/conversation.php:1114
 msgid "clear location"
 msgstr "Standort löschen"
 
-#: ../../include/conversation.php:1115 ../../mod/editlayout.php:127
-#: ../../mod/editpost.php:119 ../../mod/editwebpage.php:169
+#: ../../include/conversation.php:1116 ../../mod/editlayout.php:127
+#: ../../mod/editpost.php:124 ../../mod/editwebpage.php:169
 #: ../../mod/editblock.php:142
 msgid "Set title"
 msgstr "Titel"
 
-#: ../../include/conversation.php:1118 ../../mod/editlayout.php:130
-#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:171
+#: ../../include/conversation.php:1119 ../../mod/editlayout.php:130
+#: ../../mod/editpost.php:126 ../../mod/editwebpage.php:171
 #: ../../mod/editblock.php:145
 msgid "Categories (comma-separated list)"
 msgstr "Kategorien (Kommagetrennte Liste)"
 
-#: ../../include/conversation.php:1120 ../../mod/editlayout.php:116
-#: ../../mod/editpost.php:108 ../../mod/editwebpage.php:154
+#: ../../include/conversation.php:1121 ../../mod/editlayout.php:116
+#: ../../mod/editpost.php:113 ../../mod/editwebpage.php:154
 #: ../../mod/editblock.php:130
 msgid "Permission settings"
 msgstr "Berechtigungs-Einstellungen"
 
-#: ../../include/conversation.php:1121
+#: ../../include/conversation.php:1122
 msgid "permissions"
 msgstr "Berechtigungen"
 
-#: ../../include/conversation.php:1129 ../../mod/editlayout.php:124
-#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:164
+#: ../../include/conversation.php:1130 ../../mod/editlayout.php:124
+#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:164
 #: ../../mod/editblock.php:139
 msgid "Public post"
 msgstr "Öffentlicher Beitrag"
 
-#: ../../include/conversation.php:1131 ../../mod/editlayout.php:131
-#: ../../mod/editpost.php:122 ../../mod/editwebpage.php:172
+#: ../../include/conversation.php:1132 ../../mod/editlayout.php:131
+#: ../../mod/editpost.php:127 ../../mod/editwebpage.php:172
 #: ../../mod/editblock.php:146
 msgid "Example: bob@example.com, mary@example.com"
 msgstr "Beispiel: bob@example.com, mary@example.com"
 
-#: ../../include/conversation.php:1144 ../../mod/mail.php:226
+#: ../../include/conversation.php:1145 ../../mod/mail.php:226
 #: ../../mod/mail.php:339 ../../mod/editlayout.php:141
-#: ../../mod/editpost.php:133 ../../mod/editwebpage.php:182
+#: ../../mod/editpost.php:138 ../../mod/editwebpage.php:182
 #: ../../mod/editblock.php:156
 msgid "Set expiration date"
 msgstr "Verfallsdatum"
 
-#: ../../include/conversation.php:1148 ../../mod/editpost.php:136
+#: ../../include/conversation.php:1149 ../../mod/editpost.php:142
 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
+#: ../../include/conversation.php:1150 ../../mod/tagrm.php:11
+#: ../../mod/tagrm.php:94 ../../mod/settings.php:510
+#: ../../mod/settings.php:536 ../../mod/editpost.php:143
 #: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117
 msgid "Cancel"
 msgstr "Abbrechen"
 
-#: ../../include/conversation.php:1379
+#: ../../include/conversation.php:1381
 msgid "Commented Order"
 msgstr "Neueste Kommentare"
 
-#: ../../include/conversation.php:1382
+#: ../../include/conversation.php:1384
 msgid "Sort by Comment Date"
 msgstr "Nach Kommentardatum sortiert"
 
-#: ../../include/conversation.php:1385
+#: ../../include/conversation.php:1387
 msgid "Posted Order"
 msgstr "Neueste Beiträge"
 
-#: ../../include/conversation.php:1388
+#: ../../include/conversation.php:1390
 msgid "Sort by Post Date"
 msgstr "Nach Beitragsdatum sortiert"
 
-#: ../../include/conversation.php:1392
+#: ../../include/conversation.php:1394
 msgid "Personal"
 msgstr "Persönlich"
 
-#: ../../include/conversation.php:1395
+#: ../../include/conversation.php:1397
 msgid "Posts that mention or involve you"
 msgstr "Beiträge mit Beteiligung deinerseits"
 
-#: ../../include/conversation.php:1398 ../../mod/menu.php:57
+#: ../../include/conversation.php:1400 ../../mod/menu.php:57
 #: ../../mod/connections.php:209
 msgid "New"
 msgstr "Neu"
 
-#: ../../include/conversation.php:1401
+#: ../../include/conversation.php:1403
 msgid "Activity Stream - by date"
 msgstr "Activity Stream - nach Datum sortiert"
 
-#: ../../include/conversation.php:1408
+#: ../../include/conversation.php:1410
 msgid "Starred"
 msgstr "Markiert"
 
-#: ../../include/conversation.php:1411
+#: ../../include/conversation.php:1413
 msgid "Favourite Posts"
 msgstr "Beiträge mit Sternchen"
 
-#: ../../include/conversation.php:1418
+#: ../../include/conversation.php:1420
 msgid "Spam"
 msgstr "Spam"
 
-#: ../../include/conversation.php:1421
+#: ../../include/conversation.php:1423
 msgid "Posts flagged as SPAM"
 msgstr "Nachrichten die als SPAM markiert wurden"
 
-#: ../../include/conversation.php:1452
+#: ../../include/conversation.php:1454
 msgid "Channel"
 msgstr "Kanal"
 
-#: ../../include/conversation.php:1455
+#: ../../include/conversation.php:1457
 msgid "Status Messages and Posts"
 msgstr "Statusnachrichten und Beiträge"
 
-#: ../../include/conversation.php:1464
+#: ../../include/conversation.php:1466
 msgid "About"
 msgstr "Über"
 
-#: ../../include/conversation.php:1467
+#: ../../include/conversation.php:1469
 msgid "Profile Details"
 msgstr "Profil-Details"
 
-#: ../../include/conversation.php:1482 ../../mod/fbrowser.php:114
+#: ../../include/conversation.php:1484 ../../mod/fbrowser.php:114
 msgid "Files"
 msgstr "Dateien"
 
-#: ../../include/conversation.php:1485
+#: ../../include/conversation.php:1487
 msgid "Files and Storage"
 msgstr "Dateien und Speicher"
 
-#: ../../include/conversation.php:1494
+#: ../../include/conversation.php:1496
 msgid "Events and Calendar"
 msgstr "Veranstaltungen und Kalender"
 
-#: ../../include/conversation.php:1501
+#: ../../include/conversation.php:1503
 msgid "Webpages"
 msgstr "Webseiten"
 
-#: ../../include/conversation.php:1504
+#: ../../include/conversation.php:1506
 msgid "Manage Webpages"
 msgstr "Webseiten verwalten"
 
@@ -3342,7 +3361,7 @@ msgid ""
 "http://getzot.com"
 msgstr "Für weitere Informationen über das Red Matrix Projekt und warum es das Potential hat das Internet wie wir es kennen grundlegend zu verändern schau dir bitte http://getzot.com an"
 
-#: ../../mod/cloud.php:88
+#: ../../mod/cloud.php:112
 msgid "Red Matrix - Guests: Username: {your email address}, Password: +++"
 msgstr "Red Matrix Gäste: Nutzername: {deine Email Adresse}; Passwort: +++"
 
@@ -3442,12 +3461,12 @@ msgid "View recent posts and comments"
 msgstr "Betrachte die neuesten Beiträge und Kommentare"
 
 #: ../../mod/connedit.php:330 ../../mod/connedit.php:472
-#: ../../mod/admin.php:697
+#: ../../mod/admin.php:747
 msgid "Unblock"
 msgstr "Freigeben"
 
 #: ../../mod/connedit.php:330 ../../mod/connedit.php:472
-#: ../../mod/admin.php:696
+#: ../../mod/admin.php:746
 msgid "Block"
 msgstr "Blockieren"
 
@@ -3693,13 +3712,13 @@ msgid ""
 " and/or create new posts for you?"
 msgstr "Möchtest du der Anwendung erlauben, deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für dich zu erstellen?"
 
-#: ../../mod/api.php:105 ../../mod/profiles.php:495 ../../mod/settings.php:865
-#: ../../mod/settings.php:870
+#: ../../mod/api.php:105 ../../mod/profiles.php:483 ../../mod/settings.php:870
+#: ../../mod/settings.php:875
 msgid "Yes"
 msgstr "Ja"
 
-#: ../../mod/api.php:106 ../../mod/profiles.php:496 ../../mod/settings.php:865
-#: ../../mod/settings.php:870
+#: ../../mod/api.php:106 ../../mod/profiles.php:484 ../../mod/settings.php:870
+#: ../../mod/settings.php:875
 msgid "No"
 msgstr "Nein"
 
@@ -3721,7 +3740,7 @@ msgid "Channel not found."
 msgstr "Kanal nicht gefunden."
 
 #: ../../mod/page.php:83 ../../mod/help.php:71 ../../mod/display.php:100
-#: ../../index.php:227
+#: ../../index.php:226
 msgid "Page not found."
 msgstr "Seite nicht gefunden."
 
@@ -4074,7 +4093,7 @@ msgid ""
 "poller."
 msgstr "WICHTIG: Du musst die geplanten Aufgaben für den Poller [manuell] einrichten."
 
-#: ../../mod/rpost.php:84 ../../mod/editpost.php:42
+#: ../../mod/rpost.php:86 ../../mod/editpost.php:42
 msgid "Edit post"
 msgstr "Bearbeite Beitrag"
 
@@ -4274,521 +4293,531 @@ msgstr "Konnte die Quelle nicht löschen."
 msgid "Theme settings updated."
 msgstr "Theme-Einstellungen aktualisiert."
 
-#: ../../mod/admin.php:87 ../../mod/admin.php:419
+#: ../../mod/admin.php:88 ../../mod/admin.php:430
 msgid "Site"
 msgstr "Seite"
 
-#: ../../mod/admin.php:88 ../../mod/admin.php:687 ../../mod/admin.php:699
+#: ../../mod/admin.php:89 ../../mod/admin.php:737 ../../mod/admin.php:749
 msgid "Users"
 msgstr "Benutzer"
 
-#: ../../mod/admin.php:89 ../../mod/admin.php:785 ../../mod/admin.php:827
+#: ../../mod/admin.php:90 ../../mod/admin.php:835 ../../mod/admin.php:877
 msgid "Plugins"
 msgstr "Plug-Ins"
 
-#: ../../mod/admin.php:90 ../../mod/admin.php:990 ../../mod/admin.php:1026
+#: ../../mod/admin.php:91 ../../mod/admin.php:1040 ../../mod/admin.php:1076
 msgid "Themes"
 msgstr "Themes"
 
-#: ../../mod/admin.php:91 ../../mod/admin.php:479
+#: ../../mod/admin.php:92 ../../mod/admin.php:529
 msgid "Server"
 msgstr "Server"
 
-#: ../../mod/admin.php:92
+#: ../../mod/admin.php:93
 msgid "DB updates"
 msgstr "DB-Aktualisierungen"
 
-#: ../../mod/admin.php:106 ../../mod/admin.php:113 ../../mod/admin.php:1113
+#: ../../mod/admin.php:107 ../../mod/admin.php:114 ../../mod/admin.php:1163
 msgid "Logs"
 msgstr "Protokolle"
 
-#: ../../mod/admin.php:112
+#: ../../mod/admin.php:113
 msgid "Plugin Features"
 msgstr "Plug-In Funktionen"
 
-#: ../../mod/admin.php:114
+#: ../../mod/admin.php:115
 msgid "User registrations waiting for confirmation"
 msgstr "Nutzer Anmeldungen die auf Bestätigung warten"
 
-#: ../../mod/admin.php:188
+#: ../../mod/admin.php:189
 msgid "Message queues"
 msgstr "Nachrichten Warteschlange"
 
-#: ../../mod/admin.php:193 ../../mod/admin.php:418 ../../mod/admin.php:478
-#: ../../mod/admin.php:686 ../../mod/admin.php:784 ../../mod/admin.php:826
-#: ../../mod/admin.php:989 ../../mod/admin.php:1025 ../../mod/admin.php:1112
+#: ../../mod/admin.php:194 ../../mod/admin.php:429 ../../mod/admin.php:528
+#: ../../mod/admin.php:736 ../../mod/admin.php:834 ../../mod/admin.php:876
+#: ../../mod/admin.php:1039 ../../mod/admin.php:1075 ../../mod/admin.php:1162
 msgid "Administration"
 msgstr "Administration"
 
-#: ../../mod/admin.php:194
+#: ../../mod/admin.php:195
 msgid "Summary"
 msgstr "Zusammenfassung"
 
-#: ../../mod/admin.php:196
+#: ../../mod/admin.php:197
 msgid "Registered users"
 msgstr "Registrierte Benutzer"
 
-#: ../../mod/admin.php:198 ../../mod/admin.php:482
+#: ../../mod/admin.php:199 ../../mod/admin.php:532
 msgid "Pending registrations"
 msgstr "Ausstehende Registrierungen"
 
-#: ../../mod/admin.php:199
+#: ../../mod/admin.php:200
 msgid "Version"
 msgstr "Version"
 
-#: ../../mod/admin.php:201 ../../mod/admin.php:483
+#: ../../mod/admin.php:202 ../../mod/admin.php:533
 msgid "Active plugins"
 msgstr "Aktive Plug-Ins"
 
-#: ../../mod/admin.php:342
+#: ../../mod/admin.php:350
 msgid "Site settings updated."
 msgstr "Site-Einstellungen aktualisiert."
 
-#: ../../mod/admin.php:371 ../../mod/settings.php:700
+#: ../../mod/admin.php:379 ../../mod/settings.php:702
 msgid "No special theme for mobile devices"
 msgstr "Keine spezielle Theme für mobile Geräte"
 
-#: ../../mod/admin.php:373
+#: ../../mod/admin.php:381
 msgid "No special theme for accessibility"
 msgstr "Kein spezielles Accessibility Theme vorhanden"
 
-#: ../../mod/admin.php:398
+#: ../../mod/admin.php:409
 msgid "Closed"
 msgstr "Geschlossen"
 
-#: ../../mod/admin.php:399
+#: ../../mod/admin.php:410
 msgid "Requires approval"
 msgstr "Genehmigung erforderlich"
 
-#: ../../mod/admin.php:400
+#: ../../mod/admin.php:411
 msgid "Open"
 msgstr "Offen"
 
-#: ../../mod/admin.php:405
+#: ../../mod/admin.php:416
 msgid "Private"
 msgstr "Privat"
 
-#: ../../mod/admin.php:406
+#: ../../mod/admin.php:417
 msgid "Paid Access"
 msgstr "Kostenpflichtiger Zugang"
 
-#: ../../mod/admin.php:407
+#: ../../mod/admin.php:418
 msgid "Free Access"
 msgstr "Kostenloser Zugang"
 
-#: ../../mod/admin.php:408
+#: ../../mod/admin.php:419
 msgid "Tiered Access"
 msgstr "Abgestufter Zugang"
 
-#: ../../mod/admin.php:421 ../../mod/register.php:189
+#: ../../mod/admin.php:432 ../../mod/register.php:189
 msgid "Registration"
 msgstr "Registrierung"
 
-#: ../../mod/admin.php:422
+#: ../../mod/admin.php:433
 msgid "File upload"
 msgstr "Dateiupload"
 
-#: ../../mod/admin.php:423
+#: ../../mod/admin.php:434
 msgid "Policies"
 msgstr "Richtlinien"
 
-#: ../../mod/admin.php:424
+#: ../../mod/admin.php:435
 msgid "Advanced"
 msgstr "Fortgeschritten"
 
-#: ../../mod/admin.php:428
+#: ../../mod/admin.php:439
 msgid "Site name"
 msgstr "Seitenname"
 
-#: ../../mod/admin.php:429
+#: ../../mod/admin.php:440
 msgid "Banner/Logo"
 msgstr "Banner/Logo"
 
-#: ../../mod/admin.php:430
+#: ../../mod/admin.php:441
+msgid "Administrator Information"
+msgstr "Administrator Informationen"
+
+#: ../../mod/admin.php:441
+msgid ""
+"Contact information for site administrators.  Displayed on siteinfo page.  "
+"BBCode can be used here"
+msgstr "Kontaktinformationen für Administratoren der Seite. Wird auf der siteinfo Seite angezeigt. BBCode kann verwendet werden."
+
+#: ../../mod/admin.php:442
 msgid "System language"
 msgstr "System-Sprache"
 
-#: ../../mod/admin.php:431
+#: ../../mod/admin.php:443
 msgid "System theme"
 msgstr "System-Theme"
 
-#: ../../mod/admin.php:431
+#: ../../mod/admin.php:443
 msgid ""
 "Default system theme - may be over-ridden by user profiles - <a href='#' "
 "id='cnftheme'>change theme settings</a>"
 msgstr "Standard System-Theme - kann durch Nutzerprofile überschieben werden - <a href='#' id='cnftheme'>Theme.Einstellungen ändern</a>"
 
-#: ../../mod/admin.php:432
+#: ../../mod/admin.php:444
 msgid "Mobile system theme"
 msgstr "Mobile System-Theme:"
 
-#: ../../mod/admin.php:432
+#: ../../mod/admin.php:444
 msgid "Theme for mobile devices"
 msgstr "Theme für mobile Geräte"
 
-#: ../../mod/admin.php:433
+#: ../../mod/admin.php:445
 msgid "Accessibility system theme"
 msgstr "Accessibility System-Theme"
 
-#: ../../mod/admin.php:433
+#: ../../mod/admin.php:445
 msgid "Accessibility theme"
 msgstr "Accessibility Theme"
 
-#: ../../mod/admin.php:434
+#: ../../mod/admin.php:446
 msgid "Channel to use for this website's static pages"
 msgstr "Kanal für die statischen Seiten dieser Webseite verwenden"
 
-#: ../../mod/admin.php:434
+#: ../../mod/admin.php:446
 msgid "Site Channel"
 msgstr "Seiten Kanal"
 
-#: ../../mod/admin.php:436
+#: ../../mod/admin.php:448
 msgid "Maximum image size"
 msgstr "Maximale Bildgröße"
 
-#: ../../mod/admin.php:436
+#: ../../mod/admin.php:448
 msgid ""
 "Maximum size in bytes of uploaded images. Default is 0, which means no "
 "limits."
 msgstr "Maximale Größe in Bytes von hochgeladenen Bildern. Standard ist 0, was keine Einschränkung bedeutet."
 
-#: ../../mod/admin.php:437
+#: ../../mod/admin.php:449
 msgid "Register policy"
 msgstr "Registrierungsmethode"
 
-#: ../../mod/admin.php:438
+#: ../../mod/admin.php:450
 msgid "Access policy"
 msgstr "Zugangsrichtlinien"
 
-#: ../../mod/admin.php:439
+#: ../../mod/admin.php:451
 msgid "Register text"
 msgstr "Registrierungstext"
 
-#: ../../mod/admin.php:439
+#: ../../mod/admin.php:451
 msgid "Will be displayed prominently on the registration page."
 msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
 
-#: ../../mod/admin.php:440
+#: ../../mod/admin.php:452
 msgid "Accounts abandoned after x days"
 msgstr "Accounts gelten nach X Tagen als unbenutzt"
 
-#: ../../mod/admin.php:440
+#: ../../mod/admin.php:452
 msgid ""
 "Will not waste system resources polling external sites for abandonded "
 "accounts. Enter 0 for no time limit."
 msgstr "Verschwende keine Systemressourchen auf das Pollen von externen Seiten wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit."
 
-#: ../../mod/admin.php:441
+#: ../../mod/admin.php:453
 msgid "Allowed friend domains"
 msgstr "Erlaubte Domains für Kontakte"
 
-#: ../../mod/admin.php:441
+#: ../../mod/admin.php:453
 msgid ""
 "Comma separated list of domains which are allowed to establish friendships "
 "with this site. Wildcards are accepted. Empty to allow any domains"
 msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
 
-#: ../../mod/admin.php:442
+#: ../../mod/admin.php:454
 msgid "Allowed email domains"
 msgstr "Erlaubte Domains für E-Mails"
 
-#: ../../mod/admin.php:442
+#: ../../mod/admin.php:454
 msgid ""
 "Comma separated list of domains which are allowed in email addresses for "
 "registrations to this site. Wildcards are accepted. Empty to allow any "
 "domains"
 msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
 
-#: ../../mod/admin.php:443
+#: ../../mod/admin.php:455
 msgid "Block public"
 msgstr "Öffentlichen Zugriff blockieren"
 
-#: ../../mod/admin.php:443
+#: ../../mod/admin.php:455
 msgid ""
 "Check to block public access to all otherwise public personal pages on this "
 "site unless you are currently logged in."
 msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist."
 
-#: ../../mod/admin.php:444
+#: ../../mod/admin.php:456
 msgid "Force publish"
 msgstr "Veröffentlichung erzwingen"
 
-#: ../../mod/admin.php:444
+#: ../../mod/admin.php:456
 msgid ""
 "Check to force all profiles on this site to be listed in the site directory."
 msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen."
 
-#: ../../mod/admin.php:445
+#: ../../mod/admin.php:457
 msgid "No login on Homepage"
 msgstr "Kein Login auf der Homepage"
 
-#: ../../mod/admin.php:445
+#: ../../mod/admin.php:457
 msgid ""
 "Check to hide the login form from your sites homepage when visitors arrive "
 "who are not logged in (e.g. when you put the content of the homepage in via "
 "the site channel)."
 msgstr "Wählen um das Login Formular auf der Startseite der Seite zu verbergen, z.B. weil es das Layout der Homepage des Seiten-Kanals stört."
 
-#: ../../mod/admin.php:447
+#: ../../mod/admin.php:459
 msgid "Proxy user"
 msgstr "Proxy Benutzer"
 
-#: ../../mod/admin.php:448
+#: ../../mod/admin.php:460
 msgid "Proxy URL"
 msgstr "Proxy URL"
 
-#: ../../mod/admin.php:449
+#: ../../mod/admin.php:461
 msgid "Network timeout"
 msgstr "Netzwerk-Timeout"
 
-#: ../../mod/admin.php:449
+#: ../../mod/admin.php:461
 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)."
 
-#: ../../mod/admin.php:450
+#: ../../mod/admin.php:462
 msgid "Delivery interval"
 msgstr "Auslieferung Intervall"
 
-#: ../../mod/admin.php:450
+#: ../../mod/admin.php:462
 msgid ""
 "Delay background delivery processes by this many seconds to reduce system "
 "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
 "for large dedicated servers."
 msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."
 
-#: ../../mod/admin.php:451
+#: ../../mod/admin.php:463
 msgid "Poll interval"
 msgstr "Abfrageintervall"
 
-#: ../../mod/admin.php:451
+#: ../../mod/admin.php:463
 msgid ""
 "Delay background polling processes by this many seconds to reduce system "
 "load. If 0, use delivery interval."
 msgstr "Verzögere Hintergrundprozesse, um diese Anzahl an Sekunden um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet."
 
-#: ../../mod/admin.php:452
+#: ../../mod/admin.php:464
 msgid "Maximum Load Average"
 msgstr "Maximum Load Average"
 
-#: ../../mod/admin.php:452
+#: ../../mod/admin.php:464
 msgid ""
 "Maximum system load before delivery and poll processes are deferred - "
 "default 50."
 msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
 
-#: ../../mod/admin.php:470
+#: ../../mod/admin.php:520
 msgid "No server found"
 msgstr "Kein Server gefunden"
 
-#: ../../mod/admin.php:477 ../../mod/admin.php:700
+#: ../../mod/admin.php:527 ../../mod/admin.php:750
 msgid "ID"
 msgstr "ID"
 
-#: ../../mod/admin.php:477
+#: ../../mod/admin.php:527
 msgid "for channel"
 msgstr "für Kanal"
 
-#: ../../mod/admin.php:477
+#: ../../mod/admin.php:527
 msgid "on server"
 msgstr "auf Server"
 
-#: ../../mod/admin.php:477
+#: ../../mod/admin.php:527
 msgid "Status"
 msgstr "Status"
 
-#: ../../mod/admin.php:498
+#: ../../mod/admin.php:548
 msgid "Update has been marked successful"
 msgstr "Update wurde als erfolgreich markiert"
 
-#: ../../mod/admin.php:508
+#: ../../mod/admin.php:558
 #, php-format
 msgid "Executing %s failed. Check system logs."
 msgstr "Aufrufen von %s fehlgeschlagen. Überprüfe die Systemlogs."
 
-#: ../../mod/admin.php:511
+#: ../../mod/admin.php:561
 #, php-format
 msgid "Update %s was successfully applied."
 msgstr "Update %s wurde erfolgreich angewandt."
 
-#: ../../mod/admin.php:515
+#: ../../mod/admin.php:565
 #, php-format
 msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr "Update %s liefert keinen Rückgabewert. Unbekannt ob es erfolgreich war."
 
-#: ../../mod/admin.php:518
+#: ../../mod/admin.php:568
 #, php-format
 msgid "Update function %s could not be found."
 msgstr "Update Funktion %s konnte nicht gefunden werden."
 
-#: ../../mod/admin.php:533
+#: ../../mod/admin.php:583
 msgid "No failed updates."
 msgstr "Keine fehlgeschlagenen Aktualisierungen."
 
-#: ../../mod/admin.php:537
+#: ../../mod/admin.php:587
 msgid "Failed Updates"
 msgstr "Fehlgeschlagene Aktualisierungen"
 
-#: ../../mod/admin.php:539
+#: ../../mod/admin.php:589
 msgid "Mark success (if update was manually applied)"
 msgstr "Als erfolgreich markieren (wenn das Update manuell angewandt wurde)"
 
-#: ../../mod/admin.php:540
+#: ../../mod/admin.php:590
 msgid "Attempt to execute this update step automatically"
 msgstr "Versuche diesen Updateschritt automatisch anzuwenden"
 
-#: ../../mod/admin.php:566
+#: ../../mod/admin.php:616
 #, php-format
 msgid "%s user blocked/unblocked"
 msgid_plural "%s users blocked/unblocked"
 msgstr[0] "%s Nutzer blockiert/freigegeben"
 msgstr[1] "%s Nutzer blockiert/freigegeben"
 
-#: ../../mod/admin.php:573
+#: ../../mod/admin.php:623
 #, php-format
 msgid "%s user deleted"
 msgid_plural "%s users deleted"
 msgstr[0] "%s Nutzer gelöscht"
 msgstr[1] "%s Nutzer gelöscht"
 
-#: ../../mod/admin.php:604
+#: ../../mod/admin.php:654
 msgid "Account not found"
 msgstr "Konto nicht gefunden"
 
-#: ../../mod/admin.php:615
+#: ../../mod/admin.php:665
 #, php-format
 msgid "User '%s' deleted"
 msgstr "Benutzer '%s' gelöscht"
 
-#: ../../mod/admin.php:624
+#: ../../mod/admin.php:674
 #, php-format
 msgid "User '%s' unblocked"
 msgstr "Benutzer '%s' freigegeben"
 
-#: ../../mod/admin.php:624
+#: ../../mod/admin.php:674
 #, php-format
 msgid "User '%s' blocked"
 msgstr "Benutzer '%s' blockiert"
 
-#: ../../mod/admin.php:689
+#: ../../mod/admin.php:739
 msgid "select all"
 msgstr "Alle auswählen"
 
-#: ../../mod/admin.php:690
+#: ../../mod/admin.php:740
 msgid "User registrations waiting for confirm"
 msgstr "Neuanmeldungen, die auf deine Bestätigung warten"
 
-#: ../../mod/admin.php:691
+#: ../../mod/admin.php:741
 msgid "Request date"
 msgstr "Antragsdatum"
 
-#: ../../mod/admin.php:692
+#: ../../mod/admin.php:742
 msgid "No registrations."
 msgstr "Keine Registrierungen."
 
-#: ../../mod/admin.php:693
+#: ../../mod/admin.php:743
 msgid "Approve"
 msgstr "Genehmigen"
 
-#: ../../mod/admin.php:694
+#: ../../mod/admin.php:744
 msgid "Deny"
 msgstr "Verweigern"
 
-#: ../../mod/admin.php:700
+#: ../../mod/admin.php:750
 msgid "Register date"
 msgstr "Registrierungs-Datum"
 
-#: ../../mod/admin.php:700
+#: ../../mod/admin.php:750
 msgid "Last login"
 msgstr "Letzte Anmeldung"
 
-#: ../../mod/admin.php:700
+#: ../../mod/admin.php:750
 msgid "Expires"
 msgstr "Verfällt"
 
-#: ../../mod/admin.php:700
+#: ../../mod/admin.php:750
 msgid "Service Class"
 msgstr "Service-Klasse"
 
-#: ../../mod/admin.php:702
+#: ../../mod/admin.php:752
 msgid ""
 "Selected users will be deleted!\\n\\nEverything these users had posted on "
 "this site will be permanently deleted!\\n\\nAre you sure?"
 msgstr "Markierte Nutzer werden gelöscht\\n\\nAlles was diese Nutzer auf dieser Seite veröffentlicht haben wird permanent gelöscht\\n\\nBist du sicher?"
 
-#: ../../mod/admin.php:703
+#: ../../mod/admin.php:753
 msgid ""
 "The user {0} will be deleted!\\n\\nEverything this user has posted on this "
 "site will be permanently deleted!\\n\\nAre you sure?"
 msgstr "Der Nutzer {0} wird gelöscht\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat wird permanent gelöscht werden\\n\\nBist du sicher?"
 
-#: ../../mod/admin.php:744
+#: ../../mod/admin.php:794
 #, php-format
 msgid "Plugin %s disabled."
 msgstr "Plug-In %s deaktiviert."
 
-#: ../../mod/admin.php:748
+#: ../../mod/admin.php:798
 #, php-format
 msgid "Plugin %s enabled."
 msgstr "Plug-In %s aktiviert."
 
-#: ../../mod/admin.php:758 ../../mod/admin.php:960
+#: ../../mod/admin.php:808 ../../mod/admin.php:1010
 msgid "Disable"
 msgstr "Deaktivieren"
 
-#: ../../mod/admin.php:760 ../../mod/admin.php:962
+#: ../../mod/admin.php:810 ../../mod/admin.php:1012
 msgid "Enable"
 msgstr "Aktivieren"
 
-#: ../../mod/admin.php:786 ../../mod/admin.php:991
+#: ../../mod/admin.php:836 ../../mod/admin.php:1041
 msgid "Toggle"
 msgstr "Umschalten"
 
-#: ../../mod/admin.php:794 ../../mod/admin.php:1001
+#: ../../mod/admin.php:844 ../../mod/admin.php:1051
 msgid "Author: "
 msgstr "Autor: "
 
-#: ../../mod/admin.php:795 ../../mod/admin.php:1002
+#: ../../mod/admin.php:845 ../../mod/admin.php:1052
 msgid "Maintainer: "
 msgstr "Betreuer:"
 
-#: ../../mod/admin.php:924
+#: ../../mod/admin.php:974
 msgid "No themes found."
 msgstr "Keine Theme gefunden."
 
-#: ../../mod/admin.php:983
+#: ../../mod/admin.php:1033
 msgid "Screenshot"
 msgstr "Bildschirmfoto"
 
-#: ../../mod/admin.php:1031
+#: ../../mod/admin.php:1081
 msgid "[Experimental]"
 msgstr "[Experimentell]"
 
-#: ../../mod/admin.php:1032
+#: ../../mod/admin.php:1082
 msgid "[Unsupported]"
 msgstr "[Nicht unterstützt]"
 
-#: ../../mod/admin.php:1059
+#: ../../mod/admin.php:1109
 msgid "Log settings updated."
 msgstr "Protokoll-Einstellungen aktualisiert."
 
-#: ../../mod/admin.php:1115
+#: ../../mod/admin.php:1165
 msgid "Clear"
 msgstr "Leeren"
 
-#: ../../mod/admin.php:1121
+#: ../../mod/admin.php:1171
 msgid "Debugging"
 msgstr "Debugging"
 
-#: ../../mod/admin.php:1122
+#: ../../mod/admin.php:1172
 msgid "Log file"
 msgstr "Protokolldatei"
 
-#: ../../mod/admin.php:1122
+#: ../../mod/admin.php:1172
 msgid ""
 "Must be writable by web server. Relative to your Red top-level directory."
 msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Red Stammverzeichnis."
 
-#: ../../mod/admin.php:1123
+#: ../../mod/admin.php:1173
 msgid "Log level"
 msgstr "Protokollstufe"
 
@@ -4813,7 +4842,7 @@ 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:177
+#: ../../mod/dirprofile.php:181
 msgid "Not found."
 msgstr "Nicht gefunden."
 
@@ -4861,7 +4890,7 @@ msgstr "Neues Menü-Bestandteil"
 msgid "Menu Item Permissions"
 msgstr "Menü-Element Zugriffsrechte"
 
-#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:930
+#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:937
 msgid "(click to open/close)"
 msgstr "(zum öffnen/schließen anklicken)"
 
@@ -4973,7 +5002,7 @@ msgstr "Album nicht gefunden."
 msgid "Delete Album"
 msgstr "Album löschen"
 
-#: ../../mod/photos.php:159 ../../mod/photos.php:930
+#: ../../mod/photos.php:159 ../../mod/photos.php:934
 msgid "Delete Photo"
 msgstr "Foto löschen"
 
@@ -5011,13 +5040,13 @@ msgstr "oder bestehenden Album Namen:"
 msgid "Do not show a status post for this upload"
 msgstr "Keine Statusnachricht für diesen Upload senden"
 
-#: ../../mod/photos.php:603 ../../mod/photos.php:925
-#: ../../mod/filestorage.php:125
+#: ../../mod/photos.php:603 ../../mod/photos.php:929
+#: ../../mod/filestorage.php:124
 msgid "Permissions"
 msgstr "Berechtigungen"
 
-#: ../../mod/photos.php:652 ../../mod/photos.php:674 ../../mod/photos.php:1101
-#: ../../mod/photos.php:1116
+#: ../../mod/photos.php:652 ../../mod/photos.php:674 ../../mod/photos.php:1105
+#: ../../mod/photos.php:1120
 msgid "Contact Photos"
 msgstr "Kontakt Bilder"
 
@@ -5033,7 +5062,7 @@ msgstr "Zeige neueste zuerst"
 msgid "Show Oldest First"
 msgstr "Zeige älteste zuerst"
 
-#: ../../mod/photos.php:729 ../../mod/photos.php:1148
+#: ../../mod/photos.php:729 ../../mod/photos.php:1152
 msgid "View Photo"
 msgstr "Foto ansehen"
 
@@ -5045,51 +5074,63 @@ msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt w
 msgid "Photo not available"
 msgstr "Foto nicht verfügbar"
 
-#: ../../mod/photos.php:835
+#: ../../mod/photos.php:837
 msgid "Use as profile photo"
 msgstr "Als Profilfoto verwenden"
 
-#: ../../mod/photos.php:859
+#: ../../mod/photos.php:861
 msgid "View Full Size"
 msgstr "In voller Größe anzeigen"
 
-#: ../../mod/photos.php:913
+#: ../../mod/photos.php:917
 msgid "Edit photo"
 msgstr "Foto bearbeiten"
 
-#: ../../mod/photos.php:915
+#: ../../mod/photos.php:919
 msgid "Rotate CW (right)"
 msgstr "Drehen US (rechts)"
 
-#: ../../mod/photos.php:916
+#: ../../mod/photos.php:920
 msgid "Rotate CCW (left)"
 msgstr "Drehen EUS (links)"
 
-#: ../../mod/photos.php:918
+#: ../../mod/photos.php:922
 msgid "New album name"
 msgstr "Name des neuen Albums:"
 
-#: ../../mod/photos.php:921
+#: ../../mod/photos.php:925
 msgid "Caption"
 msgstr "Bildunterschrift"
 
-#: ../../mod/photos.php:923
+#: ../../mod/photos.php:927
 msgid "Add a Tag"
 msgstr "Schlagwort hinzufügen"
 
-#: ../../mod/photos.php:927
+#: ../../mod/photos.php:931
 msgid ""
 "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: ../../mod/photos.php:1154
+#: ../../mod/photos.php:1158
 msgid "View Album"
 msgstr "Album ansehen"
 
-#: ../../mod/photos.php:1163
+#: ../../mod/photos.php:1167
 msgid "Recent Photos"
 msgstr "Neueste Fotos"
 
+#: ../../mod/chat.php:18 ../../mod/channel.php:25
+msgid "You must be logged in to see this page."
+msgstr "Du musst angemeldet sein um diese Seite betrachten zu können."
+
+#: ../../mod/chat.php:130
+msgid "New Chatroom"
+msgstr "Neuen Chatraum"
+
+#: ../../mod/chat.php:131
+msgid "Chatroom Name"
+msgstr "Chatraum Name"
+
 #: ../../mod/filer.php:35
 msgid "- select -"
 msgstr "-auswählen-"
@@ -5175,12 +5216,12 @@ msgstr "Einträge zu diesem Menü hinzufügen oder entfernen"
 msgid "Welcome to %s"
 msgstr "Willkommen auf %s"
 
-#: ../../mod/directory.php:143 ../../mod/profiles.php:573
-#: ../../mod/dirprofile.php:95
+#: ../../mod/directory.php:143 ../../mod/profiles.php:561
+#: ../../mod/dirprofile.php:98
 msgid "Age: "
 msgstr "Alter:"
 
-#: ../../mod/directory.php:146 ../../mod/dirprofile.php:98
+#: ../../mod/directory.php:146 ../../mod/dirprofile.php:101
 msgid "Gender: "
 msgstr "Geschlecht:"
 
@@ -5228,7 +5269,7 @@ msgstr "Neue Verbindungen vorschlagen"
 msgid "Show pending (new) connections"
 msgstr "Zeige schwebende (neue) Verbindungen"
 
-#: ../../mod/connections.php:248
+#: ../../mod/connections.php:248 ../../mod/profperm.php:134
 msgid "All Connections"
 msgstr "Alle Verbindungen"
 
@@ -5293,7 +5334,7 @@ msgstr "Layout Name"
 msgid "Help:"
 msgstr "Hilfe:"
 
-#: ../../mod/help.php:68 ../../index.php:224
+#: ../../mod/help.php:68 ../../index.php:223
 msgid "Not Found"
 msgstr "Nicht gefunden"
 
@@ -5352,6 +5393,53 @@ msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich."
 msgid "This site is not a directory server"
 msgstr "Diese Website ist kein Verzeichnis-Server"
 
+#: ../../mod/siteinfo.php:57
+#, php-format
+msgid "Version %s"
+msgstr "Version %s"
+
+#: ../../mod/siteinfo.php:76
+msgid "Installed plugins/addons/apps:"
+msgstr "Installierte Plugins/Addons/Apps"
+
+#: ../../mod/siteinfo.php:89
+msgid "No installed plugins/addons/apps"
+msgstr "Keine installierten Plugins/Addons/Apps"
+
+#: ../../mod/siteinfo.php:94
+msgid "Red"
+msgstr "Red"
+
+#: ../../mod/siteinfo.php:95
+msgid ""
+"This is a hub of the Red Matrix - a global cooperative network of "
+"decentralised privacy enhanced websites."
+msgstr "Dieser Server ist Teil der Red-Matrix – einem global vernetzten Verbund aus dezentralen Websites mit Rücksicht auf die Privatsphäre."
+
+#: ../../mod/siteinfo.php:98
+msgid "Running at web location"
+msgstr "Erreichbar unter der Web-Adresse"
+
+#: ../../mod/siteinfo.php:99
+msgid ""
+"Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more "
+"about the Red Matrix."
+msgstr "Besuche <a href=\"http://getzot.com\">GetZot.com</a> um mehr über die Red Matrix zu erfahren."
+
+#: ../../mod/siteinfo.php:100
+msgid "Bug reports and issues: please visit"
+msgstr "Probleme oder Fehler gefunden? Bitte besuche"
+
+#: ../../mod/siteinfo.php:103
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"redmatrix\" at "
+"librelist - dot com"
+msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an 'redmatrix' at librelist - dot - com"
+
+#: ../../mod/siteinfo.php:104
+msgid "Site Administrators"
+msgstr "Administratoren"
+
 #: ../../mod/lockview.php:34
 msgid "Remote privacy information not available."
 msgstr "Entfernte Privatsphären Einstellungen sind nicht verfügbar."
@@ -5365,7 +5453,7 @@ msgid "Hub not found."
 msgstr "Server nicht gefunden."
 
 #: ../../mod/profiles.php:18 ../../mod/profiles.php:138
-#: ../../mod/profiles.php:168 ../../mod/profiles.php:475
+#: ../../mod/profiles.php:168 ../../mod/profiles.php:463
 msgid "Profile not found."
 msgstr "Profil nicht gefunden."
 
@@ -5389,226 +5477,226 @@ msgstr "Profil kann nicht geklont werden."
 msgid "Profile Name is required."
 msgstr "Profil-Name erforderlich."
 
-#: ../../mod/profiles.php:306
+#: ../../mod/profiles.php:294
 msgid "Marital Status"
 msgstr "Familienstand"
 
-#: ../../mod/profiles.php:310
+#: ../../mod/profiles.php:298
 msgid "Romantic Partner"
 msgstr "Romantische Partner"
 
-#: ../../mod/profiles.php:314
+#: ../../mod/profiles.php:302
 msgid "Likes"
 msgstr "Gefällt-mir"
 
-#: ../../mod/profiles.php:318
+#: ../../mod/profiles.php:306
 msgid "Dislikes"
 msgstr "Gefällt-mir-nicht"
 
-#: ../../mod/profiles.php:322
+#: ../../mod/profiles.php:310
 msgid "Work/Employment"
 msgstr "Arbeit/Anstellung"
 
-#: ../../mod/profiles.php:325
+#: ../../mod/profiles.php:313
 msgid "Religion"
 msgstr "Religion"
 
-#: ../../mod/profiles.php:329
+#: ../../mod/profiles.php:317
 msgid "Political Views"
 msgstr "Politische Anscihten"
 
-#: ../../mod/profiles.php:333
+#: ../../mod/profiles.php:321
 msgid "Gender"
 msgstr "Geschlecht"
 
-#: ../../mod/profiles.php:337
+#: ../../mod/profiles.php:325
 msgid "Sexual Preference"
 msgstr "Sexuelle Orientierung"
 
-#: ../../mod/profiles.php:341
+#: ../../mod/profiles.php:329
 msgid "Homepage"
 msgstr "Webseite"
 
-#: ../../mod/profiles.php:345
+#: ../../mod/profiles.php:333
 msgid "Interests"
 msgstr "Hobbys/Interessen"
 
-#: ../../mod/profiles.php:349
+#: ../../mod/profiles.php:337
 msgid "Address"
 msgstr "Adresse"
 
-#: ../../mod/profiles.php:356 ../../mod/pubsites.php:31
+#: ../../mod/profiles.php:344 ../../mod/pubsites.php:31
 msgid "Location"
 msgstr "Ort"
 
-#: ../../mod/profiles.php:439
+#: ../../mod/profiles.php:427
 msgid "Profile updated."
 msgstr "Profil aktualisiert."
 
-#: ../../mod/profiles.php:494
+#: ../../mod/profiles.php:482
 msgid "Hide your contact/friend list from viewers of this profile?"
 msgstr "Verberge die Liste deiner Kontakte vor Betrachtern dieses Profils"
 
-#: ../../mod/profiles.php:517
+#: ../../mod/profiles.php:505
 msgid "Edit Profile Details"
 msgstr "Bearbeite Profil-Details"
 
-#: ../../mod/profiles.php:519
+#: ../../mod/profiles.php:507
 msgid "View this profile"
 msgstr "Dieses Profil ansehen"
 
-#: ../../mod/profiles.php:520
+#: ../../mod/profiles.php:508
 msgid "Change Profile Photo"
 msgstr "Profilfoto ändern"
 
-#: ../../mod/profiles.php:521
+#: ../../mod/profiles.php:509
 msgid "Create a new profile using these settings"
 msgstr "Neues Profil anlegen und diese Einstellungen übernehmen"
 
-#: ../../mod/profiles.php:522
+#: ../../mod/profiles.php:510
 msgid "Clone this profile"
 msgstr "Dieses Profil klonen"
 
-#: ../../mod/profiles.php:523
+#: ../../mod/profiles.php:511
 msgid "Delete this profile"
 msgstr "Dieses Profil löschen"
 
-#: ../../mod/profiles.php:524
+#: ../../mod/profiles.php:512
 msgid "Profile Name:"
 msgstr "Profilname:"
 
-#: ../../mod/profiles.php:525
+#: ../../mod/profiles.php:513
 msgid "Your Full Name:"
 msgstr "Dein voller Name:"
 
-#: ../../mod/profiles.php:526
+#: ../../mod/profiles.php:514
 msgid "Title/Description:"
 msgstr "Titel/Beschreibung:"
 
-#: ../../mod/profiles.php:527
+#: ../../mod/profiles.php:515
 msgid "Your Gender:"
 msgstr "Dein Geschlecht:"
 
-#: ../../mod/profiles.php:528
+#: ../../mod/profiles.php:516
 #, php-format
 msgid "Birthday (%s):"
 msgstr "Geburtstag (%s):"
 
-#: ../../mod/profiles.php:529
+#: ../../mod/profiles.php:517
 msgid "Street Address:"
 msgstr "Straße und Hausnummer:"
 
-#: ../../mod/profiles.php:530
+#: ../../mod/profiles.php:518
 msgid "Locality/City:"
 msgstr "Wohnort:"
 
-#: ../../mod/profiles.php:531
+#: ../../mod/profiles.php:519
 msgid "Postal/Zip Code:"
 msgstr "Postleitzahl:"
 
-#: ../../mod/profiles.php:532
+#: ../../mod/profiles.php:520
 msgid "Country:"
 msgstr "Land:"
 
-#: ../../mod/profiles.php:533
+#: ../../mod/profiles.php:521
 msgid "Region/State:"
 msgstr "Region/Bundesstaat"
 
-#: ../../mod/profiles.php:534
+#: ../../mod/profiles.php:522
 msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
 msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
 
-#: ../../mod/profiles.php:535
+#: ../../mod/profiles.php:523
 msgid "Who: (if applicable)"
 msgstr "Wer: (falls anwendbar)"
 
-#: ../../mod/profiles.php:536
+#: ../../mod/profiles.php:524
 msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
 msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
 
-#: ../../mod/profiles.php:537
+#: ../../mod/profiles.php:525
 msgid "Since [date]:"
 msgstr "Seit [Datum]:"
 
-#: ../../mod/profiles.php:539
+#: ../../mod/profiles.php:527
 msgid "Homepage URL:"
 msgstr "Homepage URL:"
 
-#: ../../mod/profiles.php:542
+#: ../../mod/profiles.php:530
 msgid "Religious Views:"
 msgstr "Religiöse Ansichten:"
 
-#: ../../mod/profiles.php:543
+#: ../../mod/profiles.php:531
 msgid "Keywords:"
 msgstr "Schlüsselwörter:"
 
-#: ../../mod/profiles.php:546
+#: ../../mod/profiles.php:534
 msgid "Example: fishing photography software"
 msgstr "Beispiel: fischen Fotografie Software"
 
-#: ../../mod/profiles.php:547
+#: ../../mod/profiles.php:535
 msgid "Used in directory listings"
 msgstr "Wird in Verzeichnis Auflistungen verwendet"
 
-#: ../../mod/profiles.php:548
+#: ../../mod/profiles.php:536
 msgid "Tell us about yourself..."
 msgstr "Erzähl uns ein wenig von Dir..."
 
-#: ../../mod/profiles.php:549
+#: ../../mod/profiles.php:537
 msgid "Hobbies/Interests"
 msgstr "Hobbys/Interessen"
 
-#: ../../mod/profiles.php:550
+#: ../../mod/profiles.php:538
 msgid "Contact information and Social Networks"
 msgstr "Kontaktinformation und soziale Netzwerke"
 
-#: ../../mod/profiles.php:551
+#: ../../mod/profiles.php:539
 msgid "My other channels"
 msgstr "Meine anderen Kanäle"
 
-#: ../../mod/profiles.php:552
+#: ../../mod/profiles.php:540
 msgid "Musical interests"
 msgstr "Musikalische Interessen"
 
-#: ../../mod/profiles.php:553
+#: ../../mod/profiles.php:541
 msgid "Books, literature"
 msgstr "Bücher, Literatur"
 
-#: ../../mod/profiles.php:554
+#: ../../mod/profiles.php:542
 msgid "Television"
 msgstr "Fernsehen"
 
-#: ../../mod/profiles.php:555
+#: ../../mod/profiles.php:543
 msgid "Film/dance/culture/entertainment"
 msgstr "Film/Tanz/Kultur/Unterhaltung"
 
-#: ../../mod/profiles.php:556
+#: ../../mod/profiles.php:544
 msgid "Love/romance"
 msgstr "Liebe/Romantik"
 
-#: ../../mod/profiles.php:557
+#: ../../mod/profiles.php:545
 msgid "Work/employment"
 msgstr "Arbeit/Anstellung"
 
-#: ../../mod/profiles.php:558
+#: ../../mod/profiles.php:546
 msgid "School/education"
 msgstr "Schule/Ausbildung"
 
-#: ../../mod/profiles.php:563
+#: ../../mod/profiles.php:551
 msgid ""
 "This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
 "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:612
+#: ../../mod/profiles.php:600
 msgid "Edit/Manage Profiles"
 msgstr "Bearbeite/Verwalte Profile"
 
-#: ../../mod/profiles.php:613
+#: ../../mod/profiles.php:601
 msgid "Add profile things"
 msgstr "Profil-Dinge hinzufügen"
 
-#: ../../mod/profiles.php:614
+#: ../../mod/profiles.php:602
 msgid "Include desirable objects in your profile"
 msgstr "binde begehrenswerte Dinge in dein Profil ein"
 
@@ -5646,43 +5734,43 @@ msgstr "Oder <a href=\"import\">importiere einen bestehenden Kanal</a> von einem
 msgid "Permission Denied."
 msgstr "Zugriff verweigert."
 
-#: ../../mod/filestorage.php:86
+#: ../../mod/filestorage.php:85
 msgid "File not found."
 msgstr "Datei nicht gefunden"
 
-#: ../../mod/filestorage.php:120
+#: ../../mod/filestorage.php:119
 msgid "Edit file permissions"
 msgstr "Dateiberechtigungen bearbeiten"
 
-#: ../../mod/filestorage.php:127
+#: ../../mod/filestorage.php:126
 msgid "Include all files and sub folders"
 msgstr "Alle Dateien und Unterverzeichnisse einbinden"
 
-#: ../../mod/filestorage.php:128
+#: ../../mod/filestorage.php:127
 msgid "Return to file list"
 msgstr "Zurück zur Dateiliste"
 
-#: ../../mod/filestorage.php:130
+#: ../../mod/filestorage.php:129
 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
+#: ../../mod/filestorage.php:130
 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
+#: ../../mod/filestorage.php:167
 msgid "Download"
 msgstr "Download"
 
-#: ../../mod/filestorage.php:174
+#: ../../mod/filestorage.php:173
 msgid "Used: "
 msgstr "Verwendet:"
 
-#: ../../mod/filestorage.php:175
+#: ../../mod/filestorage.php:174
 msgid "[directory]"
 msgstr "[Verzeichnis]"
 
-#: ../../mod/filestorage.php:177
+#: ../../mod/filestorage.php:176
 msgid "Limit: "
 msgstr "Limit:"
 
@@ -5901,7 +5989,7 @@ msgstr "Name wird benötigt"
 msgid "Key and Secret are required"
 msgstr "Schlüssel und Geheimnis werden benötigt"
 
-#: ../../mod/settings.php:79 ../../mod/settings.php:533
+#: ../../mod/settings.php:79 ../../mod/settings.php:535
 msgid "Update"
 msgstr "Update"
 
@@ -5933,334 +6021,342 @@ msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden."
 msgid "System failure storing new email. Please try again."
 msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal."
 
-#: ../../mod/settings.php:435
+#: ../../mod/settings.php:437
 msgid "Settings updated."
 msgstr "Einstellungen aktualisiert."
 
-#: ../../mod/settings.php:506 ../../mod/settings.php:532
-#: ../../mod/settings.php:568
+#: ../../mod/settings.php:508 ../../mod/settings.php:534
+#: ../../mod/settings.php:570
 msgid "Add application"
 msgstr "Anwendung hinzufügen"
 
-#: ../../mod/settings.php:509 ../../mod/settings.php:535
+#: ../../mod/settings.php:511 ../../mod/settings.php:537
 msgid "Name"
 msgstr "Name"
 
-#: ../../mod/settings.php:509
+#: ../../mod/settings.php:511
 msgid "Name of application"
 msgstr "Name der Anwendung"
 
-#: ../../mod/settings.php:510 ../../mod/settings.php:536
+#: ../../mod/settings.php:512 ../../mod/settings.php:538
 msgid "Consumer Key"
 msgstr "Consumer Key"
 
-#: ../../mod/settings.php:510 ../../mod/settings.php:511
+#: ../../mod/settings.php:512 ../../mod/settings.php:513
 msgid "Automatically generated - change if desired. Max length 20"
 msgstr "Automatisch erzeugt - ändern falls erwünscht. Maximale Länge 20"
 
-#: ../../mod/settings.php:511 ../../mod/settings.php:537
+#: ../../mod/settings.php:513 ../../mod/settings.php:539
 msgid "Consumer Secret"
 msgstr "Consumer Secret"
 
-#: ../../mod/settings.php:512 ../../mod/settings.php:538
+#: ../../mod/settings.php:514 ../../mod/settings.php:540
 msgid "Redirect"
 msgstr "Umleitung"
 
-#: ../../mod/settings.php:512
+#: ../../mod/settings.php:514
 msgid ""
 "Redirect URI - leave blank unless your application specifically requires "
 "this"
 msgstr "Umleitungs-URl - lasse dies frei außer deine Anwendung erfordert dies explizit"
 
-#: ../../mod/settings.php:513 ../../mod/settings.php:539
+#: ../../mod/settings.php:515 ../../mod/settings.php:541
 msgid "Icon url"
 msgstr "Symbol-URL"
 
-#: ../../mod/settings.php:513
+#: ../../mod/settings.php:515
 msgid "Optional"
 msgstr "Optional"
 
-#: ../../mod/settings.php:524
+#: ../../mod/settings.php:526
 msgid "You can't edit this application."
 msgstr "Diese Anwendung kann nicht bearbeitet werden."
 
-#: ../../mod/settings.php:567
+#: ../../mod/settings.php:569
 msgid "Connected Apps"
 msgstr "Verbundene Apps"
 
-#: ../../mod/settings.php:571
+#: ../../mod/settings.php:573
 msgid "Client key starts with"
 msgstr "Client key beginnt mit"
 
-#: ../../mod/settings.php:572
+#: ../../mod/settings.php:574
 msgid "No name"
 msgstr "Kein Name"
 
-#: ../../mod/settings.php:573
+#: ../../mod/settings.php:575
 msgid "Remove authorization"
 msgstr "Authorisierung aufheben"
 
-#: ../../mod/settings.php:584
+#: ../../mod/settings.php:586
 msgid "No feature settings configured"
 msgstr "Keine Funktions-Einstellungen konfiguriert"
 
-#: ../../mod/settings.php:592
+#: ../../mod/settings.php:594
 msgid "Feature Settings"
 msgstr "Funktions-Einstellungen"
 
-#: ../../mod/settings.php:615
+#: ../../mod/settings.php:617
 msgid "Account Settings"
 msgstr "Konto-Einstellungen"
 
-#: ../../mod/settings.php:616
+#: ../../mod/settings.php:618
 msgid "Password Settings"
 msgstr "Kennwort-Einstellungen"
 
-#: ../../mod/settings.php:617
+#: ../../mod/settings.php:619
 msgid "New Password:"
 msgstr "Neues Passwort:"
 
-#: ../../mod/settings.php:618
+#: ../../mod/settings.php:620
 msgid "Confirm:"
 msgstr "Bestätigen:"
 
-#: ../../mod/settings.php:618
+#: ../../mod/settings.php:620
 msgid "Leave password fields blank unless changing"
 msgstr "Lasse die Passwort -Felder leer außer du möchtest das Passwort ändern"
 
-#: ../../mod/settings.php:620 ../../mod/settings.php:912
+#: ../../mod/settings.php:622 ../../mod/settings.php:917
 msgid "Email Address:"
 msgstr "Email Adresse:"
 
-#: ../../mod/settings.php:621
+#: ../../mod/settings.php:623
 msgid "Remove Account"
 msgstr "Konto entfernen"
 
-#: ../../mod/settings.php:622
+#: ../../mod/settings.php:624
 msgid "Warning: This action is permanent and cannot be reversed."
 msgstr "Achtung: Diese Aktion ist permanent und kann nicht rückgänging gemacht werden."
 
-#: ../../mod/settings.php:638
+#: ../../mod/settings.php:640
 msgid "Off"
 msgstr "Aus"
 
-#: ../../mod/settings.php:638
+#: ../../mod/settings.php:640
 msgid "On"
 msgstr "An"
 
-#: ../../mod/settings.php:645
+#: ../../mod/settings.php:647
 msgid "Additional Features"
 msgstr "Zusätzliche Funktionen"
 
-#: ../../mod/settings.php:670
+#: ../../mod/settings.php:672
 msgid "Connector Settings"
 msgstr "Connector-Einstellungen"
 
-#: ../../mod/settings.php:740
+#: ../../mod/settings.php:742
 msgid "Display Settings"
 msgstr "Anzeige-Einstellungen"
 
-#: ../../mod/settings.php:746
+#: ../../mod/settings.php:748
 msgid "Display Theme:"
 msgstr "Anzeige Theme:"
 
-#: ../../mod/settings.php:747
+#: ../../mod/settings.php:749
 msgid "Mobile Theme:"
 msgstr "Mobile Theme:"
 
-#: ../../mod/settings.php:748
+#: ../../mod/settings.php:750
 msgid "Update browser every xx seconds"
 msgstr "Browser alle xx Sekunden aktualisieren"
 
-#: ../../mod/settings.php:748
+#: ../../mod/settings.php:750
 msgid "Minimum of 10 seconds, no maximum"
 msgstr "Minimum von 10 Sekunden, kein Maximum"
 
-#: ../../mod/settings.php:749
+#: ../../mod/settings.php:751
 msgid "Maximum number of conversations to load at any time:"
 msgstr "Maximale Anzahl von Unterhaltungen die gleichzeitig geladen werden sollen:"
 
-#: ../../mod/settings.php:749
+#: ../../mod/settings.php:751
 msgid "Maximum of 100 items"
 msgstr "Maximum von 100 Beiträgen"
 
-#: ../../mod/settings.php:750
+#: ../../mod/settings.php:752
 msgid "Don't show emoticons"
 msgstr "Emoticons nicht zeigen"
 
-#: ../../mod/settings.php:786
+#: ../../mod/settings.php:788
 msgid "Nobody except yourself"
 msgstr "Niemand außer du selbst"
 
-#: ../../mod/settings.php:787
+#: ../../mod/settings.php:789
 msgid "Only those you specifically allow"
 msgstr "Nur die, denen du es explizit erlaubst"
 
-#: ../../mod/settings.php:788
+#: ../../mod/settings.php:790
 msgid "Anybody in your address book"
 msgstr "Jeder aus Ihrem Adressbuch"
 
-#: ../../mod/settings.php:789
+#: ../../mod/settings.php:791
 msgid "Anybody on this website"
 msgstr "Jeder auf dieser Website"
 
-#: ../../mod/settings.php:790
+#: ../../mod/settings.php:792
 msgid "Anybody in this network"
 msgstr "Jeder in diesem Netzwerk"
 
-#: ../../mod/settings.php:791
+#: ../../mod/settings.php:793
 msgid "Anybody on the internet"
 msgstr "Jeder im Internet"
 
-#: ../../mod/settings.php:865
+#: ../../mod/settings.php:870
 msgid "Publish your default profile in the network directory"
 msgstr "Veröffentliche dein Standard-Profil im Netzwerk-Verzeichnis"
 
-#: ../../mod/settings.php:870
+#: ../../mod/settings.php:875
 msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
 
-#: ../../mod/settings.php:874 ../../mod/profile_photo.php:288
+#: ../../mod/settings.php:879 ../../mod/profile_photo.php:288
 msgid "or"
 msgstr "oder"
 
-#: ../../mod/settings.php:879
+#: ../../mod/settings.php:884
 msgid "Your channel address is"
 msgstr "Deine Kanal-Adresse lautet"
 
-#: ../../mod/settings.php:901
+#: ../../mod/settings.php:906
 msgid "Channel Settings"
 msgstr "Kanal-Einstellungen"
 
-#: ../../mod/settings.php:910
+#: ../../mod/settings.php:915
 msgid "Basic Settings"
 msgstr "Grundeinstellungen"
 
-#: ../../mod/settings.php:913
+#: ../../mod/settings.php:918
 msgid "Your Timezone:"
 msgstr "Ihre Zeitzone:"
 
-#: ../../mod/settings.php:914
+#: ../../mod/settings.php:919
 msgid "Default Post Location:"
 msgstr "Standardstandort:"
 
-#: ../../mod/settings.php:915
+#: ../../mod/settings.php:920
 msgid "Use Browser Location:"
 msgstr "Standort des Browsers verwenden:"
 
-#: ../../mod/settings.php:917
+#: ../../mod/settings.php:922
 msgid "Adult Content"
 msgstr "Nicht Jugendfreie-Inhalte"
 
-#: ../../mod/settings.php:917
+#: ../../mod/settings.php:922
 msgid "This channel publishes adult content."
 msgstr "Dieser Kanal veröffentlicht nicht Jugendfreie-Inhalte"
 
-#: ../../mod/settings.php:919
+#: ../../mod/settings.php:924
 msgid "Security and Privacy Settings"
 msgstr "Sicherheits- und Datenschutz-Einstellungen"
 
-#: ../../mod/settings.php:921
+#: ../../mod/settings.php:926
+msgid "Hide my online presence"
+msgstr "Meine Online-Präsenz verbergen"
+
+#: ../../mod/settings.php:926
+msgid "Prevents showing if you are available for chat"
+msgstr "Verhindert es als für Chats verfügbar angezeigt zu werden"
+
+#: ../../mod/settings.php:928
 msgid "Quick Privacy Settings:"
 msgstr "Schnelle Datenschutz-Einstellungen:"
 
-#: ../../mod/settings.php:922
+#: ../../mod/settings.php:929
 msgid "Very Public - extremely permissive"
 msgstr "Sehr offen - extrem freizügig"
 
-#: ../../mod/settings.php:923
+#: ../../mod/settings.php:930
 msgid "Typical - default public, privacy when desired"
 msgstr "Typisch - Standard öffentlich, Privatheit wenn gewünscht"
 
-#: ../../mod/settings.php:924
+#: ../../mod/settings.php:931
 msgid "Private - default private, rarely open or public"
 msgstr "Privat - Standard privat, selten offen oder öffentlich"
 
-#: ../../mod/settings.php:925
+#: ../../mod/settings.php:932
 msgid "Blocked - default blocked to/from everybody"
 msgstr "Geschlossen - Standard zu und von jedem geblockt"
 
-#: ../../mod/settings.php:928
+#: ../../mod/settings.php:935
 msgid "Maximum Friend Requests/Day:"
 msgstr "Maximale Kontaktanfragen pro Tag:"
 
-#: ../../mod/settings.php:928
+#: ../../mod/settings.php:935
 msgid "May reduce spam activity"
 msgstr "Kann die Spam-Aktivität verringern"
 
-#: ../../mod/settings.php:929
+#: ../../mod/settings.php:936
 msgid "Default Post Permissions"
 msgstr "Beitragszugriffrechte Standardeinstellungen"
 
-#: ../../mod/settings.php:941
+#: ../../mod/settings.php:948
 msgid "Maximum private messages per day from unknown people:"
 msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:"
 
-#: ../../mod/settings.php:941
+#: ../../mod/settings.php:948
 msgid "Useful to reduce spamming"
 msgstr "Nützlich um Spam zu verringern"
 
-#: ../../mod/settings.php:944
+#: ../../mod/settings.php:951
 msgid "Notification Settings"
 msgstr "Benachrichtigungs-Einstellungen"
 
-#: ../../mod/settings.php:945
+#: ../../mod/settings.php:952
 msgid "By default post a status message when:"
 msgstr "Sende standardmäßig Status-Nachrichten wenn:"
 
-#: ../../mod/settings.php:946
+#: ../../mod/settings.php:953
 msgid "accepting a friend request"
 msgstr "einer Kontaktanfrage stattgegeben wurde"
 
-#: ../../mod/settings.php:947
+#: ../../mod/settings.php:954
 msgid "joining a forum/community"
 msgstr "ein Forum beigetreten wurde"
 
-#: ../../mod/settings.php:948
+#: ../../mod/settings.php:955
 msgid "making an <em>interesting</em> profile change"
 msgstr "eine <em>interessante</em> Änderung am Profil vorgenommen wurde"
 
-#: ../../mod/settings.php:949
+#: ../../mod/settings.php:956
 msgid "Send a notification email when:"
 msgstr "Eine Email Benachrichtigung senden wenn:"
 
-#: ../../mod/settings.php:950
+#: ../../mod/settings.php:957
 msgid "You receive an introduction"
 msgstr "Du eine Vorstellung erhältst"
 
-#: ../../mod/settings.php:951
+#: ../../mod/settings.php:958
 msgid "Your introductions are confirmed"
 msgstr "Deine Vorstellung bestätigt wurde."
 
-#: ../../mod/settings.php:952
+#: ../../mod/settings.php:959
 msgid "Someone writes on your profile wall"
 msgstr "Jemand auf deine Pinnwand schreibt"
 
-#: ../../mod/settings.php:953
+#: ../../mod/settings.php:960
 msgid "Someone writes a followup comment"
 msgstr "Jemand einen Beitrag kommentiert"
 
-#: ../../mod/settings.php:954
+#: ../../mod/settings.php:961
 msgid "You receive a private message"
 msgstr "Du eine private Nachricht erhältst"
 
-#: ../../mod/settings.php:955
+#: ../../mod/settings.php:962
 msgid "You receive a friend suggestion"
 msgstr "Du einen Kontaktvorschlag erhältst"
 
-#: ../../mod/settings.php:956
+#: ../../mod/settings.php:963
 msgid "You are tagged in a post"
 msgstr "Du wurdest in einem Beitrag getaggt"
 
-#: ../../mod/settings.php:957
+#: ../../mod/settings.php:964
 msgid "You are poked/prodded/etc. in a post"
 msgstr "Du in einer Nachricht angestupst/geknufft/o.ä. wirst"
 
-#: ../../mod/settings.php:960
+#: ../../mod/settings.php:967
 msgid "Advanced Account/Page Type Settings"
 msgstr "Erweiterte Account / Seiten Arten Einstellungen"
 
-#: ../../mod/settings.php:961
+#: ../../mod/settings.php:968
 msgid "Change the behaviour of this account for special situations"
 msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen"
 
@@ -6351,17 +6447,17 @@ msgstr "Layout bearbeiten"
 msgid "Delete layout?"
 msgstr "Layout löschen?"
 
-#: ../../mod/editlayout.php:110 ../../mod/editpost.php:102
+#: ../../mod/editlayout.php:110 ../../mod/editpost.php:107
 #: ../../mod/editwebpage.php:148 ../../mod/editblock.php:124
 msgid "Insert YouTube video"
 msgstr "YouTube-Video einfügen"
 
-#: ../../mod/editlayout.php:111 ../../mod/editpost.php:103
+#: ../../mod/editlayout.php:111 ../../mod/editpost.php:108
 #: ../../mod/editwebpage.php:149 ../../mod/editblock.php:125
 msgid "Insert Vorbis [.ogg] video"
 msgstr "Vorbis [.ogg]-Video einfügen"
 
-#: ../../mod/editlayout.php:112 ../../mod/editpost.php:104
+#: ../../mod/editlayout.php:112 ../../mod/editpost.php:109
 #: ../../mod/editwebpage.php:150 ../../mod/editblock.php:126
 msgid "Insert Vorbis [.ogg] audio"
 msgstr "Vorbis [.ogg]-Audio einfügen"
@@ -6522,10 +6618,6 @@ msgstr "Diesen Beitrag privat machen"
 msgid "Wall Photos"
 msgstr "Wall Fotos"
 
-#: ../../mod/channel.php:25
-msgid "You must be logged in to see this page."
-msgstr "Du musst angemeldet sein um diese Seite betrachten zu können."
-
 #: ../../mod/channel.php:85
 msgid "Insufficient permissions.  Request redirected to profile page."
 msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."
@@ -6571,69 +6663,22 @@ msgstr "Block löschen?"
 msgid "Delete Block"
 msgstr "Block löschen"
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+#: ../../mod/profperm.php:29 ../../mod/profperm.php:58
 msgid "Invalid profile identifier."
 msgstr "Ungültiger Profil Identifikator"
 
-#: ../../mod/profperm.php:101
+#: ../../mod/profperm.php:105
 msgid "Profile Visibility Editor"
 msgstr "Profil-Sichtbarkeits Editor"
 
-#: ../../mod/profperm.php:105
+#: ../../mod/profperm.php:109
 msgid "Click on a contact to add or remove."
 msgstr "Wähle einen Kontakt zum Hinzufügen oder Löschen aus."
 
-#: ../../mod/profperm.php:114
+#: ../../mod/profperm.php:118
 msgid "Visible To"
 msgstr "Sichtbar für"
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Alle Kontakte (mit sicherem Zuging zum Profil)"
-
-#: ../../mod/siteinfo.php:57
-#, php-format
-msgid "Version %s"
-msgstr "Version %s"
-
-#: ../../mod/siteinfo.php:76
-msgid "Installed plugins/addons/apps:"
-msgstr "Installierte Plugins/Addons/Apps"
-
-#: ../../mod/siteinfo.php:89
-msgid "No installed plugins/addons/apps"
-msgstr "Keine installierten Plugins/Addons/Apps"
-
-#: ../../mod/siteinfo.php:92
-msgid "Red"
-msgstr "Red"
-
-#: ../../mod/siteinfo.php:93
-msgid ""
-"This is a hub of the Red Matrix - a global cooperative network of "
-"decentralised privacy enhanced websites."
-msgstr "Dieser Server ist Teil der Red-Matrix – einem global vernetzten Verbund aus dezentralen Websites mit Rücksicht auf die Privatsphäre."
-
-#: ../../mod/siteinfo.php:96
-msgid "Running at web location"
-msgstr "Erreichbar unter der Web-Adresse"
-
-#: ../../mod/siteinfo.php:97
-msgid ""
-"Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more "
-"about the Red Matrix."
-msgstr "Besuche <a href=\"http://getzot.com\">GetZot.com</a> um mehr über die Red Matrix zu erfahren."
-
-#: ../../mod/siteinfo.php:98
-msgid "Bug reports and issues: please visit"
-msgstr "Probleme oder Fehler gefunden? Bitte besuche"
-
-#: ../../mod/siteinfo.php:101
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"redmatrix\" at "
-"librelist - dot com"
-msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an 'redmatrix' at librelist - dot - com"
-
 #: ../../mod/suggest.php:35
 msgid ""
 "No suggestions available. If this is a new site, please try again in 24 "
@@ -6818,39 +6863,39 @@ msgstr "Laune"
 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
+#: ../../mod/ping.php:186
 msgid "sent you a private message"
 msgstr "eine private Nachricht schicken"
 
-#: ../../mod/ping.php:218
+#: ../../mod/ping.php:244
 msgid "added your channel"
 msgstr "hat deinen Kanal hinzugefügt"
 
-#: ../../mod/ping.php:262
+#: ../../mod/ping.php:288
 msgid "posted an event"
 msgstr "hat eine Veranstaltung veröffentlicht"
 
-#: ../../mod/dirprofile.php:111
+#: ../../mod/dirprofile.php:114
 msgid "Status: "
 msgstr "Status:"
 
-#: ../../mod/dirprofile.php:112
+#: ../../mod/dirprofile.php:115
 msgid "Sexual Preference: "
 msgstr "Sexuelle Vorlieben:"
 
-#: ../../mod/dirprofile.php:114
+#: ../../mod/dirprofile.php:117
 msgid "Homepage: "
 msgstr "Webseite:"
 
-#: ../../mod/dirprofile.php:115
+#: ../../mod/dirprofile.php:118
 msgid "Hometown: "
 msgstr "Wohnort:"
 
-#: ../../mod/dirprofile.php:117
+#: ../../mod/dirprofile.php:120
 msgid "About: "
 msgstr "Über:"
 
-#: ../../mod/dirprofile.php:164
+#: ../../mod/dirprofile.php:168
 msgid "Keywords: "
 msgstr "Schlüsselbegriffe:"
 
diff --git a/view/de/strings.php b/view/de/strings.php
index 0beec543e..3637c4bf5 100644
--- a/view/de/strings.php
+++ b/view/de/strings.php
@@ -12,7 +12,6 @@ $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["Public Timeline"] = "Öffentliche Zeitleiste";
 $a->strings["Logout"] = "Abmelden";
 $a->strings["End this session"] = "Beende diese Sitzung";
 $a->strings["Home"] = "Home";
@@ -71,6 +70,11 @@ $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["Missing room name"] = "Der Chatraum hat keinen Namen";
+$a->strings["Duplicate room name"] = "Name des Chatraums bereits vergeben";
+$a->strings["Invalid room specifier."] = "Ungültiger Raumbezeichner.";
+$a->strings["Room not found."] = "Chatraum konnte nicht gefunden werden.";
+$a->strings["Permission denied."] = "Zugang verweigert";
 $a->strings["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";
@@ -115,94 +119,17 @@ $a->strings["second"] = "Sekunde";
 $a->strings["seconds"] = "Sekunden";
 $a->strings["%1\$d %2\$s ago"] = "vor %1\$d %2\$s";
 $a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS-Info für den Datenbank-Server '%s' nicht finden";
+$a->strings["view full size"] = "In Vollbildansicht anschauen";
 $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["Save"] = "Speichern";
-$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["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:";
 $a->strings["Delete this item?"] = "Dieses Element löschen?";
 $a->strings["Comment"] = "Kommentar";
 $a->strings["show more"] = "mehr zeigen";
@@ -234,7 +161,6 @@ $a->strings["[no subject]"] = "[no subject]";
 $a->strings["Unable to determine sender."] = "Kann Absender nicht bestimmen.";
 $a->strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden.";
 $a->strings["Profile Photos"] = "Profilfotos";
-$a->strings["view full size"] = "In Vollbildansicht anschauen";
 $a->strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen";
 $a->strings["Empty name"] = "Namensfeld leer";
 $a->strings["Name too long"] = "Name ist zu lang";
@@ -258,6 +184,7 @@ $a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
 $a->strings["Gender:"] = "Geschlecht:";
 $a->strings["Status:"] = "Status:";
 $a->strings["Homepage:"] = "Homepage:";
+$a->strings["Online Now"] = "gerade online";
 $a->strings["g A l F d"] = "l, d. F G \\\\U\\\\h\\\\r";
 $a->strings["F d"] = "d. F";
 $a->strings["[today]"] = "[Heute]";
@@ -292,12 +219,6 @@ $a->strings["Love/Romance:"] = "Liebe/Romantik:";
 $a->strings["Work/employment:"] = "Arbeit/Anstellung:";
 $a->strings["School/education:"] = "Schule/Ausbildung:";
 $a->strings["Edit File properties"] = "Dateieigenschaften ändern";
-$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:";
 $a->strings["Embedded content"] = "Eingebetteter Inhalt";
 $a->strings["Embedding disabled"] = "Einbetten ausgeschaltet";
 $a->strings["General Features"] = "Allgemeine Funktionen";
@@ -365,7 +286,6 @@ $a->strings["Channels not in any collection"] = "Kanäle, die nicht in einer Sam
 $a->strings["add"] = "hinzufügen";
 $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";
 $a->strings["Image exceeds website size limit of %lu bytes"] = "Bild überschreitet das Limit der Webseite von %lu bytes";
 $a->strings["Image file is empty."] = "Bilddatei ist leer.";
 $a->strings["Unable to process image"] = "Kann Bild nicht verarbeiten";
@@ -524,6 +444,7 @@ $a->strings["Add New Connection"] = "Neue Verbindung hinzufügen";
 $a->strings["Enter the channel address"] = "Adresse des Kanals eingeben";
 $a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@beispiel.com, http://beispiel.com/barbara";
 $a->strings["Notes"] = "Notizen";
+$a->strings["Save"] = "Speichern";
 $a->strings["Remove term"] = "Eintrag löschen";
 $a->strings["Everything"] = "Alles";
 $a->strings["Archives"] = "Archive";
@@ -544,6 +465,8 @@ $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["Check Mail"] = "E-Mails abrufen";
+$a->strings["Chat Rooms"] = "Chaträume";
+$a->strings["Public Timeline"] = "Öffentliche Zeitleiste";
 $a->strings["%d invitation available"] = array(
 	0 => "%d Einladung verfügbar",
 	1 => "%d Einladungen verfügbar",
@@ -601,6 +524,90 @@ $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["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde.";
+$a->strings["prev"] = "vorherige";
+$a->strings["first"] = "erste";
+$a->strings["last"] = "letzte";
+$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["Private Message"] = "Private Nachricht";
 $a->strings["Delete"] = "Löschen";
 $a->strings["Select"] = "Auswählen";
@@ -640,10 +647,6 @@ $a->strings["Link"] = "Link";
 $a->strings["Video"] = "Video";
 $a->strings["Preview"] = "Vorschau";
 $a->strings["Encrypt text"] = "Text verschlüsseln";
-$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["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";
@@ -1031,6 +1034,8 @@ $a->strings["Policies"] = "Richtlinien";
 $a->strings["Advanced"] = "Fortgeschritten";
 $a->strings["Site name"] = "Seitenname";
 $a->strings["Banner/Logo"] = "Banner/Logo";
+$a->strings["Administrator Information"] = "Administrator Informationen";
+$a->strings["Contact information for site administrators.  Displayed on siteinfo page.  BBCode can be used here"] = "Kontaktinformationen für Administratoren der Seite. Wird auf der siteinfo Seite angezeigt. BBCode kann verwendet werden.";
 $a->strings["System language"] = "System-Sprache";
 $a->strings["System theme"] = "System-Theme";
 $a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Standard System-Theme - kann durch Nutzerprofile überschieben werden - <a href='#' id='cnftheme'>Theme.Einstellungen ändern</a>";
@@ -1196,6 +1201,9 @@ $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["You must be logged in to see this page."] = "Du musst angemeldet sein um diese Seite betrachten zu können.";
+$a->strings["New Chatroom"] = "Neuen Chatraum";
+$a->strings["Chatroom Name"] = "Chatraum Name";
 $a->strings["- select -"] = "-auswählen-";
 $a->strings["Menu updated."] = "Menü aktualisiert.";
 $a->strings["Unable to update menu."] = "Kann Menü nicht aktualisieren.";
@@ -1260,6 +1268,16 @@ $a->strings["Channel added."] = "Kanal hinzugefügt.";
 $a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Entfernte Authentifizierung blockiert. Du bist lokal auf dieser Seite angemeldet. Bitte melde dich ab und versuche es erneut.";
 $a->strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich.";
 $a->strings["This site is not a directory server"] = "Diese Website ist kein Verzeichnis-Server";
+$a->strings["Version %s"] = "Version %s";
+$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps";
+$a->strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps";
+$a->strings["Red"] = "Red";
+$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralised privacy enhanced websites."] = "Dieser Server ist Teil der Red-Matrix – einem global vernetzten Verbund aus dezentralen Websites mit Rücksicht auf die Privatsphäre.";
+$a->strings["Running at web location"] = "Erreichbar unter der Web-Adresse";
+$a->strings["Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more about the Red Matrix."] = "Besuche <a href=\"http://getzot.com\">GetZot.com</a> um mehr über die Red Matrix zu erfahren.";
+$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
+$a->strings["Suggestions, praise, donations, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an 'redmatrix' at librelist - dot - com";
+$a->strings["Site Administrators"] = "Administratoren";
 $a->strings["Remote privacy information not available."] = "Entfernte Privatsphären Einstellungen sind nicht verfügbar.";
 $a->strings["Visible to:"] = "Sichtbar für:";
 $a->strings["Hub not found."] = "Server nicht gefunden.";
@@ -1454,6 +1472,8 @@ $a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:";
 $a->strings["Adult Content"] = "Nicht Jugendfreie-Inhalte";
 $a->strings["This channel publishes adult content."] = "Dieser Kanal veröffentlicht nicht Jugendfreie-Inhalte";
 $a->strings["Security and Privacy Settings"] = "Sicherheits- und Datenschutz-Einstellungen";
+$a->strings["Hide my online presence"] = "Meine Online-Präsenz verbergen";
+$a->strings["Prevents showing if you are available for chat"] = "Verhindert es als für Chats verfügbar angezeigt zu werden";
 $a->strings["Quick Privacy Settings:"] = "Schnelle Datenschutz-Einstellungen:";
 $a->strings["Very Public - extremely permissive"] = "Sehr offen - extrem freizügig";
 $a->strings["Typical - default public, privacy when desired"] = "Typisch - Standard öffentlich, Privatheit wenn gewünscht";
@@ -1542,7 +1562,6 @@ $a->strings["Recipient"] = "Empfänger";
 $a->strings["Choose what you wish to do to recipient"] = "Wähle was du mit dem/r Empfänger/in tun willst";
 $a->strings["Make this post private"] = "Diesen Beitrag privat machen";
 $a->strings["Wall Photos"] = "Wall Fotos";
-$a->strings["You must be logged in to see this page."] = "Du musst angemeldet sein um diese Seite betrachten zu können.";
 $a->strings["Insufficient permissions.  Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet.";
 $a->strings["Not available."] = "Nicht verfügbar.";
 $a->strings["Community"] = "Gemeinschaft";
@@ -1558,16 +1577,6 @@ $a->strings["Invalid profile identifier."] = "Ungültiger Profil Identifikator";
 $a->strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits Editor";
 $a->strings["Click on a contact to add or remove."] = "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["Version %s"] = "Version %s";
-$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps";
-$a->strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps";
-$a->strings["Red"] = "Red";
-$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralised privacy enhanced websites."] = "Dieser Server ist Teil der Red-Matrix – einem global vernetzten Verbund aus dezentralen Websites mit Rücksicht auf die Privatsphäre.";
-$a->strings["Running at web location"] = "Erreichbar unter der Web-Adresse";
-$a->strings["Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more about the Red Matrix."] = "Besuche <a href=\"http://getzot.com\">GetZot.com</a> um mehr über die Red Matrix zu erfahren.";
-$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
-$a->strings["Suggestions, praise, 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.";
-- 
cgit v1.2.3


From d8f16442a1ca7d0be18dedd52c0f4eb339ba19b6 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Tue, 4 Feb 2014 00:52:34 -0800
Subject: bookmark permissions

---
 view/js/mod_connedit.js | 1 +
 view/js/mod_settings.js | 4 ++++
 2 files changed, 5 insertions(+)

(limited to 'view')

diff --git a/view/js/mod_connedit.js b/view/js/mod_connedit.js
index 51dbcf4bf..6bb39fb7a 100644
--- a/view/js/mod_connedit.js
+++ b/view/js/mod_connedit.js
@@ -17,6 +17,7 @@ function connectFullShare() {
 	$('#me_id_perms_chat').attr('checked','checked');
 	$('#me_id_perms_view_storage').attr('checked','checked');
 	$('#me_id_perms_republish').attr('checked','checked');
+	$('#me_id_perms_bookmark').attr('checked','checked');
 }
 
 function connectCautiousShare() {
diff --git a/view/js/mod_settings.js b/view/js/mod_settings.js
index 1c411113e..7ede7fb73 100644
--- a/view/js/mod_settings.js
+++ b/view/js/mod_settings.js
@@ -43,6 +43,7 @@ function channel_privacy_macro(n) {
         $('#id_write_pages option').eq(0).attr('selected','selected');
         $('#id_delegate option').eq(0).attr('selected','selected');
 		$('#id_republish option').eq(0).attr('selected','selected');
+		$('#id_bookmark option').eq(0).attr('selected','selected');
 		$('#id_profile_in_directory_onoff .off').removeClass('hidden');
 		$('#id_profile_in_directory_onoff .on').addClass('hidden');
 		$('#id_profile_in_directory').val(0);
@@ -65,6 +66,7 @@ function channel_privacy_macro(n) {
         $('#id_write_pages option').eq(1).attr('selected','selected');
         $('#id_delegate option').eq(0).attr('selected','selected');
 		$('#id_republish option').eq(0).attr('selected','selected');
+		$('#id_bookmark option').eq(0).attr('selected','selected');
 		$('#id_profile_in_directory_onoff .off').removeClass('hidden');
 		$('#id_profile_in_directory_onoff .on').addClass('hidden');
 		$('#id_profile_in_directory').val(0);
@@ -87,6 +89,7 @@ function channel_privacy_macro(n) {
         $('#id_write_pages option').eq(0).attr('selected','selected');
         $('#id_delegate option').eq(0).attr('selected','selected');
 		$('#id_republish option').eq(1).attr('selected','selected');
+		$('#id_bookmark option').eq(1).attr('selected','selected');
 		$('#id_profile_in_directory_onoff .on').removeClass('hidden');
 		$('#id_profile_in_directory_onoff .off').addClass('hidden');
 		$('#id_profile_in_directory').val(1);
@@ -109,6 +112,7 @@ function channel_privacy_macro(n) {
         $('#id_write_pages option').eq(2).attr('selected','selected');
         $('#id_delegate option').eq(0).attr('selected','selected');
 		$('#id_republish option').eq(4).attr('selected','selected');
+		$('#id_bookmark option').eq(4).attr('selected','selected');
 		$('#id_profile_in_directory_onoff .on').removeClass('hidden');
 		$('#id_profile_in_directory_onoff .off').addClass('hidden');
 		$('#id_profile_in_directory').val(1);
-- 
cgit v1.2.3


From aede006970fb9124161b4732b9f44002a35d17ef Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Tue, 4 Feb 2014 17:12:13 -0800
Subject: bookmarks - mop up and go home

---
 view/js/mod_connedit.js | 2 +-
 view/js/mod_settings.js | 2 +-
 view/tpl/conv_item.tpl  | 3 +++
 view/tpl/jot-header.tpl | 8 +++++++-
 4 files changed, 12 insertions(+), 3 deletions(-)

(limited to 'view')

diff --git a/view/js/mod_connedit.js b/view/js/mod_connedit.js
index 6bb39fb7a..7a33952dc 100644
--- a/view/js/mod_connedit.js
+++ b/view/js/mod_connedit.js
@@ -17,7 +17,7 @@ function connectFullShare() {
 	$('#me_id_perms_chat').attr('checked','checked');
 	$('#me_id_perms_view_storage').attr('checked','checked');
 	$('#me_id_perms_republish').attr('checked','checked');
-	$('#me_id_perms_bookmark').attr('checked','checked');
+
 }
 
 function connectCautiousShare() {
diff --git a/view/js/mod_settings.js b/view/js/mod_settings.js
index 7ede7fb73..16101db57 100644
--- a/view/js/mod_settings.js
+++ b/view/js/mod_settings.js
@@ -66,7 +66,7 @@ function channel_privacy_macro(n) {
         $('#id_write_pages option').eq(1).attr('selected','selected');
         $('#id_delegate option').eq(0).attr('selected','selected');
 		$('#id_republish option').eq(0).attr('selected','selected');
-		$('#id_bookmark option').eq(0).attr('selected','selected');
+		$('#id_bookmark option').eq(1).attr('selected','selected');
 		$('#id_profile_in_directory_onoff .off').removeClass('hidden');
 		$('#id_profile_in_directory_onoff .on').addClass('hidden');
 		$('#id_profile_in_directory').val(0);
diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl
index 50a243ff4..869692bfa 100755
--- a/view/tpl/conv_item.tpl
+++ b/view/tpl/conv_item.tpl
@@ -85,6 +85,9 @@
 			{{/if}}
 			{{if $item.filer}}
 			<i id="filer-{{$item.id}}" onclick="itemFiler({{$item.id}}); return false;" class="filer-item icon-folder-open item-tool" title="{{$item.filer}}"></i>
+			{{/if}}
+			{{if $item.bookmark}}
+			<i id="bookmarker-{{$item.id}}" onclick="itemBookmark({{$item.id}}); return false;" class="bookmark-item icon-bookmark item-tool" title="{{$item.bookmark}}"></i>
 			{{/if}}			
 			<div id="like-rotator-{{$item.id}}" class="like-rotator"></div>
 
diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl
index 878e1e7da..80421d552 100755
--- a/view/tpl/jot-header.tpl
+++ b/view/tpl/jot-header.tpl
@@ -185,7 +185,6 @@ function enableOnUser(){
 		}
 	}
 
-
 	function jotGetLocation() {
 		reply = prompt("{{$whereareu}}", $('#jot-location').val());
 		if(reply && reply.length) {
@@ -295,6 +294,13 @@ function enableOnUser(){
 		
 	}
 
+	function itemBookmark(id) {
+		$.get('{{$baseurl}}/bookmarks?f=&item=' + id);
+		if(timer) clearTimeout(timer);
+		timer = setTimeout(NavUpdate,1000);
+	}
+
+
 	function jotClearLocation() {
 		$('#jot-coord').val('');
 		$('#profile-nolocation-wrapper').hide();
-- 
cgit v1.2.3


From 9f439c3248c0464298e0b486a85ad74ec2df8270 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Tue, 4 Feb 2014 17:14:22 -0800
Subject: add icon translation for new icon

---
 view/js/icon_translate.js | 1 +
 1 file changed, 1 insertion(+)

(limited to 'view')

diff --git a/view/js/icon_translate.js b/view/js/icon_translate.js
index 838ff899f..737164cb8 100644
--- a/view/js/icon_translate.js
+++ b/view/js/icon_translate.js
@@ -51,4 +51,5 @@ $(document).ready(function() {
 		$('.icon-globe').addClass('');
 		$('.icon-circle-blank').addClass('');
 		$('.icon-circle').addClass('');
+		$('.icon-bookmark').addClass('');
 });
\ No newline at end of file
-- 
cgit v1.2.3


From 8a11c2941395bdd325ac076bd22ad011fe41f3c7 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Tue, 4 Feb 2014 19:39:56 -0800
Subject: make links in comments bookmark-able

---
 view/js/main.js | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

(limited to 'view')

diff --git a/view/js/main.js b/view/js/main.js
index c8e9fc9a2..44cb79949 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -55,6 +55,8 @@
 		if(typeof(insertFormatting) != 'undefined')
 		   return(insertFormatting(comment,BBcode,id));
 
+		var urlprefix = ((BBcode == 'url') ? '#^' : '');
+
 		var tmpStr = $("#comment-edit-text-" + id).val();
 		if(tmpStr == comment) {
 			tmpStr = "";
@@ -68,11 +70,11 @@
 		if (document.selection) {
 			textarea.focus();
 			selected = document.selection.createRange();
-			selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
+			selected.text = urlprefix+"["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
 		} else if (textarea.selectionStart || textarea.selectionStart == "0") {
 			var start = textarea.selectionStart;
 			var end = textarea.selectionEnd;
-			textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
+			textarea.value = textarea.value.substring(0, start) + urlprefix+"["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
 		}
 		return true;
 	}
-- 
cgit v1.2.3


From 0844110f7b154a0fb5102362fe732c2b091222d7 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Wed, 5 Feb 2014 03:44:46 -0800
Subject: preserve system bit when editing menus

---
 view/tpl/menuedit.tpl | 4 ++++
 1 file changed, 4 insertions(+)

(limited to 'view')

diff --git a/view/tpl/menuedit.tpl b/view/tpl/menuedit.tpl
index 324dbe426..1ccfb3d68 100644
--- a/view/tpl/menuedit.tpl
+++ b/view/tpl/menuedit.tpl
@@ -10,6 +10,10 @@
 {{if $menu_id}}
 <input type="hidden" name="menu_id" value="{{$menu_id}}" />
 {{/if}}
+{{if $menu_system}}
+<input type="hidden" name="menu_system" value="{{$menu_system}}" />
+{{/if}}
+
 
 {{include file="field_input.tpl" field=$menu_name}} 
 {{include file="field_input.tpl" field=$menu_desc}}
-- 
cgit v1.2.3


From 61f3ffc635acbc53a825152f9bb1bb2ab262dde5 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Wed, 5 Feb 2014 19:16:41 -0800
Subject: add chatrooms template

---
 view/tpl/chatrooms.tpl | 10 ++++++++++
 1 file changed, 10 insertions(+)
 create mode 100644 view/tpl/chatrooms.tpl

(limited to 'view')

diff --git a/view/tpl/chatrooms.tpl b/view/tpl/chatrooms.tpl
new file mode 100644
index 000000000..c3dae6627
--- /dev/null
+++ b/view/tpl/chatrooms.tpl
@@ -0,0 +1,10 @@
+<h2>{{$header}}</h2>
+
+{{if $is_owner}}
+<p>
+<a href="{{$baseurl}}/chat/{{$nickname}}/new">{{$newroom}}</a>
+</p>
+{{/if}}
+
+{{$rooms}}
+
-- 
cgit v1.2.3


From f9381ed746009348462f4f96ed397fabab4e172e Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Thu, 6 Feb 2014 13:32:29 -0800
Subject: notification bug - don't use $r, we already set it to something else
 that we need further on.

---
 view/en/htconfig.tpl | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/en/htconfig.tpl b/view/en/htconfig.tpl
index 28fdd04f0..840e7a124 100644
--- a/view/en/htconfig.tpl
+++ b/view/en/htconfig.tpl
@@ -65,12 +65,13 @@ $a->config['system']['access_policy'] = ACCESS_PRIVATE;
 $a->config['system']['sellpage'] = '';
 
 // Maximum size of an imported message, 0 is unlimited
+// FIXME - NOT currently implemented. 
 
 $a->config['system']['max_import_size'] = 200000;
 
 // maximum size of uploaded photos
 
-$a->config['system']['maximagesize'] = 3000000;
+$a->config['system']['maximagesize'] = 12000000;
 
 // Location of PHP command line processor
 
-- 
cgit v1.2.3


From 63589d4f2e05ec9bb2c8da193f566da512de5364 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Fri, 7 Feb 2014 13:37:33 -0800
Subject: from olivier: use double quotes in js strings, updated FR translation
 from me: provide future ability to have an optional edit link/icon next to
 menus (such as bookmarks)

---
 view/fr/messages.po     | 10012 +++++++++++++++++++++++++++-------------------
 view/fr/strings.php     |  2761 ++++++++-----
 view/tpl/js_strings.tpl |    48 +-
 3 files changed, 7669 insertions(+), 5152 deletions(-)

(limited to 'view')

diff --git a/view/fr/messages.po b/view/fr/messages.po
index 2d3909ca2..9df80657e 100644
--- a/view/fr/messages.po
+++ b/view/fr/messages.po
@@ -1,5301 +1,7279 @@
-# FRIENDICA Distributed Social Network
-# Copyright (C) 2010, 2011 Mike Macgirvin
-# This file is distributed under the same license as the Friendika package.
+# Red Matrix Project
+# Copyright (C) 2012-2014 the Red Matrix Project
+# This file is distributed under the same license as the Red package.
 # 
 # Translators:
-# Olivier  <olivier+transifex@migeot.org>, 2011.
+# Olivier <olivier+transifex@migeot.org>, 2013-2014
 msgid ""
 msgstr ""
-"Project-Id-Version: friendica\n"
-"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
-"POT-Creation-Date: 2011-11-15 17:20+0100\n"
-"PO-Revision-Date: 2011-11-17 08:22+0000\n"
-"Last-Translator: olivierm <olivier+transifex@migeot.org>\n"
-"Language-Team: French (http://www.transifex.net/projects/p/friendica/team/fr/)\n"
+"Project-Id-Version: Red Matrix\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2014-02-07 00:03-0800\n"
+"PO-Revision-Date: 2014-02-07 20:34+0000\n"
+"Last-Translator: Olivier <olivier+transifex@migeot.org>\n"
+"Language-Team: French (http://www.transifex.com/projects/p/red-matrix/language/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1)\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: ../../index.php:213 ../../mod/help.php:38
-msgid "Not Found"
-msgstr "Non trouvé"
-
-#: ../../index.php:216 ../../mod/help.php:41
-msgid "Page not found."
-msgstr "Page introuvable."
+#: ../../include/acl_selectors.php:235
+msgid "Visible to everybody"
+msgstr "Visible par tous"
 
-#: ../../index.php:279 ../../mod/profperm.php:19 ../../mod/group.php:67
-msgid "Permission denied"
-msgstr "Permission refusée"
-
-#: ../../index.php:280 ../../mod/manage.php:75 ../../mod/wall_upload.php:42
-#: ../../mod/follow.php:8 ../../mod/profile_photo.php:19
-#: ../../mod/profile_photo.php:137 ../../mod/profile_photo.php:148
-#: ../../mod/profile_photo.php:159 ../../mod/wall_attach.php:43
-#: ../../mod/suggest.php:28 ../../mod/regmod.php:111 ../../mod/profiles.php:7
-#: ../../mod/profiles.php:229 ../../mod/settings.php:41
-#: ../../mod/settings.php:46 ../../mod/settings.php:376
-#: ../../mod/photos.php:123 ../../mod/photos.php:858 ../../mod/display.php:111
-#: ../../mod/editpost.php:10 ../../mod/invite.php:13 ../../mod/invite.php:81
-#: ../../mod/contacts.php:115 ../../mod/register.php:27
-#: ../../mod/allfriends.php:9 ../../mod/install.php:96 ../../mod/network.php:6
-#: ../../mod/events.php:109 ../../mod/notifications.php:62
-#: ../../mod/crepair.php:113 ../../mod/api.php:26 ../../mod/api.php:31
-#: ../../mod/notes.php:20 ../../mod/fsuggest.php:78 ../../mod/item.php:113
-#: ../../mod/message.php:9 ../../mod/message.php:42
-#: ../../mod/dfrn_confirm.php:53 ../../mod/viewconnections.php:21
-#: ../../mod/group.php:19 ../../mod/attach.php:33 ../../mod/common.php:9
-#: ../../addon/facebook/facebook.php:331 ../../include/items.php:2874
-msgid "Permission denied."
-msgstr "Permission refusée."
+#: ../../include/acl_selectors.php:236
+msgid "show"
+msgstr "montrer"
 
-#: ../../boot.php:419
-msgid "Delete this item?"
-msgstr "Effacer cet élément?"
+#: ../../include/acl_selectors.php:237
+msgid "don't show"
+msgstr "cacher"
 
-#: ../../boot.php:420 ../../mod/photos.php:1202 ../../mod/photos.php:1241
-#: ../../mod/photos.php:1272 ../../include/conversation.php:433
-msgid "Comment"
-msgstr "Commenter"
+#: ../../include/activities.php:39
+msgid " and "
+msgstr "et"
 
-#: ../../boot.php:662
-msgid "Create a New Account"
-msgstr "Créer un nouveau compte"
+#: ../../include/activities.php:47
+msgid "public profile"
+msgstr "profil public"
 
-#: ../../boot.php:663 ../../mod/register.php:530 ../../include/nav.php:77
-msgid "Register"
-msgstr "S'inscrire"
+#: ../../include/activities.php:52
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s a changé %2$s en &ldquo;%3$s&rdquo;"
 
-#: ../../boot.php:679 ../../include/nav.php:44
-msgid "Logout"
-msgstr "Se déconnecter"
+#: ../../include/activities.php:53
+#, php-format
+msgid "Visit %1$s's %2$s"
+msgstr "Visiter %1$s de %2$s"
 
-#: ../../boot.php:680 ../../addon/communityhome/communityhome.php:28
-#: ../../addon/communityhome/communityhome.php:34 ../../include/nav.php:62
-msgid "Login"
-msgstr "Connexion"
+#: ../../include/activities.php:56
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s a mis-à-jour %2$s, modifiant %3$s."
 
-#: ../../boot.php:682
-msgid "Nickname or Email address: "
-msgstr "Pseudo ou courriel: "
+#: ../../include/nav.php:72 ../../include/nav.php:91 ../../boot.php:1423
+msgid "Logout"
+msgstr "Déconnexion"
 
-#: ../../boot.php:683
-msgid "Password: "
-msgstr "Mot de passe: "
+#: ../../include/nav.php:72 ../../include/nav.php:91
+msgid "End this session"
+msgstr "Mettre fin à la session"
 
-#: ../../boot.php:686
-msgid "OpenID: "
-msgstr "OpenID: "
+#: ../../include/nav.php:75 ../../include/nav.php:125
+msgid "Home"
+msgstr "Canal"
 
-#: ../../boot.php:692
-msgid "Forgot your password?"
-msgstr "Mot de passe oublié?"
+#: ../../include/nav.php:75
+msgid "Your posts and conversations"
+msgstr "Vos publications et conversations"
 
-#: ../../boot.php:693 ../../mod/lostpass.php:82
-msgid "Password Reset"
-msgstr "Réinitialiser le mot de passe"
+#: ../../include/nav.php:76 ../../include/conversation.php:933
+#: ../../mod/connedit.php:312 ../../mod/connedit.php:426
+msgid "View Profile"
+msgstr "Voir profil"
 
-#: ../../boot.php:815 ../../mod/profile.php:10 ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Aucun profil"
+#: ../../include/nav.php:76
+msgid "Your profile page"
+msgstr "Votre profil"
 
-#: ../../boot.php:839
-msgid "Edit profile"
-msgstr "Editer le profil"
+#: ../../include/nav.php:78
+msgid "Edit Profiles"
+msgstr "Éditer profils"
 
-#: ../../boot.php:890 ../../include/contact_widgets.php:9
-msgid "Connect"
-msgstr "Relier"
+#: ../../include/nav.php:78
+msgid "Manage/Edit profiles"
+msgstr "Gérer/éditer profils"
 
-#: ../../boot.php:900 ../../include/nav.php:129
-msgid "Profiles"
-msgstr "Profils"
+#: ../../include/nav.php:79 ../../include/conversation.php:1475
+#: ../../mod/fbrowser.php:25
+msgid "Photos"
+msgstr "Photos"
 
-#: ../../boot.php:900 ../../include/nav.php:129
-msgid "Manage/edit profiles"
-msgstr "Gérer/éditer les profils"
+#: ../../include/nav.php:79
+msgid "Your photos"
+msgstr "Vos photos"
 
-#: ../../boot.php:906 ../../mod/profiles.php:462
-msgid "Change profile photo"
-msgstr "Changer de photo de profil"
+#: ../../include/nav.php:80 ../../include/conversation.php:1484
+#: ../../mod/fbrowser.php:114
+msgid "Files"
+msgstr "Fichiers"
 
-#: ../../boot.php:907 ../../mod/profiles.php:463
-msgid "Create New Profile"
-msgstr "Créer un nouveau profil"
+#: ../../include/nav.php:80
+msgid "Your files"
+msgstr "Vos fichiers"
 
-#: ../../boot.php:917 ../../mod/profiles.php:473
-msgid "Profile Image"
-msgstr "Image du profil"
+#: ../../include/nav.php:81
+msgid "Chat"
+msgstr "Discussion"
 
-#: ../../boot.php:920 ../../mod/profiles.php:475
-msgid "visible to everybody"
-msgstr "visible par tous"
+#: ../../include/nav.php:81
+msgid "Your chatrooms"
+msgstr "Vos salons"
 
-#: ../../boot.php:921 ../../mod/profiles.php:476
-msgid "Edit visibility"
-msgstr "Changer la visibilité"
+#: ../../include/nav.php:82 ../../include/nav.php:175
+#: ../../include/conversation.php:1506 ../../mod/events.php:354
+msgid "Events"
+msgstr "Événements"
 
-#: ../../boot.php:940 ../../mod/events.php:325 ../../include/event.php:37
-#: ../../include/bb2diaspora.php:249
-msgid "Location:"
-msgstr "Localisation:"
+#: ../../include/nav.php:82
+msgid "Your events"
+msgstr "Vos événements"
 
-#: ../../boot.php:942 ../../include/profile_advanced.php:17
-msgid "Gender:"
-msgstr "Genre:"
+#: ../../include/nav.php:83 ../../include/conversation.php:1514
+msgid "Bookmarks"
+msgstr "Marque-pages"
 
-#: ../../boot.php:945 ../../include/profile_advanced.php:37
-msgid "Status:"
-msgstr "Statut:"
+#: ../../include/nav.php:83
+msgid "Your bookmarks"
+msgstr "Vos marque-pages"
 
-#: ../../boot.php:947 ../../include/profile_advanced.php:45
-msgid "Homepage:"
-msgstr "Page personnelle:"
+#: ../../include/nav.php:85 ../../include/conversation.php:1525
+msgid "Webpages"
+msgstr "Pages web"
 
-#: ../../boot.php:1006 ../../boot.php:1068
-msgid "g A l F d"
-msgstr "g A | F d"
+#: ../../include/nav.php:85
+msgid "Your webpages"
+msgstr "Vos pages web"
 
-#: ../../boot.php:1007 ../../boot.php:1069
-msgid "F d"
-msgstr "F d"
+#: ../../include/nav.php:89 ../../boot.php:1424
+msgid "Login"
+msgstr "Connexion"
 
-#: ../../boot.php:1030
-msgid "Birthday Reminders"
-msgstr "Rappels d'anniversaires"
+#: ../../include/nav.php:89
+msgid "Sign in"
+msgstr "Connexion"
 
-#: ../../boot.php:1031
-msgid "Birthdays this week:"
-msgstr "Anniversaires cette semaine:"
+#: ../../include/nav.php:106
+#, php-format
+msgid "%s - click to logout"
+msgstr "%s - cliquer pour déconnecter"
 
-#: ../../boot.php:1047 ../../boot.php:1111
-msgid "[today]"
-msgstr "[aujourd'hui]"
+#: ../../include/nav.php:111
+msgid "Click to authenticate to your home hub"
+msgstr "S'authentifier auprès de son hébergement"
 
-#: ../../boot.php:1092
-msgid "Event Reminders"
-msgstr "Rappels d'événements"
+#: ../../include/nav.php:125
+msgid "Home Page"
+msgstr "Page d'accueil"
 
-#: ../../boot.php:1093
-msgid "Events this week:"
-msgstr "Evénements cette semaine:"
+#: ../../include/nav.php:129 ../../mod/register.php:206 ../../boot.php:1400
+msgid "Register"
+msgstr "Inscription"
 
-#: ../../boot.php:1105
-msgid "[No description]"
-msgstr "[Sans description]"
+#: ../../include/nav.php:129
+msgid "Create an account"
+msgstr "Créer un compte"
 
-#: ../../boot.php:1282 ../../include/nav.php:47
-msgid "Status"
-msgstr "Statut"
+#: ../../include/nav.php:134 ../../mod/help.php:60 ../../mod/help.php:64
+msgid "Help"
+msgstr "Aide"
 
-#: ../../boot.php:1287 ../../mod/profperm.php:103
-#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:74
-#: ../../include/nav.php:48
-msgid "Profile"
-msgstr "Profil"
+#: ../../include/nav.php:134
+msgid "Help and documentation"
+msgstr "Aide et documentation"
 
-#: ../../boot.php:1292 ../../include/nav.php:49
-msgid "Photos"
-msgstr "Photos"
+#: ../../include/nav.php:137
+msgid "Apps"
+msgstr "Applications"
 
-#: ../../boot.php:1300 ../../mod/events.php:117 ../../include/nav.php:50
-msgid "Events"
-msgstr "Evènements"
+#: ../../include/nav.php:137
+msgid "Addon applications, utilities, games"
+msgstr "Applications supplémentaires, jeux, utilitaires"
 
-#: ../../boot.php:1305 ../../mod/notes.php:44
-msgid "Personal Notes"
-msgstr "Notes personnelles"
+#: ../../include/nav.php:139 ../../include/text.php:752
+#: ../../include/text.php:766 ../../mod/search.php:29
+msgid "Search"
+msgstr "Recherche"
 
-#: ../../mod/manage.php:37
-#, php-format
-msgid "Welcome back %s"
-msgstr "Bienvenue à nouveau, %s"
+#: ../../include/nav.php:139
+msgid "Search site content"
+msgstr "Recherche parmi le contenu du site"
 
-#: ../../mod/manage.php:87
-msgid "Manage Identities and/or Pages"
-msgstr "Gérer les identités et/ou les pages"
+#: ../../include/nav.php:142 ../../mod/directory.php:210
+msgid "Directory"
+msgstr "Annuaire"
 
-#: ../../mod/manage.php:90
-msgid ""
-"(Toggle between different identities or community/group pages which share "
-"your account details.)"
-msgstr ""
-"(Bascule entre les différentes identités ou pages qui se partagent votre "
-"compte.)"
-
-#: ../../mod/manage.php:92
-msgid "Select an identity to manage: "
-msgstr "Choisir une identité à gérer: "
-
-#: ../../mod/manage.php:106 ../../mod/profiles.php:375
-#: ../../mod/settings.php:420 ../../mod/settings.php:559
-#: ../../mod/settings.php:707 ../../mod/photos.php:886
-#: ../../mod/photos.php:944 ../../mod/photos.php:1163
-#: ../../mod/photos.php:1203 ../../mod/photos.php:1242
-#: ../../mod/photos.php:1273 ../../mod/localtime.php:45
-#: ../../mod/invite.php:106 ../../mod/contacts.php:306
-#: ../../mod/install.php:137 ../../mod/events.php:330
-#: ../../mod/crepair.php:162 ../../mod/fsuggest.php:107
-#: ../../mod/admin.php:296 ../../mod/admin.php:461 ../../mod/admin.php:587
-#: ../../mod/admin.php:652 ../../mod/group.php:84 ../../mod/group.php:167
-#: ../../addon/tumblr/tumblr.php:89 ../../addon/twitter/twitter.php:179
-#: ../../addon/twitter/twitter.php:202 ../../addon/twitter/twitter.php:299
-#: ../../addon/statusnet/statusnet.php:282
-#: ../../addon/statusnet/statusnet.php:296
-#: ../../addon/statusnet/statusnet.php:322
-#: ../../addon/statusnet/statusnet.php:329
-#: ../../addon/statusnet/statusnet.php:351
-#: ../../addon/statusnet/statusnet.php:486 ../../addon/oembed/oembed.php:41
-#: ../../addon/uhremotestorage/uhremotestorage.php:58
-#: ../../addon/impressum/impressum.php:69
-#: ../../addon/facebook/facebook.php:404 ../../addon/nsfw/nsfw.php:53
-#: ../../addon/randplace/randplace.php:178 ../../addon/piwik/piwik.php:81
-#: ../../addon/wppost/wppost.php:101 ../../include/conversation.php:434
-msgid "Submit"
-msgstr "Envoyer"
+#: ../../include/nav.php:142
+msgid "Channel Locator"
+msgstr "Localisation de canaux"
 
-#: ../../mod/dirfind.php:23
-msgid "People Search"
-msgstr "Recherche de personnes"
+#: ../../include/nav.php:153
+msgid "Matrix"
+msgstr "Matrice"
 
-#: ../../mod/dirfind.php:57 ../../mod/match.php:57
-msgid "No matches"
-msgstr "Aucune correspondance"
+#: ../../include/nav.php:153
+msgid "Your matrix"
+msgstr "Votre matrice"
 
-#: ../../mod/wall_upload.php:56 ../../mod/profile_photo.php:113
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "L'image dépasse la taille limite de %d"
+#: ../../include/nav.php:154
+msgid "Mark all matrix notifications seen"
+msgstr "Marquer toutes les notifications de la matrice comme vues"
 
-#: ../../mod/wall_upload.php:65 ../../mod/profile_photo.php:122
-#: ../../mod/photos.php:647
-msgid "Unable to process image."
-msgstr "Impossible de traiter l'image."
+#: ../../include/nav.php:156
+msgid "Channel Home"
+msgstr "Mon canal"
 
-#: ../../mod/wall_upload.php:81 ../../mod/wall_upload.php:90
-#: ../../mod/wall_upload.php:97 ../../mod/item.php:299
-#: ../../include/message.php:82
-msgid "Wall Photos"
-msgstr "Photos du mur"
+#: ../../include/nav.php:156
+msgid "Channel home"
+msgstr "Mon canal"
 
-#: ../../mod/wall_upload.php:84 ../../mod/profile_photo.php:251
-#: ../../mod/photos.php:667
-msgid "Image upload failed."
-msgstr "Le téléversement de l'image a échoué."
+#: ../../include/nav.php:157
+msgid "Mark all channel notifications seen"
+msgstr "Marquer toutes les notifications du canal comme vues"
 
-#: ../../mod/profile.php:105 ../../mod/display.php:66
-msgid "Access to this profile has been restricted."
-msgstr "L'accès au profil a été restreint."
+#: ../../include/nav.php:160
+msgid "Intros"
+msgstr "Introductions"
 
-#: ../../mod/profile.php:127
-msgid "Tips for New Members"
-msgstr "Conseils aux nouveaux"
+#: ../../include/nav.php:160 ../../mod/connections.php:244
+msgid "New Connections"
+msgstr "Nouvelles relations"
 
-#: ../../mod/follow.php:20 ../../mod/dfrn_request.php:340
-msgid "Disallowed profile URL."
-msgstr "URL de profil interdite."
+#: ../../include/nav.php:163
+msgid "Notices"
+msgstr "Notifications"
 
-#: ../../mod/follow.php:39
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux."
+#: ../../include/nav.php:163
+msgid "Notifications"
+msgstr "Notifications"
 
-#: ../../mod/follow.php:40 ../../mod/follow.php:50
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Aucun protocole de communication ni aucun flux n'a pu être découvert."
+#: ../../include/nav.php:164
+msgid "See all notifications"
+msgstr "Voir toutes les notifications"
 
-#: ../../mod/follow.php:48
-msgid "The profile address specified does not provide adequate information."
-msgstr ""
-"L'adresse de profil indiquée ne fournit par les informations adéquates."
+#: ../../include/nav.php:165
+msgid "Mark all system notifications seen"
+msgstr "Marquer toutes les notifications système comme vues"
 
-#: ../../mod/follow.php:52
-msgid "An author or name was not found."
-msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé."
+#: ../../include/nav.php:167
+msgid "Mail"
+msgstr "Messages"
 
-#: ../../mod/follow.php:54
-msgid "No browser URL could be matched to this address."
-msgstr "Aucune URL de navigation ne correspond à cette adresse."
+#: ../../include/nav.php:167
+msgid "Private mail"
+msgstr "Messages privés"
 
-#: ../../mod/follow.php:61
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr ""
-"L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur"
-" ce site."
+#: ../../include/nav.php:168
+msgid "See all private messages"
+msgstr "Voir tous les messages privés"
 
-#: ../../mod/follow.php:66
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr ""
-"Profil limité. Cette personne ne sera pas capable de recevoir des "
-"notifications directes/personnelles de votre part."
+#: ../../include/nav.php:169
+msgid "Mark all private messages seen"
+msgstr "Marquer tous les messages privés comme vus"
 
-#: ../../mod/follow.php:133
-msgid "Unable to retrieve contact information."
-msgstr "Impossible de récupérer les informations du contact."
+#: ../../include/nav.php:170
+msgid "Inbox"
+msgstr "Boîte de réception"
 
-#: ../../mod/follow.php:179
-msgid "following"
-msgstr "following"
+#: ../../include/nav.php:171
+msgid "Outbox"
+msgstr "Boîte d'envoi"
 
-#: ../../mod/profile_photo.php:28
-msgid "Image uploaded but image cropping failed."
-msgstr "Image envoyée, mais impossible de la retailler."
-
-#: ../../mod/profile_photo.php:58 ../../mod/profile_photo.php:65
-#: ../../mod/profile_photo.php:72 ../../mod/profile_photo.php:170
-#: ../../mod/profile_photo.php:246 ../../mod/profile_photo.php:255
-#: ../../mod/photos.php:144 ../../mod/photos.php:591 ../../mod/photos.php:936
-#: ../../mod/photos.php:951 ../../mod/register.php:318
-#: ../../mod/register.php:325 ../../mod/register.php:332
-#: ../../addon/communityhome/communityhome.php:111
-msgid "Profile Photos"
-msgstr "Photos du profil"
+#: ../../include/nav.php:172 ../../include/widgets.php:509
+msgid "New Message"
+msgstr "Nouveau message"
 
-#: ../../mod/profile_photo.php:61 ../../mod/profile_photo.php:68
-#: ../../mod/profile_photo.php:75 ../../mod/profile_photo.php:258
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Réduction de la taille de l'image [%s] échouée."
+#: ../../include/nav.php:175
+msgid "Event Calendar"
+msgstr "Calendrier des événements"
 
-#: ../../mod/profile_photo.php:89
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr ""
-"Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du "
-"navigateur, si d'aventure la nouvelle photo n'apparaissait pas "
-"immédiatement."
+#: ../../include/nav.php:176
+msgid "See all events"
+msgstr "Voir tous les événements"
 
-#: ../../mod/profile_photo.php:99
-msgid "Unable to process image"
-msgstr "Impossible de traiter l'image"
+#: ../../include/nav.php:177
+msgid "Mark all events seen"
+msgstr "Marquer tous les événements comme vus"
 
-#: ../../mod/profile_photo.php:203
-msgid "Upload File:"
-msgstr "Fichier à téléverser:"
+#: ../../include/nav.php:179
+msgid "Channel Select"
+msgstr "Changer de canal"
 
-#: ../../mod/profile_photo.php:204
-msgid "Upload Profile Photo"
-msgstr "Téléverser une photo de profil"
+#: ../../include/nav.php:179
+msgid "Manage Your Channels"
+msgstr "Gérer vos canaux"
 
-#: ../../mod/profile_photo.php:205
-msgid "Upload"
-msgstr "Téléverser"
+#: ../../include/nav.php:181 ../../include/widgets.php:487
+#: ../../mod/admin.php:837 ../../mod/admin.php:1042
+msgid "Settings"
+msgstr "Réglages"
 
-#: ../../mod/profile_photo.php:206 ../../mod/settings.php:686
-msgid "or"
-msgstr "ou"
+#: ../../include/nav.php:181
+msgid "Account/Channel Settings"
+msgstr "Compte/Canal"
 
-#: ../../mod/profile_photo.php:206
-msgid "skip this step"
-msgstr "ignorer cette étape"
+#: ../../include/nav.php:183 ../../mod/connections.php:351
+msgid "Connections"
+msgstr "Relations"
 
-#: ../../mod/profile_photo.php:206
-msgid "select a photo from your photo albums"
-msgstr "choisissez une photo depuis vos albums"
+#: ../../include/nav.php:183
+msgid "Manage/Edit Friends and Connections"
+msgstr "Gérer les amis et relations"
 
-#: ../../mod/profile_photo.php:219
-msgid "Crop Image"
-msgstr "(Re)cadrer l'image"
+#: ../../include/nav.php:190 ../../mod/admin.php:112
+msgid "Admin"
+msgstr "Admin"
 
-#: ../../mod/profile_photo.php:220
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Ajustez le cadre de l'image pour une visualisation optimale."
+#: ../../include/nav.php:190
+msgid "Site Setup and Configuration"
+msgstr "Configuration du site"
 
-#: ../../mod/profile_photo.php:221
-msgid "Done Editing"
-msgstr "Édition terminée"
+#: ../../include/nav.php:216
+msgid "Nothing new here"
+msgstr "Rien de neuf ici"
 
-#: ../../mod/profile_photo.php:249
-msgid "Image uploaded successfully."
-msgstr "Image téléversée avec succès."
+#: ../../include/nav.php:221
+msgid "Please wait..."
+msgstr "Merci de patienter..."
 
-#: ../../mod/home.php:23 ../../addon/communityhome/communityhome.php:179
-#, php-format
-msgid "Welcome to %s"
-msgstr "Bienvenue sur %s"
+#: ../../include/text.php:315
+msgid "prev"
+msgstr "préc."
 
-#: ../../mod/update_community.php:18 ../../mod/update_network.php:22
-#: ../../mod/update_profile.php:41 ../../mod/update_notes.php:41
-msgid "[Embedded content - reload page to view]"
-msgstr "[contenu incorporé - rechargez la page pour le voir]"
+#: ../../include/text.php:317
+msgid "first"
+msgstr "premier"
 
-#: ../../mod/wall_attach.php:57
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "La taille du fichier dépasse la limite de %d"
+#: ../../include/text.php:346
+msgid "last"
+msgstr "dernier"
 
-#: ../../mod/wall_attach.php:87 ../../mod/wall_attach.php:98
-msgid "File upload failed."
-msgstr "Le téléversement a échoué."
+#: ../../include/text.php:349
+msgid "next"
+msgstr "suiv."
 
-#: ../../mod/suggest.php:36 ../../include/contact_widgets.php:35
-msgid "Friend Suggestions"
-msgstr "Suggestions d'amitiés/contacts"
+#: ../../include/text.php:361
+msgid "older"
+msgstr "plus ancien"
 
-#: ../../mod/suggest.php:42
-msgid ""
-"No suggestions. This works best when you have more than one contact/friend."
-msgstr ""
-"Pas de suggestion. Ceci fonctionne mieux quand vous avez plus d'un "
-"ami/contact."
+#: ../../include/text.php:363
+msgid "newer"
+msgstr "plus récent"
 
-#: ../../mod/suggest.php:55
-msgid "Ignore/Hide"
-msgstr "Ignorer/cacher"
+#: ../../include/text.php:670
+msgid "No connections"
+msgstr "Sans relations"
 
-#: ../../mod/regmod.php:52 ../../mod/register.php:369
+#: ../../include/text.php:681
 #, php-format
-msgid "Registration details for %s"
-msgstr "Détails d'inscription pour %s"
-
-#: ../../mod/regmod.php:54 ../../mod/register.php:371
-#: ../../mod/register.php:425 ../../mod/dfrn_request.php:553
-#: ../../mod/lostpass.php:44 ../../mod/lostpass.php:106
-#: ../../mod/dfrn_confirm.php:703 ../../include/items.php:1767
-#: ../../include/items.php:2114 ../../include/items.php:2440
-msgid "Administrator"
-msgstr "Administrateur"
+msgid "%d Connection"
+msgid_plural "%d Connections"
+msgstr[0] "%d relation"
+msgstr[1] "%d relations"
 
-#: ../../mod/regmod.php:61
-msgid "Account approved."
-msgstr "Inscription validée."
+#: ../../include/text.php:693
+msgid "View Connections"
+msgstr "Voir les relations"
 
-#: ../../mod/regmod.php:93
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Inscription révoquée pour %s"
+#: ../../include/text.php:754 ../../include/text.php:768
+#: ../../include/widgets.php:173 ../../mod/filer.php:36
+msgid "Save"
+msgstr "Sauver"
 
-#: ../../mod/regmod.php:105
-msgid "Please login."
-msgstr "Merci de vous connecter."
+#: ../../include/text.php:834
+msgid "poke"
+msgstr "tapoter"
 
-#: ../../mod/profiles.php:21 ../../mod/profiles.php:239
-#: ../../mod/profiles.php:344 ../../mod/dfrn_confirm.php:62
-msgid "Profile not found."
-msgstr "Profil introuvable."
+#: ../../include/text.php:834 ../../include/conversation.php:240
+msgid "poked"
+msgstr "tapoté"
 
-#: ../../mod/profiles.php:28
-msgid "Profile Name is required."
-msgstr "Le nom du profil est requis."
+#: ../../include/text.php:835
+msgid "ping"
+msgstr "solliciter"
 
-#: ../../mod/profiles.php:198
-msgid "Profile updated."
-msgstr "Profil mis à jour."
+#: ../../include/text.php:835
+msgid "pinged"
+msgstr "sollicité"
 
-#: ../../mod/profiles.php:256
-msgid "Profile deleted."
-msgstr "Profil supprimé."
+#: ../../include/text.php:836
+msgid "prod"
+msgstr "aiguillonner"
 
-#: ../../mod/profiles.php:272 ../../mod/profiles.php:303
-msgid "Profile-"
-msgstr "Profil-"
+#: ../../include/text.php:836
+msgid "prodded"
+msgstr "aiguillonné"
 
-#: ../../mod/profiles.php:291 ../../mod/profiles.php:330
-msgid "New profile created."
-msgstr "Nouveau profil créé."
+#: ../../include/text.php:837
+msgid "slap"
+msgstr "baffer"
 
-#: ../../mod/profiles.php:309
-msgid "Profile unavailable to clone."
-msgstr "Ce profil ne peut être cloné."
+#: ../../include/text.php:837
+msgid "slapped"
+msgstr "baffé"
 
-#: ../../mod/profiles.php:356
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Cacher ma liste d'amis/contacts des visiteurs de ce profil?"
+#: ../../include/text.php:838
+msgid "finger"
+msgstr "pointer"
 
-#: ../../mod/profiles.php:357 ../../mod/settings.php:629
-#: ../../mod/settings.php:635 ../../mod/settings.php:643
-#: ../../mod/settings.php:647 ../../mod/settings.php:652
-#: ../../mod/settings.php:658 ../../mod/register.php:500
-#: ../../mod/dfrn_request.php:645 ../../mod/api.php:105
-msgid "Yes"
-msgstr "Oui"
+#: ../../include/text.php:838
+msgid "fingered"
+msgstr "pointé"
 
-#: ../../mod/profiles.php:358 ../../mod/settings.php:629
-#: ../../mod/settings.php:635 ../../mod/settings.php:643
-#: ../../mod/settings.php:647 ../../mod/settings.php:652
-#: ../../mod/settings.php:658 ../../mod/register.php:501
-#: ../../mod/dfrn_request.php:646 ../../mod/api.php:106
-msgid "No"
-msgstr "Non"
+#: ../../include/text.php:839
+msgid "rebuff"
+msgstr "rejetter"
 
-#: ../../mod/profiles.php:374
-msgid "Edit Profile Details"
-msgstr "Éditer les détails du profil"
+#: ../../include/text.php:839
+msgid "rebuffed"
+msgstr "rejetté"
 
-#: ../../mod/profiles.php:376
-msgid "View this profile"
-msgstr "Voir ce profil"
+#: ../../include/text.php:851
+msgid "happy"
+msgstr "bonheur"
 
-#: ../../mod/profiles.php:377
-msgid "Create a new profile using these settings"
-msgstr "Créer un nouveau profil en utilisant ces réglages"
+#: ../../include/text.php:852
+msgid "sad"
+msgstr "triste"
 
-#: ../../mod/profiles.php:378
-msgid "Clone this profile"
-msgstr "Cloner ce profil"
+#: ../../include/text.php:853
+msgid "mellow"
+msgstr "mélancolie"
 
-#: ../../mod/profiles.php:379
-msgid "Delete this profile"
-msgstr "Supprimer ce profil"
+#: ../../include/text.php:854
+msgid "tired"
+msgstr "fatigue"
 
-#: ../../mod/profiles.php:380
-msgid "Profile Name:"
-msgstr "Nom du profil:"
+#: ../../include/text.php:855
+msgid "perky"
+msgstr "impertinence"
 
-#: ../../mod/profiles.php:381
-msgid "Your Full Name:"
-msgstr "Votre nom complet:"
+#: ../../include/text.php:856
+msgid "angry"
+msgstr "colère"
 
-#: ../../mod/profiles.php:382
-msgid "Title/Description:"
-msgstr "Titre/Description:"
+#: ../../include/text.php:857
+msgid "stupified"
+msgstr "stupeur"
 
-#: ../../mod/profiles.php:383
-msgid "Your Gender:"
-msgstr "Votre genre:"
+#: ../../include/text.php:858
+msgid "puzzled"
+msgstr "perplexité"
 
-#: ../../mod/profiles.php:384
-#, php-format
-msgid "Birthday (%s):"
-msgstr "Anniversaire (%s):"
+#: ../../include/text.php:859
+msgid "interested"
+msgstr "intérêt"
 
-#: ../../mod/profiles.php:385
-msgid "Street Address:"
-msgstr "Adresse postale:"
+#: ../../include/text.php:860
+msgid "bitter"
+msgstr "amertune"
 
-#: ../../mod/profiles.php:386
-msgid "Locality/City:"
-msgstr "Ville/Localité:"
+#: ../../include/text.php:861
+msgid "cheerful"
+msgstr "entrain"
 
-#: ../../mod/profiles.php:387
-msgid "Postal/Zip Code:"
-msgstr "Code postal:"
+#: ../../include/text.php:862
+msgid "alive"
+msgstr "vivacité"
 
-#: ../../mod/profiles.php:388
-msgid "Country:"
-msgstr "Pays:"
+#: ../../include/text.php:863
+msgid "annoyed"
+msgstr "agaçement"
 
-#: ../../mod/profiles.php:389
-msgid "Region/State:"
-msgstr "Région/État:"
+#: ../../include/text.php:864
+msgid "anxious"
+msgstr "anxiété"
 
-#: ../../mod/profiles.php:390
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Statut marital:"
+#: ../../include/text.php:865
+msgid "cranky"
+msgstr "mauvais poil"
 
-#: ../../mod/profiles.php:391
-msgid "Who: (if applicable)"
-msgstr "Qui: (si pertinent)"
+#: ../../include/text.php:866
+msgid "disturbed"
+msgstr "perturbation"
 
-#: ../../mod/profiles.php:392
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com"
+#: ../../include/text.php:867
+msgid "frustrated"
+msgstr "frustration"
 
-#: ../../mod/profiles.php:393 ../../include/profile_advanced.php:43
-msgid "Sexual Preference:"
-msgstr "Préférence sexuelle:"
+#: ../../include/text.php:868
+msgid "motivated"
+msgstr "motivation"
 
-#: ../../mod/profiles.php:394
-msgid "Homepage URL:"
-msgstr "Page personnelle:"
+#: ../../include/text.php:869
+msgid "relaxed"
+msgstr "détente"
 
-#: ../../mod/profiles.php:395 ../../include/profile_advanced.php:47
-msgid "Political Views:"
-msgstr "Opinions politiques:"
+#: ../../include/text.php:870
+msgid "surprised"
+msgstr "surprise"
 
-#: ../../mod/profiles.php:396
-msgid "Religious Views:"
-msgstr "Opinions religieuses:"
+#: ../../include/text.php:1031
+msgid "Monday"
+msgstr "Lundi"
 
-#: ../../mod/profiles.php:397
-msgid "Public Keywords:"
-msgstr "Mots-clés publics:"
+#: ../../include/text.php:1031
+msgid "Tuesday"
+msgstr "Mardi"
 
-#: ../../mod/profiles.php:398
-msgid "Private Keywords:"
-msgstr "Mots-clés privés:"
+#: ../../include/text.php:1031
+msgid "Wednesday"
+msgstr "Mercredi"
 
-#: ../../mod/profiles.php:399
-msgid "Example: fishing photography software"
-msgstr "Exemple: football dessin programmation"
+#: ../../include/text.php:1031
+msgid "Thursday"
+msgstr "Jeudi"
 
-#: ../../mod/profiles.php:400
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr ""
-"(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par "
-"autrui)"
+#: ../../include/text.php:1031
+msgid "Friday"
+msgstr "Vendredi"
 
-#: ../../mod/profiles.php:401
-msgid "(Used for searching profiles, never shown to others)"
-msgstr ""
-"(Utilisés pour rechercher dans les profils, ne seront jamais montrés à "
-"autrui)"
+#: ../../include/text.php:1031
+msgid "Saturday"
+msgstr "Samedi"
 
-#: ../../mod/profiles.php:402
-msgid "Tell us about yourself..."
-msgstr "Parlez-nous de vous..."
+#: ../../include/text.php:1031
+msgid "Sunday"
+msgstr "Dimanche"
 
-#: ../../mod/profiles.php:403
-msgid "Hobbies/Interests"
-msgstr "Passe-temps/Centres d'intérêt"
+#: ../../include/text.php:1035
+msgid "January"
+msgstr "Janvier"
 
-#: ../../mod/profiles.php:404
-msgid "Contact information and Social Networks"
-msgstr "Coordonées/Réseaux sociaux"
+#: ../../include/text.php:1035
+msgid "February"
+msgstr "Février"
 
-#: ../../mod/profiles.php:405
-msgid "Musical interests"
-msgstr "Goûts musicaux"
+#: ../../include/text.php:1035
+msgid "March"
+msgstr "Mars"
 
-#: ../../mod/profiles.php:406
-msgid "Books, literature"
-msgstr "Lectures"
+#: ../../include/text.php:1035
+msgid "April"
+msgstr "Avril"
 
-#: ../../mod/profiles.php:407
-msgid "Television"
-msgstr "Télévision"
+#: ../../include/text.php:1035
+msgid "May"
+msgstr "Mai"
 
-#: ../../mod/profiles.php:408
-msgid "Film/dance/culture/entertainment"
-msgstr "Cinéma/Danse/Culture/Divertissement"
+#: ../../include/text.php:1035
+msgid "June"
+msgstr "Juin"
 
-#: ../../mod/profiles.php:409
-msgid "Love/romance"
-msgstr "Amour/Romance"
+#: ../../include/text.php:1035
+msgid "July"
+msgstr "Juillet"
 
-#: ../../mod/profiles.php:410
-msgid "Work/employment"
-msgstr "Activité professionnelle/Occupation"
+#: ../../include/text.php:1035
+msgid "August"
+msgstr "Août"
 
-#: ../../mod/profiles.php:411
-msgid "School/education"
-msgstr "Études/Formation"
+#: ../../include/text.php:1035
+msgid "September"
+msgstr "Septembre"
 
-#: ../../mod/profiles.php:416
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr ""
-"Ceci est votre profil <strong>public</strong>.<br />Il <strong>peut</strong>"
-" être visible par n'importe quel utilisateur d'Internet."
+#: ../../include/text.php:1035
+msgid "October"
+msgstr "Octobre"
 
-#: ../../mod/profiles.php:426 ../../mod/directory.php:122
-msgid "Age: "
-msgstr "Age: "
+#: ../../include/text.php:1035
+msgid "November"
+msgstr "Novembre"
 
-#: ../../mod/profiles.php:461
-msgid "Edit/Manage Profiles"
-msgstr "Editer/gérer les profils"
+#: ../../include/text.php:1035
+msgid "December"
+msgstr "Décembre"
 
-#: ../../mod/notice.php:15 ../../mod/display.php:28 ../../mod/display.php:115
-#: ../../mod/viewsrc.php:15 ../../mod/admin.php:111 ../../mod/admin.php:502
-#: ../../include/items.php:2786
-msgid "Item not found."
-msgstr "Élément introuvable."
+#: ../../include/text.php:1113
+msgid "unknown.???"
+msgstr "inconnu.???"
 
-#: ../../mod/settings.php:9 ../../mod/photos.php:62
-msgid "everybody"
-msgstr "tout le monde"
+#: ../../include/text.php:1114
+msgid "bytes"
+msgstr "octets"
 
-#: ../../mod/settings.php:67
-msgid "Missing some important data!"
-msgstr "Il manque certaines informations importantes!"
+#: ../../include/text.php:1149
+msgid "remove category"
+msgstr "suppr. catégorie"
 
-#: ../../mod/settings.php:70 ../../mod/settings.php:446 ../../mod/admin.php:62
-msgid "Update"
-msgstr "Mises-à-jour"
+#: ../../include/text.php:1171
+msgid "remove from file"
+msgstr "supprimer du fichier"
 
-#: ../../mod/settings.php:165
-msgid "Failed to connect with email account using the settings provided."
-msgstr "Impossible de se connecter au compte courriel configuré."
+#: ../../include/text.php:1229 ../../include/text.php:1241
+msgid "Click to open/close"
+msgstr "Cliquer pour ouvrir/fermer"
 
-#: ../../mod/settings.php:170
-msgid "Email settings updated."
-msgstr "Réglages de courriel mis-à-jour."
+#: ../../include/text.php:1417 ../../mod/events.php:332
+msgid "link to source"
+msgstr "lien vers source"
 
-#: ../../mod/settings.php:188
-msgid "Passwords do not match. Password unchanged."
-msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué."
+#: ../../include/text.php:1436
+msgid "Select a page layout: "
+msgstr "Choisir une mise en page&nbsp;:"
 
-#: ../../mod/settings.php:193
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Les mots de passe vides sont interdits. Aucun changement appliqué."
+#: ../../include/text.php:1439 ../../include/text.php:1504
+msgid "default"
+msgstr "défaut"
 
-#: ../../mod/settings.php:204
-msgid "Password changed."
-msgstr "Mots de passe changés."
+#: ../../include/text.php:1475
+msgid "Page content type: "
+msgstr "Type de contenu&nbsp;:"
 
-#: ../../mod/settings.php:206
-msgid "Password update failed. Please try again."
-msgstr "Le changement de mot de passe a échoué. Merci de recommencer."
+#: ../../include/text.php:1516
+msgid "Select an alternate language"
+msgstr "Choisir une langue alternative"
 
-#: ../../mod/settings.php:253
-msgid " Please use a shorter name."
-msgstr " Merci d'utiliser un nom plus court."
+#: ../../include/text.php:1637 ../../include/conversation.php:117
+#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:45
+msgid "photo"
+msgstr "photo"
 
-#: ../../mod/settings.php:255
-msgid " Name too short."
-msgstr " Nom trop court."
+#: ../../include/text.php:1640 ../../include/conversation.php:120
+#: ../../mod/tagger.php:49
+msgid "event"
+msgstr "événement"
 
-#: ../../mod/settings.php:261
-msgid " Not valid email."
-msgstr " Email invalide."
+#: ../../include/text.php:1643 ../../include/conversation.php:145
+#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:53
+msgid "status"
+msgstr "statut"
 
-#: ../../mod/settings.php:263
-msgid " Cannot change to that email."
-msgstr " Impossible de changer pour cet email."
+#: ../../include/text.php:1645 ../../include/conversation.php:147
+#: ../../mod/tagger.php:55
+msgid "comment"
+msgstr "commentaire"
 
-#: ../../mod/settings.php:323 ../../addon/twitter/twitter.php:294
-#: ../../addon/impressum/impressum.php:64
-#: ../../addon/facebook/facebook.php:320 ../../addon/piwik/piwik.php:94
-msgid "Settings updated."
-msgstr "Réglages mis à jour."
+#: ../../include/text.php:1650
+msgid "activity"
+msgstr "activité"
 
-#: ../../mod/settings.php:382 ../../include/nav.php:128
-msgid "Account settings"
-msgstr "Réglages du compte"
+#: ../../include/text.php:1907
+msgid "Design"
+msgstr "Conception"
 
-#: ../../mod/settings.php:387
-msgid "Connector settings"
-msgstr "Réglages des connecteurs"
+#: ../../include/text.php:1909
+msgid "Blocks"
+msgstr "Blocs"
 
-#: ../../mod/settings.php:392
-msgid "Plugin settings"
-msgstr "Réglages des extensions"
+#: ../../include/text.php:1910
+msgid "Menus"
+msgstr "Menus"
 
-#: ../../mod/settings.php:397
-msgid "Connections"
-msgstr "Connexions"
+#: ../../include/text.php:1911
+msgid "Layouts"
+msgstr "Mises-en-page"
 
-#: ../../mod/settings.php:402
-msgid "Export personal data"
-msgstr "Exporter les données personnelles"
+#: ../../include/text.php:1912
+msgid "Pages"
+msgstr "Pages"
 
-#: ../../mod/settings.php:419 ../../mod/settings.php:445
-#: ../../mod/settings.php:478
-msgid "Add application"
-msgstr "Ajouter une application"
+#: ../../include/widgets.php:29 ../../include/contact_widgets.php:87
+msgid "Categories"
+msgstr "Catégories"
 
-#: ../../mod/settings.php:421 ../../mod/settings.php:447
-#: ../../mod/dfrn_request.php:655 ../../mod/tagrm.php:11
-#: ../../mod/tagrm.php:94 ../../addon/js_upload/js_upload.php:45
-msgid "Cancel"
-msgstr "Annuler"
+#: ../../include/widgets.php:115 ../../include/widgets.php:155
+#: ../../include/Contact.php:104 ../../include/identity.php:628
+#: ../../mod/directory.php:183 ../../mod/match.php:62
+#: ../../mod/dirprofile.php:170 ../../mod/suggest.php:51
+msgid "Connect"
+msgstr "Relier"
 
-#: ../../mod/settings.php:422 ../../mod/settings.php:448
-#: ../../mod/crepair.php:144 ../../mod/admin.php:464 ../../mod/admin.php:473
-msgid "Name"
-msgstr "Nom"
+#: ../../include/widgets.php:117 ../../mod/suggest.php:53
+msgid "Ignore/Hide"
+msgstr "Ignorer/Cacher"
 
-#: ../../mod/settings.php:423 ../../mod/settings.php:449
-#: ../../addon/statusnet/statusnet.php:480
-msgid "Consumer Key"
-msgstr "Clé utilisateur"
+#: ../../include/widgets.php:123 ../../mod/connections.php:238
+msgid "Suggestions"
+msgstr "Suggestion"
 
-#: ../../mod/settings.php:424 ../../mod/settings.php:450
-#: ../../addon/statusnet/statusnet.php:479
-msgid "Consumer Secret"
-msgstr "Secret utilisateur"
+#: ../../include/widgets.php:124
+msgid "See more..."
+msgstr "Voir plus..."
 
-#: ../../mod/settings.php:425 ../../mod/settings.php:451
-msgid "Redirect"
-msgstr "Rediriger"
+#: ../../include/widgets.php:146
+#, php-format
+msgid "You have %1$.0f of %2$.0f allowed connections."
+msgstr "Vous avez %1$.0f des %2$.0f relations autorisées."
 
-#: ../../mod/settings.php:426 ../../mod/settings.php:452
-msgid "Icon url"
-msgstr "URL de l'icône"
+#: ../../include/widgets.php:152
+msgid "Add New Connection"
+msgstr "Ajouter une nouvelle relation"
 
-#: ../../mod/settings.php:437
-msgid "You can't edit this application."
-msgstr "Vous ne pouvez pas éditer cette application."
+#: ../../include/widgets.php:153
+msgid "Enter the channel address"
+msgstr "Adresse du canal"
 
-#: ../../mod/settings.php:477
-msgid "Connected Apps"
-msgstr "Applications connectées"
+#: ../../include/widgets.php:154
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Exemple&nbsp;: bob@exemple.com, http://exemple.com/barbara"
 
-#: ../../mod/settings.php:479 ../../mod/editpost.php:90
-#: ../../include/conversation.php:441 ../../include/group.php:190
-msgid "Edit"
-msgstr "Éditer"
+#: ../../include/widgets.php:171
+msgid "Notes"
+msgstr "Notes"
 
-#: ../../mod/settings.php:480 ../../mod/photos.php:1300
-#: ../../mod/admin.php:468 ../../mod/group.php:154
-#: ../../include/conversation.php:211 ../../include/conversation.php:454
-msgid "Delete"
-msgstr "Supprimer"
+#: ../../include/widgets.php:243
+msgid "Remove term"
+msgstr "Retirer le terme"
 
-#: ../../mod/settings.php:481
-msgid "Client key starts with"
-msgstr "La clé cliente commence par"
+#: ../../include/widgets.php:252 ../../include/features.php:52
+msgid "Saved Searches"
+msgstr "Recherches sauvées"
 
-#: ../../mod/settings.php:482
-msgid "No name"
-msgstr "Sans nom"
+#: ../../include/widgets.php:253 ../../include/group.php:290
+msgid "add"
+msgstr "ajouter"
 
-#: ../../mod/settings.php:483
-msgid "Remove authorization"
-msgstr "Révoquer l'autorisation"
+#: ../../include/widgets.php:283 ../../include/features.php:66
+#: ../../include/contact_widgets.php:53
+msgid "Saved Folders"
+msgstr "Dossiers sauvegardés"
 
-#: ../../mod/settings.php:495
-msgid "No Plugin settings configured"
-msgstr "Pas de réglages d'extensions configurés"
+#: ../../include/widgets.php:286 ../../include/contact_widgets.php:56
+#: ../../include/contact_widgets.php:90
+msgid "Everything"
+msgstr "Tout"
 
-#: ../../mod/settings.php:502 ../../addon/widgets/widgets.php:122
-msgid "Plugin Settings"
-msgstr "Réglages des extensions"
+#: ../../include/widgets.php:318 ../../include/items.php:3613
+msgid "Archives"
+msgstr "Archives"
 
-#: ../../mod/settings.php:515 ../../mod/settings.php:516
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr "Le support natif pour la connectivité %s est %s"
+#: ../../include/widgets.php:370
+msgid "Refresh"
+msgstr "Actualiser"
 
-#: ../../mod/settings.php:515 ../../mod/dfrn_request.php:651
-#: ../../include/contact_selectors.php:78
-msgid "Diaspora"
-msgstr "Diaspora"
+#: ../../include/widgets.php:371 ../../mod/connedit.php:389
+msgid "Me"
+msgstr "Moi"
 
-#: ../../mod/settings.php:515 ../../mod/settings.php:516
-msgid "enabled"
-msgstr "activé"
+#: ../../include/widgets.php:372 ../../mod/connedit.php:391
+msgid "Best Friends"
+msgstr "Mes meilleurs amis"
 
-#: ../../mod/settings.php:515 ../../mod/settings.php:516
-msgid "disabled"
-msgstr "désactivé"
+#: ../../include/widgets.php:373 ../../include/identity.php:310
+#: ../../include/profile_selectors.php:42 ../../mod/connedit.php:392
+msgid "Friends"
+msgstr "Amis"
 
-#: ../../mod/settings.php:516
-msgid "StatusNet"
-msgstr "StatusNet"
+#: ../../include/widgets.php:374
+msgid "Co-workers"
+msgstr "Mes collègues"
 
-#: ../../mod/settings.php:542
-msgid "Connector Settings"
-msgstr "Réglages des connecteurs"
+#: ../../include/widgets.php:375 ../../mod/connedit.php:393
+msgid "Former Friends"
+msgstr "Mes anciens amis"
 
-#: ../../mod/settings.php:548
-msgid "Email/Mailbox Setup"
-msgstr "Réglages de courriel/boîte à lettre"
+#: ../../include/widgets.php:376 ../../mod/connedit.php:394
+msgid "Acquaintances"
+msgstr "Mes accointances"
 
-#: ../../mod/settings.php:549
-msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
-msgstr ""
-"Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), "
-"merci de nous indiquer comment vous connecter à votre boîte."
+#: ../../include/widgets.php:377
+msgid "Everybody"
+msgstr "Tout le monde"
 
-#: ../../mod/settings.php:550
-msgid "Last successful email check:"
-msgstr "Dernière vérification réussie des courriels:"
+#: ../../include/widgets.php:409
+msgid "Account settings"
+msgstr "Compte"
 
-#: ../../mod/settings.php:551
-msgid "Email access is disabled on this site."
-msgstr "L'accès courriel est désactivé sur ce site."
+#: ../../include/widgets.php:415
+msgid "Channel settings"
+msgstr "Canal"
 
-#: ../../mod/settings.php:552
-msgid "IMAP server name:"
-msgstr "Nom du serveur IMAP:"
+#: ../../include/widgets.php:421
+msgid "Additional features"
+msgstr "Fonc. supplémentaires"
 
-#: ../../mod/settings.php:553
-msgid "IMAP port:"
-msgstr "Port IMAP:"
+#: ../../include/widgets.php:427
+msgid "Feature settings"
+msgstr "Fonctionnalités"
 
-#: ../../mod/settings.php:554
-msgid "Security:"
-msgstr "Sécurité:"
+#: ../../include/widgets.php:433
+msgid "Display settings"
+msgstr "Affichage"
 
-#: ../../mod/settings.php:554
-msgid "None"
-msgstr "Aucun(e)"
+#: ../../include/widgets.php:439
+msgid "Connected apps"
+msgstr "Applications"
 
-#: ../../mod/settings.php:555
-msgid "Email login name:"
-msgstr "Nom de connexion:"
+#: ../../include/widgets.php:445
+msgid "Export channel"
+msgstr "Exporter canal"
 
-#: ../../mod/settings.php:556
-msgid "Email password:"
-msgstr "Mot de passe:"
+#: ../../include/widgets.php:457
+msgid "Automatic Permissions (Advanced)"
+msgstr "Permissions automatiques (avancé)"
 
-#: ../../mod/settings.php:557
-msgid "Reply-to address:"
-msgstr "Adresse de réponse:"
+#: ../../include/widgets.php:467
+msgid "Premium Channel Settings"
+msgstr "Canal Premium"
 
-#: ../../mod/settings.php:558
-msgid "Send public posts to all email contacts:"
-msgstr "Les notices publiques vont à tous les contacts courriel:"
+#: ../../include/widgets.php:476 ../../include/features.php:43
+#: ../../mod/sources.php:88
+msgid "Channel Sources"
+msgstr "Canaux sources"
 
-#: ../../mod/settings.php:596 ../../mod/admin.php:126 ../../mod/admin.php:443
-msgid "Normal Account"
-msgstr "Compte normal"
+#: ../../include/widgets.php:504
+msgid "Check Mail"
+msgstr "Vérifier courriel"
 
-#: ../../mod/settings.php:597
-msgid "This account is a normal personal profile"
-msgstr ""
-"Ce compte correspond à un profil normal, pour une seule personne (physique, "
-"généralement)"
+#: ../../include/widgets.php:585
+msgid "Chat Rooms"
+msgstr "Salons"
 
-#: ../../mod/settings.php:600 ../../mod/admin.php:127 ../../mod/admin.php:444
-msgid "Soapbox Account"
-msgstr "Compte \"boîte à savon\""
+#: ../../include/Contact.php:120
+msgid "New window"
+msgstr "Nouvelle fenêtre"
 
-#: ../../mod/settings.php:601
-msgid "Automatically approve all connection/friend requests as read-only fans"
-msgstr ""
-"Accepter automatiquement toutes les demandes d'amitié/connexion comme étant "
-"des fans 'en lecture seule'"
+#: ../../include/Contact.php:121
+msgid "Open the selected location in a different window or browser tab"
+msgstr "Ouvrir l'emplacement dans une fenêtre (ou un onglet) différent"
 
-#: ../../mod/settings.php:604 ../../mod/admin.php:128 ../../mod/admin.php:445
-msgid "Community/Celebrity Account"
-msgstr "Compte de communauté/célébrité"
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Fonctionnalités générales"
 
-#: ../../mod/settings.php:605
-msgid ""
-"Automatically approve all connection/friend requests as read-write fans"
-msgstr ""
-"Accepter automatiquement toutes les demandes d'amitié/connexion comme étant "
-"des fans en 'lecture/écriture'"
+#: ../../include/features.php:25
+msgid "Content Expiration"
+msgstr "Expiration de contenu"
 
-#: ../../mod/settings.php:608 ../../mod/admin.php:129 ../../mod/admin.php:446
-msgid "Automatic Friend Account"
-msgstr "Compte auto-amical"
+#: ../../include/features.php:25
+msgid "Remove posts/comments and/or private messages at a future time"
+msgstr "Supprimer les contributions/commentaires et/ou messages privés à un moment futur"
 
-#: ../../mod/settings.php:609
-msgid "Automatically approve all connection/friend requests as friends"
-msgstr ""
-"Accepter automatiquement toutes les demandes d'amitié/connexion comme étant "
-"des amis"
+#: ../../include/features.php:26
+msgid "Multiple Profiles"
+msgstr "Profils multiples"
 
-#: ../../mod/settings.php:619
-msgid "OpenID:"
-msgstr "OpenID:"
+#: ../../include/features.php:26
+msgid "Ability to create multiple profiles"
+msgstr "Possibilité de créer plusieurs profils"
 
-#: ../../mod/settings.php:619
-msgid "(Optional) Allow this OpenID to login to this account."
-msgstr ""
-"&amp;nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte."
+#: ../../include/features.php:27
+msgid "Web Pages"
+msgstr "Pages web"
 
-#: ../../mod/settings.php:629
-msgid "Publish your default profile in your local site directory?"
-msgstr "Publier votre profil par défaut sur l'annuaire local de ce site?"
+#: ../../include/features.php:27
+msgid "Provide managed web pages on your channel"
+msgstr "Fournir des pages web, sous votre contrôle, sur votre canal"
 
-#: ../../mod/settings.php:635
-msgid "Publish your default profile in the global social directory?"
-msgstr "Publier votre profil par défaut sur l'annuaire social global?"
+#: ../../include/features.php:28
+msgid "Private Notes"
+msgstr "Notes privées"
 
-#: ../../mod/settings.php:643
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr ""
-"Cacher votre liste de contacts/amis des visiteurs de votre profil par "
-"défaut?"
+#: ../../include/features.php:28
+msgid "Enables a tool to store notes and reminders"
+msgstr "Active un outil pour stocker notes et mémos"
 
-#: ../../mod/settings.php:647
-msgid "Hide profile details and all your messages from unknown viewers?"
-msgstr ""
-"Masquer les détails du profil ainsi que tous vos messages aux visiteurs "
-"inconnus?"
+#: ../../include/features.php:33
+msgid "Extended Identity Sharing"
+msgstr "Partage d'identité étendue"
 
-#: ../../mod/settings.php:652
-msgid "Allow friends to post to your profile page?"
-msgstr "Autoriser vos amis à publier sur votre profil?"
+#: ../../include/features.php:33
+msgid ""
+"Share your identity with all websites on the internet. When disabled, "
+"identity is only shared with sites in the matrix."
+msgstr "Partage votre identité avec tous les sites web du Monde. Si décoché, l'identité sera seulement partagée avec les sites de la matrice."
 
-#: ../../mod/settings.php:658
-msgid "Allow friends to tag your posts?"
-msgstr "Autoriser vos amis à tagguer vos notices?"
+#: ../../include/features.php:34
+msgid "Expert Mode"
+msgstr "Mode expert"
 
-#: ../../mod/settings.php:667
-msgid "Profile is <strong>not published</strong>."
-msgstr "Ce profil n'est <strong>pas publié</strong>."
+#: ../../include/features.php:34
+msgid "Enable Expert Mode to provide advanced configuration options"
+msgstr "Activer le mode expert pour accéder aux options avancées"
 
-#: ../../mod/settings.php:691
-msgid "Your Identity Address is"
-msgstr "L'adresse de votre identité est"
+#: ../../include/features.php:35
+msgid "Premium Channel"
+msgstr "Canal Premium"
 
-#: ../../mod/settings.php:705
-msgid "Account Settings"
-msgstr "Réglages du compte"
+#: ../../include/features.php:35
+msgid ""
+"Allows you to set restrictions and terms on those that connect with your "
+"channel"
+msgstr "Vous permet d'appliquer des règles et restrictions aux relations de votre canal"
 
-#: ../../mod/settings.php:713
-msgid "Password Settings"
-msgstr "Réglages de mot de passe"
+#: ../../include/features.php:40
+msgid "Post Composition Features"
+msgstr "Fonctionnalités de composition"
 
-#: ../../mod/settings.php:714
-msgid "New Password:"
-msgstr "Nouveau mot de passe:"
+#: ../../include/features.php:41
+msgid "Richtext Editor"
+msgstr "Éditeur enrichi"
 
-#: ../../mod/settings.php:715
-msgid "Confirm:"
-msgstr "Confirmer:"
+#: ../../include/features.php:41
+msgid "Enable richtext editor"
+msgstr "Activer l'éditeur de texte enrichi"
 
-#: ../../mod/settings.php:715
-msgid "Leave password fields blank unless changing"
-msgstr ""
-"Laissez les champs de mot de passe vierges, sauf si vous désirez les changer"
+#: ../../include/features.php:42
+msgid "Post Preview"
+msgstr "Aperçu avant publication"
 
-#: ../../mod/settings.php:719
-msgid "Basic Settings"
-msgstr "Réglages basiques"
+#: ../../include/features.php:42
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Permettre de voir les publications/commentaires avant de les valider"
 
-#: ../../mod/settings.php:720 ../../include/profile_advanced.php:15
-msgid "Full Name:"
-msgstr "Nom complet:"
+#: ../../include/features.php:43
+msgid "Automatically import channel content from other channels or feeds"
+msgstr "Importe automatiquement le contenus d'autres canaux ou flux dans le canal en cours"
 
-#: ../../mod/settings.php:721
-msgid "Email Address:"
-msgstr "Adresse courriel:"
+#: ../../include/features.php:44
+msgid "Even More Encryption"
+msgstr "Encore plus de chiffrement"
 
-#: ../../mod/settings.php:722
-msgid "Your Timezone:"
-msgstr "Votre fuseau horaire:"
+#: ../../include/features.php:44
+msgid ""
+"Allow optional encryption of content end-to-end with a shared secret key"
+msgstr "Permettre le chiffrement - optionnel - du contenu de bout-en-bout au moyen d'un secret partagé"
 
-#: ../../mod/settings.php:723
-msgid "Default Post Location:"
-msgstr "Publication par défaut depuis :"
+#: ../../include/features.php:49
+msgid "Network and Stream Filtering"
+msgstr "Filtrage du réseau et des flux"
 
-#: ../../mod/settings.php:724
-msgid "Use Browser Location:"
-msgstr "Utiliser la localisation géographique du navigateur:"
+#: ../../include/features.php:50
+msgid "Search by Date"
+msgstr "Chercher par date"
 
-#: ../../mod/settings.php:725
-msgid "Display Theme:"
-msgstr "Thème d'affichage:"
+#: ../../include/features.php:50
+msgid "Ability to select posts by date ranges"
+msgstr "Pouvoir choisir des publications par date"
 
-#: ../../mod/settings.php:729
-msgid "Security and Privacy Settings"
-msgstr "Réglages de sécurité et vie privée"
+#: ../../include/features.php:51
+msgid "Collections Filter"
+msgstr "Filtre des collections"
 
-#: ../../mod/settings.php:731
-msgid "Maximum Friend Requests/Day:"
-msgstr "Nombre maximal de requêtes d'amitié/jour:"
+#: ../../include/features.php:51
+msgid "Enable widget to display Network posts only from selected collections"
+msgstr "Activer une boîte qui permet de filtrer les publications du réseau parmi les collections selectionnées"
 
-#: ../../mod/settings.php:731
-msgid "(to prevent spam abuse)"
-msgstr "(pour limiter l'impact du spam)"
+#: ../../include/features.php:52
+msgid "Save search terms for re-use"
+msgstr "Sauver des termes de recherche pour utilisation ultérieure"
 
-#: ../../mod/settings.php:732
-msgid "Default Post Permissions"
-msgstr "Permissions par défaut sur les articles"
+#: ../../include/features.php:53
+msgid "Network Personal Tab"
+msgstr "Onglet \"réseau personnel\""
 
-#: ../../mod/settings.php:733
-msgid "(click to open/close)"
-msgstr "(cliquer pour ouvrir/fermer)"
+#: ../../include/features.php:53
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Activer un onglet affichant seulement les publications du réseau sur lesquelles vous êtes intervenu"
 
-#: ../../mod/settings.php:739
-msgid "Automatically expire posts after days:"
-msgstr "Les notices expirent automatiquement au bout de (en jours):"
+#: ../../include/features.php:54
+msgid "Network New Tab"
+msgstr "Onglet \"nouveautés réseau\""
 
-#: ../../mod/settings.php:739
-msgid "If empty, posts will not expire. Expired posts will be deleted"
-msgstr ""
-"Si elles sont vides, les notices n'expireront pas. Les notices expirées "
-"seront supprimées"
+#: ../../include/features.php:54
+msgid "Enable tab to display all new Network activity"
+msgstr "Activer un onglet avec toute activité récente sur le réseau"
 
-#: ../../mod/settings.php:748
-msgid "Notification Settings"
-msgstr "Réglages de notification"
+#: ../../include/features.php:55
+msgid "Affinity Tool"
+msgstr "Gérer l'affinité"
 
-#: ../../mod/settings.php:749
-msgid "Send a notification email when:"
-msgstr "Envoyer un courriel de notification quand:"
+#: ../../include/features.php:55
+msgid "Filter stream activity by depth of relationships"
+msgstr "Filtrer le flux d'activité en fonction de la profondeur des relations"
 
-#: ../../mod/settings.php:750
-msgid "You receive an introduction"
-msgstr "Vous recevez une introduction"
+#: ../../include/features.php:56
+msgid "Suggest Channels"
+msgstr "Suggérer des canaux"
 
-#: ../../mod/settings.php:751
-msgid "Your introductions are confirmed"
-msgstr "Vos introductions sont confirmées"
+#: ../../include/features.php:56
+msgid "Show channel suggestions"
+msgstr "Montrer les suggestions de canaux"
 
-#: ../../mod/settings.php:752
-msgid "Someone writes on your profile wall"
-msgstr "Quelqu'un écrit sur votre mur"
+#: ../../include/features.php:61
+msgid "Post/Comment Tools"
+msgstr "Gérer les publications/commentaires"
 
-#: ../../mod/settings.php:753
-msgid "Someone writes a followup comment"
-msgstr "Quelqu'un vous commente"
+#: ../../include/features.php:63
+msgid "Edit Sent Posts"
+msgstr "Éditer les publications envoyées"
 
-#: ../../mod/settings.php:754
-msgid "You receive a private message"
-msgstr "Vous recevez un message privé"
+#: ../../include/features.php:63
+msgid "Edit and correct posts and comments after sending"
+msgstr "Permettre d'éditer/corriger les publications/commentaires après envoi"
 
-#: ../../mod/settings.php:758
-msgid "Advanced Page Settings"
-msgstr "Réglages avancés"
+#: ../../include/features.php:64
+msgid "Tagging"
+msgstr "Marquage"
 
-#: ../../mod/search.php:13 ../../mod/network.php:75
-msgid "Saved Searches"
-msgstr "Recherches"
+#: ../../include/features.php:64
+msgid "Ability to tag existing posts"
+msgstr "Permettre de marquer les publications existantes"
 
-#: ../../mod/search.php:16 ../../mod/network.php:81
-msgid "Remove term"
-msgstr "Retirer le terme"
+#: ../../include/features.php:65
+msgid "Post Categories"
+msgstr "Catégoriser les publications"
 
-#: ../../mod/search.php:71 ../../mod/photos.php:752 ../../mod/display.php:7
-#: ../../mod/dfrn_request.php:594 ../../mod/directory.php:31
-#: ../../mod/viewconnections.php:16 ../../mod/community.php:16
-msgid "Public access denied."
-msgstr "Accès public refusé."
+#: ../../include/features.php:65
+msgid "Add categories to your posts"
+msgstr "Ajouter des catégories à vos publications"
 
-#: ../../mod/search.php:83
-msgid "Search This Site"
-msgstr "Rechercher sur ce site"
+#: ../../include/features.php:66
+msgid "Ability to file posts under folders"
+msgstr "Permettre de classer les publications dans des dossiers"
 
-#: ../../mod/search.php:125 ../../mod/community.php:60
-msgid "No results."
-msgstr "Aucun résultat."
+#: ../../include/features.php:67
+msgid "Dislike Posts"
+msgstr "Détester une publication"
 
-#: ../../mod/photos.php:42
-msgid "Photo Albums"
-msgstr "Albums photo"
+#: ../../include/features.php:67
+msgid "Ability to dislike posts/comments"
+msgstr "Pouvoir détester les publications/commentaires"
 
-#: ../../mod/photos.php:50 ../../mod/photos.php:144 ../../mod/photos.php:866
-#: ../../mod/photos.php:936 ../../mod/photos.php:951 ../../mod/photos.php:1351
-#: ../../mod/photos.php:1363 ../../addon/communityhome/communityhome.php:110
-msgid "Contact Photos"
-msgstr "Photos du contact"
+#: ../../include/features.php:68
+msgid "Star Posts"
+msgstr "Mettre en avant les publications"
 
-#: ../../mod/photos.php:133
-msgid "Contact information unavailable"
-msgstr "Informations de contact indisponibles"
+#: ../../include/features.php:68
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Pouvoir marquer certaines publications d'une étoile"
 
-#: ../../mod/photos.php:154
-msgid "Album not found."
-msgstr "Album introuvable."
+#: ../../include/features.php:69
+msgid "Tag Cloud"
+msgstr "Nuage de tags"
 
-#: ../../mod/photos.php:172 ../../mod/photos.php:945
-msgid "Delete Album"
-msgstr "Effacer l'album"
+#: ../../include/features.php:69
+msgid "Provide a personal tag cloud on your channel page"
+msgstr "Afficher un nuage de vos tags sur votre canal"
 
-#: ../../mod/photos.php:235 ../../mod/photos.php:1164
-msgid "Delete Photo"
-msgstr "Effacer la photo"
+#: ../../include/contact_selectors.php:30
+msgid "Unknown | Not categorised"
+msgstr "Inconnu / Non-classé"
 
-#: ../../mod/photos.php:522
-msgid "was tagged in a"
-msgstr "a été identifié dans"
+#: ../../include/contact_selectors.php:31
+msgid "Block immediately"
+msgstr "Bloquer directement"
 
-#: ../../mod/photos.php:522 ../../mod/tagger.php:70 ../../mod/like.php:127
-#: ../../addon/communityhome/communityhome.php:163
-#: ../../include/conversation.php:31 ../../include/diaspora.php:1211
-msgid "photo"
-msgstr "photo"
+#: ../../include/contact_selectors.php:32
+msgid "Shady, spammer, self-marketer"
+msgstr "Douteux, spammeur, donne dans l'auto-promotion"
 
-#: ../../mod/photos.php:522
-msgid "by"
-msgstr "par"
+#: ../../include/contact_selectors.php:33
+msgid "Known to me, but no opinion"
+msgstr "M'est connu, n'ai pas d'opinion à son sujet"
 
-#: ../../mod/photos.php:625 ../../addon/js_upload/js_upload.php:312
-msgid "Image exceeds size limit of "
-msgstr "L'image dépasse la taille maximale de  "
+#: ../../include/contact_selectors.php:34
+msgid "OK, probably harmless"
+msgstr "OK, probablement anodin"
 
-#: ../../mod/photos.php:633
-msgid "Image file is empty."
-msgstr "Fichier image vide."
+#: ../../include/contact_selectors.php:35
+msgid "Reputable, has my trust"
+msgstr "Réputé, je lui fais confiance"
 
-#: ../../mod/photos.php:762
-msgid "No photos selected"
-msgstr "Aucune photo sélectionnée"
+#: ../../include/contact_selectors.php:54
+msgid "Frequently"
+msgstr "Constamment"
 
-#: ../../mod/photos.php:839
-msgid "Access to this item is restricted."
-msgstr "Accès restreint à cet élément."
+#: ../../include/contact_selectors.php:55
+msgid "Hourly"
+msgstr "Chaque heure"
 
-#: ../../mod/photos.php:893
-msgid "Upload Photos"
-msgstr "Téléverser des photos"
+#: ../../include/contact_selectors.php:56
+msgid "Twice daily"
+msgstr "Deux fois par jour"
 
-#: ../../mod/photos.php:896 ../../mod/photos.php:940
-msgid "New album name: "
-msgstr "Nom du nouvel album: "
+#: ../../include/contact_selectors.php:57
+msgid "Daily"
+msgstr "Chaque jour"
 
-#: ../../mod/photos.php:897
-msgid "or existing album name: "
-msgstr "ou nom d'un album existant: "
+#: ../../include/contact_selectors.php:58
+msgid "Weekly"
+msgstr "Chaque semaine"
 
-#: ../../mod/photos.php:898
-msgid "Do not show a status post for this upload"
-msgstr "Ne pas publier de notice pour cet envoi"
+#: ../../include/contact_selectors.php:59
+msgid "Monthly"
+msgstr "Chaque mois"
 
-#: ../../mod/photos.php:900 ../../mod/photos.php:1159
-msgid "Permissions"
-msgstr "Permissions"
+#: ../../include/contact_selectors.php:74
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../mod/photos.php:955
-msgid "Edit Album"
-msgstr "Éditer l'album"
+#: ../../include/contact_selectors.php:75
+msgid "OStatus"
+msgstr "OStatus"
 
-#: ../../mod/photos.php:965 ../../mod/photos.php:1381
-msgid "View Photo"
-msgstr "Voir la photo"
+#: ../../include/contact_selectors.php:76
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: ../../mod/photos.php:1000
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Interdit. L'accès à cet élément peut avoir été restreint."
+#: ../../include/contact_selectors.php:77 ../../mod/admin.php:741
+#: ../../mod/admin.php:750 ../../boot.php:1426
+msgid "Email"
+msgstr "Courriel"
 
-#: ../../mod/photos.php:1002
-msgid "Photo not available"
-msgstr "Photo indisponible"
+#: ../../include/contact_selectors.php:78
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: ../../mod/photos.php:1052
-msgid "View photo"
-msgstr "Voir photo"
+#: ../../include/contact_selectors.php:79
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../mod/photos.php:1052
-msgid "Edit photo"
-msgstr "Éditer la photo"
+#: ../../include/contact_selectors.php:80
+msgid "Zot!"
+msgstr "Zot!"
 
-#: ../../mod/photos.php:1053
-msgid "Use as profile photo"
-msgstr "Utiliser comme photo de profil"
+#: ../../include/contact_selectors.php:81
+msgid "LinkedIn"
+msgstr "Linkedin"
 
-#: ../../mod/photos.php:1059 ../../include/conversation.php:369
-msgid "Private Message"
-msgstr "Message privé"
+#: ../../include/contact_selectors.php:82
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: ../../mod/photos.php:1070
-msgid "View Full Size"
-msgstr "Voir en taille réelle"
+#: ../../include/contact_selectors.php:83
+msgid "MySpace"
+msgstr "MySpace"
 
-#: ../../mod/photos.php:1138
-msgid "Tags: "
-msgstr "Étiquettes: "
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Divers"
 
-#: ../../mod/photos.php:1141
-msgid "[Remove any tag]"
-msgstr "[Retirer toutes les étiquettes]"
+#: ../../include/datetime.php:152 ../../include/datetime.php:284
+msgid "year"
+msgstr "année"
 
-#: ../../mod/photos.php:1152
-msgid "New album name"
-msgstr "Nom du nouvel album"
+#: ../../include/datetime.php:157 ../../include/datetime.php:285
+msgid "month"
+msgstr "mois"
 
-#: ../../mod/photos.php:1155
-msgid "Caption"
-msgstr "Titre"
+#: ../../include/datetime.php:162 ../../include/datetime.php:287
+msgid "day"
+msgstr "jour"
 
-#: ../../mod/photos.php:1157
-msgid "Add a Tag"
-msgstr "Ajouter une étiquette"
+#: ../../include/datetime.php:275
+msgid "never"
+msgstr "jamais"
 
-#: ../../mod/photos.php:1161
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr ""
-"Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances"
+#: ../../include/datetime.php:281
+msgid "less than a second ago"
+msgstr "à l'instant"
 
-#: ../../mod/photos.php:1181 ../../include/conversation.php:416
-msgid "I like this (toggle)"
-msgstr "I like this (bascule)"
+#: ../../include/datetime.php:284
+msgid "years"
+msgstr "années"
 
-#: ../../mod/photos.php:1182 ../../include/conversation.php:417
-msgid "I don't like this (toggle)"
-msgstr "I don't like this (bascule)"
+#: ../../include/datetime.php:285
+msgid "months"
+msgstr "mois"
 
-#: ../../mod/photos.php:1183 ../../include/conversation.php:814
-msgid "Share"
-msgstr "Partager"
-
-#: ../../mod/photos.php:1184 ../../mod/editpost.php:99
-#: ../../mod/message.php:137 ../../mod/message.php:270
-#: ../../include/conversation.php:251 ../../include/conversation.php:578
-#: ../../include/conversation.php:823
-msgid "Please wait"
-msgstr "Patientez"
+#: ../../include/datetime.php:286
+msgid "week"
+msgstr "semaine"
 
-#: ../../mod/photos.php:1200 ../../mod/photos.php:1239
-#: ../../mod/photos.php:1270 ../../include/conversation.php:431
-msgid "This is you"
-msgstr "C'est vous"
+#: ../../include/datetime.php:286
+msgid "weeks"
+msgstr "semaines"
 
-#: ../../mod/photos.php:1368
-msgid "Recent Photos"
-msgstr "Photos récentes"
+#: ../../include/datetime.php:287
+msgid "days"
+msgstr "jours"
 
-#: ../../mod/photos.php:1372
-msgid "Upload New Photos"
-msgstr "Téléverser de nouvelles photos"
+#: ../../include/datetime.php:288
+msgid "hour"
+msgstr "heure"
 
-#: ../../mod/photos.php:1385
-msgid "View Album"
-msgstr "Voir l'album"
+#: ../../include/datetime.php:288
+msgid "hours"
+msgstr "heures"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendika"
-msgstr "Bienvenue sur Friendica"
+#: ../../include/datetime.php:289
+msgid "minute"
+msgstr "minute"
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Checklist du nouvel utilisateur"
+#: ../../include/datetime.php:289
+msgid "minutes"
+msgstr "minutes"
 
-#: ../../mod/newmember.php:12
-msgid ""
-"We would like to offer some tips and links to help make your experience "
-"enjoyable. Click any item to visit the relevant page."
-msgstr ""
-"Nous souhaiterions vous donner quelques astuces et pointeurs pour rendre "
-"votre expérience la plus plaisante possible. Cliquez sur n'importe quel "
-"élément pour visiter la page correspondante."
+#: ../../include/datetime.php:290
+msgid "second"
+msgstr "seconde"
 
-#: ../../mod/newmember.php:16
-msgid ""
-"On your <em>Settings</em> page -  change your initial password. Also make a "
-"note of your Identity Address. This will be useful in making friends."
-msgstr ""
-"Sur votre page <em>Réglages</em> - changez votre mot de passe originel. "
-"Profitez-en pour prendre note de votre Adresse d'Identité. Elle vous sera "
-"utile pour vous faire de nouveaux amis."
+#: ../../include/datetime.php:290
+msgid "seconds"
+msgstr "secondes"
 
-#: ../../mod/newmember.php:18
-msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished"
-" directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
-msgstr ""
-"Vérifiez les autres réglages, tout particulièrement ceux liés à la vie "
-"privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. "
-"En général, vous devriez probablement publier votre profil - à moins que "
-"tous vos amis (potentiels) sachent déjà comment vous trouver."
+#: ../../include/datetime.php:299
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "il y a %1$d %2$s"
 
-#: ../../mod/newmember.php:20
-msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make"
-" friends than people who do not."
-msgstr ""
-"Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les"
-" études montrent que les gens qui affichent de vraies photos d'eux sont dix "
-"fois plus susceptibles de se faire des amis."
+#: ../../include/dba/dba_driver.php:50
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Impossible de trouver les infos DNS du serveur de DB '%s'"
 
-#: ../../mod/newmember.php:23
-msgid ""
-"Authorise the Facebook Connector if you currently have a Facebook account "
-"and we will (optionally) import all your Facebook friends and conversations."
-msgstr ""
-"Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook"
-" et nous pourrons (de manière facultative) importer tous vos amis et "
-"conversations Facebook."
+#: ../../include/event.php:11 ../../include/bb2diaspora.php:433
+msgid "l F d, Y \\@ g:i A"
+msgstr "l d F Y \\à G\\hi"
 
-#: ../../mod/newmember.php:28
-msgid ""
-"Enter your email access information on your Settings page if you wish to "
-"import and interact with friends or mailing lists from your email INBOX"
-msgstr ""
-"Entrez les paramètres de votre adresse de courriel sur la page des Réglages "
-"si vous souhaitez importer et interagir avec vos contacts conventionnels."
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:439
+msgid "Starts:"
+msgstr "Début&nbsp;:"
 
-#: ../../mod/newmember.php:30
-msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr ""
-"Éditez votre profil <strong>par défaut</strong> à votre convenance. Vérifiez"
-" les réglages concernant la visibilité de votre liste d'amis par les "
-"visiteurs inconnus."
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:447
+msgid "Finishes:"
+msgstr "Fin&nbsp;:"
 
-#: ../../mod/newmember.php:32
-msgid ""
-"Set some public keywords for your default profile which describe your "
-"interests. We may be able to find other people with similar interests and "
-"suggest friendships."
-msgstr ""
-"Choisissez quelques mots-clé publics pour votre profil par défaut. Ils "
-"pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer"
-" des contacts qui les partagent."
+#: ../../include/event.php:40 ../../include/identity.php:679
+#: ../../include/bb2diaspora.php:455 ../../mod/events.php:462
+#: ../../mod/directory.php:156 ../../mod/dirprofile.php:111
+msgid "Location:"
+msgstr "Localisation&nbsp;:"
 
-#: ../../mod/newmember.php:34
+#: ../../include/group.php:25
 msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the <em>Connect</em> dialog."
-msgstr ""
-"Votre page Contacts est l'endroit rêvé pour gérer vos relations et contacts,"
-" et vous relier à des amis issus d'autres réseaux. En général, il suffit "
-"d'entrer leur adresse d'identité ou l'URL de leur site dans le champ "
-"<em>Relier</em>"
+"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."
+msgstr "Un groupe supprimé portant ce nom a été ressuscité. Les permissions liées aux éléments existants <strong>peuvent</strong> s'appliquer au groupe et aux membres futurs. Si ce n'est pas ce que vous attendiez, merci de recréer un nouveau groupe avec un nom différent."
 
-#: ../../mod/newmember.php:36
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr ""
-"La page Annuaire vous permet de trouver d'autres personnes au sein de ce "
-"réseaux ou parmi d'autres sites fédérés. Cherchez un lien <em>Relier</em> ou"
-" <em>Suivre</em> sur leur profil. Vous pourrez avoir besoin d'indiquer votre"
-" adresse d'identité."
+#: ../../include/group.php:223
+msgid "Default privacy group for new contacts"
+msgstr "Groupe de confidentialité par défaut pour les nouveaux contacts"
 
-#: ../../mod/newmember.php:38
-msgid ""
-"Once you have made some friends, organize them into private conversation "
-"groups from the sidebar of your Contacts page and then you can interact with"
-" each group privately on your Network page."
-msgstr ""
-"Une fois que vous avez trouvé quelques amis, organisez-les en groupes de "
-"conversation privés depuis le panneau latéral de la page Contacts. Vous "
-"pourrez ensuite interagir avec chaque groupe de manière privée depuis la "
-"page Réseau."
+#: ../../include/group.php:242 ../../mod/admin.php:750
+msgid "All Channels"
+msgstr "Tous canaux"
 
-#: ../../mod/newmember.php:40
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr ""
-"Nos pages d'<strong>aide</strong> peuvent être consultées pour davantage de "
-"détails sur les fonctionnalités ou les ressources."
+#: ../../include/group.php:264
+msgid "edit"
+msgstr "éditer"
 
-#: ../../mod/localtime.php:12 ../../include/event.php:11
-#: ../../include/bb2diaspora.php:227
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ g:i A"
+#: ../../include/group.php:285
+msgid "Collections"
+msgstr "Collections"
 
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Conversion temporelle"
+#: ../../include/group.php:286
+msgid "Edit collection"
+msgstr "Éditer collection"
 
-#: ../../mod/localtime.php:26
-msgid ""
-"Friendika provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr ""
-"Friendica fournit ce service pour partager des événements avec d'autres "
-"réseaux et amis indépendament de leur fuseau horaire."
+#: ../../include/group.php:287
+msgid "Create a new collection"
+msgstr "Créer collection"
 
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "Temps UTC : %s"
+#: ../../include/group.php:288
+msgid "Channels not in any collection"
+msgstr "Canaux dans aucune collection"
 
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Zone de temps courante : %s"
+#: ../../include/js_strings.php:5
+msgid "Delete this item?"
+msgstr "Supprimer cet élément?"
 
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Temps local converti : %s"
+#: ../../include/js_strings.php:6 ../../include/ItemObject.php:546
+#: ../../mod/photos.php:989 ../../mod/photos.php:1076
+msgid "Comment"
+msgstr "Commenter"
 
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Sélectionner votre zone :"
+#: ../../include/js_strings.php:7 ../../include/ItemObject.php:280
+#: ../../include/contact_widgets.php:125
+msgid "show more"
+msgstr "montrer plus"
 
-#: ../../mod/display.php:108
-msgid "Item has been removed."
-msgstr "Cet élément a été enlevé."
+#: ../../include/js_strings.php:8
+msgid "show fewer"
+msgstr "montrer moins"
 
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "Élément introuvable"
+#: ../../include/js_strings.php:9
+msgid "Password too short"
+msgstr "Mot de passe trop court"
 
-#: ../../mod/editpost.php:32
-msgid "Edit post"
-msgstr "Éditer la publication"
+#: ../../include/js_strings.php:10
+msgid "Passwords do not match"
+msgstr "Les mots de passe ne correspondent pas"
 
-#: ../../mod/editpost.php:75 ../../include/conversation.php:800
-msgid "Post to Email"
-msgstr "Publier aussi par courriel"
+#: ../../include/js_strings.php:11 ../../mod/photos.php:39
+msgid "everybody"
+msgstr "tout le monde"
 
-#: ../../mod/editpost.php:91 ../../mod/message.php:135
-#: ../../mod/message.php:268 ../../include/conversation.php:815
-msgid "Upload photo"
-msgstr "Joindre photo"
+#: ../../include/js_strings.php:12
+msgid "Secret Passphrase"
+msgstr "Phrase de passe secrète"
 
-#: ../../mod/editpost.php:92 ../../include/conversation.php:816
-msgid "Attach file"
-msgstr "Joindre fichier"
+#: ../../include/js_strings.php:13
+msgid "Passphrase hint"
+msgstr "Indice pour la phrase de passe"
 
-#: ../../mod/editpost.php:93 ../../mod/message.php:136
-#: ../../mod/message.php:269 ../../include/conversation.php:817
-msgid "Insert web link"
-msgstr "Insérer lien web"
+#: ../../include/js_strings.php:15
+msgid "timeago.prefixAgo"
+msgstr "timeago.prefixAgo"
 
-#: ../../mod/editpost.php:94
-msgid "Insert YouTube video"
-msgstr "Insérer une vidéo Youtube"
+#: ../../include/js_strings.php:16
+msgid "timeago.suffixAgo"
+msgstr "timeago.suffixAgo"
 
-#: ../../mod/editpost.php:95
-msgid "Insert Vorbis [.ogg] video"
-msgstr "Insérer un lien vidéo Vorbis [.ogg]"
+#: ../../include/js_strings.php:17
+msgid "ago"
+msgstr "auparavant"
 
-#: ../../mod/editpost.php:96
-msgid "Insert Vorbis [.ogg] audio"
-msgstr "Insérer un lien audio Vorbis [.ogg]"
+#: ../../include/js_strings.php:18
+msgid "from now"
+msgstr "de maintenant"
 
-#: ../../mod/editpost.php:97 ../../include/conversation.php:820
-msgid "Set your location"
-msgstr "Définir votre localisation"
+#: ../../include/js_strings.php:19
+msgid "less than a minute"
+msgstr "moins d'une minute"
 
-#: ../../mod/editpost.php:98 ../../include/conversation.php:821
-msgid "Clear browser location"
-msgstr "Effacer la localisation du navigateur"
+#: ../../include/js_strings.php:20
+msgid "about a minute"
+msgstr "environ une minute"
 
-#: ../../mod/editpost.php:100 ../../include/conversation.php:824
-msgid "Permission settings"
-msgstr "Réglages des permissions"
+#: ../../include/js_strings.php:21
+#, php-format
+msgid "%d minutes"
+msgstr "%d minutes"
 
-#: ../../mod/editpost.php:108 ../../include/conversation.php:832
-msgid "CC: email addresses"
-msgstr "CC: adresses de courriel"
+#: ../../include/js_strings.php:22
+msgid "about an hour"
+msgstr "environ une heure"
 
-#: ../../mod/editpost.php:109 ../../include/conversation.php:833
-msgid "Public post"
-msgstr "Notice publique"
+#: ../../include/js_strings.php:23
+#, php-format
+msgid "about %d hours"
+msgstr "environ %d heures"
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:835
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Exemple: bob@exemple.com, mary@exemple.com"
+#: ../../include/js_strings.php:24
+msgid "a day"
+msgstr "un jour"
 
-#: ../../mod/invite.php:35
+#: ../../include/js_strings.php:25
 #, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : Adresse de courriel invalide."
+msgid "%d days"
+msgstr "%d jours"
 
-#: ../../mod/invite.php:59
-#, php-format
-msgid "Please join my network on %s"
-msgstr "Vous pouvez rejoindre mon réseau sur %s"
+#: ../../include/js_strings.php:26
+msgid "about a month"
+msgstr "environ un mois"
 
-#: ../../mod/invite.php:69
+#: ../../include/js_strings.php:27
 #, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : L'envoi du message a échoué."
+msgid "%d months"
+msgstr "%d mois"
+
+#: ../../include/js_strings.php:28
+msgid "about a year"
+msgstr "environ un an"
 
-#: ../../mod/invite.php:73
+#: ../../include/js_strings.php:29
 #, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d message envoyé."
-msgstr[1] "%d messages envoyés."
+msgid "%d years"
+msgstr "%d années"
 
-#: ../../mod/invite.php:92
-msgid "You have no more invitations available"
-msgstr "Vous n'avez plus d'invitations disponibles"
+#: ../../include/js_strings.php:30
+msgid " "
+msgstr ""
 
-#: ../../mod/invite.php:99
-msgid "Send invitations"
-msgstr "Envoyer des invitations"
+#: ../../include/js_strings.php:31
+msgid "timeago.numbers"
+msgstr "timeago.numbers"
 
-#: ../../mod/invite.php:100
-msgid "Enter email addresses, one per line:"
-msgstr "Entrez les adresses email, une par ligne:"
+#: ../../include/message.php:18
+msgid "No recipient provided."
+msgstr "Pas de destinataire."
 
-#: ../../mod/invite.php:101 ../../mod/message.php:132
-#: ../../mod/message.php:265
-msgid "Your message:"
-msgstr "Votre message:"
+#: ../../include/message.php:23
+msgid "[no subject]"
+msgstr "[sans objet]"
 
-#: ../../mod/invite.php:102
-#, php-format
-msgid "Please join my social network on %s"
-msgstr "Vous pouvez rejoindre mon réseau social sur %s"
+#: ../../include/message.php:42
+msgid "Unable to determine sender."
+msgstr "Impossible de déterminer l'émetteur."
 
-#: ../../mod/invite.php:103
-msgid "To accept this invitation, please visit:"
-msgstr "Pour accepter cette invitation, rendez vous sur:"
+#: ../../include/message.php:143
+msgid "Stored post could not be verified."
+msgstr "Le message stocké n'a pas pu être vérifié."
 
-#: ../../mod/invite.php:104
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Vous devrez fournir ce code d'invitation: $invite_code"
+#: ../../include/photo/photo_driver.php:637 ../../include/photos.php:51
+#: ../../mod/profile_photo.php:78 ../../mod/profile_photo.php:225
+#: ../../mod/profile_photo.php:336 ../../mod/photos.php:91
+#: ../../mod/photos.php:652 ../../mod/photos.php:674
+msgid "Profile Photos"
+msgstr "Photos du profil"
 
-#: ../../mod/invite.php:104
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Une fois inscrit, connectez-vous à la page de mon profil sur:"
+#: ../../include/attach.php:98 ../../include/attach.php:129
+#: ../../include/attach.php:185 ../../include/attach.php:200
+#: ../../include/attach.php:233 ../../include/attach.php:247
+#: ../../include/attach.php:268 ../../include/attach.php:463
+#: ../../include/attach.php:541 ../../include/chat.php:113
+#: ../../include/photos.php:15 ../../include/items.php:3492
+#: ../../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/item.php:182 ../../mod/item.php:190
+#: ../../mod/menu.php:44 ../../mod/webpages.php:40 ../../mod/api.php:26
+#: ../../mod/api.php:31 ../../mod/bookmarks.php:46 ../../mod/settings.php:490
+#: ../../mod/chat.php:87 ../../mod/chat.php:92
+#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27
+#: ../../mod/delegate.php:6 ../../mod/mitem.php:73 ../../mod/group.php:9
+#: ../../mod/viewsrc.php:12 ../../mod/editpost.php:13
+#: ../../mod/connedit.php:182 ../../mod/layouts.php:27
+#: ../../mod/layouts.php:42 ../../mod/page.php:30 ../../mod/page.php:80
+#: ../../mod/network.php:12 ../../mod/profiles.php:152
+#: ../../mod/profiles.php:453 ../../mod/sources.php:66 ../../mod/setup.php:200
+#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97
+#: ../../mod/achievements.php:27 ../../mod/manage.php:6 ../../mod/mail.php:108
+#: ../../mod/editlayout.php:48 ../../mod/profile_photo.php:187
+#: ../../mod/profile_photo.php:200 ../../mod/connections.php:169
+#: ../../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:188
+#: ../../mod/channel.php:231 ../../mod/fsuggest.php:78
+#: ../../mod/editblock.php:48 ../../mod/filestorage.php:10
+#: ../../mod/filestorage.php:59 ../../mod/filestorage.php:75
+#: ../../mod/filestorage.php:98 ../../mod/suggest.php:26
+#: ../../mod/message.php:16 ../../mod/register.php:68 ../../mod/regmod.php:18
+#: ../../mod/authtest.php:13 ../../mod/photos.php:68 ../../mod/photos.php:522
+#: ../../mod/mood.php:119 ../../index.php:176 ../../index.php:351
+msgid "Permission denied."
+msgstr "Permission refusée."
+
+#: ../../include/attach.php:180 ../../include/attach.php:228
+msgid "Item was not found."
+msgstr "Élément introuvable."
 
-#: ../../mod/ping.php:146
-msgid "{0} wants to be your friend"
-msgstr "{0} souhaite être votre ami(e)"
+#: ../../include/attach.php:281
+msgid "No source file."
+msgstr "Pas de fichier source."
 
-#: ../../mod/ping.php:151
-msgid "{0} sent you a message"
-msgstr "{0} vous a envoyé un message"
+#: ../../include/attach.php:298
+msgid "Cannot locate file to replace"
+msgstr "Impossible de trouver le fichier à remplacer."
 
-#: ../../mod/ping.php:156
-msgid "{0} requested registration"
-msgstr "{0} a demandé à s'inscrire"
+#: ../../include/attach.php:316
+msgid "Cannot locate file to revise/update"
+msgstr "Impossible de trouver le fichier à corriger/mettre-à-jour"
 
-#: ../../mod/ping.php:162
+#: ../../include/attach.php:327
 #, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} a commenté une notice de %s"
+msgid "File exceeds size limit of %d"
+msgstr "Le fichier dépasse la taille limite de %d"
 
-#: ../../mod/ping.php:167
+#: ../../include/attach.php:339
 #, php-format
-msgid "{0} liked %s's post"
-msgstr "{0} a aimé une notice de %s"
+msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
+msgstr "Vous avez atteint votre limite de %1$.0f méga-octets autorisés pour le stockage des pièces-jointes"
+
+#: ../../include/attach.php:423
+msgid "File upload failed. Possible system limit or action terminated."
+msgstr "Envoi du fichier impossible. Limite système ou action avortée."
+
+#: ../../include/attach.php:435
+msgid "Stored file could not be verified. Upload failed."
+msgstr "Le fichier stocké n'a pu être vérifié. Envoi impossible."
+
+#: ../../include/attach.php:479 ../../include/attach.php:496
+msgid "Path not available."
+msgstr "Chemin non disponible."
+
+#: ../../include/attach.php:546
+msgid "Empty pathname"
+msgstr "Chemin vide"
+
+#: ../../include/attach.php:564
+msgid "duplicate filename or path"
+msgstr "doublon de chemin ou de fichier"
+
+#: ../../include/attach.php:589
+msgid "Path not found."
+msgstr "Chemin introuvable."
+
+#: ../../include/attach.php:634
+msgid "mkdir failed."
+msgstr "mkdir a échoué."
+
+#: ../../include/attach.php:638
+msgid "database storage failed."
+msgstr "le stockage en BD a échoué"
+
+#: ../../include/bbcode.php:128 ../../include/bbcode.php:587
+#: ../../include/bbcode.php:590 ../../include/bbcode.php:595
+#: ../../include/bbcode.php:598 ../../include/bbcode.php:601
+#: ../../include/bbcode.php:604 ../../include/bbcode.php:609
+#: ../../include/bbcode.php:612 ../../include/bbcode.php:617
+#: ../../include/bbcode.php:620 ../../include/bbcode.php:623
+#: ../../include/bbcode.php:626
+msgid "Image/photo"
+msgstr "Image/photo"
+
+#: ../../include/bbcode.php:163 ../../include/bbcode.php:637
+msgid "Encrypted content"
+msgstr "Contenu chiffré"
 
-#: ../../mod/ping.php:172
+#: ../../include/bbcode.php:170
+msgid "QR code"
+msgstr "QR code"
+
+#: ../../include/bbcode.php:213
 #, php-format
-msgid "{0} disliked %s's post"
-msgstr "{0} n'a pas aimé une notice de %s"
+msgid "%1$s wrote the following %2$s %3$s"
+msgstr "%1$s a écrit le %2$s suivant %3$s"
+
+#: ../../include/bbcode.php:215
+msgid "post"
+msgstr "article"
 
-#: ../../mod/ping.php:177
+#: ../../include/bbcode.php:555 ../../include/bbcode.php:575
+msgid "$1 wrote:"
+msgstr "$1 a écrit&nbsp;:"
+
+#: ../../include/bookmarks.php:31
 #, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} est désormais ami(e) avec %s"
+msgid "%1$s's bookmarks"
+msgstr "Marque-pages de %1$s"
 
-#: ../../mod/ping.php:182
-msgid "{0} posted"
-msgstr "{0} a posté"
+#: ../../include/conversation.php:123
+msgid "channel"
+msgstr "canal"
 
-#: ../../mod/ping.php:187
+#: ../../include/conversation.php:161 ../../mod/like.php:134
 #, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0} a taggué la notice de %s avec #%s"
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s aime %3$s de %2$s"
 
-#: ../../mod/contacts.php:62 ../../mod/contacts.php:133
-msgid "Could not access contact record."
-msgstr "Impossible d'accéder à l'enregistrement du contact."
+#: ../../include/conversation.php:164 ../../mod/like.php:136
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s déteste %3$s de %2$s"
 
-#: ../../mod/contacts.php:76
-msgid "Could not locate selected profile."
-msgstr "Impossible de localiser le profil séléctionné."
+#: ../../include/conversation.php:201
+#, php-format
+msgid "%1$s is now connected with %2$s"
+msgstr "%1$s est désormais relié à %2$s"
 
-#: ../../mod/contacts.php:97
-msgid "Contact updated."
-msgstr "Contact mis-à-jour."
+#: ../../include/conversation.php:236
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s a tapoté %2$s"
 
-#: ../../mod/contacts.php:99 ../../mod/dfrn_request.php:409
-msgid "Failed to update contact record."
-msgstr "Échec de mise-à-jour du contact."
+#: ../../include/conversation.php:258 ../../mod/mood.php:63
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s est actuellement %2$s"
 
-#: ../../mod/contacts.php:155
-msgid "Contact has been blocked"
-msgstr "Le contact a été bloqué"
+#: ../../include/conversation.php:631 ../../include/ItemObject.php:114
+msgid "Select"
+msgstr "Sélectionner"
 
-#: ../../mod/contacts.php:155
-msgid "Contact has been unblocked"
-msgstr "Le contact n'est plus bloqué"
+#: ../../include/conversation.php:632 ../../include/ItemObject.php:108
+#: ../../mod/thing.php:230 ../../mod/settings.php:576 ../../mod/group.php:176
+#: ../../mod/admin.php:745 ../../mod/connedit.php:359
+#: ../../mod/filestorage.php:171 ../../mod/photos.php:1040
+msgid "Delete"
+msgstr "Supprimer"
 
-#: ../../mod/contacts.php:169
-msgid "Contact has been ignored"
-msgstr "Le contact a été ignoré"
+#: ../../include/conversation.php:642 ../../include/ItemObject.php:161
+msgid "Message is verified"
+msgstr "Message vérifié"
 
-#: ../../mod/contacts.php:169
-msgid "Contact has been unignored"
-msgstr "Le contact n'est plus ignoré"
+#: ../../include/conversation.php:662
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Voir le profil de %s @ %s"
 
-#: ../../mod/contacts.php:190
-msgid "stopped following"
-msgstr "retiré de la liste de suivi"
+#: ../../include/conversation.php:676
+msgid "Categories:"
+msgstr "Catégories&nbsp;:"
 
-#: ../../mod/contacts.php:211
-msgid "Contact has been removed."
-msgstr "Ce contact a été retiré."
+#: ../../include/conversation.php:677
+msgid "Filed under:"
+msgstr "Classé sous&nbsp;:"
 
-#: ../../mod/contacts.php:232
+#: ../../include/conversation.php:686 ../../include/ItemObject.php:226
 #, php-format
-msgid "You are mutual friends with %s"
-msgstr "Vous êtes ami (et réciproquement) avec %s"
+msgid " from %s"
+msgstr "de %s"
 
-#: ../../mod/contacts.php:236
+#: ../../include/conversation.php:689 ../../include/ItemObject.php:229
 #, php-format
-msgid "You are sharing with %s"
-msgstr "Vous partagez avec %s"
+msgid "last edited: %s"
+msgstr "dernière édition&nbsp;: %s"
 
-#: ../../mod/contacts.php:241
+#: ../../include/conversation.php:690 ../../include/ItemObject.php:230
 #, php-format
-msgid "%s is sharing with you"
-msgstr "%s partage avec vous"
+msgid "Expires: %s"
+msgstr "Expire&nbsp;: %s"
 
-#: ../../mod/contacts.php:258
-msgid "Private communications are not available for this contact."
-msgstr "Les communications privées ne sont pas disponibles pour ce contact."
+#: ../../include/conversation.php:705
+msgid "View in context"
+msgstr "Voir en contexte"
 
-#: ../../mod/contacts.php:261
-msgid "Never"
-msgstr "Jamais"
+#: ../../include/conversation.php:707 ../../include/conversation.php:1120
+#: ../../include/ItemObject.php:258 ../../mod/editpost.php:112
+#: ../../mod/mail.php:222 ../../mod/mail.php:336 ../../mod/editlayout.php:115
+#: ../../mod/editwebpage.php:153 ../../mod/editblock.php:129
+#: ../../mod/photos.php:971
+msgid "Please wait"
+msgstr "Merci de patienter"
 
-#: ../../mod/contacts.php:265
-msgid "(Update was successful)"
-msgstr "(Mise à jour effectuée avec succès)"
+#: ../../include/conversation.php:834
+msgid "remove"
+msgstr "supprimer"
 
-#: ../../mod/contacts.php:265
-msgid "(Update was not successful)"
-msgstr "(Mise à jour échouée)"
+#: ../../include/conversation.php:838
+msgid "Loading..."
+msgstr "Chargement..."
 
-#: ../../mod/contacts.php:267
-msgid "Suggest friends"
-msgstr "Suggérer amitié/contact"
+#: ../../include/conversation.php:839
+msgid "Delete Selected Items"
+msgstr "Supprimer les éléments selectionnés"
 
-#: ../../mod/contacts.php:271
-#, php-format
-msgid "Network type: %s"
-msgstr "Type de réseau %s"
+#: ../../include/conversation.php:930
+msgid "View Source"
+msgstr "Voir source"
 
-#: ../../mod/contacts.php:274
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d contact en commun"
-msgstr[1] "%d contacts en commun"
+#: ../../include/conversation.php:931
+msgid "Follow Thread"
+msgstr "Suivre discussion"
 
-#: ../../mod/contacts.php:279
-msgid "View all contacts"
-msgstr "Voir tous les contacts"
+#: ../../include/conversation.php:932
+msgid "View Status"
+msgstr "Voir état"
 
-#: ../../mod/contacts.php:284 ../../mod/contacts.php:331
-#: ../../mod/admin.php:470
-msgid "Unblock"
-msgstr "Débloquer"
+#: ../../include/conversation.php:934
+msgid "View Photos"
+msgstr "Voir photos"
 
-#: ../../mod/contacts.php:284 ../../mod/contacts.php:331
-#: ../../mod/admin.php:469
-msgid "Block"
-msgstr "Bloquer"
+#: ../../include/conversation.php:935
+msgid "Matrix Activity"
+msgstr "Activité de la matrice"
 
-#: ../../mod/contacts.php:289 ../../mod/contacts.php:332
-msgid "Unignore"
-msgstr "Ne plus ignorer"
+#: ../../include/conversation.php:936
+msgid "Edit Contact"
+msgstr "Éditer contact"
 
-#: ../../mod/contacts.php:289 ../../mod/contacts.php:332
-#: ../../mod/notifications.php:47 ../../mod/notifications.php:143
-#: ../../mod/notifications.php:187
-msgid "Ignore"
-msgstr "Ignorer"
+#: ../../include/conversation.php:937
+msgid "Send PM"
+msgstr "Message privé"
 
-#: ../../mod/contacts.php:294
-msgid "Repair"
-msgstr "Réparer"
+#: ../../include/conversation.php:938
+msgid "Poke"
+msgstr "Tapoter"
 
-#: ../../mod/contacts.php:304
-msgid "Contact Editor"
-msgstr "Éditeur de contact"
+#: ../../include/conversation.php:1000
+#, php-format
+msgid "%s likes this."
+msgstr "%s aime ça."
 
-#: ../../mod/contacts.php:307
-msgid "Profile Visibility"
-msgstr "Visibilité du profil"
+#: ../../include/conversation.php:1000
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s déteste ça."
 
-#: ../../mod/contacts.php:308
+#: ../../include/conversation.php:1004
 #, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr ""
-"Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous "
-"rend visite de manière sécurisée."
+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] "<span %1$s>%2$d personne(s)</span> aime(nt) ça."
 
-#: ../../mod/contacts.php:309
-msgid "Contact Information / Notes"
-msgstr "Informations de contact / Notes"
+#: ../../include/conversation.php:1006
+#, 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] "<span %1$s>%2$d personne(s)</span> déteste(nt) ça."
 
-#: ../../mod/contacts.php:310
-msgid "Edit contact notes"
-msgstr "Editer les notes des contacts"
+#: ../../include/conversation.php:1012
+msgid "and"
+msgstr "et"
 
-#: ../../mod/contacts.php:315 ../../mod/contacts.php:430
-#: ../../mod/viewconnections.php:61
+#: ../../include/conversation.php:1015
 #, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Visiter le profil de %s [%s]"
+msgid ", and %d other people"
+msgid_plural ", and %d other people"
+msgstr[0] ""
+msgstr[1] ", et %d autre(s) personne(s)"
 
-#: ../../mod/contacts.php:316
-msgid "Block/Unblock contact"
-msgstr "Bloquer/débloquer ce contact"
+#: ../../include/conversation.php:1016
+#, php-format
+msgid "%s like this."
+msgstr "%s aime ça."
 
-#: ../../mod/contacts.php:317
-msgid "Ignore contact"
-msgstr "Ignorer ce contact"
+#: ../../include/conversation.php:1016
+#, php-format
+msgid "%s don't like this."
+msgstr "%s déteste ça."
 
-#: ../../mod/contacts.php:318
-msgid "Repair URL settings"
-msgstr "Réparer les réglages d'URL"
+#: ../../include/conversation.php:1066
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Visible par <strong>tout le monde</strong>"
 
-#: ../../mod/contacts.php:319
-msgid "View conversations"
-msgstr "Voir les conversations"
+#: ../../include/conversation.php:1067 ../../mod/mail.php:171
+#: ../../mod/mail.php:269
+msgid "Please enter a link URL:"
+msgstr "Merci d'entrer l'URL d'un lien&nbsp;:"
 
-#: ../../mod/contacts.php:321
-msgid "Delete contact"
-msgstr "Effacer ce contact"
+#: ../../include/conversation.php:1068
+msgid "Please enter a video link/URL:"
+msgstr "Merci d'entrer l'URL d'une video&nbsp;:"
 
-#: ../../mod/contacts.php:325
-msgid "Last update:"
-msgstr "Dernière mise-à-jour :"
+#: ../../include/conversation.php:1069
+msgid "Please enter an audio link/URL:"
+msgstr "Merci d'entrer l'URL d'un contenu audio&nsbp;:"
 
-#: ../../mod/contacts.php:326
-msgid "Update public posts"
-msgstr "Met ses entrées publiques à jour: "
+#: ../../include/conversation.php:1070
+msgid "Tag term:"
+msgstr "Étiquette&nbsp;:"
 
-#: ../../mod/contacts.php:328 ../../mod/admin.php:701
-msgid "Update now"
-msgstr "Mettre à jour"
+#: ../../include/conversation.php:1071 ../../mod/filer.php:35
+msgid "Save to Folder:"
+msgstr "Classer dans Dossier&nbsp;:"
 
-#: ../../mod/contacts.php:335
-msgid "Currently blocked"
-msgstr "Actuellement bloqué"
+#: ../../include/conversation.php:1072
+msgid "Where are you right now?"
+msgstr "Où êtes-vous présentement?"
 
-#: ../../mod/contacts.php:336
-msgid "Currently ignored"
-msgstr "Actuellement ignoré"
+#: ../../include/conversation.php:1073 ../../mod/editpost.php:52
+#: ../../mod/mail.php:172 ../../mod/mail.php:270
+msgid "Expires YYYY-MM-DD HH:MM"
+msgstr "Expire YYYY-MM-DD HH:MM"
 
-#: ../../mod/contacts.php:364 ../../include/nav.php:130
-msgid "Contacts"
-msgstr "Contacts"
+#: ../../include/conversation.php:1083 ../../include/ItemObject.php:556
+#: ../../mod/webpages.php:122 ../../mod/editpost.php:132
+#: ../../mod/editlayout.php:136 ../../mod/editwebpage.php:177
+#: ../../mod/editblock.php:151 ../../mod/photos.php:991
+msgid "Preview"
+msgstr "Aperçu"
 
-#: ../../mod/contacts.php:366
-msgid "Show Blocked Connections"
-msgstr "Montrer les connexions bloquées"
+#: ../../include/conversation.php:1097 ../../mod/photos.php:970
+msgid "Share"
+msgstr "Partager"
 
-#: ../../mod/contacts.php:366
-msgid "Hide Blocked Connections"
-msgstr "Cacher les connexion bloquées"
+#: ../../include/conversation.php:1099 ../../mod/editwebpage.php:140
+msgid "Page link title"
+msgstr "Titre de la page liée"
 
-#: ../../mod/contacts.php:368
-msgid "Search your contacts"
-msgstr "Rechercher dans vos contacts"
+#: ../../include/conversation.php:1101 ../../mod/editpost.php:104
+#: ../../mod/mail.php:219 ../../mod/mail.php:332 ../../mod/editlayout.php:107
+#: ../../mod/editwebpage.php:145 ../../mod/editblock.php:121
+msgid "Upload photo"
+msgstr "Téléverser photo"
 
-#: ../../mod/contacts.php:369 ../../mod/directory.php:65
-msgid "Finding: "
-msgstr "Trouvé: "
+#: ../../include/conversation.php:1102
+msgid "upload photo"
+msgstr "téléverser photo"
 
-#: ../../mod/contacts.php:370 ../../mod/directory.php:67
-#: ../../include/contact_widgets.php:34
-msgid "Find"
-msgstr "Trouver"
+#: ../../include/conversation.php:1103 ../../mod/editpost.php:105
+#: ../../mod/mail.php:220 ../../mod/mail.php:333 ../../mod/editlayout.php:108
+#: ../../mod/editwebpage.php:146 ../../mod/editblock.php:122
+msgid "Attach file"
+msgstr "Attacher fichier"
 
-#: ../../mod/contacts.php:406
-msgid "Mutual Friendship"
-msgstr "Relation réciproque"
+#: ../../include/conversation.php:1104
+msgid "attach file"
+msgstr "attacher fichier"
 
-#: ../../mod/contacts.php:410
-msgid "is a fan of yours"
-msgstr "est un fan de vous"
+#: ../../include/conversation.php:1105 ../../mod/editpost.php:106
+#: ../../mod/mail.php:221 ../../mod/mail.php:334 ../../mod/editlayout.php:109
+#: ../../mod/editwebpage.php:147 ../../mod/editblock.php:123
+msgid "Insert web link"
+msgstr "Insérer lien web"
 
-#: ../../mod/contacts.php:414
-msgid "you are a fan of"
-msgstr "vous êtes un fan de"
+#: ../../include/conversation.php:1106
+msgid "web link"
+msgstr "lien web"
 
-#: ../../mod/contacts.php:431 ../../include/Contact.php:129
-#: ../../include/conversation.php:679
-msgid "Edit contact"
-msgstr "Éditer le contact"
+#: ../../include/conversation.php:1107
+msgid "Insert video link"
+msgstr "Insérer lien vidéo"
 
-#: ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Informations de confidentialité indisponibles."
+#: ../../include/conversation.php:1108
+msgid "video link"
+msgstr "lien vidéo"
 
-#: ../../mod/lockview.php:43
-msgid "Visible to:"
-msgstr "Visible par:"
+#: ../../include/conversation.php:1109
+msgid "Insert audio link"
+msgstr "Insérer lien audio"
 
-#: ../../mod/register.php:53
-msgid "An invitation is required."
-msgstr "Une invitation est requise."
+#: ../../include/conversation.php:1110
+msgid "audio link"
+msgstr "lien audio"
 
-#: ../../mod/register.php:58
-msgid "Invitation could not be verified."
-msgstr "L'invitation fournie n'a pu être validée."
+#: ../../include/conversation.php:1111 ../../mod/editpost.php:110
+#: ../../mod/editlayout.php:113 ../../mod/editwebpage.php:151
+#: ../../mod/editblock.php:127
+msgid "Set your location"
+msgstr "Spécifier votre localisation"
 
-#: ../../mod/register.php:66
-msgid "Invalid OpenID url"
-msgstr "Adresse OpenID invalide"
+#: ../../include/conversation.php:1112
+msgid "set location"
+msgstr "spécifier localisation"
 
-#: ../../mod/register.php:81
-msgid "Please enter the required information."
-msgstr "Entrez les informations requises."
+#: ../../include/conversation.php:1113 ../../mod/editpost.php:111
+#: ../../mod/editlayout.php:114 ../../mod/editwebpage.php:152
+#: ../../mod/editblock.php:128
+msgid "Clear browser location"
+msgstr "Nettoyer la localisation du navigateur"
 
-#: ../../mod/register.php:95
-msgid "Please use a shorter name."
-msgstr "Utilisez un nom plus court."
+#: ../../include/conversation.php:1114
+msgid "clear location"
+msgstr "nettoyer localisation"
 
-#: ../../mod/register.php:97
-msgid "Name too short."
-msgstr "Nom trop court."
+#: ../../include/conversation.php:1116 ../../mod/editpost.php:124
+#: ../../mod/editlayout.php:127 ../../mod/editwebpage.php:169
+#: ../../mod/editblock.php:142
+msgid "Set title"
+msgstr "Spécifier le titre"
 
-#: ../../mod/register.php:112
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Ceci ne semble pas être votre nom complet (Prénom Nom)."
+#: ../../include/conversation.php:1119 ../../mod/editpost.php:126
+#: ../../mod/editlayout.php:130 ../../mod/editwebpage.php:171
+#: ../../mod/editblock.php:145
+msgid "Categories (comma-separated list)"
+msgstr "Catégories (séparées par des virgules)"
 
-#: ../../mod/register.php:117
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Votre domaine de courriel n'est pas autorisé sur ce site."
+#: ../../include/conversation.php:1121 ../../mod/editpost.php:113
+#: ../../mod/editlayout.php:116 ../../mod/editwebpage.php:154
+#: ../../mod/editblock.php:130
+msgid "Permission settings"
+msgstr "Permissions"
 
-#: ../../mod/register.php:120
-msgid "Not a valid email address."
-msgstr "Ceci n'est pas une adresse courriel valide."
+#: ../../include/conversation.php:1122
+msgid "permissions"
+msgstr "permissions"
 
-#: ../../mod/register.php:130
-msgid "Cannot use that email."
-msgstr "Impossible d'utiliser ce courriel."
+#: ../../include/conversation.php:1130 ../../mod/editpost.php:121
+#: ../../mod/editlayout.php:124 ../../mod/editwebpage.php:164
+#: ../../mod/editblock.php:139
+msgid "Public post"
+msgstr "Contenu public"
 
-#: ../../mod/register.php:136
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr ""
-"Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", "
-"\"-\", and \"_\", et doit commencer par une lettre."
+#: ../../include/conversation.php:1132 ../../mod/editpost.php:127
+#: ../../mod/editlayout.php:131 ../../mod/editwebpage.php:172
+#: ../../mod/editblock.php:146
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Exemple: robert@exemple.com, marie@exemple.com"
+
+#: ../../include/conversation.php:1145 ../../mod/editpost.php:138
+#: ../../mod/mail.php:226 ../../mod/mail.php:339 ../../mod/editlayout.php:141
+#: ../../mod/editwebpage.php:182 ../../mod/editblock.php:156
+msgid "Set expiration date"
+msgstr "Définir la date d'expiration"
+
+#: ../../include/conversation.php:1147 ../../include/ItemObject.php:559
+#: ../../mod/editpost.php:140 ../../mod/mail.php:228 ../../mod/mail.php:341
+msgid "Encrypt text"
+msgstr "Chiffrer le texte"
+
+#: ../../include/conversation.php:1149 ../../mod/editpost.php:142
+msgid "OK"
+msgstr "Ok"
+
+#: ../../include/conversation.php:1150 ../../mod/settings.php:514
+#: ../../mod/settings.php:540 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
+#: ../../mod/editpost.php:143 ../../mod/fbrowser.php:82
+#: ../../mod/fbrowser.php:117
+msgid "Cancel"
+msgstr "Annuler"
 
-#: ../../mod/register.php:142 ../../mod/register.php:243
-msgid "Nickname is already registered. Please choose another."
-msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre."
+#: ../../include/conversation.php:1381
+msgid "Commented Order"
+msgstr "Dans l'ordre des commentaires"
 
-#: ../../mod/register.php:161
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué."
+#: ../../include/conversation.php:1384
+msgid "Sort by Comment Date"
+msgstr "Trier par date de dernier commentaire"
 
-#: ../../mod/register.php:229
-msgid "An error occurred during registration. Please try again."
-msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer."
+#: ../../include/conversation.php:1387
+msgid "Posted Order"
+msgstr "Dans l'ordre des publications"
 
-#: ../../mod/register.php:265
-msgid "An error occurred creating your default profile. Please try again."
-msgstr ""
-"Une erreur est survenue lors de la création de votre profil par défaut. "
-"Merci de recommencer."
+#: ../../include/conversation.php:1390
+msgid "Sort by Post Date"
+msgstr "Trier par date de publication"
 
-#: ../../mod/register.php:377
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr ""
-"Inscription réussie. Vérifiez vos emails pour la suite des instructions."
+#: ../../include/conversation.php:1394
+msgid "Personal"
+msgstr "Personnel"
 
-#: ../../mod/register.php:381
-msgid "Failed to send email message. Here is the message that failed."
-msgstr "Impossible d'envoyer un email. Voici le message qui a échoué."
+#: ../../include/conversation.php:1397
+msgid "Posts that mention or involve you"
+msgstr "Publications qui vous mentionnent ou vous concernent d'une manière ou d'une autre"
 
-#: ../../mod/register.php:386
-msgid "Your registration can not be processed."
-msgstr "Votre inscription ne peut être traitée."
+#: ../../include/conversation.php:1400 ../../mod/menu.php:61
+#: ../../mod/connections.php:211
+msgid "New"
+msgstr "Nouveautés"
 
-#: ../../mod/register.php:423
-#, php-format
-msgid "Registration request at %s"
-msgstr "Demande d'inscription à %s"
+#: ../../include/conversation.php:1403
+msgid "Activity Stream - by date"
+msgstr "Flux d'activité - par date"
 
-#: ../../mod/register.php:432
-msgid "Your registration is pending approval by the site owner."
-msgstr "Votre inscription attend une validation du propriétaire du site."
+#: ../../include/conversation.php:1410
+msgid "Starred"
+msgstr "Mis en avant"
 
-#: ../../mod/register.php:481
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr ""
-"Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. "
-"Fournissez votre OpenID et cliquez \"S'inscrire\"."
+#: ../../include/conversation.php:1413
+msgid "Favourite Posts"
+msgstr "Publications préférées"
 
-#: ../../mod/register.php:482
-msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
-msgstr ""
-"Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez"
-" le reste."
+#: ../../include/conversation.php:1420
+msgid "Spam"
+msgstr "Spam"
 
-#: ../../mod/register.php:483
-msgid "Your OpenID (optional): "
-msgstr "Votre OpenID (facultatif): "
+#: ../../include/conversation.php:1423
+msgid "Posts flagged as SPAM"
+msgstr "Publications marquées comme indésirables"
 
-#: ../../mod/register.php:497
-msgid "Include your profile in member directory?"
-msgstr "Inclure votre profil dans l'annuaire des membres?"
+#: ../../include/conversation.php:1454
+msgid "Channel"
+msgstr "Canal"
 
-#: ../../mod/register.php:512
-msgid "Membership on this site is by invitation only."
-msgstr "L'inscription à ce site se fait uniquement sur invitation."
+#: ../../include/conversation.php:1457
+msgid "Status Messages and Posts"
+msgstr "Messages d'état et contributions"
 
-#: ../../mod/register.php:513
-msgid "Your invitation ID: "
-msgstr "Votre ID d'invitation: "
+#: ../../include/conversation.php:1466
+msgid "About"
+msgstr "À propos"
 
-#: ../../mod/register.php:516 ../../mod/admin.php:297
-msgid "Registration"
-msgstr "Inscription"
+#: ../../include/conversation.php:1469
+msgid "Profile Details"
+msgstr "Détails du profil"
 
-#: ../../mod/register.php:524
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Votre nom complet (p.ex. Michel Dupont): "
+#: ../../include/conversation.php:1478 ../../include/photos.php:302
+msgid "Photo Albums"
+msgstr "Albums photo"
 
-#: ../../mod/register.php:525
-msgid "Your Email Address: "
-msgstr "Votre adresse courriel: "
+#: ../../include/conversation.php:1487
+msgid "Files and Storage"
+msgstr "Fichiers et Stockage"
 
-#: ../../mod/register.php:526
-msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be "
-"'<strong>nickname@$sitename</strong>'."
+#: ../../include/conversation.php:1496 ../../include/conversation.php:1499
+msgid "Chatrooms"
+msgstr "Salons"
+
+#: ../../include/conversation.php:1509
+msgid "Events and Calendar"
+msgstr "Événements et agenda"
+
+#: ../../include/conversation.php:1517
+msgid "Saved Bookmarks"
+msgstr "Marque-pages sauvegardés"
+
+#: ../../include/conversation.php:1528
+msgid "Manage Webpages"
+msgstr "Gérer les pages web"
+
+#: ../../include/identity.php:29 ../../mod/item.php:1161
+msgid "Unable to obtain identity information from database"
+msgstr "Impossible d'obtenir les données d'identité depuis la base de données"
+
+#: ../../include/identity.php:62
+msgid "Empty name"
+msgstr "Nom vide"
+
+#: ../../include/identity.php:64
+msgid "Name too long"
+msgstr "Nom trop long"
+
+#: ../../include/identity.php:143
+msgid "No account identifier"
+msgstr "Pas d'identifiant de compte"
+
+#: ../../include/identity.php:153
+msgid "Nickname is required."
+msgstr "Un surnom est requis."
+
+#: ../../include/identity.php:167
+msgid ""
+"Nickname has unsupported characters or is already being used on this site."
+msgstr "Le surnom contient des caractères interdits, ou est déjà pris sur ce site."
+
+#: ../../include/identity.php:226
+msgid "Unable to retrieve created identity"
+msgstr "Impossible de récupérer l'identité créée"
+
+#: ../../include/identity.php:285
+msgid "Default Profile"
+msgstr "Profil par défaut"
+
+#: ../../include/identity.php:477
+msgid "Requested channel is not available."
+msgstr "Canal demandé non-disponible."
+
+#: ../../include/identity.php:489
+msgid " Sorry, you don't have the permission to view this profile. "
+msgstr "Désolé, mais vous n'avez pas l'autorisation de voir ce profil."
+
+#: ../../include/identity.php:524 ../../mod/webpages.php:8
+#: ../../mod/connect.php:13 ../../mod/layouts.php:8
+#: ../../mod/achievements.php:8 ../../mod/blocks.php:10
+#: ../../mod/profile.php:16 ../../mod/filestorage.php:40
+msgid "Requested profile is not available."
+msgstr "Profil demandé inaccessible."
+
+#: ../../include/identity.php:642 ../../mod/profiles.php:603
+msgid "Change profile photo"
+msgstr "Changer la photo du profil"
+
+#: ../../include/identity.php:648
+msgid "Profiles"
+msgstr "Profils"
+
+#: ../../include/identity.php:648
+msgid "Manage/edit profiles"
+msgstr "Gérer/éditer profils"
+
+#: ../../include/identity.php:649 ../../mod/profiles.php:604
+msgid "Create New Profile"
+msgstr "Créer un nouveau profil"
+
+#: ../../include/identity.php:652
+msgid "Edit Profile"
+msgstr "Éditer profil"
+
+#: ../../include/identity.php:663 ../../mod/profiles.php:615
+msgid "Profile Image"
+msgstr "Image du profil"
+
+#: ../../include/identity.php:666 ../../mod/profiles.php:618
+msgid "visible to everybody"
+msgstr "visible par tous"
+
+#: ../../include/identity.php:667 ../../mod/profiles.php:619
+msgid "Edit visibility"
+msgstr "Éditer la visibilité"
+
+#: ../../include/identity.php:681 ../../include/identity.php:908
+#: ../../mod/directory.php:158
+msgid "Gender:"
+msgstr "Sexe&nbsp;:"
+
+#: ../../include/identity.php:682 ../../include/identity.php:928
+#: ../../mod/directory.php:160
+msgid "Status:"
+msgstr "État&nbsp;:"
+
+#: ../../include/identity.php:683 ../../include/identity.php:939
+#: ../../mod/directory.php:162
+msgid "Homepage:"
+msgstr "Site web&nbsp;:"
+
+#: ../../include/identity.php:684 ../../mod/dirprofile.php:157
+msgid "Online Now"
+msgstr "Connecté"
+
+#: ../../include/identity.php:752 ../../include/identity.php:832
+#: ../../mod/ping.php:262
+msgid "g A l F d"
+msgstr "H:i l d F"
+
+#: ../../include/identity.php:753 ../../include/identity.php:833
+msgid "F d"
+msgstr "d F"
+
+#: ../../include/identity.php:798 ../../include/identity.php:873
+#: ../../mod/ping.php:284
+msgid "[today]"
+msgstr "[aujourd'hui]"
+
+#: ../../include/identity.php:810
+msgid "Birthday Reminders"
+msgstr "Rappels d'anniversaires"
+
+#: ../../include/identity.php:811
+msgid "Birthdays this week:"
+msgstr "Anniversaires cette semaine&nbsp;:"
+
+#: ../../include/identity.php:866
+msgid "[No description]"
+msgstr "[Pas de description]"
+
+#: ../../include/identity.php:884
+msgid "Event Reminders"
+msgstr "Rappels d'événements"
+
+#: ../../include/identity.php:885
+msgid "Events this week:"
+msgstr "Événements cette semaine&nbsp;:"
+
+#: ../../include/identity.php:898 ../../include/identity.php:982
+#: ../../mod/profperm.php:107
+msgid "Profile"
+msgstr "Profil"
+
+#: ../../include/identity.php:906 ../../mod/settings.php:920
+msgid "Full Name:"
+msgstr "Nom complet&nbsp;:"
+
+#: ../../include/identity.php:913
+msgid "j F, Y"
+msgstr "j F Y"
+
+#: ../../include/identity.php:914
+msgid "j F"
+msgstr "j F"
+
+#: ../../include/identity.php:921
+msgid "Birthday:"
+msgstr "Date de naissance&nbsp;:"
+
+#: ../../include/identity.php:925
+msgid "Age:"
+msgstr "Age&nbsp;:"
+
+#: ../../include/identity.php:934
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "depuis %1$d %2$s"
+
+#: ../../include/identity.php:937 ../../mod/profiles.php:526
+msgid "Sexual Preference:"
+msgstr "Orientation sexuelle&nbsp;:"
+
+#: ../../include/identity.php:941 ../../mod/profiles.php:528
+msgid "Hometown:"
+msgstr "Ville natale&nbsp;:"
+
+#: ../../include/identity.php:943
+msgid "Tags:"
+msgstr "Tags:"
+
+#: ../../include/identity.php:945 ../../mod/profiles.php:529
+msgid "Political Views:"
+msgstr "Opinions politiques&nbsp;:"
+
+#: ../../include/identity.php:947
+msgid "Religion:"
+msgstr "Religion&nbsp;:"
+
+#: ../../include/identity.php:949 ../../mod/directory.php:164
+msgid "About:"
+msgstr "À propos&nbsp;:"
+
+#: ../../include/identity.php:951
+msgid "Hobbies/Interests:"
+msgstr "Occupations/Centres d'intérêt&nbsp;:"
+
+#: ../../include/identity.php:953 ../../mod/profiles.php:532
+msgid "Likes:"
+msgstr "Aime&nbsp;:"
+
+#: ../../include/identity.php:955 ../../mod/profiles.php:533
+msgid "Dislikes:"
+msgstr "N'aime pas&nbsp;:"
+
+#: ../../include/identity.php:958
+msgid "Contact information and Social Networks:"
+msgstr "Coordonnées et réseaux sociaux&nbsp;:"
+
+#: ../../include/identity.php:960
+msgid "My other channels:"
+msgstr "Mes autres canaux&nbsp;:"
+
+#: ../../include/identity.php:962
+msgid "Musical interests:"
+msgstr "Goûts musicaux&nbsp;:"
+
+#: ../../include/identity.php:964
+msgid "Books, literature:"
+msgstr "Lectures, goûts littéraires&nbsp;:"
+
+#: ../../include/identity.php:966
+msgid "Television:"
+msgstr "Télévision&nbsp;:"
+
+#: ../../include/identity.php:968
+msgid "Film/dance/culture/entertainment:"
+msgstr "Cinéma/danse/culture/divertissement&nsbp;:"
+
+#: ../../include/identity.php:970
+msgid "Love/Romance:"
+msgstr "Vie sentimentale/amoureuse&nbsp;:"
+
+#: ../../include/identity.php:972
+msgid "Work/employment:"
+msgstr "Travail&nbsp;:"
+
+#: ../../include/identity.php:974
+msgid "School/education:"
+msgstr "Cursus&nbsp;:"
+
+#: ../../include/ItemObject.php:89 ../../mod/photos.php:843
+msgid "Private Message"
+msgstr "Message Privé"
+
+#: ../../include/ItemObject.php:96 ../../include/page_widgets.php:8
+#: ../../mod/thing.php:229 ../../mod/menu.php:59 ../../mod/webpages.php:118
+#: ../../mod/settings.php:575 ../../mod/editpost.php:103
+#: ../../mod/layouts.php:102 ../../mod/editlayout.php:106
+#: ../../mod/blocks.php:93 ../../mod/editwebpage.php:144
+#: ../../mod/editblock.php:120 ../../mod/filestorage.php:170
+msgid "Edit"
+msgstr "Éditer"
+
+#: ../../include/ItemObject.php:118
+msgid "save to folder"
+msgstr "classer dans un dossier"
+
+#: ../../include/ItemObject.php:146
+msgid "add star"
+msgstr "mettre en avant"
+
+#: ../../include/ItemObject.php:147
+msgid "remove star"
+msgstr "ne plus mettre en avant"
+
+#: ../../include/ItemObject.php:148
+msgid "toggle star status"
+msgstr "(dé)marquer"
+
+#: ../../include/ItemObject.php:152
+msgid "starred"
+msgstr "mis en avant"
+
+#: ../../include/ItemObject.php:169
+msgid "add tag"
+msgstr "étiquetter"
+
+#: ../../include/ItemObject.php:184 ../../mod/photos.php:968
+msgid "I like this (toggle)"
+msgstr "J'aime (oui/non)"
+
+#: ../../include/ItemObject.php:184 ../../include/taxonomy.php:254
+msgid "like"
+msgstr "aime"
+
+#: ../../include/ItemObject.php:185 ../../mod/photos.php:969
+msgid "I don't like this (toggle)"
+msgstr "Je déteste (oui/non)"
+
+#: ../../include/ItemObject.php:185 ../../include/taxonomy.php:255
+msgid "dislike"
+msgstr "déteste"
+
+#: ../../include/ItemObject.php:187
+msgid "Share this"
+msgstr "Partager ça"
+
+#: ../../include/ItemObject.php:187
+msgid "share"
+msgstr "partage"
+
+#: ../../include/ItemObject.php:211 ../../include/ItemObject.php:212
+#, php-format
+msgid "View %s's profile - %s"
+msgstr "Voir le profil de %s - %s"
+
+#: ../../include/ItemObject.php:213
+msgid "to"
+msgstr "à"
+
+#: ../../include/ItemObject.php:214
+msgid "via"
+msgstr "via"
+
+#: ../../include/ItemObject.php:215
+msgid "Wall-to-Wall"
+msgstr "Mur-mur"
+
+#: ../../include/ItemObject.php:216
+msgid "via Wall-To-Wall:"
+msgstr "par Mur-mur&nbsp;:"
+
+#: ../../include/ItemObject.php:249
+msgid "Bookmark Links"
+msgstr ""
+
+#: ../../include/ItemObject.php:279
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d commentaire"
+msgstr[1] "%d commentaires"
+
+#: ../../include/ItemObject.php:544 ../../mod/photos.php:987
+#: ../../mod/photos.php:1074
+msgid "This is you"
+msgstr "C'est vous"
+
+#: ../../include/ItemObject.php:547 ../../mod/events.php:469
+#: ../../mod/thing.php:276 ../../mod/thing.php:318 ../../mod/invite.php:156
+#: ../../mod/settings.php:513 ../../mod/settings.php:625
+#: ../../mod/settings.php:653 ../../mod/settings.php:677
+#: ../../mod/settings.php:748 ../../mod/settings.php:912
+#: ../../mod/chat.php:119 ../../mod/chat.php:149 ../../mod/connect.php:92
+#: ../../mod/group.php:81 ../../mod/admin.php:431 ../../mod/admin.php:738
+#: ../../mod/admin.php:878 ../../mod/admin.php:1077 ../../mod/admin.php:1164
+#: ../../mod/connedit.php:437 ../../mod/profiles.php:506
+#: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/setup.php:304
+#: ../../mod/setup.php:347 ../../mod/import.php:387 ../../mod/mail.php:223
+#: ../../mod/mail.php:335 ../../mod/poke.php:166 ../../mod/fsuggest.php:108
+#: ../../mod/filestorage.php:131 ../../mod/photos.php:562
+#: ../../mod/photos.php:667 ../../mod/photos.php:950 ../../mod/photos.php:990
+#: ../../mod/photos.php:1077 ../../mod/mood.php:142
+#: ../../view/theme/redbasic/php/config.php:95
+#: ../../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 "Envoyer"
+
+#: ../../include/ItemObject.php:548
+msgid "Bold"
+msgstr "Gras"
+
+#: ../../include/ItemObject.php:549
+msgid "Italic"
+msgstr "Italique"
+
+#: ../../include/ItemObject.php:550
+msgid "Underline"
+msgstr "Souligné"
+
+#: ../../include/ItemObject.php:551
+msgid "Quote"
+msgstr "Citation"
+
+#: ../../include/ItemObject.php:552
+msgid "Code"
+msgstr "Code"
+
+#: ../../include/ItemObject.php:553
+msgid "Image"
+msgstr "Image"
+
+#: ../../include/ItemObject.php:554
+msgid "Link"
+msgstr "Lien/URL"
+
+#: ../../include/ItemObject.php:555
+msgid "Video"
+msgstr "Vidéo"
+
+#: ../../include/api.php:974
+msgid "Public Timeline"
+msgstr "Fil public"
+
+#: ../../include/network.php:640
+msgid "view full size"
+msgstr "pleine taille"
+
+#: ../../include/notify.php:23
+msgid "created a new post"
+msgstr "a publié"
+
+#: ../../include/notify.php:24
+#, php-format
+msgid "commented on %s's post"
+msgstr "a commenté la publication de %s"
+
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Mâle"
+
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Femelle"
+
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Actuellement mâle"
+
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Actuellement femelle"
+
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Surtout mâle"
+
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Surtotu femelle"
+
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgenre"
+
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Intersexuel"
+
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transsexuel"
+
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermaphrodite"
+
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Neutre"
+
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Rien de spécifique"
+
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Autre"
+
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Indécis"
+
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Hommes"
+
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Femmes"
+
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Gay"
+
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbienne"
+
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Sans préférence"
+
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bisexuel"
+
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autosexuel"
+
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Abstinent"
+
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Vierge"
+
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Déviant"
+
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fétichiste"
+
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Une floppée"
+
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Nonsexuel"
+
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Célibataire"
+
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Esseulé"
+
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Disponible"
+
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Indisponible"
+
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "A un béguin"
+
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "Amoureux transi"
+
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Sort avec quelqu'un"
+
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Infidèle"
+
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Accro au sexe"
+
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Amis avec bénéfices"
+
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Sans engagement"
+
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Fiancé(e)"
+
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Marrié(e)"
+
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "Marié(e) dans ses rêves"
+
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partenaires"
+
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "En cohabitation"
+
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "Conjoints de fait"
+
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Heureux"
+
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Pas en recherche"
+
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Infidèle"
+
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Trahi(e)"
+
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Séparé(e)"
+
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Instable"
+
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Divorcé(e)"
+
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "Divorcé(e) dans ses rêves"
+
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Veuf/veuve"
+
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Incertain"
+
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "C'est compliqué"
+
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "S'en fiche"
+
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Me demander"
+
+#: ../../include/chat.php:10
+msgid "Missing room name"
+msgstr "Il manque le nom du salon"
+
+#: ../../include/chat.php:19
+msgid "Duplicate room name"
+msgstr "Un salon de ce nom existe déjà"
+
+#: ../../include/chat.php:68 ../../include/chat.php:76
+msgid "Invalid room specifier."
+msgstr "Identifiant de salon invalide."
+
+#: ../../include/chat.php:102
+msgid "Room not found."
+msgstr "Salon introuvable."
+
+#: ../../include/chat.php:123
+msgid "Room is full"
+msgstr "Le salon est plein"
+
+#: ../../include/taxonomy.php:210
+msgid "Tags"
+msgstr "Étiquettes"
+
+#: ../../include/taxonomy.php:227
+msgid "Keywords"
+msgstr "Mots-clefs"
+
+#: ../../include/taxonomy.php:252
+msgid "have"
+msgstr "ont"
+
+#: ../../include/taxonomy.php:252
+msgid "has"
+msgstr "a"
+
+#: ../../include/taxonomy.php:253
+msgid "want"
+msgstr "veulent"
+
+#: ../../include/taxonomy.php:253
+msgid "wants"
+msgstr "veut"
+
+#: ../../include/taxonomy.php:254
+msgid "likes"
+msgstr "aime"
+
+#: ../../include/taxonomy.php:255
+msgid "dislikes"
+msgstr "déteste"
+
+#: ../../include/auth.php:76
+msgid "Logged out."
+msgstr "Deconnecté."
+
+#: ../../include/auth.php:188
+msgid "Failed authentication"
+msgstr "Échec de l'authentification"
+
+#: ../../include/auth.php:203
+msgid "Login failed."
+msgstr "Échec de la connexion."
+
+#: ../../include/account.php:23
+msgid "Not a valid email address"
+msgstr "Ce n'est pas une adresse de courriel valide"
+
+#: ../../include/account.php:25
+msgid "Your email domain is not among those allowed on this site"
+msgstr "Votre domaine de courriel ne fait pas partie de ceux autorisés par ce site"
+
+#: ../../include/account.php:31
+msgid "Your email address is already registered at this site."
+msgstr "Votre adresse de courriel est déjà inscrite sur ce site."
+
+#: ../../include/account.php:64
+msgid "An invitation is required."
+msgstr "Une invitation est requise."
+
+#: ../../include/account.php:68
+msgid "Invitation could not be verified."
+msgstr "Votre invitation n'a pas pu être vérifiée."
+
+#: ../../include/account.php:119
+msgid "Please enter the required information."
+msgstr "Merci d'entrer les informations requises."
+
+#: ../../include/account.php:187
+msgid "Failed to store account information."
+msgstr "Impossible de stocker les informations liées au compte."
+
+#: ../../include/account.php:273
+#, php-format
+msgid "Registration request at %s"
+msgstr "Demande d'inscription sur %s"
+
+#: ../../include/account.php:275 ../../include/account.php:302
+#: ../../include/account.php:359
+msgid "Administrator"
+msgstr "Administrateur"
+
+#: ../../include/account.php:297
+msgid "your registration password"
+msgstr "votre mot de passe d'inscription"
+
+#: ../../include/account.php:300 ../../include/account.php:357
+#, php-format
+msgid "Registration details for %s"
+msgstr "Détails de l'inscription à %s"
+
+#: ../../include/account.php:366
+msgid "Account approved."
+msgstr "Compte approuvé."
+
+#: ../../include/account.php:400
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Inscription révoquée pour %s"
+
+#: ../../include/dir_fns.php:15
+msgid "Sort Options"
+msgstr "Options de tri"
+
+#: ../../include/dir_fns.php:16
+msgid "Alphabetic"
+msgstr "Alphabétique"
+
+#: ../../include/dir_fns.php:17
+msgid "Reverse Alphabetic"
+msgstr "Alphabétique inversé"
+
+#: ../../include/dir_fns.php:18
+msgid "Newest to Oldest"
+msgstr "Anté-chronologique"
+
+#: ../../include/dir_fns.php:30
+msgid "Enable Safe Search"
+msgstr "Activer la recherche sûre"
+
+#: ../../include/dir_fns.php:32
+msgid "Disable Safe Search"
+msgstr "Désactiver la recherche sûre"
+
+#: ../../include/dir_fns.php:34
+msgid "Safe Mode"
+msgstr "Mode sûr"
+
+#: ../../include/enotify.php:40
+msgid "Red Matrix Notification"
+msgstr "Notification Red Matrix"
+
+#: ../../include/enotify.php:41
+msgid "redmatrix"
+msgstr "redmatrix"
+
+#: ../../include/enotify.php:43
+msgid "Thank You,"
+msgstr "Merci,"
+
+#: ../../include/enotify.php:45
+#, php-format
+msgid "%s Administrator"
+msgstr "l'administrateur de %s"
+
+#: ../../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:Notification] Nouveau message reçu sur %s"
+
+#: ../../include/enotify.php:86
+#, php-format
+msgid "%1$s, %2$s sent you a new private message at %3$s."
+msgstr "%1$s, vous avez reçu un message privé sur %3$s, de la part de %2$s."
+
+#: ../../include/enotify.php:87
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s vous a envoyé %2$s."
+
+#: ../../include/enotify.php:87
+msgid "a private message"
+msgstr "un message privé"
+
+#: ../../include/enotify.php:88
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Merci de visiter %s pour voir et/ou répondre à vos messages privés."
+
+#: ../../include/enotify.php:142
+#, php-format
+msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]"
+msgstr ""
+
+#: ../../include/enotify.php:150
+#, php-format
+msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]"
+msgstr ""
+
+#: ../../include/enotify.php:159
+#, php-format
+msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]"
+msgstr ""
+
+#: ../../include/enotify.php:170
+#, php-format
+msgid "[Red:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Red:Notification] Commentaire de %2$s sur conversation #%1$d"
+
+#: ../../include/enotify.php:171
+#, php-format
+msgid "%1$s, %2$s commented on an item/conversation you have been following."
+msgstr ""
+
+#: ../../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 "Merci de visiter %s pour voir et/ou répondre sur cette conversation."
+
+#: ../../include/enotify.php:180
+#, php-format
+msgid "[Red:Notify] %s posted to your profile wall"
+msgstr "[Red:Notification] %s a publié sur votre profil"
+
+#: ../../include/enotify.php:182
+#, php-format
+msgid "%1$s, %2$s posted to your profile wall at %3$s"
+msgstr ""
+
+#: ../../include/enotify.php:184
+#, php-format
+msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]"
+msgstr ""
+
+#: ../../include/enotify.php:208
+#, php-format
+msgid "[Red:Notify] %s tagged you"
+msgstr "[Red:Notification] %s vous a marqué"
+
+#: ../../include/enotify.php:209
+#, php-format
+msgid "%1$s, %2$s tagged you at %3$s"
+msgstr "%1$s, vous avez été étiqueté sur %3$s par %2$s"
+
+#: ../../include/enotify.php:210
+#, php-format
+msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]."
+msgstr ""
+
+#: ../../include/enotify.php:223
+#, php-format
+msgid "[Red:Notify] %1$s poked you"
+msgstr "[Red:Notification] %1$s vous a tapoté"
+
+#: ../../include/enotify.php:224
+#, php-format
+msgid "%1$s, %2$s poked you at %3$s"
+msgstr "%1$s, vous avez été tapoté/pointé/sollicité par %2$s sur %3$s"
+
+#: ../../include/enotify.php:225
+#, php-format
+msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]."
+msgstr ""
+
+#: ../../include/enotify.php:241
+#, php-format
+msgid "[Red:Notify] %s tagged your post"
+msgstr "[Red:Notification] %s a marqué votre publication"
+
+#: ../../include/enotify.php:242
+#, php-format
+msgid "%1$s, %2$s tagged your post at %3$s"
+msgstr ""
+
+#: ../../include/enotify.php:243
+#, php-format
+msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]"
 msgstr ""
-"Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de "
-"votre profil en découlera sous la forme "
-"'&lt;strong&gt;pseudo@$sitename&lt;/strong&gt;'."
 
-#: ../../mod/register.php:527
-msgid "Choose a nickname: "
-msgstr "Choisir un pseudo: "
+#: ../../include/enotify.php:255
+msgid "[Red:Notify] Introduction received"
+msgstr "[Red:Notification] Nouvelle introduction"
 
-#: ../../mod/oexchange.php:27
-msgid "Post successful."
-msgstr "Publication réussie."
+#: ../../include/enotify.php:256
+#, php-format
+msgid "%1$s, you've received an introduction from '%2$s' at %3$s"
+msgstr ""
 
-#: ../../mod/allfriends.php:34
+#: ../../include/enotify.php:257
 #, php-format
-msgid "Friends of %s"
-msgstr "Amis de %s"
+msgid "%1$s, you've received [zrl=%2$s]an introduction[/zrl] from %3$s."
+msgstr ""
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Pas d'amis à afficher."
+#: ../../include/enotify.php:261 ../../include/enotify.php:280
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Vous pouvez visiter leur profil sur %s"
 
-#: ../../mod/help.php:30
-msgid "Help:"
-msgstr "Aide:"
+#: ../../include/enotify.php:263
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Merci de visiter %s avant d'approuver (ou non) son introduction."
 
-#: ../../mod/help.php:34 ../../include/nav.php:82
-msgid "Help"
-msgstr "Aide"
+#: ../../include/enotify.php:270
+msgid "[Red:Notify] Friend suggestion received"
+msgstr "[Red:Notification] Nouvelle suggestion d'amitié"
+
+#: ../../include/enotify.php:271
+#, php-format
+msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s"
+msgstr ""
+
+#: ../../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 ""
+
+#: ../../include/enotify.php:278
+msgid "Name:"
+msgstr "Nom&nbsp;:"
+
+#: ../../include/enotify.php:279
+msgid "Photo:"
+msgstr "Photo&nbsp;:"
+
+#: ../../include/enotify.php:282
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Merci de visiter %s pour donner suite (ou non) à cette suggestion."
+
+#: ../../include/photos.php:89
+#, php-format
+msgid "Image exceeds website size limit of %lu bytes"
+msgstr "L'image dépasse la taille limite de %lu octets"
+
+#: ../../include/photos.php:96
+msgid "Image file is empty."
+msgstr "L'image est vide."
+
+#: ../../include/photos.php:123 ../../mod/profile_photo.php:147
+msgid "Unable to process image"
+msgstr "Impossible de traiter l'image"
+
+#: ../../include/photos.php:185
+msgid "Photo storage failed."
+msgstr "Le stockage de l'image a échoué."
+
+#: ../../include/photos.php:306 ../../mod/photos.php:690
+#: ../../mod/photos.php:1187
+msgid "Upload New Photos"
+msgstr "Ajouter des photos"
 
-#: ../../mod/install.php:34
-msgid "Could not create/connect to database."
-msgstr "Impossible de créer/atteindre la base de données."
+#: ../../include/reddav.php:1018
+msgid "Edit File properties"
+msgstr "Éditer les propriétés du fichier"
 
-#: ../../mod/install.php:39
-msgid "Connected to database."
-msgstr "Connecté à la base de données."
+#: ../../include/contact_widgets.php:14
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d invitation disponible"
+msgstr[1] "%d invitations disponibles"
+
+#: ../../include/contact_widgets.php:20
+msgid "Find Channels"
+msgstr "Trouver des canaux"
+
+#: ../../include/contact_widgets.php:21
+msgid "Enter name or interest"
+msgstr "Saisir nom ou centre d'intérêt"
+
+#: ../../include/contact_widgets.php:22
+msgid "Connect/Follow"
+msgstr "Relier/Suivre"
+
+#: ../../include/contact_widgets.php:23
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Exemples: Robert Morgenstein, Course à pieds"
+
+#: ../../include/contact_widgets.php:24 ../../mod/directory.php:206
+#: ../../mod/directory.php:211 ../../mod/connections.php:357
+msgid "Find"
+msgstr "Trouver"
+
+#: ../../include/contact_widgets.php:25 ../../mod/suggest.php:59
+msgid "Channel Suggestions"
+msgstr "Canaux suggérés"
 
-#: ../../mod/install.php:75
-msgid "Proceed with Installation"
-msgstr "Commencer l'installation"
+#: ../../include/contact_widgets.php:27
+msgid "Random Profile"
+msgstr "Un profil au hasard"
 
-#: ../../mod/install.php:77
-msgid "Your Friendika site database has been installed."
-msgstr "La base de données de votre site Friendika a été installée."
+#: ../../include/contact_widgets.php:28
+msgid "Invite Friends"
+msgstr "Inviter des amis"
+
+#: ../../include/contact_widgets.php:120
+#, php-format
+msgid "%d connection in common"
+msgid_plural "%d connections in common"
+msgstr[0] "%d relation en commun"
+msgstr[1] "%d relations en commun"
+
+#: ../../include/page_widgets.php:6
+msgid "New Page"
+msgstr "Nouvelle page"
+
+#: ../../include/plugin.php:475 ../../include/plugin.php:477
+msgid "Click here to upgrade."
+msgstr "Cliquez ici pour mettre à jour."
+
+#: ../../include/plugin.php:483
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Cette action outrepasserait les limites prévues par votre forfait."
+
+#: ../../include/plugin.php:488
+msgid "This action is not available under your subscription plan."
+msgstr "Cette action n'est pas possible avec la formule choisie."
 
-#: ../../mod/install.php:78
+#: ../../include/follow.php:21
+msgid "Channel is blocked on this site."
+msgstr "Ce canal est bloqué sur ce site."
+
+#: ../../include/follow.php:26
+msgid "Channel location missing."
+msgstr "Localisation du canal manquante."
+
+#: ../../include/follow.php:43
+msgid "Channel discovery failed. Website may be down or misconfigured."
+msgstr "Découverte du canal impossible. Le site est peut-être en dérangement ou mal configuré."
+
+#: ../../include/follow.php:51
+msgid "Response from remote channel was not understood."
+msgstr "La réponse du canal distant n'a pas été comprise."
+
+#: ../../include/follow.php:58
+msgid "Response from remote channel was incomplete."
+msgstr "La réponse du canal distant était incomplète."
+
+#: ../../include/follow.php:129
+msgid "local account not found."
+msgstr "compte local introuvable."
+
+#: ../../include/follow.php:138
+msgid "Cannot connect to yourself."
+msgstr "Ne peut pas se connecter à vous."
+
+#: ../../include/security.php:280
 msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr ""
-"IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le"
-" 'poller'."
+"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 "Le formulaire n'est plus sécurisé, probablement parce qu'il est ouvert depuis trop longtemps (plus de 3 heures)."
+
+#: ../../include/comanche.php:35 ../../view/theme/redbasic/php/config.php:64
+#: ../../view/theme/apw/php/config.php:176
+msgid "Default"
+msgstr "Défaut"
+
+#: ../../include/oembed.php:157
+msgid "Embedded content"
+msgstr "Contenu imbriqué"
+
+#: ../../include/oembed.php:166
+msgid "Embedding disabled"
+msgstr "Imbrication désactivée"
+
+#: ../../include/permissions.php:13
+msgid "Can view my \"public\" stream and posts"
+msgstr "Peut voir mon flux et mes publications \"publiques\""
+
+#: ../../include/permissions.php:14
+msgid "Can view my \"public\" channel profile"
+msgstr "Peut voir mon le canal \"public\" de mon profil"
+
+#: ../../include/permissions.php:15
+msgid "Can view my \"public\" photo albums"
+msgstr "Peut voir mes albums photos \"publics\""
+
+#: ../../include/permissions.php:16
+msgid "Can view my \"public\" address book"
+msgstr "Peut voir mes contacts \"publics\""
+
+#: ../../include/permissions.php:17
+msgid "Can view my \"public\" file storage"
+msgstr "Peut voir mes fichiers \"publics\""
+
+#: ../../include/permissions.php:18
+msgid "Can view my \"public\" pages"
+msgstr "Peut voir mes pages \"publiques\""
+
+#: ../../include/permissions.php:21
+msgid "Can send me their channel stream and posts"
+msgstr "Peut m'envoyer le flux et les publications de leur canal"
+
+#: ../../include/permissions.php:22
+msgid "Can post on my channel page (\"wall\")"
+msgstr "Peut poster sur la page de mon canal (\"mur\")"
+
+#: ../../include/permissions.php:23
+msgid "Can comment on my posts"
+msgstr "Peut commenter mes publications"
 
-#: ../../mod/install.php:79 ../../mod/install.php:89 ../../mod/install.php:207
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Référez-vous au fichier \"INSTALL.txt\"."
+#: ../../include/permissions.php:24
+msgid "Can send me private mail messages"
+msgstr "Peut m'envoyer des messages privés"
 
-#: ../../mod/install.php:81
-msgid "Proceed to registration"
-msgstr "Commencer l'inscription"
+#: ../../include/permissions.php:25
+msgid "Can post photos to my photo albums"
+msgstr "Peut ajouter des photos à mes albums"
 
-#: ../../mod/install.php:87
-msgid "Database import failed."
-msgstr "Import de base échoué."
+#: ../../include/permissions.php:26
+msgid "Can forward to all my channel contacts via post @mentions"
+msgstr "Peut faire suivre à tous les contacts du mon canal via @truc"
 
-#: ../../mod/install.php:88
+#: ../../include/permissions.php:26
+msgid "Advanced - useful for creating group forum channels"
+msgstr "Avancé - utile seulement pour les canaux de type \"forum/groupe\""
+
+#: ../../include/permissions.php:27
+msgid "Can chat with me (when available)"
+msgstr "Peut discuter avec moi (sous réserve de disponibilité)"
+
+#: ../../include/permissions.php:28
+msgid "Can write to my \"public\" file storage"
+msgstr "Peut écrire dans mon stockage \"public\" de fichiers"
+
+#: ../../include/permissions.php:29
+msgid "Can edit my \"public\" pages"
+msgstr "Peut éditer mes pages \"publiques\""
+
+#: ../../include/permissions.php:31
+msgid "Can source my \"public\" posts in derived channels"
+msgstr "Peut utiliser mes contributions \"publiques\" comme source de canaux dérivés"
+
+#: ../../include/permissions.php:31
+msgid "Somewhat advanced - very useful in open communities"
+msgstr "Plutôt avancé - très utile dans les communautés ouvertes"
+
+#: ../../include/permissions.php:32
+msgid "Can send me bookmarks"
+msgstr "Peut m'envoyer des marque-pages"
+
+#: ../../include/permissions.php:33
+msgid "Can administer my channel resources"
+msgstr "Peut administrer les ressources de mon canal"
+
+#: ../../include/permissions.php:33
 msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr ""
-"Vous pourriez avoir besoin d'importer le fichier \"database.sql\" "
-"manuellement au moyen de phpmyadmin ou de la commande mysql."
+"Extremely advanced. Leave this alone unless you know what you are doing"
+msgstr "Très avancé. Ne pas toucher, sauf si vous savez VRAIMENT ce que vous faites"
+
+#: ../../include/items.php:208 ../../mod/like.php:55 ../../mod/group.php:68
+#: ../../mod/profperm.php:23 ../../index.php:350
+msgid "Permission denied"
+msgstr "Accès refusé"
+
+#: ../../include/items.php:3430 ../../mod/thing.php:74 ../../mod/admin.php:151
+#: ../../mod/admin.php:782 ../../mod/admin.php:985 ../../mod/viewsrc.php:18
+#: ../../mod/home.php:63 ../../mod/display.php:32 ../../mod/filestorage.php:18
+msgid "Item not found."
+msgstr "Élément introuvable."
+
+#: ../../include/items.php:3786 ../../mod/group.php:38 ../../mod/group.php:140
+msgid "Collection not found."
+msgstr "Collection introuvable."
+
+#: ../../include/items.php:3801
+msgid "Collection is empty."
+msgstr "Collection vide."
+
+#: ../../include/items.php:3808
+#, php-format
+msgid "Collection: %s"
+msgstr "Collection&nbsp;: %s"
+
+#: ../../include/items.php:3819
+#, php-format
+msgid "Connection: %s"
+msgstr "Relation&nbsp;: %s"
+
+#: ../../include/items.php:3822
+msgid "Connection not found."
+msgstr "Relation introuvable."
+
+#: ../../include/zot.php:545
+msgid "Invalid data packet"
+msgstr "Paquet de données invalide"
+
+#: ../../include/zot.php:555
+msgid "Unable to verify channel signature"
+msgstr "Impossible de vérifier la signature du canal"
+
+#: ../../include/zot.php:732
+#, php-format
+msgid "Unable to verify site signature for %s"
+msgstr "Impossible de vérifier la signature de site pour %s"
+
+#: ../../mod/common.php:10
+msgid "No channel."
+msgstr "Pas de canal."
+
+#: ../../mod/common.php:39
+msgid "Common connections"
+msgstr "Relations communes"
+
+#: ../../mod/common.php:44
+msgid "No connections in common."
+msgstr "Pas de relations en commun."
+
+#: ../../mod/events.php:72
+msgid "Event title and start time are required."
+msgstr "Un titre et une date de début sont requises pour l'événement."
+
+#: ../../mod/events.php:287
+msgid "l, F j"
+msgstr "l j F"
+
+#: ../../mod/events.php:309
+msgid "Edit event"
+msgstr "Éditer événement"
+
+#: ../../mod/events.php:355
+msgid "Create New Event"
+msgstr "Créer événement"
+
+#: ../../mod/events.php:356
+msgid "Previous"
+msgstr "Précédent"
+
+#: ../../mod/events.php:357 ../../mod/setup.php:258
+msgid "Next"
+msgstr "Suivant"
+
+#: ../../mod/events.php:428
+msgid "hour:minute"
+msgstr "heure:minute"
+
+#: ../../mod/events.php:447
+msgid "Event details"
+msgstr "Détails de l'événement"
+
+#: ../../mod/events.php:448
+#, php-format
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "Le format est %s %s. Date de début et titre obligatoires."
 
-#: ../../mod/install.php:101
-msgid "Welcome to Friendika."
-msgstr "Bienvenue sur Friendika."
+#: ../../mod/events.php:450
+msgid "Event Starts:"
+msgstr "L'événement débute&nbsp;:"
+
+#: ../../mod/events.php:450 ../../mod/events.php:464
+msgid "Required"
+msgstr "Requis"
+
+#: ../../mod/events.php:453
+msgid "Finish date/time is not known or not relevant"
+msgstr "Date/heure de fin inconnue ou sans objet"
+
+#: ../../mod/events.php:455
+msgid "Event Finishes:"
+msgstr "L'événement termine&nbsp;:"
+
+#: ../../mod/events.php:458
+msgid "Adjust for viewer timezone"
+msgstr "Ajuster au fuseau horaire du visiteur"
+
+#: ../../mod/events.php:460
+msgid "Description:"
+msgstr "Description:"
+
+#: ../../mod/events.php:464
+msgid "Title:"
+msgstr "Titre:"
+
+#: ../../mod/events.php:466
+msgid "Share this event"
+msgstr "Partager cet événement"
+
+#: ../../mod/thing.php:94
+msgid "Thing updated"
+msgstr "Chose mise-à-jour"
+
+#: ../../mod/thing.php:153
+msgid "Object store: failed"
+msgstr "Stockage de l'objet&nbsp;: échec"
+
+#: ../../mod/thing.php:157
+msgid "Thing added"
+msgstr "Chose ajoutée"
+
+#: ../../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:228
+msgid "Show Thing"
+msgstr "Montrer chose"
+
+#: ../../mod/thing.php:235
+msgid "item not found."
+msgstr "élément introuvable."
+
+#: ../../mod/thing.php:263
+msgid "Edit Thing"
+msgstr "Éditer chose"
+
+#: ../../mod/thing.php:265 ../../mod/thing.php:311
+msgid "Select a profile"
+msgstr "Choisissez un profil"
+
+#: ../../mod/thing.php:267 ../../mod/thing.php:313
+msgid "Select a category of stuff. e.g. I ______ something"
+msgstr "Choisissez une catégorie de choses. p.ex. Je ______ quelque-chose"
+
+#: ../../mod/thing.php:270 ../../mod/thing.php:315
+msgid "Name of thing e.g. something"
+msgstr "Nom de la chose, p.ex. quelque-chose"
+
+#: ../../mod/thing.php:272 ../../mod/thing.php:316
+msgid "URL of thing (optional)"
+msgstr "URL de la chose (optionnel)"
+
+#: ../../mod/thing.php:274 ../../mod/thing.php:317
+msgid "URL for photo of thing (optional)"
+msgstr "URL de l'image de la chose (optionnel)"
+
+#: ../../mod/thing.php:309
+msgid "Add Thing to your Profile"
+msgstr "Ajouter la chose à votre profil"
+
+#: ../../mod/invite.php:25
+msgid "Total invitation limit exceeded."
+msgstr "Limite du nombre total d'invitation dépassée."
+
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s&nbsp: adresse courriel invalide."
+
+#: ../../mod/invite.php:76
+msgid "Please join us on Red"
+msgstr "Rejoignez-nous sur Red"
+
+#: ../../mod/invite.php:87
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limite d'invitations dépassée. Merci de contacter l'administration de votre site."
+
+#: ../../mod/invite.php:92
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s&nbsp;: Échec dans la livraison du message."
+
+#: ../../mod/invite.php:96
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d message envoyé."
+msgstr[1] "%d messages envoyés."
+
+#: ../../mod/invite.php:115
+msgid "You have no more invitations available"
+msgstr "Vous ne disposez plus d'aucune invitation"
 
-#: ../../mod/install.php:124
-msgid "Friendika Social Network"
-msgstr "Réseau social Friendika"
+#: ../../mod/invite.php:141
+msgid "Send invitations"
+msgstr "Envoyer des invitations"
+
+#: ../../mod/invite.php:142
+msgid "Enter email addresses, one per line:"
+msgstr "Entrez les adresses de courriel, une par ligne&nbsp;:"
 
-#: ../../mod/install.php:125
-msgid "Installation"
-msgstr "Installation"
+#: ../../mod/invite.php:143 ../../mod/mail.php:216 ../../mod/mail.php:328
+msgid "Your message:"
+msgstr "Votre message&nbsp;:"
 
-#: ../../mod/install.php:126
+#: ../../mod/invite.php:144
 msgid ""
-"In order to install Friendika we need to know how to connect to your "
-"database."
-msgstr ""
-"Pour installer Friendika, nous avons besoin de contacter votre base de "
-"données."
+"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 "Vous êtes cordialement invité à me rejoindre, ainsi que d'autres amis proches, sur la Matrice Red - un nouvel outil de communication acentré/décentralisé et révolutionnaire."
+
+#: ../../mod/invite.php:146
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Vous devrez fournir ce code d'invitation&nbsp;: $invite_code"
+
+#: ../../mod/invite.php:147
+msgid "Please visit my channel at"
+msgstr "Merci de me rendre visite sur"
 
-#: ../../mod/install.php:127
+#: ../../mod/invite.php:151
 msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr ""
-"Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute "
-"question concernant ces réglages."
+"Once you have registered (on ANY Red Matrix site - they are all inter-"
+"connected), please connect with my Red Matrix channel address:"
+msgstr "Une fois inscrit (sur N'IMPORTE QUEL site Red Matrix - ils sont tous inter-connectés), merci de vous relier à l'adresse de mon canal&nbsp;:"
+
+#: ../../mod/invite.php:153
+msgid "Click the [Register] link on the following page to join."
+msgstr "Cliquez le lien [Inscription] sur la page suivante pour nous rejoindre."
 
-#: ../../mod/install.php:128
+#: ../../mod/invite.php:155
 msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr ""
-"La base de données que vous spécifierez doit exister. Si ce n'est pas encore"
-" le cas, merci de la créer avant de continuer."
+"For more information about the Red Matrix Project and why it has the "
+"potential to change the internet as we know it, please visit "
+"http://getzot.com"
+msgstr "Pour plus d'information sur le projet Red Matrix, et sa capacité à remodeler Internet, merci de visiter http://getzot.com"
+
+#: ../../mod/item.php:145
+msgid "Unable to locate original post."
+msgstr "Impossible de localiser la publication initiale."
+
+#: ../../mod/item.php:346
+msgid "Empty post discarded."
+msgstr "Publication vide défaussée."
+
+#: ../../mod/item.php:388
+msgid "Executable content type not permitted to this channel."
+msgstr "Les contenus de type 'exécutable' ne sont pas autorisés sur ce canal."
+
+#: ../../mod/item.php:819
+msgid "System error. Post not saved."
+msgstr "Erreur système. Publication non sauvegardée."
+
+#: ../../mod/item.php:1086 ../../mod/wall_upload.php:41
+msgid "Wall Photos"
+msgstr "Photos du mur"
+
+#: ../../mod/item.php:1166
+#, php-format
+msgid "You have reached your limit of %1$.0f top level posts."
+msgstr "Vous avez atteint votre limite de %1$.0f contributions \"racine\"."
+
+#: ../../mod/item.php:1172
+#, php-format
+msgid "You have reached your limit of %1$.0f webpages."
+msgstr "Vous avez atteint votre limite de %1$.0f pages web."
+
+#: ../../mod/menu.php:21
+msgid "Menu updated."
+msgstr "Menu mis à jour."
+
+#: ../../mod/menu.php:25
+msgid "Unable to update menu."
+msgstr "Impossible de mettre le menu à jour."
+
+#: ../../mod/menu.php:30
+msgid "Menu created."
+msgstr "Menu créé."
+
+#: ../../mod/menu.php:34
+msgid "Unable to create menu."
+msgstr "Impossible de créer le menu."
+
+#: ../../mod/menu.php:57
+msgid "Manage Menus"
+msgstr "Gérer les menus"
+
+#: ../../mod/menu.php:60
+msgid "Drop"
+msgstr "Supprimer"
+
+#: ../../mod/menu.php:62
+msgid "Create a new menu"
+msgstr "Créer un nouveau menu"
+
+#: ../../mod/menu.php:63
+msgid "Delete this menu"
+msgstr "Supprimer ce menu"
+
+#: ../../mod/menu.php:64 ../../mod/menu.php:109
+msgid "Edit menu contents"
+msgstr "Éditer le contenu du menu"
+
+#: ../../mod/menu.php:65
+msgid "Edit this menu"
+msgstr "Éditer le menu"
+
+#: ../../mod/menu.php:80
+msgid "New Menu"
+msgstr "Nouveau menu"
+
+#: ../../mod/menu.php:81 ../../mod/menu.php:110
+msgid "Menu name"
+msgstr "Nom du menu"
+
+#: ../../mod/menu.php:81 ../../mod/menu.php:110
+msgid "Must be unique, only seen by you"
+msgstr "Doit être unique, ne sera vu que par vous"
+
+#: ../../mod/menu.php:82 ../../mod/menu.php:111
+msgid "Menu title"
+msgstr "Titre du menu"
+
+#: ../../mod/menu.php:82 ../../mod/menu.php:111
+msgid "Menu title as seen by others"
+msgstr "Titre du menu tel que vu par les visiteurs"
+
+#: ../../mod/menu.php:83 ../../mod/menu.php:112
+msgid "Allow bookmarks"
+msgstr "Autoriser les marque-pages"
+
+#: ../../mod/menu.php:83 ../../mod/menu.php:112
+msgid "Menu may be used to store saved bookmarks"
+msgstr "Le menu pourra être utilisé pour stocker des marque-pages"
+
+#: ../../mod/menu.php:84 ../../mod/mitem.php:142 ../../mod/new_channel.php:117
+msgid "Create"
+msgstr "Créer"
+
+#: ../../mod/menu.php:92 ../../mod/mitem.php:14
+msgid "Menu not found."
+msgstr "Menu introuvable."
+
+#: ../../mod/menu.php:98
+msgid "Menu deleted."
+msgstr "Menu supprimé."
+
+#: ../../mod/menu.php:100
+msgid "Menu could not be deleted."
+msgstr "Impossible de supprimer le menu."
+
+#: ../../mod/menu.php:106
+msgid "Edit Menu"
+msgstr "Éditer le menu"
+
+#: ../../mod/menu.php:108
+msgid "Add or remove entries to this menu"
+msgstr "Ajouter/supprimer des entrées à ce menu"
+
+#: ../../mod/menu.php:114 ../../mod/mitem.php:186
+msgid "Modify"
+msgstr "Modifier"
+
+#: ../../mod/menu.php:120 ../../mod/mitem.php:78 ../../mod/xchan.php:27
+#: ../../mod/dirprofile.php:181
+msgid "Not found."
+msgstr "Introuvable."
+
+#: ../../mod/webpages.php:121 ../../mod/layouts.php:105
+#: ../../mod/blocks.php:96
+msgid "View"
+msgstr "Vue"
+
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Autoriser l'application à se connecter"
+
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Merci de retourner vers votre application, et d'y insérer ce Code de Sécurité&nbsp;:"
+
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Merci de vous connecter pour continuer."
+
+#: ../../mod/api.php:104
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à publier en votre nom?"
+
+#: ../../mod/api.php:105 ../../mod/settings.php:874 ../../mod/settings.php:879
+#: ../../mod/profiles.php:483
+msgid "Yes"
+msgstr "Oui"
+
+#: ../../mod/api.php:106 ../../mod/settings.php:874 ../../mod/settings.php:879
+#: ../../mod/profiles.php:484
+msgid "No"
+msgstr "Non"
 
-#: ../../mod/install.php:129
-msgid "Database Server Name"
-msgstr "Serveur de base de données"
+#: ../../mod/apps.php:8
+msgid "No installed applications."
+msgstr "Aucune application installée."
 
-#: ../../mod/install.php:130
-msgid "Database Login Name"
-msgstr "Nom d'utilisateur de la base"
+#: ../../mod/apps.php:13
+msgid "Applications"
+msgstr "Applications"
 
-#: ../../mod/install.php:131
-msgid "Database Login Password"
-msgstr "Mot de passe de la base"
+#: ../../mod/rpost.php:86 ../../mod/editpost.php:42
+msgid "Edit post"
+msgstr "Éditer la contribution"
 
-#: ../../mod/install.php:132
-msgid "Database Name"
-msgstr "Nom de la base"
+#: ../../mod/cloud.php:112
+msgid "Red Matrix - Guests: Username: {your email address}, Password: +++"
+msgstr "Red Matrix - Pour les invités: Username={votre courriel}, MDP=+++"
 
-#: ../../mod/install.php:133
-msgid "Please select a default timezone for your website"
-msgstr "Sélectionner un fuseau horaire par défaut pour votre site"
+#: ../../mod/bookmarks.php:38
+msgid "Bookmark added"
+msgstr "Marque-page ajouté"
 
-#: ../../mod/install.php:134
-msgid ""
-"Site administrator email address. Your account email address must match this"
-" in order to use the web admin panel."
-msgstr ""
-"Adresse courriel de l'administrateur du site. L'adresse courriel de votre "
-"compte doit correspondre si vous voulez utiliser l'administration web."
+#: ../../mod/bookmarks.php:53
+msgid "My Bookmarks"
+msgstr "Mes marque-pages"
 
-#: ../../mod/install.php:153
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr ""
-"Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH "
-"du serveur web."
+#: ../../mod/bookmarks.php:64
+msgid "My Connections Bookmarks"
+msgstr "Marque-pages de mes relations"
 
-#: ../../mod/install.php:154
-msgid ""
-"This is required. Please adjust the configuration file .htconfig.php "
-"accordingly."
-msgstr ""
-"Ceci est requis. Merci d'ajuster la configuration dans le fichier "
-".htconfig.php en conséquence."
+#: ../../mod/settings.php:71
+msgid "Name is required"
+msgstr "Le nom est requis"
 
-#: ../../mod/install.php:161
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr ""
-"La version \"ligne de commande\" de PHP de votre système n'a pas "
-"\"register_argc_argv\" d'activé."
+#: ../../mod/settings.php:75
+msgid "Key and Secret are required"
+msgstr "Clef et secret sont requis"
 
-#: ../../mod/install.php:162
-msgid "This is required for message delivery to work."
-msgstr "Ceci est requis pour que la livraison des messages fonctionne."
+#: ../../mod/settings.php:79 ../../mod/settings.php:539
+msgid "Update"
+msgstr "Mise-à-jour"
 
-#: ../../mod/install.php:184
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr ""
-"Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de "
-"générer des clés de chiffrement"
+#: ../../mod/settings.php:192
+msgid "Passwords do not match. Password unchanged."
+msgstr "Les deux saisies du mot de passe ne correspondent pas. Il n'a donc pas été changé."
 
-#: ../../mod/install.php:185
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr ""
-"Si vous utilisez Windows, merci de vous réferer à "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
+#: ../../mod/settings.php:196
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Le mot de passe ne peut pas être vide. Il n'a donc pas été changé."
 
-#: ../../mod/install.php:194
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr ""
-"Erreur: Le module \"rewrite\" du serveur web Apache est requis mais pas "
-"installé."
+#: ../../mod/settings.php:209
+msgid "Password changed."
+msgstr "Le mot de passe a été changé."
 
-#: ../../mod/install.php:196
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Erreur: Le module PHP \"libCURL\" est requis mais pas installé."
+#: ../../mod/settings.php:211
+msgid "Password update failed. Please try again."
+msgstr "La mise-à-jour du mot de passe a échoué. Merci de recommencer."
 
-#: ../../mod/install.php:198
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr ""
-"Erreur: Le module PHP \"GD\" disposant du support JPEG est requis mais pas "
-"installé."
+#: ../../mod/settings.php:225
+msgid "Not valid email."
+msgstr "Adresse de courriel non-valide."
 
-#: ../../mod/install.php:200
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Erreur: Le module PHP \"openssl\" est requis mais pas installé."
+#: ../../mod/settings.php:228
+msgid "Protected email address. Cannot change to that email."
+msgstr "Adresse de courriel protégée. Impossible de l'utiliser."
 
-#: ../../mod/install.php:202
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Erreur: Le module PHP \"mysqli\" est requis mais pas installé."
+#: ../../mod/settings.php:237
+msgid "System failure storing new email. Please try again."
+msgstr "Défaillance système lors du stockage de la nouvelle adresse de courriel. Merci de ré-essayer."
 
-#: ../../mod/install.php:204
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Erreur: le module PHP mb_string est requis mais pas installé."
+#: ../../mod/settings.php:441
+msgid "Settings updated."
+msgstr "Réglages sauvegardés."
 
-#: ../../mod/install.php:216
-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'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à"
-" la racine de votre serveur web, mais il en est incapable."
+#: ../../mod/settings.php:512 ../../mod/settings.php:538
+#: ../../mod/settings.php:574
+msgid "Add application"
+msgstr "Ajouter une application"
 
-#: ../../mod/install.php:217
-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 ""
-"Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut "
-"ne pas être capable d'écrire dans votre répertoire - alors que vous-même le "
-"pouvez."
+#: ../../mod/settings.php:515 ../../mod/settings.php:541
+msgid "Name"
+msgstr "Nom"
 
-#: ../../mod/install.php:218
-msgid ""
-"Please check with your site documentation or support people to see if this "
-"situation can be corrected."
-msgstr ""
-"Merci de vérifier - avec la documentation ou le support de votre hébergement"
-" - que la situation peut être corrigée."
+#: ../../mod/settings.php:515
+msgid "Name of application"
+msgstr "Nom de l'application"
 
-#: ../../mod/install.php:219
-msgid ""
-"If not, you may be required to perform a manual installation. Please see the"
-" file \"INSTALL.txt\" for instructions."
-msgstr ""
-"Dans le cas contraire, vous pouvez pratiquer une installation manuelle. "
-"Référez-vous au fichier \"INSTALL.txt\" pour les instructions."
+#: ../../mod/settings.php:516 ../../mod/settings.php:542
+msgid "Consumer Key"
+msgstr "Clef de consommateur"
 
-#: ../../mod/install.php:228
-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 ""
-"Le fichier de configuration de la base (\".htconfig.php\") ne peut être "
-"créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine "
-"de votre hébergement."
+#: ../../mod/settings.php:516 ../../mod/settings.php:517
+msgid "Automatically generated - change if desired. Max length 20"
+msgstr "Généré automatiquement - à changer si besoin. Longueur maximale 20 caractères."
 
-#: ../../mod/install.php:243
-msgid "Errors encountered creating database tables."
-msgstr "Des erreurs ont été signalées lors de la création des tables."
+#: ../../mod/settings.php:517 ../../mod/settings.php:543
+msgid "Consumer Secret"
+msgstr "Secret de consommateur"
 
-#: ../../mod/network.php:148
-msgid "Commented Order"
-msgstr "Dans l'ordre des commentaires"
+#: ../../mod/settings.php:518 ../../mod/settings.php:544
+msgid "Redirect"
+msgstr "Redirection"
 
-#: ../../mod/network.php:153
-msgid "Posted Order"
-msgstr "Dans l'ordre des notices"
+#: ../../mod/settings.php:518
+msgid ""
+"Redirect URI - leave blank unless your application specifically requires "
+"this"
+msgstr "URI de redirection - laissez blanc, sauf si l'application a demandé autrement"
 
-#: ../../mod/network.php:159
-msgid "New"
-msgstr "Nouveau"
+#: ../../mod/settings.php:519 ../../mod/settings.php:545
+msgid "Icon url"
+msgstr "URL de l'icône"
 
-#: ../../mod/network.php:164
-msgid "Starred"
-msgstr "Mis en avant"
+#: ../../mod/settings.php:519
+msgid "Optional"
+msgstr "Facultatif"
 
-#: ../../mod/network.php:169
-msgid "Bookmarks"
-msgstr "Marqué"
+#: ../../mod/settings.php:530
+msgid "You can't edit this application."
+msgstr "Vous ne pouvez pas éditer cette application."
 
-#: ../../mod/network.php:216
-#, php-format
-msgid "Warning: This group contains %s member from an insecure network."
-msgid_plural ""
-"Warning: This group contains %s members from an insecure network."
-msgstr[0] "Attention: Ce groupe contient %s membre d'un réseau non-sûr."
-msgstr[1] "Attention: Ce groupe contient %s membres d'un réseau non-sûr."
-
-#: ../../mod/network.php:219
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr ""
-"Les messages privés envoyés à ce groupe s'exposent à une diffusion "
-"incontrôlée."
+#: ../../mod/settings.php:573
+msgid "Connected Apps"
+msgstr "Applications connectées"
 
-#: ../../mod/network.php:292
-msgid "No such group"
-msgstr "Groupe inexistant"
+#: ../../mod/settings.php:577
+msgid "Client key starts with"
+msgstr "La clef cliente commence par"
 
-#: ../../mod/network.php:303
-msgid "Group is empty"
-msgstr "Groupe vide"
+#: ../../mod/settings.php:578
+msgid "No name"
+msgstr "Sans nom"
 
-#: ../../mod/network.php:308
-msgid "Group: "
-msgstr "Groupe: "
+#: ../../mod/settings.php:579
+msgid "Remove authorization"
+msgstr "Révoquer l'autorisation"
 
-#: ../../mod/network.php:318
-msgid "Contact: "
-msgstr "Contact: "
+#: ../../mod/settings.php:590
+msgid "No feature settings configured"
+msgstr "Pas de fonctionnalité à configurer"
 
-#: ../../mod/network.php:320
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr ""
-"Les messages privés envoyés à ce contact s'exposent à une diffusion "
-"incontrôlée."
+#: ../../mod/settings.php:598
+msgid "Feature Settings"
+msgstr "Fonctionnalités"
 
-#: ../../mod/network.php:325
-msgid "Invalid contact."
-msgstr "Contact invalide."
+#: ../../mod/settings.php:621
+msgid "Account Settings"
+msgstr "Compte"
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Identifiant de profil invalide."
+#: ../../mod/settings.php:622
+msgid "Password Settings"
+msgstr "Mot de passe"
 
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "Éditer la visibilité du profil"
+#: ../../mod/settings.php:623
+msgid "New Password:"
+msgstr "Nouveau mot de passe&nbsp;:"
 
-#: ../../mod/profperm.php:105 ../../mod/group.php:164
-msgid "Click on a contact to add or remove."
-msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer."
+#: ../../mod/settings.php:624
+msgid "Confirm:"
+msgstr "Confirmation&nbsp;:"
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Visible par"
+#: ../../mod/settings.php:624
+msgid "Leave password fields blank unless changing"
+msgstr "Laissez les mots de passe vides si vous ne voulez pas les modifier"
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Tous les contacts (ayant un accès sécurisé)"
+#: ../../mod/settings.php:626 ../../mod/settings.php:921
+msgid "Email Address:"
+msgstr "Adresse de courriel&nbsp;:"
 
-#: ../../mod/events.php:61
-msgid "Event description and start time are required."
-msgstr "Une description et une heure de début sont requises."
+#: ../../mod/settings.php:627
+msgid "Remove Account"
+msgstr "Supprimer le compte"
 
-#: ../../mod/events.php:207
-msgid "Create New Event"
-msgstr "Créer un nouvel événement"
+#: ../../mod/settings.php:628
+msgid "Warning: This action is permanent and cannot be reversed."
+msgstr "Attention&nbsp;: cette action est permanente et irréversible."
 
-#: ../../mod/events.php:210
-msgid "Previous"
-msgstr "Précédent"
+#: ../../mod/settings.php:644
+msgid "Off"
+msgstr "Inactif"
 
-#: ../../mod/events.php:213
-msgid "Next"
-msgstr "Suivant"
+#: ../../mod/settings.php:644
+msgid "On"
+msgstr "Actif"
 
-#: ../../mod/events.php:220
-msgid "l, F j"
-msgstr "l, F j"
+#: ../../mod/settings.php:651
+msgid "Additional Features"
+msgstr "Fonctionnalités additionnelles"
 
-#: ../../mod/events.php:232
-msgid "Edit event"
-msgstr "Editer l'événement"
+#: ../../mod/settings.php:676
+msgid "Connector Settings"
+msgstr "Connecteurs"
 
-#: ../../mod/events.php:234 ../../include/text.php:857
-msgid "link to source"
-msgstr "lien original"
+#: ../../mod/settings.php:706 ../../mod/admin.php:379
+msgid "No special theme for mobile devices"
+msgstr "Pas de thème spécifique aux périphériques mobiles"
 
-#: ../../mod/events.php:302
-msgid "hour:minute"
-msgstr "heures:minutes"
+#: ../../mod/settings.php:746
+msgid "Display Settings"
+msgstr "Affichage"
 
-#: ../../mod/events.php:311
-msgid "Event details"
-msgstr "Détails de l'événement"
+#: ../../mod/settings.php:752
+msgid "Display Theme:"
+msgstr "Thème&nbsp;:"
 
-#: ../../mod/events.php:312
-#, php-format
-msgid "Format is %s %s. Starting date and Description are required."
-msgstr ""
-"Le format est %s %s. Une date de début et une description sont requises."
+#: ../../mod/settings.php:753
+msgid "Mobile Theme:"
+msgstr "Thème mobile&nbsp;:"
 
-#: ../../mod/events.php:313
-msgid "Event Starts:"
-msgstr "Début de l'événement:"
+#: ../../mod/settings.php:754
+msgid "Update browser every xx seconds"
+msgstr "Rafraîchir le navigateur toutes les xx secondes"
 
-#: ../../mod/events.php:316
-msgid "Finish date/time is not known or not relevant"
-msgstr "Date/heure de fin inconnue ou sans objet"
+#: ../../mod/settings.php:754
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Minimum 10 secondes, pas de maximum"
 
-#: ../../mod/events.php:318
-msgid "Event Finishes:"
-msgstr "Fin de l'événement:"
+#: ../../mod/settings.php:755
+msgid "Maximum number of conversations to load at any time:"
+msgstr "Nombre maximal de conversations pouvant être chargées en même temps&nbsp;:"
 
-#: ../../mod/events.php:321
-msgid "Adjust for viewer timezone"
-msgstr "Ajuster à la zone horaire du visiteur"
+#: ../../mod/settings.php:755
+msgid "Maximum of 100 items"
+msgstr "100 éléments au maximum"
 
-#: ../../mod/events.php:323
-msgid "Description:"
-msgstr "Description:"
+#: ../../mod/settings.php:756
+msgid "Don't show emoticons"
+msgstr "Ne pas montrer les frimousses/émoticones"
 
-#: ../../mod/events.php:327
-msgid "Share this event"
-msgstr "Partager cet événement"
+#: ../../mod/settings.php:792
+msgid "Nobody except yourself"
+msgstr "Personne sauf vous"
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Identifiant de demande invalide."
+#: ../../mod/settings.php:793
+msgid "Only those you specifically allow"
+msgstr "Seulement ceux que vous autorisez spécifiquement"
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:144
-#: ../../mod/notifications.php:188
-msgid "Discard"
-msgstr "Défausser"
+#: ../../mod/settings.php:794
+msgid "Anybody in your address book"
+msgstr "Tous vos contacts"
 
-#: ../../mod/notifications.php:71 ../../include/nav.php:109
-msgid "Network"
-msgstr "Réseau"
+#: ../../mod/settings.php:795
+msgid "Anybody on this website"
+msgstr "Tous les utilisateurs du site"
 
-#: ../../mod/notifications.php:76 ../../include/nav.php:73
-#: ../../include/nav.php:111
-msgid "Home"
-msgstr "Accueil"
+#: ../../mod/settings.php:796
+msgid "Anybody in this network"
+msgstr "Tous les utilisateurs du réseau"
 
-#: ../../mod/notifications.php:81 ../../include/nav.php:117
-msgid "Introductions"
-msgstr "Introductions"
+#: ../../mod/settings.php:797
+msgid "Anybody on the internet"
+msgstr "Tout les utilisateurs d'Internet"
 
-#: ../../mod/notifications.php:86 ../../mod/message.php:72
-#: ../../include/nav.php:122
-msgid "Messages"
-msgstr "Messages"
+#: ../../mod/settings.php:874
+msgid "Publish your default profile in the network directory"
+msgstr "Publier votre profil par défaut dans l'annuaire du réseau"
 
-#: ../../mod/notifications.php:105
-msgid "Show Ignored Requests"
-msgstr "Voir les demandes ignorées"
+#: ../../mod/settings.php:879
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Nous autoriser à vous suggérer comme relation potentielle aux nouveaux arrivants?"
 
-#: ../../mod/notifications.php:105
-msgid "Hide Ignored Requests"
-msgstr "Cacher les demandes ignorées"
+#: ../../mod/settings.php:883 ../../mod/profile_photo.php:288
+msgid "or"
+msgstr "ou"
 
-#: ../../mod/notifications.php:131 ../../mod/notifications.php:174
-msgid "Notification type: "
-msgstr "Type de notification: "
+#: ../../mod/settings.php:888
+msgid "Your channel address is"
+msgstr "Votre canal a pour adresse"
 
-#: ../../mod/notifications.php:132
-msgid "Friend Suggestion"
-msgstr "Suggestion d'amitié/contact"
+#: ../../mod/settings.php:910
+msgid "Channel Settings"
+msgstr "Canal"
 
-#: ../../mod/notifications.php:134
-#, php-format
-msgid "suggested by %s"
-msgstr "suggéré(e) par %s"
+#: ../../mod/settings.php:919
+msgid "Basic Settings"
+msgstr "Basique"
 
-#: ../../mod/notifications.php:140 ../../mod/notifications.php:185
-#: ../../mod/admin.php:466
-msgid "Approve"
-msgstr "Approuver"
+#: ../../mod/settings.php:922
+msgid "Your Timezone:"
+msgstr "Zone de temps&nbsp;:"
 
-#: ../../mod/notifications.php:160
-msgid "Claims to be known to you: "
-msgstr "Prétend que vous le connaissez: "
+#: ../../mod/settings.php:923
+msgid "Default Post Location:"
+msgstr "Localisation par défaut&nbsp;:"
 
-#: ../../mod/notifications.php:160
-msgid "yes"
-msgstr "oui"
+#: ../../mod/settings.php:924
+msgid "Use Browser Location:"
+msgstr "Utiliser la localisation fournie par le navigateur&nbsp;:"
 
-#: ../../mod/notifications.php:160
-msgid "no"
-msgstr "non"
+#: ../../mod/settings.php:926
+msgid "Adult Content"
+msgstr "Contenu \"adulte\""
 
-#: ../../mod/notifications.php:167
-msgid "Approve as: "
-msgstr "Approuver en tant que: "
+#: ../../mod/settings.php:926
+msgid ""
+"This channel frequently or regularly publishes adult content. (Please tag "
+"any adult material and/or nudity with #NSFW)"
+msgstr "Ce canal publie plus ou moins fréquemment du contenu pour adultes. (Merci d'indiquer tout contenu pour adulte ou potentiellement choquant avec le tag <em>#NSFW</em> - Not Safe For Work)"
 
-#: ../../mod/notifications.php:168
-msgid "Friend"
-msgstr "Ami"
+#: ../../mod/settings.php:928
+msgid "Security and Privacy Settings"
+msgstr "Sécurité et vie privée"
 
-#: ../../mod/notifications.php:169
-msgid "Sharer"
-msgstr "Initiateur du partage"
+#: ../../mod/settings.php:930
+msgid "Hide my online presence"
+msgstr "Cacher ma présence en ligne"
 
-#: ../../mod/notifications.php:169
-msgid "Fan/Admirer"
-msgstr "Fan/Admirateur"
+#: ../../mod/settings.php:930
+msgid "Prevents displaying in your profile that you are online"
+msgstr "Cacher votre statut (en ligne/hors ligne) sur votre profil"
 
-#: ../../mod/notifications.php:175
-msgid "Friend/Connect Request"
-msgstr "Demande de connexion/relation"
+#: ../../mod/settings.php:932
+msgid "Simple Privacy Settings:"
+msgstr "Réglages simples&nbsp;:"
 
-#: ../../mod/notifications.php:175
-msgid "New Follower"
-msgstr "Nouvel abonné"
+#: ../../mod/settings.php:933
+msgid ""
+"Very Public - <em>extremely permissive (should be used with caution)</em>"
+msgstr "Très public - <em>extrèmement permissif (à n'utiliser qu'en connaissance de cause)</em>"
 
-#: ../../mod/notifications.php:194
-msgid "No notifications."
-msgstr "Pas de notification."
+#: ../../mod/settings.php:934
+msgid ""
+"Typical - <em>default public, privacy when desired (similar to social "
+"network permissions but with improved privacy)</em>"
+msgstr "Classique - <em>public par défaut, privé en cas de besoin (comparable dans le principe aux réseaux sociaux centralisés, avec un mode privé plus efficace)</em>"
 
-#: ../../mod/notifications.php:197 ../../mod/notifications.php:283
-#: ../../mod/notifications.php:359 ../../include/nav.php:118
-msgid "Notifications"
-msgstr "Notifications"
+#: ../../mod/settings.php:935
+msgid "Private - <em>default private, never open or public</em>"
+msgstr "Privé - <em>privé par défaut, jamais ouvert ni public</em>"
 
-#: ../../mod/notifications.php:234 ../../mod/notifications.php:316
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s a aimé la notice de %s"
+#: ../../mod/settings.php:936
+msgid "Blocked - <em>default blocked to/from everybody</em>"
+msgstr "Bloqué - <em>par défaut, bloqué de/vers tout le monde</em>"
 
-#: ../../mod/notifications.php:243 ../../mod/notifications.php:325
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s n'a pas aimé la notice de %s"
+#: ../../mod/settings.php:939
+msgid "Advanced Privacy Settings"
+msgstr "Réglages avancés"
 
-#: ../../mod/notifications.php:257 ../../mod/notifications.php:339
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s est désormais ami(e) avec %s"
+#: ../../mod/settings.php:941
+msgid "Maximum Friend Requests/Day:"
+msgstr "Nombre maximum de mises en relation par jour&nbsp;:"
 
-#: ../../mod/notifications.php:264
-#, php-format
-msgid "%s created a new post"
-msgstr "%s a publié une notice"
+#: ../../mod/settings.php:941
+msgid "May reduce spam activity"
+msgstr "Contribue à réduire l'impact du spam"
 
-#: ../../mod/notifications.php:265 ../../mod/notifications.php:348
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s a commenté une notice de %s"
+#: ../../mod/settings.php:942
+msgid "Default Post Permissions"
+msgstr "Permissions par défaut des publications"
 
-#: ../../mod/notifications.php:279 ../../mod/notifications.php:355
-msgid "Nothing new!"
-msgstr "Rien de neuf!"
+#: ../../mod/settings.php:943 ../../mod/mitem.php:134 ../../mod/mitem.php:177
+msgid "(click to open/close)"
+msgstr "(cliquer pour ouvrir/fermer)"
 
-#: ../../mod/crepair.php:100
-msgid "Contact settings applied."
-msgstr "Réglages du contact appliqués."
+#: ../../mod/settings.php:954
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Nombre maximum de messages privés émanant d'inconnus, par jour&nbsp;:"
 
-#: ../../mod/crepair.php:102
-msgid "Contact update failed."
-msgstr "Impossible d'appliquer les réglages."
+#: ../../mod/settings.php:954
+msgid "Useful to reduce spamming"
+msgstr "Utile pour réduire le spam"
 
-#: ../../mod/crepair.php:127 ../../mod/fsuggest.php:20
-#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:114
-msgid "Contact not found."
-msgstr "Contact introuvable."
+#: ../../mod/settings.php:957
+msgid "Notification Settings"
+msgstr "Notifications"
 
-#: ../../mod/crepair.php:133
-msgid "Repair Contact Settings"
-msgstr "Réglages du réparateur de contacts"
+#: ../../mod/settings.php:958
+msgid "By default post a status message when:"
+msgstr "Par défaut, publier un statut quand:"
 
-#: ../../mod/crepair.php:135
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr ""
-"<strong>ATTENTION: Manipulation réservée aux experts</strong>, toute "
-"information incorrecte pourrait empêcher la communication avec ce contact."
+#: ../../mod/settings.php:959
+msgid "accepting a friend request"
+msgstr "acceptez une mise en relation"
 
-#: ../../mod/crepair.php:136
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "une photo"
+#: ../../mod/settings.php:960
+msgid "joining a forum/community"
+msgstr "joignez un forum ou à une communauté"
 
-#: ../../mod/crepair.php:145
-msgid "Account Nickname"
-msgstr "Pseudo du compte"
+#: ../../mod/settings.php:961
+msgid "making an <em>interesting</em> profile change"
+msgstr "faites une modification <em>intéressante</em> de votre profil"
 
-#: ../../mod/crepair.php:146
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@NomDuTag - prend le pas sur Nom/Pseudo"
+#: ../../mod/settings.php:962
+msgid "Send a notification email when:"
+msgstr "Envoyer un courriel de notification quand&nbsp;:"
 
-#: ../../mod/crepair.php:147
-msgid "Account URL"
-msgstr "URL du compte"
+#: ../../mod/settings.php:963
+msgid "You receive an introduction"
+msgstr "Vous recevez une introduction"
 
-#: ../../mod/crepair.php:148
-msgid "Friend Request URL"
-msgstr "Echec du téléversement de l'image."
+#: ../../mod/settings.php:964
+msgid "Your introductions are confirmed"
+msgstr "Vos introductions sont acceptées/confirmées"
 
-#: ../../mod/crepair.php:149
-msgid "Friend Confirm URL"
-msgstr "Accès public refusé."
+#: ../../mod/settings.php:965
+msgid "Someone writes on your profile wall"
+msgstr "Quelqu'un écrit sur votre mur"
 
-#: ../../mod/crepair.php:150
-msgid "Notification Endpoint URL"
-msgstr "Aucune photo sélectionnée"
+#: ../../mod/settings.php:966
+msgid "Someone writes a followup comment"
+msgstr "Quelqu'un commente sur vos publications"
 
-#: ../../mod/crepair.php:151
-msgid "Poll/Feed URL"
-msgstr "Téléverser des photos"
+#: ../../mod/settings.php:967
+msgid "You receive a private message"
+msgstr "Vous recevez un Message Privé"
 
-#: ../../mod/crepair.php:152
-msgid "New photo from this URL"
-msgstr "Nouvelle photo depuis cette URL"
+#: ../../mod/settings.php:968
+msgid "You receive a friend suggestion"
+msgstr "Vous recevez une suggestion d'amitié/relation"
 
-#: ../../mod/dfrn_request.php:92
-msgid "This introduction has already been accepted."
-msgstr "Cette introduction a déjà été acceptée."
+#: ../../mod/settings.php:969
+msgid "You are tagged in a post"
+msgstr "Vous êtes étiqueté dans une publication"
 
-#: ../../mod/dfrn_request.php:116 ../../mod/dfrn_request.php:351
-msgid "Profile location is not valid or does not contain profile information."
-msgstr ""
-"L'emplacement du profil est invalide ou ne contient pas de profil valide."
+#: ../../mod/settings.php:970
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Vous êtes tapoté/pointé/etc. dans une publication"
 
-#: ../../mod/dfrn_request.php:121 ../../mod/dfrn_request.php:356
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Attention: l'emplacement du profil n'a pas de nom identifiable."
+#: ../../mod/settings.php:973
+msgid "Advanced Account/Page Type Settings"
+msgstr "Type de page/Compte (avancé)"
 
-#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:358
-msgid "Warning: profile location has no profile photo."
-msgstr "Attention: l'emplacement du profil n'a pas de photo de profil."
+#: ../../mod/settings.php:974
+msgid "Change the behaviour of this account for special situations"
+msgstr "Modifie le comportement de ce compte pour certains cas particuliers"
 
-#: ../../mod/dfrn_request.php:126 ../../mod/dfrn_request.php:361
+#: ../../mod/subthread.php:105
 #, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] "%d paramètre requis n'a pas été trouvé à l'endroit indiqué"
-msgstr[1] "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué"
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s suit %3$s de %2$s"
 
-#: ../../mod/dfrn_request.php:167
-msgid "Introduction complete."
-msgstr "Phase de présentation achevée."
+#: ../../mod/update_network.php:23 ../../mod/update_channel.php:43
+#: ../../mod/update_search.php:46 ../../mod/update_display.php:25
+#: ../../mod/update_community.php:18
+msgid "[Embedded content - reload page to view]"
+msgstr "[Contenu embarqué - rechargez la page pour le voir]"
 
-#: ../../mod/dfrn_request.php:191
-msgid "Unrecoverable protocol error."
-msgstr "Erreur de protocole non-récupérable."
+#: ../../mod/chanview.php:77 ../../mod/home.php:50 ../../mod/page.php:47
+#: ../../mod/wall_upload.php:35
+msgid "Channel not found."
+msgstr "Canal introuvable."
 
-#: ../../mod/dfrn_request.php:219
-msgid "Profile unavailable."
-msgstr "Profil indisponible."
+#: ../../mod/chanview.php:93
+msgid "toggle full screen mode"
+msgstr "(dés)activer le mode plein-écran"
 
-#: ../../mod/dfrn_request.php:244
+#: ../../mod/tagger.php:98
 #, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s a reçu trop de demande d'introduction aujourd'hui."
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s a étiqueté le %3$s de %2$s par %4$s"
 
-#: ../../mod/dfrn_request.php:245
-msgid "Spam protection measures have been invoked."
-msgstr "Des mesures de protection contre le spam ont été déclenchées."
+#: ../../mod/chat.php:18 ../../mod/channel.php:25
+msgid "You must be logged in to see this page."
+msgstr "Vous devez vous connecter pour voir cette page."
 
-#: ../../mod/dfrn_request.php:246
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Les relations sont encouragées à attendre 24 heures pour recommencer."
+#: ../../mod/chat.php:120
+msgid "Leave Room"
+msgstr "Quitter le salon"
 
-#: ../../mod/dfrn_request.php:276
-msgid "Invalid locator"
-msgstr "Localisateur invalide"
+#: ../../mod/chat.php:121
+msgid "I am away right now"
+msgstr "Je suis momentanément absent"
 
-#: ../../mod/dfrn_request.php:296
-msgid "Unable to resolve your name at the provided location."
-msgstr "Impossible de résoudre votre nom à l'emplacement fourni."
+#: ../../mod/chat.php:122
+msgid "I am online"
+msgstr "Je suis en ligne"
 
-#: ../../mod/dfrn_request.php:309
-msgid "You have already introduced yourself here."
-msgstr "Vous vous êtes déjà présenté ici."
+#: ../../mod/chat.php:146 ../../mod/chat.php:166
+msgid "New Chatroom"
+msgstr "Nouveau salon"
 
-#: ../../mod/dfrn_request.php:313
+#: ../../mod/chat.php:147
+msgid "Chatroom Name"
+msgstr "Nom du salon"
+
+#: ../../mod/chat.php:162
 #, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Il semblerait que vous soyez déjà ami avec %s."
+msgid "%1$s's Chatrooms"
+msgstr "Salons de %1$s"
+
+#: ../../mod/viewconnections.php:17 ../../mod/search.php:13
+#: ../../mod/directory.php:15 ../../mod/display.php:9
+#: ../../mod/community.php:18 ../../mod/dirprofile.php:9
+#: ../../mod/photos.php:442
+msgid "Public access denied."
+msgstr "Accès public refusé."
 
-#: ../../mod/dfrn_request.php:334
-msgid "Invalid profile URL."
-msgstr "URL de profil invalide."
+#: ../../mod/viewconnections.php:43
+msgid "No connections."
+msgstr "Pas de relations."
 
-#: ../../mod/dfrn_request.php:430
-msgid "Your introduction has been sent."
-msgstr "Votre présentation a été envoyée."
+#: ../../mod/viewconnections.php:55
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Visiter le profil de %s [%s]"
 
-#: ../../mod/dfrn_request.php:483
-msgid "Please login to confirm introduction."
-msgstr "Connectez-vous pour confirmer l'introduction."
+#: ../../mod/viewconnections.php:70
+msgid "View Connnections"
+msgstr "Voir les relations"
 
-#: ../../mod/dfrn_request.php:497
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr ""
-"Identité incorrecte actuellement connectée. Merci de vous connecter à "
-"<strong>ce</strong> profil."
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Étiquette retirée"
 
-#: ../../mod/dfrn_request.php:509
-#, php-format
-msgid "Welcome home %s."
-msgstr "Bienvenue chez vous, %s."
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Retirer une étiquette à l'élément"
 
-#: ../../mod/dfrn_request.php:510
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Merci de confirmer votre demande d'introduction auprès de %s."
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Étiquette à retirer&nbsp;:"
+
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 ../../mod/photos.php:905
+msgid "Remove"
+msgstr "Retirer"
 
-#: ../../mod/dfrn_request.php:511
-msgid "Confirm"
-msgstr "Confirmer"
+#: ../../mod/connect.php:55 ../../mod/connect.php:103
+msgid "Continue"
+msgstr "Continuer"
 
-#: ../../mod/dfrn_request.php:544 ../../include/items.php:2431
-msgid "[Name Withheld]"
-msgstr "[Nom non-publié]"
+#: ../../mod/connect.php:84
+msgid "Premium Channel Setup"
+msgstr "Configuration du canal Premium"
 
-#: ../../mod/dfrn_request.php:551
-msgid "Introduction received at "
-msgstr "Introduction reçue sur "
+#: ../../mod/connect.php:86
+msgid "Enable premium channel connection restrictions"
+msgstr "Activer les restrictions liées au canal premium"
 
-#: ../../mod/dfrn_request.php:635
-#, php-format
+#: ../../mod/connect.php:87
 msgid ""
-"Diaspora members: Please do not use this form. Instead, enter \"%s\" into "
-"your Diaspora search bar."
-msgstr ""
-"Membres de Diaspora : N'utilisez pas ce formulaire. Entrez plutôt \"%s\" "
-"dans votre barre de recherche Diaspora."
+"Please enter your restrictions or conditions, such as paypal receipt, usage "
+"guidelines, etc."
+msgstr "Merci de saisir les restrictions et/ou conditions - reçu Paypal, transaction Bitcoin, ligne de conduite, ..."
 
-#: ../../mod/dfrn_request.php:638
+#: ../../mod/connect.php:89 ../../mod/connect.php:109
 msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"social networks:"
-msgstr ""
-"Saisissez votre \"Adresse d'identité\" de l'un des réseaux sociaux suivants:"
+"This channel may require additional steps or acknowledgement of the "
+"following conditions prior to connecting:"
+msgstr "Avant d'autoriser la mise en relation, ce canal attire votre attention sur les conditions suivantes&nbsp;:"
 
-#: ../../mod/dfrn_request.php:641
-msgid "Friend/Connection Request"
-msgstr "Requête de relation/amitié"
+#: ../../mod/connect.php:90
+msgid ""
+"Potential connections will then see the following text before proceeding:"
+msgstr "Les relations potentielles verront ce qui suit avant de pouvoir continuer&nbsp;:"
 
-#: ../../mod/dfrn_request.php:642
+#: ../../mod/connect.php:91 ../../mod/connect.php:112
 msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr ""
-"Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
+"By continuing, I certify that I have complied with any instructions provided"
+" on this page."
+msgstr "En continuant, je certifie que je me suis acquitté de toutes les instructions indiquées sur cette page."
 
-#: ../../mod/dfrn_request.php:643
-msgid "Please answer the following:"
-msgstr "Merci de répondre à ce qui suit:"
+#: ../../mod/connect.php:100
+msgid "(No specific instructions have been provided by the channel owner.)"
+msgstr "(Aucune instruction spécifique n'a été établie par le propriétaire du canal.)"
 
-#: ../../mod/dfrn_request.php:644
-#, php-format
-msgid "Does %s know you?"
-msgstr "Est-ce que %s vous connaît?"
+#: ../../mod/connect.php:108
+msgid "Restricted or Premium Channel"
+msgstr "Canal Premium ou restreint"
 
-#: ../../mod/dfrn_request.php:647
-msgid "Add a personal note:"
-msgstr "Ajouter une note personnelle:"
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr "Aucun délégué potentiel n'a été trouvé pour cette page."
 
-#: ../../mod/dfrn_request.php:649 ../../include/contact_selectors.php:78
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../mod/delegate.php:121
+msgid "Delegate Page Management"
+msgstr "Gestion des délégués de la page"
 
-#: ../../mod/dfrn_request.php:650
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
+#: ../../mod/delegate.php:123
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Les délégués sont capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages basiques du compte. Merci de ne déléguer votre compte personnel qu'à quelqu'un en qui vous avez une confiance aveugle."
 
-#: ../../mod/dfrn_request.php:652
-msgid "- please share from your own site as noted above"
-msgstr "- partagez depuis votre propre site comme indiqué ci-dessus"
+#: ../../mod/delegate.php:124
+msgid "Existing Page Managers"
+msgstr "Actuels gestionnaires de pages"
 
-#: ../../mod/dfrn_request.php:653
-msgid "Your Identity Address:"
-msgstr "Votre adresse d'identité:"
+#: ../../mod/delegate.php:126
+msgid "Existing Page Delegates"
+msgstr "Actuels délégués"
 
-#: ../../mod/dfrn_request.php:654
-msgid "Submit Request"
-msgstr "Envoyer la requête"
+#: ../../mod/delegate.php:128
+msgid "Potential Delegates"
+msgstr "Délégués potentiels"
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Autoriser l'application à se connecter"
+#: ../../mod/delegate.php:131
+msgid "Add"
+msgstr "Ajouter"
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Retournez à votre application et saisissez ce Code de Sécurité : "
+#: ../../mod/delegate.php:132
+msgid "No entries."
+msgstr "Aucune entrée."
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Merci de vous connecter pour continuer."
+#: ../../mod/chatsvc.php:102
+msgid "Away"
+msgstr "Absent"
 
-#: ../../mod/api.php:104
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr ""
-"Voulez-vous autoriser cette application à accéder à vos notices et contacts,"
-" et/ou à créer des notices à votre place?"
-
-#: ../../mod/tagger.php:70 ../../mod/like.php:127
-#: ../../addon/facebook/facebook.php:1024
-#: ../../addon/communityhome/communityhome.php:158
-#: ../../addon/communityhome/communityhome.php:167
-#: ../../include/conversation.php:26 ../../include/conversation.php:35
-#: ../../include/diaspora.php:1211
-msgid "status"
-msgstr "le statut"
+#: ../../mod/chatsvc.php:106
+msgid "Online"
+msgstr "En ligne"
 
-#: ../../mod/tagger.php:103
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s a taggué %3$s de %2$s avec %4$s"
+#: ../../mod/attach.php:9
+msgid "Item not available."
+msgstr "Élément indisponible."
 
-#: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1028
-#: ../../addon/communityhome/communityhome.php:172
-#: ../../include/conversation.php:43 ../../include/diaspora.php:1227
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s aime %3$s de %2$s"
+#: ../../mod/mitem.php:47
+msgid "Menu element updated."
+msgstr "Entrée de menu mis-à-jour."
 
-#: ../../mod/like.php:146 ../../include/conversation.php:46
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s n'aime pas %3$s de %2$s"
+#: ../../mod/mitem.php:51
+msgid "Unable to update menu element."
+msgstr "Impossible de mettre l'entrée de menu à jour."
 
-#: ../../mod/lostpass.php:16
-msgid "No valid account found."
-msgstr "Impossible de trouver un compte valide."
+#: ../../mod/mitem.php:57
+msgid "Menu element added."
+msgstr "Entrée de menu ajouté."
 
-#: ../../mod/lostpass.php:31
-msgid "Password reset request issued. Check your email."
-msgstr "Réinitialisation du mot de passe en cours. Vérifiez votre courriel."
+#: ../../mod/mitem.php:61
+msgid "Unable to add menu element."
+msgstr "Impossible d'ajouter l'entrée de menu."
 
-#: ../../mod/lostpass.php:42
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Requête de réinitialisation de mot de passe à %s"
+#: ../../mod/mitem.php:96
+msgid "Manage Menu Elements"
+msgstr "Gérer les entrées de menu"
 
-#: ../../mod/lostpass.php:64
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr ""
-"Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par"
-" le passé.) La réinitialisation a échoué."
+#: ../../mod/mitem.php:99
+msgid "Edit menu"
+msgstr "Éditer le menu"
 
-#: ../../mod/lostpass.php:83
-msgid "Your password has been reset as requested."
-msgstr "Votre mot de passe a bien été réinitialisé."
+#: ../../mod/mitem.php:102
+msgid "Edit element"
+msgstr "Éditer l'entrée"
 
-#: ../../mod/lostpass.php:84
-msgid "Your new password is"
-msgstr "Votre nouveau mot de passe est "
+#: ../../mod/mitem.php:103
+msgid "Drop element"
+msgstr "Supprimer l'entrée"
 
-#: ../../mod/lostpass.php:85
-msgid "Save or copy your new password - and then"
-msgstr "Sauvez ou copiez ce nouveau mot de passe - puis"
+#: ../../mod/mitem.php:104
+msgid "New element"
+msgstr "Nouvelle entrée"
 
-#: ../../mod/lostpass.php:86
-msgid "click here to login"
-msgstr "cliquez ici pour vous connecter"
+#: ../../mod/mitem.php:105
+msgid "Edit this menu container"
+msgstr "Éditer ce bloc de menu"
+
+#: ../../mod/mitem.php:106
+msgid "Add menu element"
+msgstr "Ajouter une entrée au menu"
+
+#: ../../mod/mitem.php:107
+msgid "Delete this menu item"
+msgstr "Supprimer cet entrée du menu"
+
+#: ../../mod/mitem.php:108
+msgid "Edit this menu item"
+msgstr "Éditer cette entrée du menu"
 
-#: ../../mod/lostpass.php:87
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr ""
-"Votre mot de passe peut être changé depuis la page "
-"&lt;em&gt;Réglages&lt;/em&gt;, une fois que vous serez connecté."
+#: ../../mod/mitem.php:131
+msgid "New Menu Element"
+msgstr "Nouvelle entrée de menu"
 
-#: ../../mod/lostpass.php:118
-msgid "Forgot your Password?"
-msgstr "Mot de passe oublié?"
+#: ../../mod/mitem.php:133 ../../mod/mitem.php:176
+msgid "Menu Item Permissions"
+msgstr "Permissions de l'entrée de menu"
 
-#: ../../mod/lostpass.php:119
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr ""
-"Entrez votre adresse de courriel et validez pour réinitialiser votre mot de "
-"passe. Vous recevrez la suite des instructions par courriel."
+#: ../../mod/mitem.php:136 ../../mod/mitem.php:180
+msgid "Link text"
+msgstr "Texte du lien"
 
-#: ../../mod/lostpass.php:120
-msgid "Nickname or Email: "
-msgstr "Pseudo ou Courriel: "
+#: ../../mod/mitem.php:137 ../../mod/mitem.php:181
+msgid "URL of link"
+msgstr "URL du lien"
 
-#: ../../mod/lostpass.php:121
-msgid "Reset"
-msgstr "Réinitialiser"
+#: ../../mod/mitem.php:138 ../../mod/mitem.php:182
+msgid "Use Red magic-auth if available"
+msgstr "Utiliser l'authentification automagique de Red, si possible"
 
-#: ../../mod/friendica.php:43
-msgid "This is Friendica, version"
-msgstr "Motorisé par Friendica version"
+#: ../../mod/mitem.php:139 ../../mod/mitem.php:183
+msgid "Open link in new window"
+msgstr "Ouvrir le lien dans une nouvelle fenêtre"
 
-#: ../../mod/friendica.php:44
-msgid "running at web location"
-msgstr "hébergé sur"
+#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
+msgid "Order in list"
+msgstr "Ordre dans la liste"
 
-#: ../../mod/friendica.php:46
-msgid ""
-"Please visit <a "
-"href=\"http://project.friendika.com\">Project.Friendika.com</a> to learn "
-"more about the Friendica project."
-msgstr ""
-"Pour en savoir plus, vous pouvez nous rendre visite sur &lt;a "
-"href=\"http://project.friendica.com\"&gt;Project.Friendica.com&lt;/a&gt;"
+#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
+msgid "Higher numbers will sink to bottom of listing"
+msgstr "Les nombres les plus élevés seront descendus au bas de la liste"
 
-#: ../../mod/friendica.php:48
-msgid "Bug reports and issues: please visit"
-msgstr "Pour les rapports de bugs: rendez vous sur"
+#: ../../mod/mitem.php:154
+msgid "Menu item not found."
+msgstr "Entrée de menu introuvable."
 
-#: ../../mod/friendica.php:49
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr ""
-"Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. "
-"Friendica - point com"
+#: ../../mod/mitem.php:163
+msgid "Menu item deleted."
+msgstr "Entrée de menu supprimée."
 
-#: ../../mod/friendica.php:54
-msgid "Installed plugins/addons/apps"
-msgstr "Extensions/greffons/applications installées"
+#: ../../mod/mitem.php:165
+msgid "Menu item could not be deleted."
+msgstr "Impossible de supprimer l'entrée de menu."
 
-#: ../../mod/friendica.php:62
-msgid "No installed plugins/addons/apps"
-msgstr "Aucune extension/greffon/application installée"
+#: ../../mod/mitem.php:174
+msgid "Edit Menu Element"
+msgstr "Éditer l'entrée de menu"
 
-#: ../../mod/removeme.php:42 ../../mod/removeme.php:45
-msgid "Remove My Account"
-msgstr "Supprimer mon compte"
+#: ../../mod/group.php:20
+msgid "Collection created."
+msgstr "Collection créée."
 
-#: ../../mod/removeme.php:43
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr ""
-"Ceci supprimera totalement votre compte. Cette opération est irréversible."
+#: ../../mod/group.php:26
+msgid "Could not create collection."
+msgstr "Impossible de créer la collection."
 
-#: ../../mod/removeme.php:44
-msgid "Please enter your password for verification:"
-msgstr "Merci de saisir votre mot de passe pour vérification:"
+#: ../../mod/group.php:54
+msgid "Collection updated."
+msgstr "Collection mise-à-jour."
 
-#: ../../mod/apps.php:4
-msgid "Applications"
-msgstr "Applications"
+#: ../../mod/group.php:86
+msgid "Create a collection of channels."
+msgstr "Créez une collection de canaux."
 
-#: ../../mod/apps.php:7
-msgid "No installed applications."
-msgstr "Pas d'application installée."
+#: ../../mod/group.php:87 ../../mod/group.php:183
+msgid "Collection Name: "
+msgstr "Nom de la collection&nbsp;:"
 
-#: ../../mod/notes.php:63 ../../include/text.php:628
-msgid "Save"
-msgstr "Sauver"
+#: ../../mod/group.php:89 ../../mod/group.php:186
+msgid "Members are visible to other channels"
+msgstr "Les membres sont visibles par les autres canaux"
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Suggestion d'amitié/contact envoyée."
+#: ../../mod/group.php:107
+msgid "Collection removed."
+msgstr "Collection supprimée."
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Suggérer des amis/contacts"
+#: ../../mod/group.php:109
+msgid "Unable to remove collection."
+msgstr "Impossible de supprimer la collection."
 
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Suggérer un ami/contact pour %s"
+#: ../../mod/group.php:182
+msgid "Collection Editor"
+msgstr "Éditeur de collection"
+
+#: ../../mod/group.php:196
+msgid "Members"
+msgstr "Membres"
 
-#: ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Accès refusé."
+#: ../../mod/group.php:198
+msgid "All Connected Channels"
+msgstr "Tous canaux connectés"
 
-#: ../../mod/directory.php:49
-msgid "Global Directory"
-msgstr "Annuaire global"
+#: ../../mod/group.php:231
+msgid "Click on a channel to add or remove."
+msgstr "Cliquer sur un canal pour ajouter ou supprimer"
 
-#: ../../mod/directory.php:55
-msgid "Normal site view"
-msgstr "Vue normale"
+#: ../../mod/profperm.php:29 ../../mod/profperm.php:58
+msgid "Invalid profile identifier."
+msgstr "Identifiant de profil invalide."
 
-#: ../../mod/directory.php:57
-msgid "Admin - View all site entries"
-msgstr "Admin - voir toutes les entrées"
+#: ../../mod/profperm.php:105
+msgid "Profile Visibility Editor"
+msgstr "Éditeur de visibilité de profil"
 
-#: ../../mod/directory.php:63
-msgid "Find on this site"
-msgstr "Trouver sur ce site"
+#: ../../mod/profperm.php:109
+msgid "Click on a contact to add or remove."
+msgstr "Cliquez sur un contact pour l'ajouter ou le retirer."
 
-#: ../../mod/directory.php:66
-msgid "Site Directory"
-msgstr "Annuaire local"
+#: ../../mod/profperm.php:118
+msgid "Visible To"
+msgstr "Visible par"
 
-#: ../../mod/directory.php:125
-msgid "Gender: "
-msgstr "Genre: "
+#: ../../mod/profperm.php:134 ../../mod/connections.php:250
+msgid "All Connections"
+msgstr "Toutes les relations"
 
-#: ../../mod/directory.php:151
-msgid "No entries (some entries may be hidden)."
-msgstr "Aucune entrée (certaines peuvent être cachées)."
+#: ../../mod/admin.php:48
+msgid "Theme settings updated."
+msgstr "Réglages du thème sauvegardés."
 
-#: ../../mod/admin.php:59 ../../mod/admin.php:295
+#: ../../mod/admin.php:88 ../../mod/admin.php:430
 msgid "Site"
 msgstr "Site"
 
-#: ../../mod/admin.php:60 ../../mod/admin.php:460 ../../mod/admin.php:472
+#: ../../mod/admin.php:89 ../../mod/admin.php:737 ../../mod/admin.php:749
 msgid "Users"
 msgstr "Utilisateurs"
 
-#: ../../mod/admin.php:61 ../../mod/admin.php:549 ../../mod/admin.php:586
+#: ../../mod/admin.php:90 ../../mod/admin.php:835 ../../mod/admin.php:877
 msgid "Plugins"
 msgstr "Extensions"
 
-#: ../../mod/admin.php:76 ../../mod/admin.php:651
+#: ../../mod/admin.php:91 ../../mod/admin.php:1040 ../../mod/admin.php:1076
+msgid "Themes"
+msgstr "Thèmes"
+
+#: ../../mod/admin.php:92 ../../mod/admin.php:529
+msgid "Server"
+msgstr "Serveur"
+
+#: ../../mod/admin.php:93
+msgid "DB updates"
+msgstr "MàJ BD"
+
+#: ../../mod/admin.php:107 ../../mod/admin.php:114 ../../mod/admin.php:1163
 msgid "Logs"
 msgstr "Journaux"
 
-#: ../../mod/admin.php:81
+#: ../../mod/admin.php:113
+msgid "Plugin Features"
+msgstr "Fonctionnalités liées aux extensions"
+
+#: ../../mod/admin.php:115
 msgid "User registrations waiting for confirmation"
-msgstr "Inscriptions en attente de confirmation"
+msgstr "Inscriptions en attente"
 
-#: ../../mod/admin.php:144 ../../mod/admin.php:294 ../../mod/admin.php:459
-#: ../../mod/admin.php:548 ../../mod/admin.php:585 ../../mod/admin.php:650
+#: ../../mod/admin.php:189
+msgid "Message queues"
+msgstr "File des messages"
+
+#: ../../mod/admin.php:194 ../../mod/admin.php:429 ../../mod/admin.php:528
+#: ../../mod/admin.php:736 ../../mod/admin.php:834 ../../mod/admin.php:876
+#: ../../mod/admin.php:1039 ../../mod/admin.php:1075 ../../mod/admin.php:1162
 msgid "Administration"
 msgstr "Administration"
 
-#: ../../mod/admin.php:145
+#: ../../mod/admin.php:195
 msgid "Summary"
 msgstr "Résumé"
 
-#: ../../mod/admin.php:146
+#: ../../mod/admin.php:197
 msgid "Registered users"
 msgstr "Utilisateurs inscrits"
 
-#: ../../mod/admin.php:148
+#: ../../mod/admin.php:199 ../../mod/admin.php:532
 msgid "Pending registrations"
 msgstr "Inscriptions en attente"
 
-#: ../../mod/admin.php:149
+#: ../../mod/admin.php:200
 msgid "Version"
-msgstr "Versio"
+msgstr "Version"
 
-#: ../../mod/admin.php:151
+#: ../../mod/admin.php:202 ../../mod/admin.php:533
 msgid "Active plugins"
-msgstr "Extensions activés"
+msgstr "Extensions actives"
 
-#: ../../mod/admin.php:243
+#: ../../mod/admin.php:350
 msgid "Site settings updated."
-msgstr "Réglages du site mis-à-jour."
+msgstr "Réglages du site sauvegardés."
+
+#: ../../mod/admin.php:381
+msgid "No special theme for accessibility"
+msgstr "Pas de thème spécifique pour l'accessibilité"
 
-#: ../../mod/admin.php:287
+#: ../../mod/admin.php:409
 msgid "Closed"
 msgstr "Fermé"
 
-#: ../../mod/admin.php:288
+#: ../../mod/admin.php:410
 msgid "Requires approval"
-msgstr "Demande une apptrobation"
+msgstr "Après approbation"
 
-#: ../../mod/admin.php:289
+#: ../../mod/admin.php:411
 msgid "Open"
 msgstr "Ouvert"
 
-#: ../../mod/admin.php:298
+#: ../../mod/admin.php:416
+msgid "Private"
+msgstr "Privé"
+
+#: ../../mod/admin.php:417
+msgid "Paid Access"
+msgstr "Accès payant"
+
+#: ../../mod/admin.php:418
+msgid "Free Access"
+msgstr "Accès gratuit"
+
+#: ../../mod/admin.php:419
+msgid "Tiered Access"
+msgstr "Accès par paliers"
+
+#: ../../mod/admin.php:432 ../../mod/register.php:189
+msgid "Registration"
+msgstr "Inscription"
+
+#: ../../mod/admin.php:433
 msgid "File upload"
-msgstr "Téléversement de fichier"
+msgstr "Envoi de fichier"
 
-#: ../../mod/admin.php:299
+#: ../../mod/admin.php:434
 msgid "Policies"
-msgstr "Politiques"
+msgstr "Stratégies"
 
-#: ../../mod/admin.php:300
+#: ../../mod/admin.php:435
 msgid "Advanced"
 msgstr "Avancé"
 
-#: ../../mod/admin.php:304 ../../addon/statusnet/statusnet.php:477
+#: ../../mod/admin.php:439
 msgid "Site name"
 msgstr "Nom du site"
 
-#: ../../mod/admin.php:305
+#: ../../mod/admin.php:440
 msgid "Banner/Logo"
-msgstr "Bannière/Logo"
+msgstr "Bannière/logo"
+
+#: ../../mod/admin.php:441
+msgid "Administrator Information"
+msgstr "Information sur l'administration"
 
-#: ../../mod/admin.php:306
+#: ../../mod/admin.php:441
+msgid ""
+"Contact information for site administrators.  Displayed on siteinfo page.  "
+"BBCode can be used here"
+msgstr "Coordonnées de l'administration du site. Affichée sur la page 'siteinfo'. Vous pouvez utiliser du BBCode ici"
+
+#: ../../mod/admin.php:442
 msgid "System language"
 msgstr "Langue du système"
 
-#: ../../mod/admin.php:307
+#: ../../mod/admin.php:443
 msgid "System theme"
 msgstr "Thème du système"
 
-#: ../../mod/admin.php:309
+#: ../../mod/admin.php:443
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Thème par défaut - il peut être changé pour chaque profil utilisateur - <a href='#' id='cnftheme'>modifier le thème</a>"
+
+#: ../../mod/admin.php:444
+msgid "Mobile system theme"
+msgstr "Thème système pour mobile"
+
+#: ../../mod/admin.php:444
+msgid "Theme for mobile devices"
+msgstr "Thème dédié aux périphériques mobiles"
+
+#: ../../mod/admin.php:445
+msgid "Accessibility system theme"
+msgstr "Thème système pour l'accessibilité"
+
+#: ../../mod/admin.php:445
+msgid "Accessibility theme"
+msgstr "Thème pour l'accessibilité"
+
+#: ../../mod/admin.php:446
+msgid "Channel to use for this website's static pages"
+msgstr "Canal à utiliser pour les pages statiques de ce site"
+
+#: ../../mod/admin.php:446
+msgid "Site Channel"
+msgstr "Canal du site"
+
+#: ../../mod/admin.php:448
 msgid "Maximum image size"
 msgstr "Taille maximale des images"
 
-#: ../../mod/admin.php:311
+#: ../../mod/admin.php:448
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Taille maximum, en octets, des images envoyées. Par défaut 0, soit sans limite."
+
+#: ../../mod/admin.php:449
 msgid "Register policy"
 msgstr "Politique d'inscription"
 
-#: ../../mod/admin.php:312
+#: ../../mod/admin.php:450
+msgid "Access policy"
+msgstr "Politique d'accès"
+
+#: ../../mod/admin.php:451
 msgid "Register text"
 msgstr "Texte d'inscription"
 
-#: ../../mod/admin.php:313
+#: ../../mod/admin.php:451
+msgid "Will be displayed prominently on the registration page."
+msgstr "Sera affiché de manière bien visible sur le formulaire d'inscription."
+
+#: ../../mod/admin.php:452
 msgid "Accounts abandoned after x days"
 msgstr "Les comptes sont abandonnés après x jours"
 
-#: ../../mod/admin.php:313
+#: ../../mod/admin.php:452
 msgid ""
-"Will not waste system resources polling external sites for abandoned "
+"Will not waste system resources polling external sites for abandonded "
 "accounts. Enter 0 for no time limit."
-msgstr ""
-"Pour ne pas gaspiller les ressources système, on cesse d'interroger les "
-"sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette "
-"fonction."
+msgstr "Pour éviter de gaspiller les ressources du système en essayer de mettre à jour des comptes abandonnés. Mettez 0 pour ne pas avoir de limite de temps."
 
-#: ../../mod/admin.php:314
+#: ../../mod/admin.php:453
 msgid "Allowed friend domains"
-msgstr "Domaines autorisés"
+msgstr "Domaines amicaux"
+
+#: ../../mod/admin.php:453
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Liste de noms de domaines - séparés par des virgules - pour lesquels ce site acceptera les demandes d'amitié ou de mise en relation. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines."
 
-#: ../../mod/admin.php:315
+#: ../../mod/admin.php:454
 msgid "Allowed email domains"
-msgstr "Domaines courriel autorisés"
+msgstr "Domaines de courriels amicaux"
+
+#: ../../mod/admin.php:454
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr "Liste de noms de domaines - séparés par des virgules - dont les adresses de courriel seront autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines."
 
-#: ../../mod/admin.php:316
+#: ../../mod/admin.php:455
 msgid "Block public"
-msgstr "Interdire la publication globale"
+msgstr "Bloquer public"
+
+#: ../../mod/admin.php:455
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Cocher pour interdire tout accès public, y compris aux pages marquées comme publiques, aux visiteurs anonymes."
 
-#: ../../mod/admin.php:317
+#: ../../mod/admin.php:456
 msgid "Force publish"
-msgstr "Forcer la publication globale"
+msgstr "Forcer publication"
 
-#: ../../mod/admin.php:318
-msgid "Global directory update URL"
-msgstr "URL de mise-à-jour de l'annuaire global"
+#: ../../mod/admin.php:456
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Cocher pour forcer la publication de tous les profils du site dans l'annuaire."
 
-#: ../../mod/admin.php:320
-msgid "Block multiple registrations"
-msgstr "Interdire les inscriptions multiples"
+#: ../../mod/admin.php:457
+msgid "No login on Homepage"
+msgstr "Pas de connexion depuis la page d'accueil"
 
-#: ../../mod/admin.php:321
-msgid "OpenID support"
-msgstr "Support OpenID"
+#: ../../mod/admin.php:457
+msgid ""
+"Check to hide the login form from your sites homepage when visitors arrive "
+"who are not logged in (e.g. when you put the content of the homepage in via "
+"the site channel)."
+msgstr ""
 
-#: ../../mod/admin.php:322
-msgid "Gravatar support"
-msgstr "Support Gravatar"
+#: ../../mod/admin.php:459
+msgid "Proxy user"
+msgstr "Utilisateurs du proxy"
 
-#: ../../mod/admin.php:323
-msgid "Fullname check"
-msgstr "Vérification du \"Prénom Nom\""
+#: ../../mod/admin.php:460
+msgid "Proxy URL"
+msgstr "URL du proxy"
 
-#: ../../mod/admin.php:324
-msgid "UTF-8 Regular expressions"
-msgstr "Regex UTF-8"
+#: ../../mod/admin.php:461
+msgid "Network timeout"
+msgstr "Délai maximal du réseau"
 
-#: ../../mod/admin.php:325
-msgid "Show Community Page"
-msgstr "Montrer la \"Place publique\""
+#: ../../mod/admin.php:461
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "En secondes. Mettre à 0 pour ne pas avoir de délai maximal (pas recommandé)."
 
-#: ../../mod/admin.php:326
-msgid "Enable OStatus support"
-msgstr "Activer le support d'OStatus"
+#: ../../mod/admin.php:462
+msgid "Delivery interval"
+msgstr "Intervalle de distribution"
 
-#: ../../mod/admin.php:327
-msgid "Enable Diaspora support"
-msgstr "Activer le support de Diaspora"
+#: ../../mod/admin.php:462
+msgid ""
+"Delay background delivery processes by this many seconds to reduce system "
+"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
+"for large dedicated servers."
+msgstr "Temporise le processus de distribution de tant de secondes pour réduire la charge sur le système. Valeurs recommandées&nbsp;: 4-5 pour les serveurs mutualisés, 2-3 pour les VPS. 0-1 pour les gros serveurs dédiés."
 
-#: ../../mod/admin.php:328
-msgid "Only allow Friendika contacts"
-msgstr "N'autoriser que les contacts Friendica"
+#: ../../mod/admin.php:463
+msgid "Poll interval"
+msgstr "Intervalle de scrutation"
 
-#: ../../mod/admin.php:329
-msgid "Verify SSL"
-msgstr "Vérifier SSL"
+#: ../../mod/admin.php:463
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Temporise le processus de scrutation en tâche de fond de tant de secondes, pour réduire la charge. Si 0, utilise l'intervalle de distribution."
 
-#: ../../mod/admin.php:330
-msgid "Proxy user"
-msgstr "Utilisateur du proxy"
+#: ../../mod/admin.php:464
+msgid "Maximum Load Average"
+msgstr "Charge moyenne maximale"
 
-#: ../../mod/admin.php:331
-msgid "Proxy URL"
-msgstr "URL du proxy"
+#: ../../mod/admin.php:464
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Charge système maximale au-delà de laquelle distribution et scrutation sont mis en pause - par défaut 50."
 
-#: ../../mod/admin.php:332
-msgid "Network timeout"
-msgstr "Dépassement du délai d'attente du réseau"
+#: ../../mod/admin.php:520
+msgid "No server found"
+msgstr "Serveur introuvable"
+
+#: ../../mod/admin.php:527 ../../mod/admin.php:750
+msgid "ID"
+msgstr "ID"
+
+#: ../../mod/admin.php:527
+msgid "for channel"
+msgstr "pour le canal"
+
+#: ../../mod/admin.php:527
+msgid "on server"
+msgstr "sur le serveur"
+
+#: ../../mod/admin.php:527
+msgid "Status"
+msgstr "État"
+
+#: ../../mod/admin.php:548
+msgid "Update has been marked successful"
+msgstr "La mise à jour a été marquée comme réussie"
+
+#: ../../mod/admin.php:558
+#, php-format
+msgid "Executing %s failed. Check system logs."
+msgstr "L'éxecution de %s a échoué. Merci de vérifier les journaux du système."
+
+#: ../../mod/admin.php:561
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "La mise à jour %s a été appliquée avec succès."
+
+#: ../../mod/admin.php:565
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "La mise à jour %s n'a pas retourné d'information. Impossible de savoir si elle a réussi ou non."
+
+#: ../../mod/admin.php:568
+#, php-format
+msgid "Update function %s could not be found."
+msgstr "La fonction de mise à jour %s est introuvable."
+
+#: ../../mod/admin.php:583
+msgid "No failed updates."
+msgstr "Aucune mise à jour défaillante."
 
-#: ../../mod/admin.php:353
+#: ../../mod/admin.php:587
+msgid "Failed Updates"
+msgstr "Mises à jour défaillantes"
+
+#: ../../mod/admin.php:589
+msgid "Mark success (if update was manually applied)"
+msgstr "Marquer comme réussie (si la mise à jour a été réalisée manuellement)"
+
+#: ../../mod/admin.php:590
+msgid "Attempt to execute this update step automatically"
+msgstr "Tenter de réaliser cette étape de mise à jour automatiquement"
+
+#: ../../mod/admin.php:616
 #, php-format
-msgid "%s user blocked"
+msgid "%s user blocked/unblocked"
 msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s utilisateur bloqué"
-msgstr[1] "%s utilisateurs (dé)bloqués"
+msgstr[0] "%s utilisateur bloqué/débloqué"
+msgstr[1] "%s utilisateurs bloqués/débloqués"
 
-#: ../../mod/admin.php:360
+#: ../../mod/admin.php:623
 #, php-format
 msgid "%s user deleted"
 msgid_plural "%s users deleted"
 msgstr[0] "%s utilisateur supprimé"
 msgstr[1] "%s utilisateurs supprimés"
 
-#: ../../mod/admin.php:394
+#: ../../mod/admin.php:654
+msgid "Account not found"
+msgstr "Compte introuvable"
+
+#: ../../mod/admin.php:665
 #, php-format
 msgid "User '%s' deleted"
 msgstr "Utilisateur '%s' supprimé"
 
-#: ../../mod/admin.php:401
+#: ../../mod/admin.php:674
 #, php-format
 msgid "User '%s' unblocked"
 msgstr "Utilisateur '%s' débloqué"
 
-#: ../../mod/admin.php:401
+#: ../../mod/admin.php:674
 #, php-format
 msgid "User '%s' blocked"
 msgstr "Utilisateur '%s' bloqué"
 
-#: ../../mod/admin.php:462
+#: ../../mod/admin.php:739
 msgid "select all"
 msgstr "tout sélectionner"
 
-#: ../../mod/admin.php:463
+#: ../../mod/admin.php:740
 msgid "User registrations waiting for confirm"
-msgstr "Inscriptions d'utilisateurs en attente de confirmation"
+msgstr "Inscriptions en attente d'approbation"
 
-#: ../../mod/admin.php:464
+#: ../../mod/admin.php:741
 msgid "Request date"
 msgstr "Date de la demande"
 
-#: ../../mod/admin.php:464 ../../mod/admin.php:473
-#: ../../include/contact_selectors.php:78
-msgid "Email"
-msgstr "Courriel"
-
-#: ../../mod/admin.php:465
+#: ../../mod/admin.php:742
 msgid "No registrations."
 msgstr "Pas d'inscriptions."
 
-#: ../../mod/admin.php:467
+#: ../../mod/admin.php:743
+msgid "Approve"
+msgstr "Approuver"
+
+#: ../../mod/admin.php:744
 msgid "Deny"
-msgstr "Rejetter"
+msgstr "Refuser"
+
+#: ../../mod/admin.php:746 ../../mod/connedit.php:333
+#: ../../mod/connedit.php:475
+msgid "Block"
+msgstr "Bloquer"
+
+#: ../../mod/admin.php:747 ../../mod/connedit.php:333
+#: ../../mod/connedit.php:475
+msgid "Unblock"
+msgstr "Débloquer"
 
-#: ../../mod/admin.php:473
+#: ../../mod/admin.php:750
 msgid "Register date"
 msgstr "Date d'inscription"
 
-#: ../../mod/admin.php:473
+#: ../../mod/admin.php:750
 msgid "Last login"
 msgstr "Dernière connexion"
 
-#: ../../mod/admin.php:473
-msgid "Last item"
-msgstr "Dernier élément"
+#: ../../mod/admin.php:750
+msgid "Expires"
+msgstr "Expire"
 
-#: ../../mod/admin.php:473
-msgid "Account"
-msgstr "Compte"
+#: ../../mod/admin.php:750
+msgid "Service Class"
+msgstr "Classe de service"
 
-#: ../../mod/admin.php:475
+#: ../../mod/admin.php:752
 msgid ""
 "Selected users will be deleted!\\n\\nEverything these users had posted on "
 "this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr ""
-"Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont "
-"posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?"
+msgstr "Les utilisateurs sélectionnés seront supprimés!\\n\\nTout ce que ces utilisateurs ont publié sur ce site sera détruit de manière définitive!\\n\\nÊtes-vous certain?"
 
-#: ../../mod/admin.php:476
+#: ../../mod/admin.php:753
 msgid ""
 "The user {0} will be deleted!\\n\\nEverything this user has posted on this "
 "site will be permanently deleted!\\n\\nAre you sure?"
-msgstr ""
-"L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site "
-"sera définitivement perdu!\\n\\nÊtes-vous certain?"
+msgstr "L'utilisateur {0} sera supprimé!\\n\\nTout ce que cet utilisateur a publié sur ce site sera détruit de manière définitive!\\n\\nÊtes-vous certain?"
 
-#: ../../mod/admin.php:512
+#: ../../mod/admin.php:794
 #, php-format
 msgid "Plugin %s disabled."
 msgstr "Extension %s désactivée."
 
-#: ../../mod/admin.php:516
+#: ../../mod/admin.php:798
 #, php-format
 msgid "Plugin %s enabled."
 msgstr "Extension %s activée."
 
-#: ../../mod/admin.php:526
+#: ../../mod/admin.php:808 ../../mod/admin.php:1010
 msgid "Disable"
 msgstr "Désactiver"
 
-#: ../../mod/admin.php:528
+#: ../../mod/admin.php:810 ../../mod/admin.php:1012
 msgid "Enable"
 msgstr "Activer"
 
-#: ../../mod/admin.php:550
+#: ../../mod/admin.php:836 ../../mod/admin.php:1041
 msgid "Toggle"
-msgstr "Activer/Désactiver"
+msgstr "(Dés)activer"
 
-#: ../../mod/admin.php:551 ../../include/nav.php:128
-msgid "Settings"
-msgstr "Réglages"
+#: ../../mod/admin.php:844 ../../mod/admin.php:1051
+msgid "Author: "
+msgstr "Auteur&nbsp;:"
+
+#: ../../mod/admin.php:845 ../../mod/admin.php:1052
+msgid "Maintainer: "
+msgstr "Maintenu par&nbsp;:"
+
+#: ../../mod/admin.php:974
+msgid "No themes found."
+msgstr "Aucun thème trouvé."
+
+#: ../../mod/admin.php:1033
+msgid "Screenshot"
+msgstr "Aperçu"
 
-#: ../../mod/admin.php:613
+#: ../../mod/admin.php:1081
+msgid "[Experimental]"
+msgstr "[Expérimental]"
+
+#: ../../mod/admin.php:1082
+msgid "[Unsupported]"
+msgstr "[Non-supporté]"
+
+#: ../../mod/admin.php:1109
 msgid "Log settings updated."
-msgstr "Réglages des journaux mis-à-jour."
+msgstr "Réglages du journal sauvegardés."
 
-#: ../../mod/admin.php:653
+#: ../../mod/admin.php:1165
 msgid "Clear"
-msgstr "Effacer"
+msgstr "Vider"
+
+#: ../../mod/admin.php:1171
+msgid "Debugging"
+msgstr "Débogage"
+
+#: ../../mod/admin.php:1172
+msgid "Log file"
+msgstr "Fichier du journal"
+
+#: ../../mod/admin.php:1172
+msgid ""
+"Must be writable by web server. Relative to your Red top-level directory."
+msgstr "Doit être accessible en écriture par le serveur web. Chemin relatif à la racine de Red."
+
+#: ../../mod/admin.php:1173
+msgid "Log level"
+msgstr "Niveau de journalisation"
+
+#: ../../mod/filer.php:35
+msgid "- select -"
+msgstr "- choisir -"
+
+#: ../../mod/home.php:89
+#, php-format
+msgid "Welcome to %s"
+msgstr "Bienvenue sur %s"
+
+#: ../../mod/editpost.php:20 ../../mod/editlayout.php:36
+#: ../../mod/editwebpage.php:32 ../../mod/editblock.php:36
+msgid "Item not found"
+msgstr "Élément introuvable"
+
+#: ../../mod/editpost.php:31
+msgid "Item is not editable"
+msgstr "Élément non-éditable"
+
+#: ../../mod/editpost.php:53
+msgid "Delete item?"
+msgstr "Supprimer l'élément?"
+
+#: ../../mod/editpost.php:107 ../../mod/editlayout.php:110
+#: ../../mod/editwebpage.php:148 ../../mod/editblock.php:124
+msgid "Insert YouTube video"
+msgstr "Insérer une vidéo YouTube"
+
+#: ../../mod/editpost.php:108 ../../mod/editlayout.php:111
+#: ../../mod/editwebpage.php:149 ../../mod/editblock.php:125
+msgid "Insert Vorbis [.ogg] video"
+msgstr "Insérer une vidéo Vorbis [.ogg]"
+
+#: ../../mod/editpost.php:109 ../../mod/editlayout.php:112
+#: ../../mod/editwebpage.php:150 ../../mod/editblock.php:126
+msgid "Insert Vorbis [.ogg] audio"
+msgstr "Insérer un son Vorbis [.ogg]"
+
+#: ../../mod/directory.php:143 ../../mod/profiles.php:561
+#: ../../mod/dirprofile.php:98
+msgid "Age: "
+msgstr "Age&nbsp;:"
+
+#: ../../mod/directory.php:146 ../../mod/dirprofile.php:101
+msgid "Gender: "
+msgstr "Sexe/genre&nbsp;:"
+
+#: ../../mod/directory.php:207
+msgid "Finding:"
+msgstr "Recherche&nbsp;:"
+
+#: ../../mod/directory.php:215
+msgid "next page"
+msgstr "page suiv."
+
+#: ../../mod/directory.php:215
+msgid "previous page"
+msgstr "page préc."
+
+#: ../../mod/directory.php:222
+msgid "No entries (some entries may be hidden)."
+msgstr "Pas d'entrées (certaines peuvent être cachées)."
+
+#: ../../mod/connedit.php:49 ../../mod/connections.php:37
+msgid "Could not access contact record."
+msgstr "Impossible d'accéder aux détails du contact."
+
+#: ../../mod/connedit.php:63 ../../mod/connections.php:51
+msgid "Could not locate selected profile."
+msgstr "Impossible de localiser le profil sélectionné."
+
+#: ../../mod/connedit.php:107 ../../mod/connections.php:94
+msgid "Connection updated."
+msgstr "Connexion mise à jour."
+
+#: ../../mod/connedit.php:109 ../../mod/connections.php:96
+msgid "Failed to update connection record."
+msgstr "Impossible de mettre à jour les détails de la relation."
+
+#: ../../mod/connedit.php:204
+msgid "Could not access address book record."
+msgstr "Impossible d'accéder aux détails du carnet d'adresses."
+
+#: ../../mod/connedit.php:218
+msgid "Refresh failed - channel is currently unavailable."
+msgstr "Actualisation impossible - le canal est momentanément indisponible."
+
+#: ../../mod/connedit.php:225
+msgid "Channel has been unblocked"
+msgstr "Le canal n'est plus bloqué"
+
+#: ../../mod/connedit.php:226
+msgid "Channel has been blocked"
+msgstr "Le canal est bloqué"
+
+#: ../../mod/connedit.php:230 ../../mod/connedit.php:242
+#: ../../mod/connedit.php:254 ../../mod/connedit.php:266
+#: ../../mod/connedit.php:281
+msgid "Unable to set address book parameters."
+msgstr "Impossible de régler les paramètres du carnet d'adresses."
+
+#: ../../mod/connedit.php:237
+msgid "Channel has been unignored"
+msgstr "Le canal n'est plus ignoré"
+
+#: ../../mod/connedit.php:238
+msgid "Channel has been ignored"
+msgstr "Le canal est ignoré"
+
+#: ../../mod/connedit.php:249
+msgid "Channel has been unarchived"
+msgstr "Le canal n'est plus archivé"
+
+#: ../../mod/connedit.php:250
+msgid "Channel has been archived"
+msgstr "Le canal est archivé"
+
+#: ../../mod/connedit.php:261
+msgid "Channel has been unhidden"
+msgstr "Le canal n'est plus caché"
+
+#: ../../mod/connedit.php:262
+msgid "Channel has been hidden"
+msgstr "Le canal est caché"
+
+#: ../../mod/connedit.php:276
+msgid "Channel has been approved"
+msgstr "Le canal est approuvé"
+
+#: ../../mod/connedit.php:277
+msgid "Channel has been unapproved"
+msgstr "Le canal n'est plus approuvé"
+
+#: ../../mod/connedit.php:295
+msgid "Contact has been removed."
+msgstr "Le canal a été supprimé"
+
+#: ../../mod/connedit.php:315
+#, php-format
+msgid "View %s's profile"
+msgstr "Voir le profil de %s"
+
+#: ../../mod/connedit.php:319
+msgid "Refresh Permissions"
+msgstr "Actualiser les permissions"
+
+#: ../../mod/connedit.php:322
+msgid "Fetch updated permissions"
+msgstr "Récupérer les permissions les plus récentes"
+
+#: ../../mod/connedit.php:326
+msgid "Recent Activity"
+msgstr "Activité récente"
+
+#: ../../mod/connedit.php:329
+msgid "View recent posts and comments"
+msgstr "Voir les contributions et commentaires récentes"
+
+#: ../../mod/connedit.php:336
+msgid "Block or Unblock this connection"
+msgstr "Bloquer ou Débloquer cette relation"
+
+#: ../../mod/connedit.php:340 ../../mod/connedit.php:476
+msgid "Unignore"
+msgstr "Ne plus ignorer"
+
+#: ../../mod/connedit.php:340 ../../mod/connedit.php:476
+#: ../../mod/notifications.php:51
+msgid "Ignore"
+msgstr "Ignorer"
+
+#: ../../mod/connedit.php:343
+msgid "Ignore or Unignore this connection"
+msgstr "Ignorer ou ne plus ignorer cette relation"
+
+#: ../../mod/connedit.php:346
+msgid "Unarchive"
+msgstr "Ne plus archiver"
+
+#: ../../mod/connedit.php:346
+msgid "Archive"
+msgstr "Archiver"
+
+#: ../../mod/connedit.php:349
+msgid "Archive or Unarchive this connection"
+msgstr "Archiver ou ne plus archiver cette relation"
+
+#: ../../mod/connedit.php:352
+msgid "Unhide"
+msgstr "Ne plus cacher"
+
+#: ../../mod/connedit.php:352
+msgid "Hide"
+msgstr "Cacher"
+
+#: ../../mod/connedit.php:355
+msgid "Hide or Unhide this connection"
+msgstr "Cacher ou ne plus cacher cette relation"
+
+#: ../../mod/connedit.php:362
+msgid "Delete this connection"
+msgstr "Supprimer cette relation"
+
+#: ../../mod/connedit.php:395
+msgid "Unknown"
+msgstr "Inconnu"
+
+#: ../../mod/connedit.php:405 ../../mod/connedit.php:434
+msgid "Approve this connection"
+msgstr "Approuver cette relation"
+
+#: ../../mod/connedit.php:405
+msgid "Accept connection to allow communication"
+msgstr "Accepter la relation pour permettre la communication"
+
+#: ../../mod/connedit.php:421
+msgid "Automatic Permissions Settings"
+msgstr "Permissions automatiques"
+
+#: ../../mod/connedit.php:421
+#, php-format
+msgid "Connections: settings for %s"
+msgstr "Relations&nbsp;: réglages pour %s"
+
+#: ../../mod/connedit.php:425
+msgid ""
+"When receiving a channel introduction, any permissions provided here will be"
+" applied to the new connection automatically and the introduction approved. "
+"Leave this page if you do not wish to use this feature."
+msgstr "Pour chaque introduction reçue, toutes les permissions définies ici seront appliquées aux nouvelles relations automatiquement, et l'introduction sera approuvée. Laissez cette page telle quelle si vous ne souhaitez pas utiliser ce mécanisme."
+
+#: ../../mod/connedit.php:427
+msgid "Slide to adjust your degree of friendship"
+msgstr "Faites glisser pour ajuster le niveau de la relation"
+
+#: ../../mod/connedit.php:433
+msgid "inherited"
+msgstr "par héritage"
+
+#: ../../mod/connedit.php:435
+msgid "Connection has no individual permissions!"
+msgstr "Cette relation n'a aucune permission spécifique!"
+
+#: ../../mod/connedit.php:436
+msgid ""
+"This may be appropriate based on your <a href=\"settings\">privacy "
+"settings</a>, though you may wish to review the \"Advanced Permissions\"."
+msgstr "Ceci devrait correspondre à vos <a href=\"settings\">réglages de vie privée</a>, mais vous pouvez toujours contrôler les \"Permissions avancées\"."
+
+#: ../../mod/connedit.php:438
+msgid "Profile Visibility"
+msgstr "Visibilité du profil"
+
+#: ../../mod/connedit.php:439
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Merci de choisir le profil que vous souhaitez montrer quand %s visite votre profil de manière authentifiée."
+
+#: ../../mod/connedit.php:440
+msgid "Contact Information / Notes"
+msgstr "Notes / Information de contact"
+
+#: ../../mod/connedit.php:441
+msgid "Edit contact notes"
+msgstr "Éditer les notes du contact"
+
+#: ../../mod/connedit.php:443
+msgid "Their Settings"
+msgstr "Ses réglages"
+
+#: ../../mod/connedit.php:444
+msgid "My Settings"
+msgstr "Mes réglages"
+
+#: ../../mod/connedit.php:446
+msgid "Forum Members"
+msgstr "Membres de forum"
+
+#: ../../mod/connedit.php:447
+msgid "Soapbox"
+msgstr "Boîte à savon"
+
+#: ../../mod/connedit.php:448
+msgid "Full Sharing (typical social network permissions)"
+msgstr "Partage complet (fonctionnement habituel des réseaux sociaux)"
+
+#: ../../mod/connedit.php:449
+msgid "Cautious Sharing "
+msgstr "Partage modéré"
+
+#: ../../mod/connedit.php:450
+msgid "Follow Only"
+msgstr "Suivi uniquement"
+
+#: ../../mod/connedit.php:451
+msgid "Individual Permissions"
+msgstr "Permissions spécifiques"
+
+#: ../../mod/connedit.php:452
+msgid ""
+"Some permissions may be inherited from your channel <a "
+"href=\"settings\">privacy settings</a>, which have higher priority than "
+"individual settings. Changing those inherited settings on this page will "
+"have no effect."
+msgstr "Certaines permissions peuvent être héritées de vos <a href=\"settings\">réglages de vie privée</a>, lesquels sont prioritaires sur les réglages spécifiques. Changer ces permissions héritées sur la présente page n'aura aucun effet."
 
-#: ../../mod/admin.php:659
-msgid "Debugging"
-msgstr "Déboguage"
+#: ../../mod/connedit.php:453
+msgid "Advanced Permissions"
+msgstr "Permissions avancées"
 
-#: ../../mod/admin.php:660
-msgid "Log file"
-msgstr "Fichier de journaux"
+#: ../../mod/connedit.php:454
+msgid "Simple Permissions (select one and submit)"
+msgstr "Permissions simples (en choisir une, puis valider)"
 
-#: ../../mod/admin.php:660
-msgid "Must be writable by web server. Relative to your Friendika index.php."
-msgstr ""
-"Doit être accessible en écriture pour le serveur web. Le chemin est relative"
-" à l'index.php de Friendica."
+#: ../../mod/connedit.php:458
+#, php-format
+msgid "Visit %s's profile - %s"
+msgstr "Visiter le profil de %s - %s"
 
-#: ../../mod/admin.php:661
-msgid "Log level"
-msgstr "Niveau de journalisaton"
+#: ../../mod/connedit.php:459
+msgid "Block/Unblock contact"
+msgstr "Bloquer/Débloquer le contact"
 
-#: ../../mod/admin.php:702
-msgid "Close"
-msgstr "Fermer"
+#: ../../mod/connedit.php:460
+msgid "Ignore contact"
+msgstr "Ignorer le contact"
 
-#: ../../mod/admin.php:708
-msgid "FTP Host"
-msgstr "Hôte FTP"
+#: ../../mod/connedit.php:461
+msgid "Repair URL settings"
+msgstr "Réparer les réglages d'URL"
 
-#: ../../mod/admin.php:709
-msgid "FTP Path"
-msgstr "Chemin FTP"
+#: ../../mod/connedit.php:462
+msgid "View conversations"
+msgstr "Voir les conversations"
 
-#: ../../mod/admin.php:710
-msgid "FTP User"
-msgstr "Utilisateur FTP"
+#: ../../mod/connedit.php:464
+msgid "Delete contact"
+msgstr "Supprimer le contact"
 
-#: ../../mod/admin.php:711
-msgid "FTP Password"
-msgstr "Mot de passe FTP"
+#: ../../mod/connedit.php:467
+msgid "Last update:"
+msgstr "Dernière mise-à-jour&nbsp;:"
 
-#: ../../mod/item.php:84
-msgid "Unable to locate original post."
-msgstr "Impossible de localiser l'article original."
+#: ../../mod/connedit.php:469
+msgid "Update public posts"
+msgstr "Mettre à jour les publications"
 
-#: ../../mod/item.php:199
-msgid "Empty post discarded."
-msgstr "Article vide défaussé."
+#: ../../mod/connedit.php:471
+msgid "Update now"
+msgstr "Mettre à jour maintenant"
 
-#: ../../mod/item.php:675 ../../mod/item.php:720 ../../mod/item.php:764
-#: ../../mod/item.php:807 ../../include/items.php:1769
-#: ../../include/items.php:2068 ../../include/items.php:2115
-#: ../../include/items.php:2227 ../../include/items.php:2273
-msgid "noreply"
-msgstr "noreply"
+#: ../../mod/connedit.php:477
+msgid "Currently blocked"
+msgstr "Actuellement bloqué"
 
-#: ../../mod/item.php:719 ../../mod/item.php:806 ../../include/items.php:2272
-msgid "Administrator@"
-msgstr "Administrator@"
+#: ../../mod/connedit.php:478
+msgid "Currently ignored"
+msgstr "Actuellement ignoré"
 
-#: ../../mod/item.php:722 ../../include/items.php:2117
-#: ../../include/items.php:2275
-#, php-format
-msgid "%s commented on an item at %s"
-msgstr "%s a commenté un élément à %s"
+#: ../../mod/connedit.php:479
+msgid "Currently archived"
+msgstr "Actuellement archivé"
 
-#: ../../mod/item.php:809
-#, php-format
-msgid "%s posted to your profile wall at %s"
-msgstr "%s a posté sur votre mur à %s"
+#: ../../mod/connedit.php:480
+msgid "Currently pending"
+msgstr "Actuellement en attente"
 
-#: ../../mod/item.php:843
-msgid "System error. Post not saved."
-msgstr "Erreur système. Publication non sauvée."
+#: ../../mod/connedit.php:481
+msgid "Hide this contact from others"
+msgstr "Dissimuler ce contact aux autres"
 
-#: ../../mod/item.php:868
-#, php-format
+#: ../../mod/connedit.php:481
 msgid ""
-"This message was sent to you by %s, a member of the Friendika social "
-"network."
-msgstr ""
-"Ce message vous a été envoyé par %s, un membre du réseau social Friendica."
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Les réponses et autres réactions à vos contributions publiques <strong>pourraient</strong> être toujours visibles"
 
-#: ../../mod/item.php:870
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Vous pouvez leur rendre visite sur %s"
+#: ../../mod/layouts.php:52
+msgid "Layout Help"
+msgstr "Aide à la mise en page"
 
-#: ../../mod/item.php:871
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr ""
-"Merci de contacter l'émeteur en répondant à cette publication si vous ne "
-"souhaitez pas recevoir ces messages."
+#: ../../mod/layouts.php:55
+msgid "Help with this feature"
+msgstr "Aide avec cette fonctionnalité"
 
-#: ../../mod/item.php:873
-#, php-format
-msgid "%s posted an update."
-msgstr "%s a publié une mise à jour."
+#: ../../mod/layouts.php:74
+msgid "Layout Name"
+msgstr "Nom de la mise-en-page"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Étiquette enlevée"
+#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55
+msgid "Help:"
+msgstr "Aide&nbsp;:"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Enlever l'étiquette de l'élément"
+#: ../../mod/help.php:68 ../../index.php:223
+msgid "Not Found"
+msgstr "Introuvable"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Choisir une étiquette à enlever: "
+#: ../../mod/help.php:71 ../../mod/page.php:83 ../../mod/display.php:100
+#: ../../index.php:226
+msgid "Page not found."
+msgstr "Page introuvable."
 
-#: ../../mod/tagrm.php:93
-msgid "Remove"
-msgstr "Utiliser comme photo de profil"
+#: ../../mod/rmagic.php:56
+msgid "Remote Authentication"
+msgstr "Authentification distante"
 
-#: ../../mod/message.php:23
-msgid "No recipient selected."
-msgstr "Pas de destinataire sélectionné."
+#: ../../mod/rmagic.php:57
+msgid "Enter your channel address (e.g. channel@example.com)"
+msgstr "Entrez l'adresse de votre canal (p.ex. moncanal@monsite.com)"
 
-#: ../../mod/message.php:26
-msgid "Unable to locate contact information."
-msgstr "Impossible de localiser les informations du contact."
+#: ../../mod/rmagic.php:58
+msgid "Authenticate"
+msgstr "Authentifier"
 
-#: ../../mod/message.php:29
-msgid "Message could not be sent."
-msgstr "Impossible d'envoyer le message."
+#: ../../mod/page.php:35
+msgid "Invalid item."
+msgstr "Élément invalide."
 
-#: ../../mod/message.php:31
-msgid "Message sent."
-msgstr "Message envoyé."
+#: ../../mod/network.php:79
+msgid "No such group"
+msgstr "Rien de tel comme groupe"
 
-#: ../../mod/message.php:51
-msgid "Inbox"
-msgstr "Messages entrants"
+#: ../../mod/network.php:118
+msgid "Search Results For:"
+msgstr "Résultats de recherche pour&nbsp;:"
 
-#: ../../mod/message.php:56
-msgid "Outbox"
-msgstr "Messages sortants"
+#: ../../mod/network.php:172
+msgid "Collection is empty"
+msgstr "Collection vide"
 
-#: ../../mod/message.php:61
-msgid "New Message"
-msgstr "Nouveau message"
+#: ../../mod/network.php:180
+msgid "Collection: "
+msgstr "Collection&nbsp;:"
 
-#: ../../mod/message.php:87
-msgid "Message deleted."
-msgstr "Message supprimé."
+#: ../../mod/network.php:193
+msgid "Connection: "
+msgstr "Relation&nbsp;:"
 
-#: ../../mod/message.php:103
-msgid "Conversation removed."
-msgstr "Conversation supprimée."
+#: ../../mod/network.php:196
+msgid "Invalid connection."
+msgstr "Relation invalide."
 
-#: ../../mod/message.php:119 ../../include/conversation.php:767
-msgid "Please enter a link URL:"
-msgstr "Entrez un lien web:"
+#: ../../mod/profiles.php:18 ../../mod/profiles.php:138
+#: ../../mod/profiles.php:168 ../../mod/profiles.php:463
+msgid "Profile not found."
+msgstr "Profil introuvable."
 
-#: ../../mod/message.php:127
-msgid "Send Private Message"
-msgstr "Envoyer un message privé"
+#: ../../mod/profiles.php:38
+msgid "Profile deleted."
+msgstr "Profil supprimé."
 
-#: ../../mod/message.php:128 ../../mod/message.php:261
-msgid "To:"
-msgstr "À:"
+#: ../../mod/profiles.php:56 ../../mod/profiles.php:92
+msgid "Profile-"
+msgstr "Profil-"
 
-#: ../../mod/message.php:129 ../../mod/message.php:262
-msgid "Subject:"
-msgstr "Sujet:"
+#: ../../mod/profiles.php:77 ../../mod/profiles.php:120
+msgid "New profile created."
+msgstr "Nouveau profil créé."
 
-#: ../../mod/message.php:170
-msgid "No messages."
-msgstr "Aucun message."
+#: ../../mod/profiles.php:98
+msgid "Profile unavailable to clone."
+msgstr "Profil impossible à cloner."
 
-#: ../../mod/message.php:183
-msgid "Delete conversation"
-msgstr "Effacer conversation"
+#: ../../mod/profiles.php:178
+msgid "Profile Name is required."
+msgstr "Le nom du profil est requis."
 
-#: ../../mod/message.php:186
-msgid "D, d M Y - g:i A"
-msgstr "D, d M Y - g:i A"
+#: ../../mod/profiles.php:294
+msgid "Marital Status"
+msgstr "Statut marital"
 
-#: ../../mod/message.php:213
-msgid "Message not available."
-msgstr "Message indisponible."
+#: ../../mod/profiles.php:298
+msgid "Romantic Partner"
+msgstr "Partenaire"
 
-#: ../../mod/message.php:250
-msgid "Delete message"
-msgstr "Effacer message"
+#: ../../mod/profiles.php:302
+msgid "Likes"
+msgstr "Aime"
 
-#: ../../mod/message.php:260
-msgid "Send Reply"
-msgstr "Répondre"
+#: ../../mod/profiles.php:306
+msgid "Dislikes"
+msgstr "Déteste"
 
-#: ../../mod/dfrn_confirm.php:234
-msgid "Response from remote site was not understood."
-msgstr "Réponse du site distant incomprise."
+#: ../../mod/profiles.php:310
+msgid "Work/Employment"
+msgstr "Travail/Occupation"
 
-#: ../../mod/dfrn_confirm.php:243
-msgid "Unexpected response from remote site: "
-msgstr "Réponse inattendue du site distant: "
+#: ../../mod/profiles.php:313
+msgid "Religion"
+msgstr "Religion/Croyance"
 
-#: ../../mod/dfrn_confirm.php:251
-msgid "Confirmation completed successfully."
-msgstr "Confirmation achevée avec succès."
+#: ../../mod/profiles.php:317
+msgid "Political Views"
+msgstr "Opinions politiques"
 
-#: ../../mod/dfrn_confirm.php:253 ../../mod/dfrn_confirm.php:267
-#: ../../mod/dfrn_confirm.php:274
-msgid "Remote site reported: "
-msgstr "Alerte du site distant: "
+#: ../../mod/profiles.php:321
+msgid "Gender"
+msgstr "Sexe/Genre"
 
-#: ../../mod/dfrn_confirm.php:265
-msgid "Temporary failure. Please wait and try again."
-msgstr "Échec temporaire. Merci de recommencer ultérieurement."
+#: ../../mod/profiles.php:325
+msgid "Sexual Preference"
+msgstr "Préférence sexuelle"
 
-#: ../../mod/dfrn_confirm.php:272
-msgid "Introduction failed or was revoked."
-msgstr "Introduction échouée ou annulée."
+#: ../../mod/profiles.php:329
+msgid "Homepage"
+msgstr "Site Internet"
 
-#: ../../mod/dfrn_confirm.php:409
-msgid "Unable to set contact photo."
-msgstr "Impossible de définir la photo du contact."
+#: ../../mod/profiles.php:333
+msgid "Interests"
+msgstr "Centres d'intérêt"
 
-#: ../../mod/dfrn_confirm.php:459 ../../include/conversation.php:79
-#: ../../include/diaspora.php:477
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s est désormais lié à %2$s"
+#: ../../mod/profiles.php:337
+msgid "Address"
+msgstr "Adresse"
 
-#: ../../mod/dfrn_confirm.php:530
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Pas d'utilisateur trouvé pour '%s' "
+#: ../../mod/profiles.php:344 ../../mod/pubsites.php:31
+msgid "Location"
+msgstr "Localisation"
 
-#: ../../mod/dfrn_confirm.php:540
-msgid "Our site encryption key is apparently messed up."
-msgstr "Notre clé de chiffrement de site est apparemment corrompue."
+#: ../../mod/profiles.php:427
+msgid "Profile updated."
+msgstr "Profil mis à jour."
 
-#: ../../mod/dfrn_confirm.php:551
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "URL de site absente ou indéchiffrable."
+#: ../../mod/profiles.php:482
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Cacher vos contacts/relations aux visiteurs de ce profil?"
 
-#: ../../mod/dfrn_confirm.php:572
-msgid "Contact record was not found for you on our site."
-msgstr "Pas d'entrée pour ce contact sur notre site."
+#: ../../mod/profiles.php:505
+msgid "Edit Profile Details"
+msgstr "Éditer les détails du profil"
 
-#: ../../mod/dfrn_confirm.php:586
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr ""
-"La clé publique du site ne se trouve pas dans l'enregistrement du contact "
-"pour l'URL %s."
+#: ../../mod/profiles.php:507
+msgid "View this profile"
+msgstr "Voir le profil"
 
-#: ../../mod/dfrn_confirm.php:606
-msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr ""
-"L'identifiant fourni par votre système fait doublon sur le notre. Cela peut "
-"fonctionner si vous réessayez."
+#: ../../mod/profiles.php:508
+msgid "Change Profile Photo"
+msgstr "Changer la photo du profil"
 
-#: ../../mod/dfrn_confirm.php:617
-msgid "Unable to set your contact credentials on our system."
-msgstr "Impossible de vous définir des permissions sur notre système."
+#: ../../mod/profiles.php:509
+msgid "Create a new profile using these settings"
+msgstr "Créer un nouveau profil avec ces réglages"
 
-#: ../../mod/dfrn_confirm.php:671
-msgid "Unable to update your contact profile details on our system"
-msgstr ""
-"Impossible de mettre les détails de votre profil à jour sur notre système"
+#: ../../mod/profiles.php:510
+msgid "Clone this profile"
+msgstr "Cloner le profil"
 
-#: ../../mod/dfrn_confirm.php:701
-#, php-format
-msgid "Connection accepted at %s"
-msgstr "Connexion acceptée avec %s"
+#: ../../mod/profiles.php:511
+msgid "Delete this profile"
+msgstr "Supprimer le profil"
 
-#: ../../mod/openid.php:63 ../../mod/openid.php:123 ../../include/auth.php:122
-#: ../../include/auth.php:147 ../../include/auth.php:201
-msgid "Login failed."
-msgstr "Échec de connexion."
+#: ../../mod/profiles.php:512
+msgid "Profile Name:"
+msgstr "Nom du profil&nbsp;:"
 
-#: ../../mod/openid.php:79 ../../include/auth.php:217
-msgid "Welcome "
-msgstr "Bienvenue "
+#: ../../mod/profiles.php:513
+msgid "Your Full Name:"
+msgstr "Votre nom complet&nbsp;:"
 
-#: ../../mod/openid.php:80 ../../include/auth.php:218
-msgid "Please upload a profile photo."
-msgstr "Merci d'illustrer votre profil d'une image."
+#: ../../mod/profiles.php:514
+msgid "Title/Description:"
+msgstr "Titre/description&nbsp;:"
 
-#: ../../mod/openid.php:83 ../../include/auth.php:221
-msgid "Welcome back "
-msgstr "Bienvenue à nouveau, "
+#: ../../mod/profiles.php:515
+msgid "Your Gender:"
+msgstr "Sexe/Genre&nbsp;:"
 
-#: ../../mod/dfrn_poll.php:90 ../../mod/dfrn_poll.php:516
+#: ../../mod/profiles.php:516
 #, php-format
-msgid "%s welcomes %s"
-msgstr "%s accueille %s"
+msgid "Birthday (%s):"
+msgstr "Date de naissance (%s)&nbsp;:"
 
-#: ../../mod/viewconnections.php:25 ../../include/text.php:567
-msgid "View Contacts"
-msgstr "Voir les contacts"
+#: ../../mod/profiles.php:517
+msgid "Street Address:"
+msgstr "Adresse postale&nbsp;:"
 
-#: ../../mod/viewconnections.php:40
-msgid "No contacts."
-msgstr "Aucun contact."
+#: ../../mod/profiles.php:518
+msgid "Locality/City:"
+msgstr "Ville/Localité&nbsp;:"
 
-#: ../../mod/group.php:27
-msgid "Group created."
-msgstr "Groupe créé."
+#: ../../mod/profiles.php:519
+msgid "Postal/Zip Code:"
+msgstr "Code postal&nbsp;:"
 
-#: ../../mod/group.php:33
-msgid "Could not create group."
-msgstr "Impossible de créer le groupe."
+#: ../../mod/profiles.php:520
+msgid "Country:"
+msgstr "Pays&nbsp;:"
 
-#: ../../mod/group.php:43 ../../mod/group.php:123
-msgid "Group not found."
-msgstr "Groupe introuvable."
+#: ../../mod/profiles.php:521
+msgid "Region/State:"
+msgstr "Région/Province/État&nbsp;:"
 
-#: ../../mod/group.php:56
-msgid "Group name changed."
-msgstr "Groupe renommé."
+#: ../../mod/profiles.php:522
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span>Statut marital&nbsp;:"
 
-#: ../../mod/group.php:82
-msgid "Create a group of contacts/friends."
-msgstr "Créez un groupe de contacts/amis."
+#: ../../mod/profiles.php:523
+msgid "Who: (if applicable)"
+msgstr "Avec&nbsp;: (si pertinent)"
 
-#: ../../mod/group.php:83 ../../mod/group.php:166
-msgid "Group Name: "
-msgstr "Nom du groupe: "
+#: ../../mod/profiles.php:524
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Exemples&nbsp;: cathy123, Cathy Williams, cathy@exemple.com"
 
-#: ../../mod/group.php:98
-msgid "Group removed."
-msgstr "Groupe enlevé."
+#: ../../mod/profiles.php:525
+msgid "Since [date]:"
+msgstr "Depuis [date]&nbsp;:"
 
-#: ../../mod/group.php:100
-msgid "Unable to remove group."
-msgstr "Impossible d'enlever le groupe."
+#: ../../mod/profiles.php:527
+msgid "Homepage URL:"
+msgstr "URL de mon site Internet&nbsp;:"
 
-#: ../../mod/group.php:165
-msgid "Group Editor"
-msgstr "Éditeur de groupe"
+#: ../../mod/profiles.php:530
+msgid "Religious Views:"
+msgstr "Opinions religieuses&nbsp;:"
 
-#: ../../mod/group.php:179
-msgid "Members"
-msgstr "Membres"
+#: ../../mod/profiles.php:531
+msgid "Keywords:"
+msgstr "Mots-clefs&nbsp;:"
 
-#: ../../mod/group.php:194
-msgid "All Contacts"
-msgstr "Tout les contacts"
+#: ../../mod/profiles.php:534
+msgid "Example: fishing photography software"
+msgstr "Exemple&nbsp;: escrime photographie modélisme"
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "Elément non disponible."
+#: ../../mod/profiles.php:535
+msgid "Used in directory listings"
+msgstr "Utilisé pour le référencement dans l'annuaire"
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "Element introuvable."
+#: ../../mod/profiles.php:536
+msgid "Tell us about yourself..."
+msgstr "Parlez nous de vous..."
 
-#: ../../mod/common.php:34
-msgid "Common Friends"
-msgstr "Amis communs"
+#: ../../mod/profiles.php:537
+msgid "Hobbies/Interests"
+msgstr "Loisirs/Centres d'intêret"
 
-#: ../../mod/common.php:42
-msgid "No friends in common."
-msgstr "Pas d'amis communs"
+#: ../../mod/profiles.php:538
+msgid "Contact information and Social Networks"
+msgstr "Coordonnées et réseaux sociaux"
 
-#: ../../mod/match.php:10
-msgid "Profile Match"
-msgstr "Correpondance de profils"
+#: ../../mod/profiles.php:539
+msgid "My other channels"
+msgstr "Mes autres canaux"
 
-#: ../../mod/match.php:18
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr ""
-"Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre "
-"profil par défaut."
+#: ../../mod/profiles.php:540
+msgid "Musical interests"
+msgstr "Goûts musicaux"
 
-#: ../../mod/community.php:21
-msgid "Not available."
-msgstr "Indisponible."
+#: ../../mod/profiles.php:541
+msgid "Books, literature"
+msgstr "Littérature"
 
-#: ../../mod/community.php:30 ../../include/nav.php:97
-msgid "Community"
-msgstr "Communauté"
+#: ../../mod/profiles.php:542
+msgid "Television"
+msgstr "Télévision"
+
+#: ../../mod/profiles.php:543
+msgid "Film/dance/culture/entertainment"
+msgstr "Cinéma/Danse/Culture/Divertissement"
+
+#: ../../mod/profiles.php:544
+msgid "Love/romance"
+msgstr "Amour/Romance"
+
+#: ../../mod/profiles.php:545
+msgid "Work/employment"
+msgstr "Travail/Occupation"
+
+#: ../../mod/profiles.php:546
+msgid "School/education"
+msgstr "Études"
 
-#: ../../mod/community.php:87
+#: ../../mod/profiles.php:551
 msgid ""
-"Shared content is covered by the <a "
-"href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons "
-"Attribution 3.0</a> license."
-msgstr ""
-"Le contenu est partagé suivant les termes de la licence <a "
-"href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons "
-"Attribution 3.0</a>."
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Ceci est votre profil <strong>public</strong>.<br />Il <strong>pourrait</strong> être visible par tout utilisateur - fut-il anonyme - d'Internet."
 
-#: ../../addon/tumblr/tumblr.php:35
-msgid "Post to Tumblr"
-msgstr "Publier sur Tumblr"
+#: ../../mod/profiles.php:600
+msgid "Edit/Manage Profiles"
+msgstr "Éditer/gérer les profils"
 
-#: ../../addon/tumblr/tumblr.php:66
-msgid "Tumblr Post Settings"
-msgstr "Réglages de Tumblr"
+#: ../../mod/profiles.php:601
+msgid "Add profile things"
+msgstr "Ajouter des choses de profil"
 
-#: ../../addon/tumblr/tumblr.php:68
-msgid "Enable Tumblr Post Plugin"
-msgstr "Activer l'extension Tumblr"
+#: ../../mod/profiles.php:602
+msgid "Include desirable objects in your profile"
+msgstr "Incluez des objets souhaitables dans votre profil"
 
-#: ../../addon/tumblr/tumblr.php:73
-msgid "Tumblr login"
-msgstr "Login Tumblr"
+#: ../../mod/follow.php:25
+msgid "Channel added."
+msgstr "Canal ajouté."
 
-#: ../../addon/tumblr/tumblr.php:78
-msgid "Tumblr password"
-msgstr "Mot de passe Tumblr"
+#: ../../mod/post.php:226
+msgid ""
+"Remote authentication blocked. You are logged into this site locally. Please"
+" logout and retry."
+msgstr "Authentification distante bloquée. Vous êtes connecté sur ce site localement. Merci de vous en déconnecter et de recommencer."
 
-#: ../../addon/tumblr/tumblr.php:83
-msgid "Post to Tumblr by default"
-msgstr "Publier sur Tumblr par défaut"
+#: ../../mod/post.php:256
+#, php-format
+msgid "Welcome %s. Remote authentication successful."
+msgstr "Bienvenue %s. L'authentification distante a fonctionné."
 
-#: ../../addon/tumblr/tumblr.php:174 ../../addon/wppost/wppost.php:171
-msgid "Post from Friendica"
-msgstr "Publier depuis Friendica"
+#: ../../mod/dirsearch.php:21
+msgid "This site is not a directory server"
+msgstr "Ce site n'est pas un serveur d'annuaire"
 
-#: ../../addon/twitter/twitter.php:78
-msgid "Post to Twitter"
-msgstr "Poster sur Twitter"
+#: ../../mod/sources.php:32
+msgid "Failed to create source. No channel selected."
+msgstr "Impossible de créer la source. Aucun canal selectionné."
 
-#: ../../addon/twitter/twitter.php:123
-msgid "Twitter settings updated."
-msgstr "Réglages de Twitter mis-à-jour."
+#: ../../mod/sources.php:45
+msgid "Source created."
+msgstr "Source créée."
 
-#: ../../addon/twitter/twitter.php:145
-msgid "Twitter Posting Settings"
-msgstr "Réglages du connecteur Twitter"
+#: ../../mod/sources.php:57
+msgid "Source updated."
+msgstr "Source mise à jour."
 
-#: ../../addon/twitter/twitter.php:152
-msgid ""
-"No consumer key pair for Twitter found. Please contact your site "
-"administrator."
+#: ../../mod/sources.php:82
+msgid "*"
 msgstr ""
-"Pas de paire de clés pour Twitter. Merci de contacter l'administrateur du "
-"site."
 
-#: ../../addon/twitter/twitter.php:171
-msgid ""
-"At this Friendika instance the Twitter plugin was enabled but you have not "
-"yet connected your account to your Twitter account. To do so click the "
-"button below to get a PIN from Twitter which you have to copy into the input"
-" box below and submit the form. Only your <strong>public</strong> posts will"
-" be posted to Twitter."
-msgstr ""
-"Sur cette instance de Friendika, le connecteur Twitter a été activé, mais "
-"vous n'avez pas encore connecté votre compte à Twitter. Pour ce faire, "
-"cliquez sur le bouton ci-dessous pour obtenir un PIN de Twitter, que vous "
-"aurez à coller dans la boîte ci-dessous. Ensuite, validez le formulaire. "
-"Seuls vos articles &lt;strong&gt;publics&lt;/strong&gt; seront postés sur "
-"Twitter."
-
-#: ../../addon/twitter/twitter.php:172
-msgid "Log in with Twitter"
-msgstr "Se connecter à Twitter"
-
-#: ../../addon/twitter/twitter.php:174
-msgid "Copy the PIN from Twitter here"
-msgstr "Copier le PIN de Twitter ici"
-
-#: ../../addon/twitter/twitter.php:188 ../../addon/statusnet/statusnet.php:337
-msgid "Currently connected to: "
-msgstr "Actuellement connecté à: "
-
-#: ../../addon/twitter/twitter.php:189
+#: ../../mod/sources.php:89
+msgid "Manage remote sources of content for your channel."
+msgstr "Gérer les sources distantes du contenu de votre canal."
+
+#: ../../mod/sources.php:90 ../../mod/sources.php:100
+msgid "New Source"
+msgstr "Nouvelle source"
+
+#: ../../mod/sources.php:101 ../../mod/sources.php:133
 msgid ""
-"If enabled all your <strong>public</strong> postings can be posted to the "
-"associated Twitter account. You can choose to do so by default (here) or for"
-" every posting separately in the posting options when writing the entry."
-msgstr ""
-"En cas d'activation, toutes vos notices <strong>publiques</strong> seront "
-"transmises au compte Twitter associé. Vous pourrez choisir de le faire par "
-"défaut (ici), ou bien pour chaque notice séparément lors de sa rédaction."
+"Import all or selected content from the following channel into this channel "
+"and distribute it according to your channel settings."
+msgstr "Importer tout ou partie du contenu du canal suivant dans le canal en cours, et le distribuer en concordance avec les réglages de votre canal."
 
-#: ../../addon/twitter/twitter.php:191
-msgid "Allow posting to Twitter"
-msgstr "Autoriser la publication sur Twitter"
+#: ../../mod/sources.php:102 ../../mod/sources.php:134
+msgid "Only import content with these words (one per line)"
+msgstr "N'importer le contenu que s'ils contient ces mots (un par ligne)"
 
-#: ../../addon/twitter/twitter.php:194
-msgid "Send public postings to Twitter by default"
-msgstr "Envoyer les éléments publics sur Twitter par défaut"
+#: ../../mod/sources.php:102 ../../mod/sources.php:134
+msgid "Leave blank to import all public content"
+msgstr "Laissez en blanc pour importer tout le contenu public"
 
-#: ../../addon/twitter/twitter.php:199 ../../addon/statusnet/statusnet.php:348
-msgid "Clear OAuth configuration"
-msgstr "Effacer la configuration OAuth"
+#: ../../mod/sources.php:103 ../../mod/sources.php:137
+#: ../../mod/new_channel.php:110
+msgid "Channel Name"
+msgstr "Nom du canal"
 
-#: ../../addon/twitter/twitter.php:301
-msgid "Consumer key"
-msgstr "Clé utilisateur"
+#: ../../mod/sources.php:123 ../../mod/sources.php:150
+msgid "Source not found."
+msgstr "Source introuvable."
 
-#: ../../addon/twitter/twitter.php:302
-msgid "Consumer secret"
-msgstr "Secret utilisateur"
+#: ../../mod/sources.php:130
+msgid "Edit Source"
+msgstr "Éditer source"
 
-#: ../../addon/statusnet/statusnet.php:141
-msgid "Post to StatusNet"
-msgstr "Poster sur StatusNet"
+#: ../../mod/sources.php:131
+msgid "Delete Source"
+msgstr "Supprimer source"
 
-#: ../../addon/statusnet/statusnet.php:183
-msgid ""
-"Please contact your site administrator.<br />The provided API URL is not "
-"valid."
-msgstr ""
-"Merci de contacter l'administrateur du site.<br />L'URL d'API fournie est "
-"invalide."
+#: ../../mod/sources.php:158
+msgid "Source removed"
+msgstr "Source supprimée"
+
+#: ../../mod/sources.php:160
+msgid "Unable to remove source."
+msgstr "Impossible de supprimer la source."
+
+#: ../../mod/lockview.php:34
+msgid "Remote privacy information not available."
+msgstr "Les informations de vie privée à distance ne sont pas disponibles."
 
-#: ../../addon/statusnet/statusnet.php:211
-msgid "We could not contact the StatusNet API with the Path you entered."
-msgstr "Nous n'avons pas pu contacter l'API StatusNet avec le chemin saisi."
+#: ../../mod/lockview.php:43
+msgid "Visible to:"
+msgstr "Visible par&nbsp;:"
 
-#: ../../addon/statusnet/statusnet.php:238
-msgid "StatusNet settings updated."
-msgstr "Réglages StatusNet mis-à-jour."
+#: ../../mod/magic.php:70
+msgid "Hub not found."
+msgstr "Instance introuvable."
 
-#: ../../addon/statusnet/statusnet.php:261
-msgid "StatusNet Posting Settings"
-msgstr "Réglages du connecteur StatusNet"
+#: ../../mod/setup.php:161
+msgid "Red Matrix Server - Setup"
+msgstr "Serveur Red Matrix - Configuration"
 
-#: ../../addon/statusnet/statusnet.php:275
-msgid "Globally Available StatusNet OAuthKeys"
-msgstr "Clés OAuth StatusNet universelles"
+#: ../../mod/setup.php:167
+msgid "Could not connect to database."
+msgstr "Impossible de se connecter à la base de données."
 
-#: ../../addon/statusnet/statusnet.php:276
+#: ../../mod/setup.php:171
 msgid ""
-"There are preconfigured OAuth key pairs for some StatusNet servers "
-"available. If you are useing one of them, please use these credentials. If "
-"not feel free to connect to any other StatusNet instance (see below)."
-msgstr ""
-"Ce sont des paires de clés OAuth préconfigurées pour certains serveurs "
-"StatusNet courants. Si vous utilisez l'un d'entre eux, merci de vous servir "
-"de ces clés. Autrement, vous pouvez vous connecter à n'importer quelle autre"
-" instance de StatusNet (voir ci-dessous)."
+"Could not connect to specified site URL. Possible SSL certificate or DNS "
+"issue."
+msgstr "Impossible de se connecter au site par l'URL indiquée. Problème potentiel de certificat SSL/TLS ou de DNS."
 
-#: ../../addon/statusnet/statusnet.php:284
-msgid "Provide your own OAuth Credentials"
-msgstr "Fournissez vos propres paramètres OAuth"
+#: ../../mod/setup.php:176
+msgid "Could not create table."
+msgstr "Impossible de créer la table."
 
-#: ../../addon/statusnet/statusnet.php:285
-msgid ""
-"No consumer key pair for StatusNet found. Register your Friendika Account as"
-" an desktop client on your StatusNet account, copy the consumer key pair "
-"here and enter the API base root.<br />Before you register your own OAuth "
-"key pair ask the administrator if there is already a key pair for this "
-"Friendika installation at your favorited StatusNet installation."
-msgstr ""
-"Aucune paire de clé n'a été trouvée pour StatusNet. Inscrivez votre compte "
-"Friendika comme client bureautique sur votre compte StatusNet, puis copiez "
-"la paire de clés d'utilisateur ici et renseignez le chemin de base de "
-"l'API.&lt;br /&gt;Avant d'enregistrer votre propre paire de clés OAuth, "
-"merci de vérifier auprès de l'administrateur qu'il en existe pas déjà une "
-"pour votre fournisseur StatusNet."
-
-#: ../../addon/statusnet/statusnet.php:287
-msgid "OAuth Consumer Key"
-msgstr "Clé de consommateur OAuth"
-
-#: ../../addon/statusnet/statusnet.php:290
-msgid "OAuth Consumer Secret"
-msgstr "Secret d'utilisateur OAuth"
-
-#: ../../addon/statusnet/statusnet.php:293
-msgid "Base API Path (remember the trailing /)"
-msgstr "Chemin de base de l'API (n'oubliez pas le / final)"
-
-#: ../../addon/statusnet/statusnet.php:314
-msgid ""
-"To connect to your StatusNet account click the button below to get a "
-"security code from StatusNet which you have to copy into the input box below"
-" and submit the form. Only your <strong>public</strong> posts will be posted"
-" to StatusNet."
-msgstr ""
-"Pour vous connecter à votre compte StatusNet, cliquez sur le bouton ci-"
-"dessous pour obtenir un code de sécurité de StatusNet, que vous aurez à "
-"coller dans la boîte ci-dessous. Ensuite, validez le formulaire. Seuls vos "
-"articles &lt;strong&gt;publics&lt;/strong&gt; seront postés sur StatusNet."
+#: ../../mod/setup.php:182
+msgid "Your site database has been installed."
+msgstr "La base de données de votre site a été installée."
 
-#: ../../addon/statusnet/statusnet.php:315
-msgid "Log in with StatusNet"
-msgstr "Se connecter à StatusNet"
+#: ../../mod/setup.php:187
+msgid ""
+"You may need to import the file \"install/database.sql\" manually using "
+"phpmyadmin or mysql."
+msgstr "Vous pourriez avoir besoin d'importer le fichier \"install/database.sql\" manuellement via phpmyadmin ou mysql."
 
-#: ../../addon/statusnet/statusnet.php:317
-msgid "Copy the security code from StatusNet here"
-msgstr "Coller le code de sécurité de StatusNet ici"
+#: ../../mod/setup.php:188 ../../mod/setup.php:257 ../../mod/setup.php:609
+msgid "Please see the file \"install/INSTALL.txt\"."
+msgstr "Merci de consulter le fichier \"install/INSTALL.txt\"."
 
-#: ../../addon/statusnet/statusnet.php:323
-msgid "Cancel Connection Process"
-msgstr "Annuler le processus de connexion"
+#: ../../mod/setup.php:254
+msgid "System check"
+msgstr "Vérification du système"
 
-#: ../../addon/statusnet/statusnet.php:325
-msgid "Current StatusNet API is"
-msgstr "L'API StatusNet courante est"
+#: ../../mod/setup.php:259
+msgid "Check again"
+msgstr "Re-vérifier"
 
-#: ../../addon/statusnet/statusnet.php:326
-msgid "Cancel StatusNet Connection"
-msgstr "Annuler la connexion à StatusNet"
+#: ../../mod/setup.php:281
+msgid "Database connection"
+msgstr "Connexion à la base de données"
 
-#: ../../addon/statusnet/statusnet.php:338
+#: ../../mod/setup.php:282
 msgid ""
-"If enabled all your <strong>public</strong> postings can be posted to the "
-"associated StatusNet account. You can choose to do so by default (here) or "
-"for every posting separately in the posting options when writing the entry."
-msgstr ""
-"En cas d'activation, toutes vos notices <strong>publiques</strong> seront "
-"transmises au compte StatusNet associé. Vous pourrez choisir de le faire par"
-" défaut (ici), ou bien pour chaque notice séparément lors de sa rédaction."
+"In order to install Red Matrix we need to know how to connect to your "
+"database."
+msgstr "Pour installer Red Matrix, nous avons besoin de savoir comment contacter votre base de données."
 
-#: ../../addon/statusnet/statusnet.php:340
-msgid "Allow posting to StatusNet"
-msgstr "Autoriser la publication sur StatusNet"
+#: ../../mod/setup.php:283
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Merci de contacter votre prestataire d'hébergement ou votre administration système si vous avez des doutes à propos de ces paramètres."
 
-#: ../../addon/statusnet/statusnet.php:343
-msgid "Send public postings to StatusNet by default"
-msgstr "Par défaut, envoyer les notices publiques à StatusNet"
+#: ../../mod/setup.php:284
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "La base de données que vous allez spécifier doit exister. Si ce n'est pas déjà le cas, merci de la créer avant de continuer."
 
-#: ../../addon/statusnet/statusnet.php:478
-msgid "API URL"
-msgstr "URL de l'API"
+#: ../../mod/setup.php:288
+msgid "Database Server Name"
+msgstr "Nom du serveur de BD"
 
-#: ../../addon/oembed/oembed.php:30
-msgid "OEmbed settings updated"
-msgstr "Réglage OEmbed mis-à-jour"
+#: ../../mod/setup.php:288
+msgid "Default is localhost"
+msgstr "Par défaut, localhost"
 
-#: ../../addon/oembed/oembed.php:43
-msgid "Use OEmbed for YouTube videos"
-msgstr "Utiliser OEmbed pour les vidéos Youtube"
+#: ../../mod/setup.php:289
+msgid "Database Port"
+msgstr "Port du serveur"
 
-#: ../../addon/oembed/oembed.php:71
-msgid "URL to embed:"
-msgstr "URL à incorporer:"
+#: ../../mod/setup.php:289
+msgid "Communication port number - use 0 for default"
+msgstr "Numéro TCP du port - utilisez 0 pour la valeur par défaut"
 
-#: ../../addon/tictac/tictac.php:20
-msgid "Three Dimensional Tic-Tac-Toe"
-msgstr "Morpion en trois dimensions"
+#: ../../mod/setup.php:290
+msgid "Database Login Name"
+msgstr "Identifiant de connexion à la BD"
 
-#: ../../addon/tictac/tictac.php:53
-msgid "3D Tic-Tac-Toe"
-msgstr "Morpion 3D"
+#: ../../mod/setup.php:291
+msgid "Database Login Password"
+msgstr "Mot de passe de connexion à la BD"
 
-#: ../../addon/tictac/tictac.php:58
-msgid "New game"
-msgstr "Nouvelle partie"
+#: ../../mod/setup.php:292
+msgid "Database Name"
+msgstr "Nom de la base de données"
 
-#: ../../addon/tictac/tictac.php:59
-msgid "New game with handicap"
-msgstr "Nouvelle partie avec handicap"
+#: ../../mod/setup.php:294 ../../mod/setup.php:336
+msgid "Site administrator email address"
+msgstr "Adresse de courriel de l'administrateur du site"
 
-#: ../../addon/tictac/tictac.php:60
+#: ../../mod/setup.php:294 ../../mod/setup.php:336
 msgid ""
-"Three dimensional tic-tac-toe is just like the traditional game except that "
-"it is played on multiple levels simultaneously. "
-msgstr ""
-"Le morpion 3D, c'est comme la version traditionnelle. Sauf qu'on joue sur "
-"plusieurs étages en même temps."
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "Votre compte devra utiliser la même adresse de courriel pour pouvoir utiliser l'administration web."
 
-#: ../../addon/tictac/tictac.php:61
-msgid ""
-"In this case there are three levels. You win by getting three in a row on "
-"any level, as well as up, down, and diagonally across the different levels."
-msgstr ""
-"Dans le cas qui nous concerne, il y a trois étages. Vous gagnez en alignant "
-"trois coups dans n'importe quel étage, ainsi que verticalement ou en "
-"diagonale entre les étages."
+#: ../../mod/setup.php:295 ../../mod/setup.php:338
+msgid "Website URL"
+msgstr "URL du site"
 
-#: ../../addon/tictac/tictac.php:63
-msgid ""
-"The handicap game disables the center position on the middle level because "
-"the player claiming this square often has an unfair advantage."
-msgstr ""
-"Le handicap interdit la position centrale de l'étage du milieu, parce que le"
-" joueur qui prend cette case obtient souvent un avantage."
+#: ../../mod/setup.php:295 ../../mod/setup.php:338
+msgid "Please use SSL (https) URL if available."
+msgstr "Merci d'utiliser SSL/TLS (https) autant que possible."
 
-#: ../../addon/tictac/tictac.php:182
-msgid "You go first..."
-msgstr "À vous de jouer..."
+#: ../../mod/setup.php:298 ../../mod/setup.php:341
+msgid "Please select a default timezone for your website"
+msgstr "Merci de choisir une zone de temps (fuseau horaire) pour votre site"
 
-#: ../../addon/tictac/tictac.php:187
-msgid "I'm going first this time..."
-msgstr "Je commence..."
+#: ../../mod/setup.php:325
+msgid "Site settings"
+msgstr "Réglages du site"
 
-#: ../../addon/tictac/tictac.php:193
-msgid "You won!"
-msgstr "Vous avez gagné!"
+#: ../../mod/setup.php:384
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Impossible de trouver une version CLI de PHP dans le PATH du serveur web."
 
-#: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224
-msgid "\"Cat\" game!"
-msgstr "Match nul!"
+#: ../../mod/setup.php:385
+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 "En l'absence de version CLI de PHP sur votre serveur, vous ne pourrez pas utiliser la mise-à-jour en arrière-plan via cron."
 
-#: ../../addon/tictac/tictac.php:222
-msgid "I won!"
-msgstr "J'ai gagné!"
+#: ../../mod/setup.php:389
+msgid "PHP executable path"
+msgstr "Chemin vers l'éxecutable PHP"
 
-#: ../../addon/uhremotestorage/uhremotestorage.php:56
-#, php-format
+#: ../../mod/setup.php:389
 msgid ""
-"Allow to use your friendika id (%s) to connecto to external unhosted-enabled"
-" storage (like ownCloud)"
-msgstr ""
-"Autoriser votre identifiant friendica (%s) à se connecter à un stockage "
-"compatible unhosted (ownCloud, par exemple)"
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Entrez le chemin complet vers l'exécutable php. Vous pouvez continuer l'installation sans."
 
-#: ../../addon/uhremotestorage/uhremotestorage.php:57
-msgid "Unhosted DAV storage url"
-msgstr "URL de stockage DAV d'Unhosted"
+#: ../../mod/setup.php:394
+msgid "Command line PHP"
+msgstr "PHP en ligne de commande (CLI)"
 
-#: ../../addon/impressum/impressum.php:25
-msgid "Impressum"
-msgstr "Impressum"
+#: ../../mod/setup.php:403
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "La version CLI de PHP sur votre système n'a pas l'option \"register_argc_argv\" activée."
 
-#: ../../addon/impressum/impressum.php:38
-#: ../../addon/impressum/impressum.php:40
-#: ../../addon/impressum/impressum.php:70
-msgid "Site Owner"
-msgstr "Propriétaire du site"
+#: ../../mod/setup.php:404
+msgid "This is required for message delivery to work."
+msgstr "Elle est nécessaire pour la livraison de messages."
 
-#: ../../addon/impressum/impressum.php:38
-#: ../../addon/impressum/impressum.php:74
-msgid "Email Address"
-msgstr "Adresse courriel"
+#: ../../mod/setup.php:406
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../addon/impressum/impressum.php:43
-#: ../../addon/impressum/impressum.php:72
-msgid "Postal Address"
-msgstr "Adresse postale"
+#: ../../mod/setup.php:427
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Erreur&nbsp;: la fonction \"openssl_pkey_new\" de ce système n'est pas capable de générer des clefs de chiffrement"
 
-#: ../../addon/impressum/impressum.php:49
+#: ../../mod/setup.php:428
 msgid ""
-"The impressum addon needs to be configured!<br />Please add at least the "
-"<tt>owner</tt> variable to your config file. For other variables please "
-"refer to the README file of the addon."
-msgstr ""
-"L'extension \"Impressum\" (ou <em>ours</em>) n'est pas configuré!<br />Merci"
-" d'ajouter au moins la variable <tt>owner</tt> à votre fichier de "
-"configuration. Pour les autres variables, reportez-vous au fichier README "
-"accompagnant l'extension."
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Si vous êtes sur un serveur Windows, merci de consulter \"http://www.php.net/manual/fr/openssl.installation.php\"."
 
-#: ../../addon/impressum/impressum.php:71
-msgid "Site Owners Profile"
-msgstr "Profil des propriétaires du site"
+#: ../../mod/setup.php:430
+msgid "Generate encryption keys"
+msgstr "Générer les clefs de chiffrement"
 
-#: ../../addon/impressum/impressum.php:73
-msgid "Notes"
-msgstr "Notes"
+#: ../../mod/setup.php:437
+msgid "libCurl PHP module"
+msgstr "module PHP libCurl"
 
-#: ../../addon/facebook/facebook.php:337
-msgid "Facebook disabled"
-msgstr "Connecteur Facebook désactivé"
+#: ../../mod/setup.php:438
+msgid "GD graphics PHP module"
+msgstr "module PHP GD graphics"
 
-#: ../../addon/facebook/facebook.php:342
-msgid "Updating contacts"
-msgstr "Mise-à-jour des contacts"
+#: ../../mod/setup.php:439
+msgid "OpenSSL PHP module"
+msgstr "module PHP OpenSSL"
 
-#: ../../addon/facebook/facebook.php:351
-msgid "Facebook API key is missing."
-msgstr "Clé d'API Facebook manquante."
+#: ../../mod/setup.php:440
+msgid "mysqli PHP module"
+msgstr "module PHP mysqli"
 
-#: ../../addon/facebook/facebook.php:358
-msgid "Facebook Connect"
-msgstr "Connecteur Facebook"
+#: ../../mod/setup.php:441
+msgid "mb_string PHP module"
+msgstr "module PHP mb_string"
 
-#: ../../addon/facebook/facebook.php:364
-msgid "Install Facebook connector for this account."
-msgstr "Installer le connecteur Facebook sur ce compte."
+#: ../../mod/setup.php:442
+msgid "mcrypt PHP module"
+msgstr "module PHP mcrypt"
 
-#: ../../addon/facebook/facebook.php:371
-msgid "Remove Facebook connector"
-msgstr "Désinstaller le connecteur Facebook"
+#: ../../mod/setup.php:447 ../../mod/setup.php:449
+msgid "Apache mod_rewrite module"
+msgstr "module Apache mod_rewrite"
 
-#: ../../addon/facebook/facebook.php:376
+#: ../../mod/setup.php:447
 msgid ""
-"Re-authenticate [This is necessary whenever your Facebook password is "
-"changed.]"
-msgstr ""
-"Se ré-authentifier [nécessaire chaque fois que vous changez votre mot de "
-"passe Facebook.]"
-
-#: ../../addon/facebook/facebook.php:383
-msgid "Post to Facebook by default"
-msgstr "Poster sur Facebook par défaut"
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Erreur&nbsp;: le module mod-rewrite du serveur web Apache est requis, mais pas installé."
 
-#: ../../addon/facebook/facebook.php:387
-msgid "Link all your Facebook friends and conversations on this website"
-msgstr "Lier tous vos amis et conversations Facebook sur ce site"
+#: ../../mod/setup.php:453 ../../mod/setup.php:456
+msgid "proc_open"
+msgstr "proc_open"
 
-#: ../../addon/facebook/facebook.php:389
+#: ../../mod/setup.php:453
 msgid ""
-"Facebook conversations consist of your <em>profile wall</em> and your friend"
-" <em>stream</em>."
-msgstr ""
-"Les conversations Facebook se composent du <em>mur du profil</em> et des "
-"<em>flux</em> de vos amis."
+"Error: proc_open is required but is either not installed or has been "
+"disabled in php.ini"
+msgstr "Erreur&nbsp;: proc_open est requis, mais soit n'est pas installé, soit est désactivé dans le php.ini"
 
-#: ../../addon/facebook/facebook.php:390
-msgid "On this website, your Facebook friend stream is only visible to you."
-msgstr ""
-"Sur ce site, les flux de vos amis Facebook ne sont visibles que par vous."
+#: ../../mod/setup.php:461
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Erreur&nbsp;: le module libCURL de PHP est requis, mais pas installé."
 
-#: ../../addon/facebook/facebook.php:391
+#: ../../mod/setup.php:465
 msgid ""
-"The following settings determine the privacy of your Facebook profile wall "
-"on this website."
-msgstr ""
-"Les réglages suivants déterminent le niveau de vie privée de votre mur "
-"Facebook depuis ce site."
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Erreur&nbsp;: le module GD de PHP (avec support JPEG) est requis, mais pas installé."
+
+#: ../../mod/setup.php:469
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Erreur&nbsp;: le module openssl de PHP est requis, mais pas installé."
+
+#: ../../mod/setup.php:473
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Erreur&nbsp;: le module mysqli de PHP est requis, mais pas installé."
 
-#: ../../addon/facebook/facebook.php:395
+#: ../../mod/setup.php:477
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Erreur&nbsp;: le module mb_string de PHP est requis, mais pas installé."
+
+#: ../../mod/setup.php:481
+msgid "Error: mcrypt PHP module required but not installed."
+msgstr "Erreur&nbsp;: le module mcrypt de PHP est requis, mais pas installé."
+
+#: ../../mod/setup.php:497
 msgid ""
-"On this website your Facebook profile wall conversations will only be "
-"visible to you"
-msgstr ""
-"Sur ce site, les conversations de votre mur Facebook ne sont visibles que "
-"par vous."
+"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'installeur web a besoin de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais en est incapable."
 
-#: ../../addon/facebook/facebook.php:400
-msgid "Do not import your Facebook profile wall conversations"
-msgstr "Ne pas importer les conversations de votre mur Facebook."
+#: ../../mod/setup.php:498
+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 "C'est généralement lié à un problème de droits, à cause duquel le serveur web est interdit d'écriture dans le répertoire concerné - alors que votre propre utilisateur a le droit."
 
-#: ../../addon/facebook/facebook.php:402
+#: ../../mod/setup.php:499
 msgid ""
-"If you choose to link conversations and leave both of these boxes unchecked,"
-" your Facebook profile wall will be merged with your profile wall on this "
-"website and your privacy settings on this website will be used to determine "
-"who may see the conversations."
-msgstr ""
-"Si vous choisissez de lier les conversations et de laisser ces deux cases "
-"non-cochées, votre mur Facebook sera fusionné avec votre mur de profil (sur "
-"ce site). Vos réglages (locaux) de vie privée serviront à en déterminer la "
-"visibilité."
+"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 "Au terme de cette procédure, nous vous transmettrons un texte à sauvegarder dans un fichier nommé .htconfig.php, à la racine de votre installation de Red."
 
-#: ../../addon/facebook/facebook.php:469
-#: ../../include/contact_selectors.php:78
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../mod/setup.php:500
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"install/INSTALL.txt\" for instructions."
+msgstr "Autrement, vous pouvez contourner toute cette procédure et réaliser l'installation manuellement. Merci de consulter le fichier \"install/INSTALL.txt\" pour les instructions détaillées."
 
-#: ../../addon/facebook/facebook.php:470
-msgid "Facebook Connector Settings"
-msgstr "Réglages du connecteur Facebook"
+#: ../../mod/setup.php:503
+msgid ".htconfig.php is writable"
+msgstr "Le fichier .htconfig.php est accessible en écriture"
 
-#: ../../addon/facebook/facebook.php:484
-msgid "Post to Facebook"
-msgstr "Poster sur Facebook"
+#: ../../mod/setup.php:513
+msgid ""
+"Red uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Red utilise le moteur de template Smarty3 pour mettre son contenu en forme. Smarty3 compile ses templates vers du PHP natif pour accélérer le rendu."
 
-#: ../../addon/facebook/facebook.php:561
+#: ../../mod/setup.php:514
 msgid ""
-"Post to Facebook cancelled because of multi-network access permission "
-"conflict."
-msgstr ""
-"Publication sur Facebook annulée pour cause de conflit de permissions inter-"
-"réseaux."
+"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 "Pour stocker ces templates compilées, le serveur web nécessite de pouvoir écrire dans le répertoire <racine de red>view/tpl/smarty3/."
 
-#: ../../addon/facebook/facebook.php:624
-msgid "Image: "
-msgstr "Image: "
+#: ../../mod/setup.php:515 ../../mod/setup.php:533
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Merci de vous assurer que l'utilisateur sous lequel le serveur web tourne (le plus souvent, www-data) a bien l'autorisation d'écrire dans ce répertoire."
 
-#: ../../addon/facebook/facebook.php:700
-msgid "View on Friendika"
-msgstr "Voir sur Friendica"
+#: ../../mod/setup.php:516
+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 "Note&nbsp;: pour renforcer la sécurité, vous pouvez décider de ne donner l'accès en écrire qu'au répertoire view/tpl/smarty3 - et pas aux fichiers de templates (.tpl) qu'il contient."
 
-#: ../../addon/facebook/facebook.php:724
-msgid "Facebook post failed. Queued for retry."
-msgstr "Publication sur Facebook échouée. En attente pour re-tentative."
+#: ../../mod/setup.php:519
+msgid "view/tpl/smarty3 is writable"
+msgstr "view/tpl/smarty3 est accessible en écriture"
 
-#: ../../addon/widgets/widgets.php:55
-msgid "Generate new key"
-msgstr "Générer une nouvelle clé"
+#: ../../mod/setup.php:532
+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 utilise le répertoire 'store' - situé à la racine de Red - pour sauvegarder les fichiers envoyés. Le serveur web aura donc besoin de pouvoir y écrire."
 
-#: ../../addon/widgets/widgets.php:58
-msgid "Widgets key"
-msgstr "Clé des widgets"
+#: ../../mod/setup.php:536
+msgid "store is writable"
+msgstr "'store' est accessible en écriture"
 
-#: ../../addon/widgets/widgets.php:60
-msgid "Widgets available"
-msgstr "Widgets disponibles"
+#: ../../mod/setup.php:551
+msgid "SSL certificate validation"
+msgstr "Validation du certificat SSL/TLS"
 
-#: ../../addon/widgets/widget_friends.php:40
-msgid "Connect on Friendika!"
-msgstr "Se connecter à Friendica!"
+#: ../../mod/setup.php:551
+msgid ""
+"SSL certificate cannot be validated. Fix certificate or disable https access"
+" to this site."
+msgstr "Le certificat SSL/TLS n'a pas pu être validé. Merci de le corriger, ou de désactiver l'accès https à ce site."
 
-#: ../../addon/widgets/widget_like.php:58
-#, php-format
-msgid "%d person likes this"
-msgid_plural "%d people like this"
-msgstr[0] "%d personne aime ça"
-msgstr[1] "%d personnes aiment ça"
+#: ../../mod/setup.php:558
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "La réécriture d'URL définie dans le .htaccess ne fonctionne pas. Merci de vérifier la configuration de votre serveur web."
 
-#: ../../addon/widgets/widget_like.php:61
-#, php-format
-msgid "%d person doesn't like this"
-msgid_plural "%d people don't like this"
-msgstr[0] "%d personne n'aime pas ça"
-msgstr[1] "%d personnes n'aiment pas ça"
+#: ../../mod/setup.php:560
+msgid "Url rewrite is working"
+msgstr "La réécriture d'URL fonctionne"
 
-#: ../../addon/buglink/buglink.php:15
-msgid "Report Bug"
-msgstr "Signaler un bug"
+#: ../../mod/setup.php:570
+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 "Le fichier de configuration de la base de données - \".htconfig.php\" - ne peut être écrit. Merci de copier le texte généré dans un fichier à ce nom, à la racine de votre serveur web."
 
-#: ../../addon/nsfw/nsfw.php:47
-msgid "\"Not Safe For Work\" Settings"
-msgstr "Réglages de \"Not Safe For Work\""
+#: ../../mod/setup.php:594
+msgid "Errors encountered creating database tables."
+msgstr "Erreurs rencontrées pendant la création de tables de BD."
 
-#: ../../addon/nsfw/nsfw.php:49
-msgid "Comma separated words to treat as NSFW"
-msgstr "Liste de mots à considérer comme NSFW. Séparés par des virgules."
+#: ../../mod/setup.php:607
+msgid "<h1>What next</h1>"
+msgstr "<h1>Et maintenant</h1>"
 
-#: ../../addon/nsfw/nsfw.php:66
-msgid "NSFW Settings saved."
-msgstr "Réglages NSFW sauvegardés."
+#: ../../mod/setup.php:608
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "IMPORTANT&nbsp;: Vous devez créer [manuellement] une tâche planifiée pour les mises-à-jour."
 
-#: ../../addon/nsfw/nsfw.php:102
+#: ../../mod/siteinfo.php:57
 #, php-format
-msgid "%s - Click to open/close"
-msgstr "%s - cliquer pour ouvrir/fermer"
+msgid "Version %s"
+msgstr "Version %s"
+
+#: ../../mod/siteinfo.php:76
+msgid "Installed plugins/addons/apps:"
+msgstr "Extensions/applications installées&nbsp;:"
 
-#: ../../addon/communityhome/communityhome.php:29
-msgid "OpenID"
-msgstr "OpenID"
+#: ../../mod/siteinfo.php:89
+msgid "No installed plugins/addons/apps"
+msgstr "Aucune extension/application installée"
 
-#: ../../addon/communityhome/communityhome.php:38
-msgid "Last users"
-msgstr "Derniers utilisateurs"
+#: ../../mod/siteinfo.php:109
+msgid "Red"
+msgstr "Red"
 
-#: ../../addon/communityhome/communityhome.php:81
-msgid "Most active users"
-msgstr "Utilisateurs les plus actifs"
+#: ../../mod/siteinfo.php:110
+msgid ""
+"This is a hub of the Red Matrix - a global cooperative network of "
+"decentralised privacy enhanced websites."
+msgstr "Ceci est une instance - un hub - de la Matrice Red - un réseau global et coopératif de sites web qui respectent la vie privée de manière décentralisée/acentrée."
 
-#: ../../addon/communityhome/communityhome.php:98
-msgid "Last photos"
-msgstr "Dernières photos"
+#: ../../mod/siteinfo.php:113
+msgid "Running at web location"
+msgstr "En train de tourner chez"
 
-#: ../../addon/communityhome/communityhome.php:133
-msgid "Last likes"
-msgstr "Dernièrement aimé"
+#: ../../mod/siteinfo.php:114
+msgid ""
+"Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more "
+"about the Red Matrix."
+msgstr "Merci de visiter <a href=\"http://getzot.com\">GetZot.com</a> pour en apprendre davantage sur la Matrice Red."
 
-#: ../../addon/communityhome/communityhome.php:155
-#: ../../include/conversation.php:23
-msgid "event"
-msgstr "évènement"
+#: ../../mod/siteinfo.php:115
+msgid "Bug reports and issues: please visit"
+msgstr "Pour remonter bogues et problèmes, merci de visiter"
 
-#: ../../addon/membersince/membersince.php:17
-#, php-format
-msgid " - Member since: %s"
-msgstr " - Membre depuis: %s"
+#: ../../mod/siteinfo.php:118
+msgid ""
+"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot "
+"com"
+msgstr "Suggestions, demandes, etc. - merci de vous adresser à \"redmatrix\" à librelist - point com"
 
-#: ../../addon/randplace/randplace.php:170
-msgid "Randplace Settings"
-msgstr "Réglages de Randplace"
+#: ../../mod/siteinfo.php:120
+msgid "Site Administrators"
+msgstr "Administrateurs du site"
 
-#: ../../addon/randplace/randplace.php:172
-msgid "Enable Randplace Plugin"
-msgstr "Activer l'extension Randplace"
+#: ../../mod/new_channel.php:107
+msgid "Add a Channel"
+msgstr "Ajouter un canal"
 
-#: ../../addon/piwik/piwik.php:70
+#: ../../mod/new_channel.php:108
 msgid ""
-"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
-"analytics tool."
-msgstr ""
-"Ce site collecte ses statistiques grâce à <a "
-"href='http://www.piwik.org'>Piwik</a>."
+"A channel is your own collection of related web pages. A channel can be used"
+" to hold social network profiles, blogs, conversation groups and forums, "
+"celebrity pages, and much more. You may create as many channels as your "
+"service provider allows."
+msgstr "Un canal est une collection de pages web reliées entre elles, sous votre contrôle. Il peut contenir des profils de réseau social, des blogs, des groupes de conversation, des forums, des pages de célébrités, et bien plus encore. Vous pouvez créer autant de canaux que votre fournisseur vous y autorise."
 
-#: ../../addon/piwik/piwik.php:73
-#, php-format
-msgid ""
-"If you do not want that your visits are logged this way you <a href='%s'>can"
-" set a cookie to prevent Piwik from tracking further visits of the site</a> "
-"(opt-out)."
-msgstr ""
-"Si vous ne voulez pas que vos visites soient collectées par ce biais, vous "
-"<a href='%s'>pouvez activer un cookie qui empêchera Piwik de tenir compte de"
-" vos visites ultérieures</a> (opt-out)."
+#: ../../mod/new_channel.php:111
+msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "
+msgstr "Exemples&nbsp;: \"Bob Jameson\", \"Lisa et ses chevaux sauvages\", \"Football\", \"Groupe des amateurs de tir à l'arc\""
 
-#: ../../addon/piwik/piwik.php:82
-msgid "Piwik Base URL"
-msgstr "URL de base de Piwik"
+#: ../../mod/new_channel.php:112
+msgid "Choose a short nickname"
+msgstr "Choisissez un nom court"
 
-#: ../../addon/piwik/piwik.php:83
-msgid "Site ID"
-msgstr "ID du site"
+#: ../../mod/new_channel.php:113
+msgid ""
+"Your nickname will be used to create an easily remembered channel address "
+"(like an email address) which you can share with others."
+msgstr "Ce nom court sera utilisé pour créer une adresse de canal, facile à retenir - un peu comme une adresse de courriel - que vous pourrez partager avec d'autres."
 
-#: ../../addon/piwik/piwik.php:84
-msgid "Show opt-out cookie link?"
-msgstr "Montrer le lien d'opt-out?"
+#: ../../mod/new_channel.php:114
+msgid "Or <a href=\"import\">import an existing channel</a> from another location"
+msgstr "Ou <a href=\"import\">importez un canal existant</a> à un autre endroit"
 
-#: ../../addon/js_upload/js_upload.php:43
-msgid "Upload a file"
-msgstr "Téléverser un fichier"
+#: ../../mod/lostpass.php:15
+msgid "No valid account found."
+msgstr "Aucun compte valide trouvé."
 
-#: ../../addon/js_upload/js_upload.php:44
-msgid "Drop files here to upload"
-msgstr "Déposer des fichiers ici pour les téléverser"
+#: ../../mod/lostpass.php:29
+msgid "Password reset request issued. Check your email."
+msgstr "Réinitialisation du mot de passe demandée. Vérifiez vos courriels."
 
-#: ../../addon/js_upload/js_upload.php:46
-msgid "Failed"
-msgstr "Échec"
+#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102
+#, php-format
+msgid "Site Member (%s)"
+msgstr "Membre du site (%s)"
 
-#: ../../addon/js_upload/js_upload.php:294
-msgid "No files were uploaded."
-msgstr "Aucun fichier n'a été téléversé."
+#: ../../mod/lostpass.php:40
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Demande de réinitialisation de mot de passe sur %s"
 
-#: ../../addon/js_upload/js_upload.php:300
-msgid "Uploaded file is empty"
-msgstr "Le fichier téléversé est vide"
+#: ../../mod/lostpass.php:63
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "La demande n'a pas pu être vérifiée. (Peut-être l'avez vous déjà utilisée.) La réinitialisation a échoué."
 
-#: ../../addon/js_upload/js_upload.php:323
-msgid "File has an invalid extension, it should be one of "
-msgstr "Le fichier a une extension invalide, elle devrait être parmi "
+#: ../../mod/lostpass.php:85 ../../boot.php:1434
+msgid "Password Reset"
+msgstr "Réinitialiser le mot de passe"
 
-#: ../../addon/js_upload/js_upload.php:334
-msgid "Upload was cancelled, or server error encountered"
-msgstr "Téléversement annulé, ou erreur de serveur"
+#: ../../mod/lostpass.php:86
+msgid "Your password has been reset as requested."
+msgstr "Votre mot de passe a bien été réinitialisé."
 
-#: ../../addon/wppost/wppost.php:41
-msgid "Post to Wordpress"
-msgstr "Poster sur WordPress"
+#: ../../mod/lostpass.php:87
+msgid "Your new password is"
+msgstr "Votre nouveau mot de passe est"
 
-#: ../../addon/wppost/wppost.php:73
-msgid "WordPress Post Settings"
-msgstr "Réglages WordPress"
+#: ../../mod/lostpass.php:88
+msgid "Save or copy your new password - and then"
+msgstr "Sauvez-le ou copiez-le, puis"
 
-#: ../../addon/wppost/wppost.php:75
-msgid "Enable WordPress Post Plugin"
-msgstr "Activer l'extension WordPress"
+#: ../../mod/lostpass.php:89
+msgid "click here to login"
+msgstr "cliquez ici pour vous connecter"
 
-#: ../../addon/wppost/wppost.php:80
-msgid "WordPress username"
-msgstr "Utilisateur WordPress"
+#: ../../mod/lostpass.php:90
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Votre mot de passe peut être changé depuis la page des <em>Réglages</em> une fois connecté."
 
-#: ../../addon/wppost/wppost.php:85
-msgid "WordPress password"
-msgstr "Mot de passe WordPress"
+#: ../../mod/lostpass.php:107
+#, php-format
+msgid "Your password has changed at %s"
+msgstr "Votre mot de passe de %s a été changé"
 
-#: ../../addon/wppost/wppost.php:90
-msgid "WordPress API URL"
-msgstr "URL de l'API WordPress"
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
+msgstr "Mot de passe oublié?"
 
-#: ../../addon/wppost/wppost.php:95
-msgid "Post to WordPress by default"
-msgstr "Publier sur WordPress par défaut"
+#: ../../mod/lostpass.php:123
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Saisissez votre adresse de courriel, et validez, pour réinitialiser votre mot de passe. Vérifiez ensuite votre boîte à lettres pour la suite des instructions."
 
-#: ../../include/notifier.php:616 ../../include/delivery.php:415
-msgid "(no subject)"
-msgstr "(sans titre)"
+#: ../../mod/lostpass.php:124
+msgid "Email Address"
+msgstr "Adresse de courriel"
 
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Inconnu | Non-classé"
+#: ../../mod/lostpass.php:125
+msgid "Reset"
+msgstr "Réinitialiser"
 
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Bloquer immédiatement"
+#: ../../mod/import.php:36
+msgid "Nothing to import."
+msgstr "Rien à importer."
 
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Douteux, spammeur, accro à l'auto-promotion"
+#: ../../mod/import.php:58
+msgid "Unable to download data from old server"
+msgstr "Impossible de récupérer les données de l'ancien serveur"
 
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Connu de moi, mais sans opinion"
+#: ../../mod/import.php:64
+msgid "Imported file is empty."
+msgstr "Le fichier importé est vide."
 
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "OK, probablement inoffensif"
+#: ../../mod/import.php:88
+msgid ""
+"Cannot create a duplicate channel identifier on this system. Import failed."
+msgstr "Impossible de créer un doublon d'un identifiant de canal. L'import a échoué."
 
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Réputé, a toute ma confiance"
+#: ../../mod/import.php:106
+msgid "Channel clone failed. Import failed."
+msgstr "Le clonage du canal a échoué. L'import a échoué."
 
-#: ../../include/contact_selectors.php:56
-msgid "Frequently"
-msgstr "Fréquemment"
+#: ../../mod/import.php:116
+msgid "Cloned channel not found. Import failed."
+msgstr "Le canal cloné n'a pas été trouvé. L'import a échoué."
 
-#: ../../include/contact_selectors.php:57
-msgid "Hourly"
-msgstr "Toutes les heures"
+#: ../../mod/import.php:358
+msgid "Import completed."
+msgstr "L'import est terminé."
 
-#: ../../include/contact_selectors.php:58
-msgid "Twice daily"
-msgstr "Deux fois par jour"
+#: ../../mod/import.php:371
+msgid "You must be logged in to use this feature."
+msgstr "Vous devez vous connecter pour utiliser cette fonctionnalité."
 
-#: ../../include/contact_selectors.php:59
-msgid "Daily"
-msgstr "Chaque jour"
+#: ../../mod/import.php:376
+msgid "Import Channel"
+msgstr "Importation de canal"
 
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Chaque semaine"
+#: ../../mod/import.php:377
+msgid ""
+"Use this form to import an existing channel from a different server/hub. You"
+" may retrieve the channel identity from the old server/hub via the network "
+"or provide an export file. Only identity and connections/relationships will "
+"be imported. Importation of content is not yet available."
+msgstr "Utilisez ce formulaire pour importer un canal existant sur un serveur différent. Vous pouvez récupérer l'identité du canal sur l'ancien serveur directement par le réseau, ou bien fournir un fichier d'export. Seules les données d'identité et de relations seront importées. L'importation des contenus n'est pas encore disponible."
 
-#: ../../include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Chaque mois"
+#: ../../mod/import.php:378
+msgid "File to Upload"
+msgstr "Fichier à envoyer"
 
-#: ../../include/contact_selectors.php:78
-msgid "OStatus"
-msgstr "OStatus"
+#: ../../mod/import.php:379
+msgid "Or provide the old server/hub details"
+msgstr "Ou fournissez les détails de l'ancien serveur"
 
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: ../../mod/import.php:380
+msgid "Your old identity address (xyz@example.com)"
+msgstr "Votre ancienne identité (zyx@exemple.com)"
 
-#: ../../include/contact_selectors.php:78
-msgid "Zot!"
-msgstr "Zot!"
+#: ../../mod/import.php:381
+msgid "Your old login email address"
+msgstr "Votre ancienne adresse de courriel"
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Masculin"
+#: ../../mod/import.php:382
+msgid "Your old login password"
+msgstr "Votre ancien mot de passe"
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Féminin"
+#: ../../mod/import.php:383
+msgid ""
+"For either option, please choose whether to make this hub your new primary "
+"address, or whether your old location should continue this role. You will be"
+" able to post from either location, but only one can be marked as the "
+"primary location for files, photos, and media."
+msgstr "Quelle que soit l'option choisie, merci de décider si cette nouvelle adresse sera la primaire, ou si votre ancienne adresse continuera à jouer ce rôle. Vous pourrez publier depuis l'adresse de votre choix, mais une seule peut être déclarée comme stockage primaire de vos fichiers/photos/media."
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Actuellement masculin"
+#: ../../mod/import.php:384
+msgid "Make this hub my primary location"
+msgstr "Faire de cette adresse ma principale"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Actuellement féminin"
+#: ../../mod/manage.php:63
+#, php-format
+msgid "You have created %1$.0f of %2$.0f allowed channels."
+msgstr "Vous avez créé %1$.0f des %2$.0f canaux autorisés."
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Principalement masculin"
+#: ../../mod/manage.php:71
+msgid "Create a new channel"
+msgstr "Créer un nouveau canal"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Principalement féminin"
+#: ../../mod/manage.php:76
+msgid "Channel Manager"
+msgstr "Gestionnaire du canal"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgenre"
+#: ../../mod/manage.php:77
+msgid "Current Channel"
+msgstr "Canal actif"
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Inter-sexe"
+#: ../../mod/manage.php:79
+msgid "Attach to one of your channels by selecting it."
+msgstr "Branchez-vous à l'un de vos canaux en le selectionnant."
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transsexuel"
+#: ../../mod/manage.php:80
+msgid "Default Channel"
+msgstr "Canal par défaut"
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermaphrodite"
+#: ../../mod/manage.php:81
+msgid "Make Default"
+msgstr "Définir comme défaut"
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Neutre"
+#: ../../mod/vote.php:97
+msgid "Total votes"
+msgstr "Suffrages exprimés"
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Non-spécifique"
+#: ../../mod/vote.php:98
+msgid "Average Rating"
+msgstr "Note moyenne"
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Autre"
+#: ../../mod/match.php:16
+msgid "Profile Match"
+msgstr "Profils similaires"
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Indécis"
+#: ../../mod/match.php:24
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Aucun mot-clef à comparer. Merci d'ajouter des mots-clefs à votre profil par défaut."
 
-#: ../../include/profile_selectors.php:19
-msgid "Males"
-msgstr "Hommes"
+#: ../../mod/match.php:61
+msgid "is interested in:"
+msgstr "s'intéresse à&nbsp;:"
 
-#: ../../include/profile_selectors.php:19
-msgid "Females"
-msgstr "Femmes"
+#: ../../mod/match.php:69
+msgid "No matches"
+msgstr "Pas de correspondance"
 
-#: ../../include/profile_selectors.php:19
-msgid "Gay"
-msgstr "Gay"
+#: ../../mod/zfinger.php:23
+msgid "invalid target signature"
+msgstr "signature de la cible invalide"
 
-#: ../../include/profile_selectors.php:19
-msgid "Lesbian"
-msgstr "Lesbienne"
+#: ../../mod/mail.php:33
+msgid "Unable to lookup recipient."
+msgstr "Impossible de localiser le destinataire."
 
-#: ../../include/profile_selectors.php:19
-msgid "No Preference"
-msgstr "Sans préférence"
+#: ../../mod/mail.php:41
+msgid "Unable to communicate with requested channel."
+msgstr "Impossible de communiquer avec le canal demandé."
 
-#: ../../include/profile_selectors.php:19
-msgid "Bisexual"
-msgstr "Bisexuel"
+#: ../../mod/mail.php:48
+msgid "Cannot verify requested channel."
+msgstr "Impossible de vérifier le canal demandé."
 
-#: ../../include/profile_selectors.php:19
-msgid "Autosexual"
-msgstr "Auto-sexuel"
+#: ../../mod/mail.php:74
+msgid "Selected channel has private message restrictions. Send failed."
+msgstr "Le canal choisi a des restrictions quant aux messages privés. L'envoi a échoué."
 
-#: ../../include/profile_selectors.php:19
-msgid "Abstinent"
-msgstr "Abstinent"
+#: ../../mod/mail.php:121 ../../mod/message.php:31
+msgid "Messages"
+msgstr "Messages"
 
-#: ../../include/profile_selectors.php:19
-msgid "Virgin"
-msgstr "Vierge"
+#: ../../mod/mail.php:132
+msgid "Message deleted."
+msgstr "Message supprimé."
 
-#: ../../include/profile_selectors.php:19
-msgid "Deviant"
-msgstr "Déviant"
+#: ../../mod/mail.php:149
+msgid "Message recalled."
+msgstr "Message annulé/rappelé."
 
-#: ../../include/profile_selectors.php:19
-msgid "Fetish"
-msgstr "Fétichiste"
+#: ../../mod/mail.php:206
+msgid "Send Private Message"
+msgstr "Envoyer un Message Privé"
 
-#: ../../include/profile_selectors.php:19
-msgid "Oodles"
-msgstr "Oodles"
+#: ../../mod/mail.php:207 ../../mod/mail.php:323
+msgid "To:"
+msgstr "À&nbsp;:"
 
-#: ../../include/profile_selectors.php:19
-msgid "Nonsexual"
-msgstr "Non-sexuel"
+#: ../../mod/mail.php:212 ../../mod/mail.php:325
+msgid "Subject:"
+msgstr "Sujet&nbsp;:"
 
-#: ../../include/profile_selectors.php:33
-msgid "Single"
-msgstr "Célibataire"
+#: ../../mod/mail.php:249
+msgid "Message not found."
+msgstr "Message introuvable."
 
-#: ../../include/profile_selectors.php:33
-msgid "Lonely"
-msgstr "Esseulé"
+#: ../../mod/mail.php:292 ../../mod/message.php:72
+msgid "Delete message"
+msgstr "Supprimer message"
 
-#: ../../include/profile_selectors.php:33
-msgid "Available"
-msgstr "Disponible"
+#: ../../mod/mail.php:293
+msgid "Recall message"
+msgstr "Rappeler/annuler le message"
 
-#: ../../include/profile_selectors.php:33
-msgid "Unavailable"
-msgstr "Indisponible"
+#: ../../mod/mail.php:295
+msgid "Message has been recalled."
+msgstr "Le message a été rappelé."
 
-#: ../../include/profile_selectors.php:33
-msgid "Dating"
-msgstr "Dans une relation"
+#: ../../mod/mail.php:312
+msgid "Private Conversation"
+msgstr "Conversation privée"
 
-#: ../../include/profile_selectors.php:33
-msgid "Unfaithful"
-msgstr "Infidèle"
+#: ../../mod/mail.php:316
+msgid "Delete conversation"
+msgstr "Supprimer conversation"
 
-#: ../../include/profile_selectors.php:33
-msgid "Sex Addict"
-msgstr "Accro au sexe"
+#: ../../mod/mail.php:318
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Aucune communication sécurisée n'est possible en l'état. Vous pourrez <strong>peut-être</strong> répondre depuis la page de profil de l'émetteur."
 
-#: ../../include/profile_selectors.php:33
-msgid "Friends"
-msgstr "Amis"
+#: ../../mod/mail.php:322
+msgid "Send Reply"
+msgstr "Envoyer une réponse"
 
-#: ../../include/profile_selectors.php:33
-msgid "Friends/Benefits"
-msgstr "Amis par intérêt"
+#: ../../mod/editlayout.php:72
+msgid "Edit Layout"
+msgstr "Éditer mise-en-page"
 
-#: ../../include/profile_selectors.php:33
-msgid "Casual"
-msgstr "Casual"
+#: ../../mod/editlayout.php:82
+msgid "Delete layout?"
+msgstr "Supprimer la mise-en-page?"
 
-#: ../../include/profile_selectors.php:33
-msgid "Engaged"
-msgstr "Fiancé"
+#: ../../mod/editlayout.php:147
+msgid "Delete Layout"
+msgstr "Supprimer mise-en-page"
 
-#: ../../include/profile_selectors.php:33
-msgid "Married"
-msgstr "Marié"
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "L'image a été téléversée, mais le recadrage a échoué."
 
-#: ../../include/profile_selectors.php:33
-msgid "Partners"
-msgstr "Partenaire"
+#: ../../mod/profile_photo.php:97
+msgid "Image resize failed."
+msgstr "Le retaillage de l'image a échoué."
 
-#: ../../include/profile_selectors.php:33
-msgid "Cohabiting"
-msgstr "En cohabitation"
+#: ../../mod/profile_photo.php:141
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Shirt-rechargez votre page, ou videz le cache du navigateur si la photo ne s'affiche pas immédiatement."
 
-#: ../../include/profile_selectors.php:33
-msgid "Happy"
-msgstr "Heureux"
+#: ../../mod/profile_photo.php:163
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr "L'image dépasse la taille limite de %d"
 
-#: ../../include/profile_selectors.php:33
-msgid "Not Looking"
-msgstr "Sans recherche"
+#: ../../mod/profile_photo.php:172
+msgid "Unable to process image."
+msgstr "Impossible de traîter l'image."
 
-#: ../../include/profile_selectors.php:33
-msgid "Swinger"
-msgstr "Échangiste"
+#: ../../mod/profile_photo.php:214 ../../mod/profile_photo.php:262
+msgid "Photo not available."
+msgstr "Photo inaccessible."
 
-#: ../../include/profile_selectors.php:33
-msgid "Betrayed"
-msgstr "Trahi(e)"
+#: ../../mod/profile_photo.php:281
+msgid "Upload File:"
+msgstr "Fichier&nbsp;:"
 
-#: ../../include/profile_selectors.php:33
-msgid "Separated"
-msgstr "Séparé"
+#: ../../mod/profile_photo.php:282
+msgid "Select a profile:"
+msgstr "Choisir un profil&nbsp;:"
 
-#: ../../include/profile_selectors.php:33
-msgid "Unstable"
-msgstr "Instable"
+#: ../../mod/profile_photo.php:283
+msgid "Upload Profile Photo"
+msgstr "Téléverser une photo de profil"
 
-#: ../../include/profile_selectors.php:33
-msgid "Divorced"
-msgstr "Divorcé"
+#: ../../mod/profile_photo.php:284
+msgid "Upload"
+msgstr "Envoyer"
 
-#: ../../include/profile_selectors.php:33
-msgid "Widowed"
-msgstr "Veuf/Veuve"
+#: ../../mod/profile_photo.php:288
+msgid "skip this step"
+msgstr "passer cette étape"
 
-#: ../../include/profile_selectors.php:33
-msgid "Uncertain"
-msgstr "Incertain"
+#: ../../mod/profile_photo.php:288
+msgid "select a photo from your photo albums"
+msgstr "choisir une photo dans vos albums"
 
-#: ../../include/profile_selectors.php:33
-msgid "Complicated"
-msgstr "Compliqué"
+#: ../../mod/profile_photo.php:302
+msgid "Crop Image"
+msgstr "Recadrer l'image"
 
-#: ../../include/profile_selectors.php:33
-msgid "Don't care"
-msgstr "S'en désintéresse"
+#: ../../mod/profile_photo.php:303
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Merci d'ajuter le cadre pour une visualisation optimale."
 
-#: ../../include/profile_selectors.php:33
-msgid "Ask me"
-msgstr "Me demander"
+#: ../../mod/profile_photo.php:305
+msgid "Done Editing"
+msgstr "J'ai terminé"
 
-#: ../../include/event.php:17 ../../include/bb2diaspora.php:233
-msgid "Starts:"
-msgstr "Débute:"
+#: ../../mod/profile_photo.php:340
+msgid "Image uploaded successfully."
+msgstr "Image téléversée avec succès."
 
-#: ../../include/event.php:27 ../../include/bb2diaspora.php:241
-msgid "Finishes:"
-msgstr "Finit:"
+#: ../../mod/profile_photo.php:342
+msgid "Image upload failed."
+msgstr "Le téléversement a échoué."
 
-#: ../../include/acl_selectors.php:279
-msgid "Visible to everybody"
-msgstr "Visible par tout le monde"
+#: ../../mod/profile_photo.php:351
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "La réduction de taille [%s] a échoué."
 
-#: ../../include/acl_selectors.php:280
-msgid "show"
-msgstr "montrer"
+#: ../../mod/connections.php:191 ../../mod/connections.php:263
+msgid "Blocked"
+msgstr "Bloqué"
 
-#: ../../include/acl_selectors.php:281
-msgid "don't show"
-msgstr "ne pas montrer"
+#: ../../mod/connections.php:196 ../../mod/connections.php:270
+msgid "Ignored"
+msgstr "Ignoré"
 
-#: ../../include/auth.php:27
-msgid "Logged out."
-msgstr "Déconnecté."
+#: ../../mod/connections.php:201 ../../mod/connections.php:284
+msgid "Hidden"
+msgstr "Caché"
 
-#: ../../include/bbcode.php:147
-msgid "Image/photo"
-msgstr "Image/photo"
+#: ../../mod/connections.php:206 ../../mod/connections.php:277
+msgid "Archived"
+msgstr "Archivé"
 
-#: ../../include/poller.php:457
-msgid "From: "
-msgstr "De: "
+#: ../../mod/connections.php:217
+msgid "All"
+msgstr "Tout"
 
-#: ../../include/Contact.php:125 ../../include/conversation.php:675
-msgid "View status"
-msgstr "Voir le statut"
+#: ../../mod/connections.php:241
+msgid "Suggest new connections"
+msgstr "Suggérer de nouvelles relations"
 
-#: ../../include/Contact.php:126 ../../include/conversation.php:676
-msgid "View profile"
-msgstr "Voir le profil"
+#: ../../mod/connections.php:247
+msgid "Show pending (new) connections"
+msgstr "Voir les (nouvelles) relations en attente"
 
-#: ../../include/Contact.php:127 ../../include/conversation.php:677
-msgid "View photos"
-msgstr "Voir les photos"
+#: ../../mod/connections.php:253
+msgid "Show all connections"
+msgstr "Voir toutes les relations"
 
-#: ../../include/Contact.php:128 ../../include/Contact.php:141
-#: ../../include/conversation.php:678
-msgid "View recent"
-msgstr "Voir nouveautés"
+#: ../../mod/connections.php:256
+msgid "Unblocked"
+msgstr "Non bloquées"
 
-#: ../../include/Contact.php:130 ../../include/Contact.php:141
-#: ../../include/conversation.php:680
-msgid "Send PM"
-msgstr "Envoyer message privé"
+#: ../../mod/connections.php:259
+msgid "Only show unblocked connections"
+msgstr "Ne montrer que les relations non-bloquées"
 
-#: ../../include/datetime.php:44 ../../include/datetime.php:46
-msgid "Miscellaneous"
-msgstr "Divers"
+#: ../../mod/connections.php:266
+msgid "Only show blocked connections"
+msgstr "Ne montrer que les relations bloquées"
 
-#: ../../include/datetime.php:105 ../../include/datetime.php:237
-msgid "year"
-msgstr "an"
+#: ../../mod/connections.php:273
+msgid "Only show ignored connections"
+msgstr "Ne montrer que les relations ignorées"
 
-#: ../../include/datetime.php:110 ../../include/datetime.php:238
-msgid "month"
-msgstr "mois"
+#: ../../mod/connections.php:280
+msgid "Only show archived connections"
+msgstr "Ne montrer que les relations archivées"
 
-#: ../../include/datetime.php:115 ../../include/datetime.php:240
-msgid "day"
-msgstr "jour"
+#: ../../mod/connections.php:287
+msgid "Only show hidden connections"
+msgstr "Ne montrer que les relations cachées"
 
-#: ../../include/datetime.php:228
-msgid "never"
-msgstr "jamais"
+#: ../../mod/connections.php:331
+#, php-format
+msgid "%1$s [%2$s]"
+msgstr ""
 
-#: ../../include/datetime.php:234
-msgid "less than a second ago"
-msgstr "il y a moins d'une seconde"
+#: ../../mod/connections.php:332
+msgid "Edit contact"
+msgstr "Éditer contact"
 
-#: ../../include/datetime.php:237
-msgid "years"
-msgstr "ans"
+#: ../../mod/connections.php:355
+msgid "Search your connections"
+msgstr "Chercher parmi vos relations"
 
-#: ../../include/datetime.php:238
-msgid "months"
-msgstr "mois"
+#: ../../mod/connections.php:356
+msgid "Finding: "
+msgstr "Recherche&nbsp;:"
 
-#: ../../include/datetime.php:239
-msgid "week"
-msgstr "semaine"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Identifiant de requête invalide."
 
-#: ../../include/datetime.php:239
-msgid "weeks"
-msgstr "semaines"
+#: ../../mod/notifications.php:35
+msgid "Discard"
+msgstr "Défausser"
 
-#: ../../include/datetime.php:240
-msgid "days"
-msgstr "jours"
+#: ../../mod/notifications.php:93 ../../mod/notify.php:54
+msgid "No more system notifications."
+msgstr "Pas d'autre notification du système."
 
-#: ../../include/datetime.php:241
-msgid "hour"
-msgstr "heure"
+#: ../../mod/notifications.php:97 ../../mod/notify.php:58
+msgid "System Notifications"
+msgstr "Notifications du système"
 
-#: ../../include/datetime.php:241
-msgid "hours"
-msgstr "heures"
+#: ../../mod/blocks.php:65
+msgid "Block Name"
+msgstr "Nom du bloc"
 
-#: ../../include/datetime.php:242
-msgid "minute"
-msgstr "minute"
+#: ../../mod/oexchange.php:23
+msgid "Unable to find your hub."
+msgstr "Impossible de trouver votre instance."
 
-#: ../../include/datetime.php:242
-msgid "minutes"
-msgstr "minutes"
+#: ../../mod/oexchange.php:37
+msgid "Post successful."
+msgstr "Contribution effectuée."
 
-#: ../../include/datetime.php:243
-msgid "second"
-msgstr "seconde"
+#: ../../mod/editwebpage.php:106
+msgid "Edit Webpage"
+msgstr "Éditer page web"
 
-#: ../../include/datetime.php:243
-msgid "seconds"
-msgstr "secondes"
+#: ../../mod/editwebpage.php:116
+msgid "Delete webpage?"
+msgstr "Supprimer la page web?"
 
-#: ../../include/datetime.php:250
-msgid " ago"
-msgstr " auparavant"
+#: ../../mod/editwebpage.php:189
+msgid "Delete Webpage"
+msgstr "Supprimer page web"
 
-#: ../../include/datetime.php:421 ../../include/profile_advanced.php:30
-#: ../../include/items.php:1215
-msgid "Birthday:"
-msgstr "Anniversaire:"
+#: ../../mod/profile.php:64 ../../mod/profile.php:72
+msgid "Access to this profile has been restricted."
+msgstr "L'accès à ce profil a été restreint."
 
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "j F, Y"
+#: ../../mod/poke.php:159
+msgid "Poke/Prod"
+msgstr "Tapoter/Solliciter"
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "j F"
+#: ../../mod/poke.php:160
+msgid "poke, prod or do other things to somebody"
+msgstr "Tapoter, pointer, et autres choses à faire à quelqu'un"
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Age:"
+#: ../../mod/poke.php:161
+msgid "Recipient"
+msgstr "Destinataire"
 
-#: ../../include/profile_advanced.php:49
-msgid "Religion:"
-msgstr "Religion:"
+#: ../../mod/poke.php:162
+msgid "Choose what you wish to do to recipient"
+msgstr "Choisir quoi lui faire"
 
-#: ../../include/profile_advanced.php:51
-msgid "About:"
-msgstr "À propos:"
+#: ../../mod/poke.php:165
+msgid "Make this post private"
+msgstr "Rendre cette contribution privée"
 
-#: ../../include/profile_advanced.php:53
-msgid "Hobbies/Interests:"
-msgstr "Passe-temps/Centres d'intérêt:"
+#: ../../mod/channel.php:85
+msgid "Insufficient permissions.  Request redirected to profile page."
+msgstr "Permissions insuffisantes. Demande redirigée à la page du profil."
 
-#: ../../include/profile_advanced.php:55
-msgid "Contact information and Social Networks:"
-msgstr "Coordonées/Réseaux sociaux:"
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "Indisponible."
 
-#: ../../include/profile_advanced.php:57
-msgid "Musical interests:"
-msgstr "Goûts musicaux:"
+#: ../../mod/community.php:32
+msgid "Community"
+msgstr "Communauté"
 
-#: ../../include/profile_advanced.php:59
-msgid "Books, literature:"
-msgstr "Lectures:"
+#: ../../mod/community.php:63 ../../mod/community.php:88
+msgid "No results."
+msgstr "Aucun résultat."
 
-#: ../../include/profile_advanced.php:61
-msgid "Television:"
-msgstr "Télévision:"
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+msgid "Contact not found."
+msgstr "Contact introuvable."
 
-#: ../../include/profile_advanced.php:63
-msgid "Film/dance/culture/entertainment:"
-msgstr "Cinéma/Danse/Culture/Divertissement:"
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Suggestion d'amitié/relation envoyée."
 
-#: ../../include/profile_advanced.php:65
-msgid "Love/Romance:"
-msgstr "Amour/Romance:"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Suggérer une relation"
 
-#: ../../include/profile_advanced.php:67
-msgid "Work/employment:"
-msgstr "Activité professionnelle/Occupation:"
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Suggérer une relation à %s"
 
-#: ../../include/profile_advanced.php:69
-msgid "School/education:"
-msgstr "Études/Formation:"
+#: ../../mod/editblock.php:86
+msgid "Edit Block"
+msgstr "Éditer bloc"
 
-#: ../../include/text.php:232
-msgid "prev"
-msgstr "précédent"
+#: ../../mod/editblock.php:96
+msgid "Delete block?"
+msgstr "Supprimer le bloc?"
 
-#: ../../include/text.php:234
-msgid "first"
-msgstr "premier"
+#: ../../mod/editblock.php:163
+msgid "Delete Block"
+msgstr "Supprimer bloc"
 
-#: ../../include/text.php:263
-msgid "last"
-msgstr "dernier"
+#: ../../mod/dirprofile.php:114
+msgid "Status: "
+msgstr "État&nbsp;:"
 
-#: ../../include/text.php:266
-msgid "next"
-msgstr "suivant"
+#: ../../mod/dirprofile.php:115
+msgid "Sexual Preference: "
+msgstr "Orientation sexuelle&nbsp;:"
 
-#: ../../include/text.php:546
-msgid "No contacts"
-msgstr "Aucun contact"
+#: ../../mod/dirprofile.php:117
+msgid "Homepage: "
+msgstr "Site web&nbsp;:"
 
-#: ../../include/text.php:555
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d contact"
-msgstr[1] "%d contacts"
+#: ../../mod/dirprofile.php:118
+msgid "Hometown: "
+msgstr "Ville natale&nbsp;:"
 
-#: ../../include/text.php:626 ../../include/nav.php:87
-msgid "Search"
-msgstr "Recherche"
+#: ../../mod/dirprofile.php:120
+msgid "About: "
+msgstr "À propos&nbsp;:"
 
-#: ../../include/text.php:709
-msgid "Monday"
-msgstr "Lundi"
+#: ../../mod/dirprofile.php:168
+msgid "Keywords: "
+msgstr "Mots-clefs&nbsp;:"
 
-#: ../../include/text.php:709
-msgid "Tuesday"
-msgstr "Mardi"
+#: ../../mod/filestorage.php:68
+msgid "Permission Denied."
+msgstr "Permission refusée."
 
-#: ../../include/text.php:709
-msgid "Wednesday"
-msgstr "Mercredi"
+#: ../../mod/filestorage.php:85
+msgid "File not found."
+msgstr "Fichier introuvable."
 
-#: ../../include/text.php:709
-msgid "Thursday"
-msgstr "Jeudi"
+#: ../../mod/filestorage.php:119
+msgid "Edit file permissions"
+msgstr "Éditer les permissions du fichier"
 
-#: ../../include/text.php:709
-msgid "Friday"
-msgstr "Vendredi"
+#: ../../mod/filestorage.php:124 ../../mod/photos.php:603
+#: ../../mod/photos.php:946
+msgid "Permissions"
+msgstr "Permissions"
 
-#: ../../include/text.php:709
-msgid "Saturday"
-msgstr "Samedi"
+#: ../../mod/filestorage.php:126
+msgid "Include all files and sub folders"
+msgstr "Inclure tous fichiers et sous-répertoires"
 
-#: ../../include/text.php:709
-msgid "Sunday"
-msgstr "Dimanche"
+#: ../../mod/filestorage.php:127
+msgid "Return to file list"
+msgstr "Retourner à la liste des fichiers"
 
-#: ../../include/text.php:713
-msgid "January"
-msgstr "Janvier"
+#: ../../mod/filestorage.php:129
+msgid "Copy/paste this code to attach file to a post"
+msgstr "Copiez/collez ce code pour joindre le fichier à une publication"
 
-#: ../../include/text.php:713
-msgid "February"
-msgstr "Février"
+#: ../../mod/filestorage.php:130
+msgid "Copy/paste this URL to link file from a web page"
+msgstr "Copiez/collez cette URL pour lier le fichier depuis une page web"
 
-#: ../../include/text.php:713
-msgid "March"
-msgstr "Mars"
+#: ../../mod/filestorage.php:167
+msgid "Download"
+msgstr "Télécharger"
 
-#: ../../include/text.php:713
-msgid "April"
-msgstr "Avril"
+#: ../../mod/filestorage.php:173
+msgid "Used: "
+msgstr "Utilisé&nbsp;:"
 
-#: ../../include/text.php:713
-msgid "May"
-msgstr "Mai"
+#: ../../mod/filestorage.php:174
+msgid "[directory]"
+msgstr "[répertoire]"
 
-#: ../../include/text.php:713
-msgid "June"
-msgstr "Juin"
+#: ../../mod/filestorage.php:176
+msgid "Limit: "
+msgstr "Limite&nbsp;:"
 
-#: ../../include/text.php:713
-msgid "July"
-msgstr "Juillet"
+#: ../../mod/suggest.php:35
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Pas de suggestions pour l'instant. Si le site est récent, merci de re-tenter dans 24 heures."
 
-#: ../../include/text.php:713
-msgid "August"
-msgstr "Août"
+#: ../../mod/message.php:41
+msgid "Conversation removed."
+msgstr "Conversation supprimée."
 
-#: ../../include/text.php:713
-msgid "September"
-msgstr "Septembre"
+#: ../../mod/message.php:56
+msgid "No messages."
+msgstr "Pas de message."
 
-#: ../../include/text.php:713
-msgid "October"
-msgstr "Octobre"
+#: ../../mod/message.php:74
+msgid "D, d M Y - g:i A"
+msgstr "D d Y - H:i"
 
-#: ../../include/text.php:713
-msgid "November"
-msgstr "Novembre"
+#: ../../mod/pubsites.php:22
+msgid "Public Sites"
+msgstr "Sites publics"
 
-#: ../../include/text.php:713
-msgid "December"
-msgstr "Décembre"
+#: ../../mod/pubsites.php:25
+msgid ""
+"The listed sites allow public registration into the Red Matrix. All sites in"
+" the matrix are interlinked so membership on any of them conveys membership "
+"in the matrix as a whole. Some sites may require subscription or provide "
+"tiered service plans. The provider links <strong>may</strong> provide "
+"additional details."
+msgstr "Les sites listés autorisent l'inscription pour tous. Tous sont liés entre eux, de manière à ce qu'un compte sur un seul d'entre eux soit valable sur l'ensemble de la matrice. Certains sites peuvent demander des frais de souscriptions, ou fournir des forfaits ajustés. Le lien \"fournisseur\" <strong>peut</strong> vous donner des détails supplémentaires."
+
+#: ../../mod/pubsites.php:31
+msgid "Site URL"
+msgstr "URL du site"
+
+#: ../../mod/pubsites.php:31
+msgid "Access Type"
+msgstr "Type d'accès"
+
+#: ../../mod/pubsites.php:31
+msgid "Registration Policy"
+msgstr "Politique d'inscription"
 
-#: ../../include/text.php:783
-msgid "bytes"
-msgstr "octets"
+#: ../../mod/register.php:43
+msgid "Maximum daily site registrations exceeded. Please try again tomorrow."
+msgstr "Nombre d'inscriptions quotidiennes dépassé. Merci de recommencer demain."
 
-#: ../../include/text.php:875
-msgid "Select an alternate language"
-msgstr "Choisir une langue alternative"
+#: ../../mod/register.php:49
+msgid ""
+"Please indicate acceptance of the Terms of Service. Registration failed."
+msgstr "Merci d'indiquer votre adhésion aux Règles du Service. L'inscription a échoué."
 
-#: ../../include/text.php:887
-msgid "default"
-msgstr "défaut"
+#: ../../mod/register.php:77
+msgid "Passwords do not match."
+msgstr "Les mots de passe ne concordent pas."
 
-#: ../../include/nav.php:44
-msgid "End this session"
-msgstr "Mettre fin à cette session"
+#: ../../mod/register.php:105
+msgid ""
+"Registration successful. Please check your email for validation "
+"instructions."
+msgstr "Inscription réussie. Merci de vérifier vos courriels pour valider votre compte."
 
-#: ../../include/nav.php:47 ../../include/nav.php:111
-msgid "Your posts and conversations"
-msgstr "Vos notices et conversations"
+#: ../../mod/register.php:111
+msgid "Your registration is pending approval by the site owner."
+msgstr "Votre inscription est en attente de l'approbation d'un administrateur."
 
-#: ../../include/nav.php:48
-msgid "Your profile page"
-msgstr "Votre page de profil"
+#: ../../mod/register.php:114
+msgid "Your registration can not be processed."
+msgstr "Votre inscription ne peut être traîtée."
 
-#: ../../include/nav.php:49
-msgid "Your photos"
-msgstr "Vos photos"
+#: ../../mod/register.php:147
+msgid "Registration on this site/hub is by approval only."
+msgstr "L'inscription sur cette instance/ce site est soumis à une modération."
 
-#: ../../include/nav.php:50
-msgid "Your events"
-msgstr "Vos événements"
+#: ../../mod/register.php:148
+msgid "<a href=\"pubsites\">Register at another affiliated site/hub</a>"
+msgstr "<a href=\"pubsites\">S'inscrire sur un site/hub affilié</a>"
 
-#: ../../include/nav.php:51
-msgid "Personal notes"
-msgstr "Notes personnelles"
+#: ../../mod/register.php:156
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Ce site a dépassé le nombre de création de compte autorisé par jour. Merci de recommencer demain."
 
-#: ../../include/nav.php:51
-msgid "Your personal photos"
-msgstr "Vos photos personnelles"
+#: ../../mod/register.php:167
+msgid "Terms of Service"
+msgstr "les Règles du Service"
 
-#: ../../include/nav.php:62
-msgid "Sign in"
-msgstr "Se connecter"
+#: ../../mod/register.php:173
+#, php-format
+msgid "I accept the %s for this website"
+msgstr "J'accepte %s de ce site"
 
-#: ../../include/nav.php:73
-msgid "Home Page"
-msgstr "Page d'accueil"
+#: ../../mod/register.php:175
+#, php-format
+msgid "I am over 13 years of age and accept the %s for this website"
+msgstr "J'ai treize (13) ans révolus, et j'accepte %s de ce site"
 
-#: ../../include/nav.php:77
-msgid "Create an account"
-msgstr "Créer un compte"
+#: ../../mod/register.php:194
+msgid "Membership on this site is by invitation only."
+msgstr "L'inscription à ce site se fait uniquement sur invitation."
 
-#: ../../include/nav.php:82
-msgid "Help and documentation"
-msgstr "Aide et documentation"
+#: ../../mod/register.php:195
+msgid "Please enter your invitation code"
+msgstr "Merci de saisir votre code d'invitation"
 
-#: ../../include/nav.php:85
-msgid "Apps"
-msgstr "Applications"
+#: ../../mod/register.php:198
+msgid "Your email address"
+msgstr "Votre adresse de courriel"
 
-#: ../../include/nav.php:85
-msgid "Addon applications, utilities, games"
-msgstr "Applications supplémentaires, utilitaires, jeux"
+#: ../../mod/register.php:199
+msgid "Choose a password"
+msgstr "Choisissez un mot de passe"
 
-#: ../../include/nav.php:87
-msgid "Search site content"
-msgstr "Rechercher dans le contenu du site"
+#: ../../mod/register.php:200
+msgid "Please re-enter your password"
+msgstr "Confirmez-le"
 
-#: ../../include/nav.php:97
-msgid "Conversations on this site"
-msgstr "Conversations ayant cours sur ce site"
+#: ../../mod/regmod.php:12
+msgid "Please login."
+msgstr "Merci de vous connecter."
 
-#: ../../include/nav.php:99
-msgid "Directory"
-msgstr "Annuaire"
+#: ../../mod/removeme.php:49
+msgid "Remove This Channel"
+msgstr "Supprimer ce canal"
 
-#: ../../include/nav.php:99
-msgid "People directory"
-msgstr "Annuaire des utilisateurs"
+#: ../../mod/removeme.php:50
+msgid ""
+"This will completely remove this channel from the network. Once this has "
+"been done it is not recoverable."
+msgstr "Ceci effacera complètement le canal du réseau. Une fois effacé, un canal ne PEUT PAS être récupéré."
 
-#: ../../include/nav.php:109
-msgid "Conversations from your friends"
-msgstr "Conversations de vos amis"
+#: ../../mod/removeme.php:51
+msgid "Please enter your password for verification:"
+msgstr "Merci de re-saisir votre mot de passe pour vérification&nbsp;:"
 
-#: ../../include/nav.php:117
-msgid "Friend Requests"
-msgstr "Demande d'amitié"
+#: ../../mod/removeme.php:52
+msgid "Remove this channel and all its clones from the network"
+msgstr "Supprimer ce canal ainsi que tous ses clones de par le réseau"
 
-#: ../../include/nav.php:122
-msgid "Private mail"
-msgstr "Messages privés"
+#: ../../mod/removeme.php:52
+msgid ""
+"By default only the instance of the channel located on this hub will be "
+"removed from the network"
+msgstr "Par défaut, seule l'instance du canal présente sur ce hub sera supprimée du réseau"
 
-#: ../../include/nav.php:125
-msgid "Manage"
-msgstr "Gérer"
+#: ../../mod/removeme.php:53
+msgid "Remove Channel"
+msgstr "Enlever le canal"
 
-#: ../../include/nav.php:125
-msgid "Manage other pages"
-msgstr "Gérer les autres pages"
+#: ../../mod/photos.php:77
+msgid "Page owner information could not be retrieved."
+msgstr "Impossible d'obtenir des informations sur le propriétaire de la page."
 
-#: ../../include/nav.php:130
-msgid "Manage/edit friends and contacts"
-msgstr "Gérer/éditer les amitiés et contacts"
+#: ../../mod/photos.php:97
+msgid "Album not found."
+msgstr "Album introuvable."
 
-#: ../../include/nav.php:137
-msgid "Admin"
-msgstr "Admin"
+#: ../../mod/photos.php:119 ../../mod/photos.php:668
+msgid "Delete Album"
+msgstr "Supprimer album"
 
-#: ../../include/nav.php:137
-msgid "Site setup and configuration"
-msgstr "Démarrage et configuration du site"
+#: ../../mod/photos.php:159 ../../mod/photos.php:951
+msgid "Delete Photo"
+msgstr "Supprimer photo"
 
-#: ../../include/nav.php:160
-msgid "Nothing new here"
-msgstr "Rien de neuf ici"
+#: ../../mod/photos.php:452
+msgid "No photos selected"
+msgstr "Aucune photo selectionnée"
 
-#: ../../include/conversation.php:210 ../../include/conversation.php:453
-msgid "Select"
-msgstr "Sélectionner"
+#: ../../mod/photos.php:499
+msgid "Access to this item is restricted."
+msgstr "L'accès à l'élément est restreint."
 
-#: ../../include/conversation.php:225 ../../include/conversation.php:550
-#: ../../include/conversation.php:551
+#: ../../mod/photos.php:573
 #, php-format
-msgid "View %s's profile @ %s"
-msgstr "Voir le profil de %s @ %s"
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Vous avez utilisé %1$.2f mégaoctets sur les %2$.2f autorisés pour le stockage des photos."
 
-#: ../../include/conversation.php:234 ../../include/conversation.php:562
+#: ../../mod/photos.php:576
 #, php-format
-msgid "%s from %s"
-msgstr "%s de %s"
+msgid "You have used %1$.2f Mbytes of photo storage."
+msgstr "Vous avez utilisé %1$.2f mégaoctets pour le stockage des photos."
 
-#: ../../include/conversation.php:250
-msgid "View in context"
-msgstr "Voir dans le contexte"
+#: ../../mod/photos.php:595
+msgid "Upload Photos"
+msgstr "Téléverser des photos"
 
-#: ../../include/conversation.php:356
-#, php-format
-msgid "See all %d comments"
-msgstr "Voir les %d commentaires"
+#: ../../mod/photos.php:599 ../../mod/photos.php:663
+msgid "New album name: "
+msgstr "Créer un album&nbsp;:"
 
-#: ../../include/conversation.php:416
-msgid "like"
-msgstr "aime"
+#: ../../mod/photos.php:600
+msgid "or existing album name: "
+msgstr "ou choisir un album existant&nbsp;:"
 
-#: ../../include/conversation.php:417
-msgid "dislike"
-msgstr "n'aime pas"
+#: ../../mod/photos.php:601
+msgid "Do not show a status post for this upload"
+msgstr "Ne pas publier de statut pour cet envoi"
 
-#: ../../include/conversation.php:419
-msgid "Share this"
-msgstr "Partager ça"
+#: ../../mod/photos.php:652 ../../mod/photos.php:674 ../../mod/photos.php:1123
+#: ../../mod/photos.php:1138
+msgid "Contact Photos"
+msgstr "Photos de contact"
 
-#: ../../include/conversation.php:419
-msgid "share"
-msgstr "partager"
+#: ../../mod/photos.php:678
+msgid "Edit Album"
+msgstr "Éditer l'album"
 
-#: ../../include/conversation.php:463
-msgid "add star"
-msgstr "mett en avant"
+#: ../../mod/photos.php:684
+msgid "Show Newest First"
+msgstr "Ordre anté-chronologique"
 
-#: ../../include/conversation.php:464
-msgid "remove star"
-msgstr "ne plus mettre en avant"
+#: ../../mod/photos.php:686
+msgid "Show Oldest First"
+msgstr "Ordre chronologique"
 
-#: ../../include/conversation.php:465
-msgid "toggle star status"
-msgstr "mettre en avant"
+#: ../../mod/photos.php:729 ../../mod/photos.php:1170
+msgid "View Photo"
+msgstr "Voir photo"
 
-#: ../../include/conversation.php:468
-msgid "starred"
-msgstr "mis en avant"
+#: ../../mod/photos.php:775
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Permission refusée. L'accès à cet élément peut avoir été restreint."
 
-#: ../../include/conversation.php:469
-msgid "add tag"
-msgstr "ajouter un tag"
+#: ../../mod/photos.php:777
+msgid "Photo not available"
+msgstr "Photo indisponible"
 
-#: ../../include/conversation.php:552
-msgid "to"
-msgstr "à"
+#: ../../mod/photos.php:837
+msgid "Use as profile photo"
+msgstr "Utiliser comme photo du profil"
 
-#: ../../include/conversation.php:553
-msgid "Wall-to-Wall"
-msgstr "Inter-mur"
+#: ../../mod/photos.php:861
+msgid "View Full Size"
+msgstr "Voir en taille réelle"
 
-#: ../../include/conversation.php:554
-msgid "via Wall-To-Wall:"
-msgstr "en Inter-mur:"
+#: ../../mod/photos.php:935
+msgid "Edit photo"
+msgstr "Éditer photo"
 
-#: ../../include/conversation.php:600
-msgid "Delete Selected Items"
-msgstr "Supprimer les éléments sélectionnés"
+#: ../../mod/photos.php:937
+msgid "Rotate CW (right)"
+msgstr "Rotation horaire (droite)"
 
-#: ../../include/conversation.php:730
-#, php-format
-msgid "%s likes this."
-msgstr "%s aime ça."
+#: ../../mod/photos.php:938
+msgid "Rotate CCW (left)"
+msgstr "Rotation anti-horaire (gauche)"
 
-#: ../../include/conversation.php:730
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s n'aime pas ça."
+#: ../../mod/photos.php:940
+msgid "New album name"
+msgstr "Nouveau nom d'album&nbsp;:"
 
-#: ../../include/conversation.php:734
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this."
-msgstr "<span  %1$s>%2$d personnes</span> aiment ça."
+#: ../../mod/photos.php:943
+msgid "Caption"
+msgstr "Titre/légende"
 
-#: ../../include/conversation.php:736
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this."
-msgstr "<span  %1$s>%2$d personnes</span> n'aiment pas ça."
+#: ../../mod/photos.php:945
+msgid "Add a Tag"
+msgstr "Ajouter une étiquette"
 
-#: ../../include/conversation.php:742
-msgid "and"
-msgstr "et"
+#: ../../mod/photos.php:948
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Exemple&nbsp;: @bob, @Barbara_Jensen, @jim@exemple.com, #Ile_de_France, #marathon"
 
-#: ../../include/conversation.php:745
-#, php-format
-msgid ", and %d other people"
-msgstr ", et %d autres personnes"
+#: ../../mod/photos.php:1101
+msgid "In This Photo:"
+msgstr "Dans cette photo&nbsp;:"
 
-#: ../../include/conversation.php:746
-#, php-format
-msgid "%s like this."
-msgstr "%s aiment ça."
+#: ../../mod/photos.php:1176
+msgid "View Album"
+msgstr "Voir album"
 
-#: ../../include/conversation.php:746
-#, php-format
-msgid "%s don't like this."
-msgstr "%s n'aiment pas ça."
+#: ../../mod/photos.php:1185
+msgid "Recent Photos"
+msgstr "Photos récentes"
 
-#: ../../include/conversation.php:766
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Visible par <strong>tout le monde</strong>"
+#: ../../mod/mood.php:138
+msgid "Mood"
+msgstr "Humeur"
+
+#: ../../mod/mood.php:139
+msgid "Set your current mood and tell your friends"
+msgstr "Indiquez votre humeur du moment à vos amis"
+
+#: ../../mod/ping.php:192
+msgid "sent you a private message"
+msgstr "vous a envoyé un message privé"
+
+#: ../../mod/ping.php:250
+msgid "added your channel"
+msgstr "a ajouté votre canal"
+
+#: ../../mod/ping.php:294
+msgid "posted an event"
+msgstr "a publié un événement"
+
+#: ../../view/theme/redbasic/php/config.php:76
+msgid "Scheme Default"
+msgstr "Schéma de couleur par défaut"
+
+#: ../../view/theme/redbasic/php/config.php:87
+msgid "silver"
+msgstr "argent"
+
+#: ../../view/theme/redbasic/php/config.php:98
+#: ../../view/theme/apw/php/config.php:234
+#: ../../view/theme/blogga/view/theme/blog/config.php:69
+#: ../../view/theme/blogga/php/config.php:69
+msgid "Theme settings"
+msgstr "Réglages du thème"
+
+#: ../../view/theme/redbasic/php/config.php:99
+#: ../../view/theme/apw/php/config.php:235
+msgid "Set scheme"
+msgstr "Définir la palette de couleurs"
+
+#: ../../view/theme/redbasic/php/config.php:100
+msgid "Navigation bar colour"
+msgstr "Couleur de la barre de navigation"
+
+#: ../../view/theme/redbasic/php/config.php:101
+msgid "link colour"
+msgstr "couleur des liens"
+
+#: ../../view/theme/redbasic/php/config.php:102
+msgid "Set font-colour for banner"
+msgstr "Définir la couleur du texte de la bannière"
+
+#: ../../view/theme/redbasic/php/config.php:103
+msgid "Set the background colour"
+msgstr "Définir la couleur d'arrière-plan"
+
+#: ../../view/theme/redbasic/php/config.php:104
+msgid "Set the background image"
+msgstr "Définir l'image d'arrière-plan"
+
+#: ../../view/theme/redbasic/php/config.php:105
+msgid "Set the background colour of items"
+msgstr "Définir la couleur de fond des contributions"
+
+#: ../../view/theme/redbasic/php/config.php:106
+msgid "Set the opacity of items"
+msgstr "Définir l'opacité des contributions"
+
+#: ../../view/theme/redbasic/php/config.php:107
+msgid "Set the basic colour for item icons"
+msgstr "Définir la couleur de base pour les icônes des éléments"
+
+#: ../../view/theme/redbasic/php/config.php:108
+msgid "Set the hover colour for item icons"
+msgstr "Définir la couleur de survol des icônes des éléments"
+
+#: ../../view/theme/redbasic/php/config.php:109
+msgid "Set font-size for the entire application"
+msgstr "Définir la taille de police pour l'application entière"
+
+#: ../../view/theme/redbasic/php/config.php:110
+#: ../../view/theme/apw/php/config.php:236
+msgid "Set font-size for posts and comments"
+msgstr "Définir font-size pour contribution et commentaires"
+
+#: ../../view/theme/redbasic/php/config.php:111
+msgid "Set font-colour for posts and comments"
+msgstr "Définir font-colour pour les contributions et commentaires"
+
+#: ../../view/theme/redbasic/php/config.php:112
+msgid "Set radius of corners"
+msgstr "Définir le rayon des arrondis"
+
+#: ../../view/theme/redbasic/php/config.php:113
+msgid "Set shadow depth of photos"
+msgstr "Définir la profondeur de l'ombre des photos"
+
+#: ../../view/theme/redbasic/php/config.php:114
+msgid "Set maximum width of conversation regions"
+msgstr "Définir la largeur maximale des conversations"
+
+#: ../../view/theme/redbasic/php/config.php:115
+msgid "Set minimum opacity of nav bar - to hide it"
+msgstr "Définir l'opacité minimum du bandeau de navigation - pour le cacher"
+
+#: ../../view/theme/redbasic/php/config.php:116
+msgid "Set size of conversation author photo"
+msgstr "Définir la taille de la photo de l'auteur d'une conversation"
+
+#: ../../view/theme/redbasic/php/config.php:117
+msgid "Set size of followup author photos"
+msgstr "Définir la taille de la photo de l'auteur d'une réponse"
+
+#: ../../view/theme/redbasic/php/config.php:118
+msgid "Sloppy photo albums"
+msgstr "Albums photo \"en biais\""
+
+#: ../../view/theme/redbasic/php/config.php:118
+msgid "Are you a clean desk or a messy desk person?"
+msgstr "Vous êtes plutôt \"bureau bien rangé\" ou \"gros foutoir\"?"
+
+#: ../../view/theme/apw/php/config.php:193
+#: ../../view/theme/apw/php/config.php:211
+msgid "Schema Default"
+msgstr "Palette par défaut"
+
+#: ../../view/theme/apw/php/config.php:194
+msgid "Sans-Serif"
+msgstr "Sans empâtements"
+
+#: ../../view/theme/apw/php/config.php:195
+msgid "Monospace"
+msgstr "Châsse fixe"
 
-#: ../../include/conversation.php:768
-msgid "Please enter a video link/URL:"
-msgstr "Entrez un lien/URL video :"
+#: ../../view/theme/apw/php/config.php:237
+msgid "Set font face"
+msgstr "Définir la fonte"
 
-#: ../../include/conversation.php:769
-msgid "Please enter an audio link/URL:"
-msgstr "Entrez un lien/URL audio :"
+#: ../../view/theme/apw/php/config.php:238
+msgid "Set iconset"
+msgstr "Définir le jeu d'icônes"
 
-#: ../../include/conversation.php:770
-msgid "Tag term:"
-msgstr "Tag : "
+#: ../../view/theme/apw/php/config.php:239
+msgid "Set big shadow size, default 15px 15px 15px"
+msgstr "Définir la taille des grandes ombres, par défaut 15px 15px 15px"
 
-#: ../../include/conversation.php:771
-msgid "Where are you right now?"
-msgstr "Où êtes-vous présentemment?"
+#: ../../view/theme/apw/php/config.php:240
+msgid "Set small shadow size, default 5px 5px 5px"
+msgstr "Définir la taille des petites ombres, par défaut 5px 5px 5px"
 
-#: ../../include/conversation.php:772
-msgid "Enter a title for this item"
-msgstr "Saisissez un titre pour cet élément"
+#: ../../view/theme/apw/php/config.php:241
+msgid "Set shadow colour, default #000"
+msgstr "Définir la couleur des ombres, par défaut #000"
 
-#: ../../include/conversation.php:818
-msgid "Insert video link"
-msgstr "Insérer un lien video"
+#: ../../view/theme/apw/php/config.php:242
+msgid "Set radius size, default 5px"
+msgstr "Définir le rayon des arrondis, par défaut 5px"
 
-#: ../../include/conversation.php:819
-msgid "Insert audio link"
-msgstr "Insérer un lien audio"
+#: ../../view/theme/apw/php/config.php:243
+msgid "Set line-height for posts and comments"
+msgstr "Définir line-height pour contributions et commentaires"
 
-#: ../../include/conversation.php:822
-msgid "Set title"
-msgstr "Définir un titre"
+#: ../../view/theme/apw/php/config.php:244
+msgid "Set background image"
+msgstr "Définir l'image d'arrière-plan"
 
-#: ../../include/bb2diaspora.php:51
-msgid "view full size"
-msgstr "voir en pleine taille"
+#: ../../view/theme/apw/php/config.php:245
+msgid "Set background colour"
+msgstr "Définir la couleur d'arrière-plan"
 
-#: ../../include/bb2diaspora.php:102
-msgid "image/photo"
-msgstr "image/photo"
+#: ../../view/theme/apw/php/config.php:246
+msgid "Set section background image"
+msgstr "Définir l'image d'arrière-plan des sections"
 
-#: ../../include/dba.php:31
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr ""
-"Impossible de localiser les informations DNS pour le serveur de base de "
-"données '%s'"
+#: ../../view/theme/apw/php/config.php:247
+msgid "Set section background colour"
+msgstr "Définir la couleur d'arrière-plan des sections"
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Ajouter un nouveau contact"
+#: ../../view/theme/apw/php/config.php:248
+msgid "Set colour of items - use hex"
+msgstr "Définir la couleur des éléments - en héxadécimal"
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Entrez son adresse ou sa localisation web"
+#: ../../view/theme/apw/php/config.php:249
+msgid "Set colour of links - use hex"
+msgstr "Définir la couleur des liens - en héxadécimal"
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Exemple: bob@example.com, http://example.com/barbara"
+#: ../../view/theme/apw/php/config.php:250
+msgid "Set max-width for items.  Default 400px"
+msgstr "Définir la largeur maximal des éléments. Par défaut, 400px"
 
-#: ../../include/contact_widgets.php:18
-msgid "Invite Friends"
-msgstr "Inviter des amis"
+#: ../../view/theme/apw/php/config.php:251
+msgid "Set min-width for items.  Default 240px"
+msgstr "Définir la largeur minimale des éléments. Par défaut, 240px"
 
-#: ../../include/contact_widgets.php:24
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d invitation disponible"
-msgstr[1] "%d invitations disponibles"
+#: ../../view/theme/apw/php/config.php:252
+msgid "Set the generic content wrapper width.  Default 48%"
+msgstr "Définir la largeur du contenu. Par défaut, 48%"
 
-#: ../../include/contact_widgets.php:30
-msgid "Find People"
-msgstr "Trouver des personnes"
+#: ../../view/theme/apw/php/config.php:253
+msgid "Set colour of fonts - use hex"
+msgstr "Définir la couleur des fontes - en héxadécimal"
 
-#: ../../include/contact_widgets.php:31
-msgid "Enter name or interest"
-msgstr "Entrez un nom ou un centre d'intérêt"
+#: ../../view/theme/apw/php/config.php:254
+msgid "Set background-size element"
+msgstr "Définir background-size pour les éléments"
 
-#: ../../include/contact_widgets.php:32
-msgid "Connect/Follow"
-msgstr "Connecter/Suivre"
+#: ../../view/theme/apw/php/config.php:255
+msgid "Item opacity"
+msgstr "Opacité des éléments"
 
-#: ../../include/contact_widgets.php:33
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Exemples: Robert Morgenstein, Pêche"
+#: ../../view/theme/apw/php/config.php:256
+msgid "Display post previews only"
+msgstr "Afficher seulement l'aperçu des contributions"
 
-#: ../../include/contact_widgets.php:36
-msgid "Similar Interests"
-msgstr "Intérêts similaires"
+#: ../../view/theme/apw/php/config.php:257
+msgid "Display side bar on channel page"
+msgstr "Afficher le panneau latéral sur la page du canal"
 
-#: ../../include/items.php:1829
-msgid "New mail received at "
-msgstr "Nouvel email reçu à "
+#: ../../view/theme/apw/php/config.php:258
+msgid "Colour of the navigation bar"
+msgstr "Couleur de la barre de navigation"
 
-#: ../../include/items.php:2438
-msgid "A new person is sharing with you at "
-msgstr "Une nouvelle personne partage avec vous à "
+#: ../../view/theme/apw/php/config.php:259
+msgid "Item float"
+msgstr "Alignement de l'élément"
 
-#: ../../include/items.php:2438
-msgid "You have a new follower at "
-msgstr "Vous avez un nouvel abonné à "
+#: ../../view/theme/apw/php/config.php:260
+msgid "Left offset of the section element"
+msgstr "Décalage gauche de l'élément section"
 
-#: ../../include/message.php:13
-msgid "[no subject]"
-msgstr "[pas de sujet]"
+#: ../../view/theme/apw/php/config.php:261
+msgid "Right offset of the section element"
+msgstr "Décalage droit de l'élément section"
 
-#: ../../include/group.php:25
-msgid ""
-"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."
-msgstr ""
-"Un groupe supprimé a été recréé. Les permissions existantes "
-"<strong>pourraient</strong> s'appliquer à ce groupe et aux futurs membres. "
-"Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe "
-"sous un autre nom."
+#: ../../view/theme/apw/php/config.php:262
+msgid "Section width"
+msgstr "Largeur de la section"
 
-#: ../../include/group.php:165
-msgid "Create a new group"
-msgstr "Créer un nouveau groupe"
+#: ../../view/theme/apw/php/config.php:263
+msgid "Left offset of the aside"
+msgstr "Décalage gauche du panneau latéral"
 
-#: ../../include/group.php:166
-msgid "Everybody"
-msgstr "Tout le monde"
+#: ../../view/theme/apw/php/config.php:264
+msgid "Right offset of the aside element"
+msgstr "Décalage droit du panneau latéral"
+
+#: ../../view/theme/blogga/view/theme/blog/config.php:47
+#: ../../view/theme/blogga/php/config.php:47
+msgid "None"
+msgstr ""
 
-#: ../../include/diaspora.php:544
-msgid "Sharing notification from Diaspora network"
-msgstr "Notification de partage du réseau Diaspora"
+#: ../../view/theme/blogga/view/theme/blog/config.php:70
+#: ../../view/theme/blogga/php/config.php:70
+msgid "Header image"
+msgstr "Têtière"
 
-#: ../../include/diaspora.php:1527
-msgid "Attachments:"
-msgstr "Pièces jointes : "
+#: ../../view/theme/blogga/view/theme/blog/config.php:71
+#: ../../view/theme/blogga/php/config.php:71
+msgid "Header image only on profile pages"
+msgstr "Têtière seulement sur les profils"
 
-#: ../../include/diaspora.php:1710
+#: ../../boot.php:1232
 #, php-format
-msgid "[Relayed] Comment authored by %s from network %s"
-msgstr "[Relayé] Commentaire de %s sur le réseau %s"
+msgid "Update %s failed. See error logs."
+msgstr "La mise-à-jour %s a échoué. Merci de consulter les journaux d'erreur."
 
-#: ../../include/oembed.php:122
-msgid "Embedded content"
-msgstr "Contenu incorporé"
+#: ../../boot.php:1235
+#, php-format
+msgid "Update Error at %s"
+msgstr "Erreur de mise-à-jour sur %s"
 
-#: ../../include/oembed.php:131
-msgid "Embedding disabled"
-msgstr "Incorporation désactivée"
+#: ../../boot.php:1399
+msgid ""
+"Create an account to access services and applications within the Red Matrix"
+msgstr "Créez un compte pour pouvoir accéder aux services et applications de la Matrice Red"
+
+#: ../../boot.php:1427
+msgid "Password"
+msgstr "Mot de pass"
+
+#: ../../boot.php:1428
+msgid "Remember me"
+msgstr "Se souvenir de moi"
+
+#: ../../boot.php:1433
+msgid "Forgot your password?"
+msgstr "Mot de passe oublié?"
+
+#: ../../boot.php:1498
+msgid "permission denied"
+msgstr "permission refusée"
 
+#: ../../boot.php:1499
+msgid "Got Zot?"
+msgstr "T'as Zot?"
 
+#: ../../boot.php:1899
+msgid "toggle mobile"
+msgstr "(dés)activer mobile"
diff --git a/view/fr/strings.php b/view/fr/strings.php
index e24070ab9..8e491a56a 100644
--- a/view/fr/strings.php
+++ b/view/fr/strings.php
@@ -1,1183 +1,1722 @@
 <?php
 
 function string_plural_select_fr($n){
-	return ($n > 1);
+	return ($n > 1);;
 }
 ;
-$a->strings["Not Found"] = "Non trouvé";
-$a->strings["Page not found."] = "Page introuvable.";
-$a->strings["Permission denied"] = "Permission refusée";
-$a->strings["Permission denied."] = "Permission refusée.";
-$a->strings["Delete this item?"] = "Effacer cet élément?";
-$a->strings["Comment"] = "Commenter";
-$a->strings["Create a New Account"] = "Créer un nouveau compte";
-$a->strings["Register"] = "S'inscrire";
-$a->strings["Logout"] = "Se déconnecter";
+$a->strings["Visible to everybody"] = "Visible par tous";
+$a->strings["show"] = "montrer";
+$a->strings["don't show"] = "cacher";
+$a->strings[" and "] = "et";
+$a->strings["public profile"] = "profil public";
+$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s a changé %2\$s en &ldquo;%3\$s&rdquo;";
+$a->strings["Visit %1\$s's %2\$s"] = "Visiter %1\$s de %2\$s";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s a mis-à-jour %2\$s, modifiant %3\$s.";
+$a->strings["Logout"] = "Déconnexion";
+$a->strings["End this session"] = "Mettre fin à la session";
+$a->strings["Home"] = "Canal";
+$a->strings["Your posts and conversations"] = "Vos publications et conversations";
+$a->strings["View Profile"] = "Voir profil";
+$a->strings["Your profile page"] = "Votre profil";
+$a->strings["Edit Profiles"] = "Éditer profils";
+$a->strings["Manage/Edit profiles"] = "Gérer/éditer profils";
+$a->strings["Photos"] = "Photos";
+$a->strings["Your photos"] = "Vos photos";
+$a->strings["Files"] = "Fichiers";
+$a->strings["Your files"] = "Vos fichiers";
+$a->strings["Chat"] = "Discussion";
+$a->strings["Your chatrooms"] = "Vos salons";
+$a->strings["Events"] = "Événements";
+$a->strings["Your events"] = "Vos événements";
+$a->strings["Bookmarks"] = "Marque-pages";
+$a->strings["Your bookmarks"] = "Vos marque-pages";
+$a->strings["Webpages"] = "Pages web";
+$a->strings["Your webpages"] = "Vos pages web";
 $a->strings["Login"] = "Connexion";
-$a->strings["Nickname or Email address: "] = "Pseudo ou courriel: ";
-$a->strings["Password: "] = "Mot de passe: ";
-$a->strings["OpenID: "] = "OpenID: ";
-$a->strings["Forgot your password?"] = "Mot de passe oublié?";
-$a->strings["Password Reset"] = "Réinitialiser le mot de passe";
-$a->strings["No profile"] = "Aucun profil";
-$a->strings["Edit profile"] = "Editer le profil";
+$a->strings["Sign in"] = "Connexion";
+$a->strings["%s - click to logout"] = "%s - cliquer pour déconnecter";
+$a->strings["Click to authenticate to your home hub"] = "S'authentifier auprès de son hébergement";
+$a->strings["Home Page"] = "Page d'accueil";
+$a->strings["Register"] = "Inscription";
+$a->strings["Create an account"] = "Créer un compte";
+$a->strings["Help"] = "Aide";
+$a->strings["Help and documentation"] = "Aide et documentation";
+$a->strings["Apps"] = "Applications";
+$a->strings["Addon applications, utilities, games"] = "Applications supplémentaires, jeux, utilitaires";
+$a->strings["Search"] = "Recherche";
+$a->strings["Search site content"] = "Recherche parmi le contenu du site";
+$a->strings["Directory"] = "Annuaire";
+$a->strings["Channel Locator"] = "Localisation de canaux";
+$a->strings["Matrix"] = "Matrice";
+$a->strings["Your matrix"] = "Votre matrice";
+$a->strings["Mark all matrix notifications seen"] = "Marquer toutes les notifications de la matrice comme vues";
+$a->strings["Channel Home"] = "Mon canal";
+$a->strings["Channel home"] = "Mon canal";
+$a->strings["Mark all channel notifications seen"] = "Marquer toutes les notifications du canal comme vues";
+$a->strings["Intros"] = "Introductions";
+$a->strings["New Connections"] = "Nouvelles relations";
+$a->strings["Notices"] = "Notifications";
+$a->strings["Notifications"] = "Notifications";
+$a->strings["See all notifications"] = "Voir toutes les notifications";
+$a->strings["Mark all system notifications seen"] = "Marquer toutes les notifications système comme vues";
+$a->strings["Mail"] = "Messages";
+$a->strings["Private mail"] = "Messages privés";
+$a->strings["See all private messages"] = "Voir tous les messages privés";
+$a->strings["Mark all private messages seen"] = "Marquer tous les messages privés comme vus";
+$a->strings["Inbox"] = "Boîte de réception";
+$a->strings["Outbox"] = "Boîte d'envoi";
+$a->strings["New Message"] = "Nouveau message";
+$a->strings["Event Calendar"] = "Calendrier des événements";
+$a->strings["See all events"] = "Voir tous les événements";
+$a->strings["Mark all events seen"] = "Marquer tous les événements comme vus";
+$a->strings["Channel Select"] = "Changer de canal";
+$a->strings["Manage Your Channels"] = "Gérer vos canaux";
+$a->strings["Settings"] = "Réglages";
+$a->strings["Account/Channel Settings"] = "Compte/Canal";
+$a->strings["Connections"] = "Relations";
+$a->strings["Manage/Edit Friends and Connections"] = "Gérer les amis et relations";
+$a->strings["Admin"] = "Admin";
+$a->strings["Site Setup and Configuration"] = "Configuration du site";
+$a->strings["Nothing new here"] = "Rien de neuf ici";
+$a->strings["Please wait..."] = "Merci de patienter...";
+$a->strings["prev"] = "préc.";
+$a->strings["first"] = "premier";
+$a->strings["last"] = "dernier";
+$a->strings["next"] = "suiv.";
+$a->strings["older"] = "plus ancien";
+$a->strings["newer"] = "plus récent";
+$a->strings["No connections"] = "Sans relations";
+$a->strings["%d Connection"] = array(
+	0 => "%d relation",
+	1 => "%d relations",
+);
+$a->strings["View Connections"] = "Voir les relations";
+$a->strings["Save"] = "Sauver";
+$a->strings["poke"] = "tapoter";
+$a->strings["poked"] = "tapoté";
+$a->strings["ping"] = "solliciter";
+$a->strings["pinged"] = "sollicité";
+$a->strings["prod"] = "aiguillonner";
+$a->strings["prodded"] = "aiguillonné";
+$a->strings["slap"] = "baffer";
+$a->strings["slapped"] = "baffé";
+$a->strings["finger"] = "pointer";
+$a->strings["fingered"] = "pointé";
+$a->strings["rebuff"] = "rejetter";
+$a->strings["rebuffed"] = "rejetté";
+$a->strings["happy"] = "bonheur";
+$a->strings["sad"] = "triste";
+$a->strings["mellow"] = "mélancolie";
+$a->strings["tired"] = "fatigue";
+$a->strings["perky"] = "impertinence";
+$a->strings["angry"] = "colère";
+$a->strings["stupified"] = "stupeur";
+$a->strings["puzzled"] = "perplexité";
+$a->strings["interested"] = "intérêt";
+$a->strings["bitter"] = "amertune";
+$a->strings["cheerful"] = "entrain";
+$a->strings["alive"] = "vivacité";
+$a->strings["annoyed"] = "agaçement";
+$a->strings["anxious"] = "anxiété";
+$a->strings["cranky"] = "mauvais poil";
+$a->strings["disturbed"] = "perturbation";
+$a->strings["frustrated"] = "frustration";
+$a->strings["motivated"] = "motivation";
+$a->strings["relaxed"] = "détente";
+$a->strings["surprised"] = "surprise";
+$a->strings["Monday"] = "Lundi";
+$a->strings["Tuesday"] = "Mardi";
+$a->strings["Wednesday"] = "Mercredi";
+$a->strings["Thursday"] = "Jeudi";
+$a->strings["Friday"] = "Vendredi";
+$a->strings["Saturday"] = "Samedi";
+$a->strings["Sunday"] = "Dimanche";
+$a->strings["January"] = "Janvier";
+$a->strings["February"] = "Février";
+$a->strings["March"] = "Mars";
+$a->strings["April"] = "Avril";
+$a->strings["May"] = "Mai";
+$a->strings["June"] = "Juin";
+$a->strings["July"] = "Juillet";
+$a->strings["August"] = "Août";
+$a->strings["September"] = "Septembre";
+$a->strings["October"] = "Octobre";
+$a->strings["November"] = "Novembre";
+$a->strings["December"] = "Décembre";
+$a->strings["unknown.???"] = "inconnu.???";
+$a->strings["bytes"] = "octets";
+$a->strings["remove category"] = "suppr. catégorie";
+$a->strings["remove from file"] = "supprimer du fichier";
+$a->strings["Click to open/close"] = "Cliquer pour ouvrir/fermer";
+$a->strings["link to source"] = "lien vers source";
+$a->strings["Select a page layout: "] = "Choisir une mise en page&nbsp;:";
+$a->strings["default"] = "défaut";
+$a->strings["Page content type: "] = "Type de contenu&nbsp;:";
+$a->strings["Select an alternate language"] = "Choisir une langue alternative";
+$a->strings["photo"] = "photo";
+$a->strings["event"] = "événement";
+$a->strings["status"] = "statut";
+$a->strings["comment"] = "commentaire";
+$a->strings["activity"] = "activité";
+$a->strings["Design"] = "Conception";
+$a->strings["Blocks"] = "Blocs";
+$a->strings["Menus"] = "Menus";
+$a->strings["Layouts"] = "Mises-en-page";
+$a->strings["Pages"] = "Pages";
+$a->strings["Categories"] = "Catégories";
 $a->strings["Connect"] = "Relier";
+$a->strings["Ignore/Hide"] = "Ignorer/Cacher";
+$a->strings["Suggestions"] = "Suggestion";
+$a->strings["See more..."] = "Voir plus...";
+$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Vous avez %1$.0f des %2$.0f relations autorisées.";
+$a->strings["Add New Connection"] = "Ajouter une nouvelle relation";
+$a->strings["Enter the channel address"] = "Adresse du canal";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple&nbsp;: bob@exemple.com, http://exemple.com/barbara";
+$a->strings["Notes"] = "Notes";
+$a->strings["Remove term"] = "Retirer le terme";
+$a->strings["Saved Searches"] = "Recherches sauvées";
+$a->strings["add"] = "ajouter";
+$a->strings["Saved Folders"] = "Dossiers sauvegardés";
+$a->strings["Everything"] = "Tout";
+$a->strings["Archives"] = "Archives";
+$a->strings["Refresh"] = "Actualiser";
+$a->strings["Me"] = "Moi";
+$a->strings["Best Friends"] = "Mes meilleurs amis";
+$a->strings["Friends"] = "Amis";
+$a->strings["Co-workers"] = "Mes collègues";
+$a->strings["Former Friends"] = "Mes anciens amis";
+$a->strings["Acquaintances"] = "Mes accointances";
+$a->strings["Everybody"] = "Tout le monde";
+$a->strings["Account settings"] = "Compte";
+$a->strings["Channel settings"] = "Canal";
+$a->strings["Additional features"] = "Fonc. supplémentaires";
+$a->strings["Feature settings"] = "Fonctionnalités";
+$a->strings["Display settings"] = "Affichage";
+$a->strings["Connected apps"] = "Applications";
+$a->strings["Export channel"] = "Exporter canal";
+$a->strings["Automatic Permissions (Advanced)"] = "Permissions automatiques (avancé)";
+$a->strings["Premium Channel Settings"] = "Canal Premium";
+$a->strings["Channel Sources"] = "Canaux sources";
+$a->strings["Check Mail"] = "Vérifier courriel";
+$a->strings["Chat Rooms"] = "Salons";
+$a->strings["New window"] = "Nouvelle fenêtre";
+$a->strings["Open the selected location in a different window or browser tab"] = "Ouvrir l'emplacement dans une fenêtre (ou un onglet) différent";
+$a->strings["General Features"] = "Fonctionnalités générales";
+$a->strings["Content Expiration"] = "Expiration de contenu";
+$a->strings["Remove posts/comments and/or private messages at a future time"] = "Supprimer les contributions/commentaires et/ou messages privés à un moment futur";
+$a->strings["Multiple Profiles"] = "Profils multiples";
+$a->strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils";
+$a->strings["Web Pages"] = "Pages web";
+$a->strings["Provide managed web pages on your channel"] = "Fournir des pages web, sous votre contrôle, sur votre canal";
+$a->strings["Private Notes"] = "Notes privées";
+$a->strings["Enables a tool to store notes and reminders"] = "Active un outil pour stocker notes et mémos";
+$a->strings["Extended Identity Sharing"] = "Partage d'identité étendue";
+$a->strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "Partage votre identité avec tous les sites web du Monde. Si décoché, l'identité sera seulement partagée avec les sites de la matrice.";
+$a->strings["Expert Mode"] = "Mode expert";
+$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Activer le mode expert pour accéder aux options avancées";
+$a->strings["Premium Channel"] = "Canal Premium";
+$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Vous permet d'appliquer des règles et restrictions aux relations de votre canal";
+$a->strings["Post Composition Features"] = "Fonctionnalités de composition";
+$a->strings["Richtext Editor"] = "Éditeur enrichi";
+$a->strings["Enable richtext editor"] = "Activer l'éditeur de texte enrichi";
+$a->strings["Post Preview"] = "Aperçu avant publication";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Permettre de voir les publications/commentaires avant de les valider";
+$a->strings["Automatically import channel content from other channels or feeds"] = "Importe automatiquement le contenus d'autres canaux ou flux dans le canal en cours";
+$a->strings["Even More Encryption"] = "Encore plus de chiffrement";
+$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permettre le chiffrement - optionnel - du contenu de bout-en-bout au moyen d'un secret partagé";
+$a->strings["Network and Stream Filtering"] = "Filtrage du réseau et des flux";
+$a->strings["Search by Date"] = "Chercher par date";
+$a->strings["Ability to select posts by date ranges"] = "Pouvoir choisir des publications par date";
+$a->strings["Collections Filter"] = "Filtre des collections";
+$a->strings["Enable widget to display Network posts only from selected collections"] = "Activer une boîte qui permet de filtrer les publications du réseau parmi les collections selectionnées";
+$a->strings["Save search terms for re-use"] = "Sauver des termes de recherche pour utilisation ultérieure";
+$a->strings["Network Personal Tab"] = "Onglet \"réseau personnel\"";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Activer un onglet affichant seulement les publications du réseau sur lesquelles vous êtes intervenu";
+$a->strings["Network New Tab"] = "Onglet \"nouveautés réseau\"";
+$a->strings["Enable tab to display all new Network activity"] = "Activer un onglet avec toute activité récente sur le réseau";
+$a->strings["Affinity Tool"] = "Gérer l'affinité";
+$a->strings["Filter stream activity by depth of relationships"] = "Filtrer le flux d'activité en fonction de la profondeur des relations";
+$a->strings["Suggest Channels"] = "Suggérer des canaux";
+$a->strings["Show channel suggestions"] = "Montrer les suggestions de canaux";
+$a->strings["Post/Comment Tools"] = "Gérer les publications/commentaires";
+$a->strings["Edit Sent Posts"] = "Éditer les publications envoyées";
+$a->strings["Edit and correct posts and comments after sending"] = "Permettre d'éditer/corriger les publications/commentaires après envoi";
+$a->strings["Tagging"] = "Marquage";
+$a->strings["Ability to tag existing posts"] = "Permettre de marquer les publications existantes";
+$a->strings["Post Categories"] = "Catégoriser les publications";
+$a->strings["Add categories to your posts"] = "Ajouter des catégories à vos publications";
+$a->strings["Ability to file posts under folders"] = "Permettre de classer les publications dans des dossiers";
+$a->strings["Dislike Posts"] = "Détester une publication";
+$a->strings["Ability to dislike posts/comments"] = "Pouvoir détester les publications/commentaires";
+$a->strings["Star Posts"] = "Mettre en avant les publications";
+$a->strings["Ability to mark special posts with a star indicator"] = "Pouvoir marquer certaines publications d'une étoile";
+$a->strings["Tag Cloud"] = "Nuage de tags";
+$a->strings["Provide a personal tag cloud on your channel page"] = "Afficher un nuage de vos tags sur votre canal";
+$a->strings["Unknown | Not categorised"] = "Inconnu / Non-classé";
+$a->strings["Block immediately"] = "Bloquer directement";
+$a->strings["Shady, spammer, self-marketer"] = "Douteux, spammeur, donne dans l'auto-promotion";
+$a->strings["Known to me, but no opinion"] = "M'est connu, n'ai pas d'opinion à son sujet";
+$a->strings["OK, probably harmless"] = "OK, probablement anodin";
+$a->strings["Reputable, has my trust"] = "Réputé, je lui fais confiance";
+$a->strings["Frequently"] = "Constamment";
+$a->strings["Hourly"] = "Chaque heure";
+$a->strings["Twice daily"] = "Deux fois par jour";
+$a->strings["Daily"] = "Chaque jour";
+$a->strings["Weekly"] = "Chaque semaine";
+$a->strings["Monthly"] = "Chaque mois";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Email"] = "Courriel";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Zot!"] = "Zot!";
+$a->strings["LinkedIn"] = "Linkedin";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Miscellaneous"] = "Divers";
+$a->strings["year"] = "année";
+$a->strings["month"] = "mois";
+$a->strings["day"] = "jour";
+$a->strings["never"] = "jamais";
+$a->strings["less than a second ago"] = "à l'instant";
+$a->strings["years"] = "années";
+$a->strings["months"] = "mois";
+$a->strings["week"] = "semaine";
+$a->strings["weeks"] = "semaines";
+$a->strings["days"] = "jours";
+$a->strings["hour"] = "heure";
+$a->strings["hours"] = "heures";
+$a->strings["minute"] = "minute";
+$a->strings["minutes"] = "minutes";
+$a->strings["second"] = "seconde";
+$a->strings["seconds"] = "secondes";
+$a->strings["%1\$d %2\$s ago"] = "il y a %1\$d %2\$s";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Impossible de trouver les infos DNS du serveur de DB '%s'";
+$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\à G\\hi";
+$a->strings["Starts:"] = "Début&nbsp;:";
+$a->strings["Finishes:"] = "Fin&nbsp;:";
+$a->strings["Location:"] = "Localisation&nbsp;:";
+$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."] = "Un groupe supprimé portant ce nom a été ressuscité. Les permissions liées aux éléments existants <strong>peuvent</strong> s'appliquer au groupe et aux membres futurs. Si ce n'est pas ce que vous attendiez, merci de recréer un nouveau groupe avec un nom différent.";
+$a->strings["Default privacy group for new contacts"] = "Groupe de confidentialité par défaut pour les nouveaux contacts";
+$a->strings["All Channels"] = "Tous canaux";
+$a->strings["edit"] = "éditer";
+$a->strings["Collections"] = "Collections";
+$a->strings["Edit collection"] = "Éditer collection";
+$a->strings["Create a new collection"] = "Créer collection";
+$a->strings["Channels not in any collection"] = "Canaux dans aucune collection";
+$a->strings["Delete this item?"] = "Supprimer cet élément?";
+$a->strings["Comment"] = "Commenter";
+$a->strings["show more"] = "montrer plus";
+$a->strings["show fewer"] = "montrer moins";
+$a->strings["Password too short"] = "Mot de passe trop court";
+$a->strings["Passwords do not match"] = "Les mots de passe ne correspondent pas";
+$a->strings["everybody"] = "tout le monde";
+$a->strings["Secret Passphrase"] = "Phrase de passe secrète";
+$a->strings["Passphrase hint"] = "Indice pour la phrase de passe";
+$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo";
+$a->strings["timeago.suffixAgo"] = "timeago.suffixAgo";
+$a->strings["ago"] = "auparavant";
+$a->strings["from now"] = "de maintenant";
+$a->strings["less than a minute"] = "moins d'une minute";
+$a->strings["about a minute"] = "environ une minute";
+$a->strings["%d minutes"] = "%d minutes";
+$a->strings["about an hour"] = "environ une heure";
+$a->strings["about %d hours"] = "environ %d heures";
+$a->strings["a day"] = "un jour";
+$a->strings["%d days"] = "%d jours";
+$a->strings["about a month"] = "environ un mois";
+$a->strings["%d months"] = "%d mois";
+$a->strings["about a year"] = "environ un an";
+$a->strings["%d years"] = "%d années";
+$a->strings[" "] = "";
+$a->strings["timeago.numbers"] = "timeago.numbers";
+$a->strings["No recipient provided."] = "Pas de destinataire.";
+$a->strings["[no subject]"] = "[sans objet]";
+$a->strings["Unable to determine sender."] = "Impossible de déterminer l'émetteur.";
+$a->strings["Stored post could not be verified."] = "Le message stocké n'a pas pu être vérifié.";
+$a->strings["Profile Photos"] = "Photos du profil";
+$a->strings["Permission denied."] = "Permission refusée.";
+$a->strings["Item was not found."] = "Élément introuvable.";
+$a->strings["No source file."] = "Pas de fichier source.";
+$a->strings["Cannot locate file to replace"] = "Impossible de trouver le fichier à remplacer.";
+$a->strings["Cannot locate file to revise/update"] = "Impossible de trouver le fichier à corriger/mettre-à-jour";
+$a->strings["File exceeds size limit of %d"] = "Le fichier dépasse la taille limite de %d";
+$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Vous avez atteint votre limite de %1$.0f méga-octets autorisés pour le stockage des pièces-jointes";
+$a->strings["File upload failed. Possible system limit or action terminated."] = "Envoi du fichier impossible. Limite système ou action avortée.";
+$a->strings["Stored file could not be verified. Upload failed."] = "Le fichier stocké n'a pu être vérifié. Envoi impossible.";
+$a->strings["Path not available."] = "Chemin non disponible.";
+$a->strings["Empty pathname"] = "Chemin vide";
+$a->strings["duplicate filename or path"] = "doublon de chemin ou de fichier";
+$a->strings["Path not found."] = "Chemin introuvable.";
+$a->strings["mkdir failed."] = "mkdir a échoué.";
+$a->strings["database storage failed."] = "le stockage en BD a échoué";
+$a->strings["Image/photo"] = "Image/photo";
+$a->strings["Encrypted content"] = "Contenu chiffré";
+$a->strings["QR code"] = "QR code";
+$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s a écrit le %2\$s suivant %3\$s";
+$a->strings["post"] = "article";
+$a->strings["$1 wrote:"] = "$1 a écrit&nbsp;:";
+$a->strings["%1\$s's bookmarks"] = "Marque-pages de %1\$s";
+$a->strings["channel"] = "canal";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s déteste %3\$s de %2\$s";
+$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s est désormais relié à %2\$s";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s a tapoté %2\$s";
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s est actuellement %2\$s";
+$a->strings["Select"] = "Sélectionner";
+$a->strings["Delete"] = "Supprimer";
+$a->strings["Message is verified"] = "Message vérifié";
+$a->strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s";
+$a->strings["Categories:"] = "Catégories&nbsp;:";
+$a->strings["Filed under:"] = "Classé sous&nbsp;:";
+$a->strings[" from %s"] = "de %s";
+$a->strings["last edited: %s"] = "dernière édition&nbsp;: %s";
+$a->strings["Expires: %s"] = "Expire&nbsp;: %s";
+$a->strings["View in context"] = "Voir en contexte";
+$a->strings["Please wait"] = "Merci de patienter";
+$a->strings["remove"] = "supprimer";
+$a->strings["Loading..."] = "Chargement...";
+$a->strings["Delete Selected Items"] = "Supprimer les éléments selectionnés";
+$a->strings["View Source"] = "Voir source";
+$a->strings["Follow Thread"] = "Suivre discussion";
+$a->strings["View Status"] = "Voir état";
+$a->strings["View Photos"] = "Voir photos";
+$a->strings["Matrix Activity"] = "Activité de la matrice";
+$a->strings["Edit Contact"] = "Éditer contact";
+$a->strings["Send PM"] = "Message privé";
+$a->strings["Poke"] = "Tapoter";
+$a->strings["%s likes this."] = "%s aime ça.";
+$a->strings["%s doesn't like this."] = "%s déteste ça.";
+$a->strings["<span  %1\$s>%2\$d people</span> like this."] = array(
+	0 => "",
+	1 => "<span %1\$s>%2\$d personne(s)</span> aime(nt) ça.",
+);
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this."] = array(
+	0 => "",
+	1 => "<span %1\$s>%2\$d personne(s)</span> déteste(nt) ça.",
+);
+$a->strings["and"] = "et";
+$a->strings[", and %d other people"] = array(
+	0 => "",
+	1 => ", et %d autre(s) personne(s)",
+);
+$a->strings["%s like this."] = "%s aime ça.";
+$a->strings["%s don't like this."] = "%s déteste ça.";
+$a->strings["Visible to <strong>everybody</strong>"] = "Visible par <strong>tout le monde</strong>";
+$a->strings["Please enter a link URL:"] = "Merci d'entrer l'URL d'un lien&nbsp;:";
+$a->strings["Please enter a video link/URL:"] = "Merci d'entrer l'URL d'une video&nbsp;:";
+$a->strings["Please enter an audio link/URL:"] = "Merci d'entrer l'URL d'un contenu audio&nsbp;:";
+$a->strings["Tag term:"] = "Étiquette&nbsp;:";
+$a->strings["Save to Folder:"] = "Classer dans Dossier&nbsp;:";
+$a->strings["Where are you right now?"] = "Où êtes-vous présentement?";
+$a->strings["Expires YYYY-MM-DD HH:MM"] = "Expire YYYY-MM-DD HH:MM";
+$a->strings["Preview"] = "Aperçu";
+$a->strings["Share"] = "Partager";
+$a->strings["Page link title"] = "Titre de la page liée";
+$a->strings["Upload photo"] = "Téléverser photo";
+$a->strings["upload photo"] = "téléverser photo";
+$a->strings["Attach file"] = "Attacher fichier";
+$a->strings["attach file"] = "attacher fichier";
+$a->strings["Insert web link"] = "Insérer lien web";
+$a->strings["web link"] = "lien web";
+$a->strings["Insert video link"] = "Insérer lien vidéo";
+$a->strings["video link"] = "lien vidéo";
+$a->strings["Insert audio link"] = "Insérer lien audio";
+$a->strings["audio link"] = "lien audio";
+$a->strings["Set your location"] = "Spécifier votre localisation";
+$a->strings["set location"] = "spécifier localisation";
+$a->strings["Clear browser location"] = "Nettoyer la localisation du navigateur";
+$a->strings["clear location"] = "nettoyer localisation";
+$a->strings["Set title"] = "Spécifier le titre";
+$a->strings["Categories (comma-separated list)"] = "Catégories (séparées par des virgules)";
+$a->strings["Permission settings"] = "Permissions";
+$a->strings["permissions"] = "permissions";
+$a->strings["Public post"] = "Contenu public";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Exemple: robert@exemple.com, marie@exemple.com";
+$a->strings["Set expiration date"] = "Définir la date d'expiration";
+$a->strings["Encrypt text"] = "Chiffrer le texte";
+$a->strings["OK"] = "Ok";
+$a->strings["Cancel"] = "Annuler";
+$a->strings["Commented Order"] = "Dans l'ordre des commentaires";
+$a->strings["Sort by Comment Date"] = "Trier par date de dernier commentaire";
+$a->strings["Posted Order"] = "Dans l'ordre des publications";
+$a->strings["Sort by Post Date"] = "Trier par date de publication";
+$a->strings["Personal"] = "Personnel";
+$a->strings["Posts that mention or involve you"] = "Publications qui vous mentionnent ou vous concernent d'une manière ou d'une autre";
+$a->strings["New"] = "Nouveautés";
+$a->strings["Activity Stream - by date"] = "Flux d'activité - par date";
+$a->strings["Starred"] = "Mis en avant";
+$a->strings["Favourite Posts"] = "Publications préférées";
+$a->strings["Spam"] = "Spam";
+$a->strings["Posts flagged as SPAM"] = "Publications marquées comme indésirables";
+$a->strings["Channel"] = "Canal";
+$a->strings["Status Messages and Posts"] = "Messages d'état et contributions";
+$a->strings["About"] = "À propos";
+$a->strings["Profile Details"] = "Détails du profil";
+$a->strings["Photo Albums"] = "Albums photo";
+$a->strings["Files and Storage"] = "Fichiers et Stockage";
+$a->strings["Chatrooms"] = "Salons";
+$a->strings["Events and Calendar"] = "Événements et agenda";
+$a->strings["Saved Bookmarks"] = "Marque-pages sauvegardés";
+$a->strings["Manage Webpages"] = "Gérer les pages web";
+$a->strings["Unable to obtain identity information from database"] = "Impossible d'obtenir les données d'identité depuis la base de données";
+$a->strings["Empty name"] = "Nom vide";
+$a->strings["Name too long"] = "Nom trop long";
+$a->strings["No account identifier"] = "Pas d'identifiant de compte";
+$a->strings["Nickname is required."] = "Un surnom est requis.";
+$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Le surnom contient des caractères interdits, ou est déjà pris sur ce site.";
+$a->strings["Unable to retrieve created identity"] = "Impossible de récupérer l'identité créée";
+$a->strings["Default Profile"] = "Profil par défaut";
+$a->strings["Requested channel is not available."] = "Canal demandé non-disponible.";
+$a->strings[" Sorry, you don't have the permission to view this profile. "] = "Désolé, mais vous n'avez pas l'autorisation de voir ce profil.";
+$a->strings["Requested profile is not available."] = "Profil demandé inaccessible.";
+$a->strings["Change profile photo"] = "Changer la photo du profil";
 $a->strings["Profiles"] = "Profils";
-$a->strings["Manage/edit profiles"] = "Gérer/éditer les profils";
-$a->strings["Change profile photo"] = "Changer de photo de profil";
+$a->strings["Manage/edit profiles"] = "Gérer/éditer profils";
 $a->strings["Create New Profile"] = "Créer un nouveau profil";
+$a->strings["Edit Profile"] = "Éditer profil";
 $a->strings["Profile Image"] = "Image du profil";
 $a->strings["visible to everybody"] = "visible par tous";
-$a->strings["Edit visibility"] = "Changer la visibilité";
-$a->strings["Location:"] = "Localisation:";
-$a->strings["Gender:"] = "Genre:";
-$a->strings["Status:"] = "Statut:";
-$a->strings["Homepage:"] = "Page personnelle:";
-$a->strings["g A l F d"] = "g A | F d";
-$a->strings["F d"] = "F d";
-$a->strings["Birthday Reminders"] = "Rappels d'anniversaires";
-$a->strings["Birthdays this week:"] = "Anniversaires cette semaine:";
+$a->strings["Edit visibility"] = "Éditer la visibilité";
+$a->strings["Gender:"] = "Sexe&nbsp;:";
+$a->strings["Status:"] = "État&nbsp;:";
+$a->strings["Homepage:"] = "Site web&nbsp;:";
+$a->strings["Online Now"] = "Connecté";
+$a->strings["g A l F d"] = "H:i l d F";
+$a->strings["F d"] = "d F";
 $a->strings["[today]"] = "[aujourd'hui]";
+$a->strings["Birthday Reminders"] = "Rappels d'anniversaires";
+$a->strings["Birthdays this week:"] = "Anniversaires cette semaine&nbsp;:";
+$a->strings["[No description]"] = "[Pas de description]";
 $a->strings["Event Reminders"] = "Rappels d'événements";
-$a->strings["Events this week:"] = "Evénements cette semaine:";
-$a->strings["[No description]"] = "[Sans description]";
-$a->strings["Status"] = "Statut";
+$a->strings["Events this week:"] = "Événements cette semaine&nbsp;:";
 $a->strings["Profile"] = "Profil";
-$a->strings["Photos"] = "Photos";
-$a->strings["Events"] = "Evènements";
-$a->strings["Personal Notes"] = "Notes personnelles";
-$a->strings["Welcome back %s"] = "Bienvenue à nouveau, %s";
-$a->strings["Manage Identities and/or Pages"] = "Gérer les identités et/ou les pages";
-$a->strings["(Toggle between different identities or community/group pages which share your account details.)"] = "(Bascule entre les différentes identités ou pages qui se partagent votre compte.)";
-$a->strings["Select an identity to manage: "] = "Choisir une identité à gérer: ";
+$a->strings["Full Name:"] = "Nom complet&nbsp;:";
+$a->strings["j F, Y"] = "j F Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "Date de naissance&nbsp;:";
+$a->strings["Age:"] = "Age&nbsp;:";
+$a->strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s";
+$a->strings["Sexual Preference:"] = "Orientation sexuelle&nbsp;:";
+$a->strings["Hometown:"] = "Ville natale&nbsp;:";
+$a->strings["Tags:"] = "Tags:";
+$a->strings["Political Views:"] = "Opinions politiques&nbsp;:";
+$a->strings["Religion:"] = "Religion&nbsp;:";
+$a->strings["About:"] = "À propos&nbsp;:";
+$a->strings["Hobbies/Interests:"] = "Occupations/Centres d'intérêt&nbsp;:";
+$a->strings["Likes:"] = "Aime&nbsp;:";
+$a->strings["Dislikes:"] = "N'aime pas&nbsp;:";
+$a->strings["Contact information and Social Networks:"] = "Coordonnées et réseaux sociaux&nbsp;:";
+$a->strings["My other channels:"] = "Mes autres canaux&nbsp;:";
+$a->strings["Musical interests:"] = "Goûts musicaux&nbsp;:";
+$a->strings["Books, literature:"] = "Lectures, goûts littéraires&nbsp;:";
+$a->strings["Television:"] = "Télévision&nbsp;:";
+$a->strings["Film/dance/culture/entertainment:"] = "Cinéma/danse/culture/divertissement&nsbp;:";
+$a->strings["Love/Romance:"] = "Vie sentimentale/amoureuse&nbsp;:";
+$a->strings["Work/employment:"] = "Travail&nbsp;:";
+$a->strings["School/education:"] = "Cursus&nbsp;:";
+$a->strings["Private Message"] = "Message Privé";
+$a->strings["Edit"] = "Éditer";
+$a->strings["save to folder"] = "classer dans un dossier";
+$a->strings["add star"] = "mettre en avant";
+$a->strings["remove star"] = "ne plus mettre en avant";
+$a->strings["toggle star status"] = "(dé)marquer";
+$a->strings["starred"] = "mis en avant";
+$a->strings["add tag"] = "étiquetter";
+$a->strings["I like this (toggle)"] = "J'aime (oui/non)";
+$a->strings["like"] = "aime";
+$a->strings["I don't like this (toggle)"] = "Je déteste (oui/non)";
+$a->strings["dislike"] = "déteste";
+$a->strings["Share this"] = "Partager ça";
+$a->strings["share"] = "partage";
+$a->strings["View %s's profile - %s"] = "Voir le profil de %s - %s";
+$a->strings["to"] = "à";
+$a->strings["via"] = "via";
+$a->strings["Wall-to-Wall"] = "Mur-mur";
+$a->strings["via Wall-To-Wall:"] = "par Mur-mur&nbsp;:";
+$a->strings["Bookmark Links"] = "";
+$a->strings["%d comment"] = array(
+	0 => "%d commentaire",
+	1 => "%d commentaires",
+);
+$a->strings["This is you"] = "C'est vous";
 $a->strings["Submit"] = "Envoyer";
-$a->strings["People Search"] = "Recherche de personnes";
-$a->strings["No matches"] = "Aucune correspondance";
-$a->strings["Image exceeds size limit of %d"] = "L'image dépasse la taille limite de %d";
-$a->strings["Unable to process image."] = "Impossible de traiter l'image.";
-$a->strings["Wall Photos"] = "Photos du mur";
-$a->strings["Image upload failed."] = "Le téléversement de l'image a échoué.";
-$a->strings["Access to this profile has been restricted."] = "L'accès au profil a été restreint.";
-$a->strings["Tips for New Members"] = "Conseils aux nouveaux";
-$a->strings["Disallowed profile URL."] = "URL de profil interdite.";
-$a->strings["This site is not configured to allow communications with other networks."] = "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Aucun protocole de communication ni aucun flux n'a pu être découvert.";
-$a->strings["The profile address specified does not provide adequate information."] = "L'adresse de profil indiquée ne fournit par les informations adéquates.";
-$a->strings["An author or name was not found."] = "Aucun auteur ou nom d'auteur n'a pu être trouvé.";
-$a->strings["No browser URL could be matched to this address."] = "Aucune URL de navigation ne correspond à cette adresse.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part.";
-$a->strings["Unable to retrieve contact information."] = "Impossible de récupérer les informations du contact.";
-$a->strings["following"] = "following";
-$a->strings["Image uploaded but image cropping failed."] = "Image envoyée, mais impossible de la retailler.";
-$a->strings["Profile Photos"] = "Photos du profil";
-$a->strings["Image size reduction [%s] failed."] = "Réduction de la taille de l'image [%s] échouée.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement.";
-$a->strings["Unable to process image"] = "Impossible de traiter l'image";
-$a->strings["Upload File:"] = "Fichier à téléverser:";
-$a->strings["Upload Profile Photo"] = "Téléverser une photo de profil";
-$a->strings["Upload"] = "Téléverser";
-$a->strings["or"] = "ou";
-$a->strings["skip this step"] = "ignorer cette étape";
-$a->strings["select a photo from your photo albums"] = "choisissez une photo depuis vos albums";
-$a->strings["Crop Image"] = "(Re)cadrer l'image";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Ajustez le cadre de l'image pour une visualisation optimale.";
-$a->strings["Done Editing"] = "Édition terminée";
-$a->strings["Image uploaded successfully."] = "Image téléversée avec succès.";
-$a->strings["Welcome to %s"] = "Bienvenue sur %s";
-$a->strings["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]";
-$a->strings["File exceeds size limit of %d"] = "La taille du fichier dépasse la limite de %d";
-$a->strings["File upload failed."] = "Le téléversement a échoué.";
-$a->strings["Friend Suggestions"] = "Suggestions d'amitiés/contacts";
-$a->strings["No suggestions. This works best when you have more than one contact/friend."] = "Pas de suggestion. Ceci fonctionne mieux quand vous avez plus d'un ami/contact.";
-$a->strings["Ignore/Hide"] = "Ignorer/cacher";
-$a->strings["Registration details for %s"] = "Détails d'inscription pour %s";
+$a->strings["Bold"] = "Gras";
+$a->strings["Italic"] = "Italique";
+$a->strings["Underline"] = "Souligné";
+$a->strings["Quote"] = "Citation";
+$a->strings["Code"] = "Code";
+$a->strings["Image"] = "Image";
+$a->strings["Link"] = "Lien/URL";
+$a->strings["Video"] = "Vidéo";
+$a->strings["Public Timeline"] = "Fil public";
+$a->strings["view full size"] = "pleine taille";
+$a->strings["created a new post"] = "a publié";
+$a->strings["commented on %s's post"] = "a commenté la publication de %s";
+$a->strings["Male"] = "Mâle";
+$a->strings["Female"] = "Femelle";
+$a->strings["Currently Male"] = "Actuellement mâle";
+$a->strings["Currently Female"] = "Actuellement femelle";
+$a->strings["Mostly Male"] = "Surtout mâle";
+$a->strings["Mostly Female"] = "Surtotu femelle";
+$a->strings["Transgender"] = "Transgenre";
+$a->strings["Intersex"] = "Intersexuel";
+$a->strings["Transsexual"] = "Transsexuel";
+$a->strings["Hermaphrodite"] = "Hermaphrodite";
+$a->strings["Neuter"] = "Neutre";
+$a->strings["Non-specific"] = "Rien de spécifique";
+$a->strings["Other"] = "Autre";
+$a->strings["Undecided"] = "Indécis";
+$a->strings["Males"] = "Hommes";
+$a->strings["Females"] = "Femmes";
+$a->strings["Gay"] = "Gay";
+$a->strings["Lesbian"] = "Lesbienne";
+$a->strings["No Preference"] = "Sans préférence";
+$a->strings["Bisexual"] = "Bisexuel";
+$a->strings["Autosexual"] = "Autosexuel";
+$a->strings["Abstinent"] = "Abstinent";
+$a->strings["Virgin"] = "Vierge";
+$a->strings["Deviant"] = "Déviant";
+$a->strings["Fetish"] = "Fétichiste";
+$a->strings["Oodles"] = "Une floppée";
+$a->strings["Nonsexual"] = "Nonsexuel";
+$a->strings["Single"] = "Célibataire";
+$a->strings["Lonely"] = "Esseulé";
+$a->strings["Available"] = "Disponible";
+$a->strings["Unavailable"] = "Indisponible";
+$a->strings["Has crush"] = "A un béguin";
+$a->strings["Infatuated"] = "Amoureux transi";
+$a->strings["Dating"] = "Sort avec quelqu'un";
+$a->strings["Unfaithful"] = "Infidèle";
+$a->strings["Sex Addict"] = "Accro au sexe";
+$a->strings["Friends/Benefits"] = "Amis avec bénéfices";
+$a->strings["Casual"] = "Sans engagement";
+$a->strings["Engaged"] = "Fiancé(e)";
+$a->strings["Married"] = "Marrié(e)";
+$a->strings["Imaginarily married"] = "Marié(e) dans ses rêves";
+$a->strings["Partners"] = "Partenaires";
+$a->strings["Cohabiting"] = "En cohabitation";
+$a->strings["Common law"] = "Conjoints de fait";
+$a->strings["Happy"] = "Heureux";
+$a->strings["Not looking"] = "Pas en recherche";
+$a->strings["Swinger"] = "Infidèle";
+$a->strings["Betrayed"] = "Trahi(e)";
+$a->strings["Separated"] = "Séparé(e)";
+$a->strings["Unstable"] = "Instable";
+$a->strings["Divorced"] = "Divorcé(e)";
+$a->strings["Imaginarily divorced"] = "Divorcé(e) dans ses rêves";
+$a->strings["Widowed"] = "Veuf/veuve";
+$a->strings["Uncertain"] = "Incertain";
+$a->strings["It's complicated"] = "C'est compliqué";
+$a->strings["Don't care"] = "S'en fiche";
+$a->strings["Ask me"] = "Me demander";
+$a->strings["Missing room name"] = "Il manque le nom du salon";
+$a->strings["Duplicate room name"] = "Un salon de ce nom existe déjà";
+$a->strings["Invalid room specifier."] = "Identifiant de salon invalide.";
+$a->strings["Room not found."] = "Salon introuvable.";
+$a->strings["Room is full"] = "Le salon est plein";
+$a->strings["Tags"] = "Étiquettes";
+$a->strings["Keywords"] = "Mots-clefs";
+$a->strings["have"] = "ont";
+$a->strings["has"] = "a";
+$a->strings["want"] = "veulent";
+$a->strings["wants"] = "veut";
+$a->strings["likes"] = "aime";
+$a->strings["dislikes"] = "déteste";
+$a->strings["Logged out."] = "Deconnecté.";
+$a->strings["Failed authentication"] = "Échec de l'authentification";
+$a->strings["Login failed."] = "Échec de la connexion.";
+$a->strings["Not a valid email address"] = "Ce n'est pas une adresse de courriel valide";
+$a->strings["Your email domain is not among those allowed on this site"] = "Votre domaine de courriel ne fait pas partie de ceux autorisés par ce site";
+$a->strings["Your email address is already registered at this site."] = "Votre adresse de courriel est déjà inscrite sur ce site.";
+$a->strings["An invitation is required."] = "Une invitation est requise.";
+$a->strings["Invitation could not be verified."] = "Votre invitation n'a pas pu être vérifiée.";
+$a->strings["Please enter the required information."] = "Merci d'entrer les informations requises.";
+$a->strings["Failed to store account information."] = "Impossible de stocker les informations liées au compte.";
+$a->strings["Registration request at %s"] = "Demande d'inscription sur %s";
 $a->strings["Administrator"] = "Administrateur";
-$a->strings["Account approved."] = "Inscription validée.";
+$a->strings["your registration password"] = "votre mot de passe d'inscription";
+$a->strings["Registration details for %s"] = "Détails de l'inscription à %s";
+$a->strings["Account approved."] = "Compte approuvé.";
 $a->strings["Registration revoked for %s"] = "Inscription révoquée pour %s";
-$a->strings["Please login."] = "Merci de vous connecter.";
-$a->strings["Profile not found."] = "Profil introuvable.";
-$a->strings["Profile Name is required."] = "Le nom du profil est requis.";
-$a->strings["Profile updated."] = "Profil mis à jour.";
-$a->strings["Profile deleted."] = "Profil supprimé.";
-$a->strings["Profile-"] = "Profil-";
-$a->strings["New profile created."] = "Nouveau profil créé.";
-$a->strings["Profile unavailable to clone."] = "Ce profil ne peut être cloné.";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Cacher ma liste d'amis/contacts des visiteurs de ce profil?";
+$a->strings["Sort Options"] = "Options de tri";
+$a->strings["Alphabetic"] = "Alphabétique";
+$a->strings["Reverse Alphabetic"] = "Alphabétique inversé";
+$a->strings["Newest to Oldest"] = "Anté-chronologique";
+$a->strings["Enable Safe Search"] = "Activer la recherche sûre";
+$a->strings["Disable Safe Search"] = "Désactiver la recherche sûre";
+$a->strings["Safe Mode"] = "Mode sûr";
+$a->strings["Red Matrix Notification"] = "Notification Red Matrix";
+$a->strings["redmatrix"] = "redmatrix";
+$a->strings["Thank You,"] = "Merci,";
+$a->strings["%s Administrator"] = "l'administrateur de %s";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Notification] Nouveau message reçu sur %s";
+$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, vous avez reçu un message privé sur %3\$s, de la part de %2\$s.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s vous a envoyé %2\$s.";
+$a->strings["a private message"] = "un message privé";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Merci de visiter %s pour voir et/ou répondre à vos messages privés.";
+$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "";
+$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "";
+$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "";
+$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notification] Commentaire de %2\$s sur conversation #%1\$d";
+$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Merci de visiter %s pour voir et/ou répondre sur cette conversation.";
+$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Notification] %s a publié sur votre profil";
+$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "";
+$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "";
+$a->strings["[Red:Notify] %s tagged you"] = "[Red:Notification] %s vous a marqué";
+$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, vous avez été étiqueté sur %3\$s par %2\$s";
+$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "";
+$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Notification] %1\$s vous a tapoté";
+$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, vous avez été tapoté/pointé/sollicité par %2\$s sur %3\$s";
+$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "";
+$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Notification] %s a marqué votre publication";
+$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "";
+$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "";
+$a->strings["[Red:Notify] Introduction received"] = "[Red:Notification] Nouvelle introduction";
+$a->strings["%1\$s, you've received an introduction from '%2\$s' at %3\$s"] = "";
+$a->strings["%1\$s, you've received [zrl=%2\$s]an introduction[/zrl] from %3\$s."] = "";
+$a->strings["You may visit their profile at %s"] = "Vous pouvez visiter leur profil sur %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Merci de visiter %s avant d'approuver (ou non) son introduction.";
+$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Notification] Nouvelle suggestion d'amitié";
+$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "";
+$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "";
+$a->strings["Name:"] = "Nom&nbsp;:";
+$a->strings["Photo:"] = "Photo&nbsp;:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Merci de visiter %s pour donner suite (ou non) à cette suggestion.";
+$a->strings["Image exceeds website size limit of %lu bytes"] = "L'image dépasse la taille limite de %lu octets";
+$a->strings["Image file is empty."] = "L'image est vide.";
+$a->strings["Unable to process image"] = "Impossible de traiter l'image";
+$a->strings["Photo storage failed."] = "Le stockage de l'image a échoué.";
+$a->strings["Upload New Photos"] = "Ajouter des photos";
+$a->strings["Edit File properties"] = "Éditer les propriétés du fichier";
+$a->strings["%d invitation available"] = array(
+	0 => "%d invitation disponible",
+	1 => "%d invitations disponibles",
+);
+$a->strings["Find Channels"] = "Trouver des canaux";
+$a->strings["Enter name or interest"] = "Saisir nom ou centre d'intérêt";
+$a->strings["Connect/Follow"] = "Relier/Suivre";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Robert Morgenstein, Course à pieds";
+$a->strings["Find"] = "Trouver";
+$a->strings["Channel Suggestions"] = "Canaux suggérés";
+$a->strings["Random Profile"] = "Un profil au hasard";
+$a->strings["Invite Friends"] = "Inviter des amis";
+$a->strings["%d connection in common"] = array(
+	0 => "%d relation en commun",
+	1 => "%d relations en commun",
+);
+$a->strings["New Page"] = "Nouvelle page";
+$a->strings["Click here to upgrade."] = "Cliquez ici pour mettre à jour.";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Cette action outrepasserait les limites prévues par votre forfait.";
+$a->strings["This action is not available under your subscription plan."] = "Cette action n'est pas possible avec la formule choisie.";
+$a->strings["Channel is blocked on this site."] = "Ce canal est bloqué sur ce site.";
+$a->strings["Channel location missing."] = "Localisation du canal manquante.";
+$a->strings["Channel discovery failed. Website may be down or misconfigured."] = "Découverte du canal impossible. Le site est peut-être en dérangement ou mal configuré.";
+$a->strings["Response from remote channel was not understood."] = "La réponse du canal distant n'a pas été comprise.";
+$a->strings["Response from remote channel was incomplete."] = "La réponse du canal distant était incomplète.";
+$a->strings["local account not found."] = "compte local introuvable.";
+$a->strings["Cannot connect to yourself."] = "Ne peut pas se connecter à vous.";
+$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."] = "Le formulaire n'est plus sécurisé, probablement parce qu'il est ouvert depuis trop longtemps (plus de 3 heures).";
+$a->strings["Default"] = "Défaut";
+$a->strings["Embedded content"] = "Contenu imbriqué";
+$a->strings["Embedding disabled"] = "Imbrication désactivée";
+$a->strings["Can view my \"public\" stream and posts"] = "Peut voir mon flux et mes publications \"publiques\"";
+$a->strings["Can view my \"public\" channel profile"] = "Peut voir mon le canal \"public\" de mon profil";
+$a->strings["Can view my \"public\" photo albums"] = "Peut voir mes albums photos \"publics\"";
+$a->strings["Can view my \"public\" address book"] = "Peut voir mes contacts \"publics\"";
+$a->strings["Can view my \"public\" file storage"] = "Peut voir mes fichiers \"publics\"";
+$a->strings["Can view my \"public\" pages"] = "Peut voir mes pages \"publiques\"";
+$a->strings["Can send me their channel stream and posts"] = "Peut m'envoyer le flux et les publications de leur canal";
+$a->strings["Can post on my channel page (\"wall\")"] = "Peut poster sur la page de mon canal (\"mur\")";
+$a->strings["Can comment on my posts"] = "Peut commenter mes publications";
+$a->strings["Can send me private mail messages"] = "Peut m'envoyer des messages privés";
+$a->strings["Can post photos to my photo albums"] = "Peut ajouter des photos à mes albums";
+$a->strings["Can forward to all my channel contacts via post @mentions"] = "Peut faire suivre à tous les contacts du mon canal via @truc";
+$a->strings["Advanced - useful for creating group forum channels"] = "Avancé - utile seulement pour les canaux de type \"forum/groupe\"";
+$a->strings["Can chat with me (when available)"] = "Peut discuter avec moi (sous réserve de disponibilité)";
+$a->strings["Can write to my \"public\" file storage"] = "Peut écrire dans mon stockage \"public\" de fichiers";
+$a->strings["Can edit my \"public\" pages"] = "Peut éditer mes pages \"publiques\"";
+$a->strings["Can source my \"public\" posts in derived channels"] = "Peut utiliser mes contributions \"publiques\" comme source de canaux dérivés";
+$a->strings["Somewhat advanced - very useful in open communities"] = "Plutôt avancé - très utile dans les communautés ouvertes";
+$a->strings["Can send me bookmarks"] = "Peut m'envoyer des marque-pages";
+$a->strings["Can administer my channel resources"] = "Peut administrer les ressources de mon canal";
+$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Très avancé. Ne pas toucher, sauf si vous savez VRAIMENT ce que vous faites";
+$a->strings["Permission denied"] = "Accès refusé";
+$a->strings["Item not found."] = "Élément introuvable.";
+$a->strings["Collection not found."] = "Collection introuvable.";
+$a->strings["Collection is empty."] = "Collection vide.";
+$a->strings["Collection: %s"] = "Collection&nbsp;: %s";
+$a->strings["Connection: %s"] = "Relation&nbsp;: %s";
+$a->strings["Connection not found."] = "Relation introuvable.";
+$a->strings["Invalid data packet"] = "Paquet de données invalide";
+$a->strings["Unable to verify channel signature"] = "Impossible de vérifier la signature du canal";
+$a->strings["Unable to verify site signature for %s"] = "Impossible de vérifier la signature de site pour %s";
+$a->strings["No channel."] = "Pas de canal.";
+$a->strings["Common connections"] = "Relations communes";
+$a->strings["No connections in common."] = "Pas de relations en commun.";
+$a->strings["Event title and start time are required."] = "Un titre et une date de début sont requises pour l'événement.";
+$a->strings["l, F j"] = "l j F";
+$a->strings["Edit event"] = "Éditer événement";
+$a->strings["Create New Event"] = "Créer événement";
+$a->strings["Previous"] = "Précédent";
+$a->strings["Next"] = "Suivant";
+$a->strings["hour:minute"] = "heure:minute";
+$a->strings["Event details"] = "Détails de l'événement";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "Le format est %s %s. Date de début et titre obligatoires.";
+$a->strings["Event Starts:"] = "L'événement débute&nbsp;:";
+$a->strings["Required"] = "Requis";
+$a->strings["Finish date/time is not known or not relevant"] = "Date/heure de fin inconnue ou sans objet";
+$a->strings["Event Finishes:"] = "L'événement termine&nbsp;:";
+$a->strings["Adjust for viewer timezone"] = "Ajuster au fuseau horaire du visiteur";
+$a->strings["Description:"] = "Description:";
+$a->strings["Title:"] = "Titre:";
+$a->strings["Share this event"] = "Partager cet événement";
+$a->strings["Thing updated"] = "Chose mise-à-jour";
+$a->strings["Object store: failed"] = "Stockage de l'objet&nbsp;: échec";
+$a->strings["Thing added"] = "Chose ajoutée";
+$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s";
+$a->strings["Show Thing"] = "Montrer chose";
+$a->strings["item not found."] = "élément introuvable.";
+$a->strings["Edit Thing"] = "Éditer chose";
+$a->strings["Select a profile"] = "Choisissez un profil";
+$a->strings["Select a category of stuff. e.g. I ______ something"] = "Choisissez une catégorie de choses. p.ex. Je ______ quelque-chose";
+$a->strings["Name of thing e.g. something"] = "Nom de la chose, p.ex. quelque-chose";
+$a->strings["URL of thing (optional)"] = "URL de la chose (optionnel)";
+$a->strings["URL for photo of thing (optional)"] = "URL de l'image de la chose (optionnel)";
+$a->strings["Add Thing to your Profile"] = "Ajouter la chose à votre profil";
+$a->strings["Total invitation limit exceeded."] = "Limite du nombre total d'invitation dépassée.";
+$a->strings["%s : Not a valid email address."] = "%s&nbsp: adresse courriel invalide.";
+$a->strings["Please join us on Red"] = "Rejoignez-nous sur Red";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite d'invitations dépassée. Merci de contacter l'administration de votre site.";
+$a->strings["%s : Message delivery failed."] = "%s&nbsp;: Échec dans la livraison du message.";
+$a->strings["%d message sent."] = array(
+	0 => "%d message envoyé.",
+	1 => "%d messages envoyés.",
+);
+$a->strings["You have no more invitations available"] = "Vous ne disposez plus d'aucune invitation";
+$a->strings["Send invitations"] = "Envoyer des invitations";
+$a->strings["Enter email addresses, one per line:"] = "Entrez les adresses de courriel, une par ligne&nbsp;:";
+$a->strings["Your message:"] = "Votre message&nbsp;:";
+$a->strings["You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralised communication and information tool."] = "Vous êtes cordialement invité à me rejoindre, ainsi que d'autres amis proches, sur la Matrice Red - un nouvel outil de communication acentré/décentralisé et révolutionnaire.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Vous devrez fournir ce code d'invitation&nbsp;: \$invite_code";
+$a->strings["Please visit my channel at"] = "Merci de me rendre visite sur";
+$a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "Une fois inscrit (sur N'IMPORTE QUEL site Red Matrix - ils sont tous inter-connectés), merci de vous relier à l'adresse de mon canal&nbsp;:";
+$a->strings["Click the [Register] link on the following page to join."] = "Cliquez le lien [Inscription] sur la page suivante pour nous rejoindre.";
+$a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "Pour plus d'information sur le projet Red Matrix, et sa capacité à remodeler Internet, merci de visiter http://getzot.com";
+$a->strings["Unable to locate original post."] = "Impossible de localiser la publication initiale.";
+$a->strings["Empty post discarded."] = "Publication vide défaussée.";
+$a->strings["Executable content type not permitted to this channel."] = "Les contenus de type 'exécutable' ne sont pas autorisés sur ce canal.";
+$a->strings["System error. Post not saved."] = "Erreur système. Publication non sauvegardée.";
+$a->strings["Wall Photos"] = "Photos du mur";
+$a->strings["You have reached your limit of %1$.0f top level posts."] = "Vous avez atteint votre limite de %1$.0f contributions \"racine\".";
+$a->strings["You have reached your limit of %1$.0f webpages."] = "Vous avez atteint votre limite de %1$.0f pages web.";
+$a->strings["Menu updated."] = "Menu mis à jour.";
+$a->strings["Unable to update menu."] = "Impossible de mettre le menu à jour.";
+$a->strings["Menu created."] = "Menu créé.";
+$a->strings["Unable to create menu."] = "Impossible de créer le menu.";
+$a->strings["Manage Menus"] = "Gérer les menus";
+$a->strings["Drop"] = "Supprimer";
+$a->strings["Create a new menu"] = "Créer un nouveau menu";
+$a->strings["Delete this menu"] = "Supprimer ce menu";
+$a->strings["Edit menu contents"] = "Éditer le contenu du menu";
+$a->strings["Edit this menu"] = "Éditer le menu";
+$a->strings["New Menu"] = "Nouveau menu";
+$a->strings["Menu name"] = "Nom du menu";
+$a->strings["Must be unique, only seen by you"] = "Doit être unique, ne sera vu que par vous";
+$a->strings["Menu title"] = "Titre du menu";
+$a->strings["Menu title as seen by others"] = "Titre du menu tel que vu par les visiteurs";
+$a->strings["Allow bookmarks"] = "Autoriser les marque-pages";
+$a->strings["Menu may be used to store saved bookmarks"] = "Le menu pourra être utilisé pour stocker des marque-pages";
+$a->strings["Create"] = "Créer";
+$a->strings["Menu not found."] = "Menu introuvable.";
+$a->strings["Menu deleted."] = "Menu supprimé.";
+$a->strings["Menu could not be deleted."] = "Impossible de supprimer le menu.";
+$a->strings["Edit Menu"] = "Éditer le menu";
+$a->strings["Add or remove entries to this menu"] = "Ajouter/supprimer des entrées à ce menu";
+$a->strings["Modify"] = "Modifier";
+$a->strings["Not found."] = "Introuvable.";
+$a->strings["View"] = "Vue";
+$a->strings["Authorize application connection"] = "Autoriser l'application à se connecter";
+$a->strings["Return to your app and insert this Securty Code:"] = "Merci de retourner vers votre application, et d'y insérer ce Code de Sécurité&nbsp;:";
+$a->strings["Please login to continue."] = "Merci de vous connecter pour continuer.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à publier en votre nom?";
 $a->strings["Yes"] = "Oui";
 $a->strings["No"] = "Non";
-$a->strings["Edit Profile Details"] = "Éditer les détails du profil";
-$a->strings["View this profile"] = "Voir ce profil";
-$a->strings["Create a new profile using these settings"] = "Créer un nouveau profil en utilisant ces réglages";
-$a->strings["Clone this profile"] = "Cloner ce profil";
-$a->strings["Delete this profile"] = "Supprimer ce profil";
-$a->strings["Profile Name:"] = "Nom du profil:";
-$a->strings["Your Full Name:"] = "Votre nom complet:";
-$a->strings["Title/Description:"] = "Titre/Description:";
-$a->strings["Your Gender:"] = "Votre genre:";
-$a->strings["Birthday (%s):"] = "Anniversaire (%s):";
-$a->strings["Street Address:"] = "Adresse postale:";
-$a->strings["Locality/City:"] = "Ville/Localité:";
-$a->strings["Postal/Zip Code:"] = "Code postal:";
-$a->strings["Country:"] = "Pays:";
-$a->strings["Region/State:"] = "Région/État:";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Statut marital:";
-$a->strings["Who: (if applicable)"] = "Qui: (si pertinent)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples: cathy123, Cathy Williams, cathy@example.com";
-$a->strings["Sexual Preference:"] = "Préférence sexuelle:";
-$a->strings["Homepage URL:"] = "Page personnelle:";
-$a->strings["Political Views:"] = "Opinions politiques:";
-$a->strings["Religious Views:"] = "Opinions religieuses:";
-$a->strings["Public Keywords:"] = "Mots-clés publics:";
-$a->strings["Private Keywords:"] = "Mots-clés privés:";
-$a->strings["Example: fishing photography software"] = "Exemple: football dessin programmation";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)";
-$a->strings["Tell us about yourself..."] = "Parlez-nous de vous...";
-$a->strings["Hobbies/Interests"] = "Passe-temps/Centres d'intérêt";
-$a->strings["Contact information and Social Networks"] = "Coordonées/Réseaux sociaux";
-$a->strings["Musical interests"] = "Goûts musicaux";
-$a->strings["Books, literature"] = "Lectures";
-$a->strings["Television"] = "Télévision";
-$a->strings["Film/dance/culture/entertainment"] = "Cinéma/Danse/Culture/Divertissement";
-$a->strings["Love/romance"] = "Amour/Romance";
-$a->strings["Work/employment"] = "Activité professionnelle/Occupation";
-$a->strings["School/education"] = "Études/Formation";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Ceci est votre profil <strong>public</strong>.<br />Il <strong>peut</strong> être visible par n'importe quel utilisateur d'Internet.";
-$a->strings["Age: "] = "Age: ";
-$a->strings["Edit/Manage Profiles"] = "Editer/gérer les profils";
-$a->strings["Item not found."] = "Élément introuvable.";
-$a->strings["everybody"] = "tout le monde";
-$a->strings["Missing some important data!"] = "Il manque certaines informations importantes!";
-$a->strings["Update"] = "Mises-à-jour";
-$a->strings["Failed to connect with email account using the settings provided."] = "Impossible de se connecter au compte courriel configuré.";
-$a->strings["Email settings updated."] = "Réglages de courriel mis-à-jour.";
-$a->strings["Passwords do not match. Password unchanged."] = "Les mots de passe ne correspondent pas. Aucun changement appliqué.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Les mots de passe vides sont interdits. Aucun changement appliqué.";
-$a->strings["Password changed."] = "Mots de passe changés.";
-$a->strings["Password update failed. Please try again."] = "Le changement de mot de passe a échoué. Merci de recommencer.";
-$a->strings[" Please use a shorter name."] = " Merci d'utiliser un nom plus court.";
-$a->strings[" Name too short."] = " Nom trop court.";
-$a->strings[" Not valid email."] = " Email invalide.";
-$a->strings[" Cannot change to that email."] = " Impossible de changer pour cet email.";
-$a->strings["Settings updated."] = "Réglages mis à jour.";
-$a->strings["Account settings"] = "Réglages du compte";
-$a->strings["Connector settings"] = "Réglages des connecteurs";
-$a->strings["Plugin settings"] = "Réglages des extensions";
-$a->strings["Connections"] = "Connexions";
-$a->strings["Export personal data"] = "Exporter les données personnelles";
+$a->strings["No installed applications."] = "Aucune application installée.";
+$a->strings["Applications"] = "Applications";
+$a->strings["Edit post"] = "Éditer la contribution";
+$a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"] = "Red Matrix - Pour les invités: Username={votre courriel}, MDP=+++";
+$a->strings["Bookmark added"] = "Marque-page ajouté";
+$a->strings["My Bookmarks"] = "Mes marque-pages";
+$a->strings["My Connections Bookmarks"] = "Marque-pages de mes relations";
+$a->strings["Name is required"] = "Le nom est requis";
+$a->strings["Key and Secret are required"] = "Clef et secret sont requis";
+$a->strings["Update"] = "Mise-à-jour";
+$a->strings["Passwords do not match. Password unchanged."] = "Les deux saisies du mot de passe ne correspondent pas. Il n'a donc pas été changé.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Le mot de passe ne peut pas être vide. Il n'a donc pas été changé.";
+$a->strings["Password changed."] = "Le mot de passe a été changé.";
+$a->strings["Password update failed. Please try again."] = "La mise-à-jour du mot de passe a échoué. Merci de recommencer.";
+$a->strings["Not valid email."] = "Adresse de courriel non-valide.";
+$a->strings["Protected email address. Cannot change to that email."] = "Adresse de courriel protégée. Impossible de l'utiliser.";
+$a->strings["System failure storing new email. Please try again."] = "Défaillance système lors du stockage de la nouvelle adresse de courriel. Merci de ré-essayer.";
+$a->strings["Settings updated."] = "Réglages sauvegardés.";
 $a->strings["Add application"] = "Ajouter une application";
-$a->strings["Cancel"] = "Annuler";
 $a->strings["Name"] = "Nom";
-$a->strings["Consumer Key"] = "Clé utilisateur";
-$a->strings["Consumer Secret"] = "Secret utilisateur";
-$a->strings["Redirect"] = "Rediriger";
+$a->strings["Name of application"] = "Nom de l'application";
+$a->strings["Consumer Key"] = "Clef de consommateur";
+$a->strings["Automatically generated - change if desired. Max length 20"] = "Généré automatiquement - à changer si besoin. Longueur maximale 20 caractères.";
+$a->strings["Consumer Secret"] = "Secret de consommateur";
+$a->strings["Redirect"] = "Redirection";
+$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirection - laissez blanc, sauf si l'application a demandé autrement";
 $a->strings["Icon url"] = "URL de l'icône";
+$a->strings["Optional"] = "Facultatif";
 $a->strings["You can't edit this application."] = "Vous ne pouvez pas éditer cette application.";
 $a->strings["Connected Apps"] = "Applications connectées";
-$a->strings["Edit"] = "Éditer";
-$a->strings["Delete"] = "Supprimer";
-$a->strings["Client key starts with"] = "La clé cliente commence par";
+$a->strings["Client key starts with"] = "La clef cliente commence par";
 $a->strings["No name"] = "Sans nom";
 $a->strings["Remove authorization"] = "Révoquer l'autorisation";
-$a->strings["No Plugin settings configured"] = "Pas de réglages d'extensions configurés";
-$a->strings["Plugin Settings"] = "Réglages des extensions";
-$a->strings["Built-in support for %s connectivity is %s"] = "Le support natif pour la connectivité %s est %s";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings["enabled"] = "activé";
-$a->strings["disabled"] = "désactivé";
-$a->strings["StatusNet"] = "StatusNet";
-$a->strings["Connector Settings"] = "Réglages des connecteurs";
-$a->strings["Email/Mailbox Setup"] = "Réglages de courriel/boîte à lettre";
-$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte.";
-$a->strings["Last successful email check:"] = "Dernière vérification réussie des courriels:";
-$a->strings["Email access is disabled on this site."] = "L'accès courriel est désactivé sur ce site.";
-$a->strings["IMAP server name:"] = "Nom du serveur IMAP:";
-$a->strings["IMAP port:"] = "Port IMAP:";
-$a->strings["Security:"] = "Sécurité:";
-$a->strings["None"] = "Aucun(e)";
-$a->strings["Email login name:"] = "Nom de connexion:";
-$a->strings["Email password:"] = "Mot de passe:";
-$a->strings["Reply-to address:"] = "Adresse de réponse:";
-$a->strings["Send public posts to all email contacts:"] = "Les notices publiques vont à tous les contacts courriel:";
-$a->strings["Normal Account"] = "Compte normal";
-$a->strings["This account is a normal personal profile"] = "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)";
-$a->strings["Soapbox Account"] = "Compte \"boîte à savon\"";
-$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'";
-$a->strings["Community/Celebrity Account"] = "Compte de communauté/célébrité";
-$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans en 'lecture/écriture'";
-$a->strings["Automatic Friend Account"] = "Compte auto-amical";
-$a->strings["Automatically approve all connection/friend requests as friends"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis";
-$a->strings["OpenID:"] = "OpenID:";
-$a->strings["(Optional) Allow this OpenID to login to this account."] = "&amp;nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte.";
-$a->strings["Publish your default profile in your local site directory?"] = "Publier votre profil par défaut sur l'annuaire local de ce site?";
-$a->strings["Publish your default profile in the global social directory?"] = "Publier votre profil par défaut sur l'annuaire social global?";
-$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?";
-$a->strings["Hide profile details and all your messages from unknown viewers?"] = "Masquer les détails du profil ainsi que tous vos messages aux visiteurs inconnus?";
-$a->strings["Allow friends to post to your profile page?"] = "Autoriser vos amis à publier sur votre profil?";
-$a->strings["Allow friends to tag your posts?"] = "Autoriser vos amis à tagguer vos notices?";
-$a->strings["Profile is <strong>not published</strong>."] = "Ce profil n'est <strong>pas publié</strong>.";
-$a->strings["Your Identity Address is"] = "L'adresse de votre identité est";
-$a->strings["Account Settings"] = "Réglages du compte";
-$a->strings["Password Settings"] = "Réglages de mot de passe";
-$a->strings["New Password:"] = "Nouveau mot de passe:";
-$a->strings["Confirm:"] = "Confirmer:";
-$a->strings["Leave password fields blank unless changing"] = "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer";
-$a->strings["Basic Settings"] = "Réglages basiques";
-$a->strings["Full Name:"] = "Nom complet:";
-$a->strings["Email Address:"] = "Adresse courriel:";
-$a->strings["Your Timezone:"] = "Votre fuseau horaire:";
-$a->strings["Default Post Location:"] = "Publication par défaut depuis :";
-$a->strings["Use Browser Location:"] = "Utiliser la localisation géographique du navigateur:";
-$a->strings["Display Theme:"] = "Thème d'affichage:";
-$a->strings["Security and Privacy Settings"] = "Réglages de sécurité et vie privée";
-$a->strings["Maximum Friend Requests/Day:"] = "Nombre maximal de requêtes d'amitié/jour:";
-$a->strings["(to prevent spam abuse)"] = "(pour limiter l'impact du spam)";
-$a->strings["Default Post Permissions"] = "Permissions par défaut sur les articles";
+$a->strings["No feature settings configured"] = "Pas de fonctionnalité à configurer";
+$a->strings["Feature Settings"] = "Fonctionnalités";
+$a->strings["Account Settings"] = "Compte";
+$a->strings["Password Settings"] = "Mot de passe";
+$a->strings["New Password:"] = "Nouveau mot de passe&nbsp;:";
+$a->strings["Confirm:"] = "Confirmation&nbsp;:";
+$a->strings["Leave password fields blank unless changing"] = "Laissez les mots de passe vides si vous ne voulez pas les modifier";
+$a->strings["Email Address:"] = "Adresse de courriel&nbsp;:";
+$a->strings["Remove Account"] = "Supprimer le compte";
+$a->strings["Warning: This action is permanent and cannot be reversed."] = "Attention&nbsp;: cette action est permanente et irréversible.";
+$a->strings["Off"] = "Inactif";
+$a->strings["On"] = "Actif";
+$a->strings["Additional Features"] = "Fonctionnalités additionnelles";
+$a->strings["Connector Settings"] = "Connecteurs";
+$a->strings["No special theme for mobile devices"] = "Pas de thème spécifique aux périphériques mobiles";
+$a->strings["Display Settings"] = "Affichage";
+$a->strings["Display Theme:"] = "Thème&nbsp;:";
+$a->strings["Mobile Theme:"] = "Thème mobile&nbsp;:";
+$a->strings["Update browser every xx seconds"] = "Rafraîchir le navigateur toutes les xx secondes";
+$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 secondes, pas de maximum";
+$a->strings["Maximum number of conversations to load at any time:"] = "Nombre maximal de conversations pouvant être chargées en même temps&nbsp;:";
+$a->strings["Maximum of 100 items"] = "100 éléments au maximum";
+$a->strings["Don't show emoticons"] = "Ne pas montrer les frimousses/émoticones";
+$a->strings["Nobody except yourself"] = "Personne sauf vous";
+$a->strings["Only those you specifically allow"] = "Seulement ceux que vous autorisez spécifiquement";
+$a->strings["Anybody in your address book"] = "Tous vos contacts";
+$a->strings["Anybody on this website"] = "Tous les utilisateurs du site";
+$a->strings["Anybody in this network"] = "Tous les utilisateurs du réseau";
+$a->strings["Anybody on the internet"] = "Tout les utilisateurs d'Internet";
+$a->strings["Publish your default profile in the network directory"] = "Publier votre profil par défaut dans l'annuaire du réseau";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Nous autoriser à vous suggérer comme relation potentielle aux nouveaux arrivants?";
+$a->strings["or"] = "ou";
+$a->strings["Your channel address is"] = "Votre canal a pour adresse";
+$a->strings["Channel Settings"] = "Canal";
+$a->strings["Basic Settings"] = "Basique";
+$a->strings["Your Timezone:"] = "Zone de temps&nbsp;:";
+$a->strings["Default Post Location:"] = "Localisation par défaut&nbsp;:";
+$a->strings["Use Browser Location:"] = "Utiliser la localisation fournie par le navigateur&nbsp;:";
+$a->strings["Adult Content"] = "Contenu \"adulte\"";
+$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Ce canal publie plus ou moins fréquemment du contenu pour adultes. (Merci d'indiquer tout contenu pour adulte ou potentiellement choquant avec le tag <em>#NSFW</em> - Not Safe For Work)";
+$a->strings["Security and Privacy Settings"] = "Sécurité et vie privée";
+$a->strings["Hide my online presence"] = "Cacher ma présence en ligne";
+$a->strings["Prevents displaying in your profile that you are online"] = "Cacher votre statut (en ligne/hors ligne) sur votre profil";
+$a->strings["Simple Privacy Settings:"] = "Réglages simples&nbsp;:";
+$a->strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "Très public - <em>extrèmement permissif (à n'utiliser qu'en connaissance de cause)</em>";
+$a->strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "Classique - <em>public par défaut, privé en cas de besoin (comparable dans le principe aux réseaux sociaux centralisés, avec un mode privé plus efficace)</em>";
+$a->strings["Private - <em>default private, never open or public</em>"] = "Privé - <em>privé par défaut, jamais ouvert ni public</em>";
+$a->strings["Blocked - <em>default blocked to/from everybody</em>"] = "Bloqué - <em>par défaut, bloqué de/vers tout le monde</em>";
+$a->strings["Advanced Privacy Settings"] = "Réglages avancés";
+$a->strings["Maximum Friend Requests/Day:"] = "Nombre maximum de mises en relation par jour&nbsp;:";
+$a->strings["May reduce spam activity"] = "Contribue à réduire l'impact du spam";
+$a->strings["Default Post Permissions"] = "Permissions par défaut des publications";
 $a->strings["(click to open/close)"] = "(cliquer pour ouvrir/fermer)";
-$a->strings["Automatically expire posts after days:"] = "Les notices expirent automatiquement au bout de (en jours):";
-$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Si elles sont vides, les notices n'expireront pas. Les notices expirées seront supprimées";
-$a->strings["Notification Settings"] = "Réglages de notification";
-$a->strings["Send a notification email when:"] = "Envoyer un courriel de notification quand:";
+$a->strings["Maximum private messages per day from unknown people:"] = "Nombre maximum de messages privés émanant d'inconnus, par jour&nbsp;:";
+$a->strings["Useful to reduce spamming"] = "Utile pour réduire le spam";
+$a->strings["Notification Settings"] = "Notifications";
+$a->strings["By default post a status message when:"] = "Par défaut, publier un statut quand:";
+$a->strings["accepting a friend request"] = "acceptez une mise en relation";
+$a->strings["joining a forum/community"] = "joignez un forum ou à une communauté";
+$a->strings["making an <em>interesting</em> profile change"] = "faites une modification <em>intéressante</em> de votre profil";
+$a->strings["Send a notification email when:"] = "Envoyer un courriel de notification quand&nbsp;:";
 $a->strings["You receive an introduction"] = "Vous recevez une introduction";
-$a->strings["Your introductions are confirmed"] = "Vos introductions sont confirmées";
+$a->strings["Your introductions are confirmed"] = "Vos introductions sont acceptées/confirmées";
 $a->strings["Someone writes on your profile wall"] = "Quelqu'un écrit sur votre mur";
-$a->strings["Someone writes a followup comment"] = "Quelqu'un vous commente";
-$a->strings["You receive a private message"] = "Vous recevez un message privé";
-$a->strings["Advanced Page Settings"] = "Réglages avancés";
-$a->strings["Saved Searches"] = "Recherches sauvées";
-$a->strings["Remove term"] = "Retirer le terme";
+$a->strings["Someone writes a followup comment"] = "Quelqu'un commente sur vos publications";
+$a->strings["You receive a private message"] = "Vous recevez un Message Privé";
+$a->strings["You receive a friend suggestion"] = "Vous recevez une suggestion d'amitié/relation";
+$a->strings["You are tagged in a post"] = "Vous êtes étiqueté dans une publication";
+$a->strings["You are poked/prodded/etc. in a post"] = "Vous êtes tapoté/pointé/etc. dans une publication";
+$a->strings["Advanced Account/Page Type Settings"] = "Type de page/Compte (avancé)";
+$a->strings["Change the behaviour of this account for special situations"] = "Modifie le comportement de ce compte pour certains cas particuliers";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit %3\$s de %2\$s";
+$a->strings["[Embedded content - reload page to view]"] = "[Contenu embarqué - rechargez la page pour le voir]";
+$a->strings["Channel not found."] = "Canal introuvable.";
+$a->strings["toggle full screen mode"] = "(dés)activer le mode plein-écran";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a étiqueté le %3\$s de %2\$s par %4\$s";
+$a->strings["You must be logged in to see this page."] = "Vous devez vous connecter pour voir cette page.";
+$a->strings["Leave Room"] = "Quitter le salon";
+$a->strings["I am away right now"] = "Je suis momentanément absent";
+$a->strings["I am online"] = "Je suis en ligne";
+$a->strings["New Chatroom"] = "Nouveau salon";
+$a->strings["Chatroom Name"] = "Nom du salon";
+$a->strings["%1\$s's Chatrooms"] = "Salons de %1\$s";
 $a->strings["Public access denied."] = "Accès public refusé.";
-$a->strings["Search This Site"] = "Rechercher sur ce site";
-$a->strings["No results."] = "Aucun résultat.";
-$a->strings["Photo Albums"] = "Albums photo";
-$a->strings["Contact Photos"] = "Photos du contact";
-$a->strings["Contact information unavailable"] = "Informations de contact indisponibles";
-$a->strings["Album not found."] = "Album introuvable.";
-$a->strings["Delete Album"] = "Effacer l'album";
-$a->strings["Delete Photo"] = "Effacer la photo";
-$a->strings["was tagged in a"] = "a été identifié dans";
-$a->strings["photo"] = "photo";
-$a->strings["by"] = "par";
-$a->strings["Image exceeds size limit of "] = "L'image dépasse la taille maximale de  ";
-$a->strings["Image file is empty."] = "Fichier image vide.";
-$a->strings["No photos selected"] = "Aucune photo sélectionnée";
-$a->strings["Access to this item is restricted."] = "Accès restreint à cet élément.";
-$a->strings["Upload Photos"] = "Téléverser des photos";
-$a->strings["New album name: "] = "Nom du nouvel album: ";
-$a->strings["or existing album name: "] = "ou nom d'un album existant: ";
-$a->strings["Do not show a status post for this upload"] = "Ne pas publier de notice pour cet envoi";
-$a->strings["Permissions"] = "Permissions";
-$a->strings["Edit Album"] = "Éditer l'album";
-$a->strings["View Photo"] = "Voir la photo";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Interdit. L'accès à cet élément peut avoir été restreint.";
-$a->strings["Photo not available"] = "Photo indisponible";
-$a->strings["View photo"] = "Voir photo";
-$a->strings["Edit photo"] = "Éditer la photo";
-$a->strings["Use as profile photo"] = "Utiliser comme photo de profil";
-$a->strings["Private Message"] = "Message privé";
-$a->strings["View Full Size"] = "Voir en taille réelle";
-$a->strings["Tags: "] = "Étiquettes: ";
-$a->strings["[Remove any tag]"] = "[Retirer toutes les étiquettes]";
-$a->strings["New album name"] = "Nom du nouvel album";
-$a->strings["Caption"] = "Titre";
-$a->strings["Add a Tag"] = "Ajouter une étiquette";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances";
-$a->strings["I like this (toggle)"] = "I like this (bascule)";
-$a->strings["I don't like this (toggle)"] = "I don't like this (bascule)";
-$a->strings["Share"] = "Partager";
-$a->strings["Please wait"] = "Patientez";
-$a->strings["This is you"] = "C'est vous";
-$a->strings["Recent Photos"] = "Photos récentes";
-$a->strings["Upload New Photos"] = "Téléverser de nouvelles photos";
-$a->strings["View Album"] = "Voir l'album";
-$a->strings["Welcome to Friendika"] = "Bienvenue sur Friendica";
-$a->strings["New Member Checklist"] = "Checklist du nouvel utilisateur";
-$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page."] = "Nous souhaiterions vous donner quelques astuces et pointeurs pour rendre votre expérience la plus plaisante possible. Cliquez sur n'importe quel élément pour visiter la page correspondante.";
-$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This will be useful in making friends."] = "Sur votre page <em>Réglages</em> - changez votre mot de passe originel. Profitez-en pour prendre note de votre Adresse d'Identité. Elle vous sera utile pour vous faire de nouveaux amis.";
-$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver.";
-$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis.";
-$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook et nous pourrons (de manière facultative) importer tous vos amis et conversations Facebook.";
-$a->strings["Enter your email access information on your Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Entrez les paramètres de votre adresse de courriel sur la page des Réglages si vous souhaitez importer et interagir avec vos contacts conventionnels.";
-$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Éditez votre profil <strong>par défaut</strong> à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus.";
-$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent.";
-$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Connect</em> dialog."] = "Votre page Contacts est l'endroit rêvé pour gérer vos relations et contacts, et vous relier à des amis issus d'autres réseaux. En général, il suffit d'entrer leur adresse d'identité ou l'URL de leur site dans le champ <em>Relier</em>";
-$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien <em>Relier</em> ou <em>Suivre</em> sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité.";
-$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau.";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Nos pages d'<strong>aide</strong> peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources.";
-$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
-$a->strings["Time Conversion"] = "Conversion temporelle";
-$a->strings["Friendika provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire.";
-$a->strings["UTC time: %s"] = "Temps UTC : %s";
-$a->strings["Current timezone: %s"] = "Zone de temps courante : %s";
-$a->strings["Converted localtime: %s"] = "Temps local converti : %s";
-$a->strings["Please select your timezone:"] = "Sélectionner votre zone :";
-$a->strings["Item has been removed."] = "Cet élément a été enlevé.";
-$a->strings["Item not found"] = "Élément introuvable";
-$a->strings["Edit post"] = "Éditer la publication";
-$a->strings["Post to Email"] = "Publier aussi par courriel";
-$a->strings["Upload photo"] = "Joindre photo";
-$a->strings["Attach file"] = "Joindre fichier";
-$a->strings["Insert web link"] = "Insérer lien web";
-$a->strings["Insert YouTube video"] = "Insérer une vidéo Youtube";
-$a->strings["Insert Vorbis [.ogg] video"] = "Insérer un lien vidéo Vorbis [.ogg]";
-$a->strings["Insert Vorbis [.ogg] audio"] = "Insérer un lien audio Vorbis [.ogg]";
-$a->strings["Set your location"] = "Définir votre localisation";
-$a->strings["Clear browser location"] = "Effacer la localisation du navigateur";
-$a->strings["Permission settings"] = "Réglages des permissions";
-$a->strings["CC: email addresses"] = "CC: adresses de courriel";
-$a->strings["Public post"] = "Notice publique";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Exemple: bob@exemple.com, mary@exemple.com";
-$a->strings["%s : Not a valid email address."] = "%s : Adresse de courriel invalide.";
-$a->strings["Please join my network on %s"] = "Vous pouvez rejoindre mon réseau sur %s";
-$a->strings["%s : Message delivery failed."] = "%s : L'envoi du message a échoué.";
-$a->strings["%d message sent."] = array(
-	0 => "%d message envoyé.",
-	1 => "%d messages envoyés.",
-);
-$a->strings["You have no more invitations available"] = "Vous n'avez plus d'invitations disponibles";
-$a->strings["Send invitations"] = "Envoyer des invitations";
-$a->strings["Enter email addresses, one per line:"] = "Entrez les adresses email, une par ligne:";
-$a->strings["Your message:"] = "Votre message:";
-$a->strings["Please join my social network on %s"] = "Vous pouvez rejoindre mon réseau social sur %s";
-$a->strings["To accept this invitation, please visit:"] = "Pour accepter cette invitation, rendez vous sur:";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Vous devrez fournir ce code d'invitation: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Une fois inscrit, connectez-vous à la page de mon profil sur:";
-$a->strings["{0} wants to be your friend"] = "{0} souhaite être votre ami(e)";
-$a->strings["{0} sent you a message"] = "{0} vous a envoyé un message";
-$a->strings["{0} requested registration"] = "{0} a demandé à s'inscrire";
-$a->strings["{0} commented %s's post"] = "{0} a commenté une notice de %s";
-$a->strings["{0} liked %s's post"] = "{0} a aimé une notice de %s";
-$a->strings["{0} disliked %s's post"] = "{0} n'a pas aimé une notice de %s";
-$a->strings["{0} is now friends with %s"] = "{0} est désormais ami(e) avec %s";
-$a->strings["{0} posted"] = "{0} a posté";
-$a->strings["{0} tagged %s's post with #%s"] = "{0} a taggué la notice de %s avec #%s";
-$a->strings["Could not access contact record."] = "Impossible d'accéder à l'enregistrement du contact.";
-$a->strings["Could not locate selected profile."] = "Impossible de localiser le profil séléctionné.";
-$a->strings["Contact updated."] = "Contact mis-à-jour.";
-$a->strings["Failed to update contact record."] = "Échec de mise-à-jour du contact.";
-$a->strings["Contact has been blocked"] = "Le contact a été bloqué";
-$a->strings["Contact has been unblocked"] = "Le contact n'est plus bloqué";
-$a->strings["Contact has been ignored"] = "Le contact a été ignoré";
-$a->strings["Contact has been unignored"] = "Le contact n'est plus ignoré";
-$a->strings["stopped following"] = "retiré de la liste de suivi";
-$a->strings["Contact has been removed."] = "Ce contact a été retiré.";
-$a->strings["You are mutual friends with %s"] = "Vous êtes ami (et réciproquement) avec %s";
-$a->strings["You are sharing with %s"] = "Vous partagez avec %s";
-$a->strings["%s is sharing with you"] = "%s partage avec vous";
-$a->strings["Private communications are not available for this contact."] = "Les communications privées ne sont pas disponibles pour ce contact.";
-$a->strings["Never"] = "Jamais";
-$a->strings["(Update was successful)"] = "(Mise à jour effectuée avec succès)";
-$a->strings["(Update was not successful)"] = "(Mise à jour échouée)";
-$a->strings["Suggest friends"] = "Suggérer amitié/contact";
-$a->strings["Network type: %s"] = "Type de réseau %s";
-$a->strings["%d contact in common"] = array(
-	0 => "%d contact en commun",
-	1 => "%d contacts en commun",
-);
-$a->strings["View all contacts"] = "Voir tous les contacts";
-$a->strings["Unblock"] = "Débloquer";
-$a->strings["Block"] = "Bloquer";
-$a->strings["Unignore"] = "Ne plus ignorer";
-$a->strings["Ignore"] = "Ignorer";
-$a->strings["Repair"] = "Réparer";
-$a->strings["Contact Editor"] = "Éditeur de contact";
-$a->strings["Profile Visibility"] = "Visibilité du profil";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée.";
-$a->strings["Contact Information / Notes"] = "Informations de contact / Notes";
-$a->strings["Edit contact notes"] = "Editer les notes des contacts";
+$a->strings["No connections."] = "Pas de relations.";
 $a->strings["Visit %s's profile [%s]"] = "Visiter le profil de %s [%s]";
-$a->strings["Block/Unblock contact"] = "Bloquer/débloquer ce contact";
-$a->strings["Ignore contact"] = "Ignorer ce contact";
-$a->strings["Repair URL settings"] = "Réparer les réglages d'URL";
-$a->strings["View conversations"] = "Voir les conversations";
-$a->strings["Delete contact"] = "Effacer ce contact";
-$a->strings["Last update:"] = "Dernière mise-à-jour :";
-$a->strings["Update public posts"] = "Met ses entrées publiques à jour: ";
-$a->strings["Update now"] = "Mettre à jour";
-$a->strings["Currently blocked"] = "Actuellement bloqué";
-$a->strings["Currently ignored"] = "Actuellement ignoré";
-$a->strings["Contacts"] = "Contacts";
-$a->strings["Show Blocked Connections"] = "Montrer les connexions bloquées";
-$a->strings["Hide Blocked Connections"] = "Cacher les connexion bloquées";
-$a->strings["Search your contacts"] = "Rechercher dans vos contacts";
-$a->strings["Finding: "] = "Trouvé: ";
-$a->strings["Find"] = "Trouver";
-$a->strings["Mutual Friendship"] = "Relation réciproque";
-$a->strings["is a fan of yours"] = "est un fan de vous";
-$a->strings["you are a fan of"] = "vous êtes un fan de";
-$a->strings["Edit contact"] = "Éditer le contact";
-$a->strings["Remote privacy information not available."] = "Informations de confidentialité indisponibles.";
-$a->strings["Visible to:"] = "Visible par:";
-$a->strings["An invitation is required."] = "Une invitation est requise.";
-$a->strings["Invitation could not be verified."] = "L'invitation fournie n'a pu être validée.";
-$a->strings["Invalid OpenID url"] = "Adresse OpenID invalide";
-$a->strings["Please enter the required information."] = "Entrez les informations requises.";
-$a->strings["Please use a shorter name."] = "Utilisez un nom plus court.";
-$a->strings["Name too short."] = "Nom trop court.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Ceci ne semble pas être votre nom complet (Prénom Nom).";
-$a->strings["Your email domain is not among those allowed on this site."] = "Votre domaine de courriel n'est pas autorisé sur ce site.";
-$a->strings["Not a valid email address."] = "Ceci n'est pas une adresse courriel valide.";
-$a->strings["Cannot use that email."] = "Impossible d'utiliser ce courriel.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", \"-\", and \"_\", et doit commencer par une lettre.";
-$a->strings["Nickname is already registered. Please choose another."] = "Pseudo déjà utilisé. Merci d'en choisir un autre.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué.";
-$a->strings["An error occurred during registration. Please try again."] = "Une erreur est survenue lors de l'inscription. Merci de recommencer.";
-$a->strings["An error occurred creating your default profile. Please try again."] = "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer.";
-$a->strings["Registration successful. Please check your email for further instructions."] = "Inscription réussie. Vérifiez vos emails pour la suite des instructions.";
-$a->strings["Failed to send email message. Here is the message that failed."] = "Impossible d'envoyer un email. Voici le message qui a échoué.";
-$a->strings["Your registration can not be processed."] = "Votre inscription ne peut être traitée.";
-$a->strings["Registration request at %s"] = "Demande d'inscription à %s";
-$a->strings["Your registration is pending approval by the site owner."] = "Votre inscription attend une validation du propriétaire du site.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\".";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste.";
-$a->strings["Your OpenID (optional): "] = "Votre OpenID (facultatif): ";
-$a->strings["Include your profile in member directory?"] = "Inclure votre profil dans l'annuaire des membres?";
-$a->strings["Membership on this site is by invitation only."] = "L'inscription à ce site se fait uniquement sur invitation.";
-$a->strings["Your invitation ID: "] = "Votre ID d'invitation: ";
-$a->strings["Registration"] = "Inscription";
-$a->strings["Your Full Name (e.g. Joe Smith): "] = "Votre nom complet (p.ex. Michel Dupont): ";
-$a->strings["Your Email Address: "] = "Votre adresse courriel: ";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '&lt;strong&gt;pseudo@\$sitename&lt;/strong&gt;'.";
-$a->strings["Choose a nickname: "] = "Choisir un pseudo: ";
-$a->strings["Post successful."] = "Publication réussie.";
-$a->strings["Friends of %s"] = "Amis de %s";
-$a->strings["No friends to display."] = "Pas d'amis à afficher.";
-$a->strings["Help:"] = "Aide:";
-$a->strings["Help"] = "Aide";
-$a->strings["Could not create/connect to database."] = "Impossible de créer/atteindre la base de données.";
-$a->strings["Connected to database."] = "Connecté à la base de données.";
-$a->strings["Proceed with Installation"] = "Commencer l'installation";
-$a->strings["Your Friendika site database has been installed."] = "La base de données de votre site Friendika a été installée.";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le 'poller'.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Référez-vous au fichier \"INSTALL.txt\".";
-$a->strings["Proceed to registration"] = "Commencer l'inscription";
-$a->strings["Database import failed."] = "Import de base échoué.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql.";
-$a->strings["Welcome to Friendika."] = "Bienvenue sur Friendika.";
-$a->strings["Friendika Social Network"] = "Réseau social Friendika";
-$a->strings["Installation"] = "Installation";
-$a->strings["In order to install Friendika we need to know how to connect to your database."] = "Pour installer Friendika, nous avons besoin de contacter votre base de données.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer.";
-$a->strings["Database Server Name"] = "Serveur de base de données";
-$a->strings["Database Login Name"] = "Nom d'utilisateur de la base";
-$a->strings["Database Login Password"] = "Mot de passe de la base";
-$a->strings["Database Name"] = "Nom de la base";
-$a->strings["Please select a default timezone for your website"] = "Sélectionner un fuseau horaire par défaut pour votre site";
-$a->strings["Site administrator email address. Your account email address must match this in order to use the web admin panel."] = "Adresse courriel de l'administrateur du site. L'adresse courriel de votre compte doit correspondre si vous voulez utiliser l'administration web.";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web.";
-$a->strings["This is required. Please adjust the configuration file .htconfig.php accordingly."] = "Ceci est requis. Merci d'ajuster la configuration dans le fichier .htconfig.php en conséquence.";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé.";
-$a->strings["This is required for message delivery to work."] = "Ceci est requis pour que la livraison des messages fonctionne.";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\".";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erreur: Le module \"rewrite\" du serveur web Apache est requis mais pas installé.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Erreur: Le module PHP \"libCURL\" est requis mais pas installé.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erreur: Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Erreur: Le module PHP \"openssl\" est requis mais pas installé.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Erreur: Le module PHP \"mysqli\" est requis mais pas installé.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Erreur: le module PHP mb_string est requis mais pas installé.";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\ in the top folder of your web server and it is unable to do so."] = "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable.";
-$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez.";
-$a->strings["Please check with your site documentation or support people to see if this situation can be corrected."] = "Merci de vérifier - avec la documentation ou le support de votre hébergement - que la situation peut être corrigée.";
-$a->strings["If not, you may be required to perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Dans le cas contraire, vous pouvez pratiquer une installation manuelle. Référez-vous au fichier \"INSTALL.txt\" pour les instructions.";
-$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement.";
-$a->strings["Errors encountered creating database tables."] = "Des erreurs ont été signalées lors de la création des tables.";
-$a->strings["Commented Order"] = "Dans l'ordre des commentaires";
-$a->strings["Posted Order"] = "Dans l'ordre des notices";
-$a->strings["New"] = "Nouveau";
-$a->strings["Starred"] = "Mis en avant";
-$a->strings["Bookmarks"] = "Marqué";
-$a->strings["Warning: This group contains %s member from an insecure network."] = array(
-	0 => "Attention: Ce groupe contient %s membre d'un réseau non-sûr.",
-	1 => "Attention: Ce groupe contient %s membres d'un réseau non-sûr.",
-);
-$a->strings["Private messages to this group are at risk of public disclosure."] = "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée.";
-$a->strings["No such group"] = "Groupe inexistant";
-$a->strings["Group is empty"] = "Groupe vide";
-$a->strings["Group: "] = "Groupe: ";
-$a->strings["Contact: "] = "Contact: ";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée.";
-$a->strings["Invalid contact."] = "Contact invalide.";
+$a->strings["View Connnections"] = "Voir les relations";
+$a->strings["Tag removed"] = "Étiquette retirée";
+$a->strings["Remove Item Tag"] = "Retirer une étiquette à l'élément";
+$a->strings["Select a tag to remove: "] = "Étiquette à retirer&nbsp;:";
+$a->strings["Remove"] = "Retirer";
+$a->strings["Continue"] = "Continuer";
+$a->strings["Premium Channel Setup"] = "Configuration du canal Premium";
+$a->strings["Enable premium channel connection restrictions"] = "Activer les restrictions liées au canal premium";
+$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Merci de saisir les restrictions et/ou conditions - reçu Paypal, transaction Bitcoin, ligne de conduite, ...";
+$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Avant d'autoriser la mise en relation, ce canal attire votre attention sur les conditions suivantes&nbsp;:";
+$a->strings["Potential connections will then see the following text before proceeding:"] = "Les relations potentielles verront ce qui suit avant de pouvoir continuer&nbsp;:";
+$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "En continuant, je certifie que je me suis acquitté de toutes les instructions indiquées sur cette page.";
+$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Aucune instruction spécifique n'a été établie par le propriétaire du canal.)";
+$a->strings["Restricted or Premium Channel"] = "Canal Premium ou restreint";
+$a->strings["No potential page delegates located."] = "Aucun délégué potentiel n'a été trouvé pour cette page.";
+$a->strings["Delegate Page Management"] = "Gestion des délégués de la page";
+$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Les délégués sont capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages basiques du compte. Merci de ne déléguer votre compte personnel qu'à quelqu'un en qui vous avez une confiance aveugle.";
+$a->strings["Existing Page Managers"] = "Actuels gestionnaires de pages";
+$a->strings["Existing Page Delegates"] = "Actuels délégués";
+$a->strings["Potential Delegates"] = "Délégués potentiels";
+$a->strings["Add"] = "Ajouter";
+$a->strings["No entries."] = "Aucune entrée.";
+$a->strings["Away"] = "Absent";
+$a->strings["Online"] = "En ligne";
+$a->strings["Item not available."] = "Élément indisponible.";
+$a->strings["Menu element updated."] = "Entrée de menu mis-à-jour.";
+$a->strings["Unable to update menu element."] = "Impossible de mettre l'entrée de menu à jour.";
+$a->strings["Menu element added."] = "Entrée de menu ajouté.";
+$a->strings["Unable to add menu element."] = "Impossible d'ajouter l'entrée de menu.";
+$a->strings["Manage Menu Elements"] = "Gérer les entrées de menu";
+$a->strings["Edit menu"] = "Éditer le menu";
+$a->strings["Edit element"] = "Éditer l'entrée";
+$a->strings["Drop element"] = "Supprimer l'entrée";
+$a->strings["New element"] = "Nouvelle entrée";
+$a->strings["Edit this menu container"] = "Éditer ce bloc de menu";
+$a->strings["Add menu element"] = "Ajouter une entrée au menu";
+$a->strings["Delete this menu item"] = "Supprimer cet entrée du menu";
+$a->strings["Edit this menu item"] = "Éditer cette entrée du menu";
+$a->strings["New Menu Element"] = "Nouvelle entrée de menu";
+$a->strings["Menu Item Permissions"] = "Permissions de l'entrée de menu";
+$a->strings["Link text"] = "Texte du lien";
+$a->strings["URL of link"] = "URL du lien";
+$a->strings["Use Red magic-auth if available"] = "Utiliser l'authentification automagique de Red, si possible";
+$a->strings["Open link in new window"] = "Ouvrir le lien dans une nouvelle fenêtre";
+$a->strings["Order in list"] = "Ordre dans la liste";
+$a->strings["Higher numbers will sink to bottom of listing"] = "Les nombres les plus élevés seront descendus au bas de la liste";
+$a->strings["Menu item not found."] = "Entrée de menu introuvable.";
+$a->strings["Menu item deleted."] = "Entrée de menu supprimée.";
+$a->strings["Menu item could not be deleted."] = "Impossible de supprimer l'entrée de menu.";
+$a->strings["Edit Menu Element"] = "Éditer l'entrée de menu";
+$a->strings["Collection created."] = "Collection créée.";
+$a->strings["Could not create collection."] = "Impossible de créer la collection.";
+$a->strings["Collection updated."] = "Collection mise-à-jour.";
+$a->strings["Create a collection of channels."] = "Créez une collection de canaux.";
+$a->strings["Collection Name: "] = "Nom de la collection&nbsp;:";
+$a->strings["Members are visible to other channels"] = "Les membres sont visibles par les autres canaux";
+$a->strings["Collection removed."] = "Collection supprimée.";
+$a->strings["Unable to remove collection."] = "Impossible de supprimer la collection.";
+$a->strings["Collection Editor"] = "Éditeur de collection";
+$a->strings["Members"] = "Membres";
+$a->strings["All Connected Channels"] = "Tous canaux connectés";
+$a->strings["Click on a channel to add or remove."] = "Cliquer sur un canal pour ajouter ou supprimer";
 $a->strings["Invalid profile identifier."] = "Identifiant de profil invalide.";
-$a->strings["Profile Visibility Editor"] = "Éditer la visibilité du profil";
-$a->strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le supprimer.";
+$a->strings["Profile Visibility Editor"] = "Éditeur de visibilité de profil";
+$a->strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le retirer.";
 $a->strings["Visible To"] = "Visible par";
-$a->strings["All Contacts (with secure profile access)"] = "Tous les contacts (ayant un accès sécurisé)";
-$a->strings["Event description and start time are required."] = "Une description et une heure de début sont requises.";
-$a->strings["Create New Event"] = "Créer un nouvel événement";
-$a->strings["Previous"] = "Précédent";
-$a->strings["Next"] = "Suivant";
-$a->strings["l, F j"] = "l, F j";
-$a->strings["Edit event"] = "Editer l'événement";
-$a->strings["link to source"] = "lien original";
-$a->strings["hour:minute"] = "heures:minutes";
-$a->strings["Event details"] = "Détails de l'événement";
-$a->strings["Format is %s %s. Starting date and Description are required."] = "Le format est %s %s. Une date de début et une description sont requises.";
-$a->strings["Event Starts:"] = "Début de l'événement:";
-$a->strings["Finish date/time is not known or not relevant"] = "Date/heure de fin inconnue ou sans objet";
-$a->strings["Event Finishes:"] = "Fin de l'événement:";
-$a->strings["Adjust for viewer timezone"] = "Ajuster à la zone horaire du visiteur";
-$a->strings["Description:"] = "Description:";
-$a->strings["Share this event"] = "Partager cet événement";
-$a->strings["Invalid request identifier."] = "Identifiant de demande invalide.";
-$a->strings["Discard"] = "Défausser";
-$a->strings["Network"] = "Réseau";
-$a->strings["Home"] = "Accueil";
-$a->strings["Introductions"] = "Introductions";
-$a->strings["Messages"] = "Messages";
-$a->strings["Show Ignored Requests"] = "Voir les demandes ignorées";
-$a->strings["Hide Ignored Requests"] = "Cacher les demandes ignorées";
-$a->strings["Notification type: "] = "Type de notification: ";
-$a->strings["Friend Suggestion"] = "Suggestion d'amitié/contact";
-$a->strings["suggested by %s"] = "suggéré(e) par %s";
-$a->strings["Approve"] = "Approuver";
-$a->strings["Claims to be known to you: "] = "Prétend que vous le connaissez: ";
-$a->strings["yes"] = "oui";
-$a->strings["no"] = "non";
-$a->strings["Approve as: "] = "Approuver en tant que: ";
-$a->strings["Friend"] = "Ami";
-$a->strings["Sharer"] = "Initiateur du partage";
-$a->strings["Fan/Admirer"] = "Fan/Admirateur";
-$a->strings["Friend/Connect Request"] = "Demande de connexion/relation";
-$a->strings["New Follower"] = "Nouvel abonné";
-$a->strings["No notifications."] = "Pas de notification.";
-$a->strings["Notifications"] = "Notifications";
-$a->strings["%s liked %s's post"] = "%s a aimé la notice de %s";
-$a->strings["%s disliked %s's post"] = "%s n'a pas aimé la notice de %s";
-$a->strings["%s is now friends with %s"] = "%s est désormais ami(e) avec %s";
-$a->strings["%s created a new post"] = "%s a publié une notice";
-$a->strings["%s commented on %s's post"] = "%s a commenté une notice de %s";
-$a->strings["Nothing new!"] = "Rien de neuf!";
-$a->strings["Contact settings applied."] = "Réglages du contact appliqués.";
-$a->strings["Contact update failed."] = "Impossible d'appliquer les réglages.";
-$a->strings["Contact not found."] = "Contact introuvable.";
-$a->strings["Repair Contact Settings"] = "Réglages du réparateur de contacts";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATTENTION: Manipulation réservée aux experts</strong>, toute information incorrecte pourrait empêcher la communication avec ce contact.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "une photo";
-$a->strings["Account Nickname"] = "Pseudo du compte";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@NomDuTag - prend le pas sur Nom/Pseudo";
-$a->strings["Account URL"] = "URL du compte";
-$a->strings["Friend Request URL"] = "Echec du téléversement de l'image.";
-$a->strings["Friend Confirm URL"] = "Accès public refusé.";
-$a->strings["Notification Endpoint URL"] = "Aucune photo sélectionnée";
-$a->strings["Poll/Feed URL"] = "Téléverser des photos";
-$a->strings["New photo from this URL"] = "Nouvelle photo depuis cette URL";
-$a->strings["This introduction has already been accepted."] = "Cette introduction a déjà été acceptée.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "L'emplacement du profil est invalide ou ne contient pas de profil valide.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Attention: l'emplacement du profil n'a pas de nom identifiable.";
-$a->strings["Warning: profile location has no profile photo."] = "Attention: l'emplacement du profil n'a pas de photo de profil.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-	0 => "%d paramètre requis n'a pas été trouvé à l'endroit indiqué",
-	1 => "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué",
-);
-$a->strings["Introduction complete."] = "Phase de présentation achevée.";
-$a->strings["Unrecoverable protocol error."] = "Erreur de protocole non-récupérable.";
-$a->strings["Profile unavailable."] = "Profil indisponible.";
-$a->strings["%s has received too many connection requests today."] = "%s a reçu trop de demande d'introduction aujourd'hui.";
-$a->strings["Spam protection measures have been invoked."] = "Des mesures de protection contre le spam ont été déclenchées.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Les relations sont encouragées à attendre 24 heures pour recommencer.";
-$a->strings["Invalid locator"] = "Localisateur invalide";
-$a->strings["Unable to resolve your name at the provided location."] = "Impossible de résoudre votre nom à l'emplacement fourni.";
-$a->strings["You have already introduced yourself here."] = "Vous vous êtes déjà présenté ici.";
-$a->strings["Apparently you are already friends with %s."] = "Il semblerait que vous soyez déjà ami avec %s.";
-$a->strings["Invalid profile URL."] = "URL de profil invalide.";
-$a->strings["Your introduction has been sent."] = "Votre présentation a été envoyée.";
-$a->strings["Please login to confirm introduction."] = "Connectez-vous pour confirmer l'introduction.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Identité incorrecte actuellement connectée. Merci de vous connecter à <strong>ce</strong> profil.";
-$a->strings["Welcome home %s."] = "Bienvenue chez vous, %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Merci de confirmer votre demande d'introduction auprès de %s.";
-$a->strings["Confirm"] = "Confirmer";
-$a->strings["[Name Withheld]"] = "[Nom non-publié]";
-$a->strings["Introduction received at "] = "Introduction reçue sur ";
-$a->strings["Diaspora members: Please do not use this form. Instead, enter \"%s\" into your Diaspora search bar."] = "Membres de Diaspora : N'utilisez pas ce formulaire. Entrez plutôt \"%s\" dans votre barre de recherche Diaspora.";
-$a->strings["Please enter your 'Identity Address' from one of the following supported social networks:"] = "Saisissez votre \"Adresse d'identité\" de l'un des réseaux sociaux suivants:";
-$a->strings["Friend/Connection Request"] = "Requête de relation/amitié";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Merci de répondre à ce qui suit:";
-$a->strings["Does %s know you?"] = "Est-ce que %s vous connaît?";
-$a->strings["Add a personal note:"] = "Ajouter une note personnelle:";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
-$a->strings["- please share from your own site as noted above"] = "- partagez depuis votre propre site comme indiqué ci-dessus";
-$a->strings["Your Identity Address:"] = "Votre adresse d'identité:";
-$a->strings["Submit Request"] = "Envoyer la requête";
-$a->strings["Authorize application connection"] = "Autoriser l'application à se connecter";
-$a->strings["Return to your app and insert this Securty Code:"] = "Retournez à votre application et saisissez ce Code de Sécurité : ";
-$a->strings["Please login to continue."] = "Merci de vous connecter pour continuer.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos notices et contacts, et/ou à créer des notices à votre place?";
-$a->strings["status"] = "le statut";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a taggué %3\$s de %2\$s avec %4\$s";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s n'aime pas %3\$s de %2\$s";
-$a->strings["No valid account found."] = "Impossible de trouver un compte valide.";
-$a->strings["Password reset request issued. Check your email."] = "Réinitialisation du mot de passe en cours. Vérifiez votre courriel.";
-$a->strings["Password reset requested at %s"] = "Requête de réinitialisation de mot de passe à %s";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué.";
-$a->strings["Your password has been reset as requested."] = "Votre mot de passe a bien été réinitialisé.";
-$a->strings["Your new password is"] = "Votre nouveau mot de passe est ";
-$a->strings["Save or copy your new password - and then"] = "Sauvez ou copiez ce nouveau mot de passe - puis";
-$a->strings["click here to login"] = "cliquez ici pour vous connecter";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Votre mot de passe peut être changé depuis la page &lt;em&gt;Réglages&lt;/em&gt;, une fois que vous serez connecté.";
-$a->strings["Forgot your Password?"] = "Mot de passe oublié?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel.";
-$a->strings["Nickname or Email: "] = "Pseudo ou Courriel: ";
-$a->strings["Reset"] = "Réinitialiser";
-$a->strings["This is Friendica, version"] = "Motorisé par Friendica version";
-$a->strings["running at web location"] = "hébergé sur";
-$a->strings["Please visit <a href=\"http://project.friendika.com\">Project.Friendika.com</a> to learn more about the Friendica project."] = "Pour en savoir plus, vous pouvez nous rendre visite sur &lt;a href=\"http://project.friendica.com\"&gt;Project.Friendica.com&lt;/a&gt;";
-$a->strings["Bug reports and issues: please visit"] = "Pour les rapports de bugs: rendez vous sur";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com";
-$a->strings["Installed plugins/addons/apps"] = "Extensions/greffons/applications installées";
-$a->strings["No installed plugins/addons/apps"] = "Aucune extension/greffon/application installée";
-$a->strings["Remove My Account"] = "Supprimer mon compte";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Ceci supprimera totalement votre compte. Cette opération est irréversible.";
-$a->strings["Please enter your password for verification:"] = "Merci de saisir votre mot de passe pour vérification:";
-$a->strings["Applications"] = "Applications";
-$a->strings["No installed applications."] = "Pas d'application installée.";
-$a->strings["Save"] = "Sauver";
-$a->strings["Friend suggestion sent."] = "Suggestion d'amitié/contact envoyée.";
-$a->strings["Suggest Friends"] = "Suggérer des amis/contacts";
-$a->strings["Suggest a friend for %s"] = "Suggérer un ami/contact pour %s";
-$a->strings["Access denied."] = "Accès refusé.";
-$a->strings["Global Directory"] = "Annuaire global";
-$a->strings["Normal site view"] = "Vue normale";
-$a->strings["Admin - View all site entries"] = "Admin - voir toutes les entrées";
-$a->strings["Find on this site"] = "Trouver sur ce site";
-$a->strings["Site Directory"] = "Annuaire local";
-$a->strings["Gender: "] = "Genre: ";
-$a->strings["No entries (some entries may be hidden)."] = "Aucune entrée (certaines peuvent être cachées).";
+$a->strings["All Connections"] = "Toutes les relations";
+$a->strings["Theme settings updated."] = "Réglages du thème sauvegardés.";
 $a->strings["Site"] = "Site";
 $a->strings["Users"] = "Utilisateurs";
 $a->strings["Plugins"] = "Extensions";
+$a->strings["Themes"] = "Thèmes";
+$a->strings["Server"] = "Serveur";
+$a->strings["DB updates"] = "MàJ BD";
 $a->strings["Logs"] = "Journaux";
-$a->strings["User registrations waiting for confirmation"] = "Inscriptions en attente de confirmation";
+$a->strings["Plugin Features"] = "Fonctionnalités liées aux extensions";
+$a->strings["User registrations waiting for confirmation"] = "Inscriptions en attente";
+$a->strings["Message queues"] = "File des messages";
 $a->strings["Administration"] = "Administration";
 $a->strings["Summary"] = "Résumé";
 $a->strings["Registered users"] = "Utilisateurs inscrits";
 $a->strings["Pending registrations"] = "Inscriptions en attente";
-$a->strings["Version"] = "Versio";
-$a->strings["Active plugins"] = "Extensions activés";
-$a->strings["Site settings updated."] = "Réglages du site mis-à-jour.";
+$a->strings["Version"] = "Version";
+$a->strings["Active plugins"] = "Extensions actives";
+$a->strings["Site settings updated."] = "Réglages du site sauvegardés.";
+$a->strings["No special theme for accessibility"] = "Pas de thème spécifique pour l'accessibilité";
 $a->strings["Closed"] = "Fermé";
-$a->strings["Requires approval"] = "Demande une apptrobation";
+$a->strings["Requires approval"] = "Après approbation";
 $a->strings["Open"] = "Ouvert";
-$a->strings["File upload"] = "Téléversement de fichier";
-$a->strings["Policies"] = "Politiques";
+$a->strings["Private"] = "Privé";
+$a->strings["Paid Access"] = "Accès payant";
+$a->strings["Free Access"] = "Accès gratuit";
+$a->strings["Tiered Access"] = "Accès par paliers";
+$a->strings["Registration"] = "Inscription";
+$a->strings["File upload"] = "Envoi de fichier";
+$a->strings["Policies"] = "Stratégies";
 $a->strings["Advanced"] = "Avancé";
 $a->strings["Site name"] = "Nom du site";
-$a->strings["Banner/Logo"] = "Bannière/Logo";
+$a->strings["Banner/Logo"] = "Bannière/logo";
+$a->strings["Administrator Information"] = "Information sur l'administration";
+$a->strings["Contact information for site administrators.  Displayed on siteinfo page.  BBCode can be used here"] = "Coordonnées de l'administration du site. Affichée sur la page 'siteinfo'. Vous pouvez utiliser du BBCode ici";
 $a->strings["System language"] = "Langue du système";
 $a->strings["System theme"] = "Thème du système";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Thème par défaut - il peut être changé pour chaque profil utilisateur - <a href='#' id='cnftheme'>modifier le thème</a>";
+$a->strings["Mobile system theme"] = "Thème système pour mobile";
+$a->strings["Theme for mobile devices"] = "Thème dédié aux périphériques mobiles";
+$a->strings["Accessibility system theme"] = "Thème système pour l'accessibilité";
+$a->strings["Accessibility theme"] = "Thème pour l'accessibilité";
+$a->strings["Channel to use for this website's static pages"] = "Canal à utiliser pour les pages statiques de ce site";
+$a->strings["Site Channel"] = "Canal du site";
 $a->strings["Maximum image size"] = "Taille maximale des images";
+$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Taille maximum, en octets, des images envoyées. Par défaut 0, soit sans limite.";
 $a->strings["Register policy"] = "Politique d'inscription";
+$a->strings["Access policy"] = "Politique d'accès";
 $a->strings["Register text"] = "Texte d'inscription";
+$a->strings["Will be displayed prominently on the registration page."] = "Sera affiché de manière bien visible sur le formulaire d'inscription.";
 $a->strings["Accounts abandoned after x days"] = "Les comptes sont abandonnés après x jours";
-$a->strings["Will not waste system resources polling external sites for abandoned accounts. Enter 0 for no time limit."] = "Pour ne pas gaspiller les ressources système, on cesse d'interroger les sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette fonction.";
-$a->strings["Allowed friend domains"] = "Domaines autorisés";
-$a->strings["Allowed email domains"] = "Domaines courriel autorisés";
-$a->strings["Block public"] = "Interdire la publication globale";
-$a->strings["Force publish"] = "Forcer la publication globale";
-$a->strings["Global directory update URL"] = "URL de mise-à-jour de l'annuaire global";
-$a->strings["Block multiple registrations"] = "Interdire les inscriptions multiples";
-$a->strings["OpenID support"] = "Support OpenID";
-$a->strings["Gravatar support"] = "Support Gravatar";
-$a->strings["Fullname check"] = "Vérification du \"Prénom Nom\"";
-$a->strings["UTF-8 Regular expressions"] = "Regex UTF-8";
-$a->strings["Show Community Page"] = "Montrer la \"Place publique\"";
-$a->strings["Enable OStatus support"] = "Activer le support d'OStatus";
-$a->strings["Enable Diaspora support"] = "Activer le support de Diaspora";
-$a->strings["Only allow Friendika contacts"] = "N'autoriser que les contacts Friendica";
-$a->strings["Verify SSL"] = "Vérifier SSL";
-$a->strings["Proxy user"] = "Utilisateur du proxy";
+$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Pour éviter de gaspiller les ressources du système en essayer de mettre à jour des comptes abandonnés. Mettez 0 pour ne pas avoir de limite de temps.";
+$a->strings["Allowed friend domains"] = "Domaines amicaux";
+$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste de noms de domaines - séparés par des virgules - pour lesquels ce site acceptera les demandes d'amitié ou de mise en relation. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines.";
+$a->strings["Allowed email domains"] = "Domaines de courriels amicaux";
+$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste de noms de domaines - séparés par des virgules - dont les adresses de courriel seront autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines.";
+$a->strings["Block public"] = "Bloquer public";
+$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Cocher pour interdire tout accès public, y compris aux pages marquées comme publiques, aux visiteurs anonymes.";
+$a->strings["Force publish"] = "Forcer publication";
+$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Cocher pour forcer la publication de tous les profils du site dans l'annuaire.";
+$a->strings["No login on Homepage"] = "Pas de connexion depuis la page d'accueil";
+$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "";
+$a->strings["Proxy user"] = "Utilisateurs du proxy";
 $a->strings["Proxy URL"] = "URL du proxy";
-$a->strings["Network timeout"] = "Dépassement du délai d'attente du réseau";
-$a->strings["%s user blocked"] = array(
-	0 => "%s utilisateur bloqué",
-	1 => "%s utilisateurs (dé)bloqués",
+$a->strings["Network timeout"] = "Délai maximal du réseau";
+$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "En secondes. Mettre à 0 pour ne pas avoir de délai maximal (pas recommandé).";
+$a->strings["Delivery interval"] = "Intervalle de distribution";
+$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Temporise le processus de distribution de tant de secondes pour réduire la charge sur le système. Valeurs recommandées&nbsp;: 4-5 pour les serveurs mutualisés, 2-3 pour les VPS. 0-1 pour les gros serveurs dédiés.";
+$a->strings["Poll interval"] = "Intervalle de scrutation";
+$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Temporise le processus de scrutation en tâche de fond de tant de secondes, pour réduire la charge. Si 0, utilise l'intervalle de distribution.";
+$a->strings["Maximum Load Average"] = "Charge moyenne maximale";
+$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Charge système maximale au-delà de laquelle distribution et scrutation sont mis en pause - par défaut 50.";
+$a->strings["No server found"] = "Serveur introuvable";
+$a->strings["ID"] = "ID";
+$a->strings["for channel"] = "pour le canal";
+$a->strings["on server"] = "sur le serveur";
+$a->strings["Status"] = "État";
+$a->strings["Update has been marked successful"] = "La mise à jour a été marquée comme réussie";
+$a->strings["Executing %s failed. Check system logs."] = "L'éxecution de %s a échoué. Merci de vérifier les journaux du système.";
+$a->strings["Update %s was successfully applied."] = "La mise à jour %s a été appliquée avec succès.";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "La mise à jour %s n'a pas retourné d'information. Impossible de savoir si elle a réussi ou non.";
+$a->strings["Update function %s could not be found."] = "La fonction de mise à jour %s est introuvable.";
+$a->strings["No failed updates."] = "Aucune mise à jour défaillante.";
+$a->strings["Failed Updates"] = "Mises à jour défaillantes";
+$a->strings["Mark success (if update was manually applied)"] = "Marquer comme réussie (si la mise à jour a été réalisée manuellement)";
+$a->strings["Attempt to execute this update step automatically"] = "Tenter de réaliser cette étape de mise à jour automatiquement";
+$a->strings["%s user blocked/unblocked"] = array(
+	0 => "%s utilisateur bloqué/débloqué",
+	1 => "%s utilisateurs bloqués/débloqués",
 );
 $a->strings["%s user deleted"] = array(
 	0 => "%s utilisateur supprimé",
 	1 => "%s utilisateurs supprimés",
 );
+$a->strings["Account not found"] = "Compte introuvable";
 $a->strings["User '%s' deleted"] = "Utilisateur '%s' supprimé";
 $a->strings["User '%s' unblocked"] = "Utilisateur '%s' débloqué";
 $a->strings["User '%s' blocked"] = "Utilisateur '%s' bloqué";
 $a->strings["select all"] = "tout sélectionner";
-$a->strings["User registrations waiting for confirm"] = "Inscriptions d'utilisateurs en attente de confirmation";
+$a->strings["User registrations waiting for confirm"] = "Inscriptions en attente d'approbation";
 $a->strings["Request date"] = "Date de la demande";
-$a->strings["Email"] = "Courriel";
 $a->strings["No registrations."] = "Pas d'inscriptions.";
-$a->strings["Deny"] = "Rejetter";
+$a->strings["Approve"] = "Approuver";
+$a->strings["Deny"] = "Refuser";
+$a->strings["Block"] = "Bloquer";
+$a->strings["Unblock"] = "Débloquer";
 $a->strings["Register date"] = "Date d'inscription";
 $a->strings["Last login"] = "Dernière connexion";
-$a->strings["Last item"] = "Dernier élément";
-$a->strings["Account"] = "Compte";
-$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?";
-$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?";
+$a->strings["Expires"] = "Expire";
+$a->strings["Service Class"] = "Classe de service";
+$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Les utilisateurs sélectionnés seront supprimés!\\n\\nTout ce que ces utilisateurs ont publié sur ce site sera détruit de manière définitive!\\n\\nÊtes-vous certain?";
+$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'utilisateur {0} sera supprimé!\\n\\nTout ce que cet utilisateur a publié sur ce site sera détruit de manière définitive!\\n\\nÊtes-vous certain?";
 $a->strings["Plugin %s disabled."] = "Extension %s désactivée.";
 $a->strings["Plugin %s enabled."] = "Extension %s activée.";
 $a->strings["Disable"] = "Désactiver";
 $a->strings["Enable"] = "Activer";
-$a->strings["Toggle"] = "Activer/Désactiver";
-$a->strings["Settings"] = "Réglages";
-$a->strings["Log settings updated."] = "Réglages des journaux mis-à-jour.";
-$a->strings["Clear"] = "Effacer";
-$a->strings["Debugging"] = "Déboguage";
-$a->strings["Log file"] = "Fichier de journaux";
-$a->strings["Must be writable by web server. Relative to your Friendika index.php."] = "Doit être accessible en écriture pour le serveur web. Le chemin est relative à l'index.php de Friendica.";
-$a->strings["Log level"] = "Niveau de journalisaton";
-$a->strings["Close"] = "Fermer";
-$a->strings["FTP Host"] = "Hôte FTP";
-$a->strings["FTP Path"] = "Chemin FTP";
-$a->strings["FTP User"] = "Utilisateur FTP";
-$a->strings["FTP Password"] = "Mot de passe FTP";
-$a->strings["Unable to locate original post."] = "Impossible de localiser l'article original.";
-$a->strings["Empty post discarded."] = "Article vide défaussé.";
-$a->strings["noreply"] = "noreply";
-$a->strings["Administrator@"] = "Administrator@";
-$a->strings["%s commented on an item at %s"] = "%s a commenté un élément à %s";
-$a->strings["%s posted to your profile wall at %s"] = "%s a posté sur votre mur à %s";
-$a->strings["System error. Post not saved."] = "Erreur système. Publication non sauvée.";
-$a->strings["This message was sent to you by %s, a member of the Friendika social network."] = "Ce message vous a été envoyé par %s, un membre du réseau social Friendica.";
-$a->strings["You may visit them online at %s"] = "Vous pouvez leur rendre visite sur %s";
-$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Merci de contacter l'émeteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages.";
-$a->strings["%s posted an update."] = "%s a publié une mise à jour.";
-$a->strings["Tag removed"] = "Étiquette enlevée";
-$a->strings["Remove Item Tag"] = "Enlever l'étiquette de l'élément";
-$a->strings["Select a tag to remove: "] = "Choisir une étiquette à enlever: ";
-$a->strings["Remove"] = "Utiliser comme photo de profil";
-$a->strings["No recipient selected."] = "Pas de destinataire sélectionné.";
-$a->strings["Unable to locate contact information."] = "Impossible de localiser les informations du contact.";
-$a->strings["Message could not be sent."] = "Impossible d'envoyer le message.";
-$a->strings["Message sent."] = "Message envoyé.";
-$a->strings["Inbox"] = "Messages entrants";
-$a->strings["Outbox"] = "Messages sortants";
-$a->strings["New Message"] = "Nouveau message";
+$a->strings["Toggle"] = "(Dés)activer";
+$a->strings["Author: "] = "Auteur&nbsp;:";
+$a->strings["Maintainer: "] = "Maintenu par&nbsp;:";
+$a->strings["No themes found."] = "Aucun thème trouvé.";
+$a->strings["Screenshot"] = "Aperçu";
+$a->strings["[Experimental]"] = "[Expérimental]";
+$a->strings["[Unsupported]"] = "[Non-supporté]";
+$a->strings["Log settings updated."] = "Réglages du journal sauvegardés.";
+$a->strings["Clear"] = "Vider";
+$a->strings["Debugging"] = "Débogage";
+$a->strings["Log file"] = "Fichier du journal";
+$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Doit être accessible en écriture par le serveur web. Chemin relatif à la racine de Red.";
+$a->strings["Log level"] = "Niveau de journalisation";
+$a->strings["- select -"] = "- choisir -";
+$a->strings["Welcome to %s"] = "Bienvenue sur %s";
+$a->strings["Item not found"] = "Élément introuvable";
+$a->strings["Item is not editable"] = "Élément non-éditable";
+$a->strings["Delete item?"] = "Supprimer l'élément?";
+$a->strings["Insert YouTube video"] = "Insérer une vidéo YouTube";
+$a->strings["Insert Vorbis [.ogg] video"] = "Insérer une vidéo Vorbis [.ogg]";
+$a->strings["Insert Vorbis [.ogg] audio"] = "Insérer un son Vorbis [.ogg]";
+$a->strings["Age: "] = "Age&nbsp;:";
+$a->strings["Gender: "] = "Sexe/genre&nbsp;:";
+$a->strings["Finding:"] = "Recherche&nbsp;:";
+$a->strings["next page"] = "page suiv.";
+$a->strings["previous page"] = "page préc.";
+$a->strings["No entries (some entries may be hidden)."] = "Pas d'entrées (certaines peuvent être cachées).";
+$a->strings["Could not access contact record."] = "Impossible d'accéder aux détails du contact.";
+$a->strings["Could not locate selected profile."] = "Impossible de localiser le profil sélectionné.";
+$a->strings["Connection updated."] = "Connexion mise à jour.";
+$a->strings["Failed to update connection record."] = "Impossible de mettre à jour les détails de la relation.";
+$a->strings["Could not access address book record."] = "Impossible d'accéder aux détails du carnet d'adresses.";
+$a->strings["Refresh failed - channel is currently unavailable."] = "Actualisation impossible - le canal est momentanément indisponible.";
+$a->strings["Channel has been unblocked"] = "Le canal n'est plus bloqué";
+$a->strings["Channel has been blocked"] = "Le canal est bloqué";
+$a->strings["Unable to set address book parameters."] = "Impossible de régler les paramètres du carnet d'adresses.";
+$a->strings["Channel has been unignored"] = "Le canal n'est plus ignoré";
+$a->strings["Channel has been ignored"] = "Le canal est ignoré";
+$a->strings["Channel has been unarchived"] = "Le canal n'est plus archivé";
+$a->strings["Channel has been archived"] = "Le canal est archivé";
+$a->strings["Channel has been unhidden"] = "Le canal n'est plus caché";
+$a->strings["Channel has been hidden"] = "Le canal est caché";
+$a->strings["Channel has been approved"] = "Le canal est approuvé";
+$a->strings["Channel has been unapproved"] = "Le canal n'est plus approuvé";
+$a->strings["Contact has been removed."] = "Le canal a été supprimé";
+$a->strings["View %s's profile"] = "Voir le profil de %s";
+$a->strings["Refresh Permissions"] = "Actualiser les permissions";
+$a->strings["Fetch updated permissions"] = "Récupérer les permissions les plus récentes";
+$a->strings["Recent Activity"] = "Activité récente";
+$a->strings["View recent posts and comments"] = "Voir les contributions et commentaires récentes";
+$a->strings["Block or Unblock this connection"] = "Bloquer ou Débloquer cette relation";
+$a->strings["Unignore"] = "Ne plus ignorer";
+$a->strings["Ignore"] = "Ignorer";
+$a->strings["Ignore or Unignore this connection"] = "Ignorer ou ne plus ignorer cette relation";
+$a->strings["Unarchive"] = "Ne plus archiver";
+$a->strings["Archive"] = "Archiver";
+$a->strings["Archive or Unarchive this connection"] = "Archiver ou ne plus archiver cette relation";
+$a->strings["Unhide"] = "Ne plus cacher";
+$a->strings["Hide"] = "Cacher";
+$a->strings["Hide or Unhide this connection"] = "Cacher ou ne plus cacher cette relation";
+$a->strings["Delete this connection"] = "Supprimer cette relation";
+$a->strings["Unknown"] = "Inconnu";
+$a->strings["Approve this connection"] = "Approuver cette relation";
+$a->strings["Accept connection to allow communication"] = "Accepter la relation pour permettre la communication";
+$a->strings["Automatic Permissions Settings"] = "Permissions automatiques";
+$a->strings["Connections: settings for %s"] = "Relations&nbsp;: réglages pour %s";
+$a->strings["When receiving a channel introduction, any permissions provided here will be applied to the new connection automatically and the introduction approved. Leave this page if you do not wish to use this feature."] = "Pour chaque introduction reçue, toutes les permissions définies ici seront appliquées aux nouvelles relations automatiquement, et l'introduction sera approuvée. Laissez cette page telle quelle si vous ne souhaitez pas utiliser ce mécanisme.";
+$a->strings["Slide to adjust your degree of friendship"] = "Faites glisser pour ajuster le niveau de la relation";
+$a->strings["inherited"] = "par héritage";
+$a->strings["Connection has no individual permissions!"] = "Cette relation n'a aucune permission spécifique!";
+$a->strings["This may be appropriate based on your <a href=\"settings\">privacy settings</a>, though you may wish to review the \"Advanced Permissions\"."] = "Ceci devrait correspondre à vos <a href=\"settings\">réglages de vie privée</a>, mais vous pouvez toujours contrôler les \"Permissions avancées\".";
+$a->strings["Profile Visibility"] = "Visibilité du profil";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Merci de choisir le profil que vous souhaitez montrer quand %s visite votre profil de manière authentifiée.";
+$a->strings["Contact Information / Notes"] = "Notes / Information de contact";
+$a->strings["Edit contact notes"] = "Éditer les notes du contact";
+$a->strings["Their Settings"] = "Ses réglages";
+$a->strings["My Settings"] = "Mes réglages";
+$a->strings["Forum Members"] = "Membres de forum";
+$a->strings["Soapbox"] = "Boîte à savon";
+$a->strings["Full Sharing (typical social network permissions)"] = "Partage complet (fonctionnement habituel des réseaux sociaux)";
+$a->strings["Cautious Sharing "] = "Partage modéré";
+$a->strings["Follow Only"] = "Suivi uniquement";
+$a->strings["Individual Permissions"] = "Permissions spécifiques";
+$a->strings["Some permissions may be inherited from your channel <a href=\"settings\">privacy settings</a>, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = "Certaines permissions peuvent être héritées de vos <a href=\"settings\">réglages de vie privée</a>, lesquels sont prioritaires sur les réglages spécifiques. Changer ces permissions héritées sur la présente page n'aura aucun effet.";
+$a->strings["Advanced Permissions"] = "Permissions avancées";
+$a->strings["Simple Permissions (select one and submit)"] = "Permissions simples (en choisir une, puis valider)";
+$a->strings["Visit %s's profile - %s"] = "Visiter le profil de %s - %s";
+$a->strings["Block/Unblock contact"] = "Bloquer/Débloquer le contact";
+$a->strings["Ignore contact"] = "Ignorer le contact";
+$a->strings["Repair URL settings"] = "Réparer les réglages d'URL";
+$a->strings["View conversations"] = "Voir les conversations";
+$a->strings["Delete contact"] = "Supprimer le contact";
+$a->strings["Last update:"] = "Dernière mise-à-jour&nbsp;:";
+$a->strings["Update public posts"] = "Mettre à jour les publications";
+$a->strings["Update now"] = "Mettre à jour maintenant";
+$a->strings["Currently blocked"] = "Actuellement bloqué";
+$a->strings["Currently ignored"] = "Actuellement ignoré";
+$a->strings["Currently archived"] = "Actuellement archivé";
+$a->strings["Currently pending"] = "Actuellement en attente";
+$a->strings["Hide this contact from others"] = "Dissimuler ce contact aux autres";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Les réponses et autres réactions à vos contributions publiques <strong>pourraient</strong> être toujours visibles";
+$a->strings["Layout Help"] = "Aide à la mise en page";
+$a->strings["Help with this feature"] = "Aide avec cette fonctionnalité";
+$a->strings["Layout Name"] = "Nom de la mise-en-page";
+$a->strings["Help:"] = "Aide&nbsp;:";
+$a->strings["Not Found"] = "Introuvable";
+$a->strings["Page not found."] = "Page introuvable.";
+$a->strings["Remote Authentication"] = "Authentification distante";
+$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Entrez l'adresse de votre canal (p.ex. moncanal@monsite.com)";
+$a->strings["Authenticate"] = "Authentifier";
+$a->strings["Invalid item."] = "Élément invalide.";
+$a->strings["No such group"] = "Rien de tel comme groupe";
+$a->strings["Search Results For:"] = "Résultats de recherche pour&nbsp;:";
+$a->strings["Collection is empty"] = "Collection vide";
+$a->strings["Collection: "] = "Collection&nbsp;:";
+$a->strings["Connection: "] = "Relation&nbsp;:";
+$a->strings["Invalid connection."] = "Relation invalide.";
+$a->strings["Profile not found."] = "Profil introuvable.";
+$a->strings["Profile deleted."] = "Profil supprimé.";
+$a->strings["Profile-"] = "Profil-";
+$a->strings["New profile created."] = "Nouveau profil créé.";
+$a->strings["Profile unavailable to clone."] = "Profil impossible à cloner.";
+$a->strings["Profile Name is required."] = "Le nom du profil est requis.";
+$a->strings["Marital Status"] = "Statut marital";
+$a->strings["Romantic Partner"] = "Partenaire";
+$a->strings["Likes"] = "Aime";
+$a->strings["Dislikes"] = "Déteste";
+$a->strings["Work/Employment"] = "Travail/Occupation";
+$a->strings["Religion"] = "Religion/Croyance";
+$a->strings["Political Views"] = "Opinions politiques";
+$a->strings["Gender"] = "Sexe/Genre";
+$a->strings["Sexual Preference"] = "Préférence sexuelle";
+$a->strings["Homepage"] = "Site Internet";
+$a->strings["Interests"] = "Centres d'intérêt";
+$a->strings["Address"] = "Adresse";
+$a->strings["Location"] = "Localisation";
+$a->strings["Profile updated."] = "Profil mis à jour.";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Cacher vos contacts/relations aux visiteurs de ce profil?";
+$a->strings["Edit Profile Details"] = "Éditer les détails du profil";
+$a->strings["View this profile"] = "Voir le profil";
+$a->strings["Change Profile Photo"] = "Changer la photo du profil";
+$a->strings["Create a new profile using these settings"] = "Créer un nouveau profil avec ces réglages";
+$a->strings["Clone this profile"] = "Cloner le profil";
+$a->strings["Delete this profile"] = "Supprimer le profil";
+$a->strings["Profile Name:"] = "Nom du profil&nbsp;:";
+$a->strings["Your Full Name:"] = "Votre nom complet&nbsp;:";
+$a->strings["Title/Description:"] = "Titre/description&nbsp;:";
+$a->strings["Your Gender:"] = "Sexe/Genre&nbsp;:";
+$a->strings["Birthday (%s):"] = "Date de naissance (%s)&nbsp;:";
+$a->strings["Street Address:"] = "Adresse postale&nbsp;:";
+$a->strings["Locality/City:"] = "Ville/Localité&nbsp;:";
+$a->strings["Postal/Zip Code:"] = "Code postal&nbsp;:";
+$a->strings["Country:"] = "Pays&nbsp;:";
+$a->strings["Region/State:"] = "Région/Province/État&nbsp;:";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span>Statut marital&nbsp;:";
+$a->strings["Who: (if applicable)"] = "Avec&nbsp;: (si pertinent)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples&nbsp;: cathy123, Cathy Williams, cathy@exemple.com";
+$a->strings["Since [date]:"] = "Depuis [date]&nbsp;:";
+$a->strings["Homepage URL:"] = "URL de mon site Internet&nbsp;:";
+$a->strings["Religious Views:"] = "Opinions religieuses&nbsp;:";
+$a->strings["Keywords:"] = "Mots-clefs&nbsp;:";
+$a->strings["Example: fishing photography software"] = "Exemple&nbsp;: escrime photographie modélisme";
+$a->strings["Used in directory listings"] = "Utilisé pour le référencement dans l'annuaire";
+$a->strings["Tell us about yourself..."] = "Parlez nous de vous...";
+$a->strings["Hobbies/Interests"] = "Loisirs/Centres d'intêret";
+$a->strings["Contact information and Social Networks"] = "Coordonnées et réseaux sociaux";
+$a->strings["My other channels"] = "Mes autres canaux";
+$a->strings["Musical interests"] = "Goûts musicaux";
+$a->strings["Books, literature"] = "Littérature";
+$a->strings["Television"] = "Télévision";
+$a->strings["Film/dance/culture/entertainment"] = "Cinéma/Danse/Culture/Divertissement";
+$a->strings["Love/romance"] = "Amour/Romance";
+$a->strings["Work/employment"] = "Travail/Occupation";
+$a->strings["School/education"] = "Études";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Ceci est votre profil <strong>public</strong>.<br />Il <strong>pourrait</strong> être visible par tout utilisateur - fut-il anonyme - d'Internet.";
+$a->strings["Edit/Manage Profiles"] = "Éditer/gérer les profils";
+$a->strings["Add profile things"] = "Ajouter des choses de profil";
+$a->strings["Include desirable objects in your profile"] = "Incluez des objets souhaitables dans votre profil";
+$a->strings["Channel added."] = "Canal ajouté.";
+$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Authentification distante bloquée. Vous êtes connecté sur ce site localement. Merci de vous en déconnecter et de recommencer.";
+$a->strings["Welcome %s. Remote authentication successful."] = "Bienvenue %s. L'authentification distante a fonctionné.";
+$a->strings["This site is not a directory server"] = "Ce site n'est pas un serveur d'annuaire";
+$a->strings["Failed to create source. No channel selected."] = "Impossible de créer la source. Aucun canal selectionné.";
+$a->strings["Source created."] = "Source créée.";
+$a->strings["Source updated."] = "Source mise à jour.";
+$a->strings["*"] = "";
+$a->strings["Manage remote sources of content for your channel."] = "Gérer les sources distantes du contenu de votre canal.";
+$a->strings["New Source"] = "Nouvelle source";
+$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importer tout ou partie du contenu du canal suivant dans le canal en cours, et le distribuer en concordance avec les réglages de votre canal.";
+$a->strings["Only import content with these words (one per line)"] = "N'importer le contenu que s'ils contient ces mots (un par ligne)";
+$a->strings["Leave blank to import all public content"] = "Laissez en blanc pour importer tout le contenu public";
+$a->strings["Channel Name"] = "Nom du canal";
+$a->strings["Source not found."] = "Source introuvable.";
+$a->strings["Edit Source"] = "Éditer source";
+$a->strings["Delete Source"] = "Supprimer source";
+$a->strings["Source removed"] = "Source supprimée";
+$a->strings["Unable to remove source."] = "Impossible de supprimer la source.";
+$a->strings["Remote privacy information not available."] = "Les informations de vie privée à distance ne sont pas disponibles.";
+$a->strings["Visible to:"] = "Visible par&nbsp;:";
+$a->strings["Hub not found."] = "Instance introuvable.";
+$a->strings["Red Matrix Server - Setup"] = "Serveur Red Matrix - Configuration";
+$a->strings["Could not connect to database."] = "Impossible de se connecter à la base de données.";
+$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Impossible de se connecter au site par l'URL indiquée. Problème potentiel de certificat SSL/TLS ou de DNS.";
+$a->strings["Could not create table."] = "Impossible de créer la table.";
+$a->strings["Your site database has been installed."] = "La base de données de votre site a été installée.";
+$a->strings["You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql."] = "Vous pourriez avoir besoin d'importer le fichier \"install/database.sql\" manuellement via phpmyadmin ou mysql.";
+$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Merci de consulter le fichier \"install/INSTALL.txt\".";
+$a->strings["System check"] = "Vérification du système";
+$a->strings["Check again"] = "Re-vérifier";
+$a->strings["Database connection"] = "Connexion à la base de données";
+$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "Pour installer Red Matrix, nous avons besoin de savoir comment contacter votre base de données.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Merci de contacter votre prestataire d'hébergement ou votre administration système si vous avez des doutes à propos de ces paramètres.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de données que vous allez spécifier doit exister. Si ce n'est pas déjà le cas, merci de la créer avant de continuer.";
+$a->strings["Database Server Name"] = "Nom du serveur de BD";
+$a->strings["Default is localhost"] = "Par défaut, localhost";
+$a->strings["Database Port"] = "Port du serveur";
+$a->strings["Communication port number - use 0 for default"] = "Numéro TCP du port - utilisez 0 pour la valeur par défaut";
+$a->strings["Database Login Name"] = "Identifiant de connexion à la BD";
+$a->strings["Database Login Password"] = "Mot de passe de connexion à la BD";
+$a->strings["Database Name"] = "Nom de la base de données";
+$a->strings["Site administrator email address"] = "Adresse de courriel de l'administrateur du site";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Votre compte devra utiliser la même adresse de courriel pour pouvoir utiliser l'administration web.";
+$a->strings["Website URL"] = "URL du site";
+$a->strings["Please use SSL (https) URL if available."] = "Merci d'utiliser SSL/TLS (https) autant que possible.";
+$a->strings["Please select a default timezone for your website"] = "Merci de choisir une zone de temps (fuseau horaire) pour votre site";
+$a->strings["Site settings"] = "Réglages du site";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Impossible de trouver une version CLI de PHP dans le PATH du serveur web.";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "En l'absence de version CLI de PHP sur votre serveur, vous ne pourrez pas utiliser la mise-à-jour en arrière-plan via cron.";
+$a->strings["PHP executable path"] = "Chemin vers l'éxecutable PHP";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Entrez le chemin complet vers l'exécutable php. Vous pouvez continuer l'installation sans.";
+$a->strings["Command line PHP"] = "PHP en ligne de commande (CLI)";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La version CLI de PHP sur votre système n'a pas l'option \"register_argc_argv\" activée.";
+$a->strings["This is required for message delivery to work."] = "Elle est nécessaire pour la livraison de messages.";
+$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Erreur&nbsp;: la fonction \"openssl_pkey_new\" de ce système n'est pas capable de générer des clefs de chiffrement";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si vous êtes sur un serveur Windows, merci de consulter \"http://www.php.net/manual/fr/openssl.installation.php\".";
+$a->strings["Generate encryption keys"] = "Générer les clefs de chiffrement";
+$a->strings["libCurl PHP module"] = "module PHP libCurl";
+$a->strings["GD graphics PHP module"] = "module PHP GD graphics";
+$a->strings["OpenSSL PHP module"] = "module PHP OpenSSL";
+$a->strings["mysqli PHP module"] = "module PHP mysqli";
+$a->strings["mb_string PHP module"] = "module PHP mb_string";
+$a->strings["mcrypt PHP module"] = "module PHP mcrypt";
+$a->strings["Apache mod_rewrite module"] = "module Apache mod_rewrite";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erreur&nbsp;: le module mod-rewrite du serveur web Apache est requis, mais pas installé.";
+$a->strings["proc_open"] = "proc_open";
+$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Erreur&nbsp;: proc_open est requis, mais soit n'est pas installé, soit est désactivé dans le php.ini";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Erreur&nbsp;: le module libCURL de PHP est requis, mais pas installé.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erreur&nbsp;: le module GD de PHP (avec support JPEG) est requis, mais pas installé.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Erreur&nbsp;: le module openssl de PHP est requis, mais pas installé.";
+$a->strings["Error: mysqli PHP module required but not installed."] = "Erreur&nbsp;: le module mysqli de PHP est requis, mais pas installé.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Erreur&nbsp;: le module mb_string de PHP est requis, mais pas installé.";
+$a->strings["Error: mcrypt PHP module required but not installed."] = "Erreur&nbsp;: le module mcrypt de PHP est requis, mais pas installé.";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\ in the top folder of your web server and it is unable to do so."] = "L'installeur web a besoin de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais en est incapable.";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "C'est généralement lié à un problème de droits, à cause duquel le serveur web est interdit d'écriture dans le répertoire concerné - alors que votre propre utilisateur a le droit.";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Au terme de cette procédure, nous vous transmettrons un texte à sauvegarder dans un fichier nommé .htconfig.php, à la racine de votre installation de Red.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Autrement, vous pouvez contourner toute cette procédure et réaliser l'installation manuellement. Merci de consulter le fichier \"install/INSTALL.txt\" pour les instructions détaillées.";
+$a->strings[".htconfig.php is writable"] = "Le fichier .htconfig.php est accessible en écriture";
+$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red utilise le moteur de template Smarty3 pour mettre son contenu en forme. Smarty3 compile ses templates vers du PHP natif pour accélérer le rendu.";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/tpl/smarty3/ under the Red top level folder."] = "Pour stocker ces templates compilées, le serveur web nécessite de pouvoir écrire dans le répertoire <racine de red>view/tpl/smarty3/.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Merci de vous assurer que l'utilisateur sous lequel le serveur web tourne (le plus souvent, www-data) a bien l'autorisation d'écrire dans ce répertoire.";
+$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."] = "Note&nbsp;: pour renforcer la sécurité, vous pouvez décider de ne donner l'accès en écrire qu'au répertoire view/tpl/smarty3 - et pas aux fichiers de templates (.tpl) qu'il contient.";
+$a->strings["view/tpl/smarty3 is writable"] = "view/tpl/smarty3 est accessible en écriture";
+$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 utilise le répertoire 'store' - situé à la racine de Red - pour sauvegarder les fichiers envoyés. Le serveur web aura donc besoin de pouvoir y écrire.";
+$a->strings["store is writable"] = "'store' est accessible en écriture";
+$a->strings["SSL certificate validation"] = "Validation du certificat SSL/TLS";
+$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Le certificat SSL/TLS n'a pas pu être validé. Merci de le corriger, ou de désactiver l'accès https à ce site.";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La réécriture d'URL définie dans le .htaccess ne fonctionne pas. Merci de vérifier la configuration de votre serveur web.";
+$a->strings["Url rewrite is working"] = "La réécriture d'URL fonctionne";
+$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Le fichier de configuration de la base de données - \".htconfig.php\" - ne peut être écrit. Merci de copier le texte généré dans un fichier à ce nom, à la racine de votre serveur web.";
+$a->strings["Errors encountered creating database tables."] = "Erreurs rencontrées pendant la création de tables de BD.";
+$a->strings["<h1>What next</h1>"] = "<h1>Et maintenant</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT&nbsp;: Vous devez créer [manuellement] une tâche planifiée pour les mises-à-jour.";
+$a->strings["Version %s"] = "Version %s";
+$a->strings["Installed plugins/addons/apps:"] = "Extensions/applications installées&nbsp;:";
+$a->strings["No installed plugins/addons/apps"] = "Aucune extension/application installée";
+$a->strings["Red"] = "Red";
+$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralised privacy enhanced websites."] = "Ceci est une instance - un hub - de la Matrice Red - un réseau global et coopératif de sites web qui respectent la vie privée de manière décentralisée/acentrée.";
+$a->strings["Running at web location"] = "En train de tourner chez";
+$a->strings["Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more about the Red Matrix."] = "Merci de visiter <a href=\"http://getzot.com\">GetZot.com</a> pour en apprendre davantage sur la Matrice Red.";
+$a->strings["Bug reports and issues: please visit"] = "Pour remonter bogues et problèmes, merci de visiter";
+$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Suggestions, demandes, etc. - merci de vous adresser à \"redmatrix\" à librelist - point com";
+$a->strings["Site Administrators"] = "Administrateurs du site";
+$a->strings["Add a Channel"] = "Ajouter un canal";
+$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."] = "Un canal est une collection de pages web reliées entre elles, sous votre contrôle. Il peut contenir des profils de réseau social, des blogs, des groupes de conversation, des forums, des pages de célébrités, et bien plus encore. Vous pouvez créer autant de canaux que votre fournisseur vous y autorise.";
+$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Exemples&nbsp;: \"Bob Jameson\", \"Lisa et ses chevaux sauvages\", \"Football\", \"Groupe des amateurs de tir à l'arc\"";
+$a->strings["Choose a short nickname"] = "Choisissez un nom court";
+$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Ce nom court sera utilisé pour créer une adresse de canal, facile à retenir - un peu comme une adresse de courriel - que vous pourrez partager avec d'autres.";
+$a->strings["Or <a href=\"import\">import an existing channel</a> from another location"] = "Ou <a href=\"import\">importez un canal existant</a> à un autre endroit";
+$a->strings["No valid account found."] = "Aucun compte valide trouvé.";
+$a->strings["Password reset request issued. Check your email."] = "Réinitialisation du mot de passe demandée. Vérifiez vos courriels.";
+$a->strings["Site Member (%s)"] = "Membre du site (%s)";
+$a->strings["Password reset requested at %s"] = "Demande de réinitialisation de mot de passe sur %s";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La demande n'a pas pu être vérifiée. (Peut-être l'avez vous déjà utilisée.) La réinitialisation a échoué.";
+$a->strings["Password Reset"] = "Réinitialiser le mot de passe";
+$a->strings["Your password has been reset as requested."] = "Votre mot de passe a bien été réinitialisé.";
+$a->strings["Your new password is"] = "Votre nouveau mot de passe est";
+$a->strings["Save or copy your new password - and then"] = "Sauvez-le ou copiez-le, puis";
+$a->strings["click here to login"] = "cliquez ici pour vous connecter";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Votre mot de passe peut être changé depuis la page des <em>Réglages</em> une fois connecté.";
+$a->strings["Your password has changed at %s"] = "Votre mot de passe de %s a été changé";
+$a->strings["Forgot your Password?"] = "Mot de passe oublié?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Saisissez votre adresse de courriel, et validez, pour réinitialiser votre mot de passe. Vérifiez ensuite votre boîte à lettres pour la suite des instructions.";
+$a->strings["Email Address"] = "Adresse de courriel";
+$a->strings["Reset"] = "Réinitialiser";
+$a->strings["Nothing to import."] = "Rien à importer.";
+$a->strings["Unable to download data from old server"] = "Impossible de récupérer les données de l'ancien serveur";
+$a->strings["Imported file is empty."] = "Le fichier importé est vide.";
+$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Impossible de créer un doublon d'un identifiant de canal. L'import a échoué.";
+$a->strings["Channel clone failed. Import failed."] = "Le clonage du canal a échoué. L'import a échoué.";
+$a->strings["Cloned channel not found. Import failed."] = "Le canal cloné n'a pas été trouvé. L'import a échoué.";
+$a->strings["Import completed."] = "L'import est terminé.";
+$a->strings["You must be logged in to use this feature."] = "Vous devez vous connecter pour utiliser cette fonctionnalité.";
+$a->strings["Import Channel"] = "Importation de canal";
+$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = "Utilisez ce formulaire pour importer un canal existant sur un serveur différent. Vous pouvez récupérer l'identité du canal sur l'ancien serveur directement par le réseau, ou bien fournir un fichier d'export. Seules les données d'identité et de relations seront importées. L'importation des contenus n'est pas encore disponible.";
+$a->strings["File to Upload"] = "Fichier à envoyer";
+$a->strings["Or provide the old server/hub details"] = "Ou fournissez les détails de l'ancien serveur";
+$a->strings["Your old identity address (xyz@example.com)"] = "Votre ancienne identité (zyx@exemple.com)";
+$a->strings["Your old login email address"] = "Votre ancienne adresse de courriel";
+$a->strings["Your old login password"] = "Votre ancien mot de passe";
+$a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Quelle que soit l'option choisie, merci de décider si cette nouvelle adresse sera la primaire, ou si votre ancienne adresse continuera à jouer ce rôle. Vous pourrez publier depuis l'adresse de votre choix, mais une seule peut être déclarée comme stockage primaire de vos fichiers/photos/media.";
+$a->strings["Make this hub my primary location"] = "Faire de cette adresse ma principale";
+$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Vous avez créé %1$.0f des %2$.0f canaux autorisés.";
+$a->strings["Create a new channel"] = "Créer un nouveau canal";
+$a->strings["Channel Manager"] = "Gestionnaire du canal";
+$a->strings["Current Channel"] = "Canal actif";
+$a->strings["Attach to one of your channels by selecting it."] = "Branchez-vous à l'un de vos canaux en le selectionnant.";
+$a->strings["Default Channel"] = "Canal par défaut";
+$a->strings["Make Default"] = "Définir comme défaut";
+$a->strings["Total votes"] = "Suffrages exprimés";
+$a->strings["Average Rating"] = "Note moyenne";
+$a->strings["Profile Match"] = "Profils similaires";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clef à comparer. Merci d'ajouter des mots-clefs à votre profil par défaut.";
+$a->strings["is interested in:"] = "s'intéresse à&nbsp;:";
+$a->strings["No matches"] = "Pas de correspondance";
+$a->strings["invalid target signature"] = "signature de la cible invalide";
+$a->strings["Unable to lookup recipient."] = "Impossible de localiser le destinataire.";
+$a->strings["Unable to communicate with requested channel."] = "Impossible de communiquer avec le canal demandé.";
+$a->strings["Cannot verify requested channel."] = "Impossible de vérifier le canal demandé.";
+$a->strings["Selected channel has private message restrictions. Send failed."] = "Le canal choisi a des restrictions quant aux messages privés. L'envoi a échoué.";
+$a->strings["Messages"] = "Messages";
 $a->strings["Message deleted."] = "Message supprimé.";
-$a->strings["Conversation removed."] = "Conversation supprimée.";
-$a->strings["Please enter a link URL:"] = "Entrez un lien web:";
-$a->strings["Send Private Message"] = "Envoyer un message privé";
-$a->strings["To:"] = "À:";
-$a->strings["Subject:"] = "Sujet:";
-$a->strings["No messages."] = "Aucun message.";
-$a->strings["Delete conversation"] = "Effacer conversation";
-$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
-$a->strings["Message not available."] = "Message indisponible.";
-$a->strings["Delete message"] = "Effacer message";
-$a->strings["Send Reply"] = "Répondre";
-$a->strings["Response from remote site was not understood."] = "Réponse du site distant incomprise.";
-$a->strings["Unexpected response from remote site: "] = "Réponse inattendue du site distant: ";
-$a->strings["Confirmation completed successfully."] = "Confirmation achevée avec succès.";
-$a->strings["Remote site reported: "] = "Alerte du site distant: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Échec temporaire. Merci de recommencer ultérieurement.";
-$a->strings["Introduction failed or was revoked."] = "Introduction échouée ou annulée.";
-$a->strings["Unable to set contact photo."] = "Impossible de définir la photo du contact.";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s est désormais lié à %2\$s";
-$a->strings["No user record found for '%s' "] = "Pas d'utilisateur trouvé pour '%s' ";
-$a->strings["Our site encryption key is apparently messed up."] = "Notre clé de chiffrement de site est apparemment corrompue.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "URL de site absente ou indéchiffrable.";
-$a->strings["Contact record was not found for you on our site."] = "Pas d'entrée pour ce contact sur notre site.";
-$a->strings["Site public key not available in contact record for URL %s."] = "La clé publique du site ne se trouve pas dans l'enregistrement du contact pour l'URL %s.";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'identifiant fourni par votre système fait doublon sur le notre. Cela peut fonctionner si vous réessayez.";
-$a->strings["Unable to set your contact credentials on our system."] = "Impossible de vous définir des permissions sur notre système.";
-$a->strings["Unable to update your contact profile details on our system"] = "Impossible de mettre les détails de votre profil à jour sur notre système";
-$a->strings["Connection accepted at %s"] = "Connexion acceptée avec %s";
-$a->strings["Login failed."] = "Échec de connexion.";
-$a->strings["Welcome "] = "Bienvenue ";
-$a->strings["Please upload a profile photo."] = "Merci d'illustrer votre profil d'une image.";
-$a->strings["Welcome back "] = "Bienvenue à nouveau, ";
-$a->strings["%s welcomes %s"] = "%s accueille %s";
-$a->strings["View Contacts"] = "Voir les contacts";
-$a->strings["No contacts."] = "Aucun contact.";
-$a->strings["Group created."] = "Groupe créé.";
-$a->strings["Could not create group."] = "Impossible de créer le groupe.";
-$a->strings["Group not found."] = "Groupe introuvable.";
-$a->strings["Group name changed."] = "Groupe renommé.";
-$a->strings["Create a group of contacts/friends."] = "Créez un groupe de contacts/amis.";
-$a->strings["Group Name: "] = "Nom du groupe: ";
-$a->strings["Group removed."] = "Groupe enlevé.";
-$a->strings["Unable to remove group."] = "Impossible d'enlever le groupe.";
-$a->strings["Group Editor"] = "Éditeur de groupe";
-$a->strings["Members"] = "Membres";
-$a->strings["All Contacts"] = "Tout les contacts";
-$a->strings["Item not available."] = "Elément non disponible.";
-$a->strings["Item was not found."] = "Element introuvable.";
-$a->strings["Common Friends"] = "Amis communs";
-$a->strings["No friends in common."] = "Pas d'amis communs";
-$a->strings["Profile Match"] = "Correpondance de profils";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut.";
+$a->strings["Message recalled."] = "Message annulé/rappelé.";
+$a->strings["Send Private Message"] = "Envoyer un Message Privé";
+$a->strings["To:"] = "À&nbsp;:";
+$a->strings["Subject:"] = "Sujet&nbsp;:";
+$a->strings["Message not found."] = "Message introuvable.";
+$a->strings["Delete message"] = "Supprimer message";
+$a->strings["Recall message"] = "Rappeler/annuler le message";
+$a->strings["Message has been recalled."] = "Le message a été rappelé.";
+$a->strings["Private Conversation"] = "Conversation privée";
+$a->strings["Delete conversation"] = "Supprimer conversation";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Aucune communication sécurisée n'est possible en l'état. Vous pourrez <strong>peut-être</strong> répondre depuis la page de profil de l'émetteur.";
+$a->strings["Send Reply"] = "Envoyer une réponse";
+$a->strings["Edit Layout"] = "Éditer mise-en-page";
+$a->strings["Delete layout?"] = "Supprimer la mise-en-page?";
+$a->strings["Delete Layout"] = "Supprimer mise-en-page";
+$a->strings["Image uploaded but image cropping failed."] = "L'image a été téléversée, mais le recadrage a échoué.";
+$a->strings["Image resize failed."] = "Le retaillage de l'image a échoué.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shirt-rechargez votre page, ou videz le cache du navigateur si la photo ne s'affiche pas immédiatement.";
+$a->strings["Image exceeds size limit of %d"] = "L'image dépasse la taille limite de %d";
+$a->strings["Unable to process image."] = "Impossible de traîter l'image.";
+$a->strings["Photo not available."] = "Photo inaccessible.";
+$a->strings["Upload File:"] = "Fichier&nbsp;:";
+$a->strings["Select a profile:"] = "Choisir un profil&nbsp;:";
+$a->strings["Upload Profile Photo"] = "Téléverser une photo de profil";
+$a->strings["Upload"] = "Envoyer";
+$a->strings["skip this step"] = "passer cette étape";
+$a->strings["select a photo from your photo albums"] = "choisir une photo dans vos albums";
+$a->strings["Crop Image"] = "Recadrer l'image";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Merci d'ajuter le cadre pour une visualisation optimale.";
+$a->strings["Done Editing"] = "J'ai terminé";
+$a->strings["Image uploaded successfully."] = "Image téléversée avec succès.";
+$a->strings["Image upload failed."] = "Le téléversement a échoué.";
+$a->strings["Image size reduction [%s] failed."] = "La réduction de taille [%s] a échoué.";
+$a->strings["Blocked"] = "Bloqué";
+$a->strings["Ignored"] = "Ignoré";
+$a->strings["Hidden"] = "Caché";
+$a->strings["Archived"] = "Archivé";
+$a->strings["All"] = "Tout";
+$a->strings["Suggest new connections"] = "Suggérer de nouvelles relations";
+$a->strings["Show pending (new) connections"] = "Voir les (nouvelles) relations en attente";
+$a->strings["Show all connections"] = "Voir toutes les relations";
+$a->strings["Unblocked"] = "Non bloquées";
+$a->strings["Only show unblocked connections"] = "Ne montrer que les relations non-bloquées";
+$a->strings["Only show blocked connections"] = "Ne montrer que les relations bloquées";
+$a->strings["Only show ignored connections"] = "Ne montrer que les relations ignorées";
+$a->strings["Only show archived connections"] = "Ne montrer que les relations archivées";
+$a->strings["Only show hidden connections"] = "Ne montrer que les relations cachées";
+$a->strings["%1\$s [%2\$s]"] = "";
+$a->strings["Edit contact"] = "Éditer contact";
+$a->strings["Search your connections"] = "Chercher parmi vos relations";
+$a->strings["Finding: "] = "Recherche&nbsp;:";
+$a->strings["Invalid request identifier."] = "Identifiant de requête invalide.";
+$a->strings["Discard"] = "Défausser";
+$a->strings["No more system notifications."] = "Pas d'autre notification du système.";
+$a->strings["System Notifications"] = "Notifications du système";
+$a->strings["Block Name"] = "Nom du bloc";
+$a->strings["Unable to find your hub."] = "Impossible de trouver votre instance.";
+$a->strings["Post successful."] = "Contribution effectuée.";
+$a->strings["Edit Webpage"] = "Éditer page web";
+$a->strings["Delete webpage?"] = "Supprimer la page web?";
+$a->strings["Delete Webpage"] = "Supprimer page web";
+$a->strings["Access to this profile has been restricted."] = "L'accès à ce profil a été restreint.";
+$a->strings["Poke/Prod"] = "Tapoter/Solliciter";
+$a->strings["poke, prod or do other things to somebody"] = "Tapoter, pointer, et autres choses à faire à quelqu'un";
+$a->strings["Recipient"] = "Destinataire";
+$a->strings["Choose what you wish to do to recipient"] = "Choisir quoi lui faire";
+$a->strings["Make this post private"] = "Rendre cette contribution privée";
+$a->strings["Insufficient permissions.  Request redirected to profile page."] = "Permissions insuffisantes. Demande redirigée à la page du profil.";
 $a->strings["Not available."] = "Indisponible.";
 $a->strings["Community"] = "Communauté";
-$a->strings["Shared content is covered by the <a href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons Attribution 3.0</a> license."] = "Le contenu est partagé suivant les termes de la licence <a href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons Attribution 3.0</a>.";
-$a->strings["Post to Tumblr"] = "Publier sur Tumblr";
-$a->strings["Tumblr Post Settings"] = "Réglages de Tumblr";
-$a->strings["Enable Tumblr Post Plugin"] = "Activer l'extension Tumblr";
-$a->strings["Tumblr login"] = "Login Tumblr";
-$a->strings["Tumblr password"] = "Mot de passe Tumblr";
-$a->strings["Post to Tumblr by default"] = "Publier sur Tumblr par défaut";
-$a->strings["Post from Friendica"] = "Publier depuis Friendica";
-$a->strings["Post to Twitter"] = "Poster sur Twitter";
-$a->strings["Twitter settings updated."] = "Réglages de Twitter mis-à-jour.";
-$a->strings["Twitter Posting Settings"] = "Réglages du connecteur Twitter";
-$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Pas de paire de clés pour Twitter. Merci de contacter l'administrateur du site.";
-$a->strings["At this Friendika instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter."] = "Sur cette instance de Friendika, le connecteur Twitter a été activé, mais vous n'avez pas encore connecté votre compte à Twitter. Pour ce faire, cliquez sur le bouton ci-dessous pour obtenir un PIN de Twitter, que vous aurez à coller dans la boîte ci-dessous. Ensuite, validez le formulaire. Seuls vos articles &lt;strong&gt;publics&lt;/strong&gt; seront postés sur Twitter.";
-$a->strings["Log in with Twitter"] = "Se connecter à Twitter";
-$a->strings["Copy the PIN from Twitter here"] = "Copier le PIN de Twitter ici";
-$a->strings["Currently connected to: "] = "Actuellement connecté à: ";
-$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "En cas d'activation, toutes vos notices <strong>publiques</strong> seront transmises au compte Twitter associé. Vous pourrez choisir de le faire par défaut (ici), ou bien pour chaque notice séparément lors de sa rédaction.";
-$a->strings["Allow posting to Twitter"] = "Autoriser la publication sur Twitter";
-$a->strings["Send public postings to Twitter by default"] = "Envoyer les éléments publics sur Twitter par défaut";
-$a->strings["Clear OAuth configuration"] = "Effacer la configuration OAuth";
-$a->strings["Consumer key"] = "Clé utilisateur";
-$a->strings["Consumer secret"] = "Secret utilisateur";
-$a->strings["Post to StatusNet"] = "Poster sur StatusNet";
-$a->strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "Merci de contacter l'administrateur du site.<br />L'URL d'API fournie est invalide.";
-$a->strings["We could not contact the StatusNet API with the Path you entered."] = "Nous n'avons pas pu contacter l'API StatusNet avec le chemin saisi.";
-$a->strings["StatusNet settings updated."] = "Réglages StatusNet mis-à-jour.";
-$a->strings["StatusNet Posting Settings"] = "Réglages du connecteur StatusNet";
-$a->strings["Globally Available StatusNet OAuthKeys"] = "Clés OAuth StatusNet universelles";
-$a->strings["There are preconfigured OAuth key pairs for some StatusNet servers available. If you are useing one of them, please use these credentials. If not feel free to connect to any other StatusNet instance (see below)."] = "Ce sont des paires de clés OAuth préconfigurées pour certains serveurs StatusNet courants. Si vous utilisez l'un d'entre eux, merci de vous servir de ces clés. Autrement, vous pouvez vous connecter à n'importer quelle autre instance de StatusNet (voir ci-dessous).";
-$a->strings["Provide your own OAuth Credentials"] = "Fournissez vos propres paramètres OAuth";
-$a->strings["No consumer key pair for StatusNet found. Register your Friendika Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendika installation at your favorited StatusNet installation."] = "Aucune paire de clé n'a été trouvée pour StatusNet. Inscrivez votre compte Friendika comme client bureautique sur votre compte StatusNet, puis copiez la paire de clés d'utilisateur ici et renseignez le chemin de base de l'API.&lt;br /&gt;Avant d'enregistrer votre propre paire de clés OAuth, merci de vérifier auprès de l'administrateur qu'il en existe pas déjà une pour votre fournisseur StatusNet.";
-$a->strings["OAuth Consumer Key"] = "Clé de consommateur OAuth";
-$a->strings["OAuth Consumer Secret"] = "Secret d'utilisateur OAuth";
-$a->strings["Base API Path (remember the trailing /)"] = "Chemin de base de l'API (n'oubliez pas le / final)";
-$a->strings["To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to StatusNet."] = "Pour vous connecter à votre compte StatusNet, cliquez sur le bouton ci-dessous pour obtenir un code de sécurité de StatusNet, que vous aurez à coller dans la boîte ci-dessous. Ensuite, validez le formulaire. Seuls vos articles &lt;strong&gt;publics&lt;/strong&gt; seront postés sur StatusNet.";
-$a->strings["Log in with StatusNet"] = "Se connecter à StatusNet";
-$a->strings["Copy the security code from StatusNet here"] = "Coller le code de sécurité de StatusNet ici";
-$a->strings["Cancel Connection Process"] = "Annuler le processus de connexion";
-$a->strings["Current StatusNet API is"] = "L'API StatusNet courante est";
-$a->strings["Cancel StatusNet Connection"] = "Annuler la connexion à StatusNet";
-$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "En cas d'activation, toutes vos notices <strong>publiques</strong> seront transmises au compte StatusNet associé. Vous pourrez choisir de le faire par défaut (ici), ou bien pour chaque notice séparément lors de sa rédaction.";
-$a->strings["Allow posting to StatusNet"] = "Autoriser la publication sur StatusNet";
-$a->strings["Send public postings to StatusNet by default"] = "Par défaut, envoyer les notices publiques à StatusNet";
-$a->strings["API URL"] = "URL de l'API";
-$a->strings["OEmbed settings updated"] = "Réglage OEmbed mis-à-jour";
-$a->strings["Use OEmbed for YouTube videos"] = "Utiliser OEmbed pour les vidéos Youtube";
-$a->strings["URL to embed:"] = "URL à incorporer:";
-$a->strings["Three Dimensional Tic-Tac-Toe"] = "Morpion en trois dimensions";
-$a->strings["3D Tic-Tac-Toe"] = "Morpion 3D";
-$a->strings["New game"] = "Nouvelle partie";
-$a->strings["New game with handicap"] = "Nouvelle partie avec handicap";
-$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Le morpion 3D, c'est comme la version traditionnelle. Sauf qu'on joue sur plusieurs étages en même temps.";
-$a->strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "Dans le cas qui nous concerne, il y a trois étages. Vous gagnez en alignant trois coups dans n'importe quel étage, ainsi que verticalement ou en diagonale entre les étages.";
-$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "Le handicap interdit la position centrale de l'étage du milieu, parce que le joueur qui prend cette case obtient souvent un avantage.";
-$a->strings["You go first..."] = "À vous de jouer...";
-$a->strings["I'm going first this time..."] = "Je commence...";
-$a->strings["You won!"] = "Vous avez gagné!";
-$a->strings["\"Cat\" game!"] = "Match nul!";
-$a->strings["I won!"] = "J'ai gagné!";
-$a->strings["Allow to use your friendika id (%s) to connecto to external unhosted-enabled storage (like ownCloud)"] = "Autoriser votre identifiant friendica (%s) à se connecter à un stockage compatible unhosted (ownCloud, par exemple)";
-$a->strings["Unhosted DAV storage url"] = "URL de stockage DAV d'Unhosted";
-$a->strings["Impressum"] = "Impressum";
-$a->strings["Site Owner"] = "Propriétaire du site";
-$a->strings["Email Address"] = "Adresse courriel";
-$a->strings["Postal Address"] = "Adresse postale";
-$a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "L'extension \"Impressum\" (ou <em>ours</em>) n'est pas configuré!<br />Merci d'ajouter au moins la variable <tt>owner</tt> à votre fichier de configuration. Pour les autres variables, reportez-vous au fichier README accompagnant l'extension.";
-$a->strings["Site Owners Profile"] = "Profil des propriétaires du site";
-$a->strings["Notes"] = "Notes";
-$a->strings["Facebook disabled"] = "Connecteur Facebook désactivé";
-$a->strings["Updating contacts"] = "Mise-à-jour des contacts";
-$a->strings["Facebook API key is missing."] = "Clé d'API Facebook manquante.";
-$a->strings["Facebook Connect"] = "Connecteur Facebook";
-$a->strings["Install Facebook connector for this account."] = "Installer le connecteur Facebook sur ce compte.";
-$a->strings["Remove Facebook connector"] = "Désinstaller le connecteur Facebook";
-$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Se ré-authentifier [nécessaire chaque fois que vous changez votre mot de passe Facebook.]";
-$a->strings["Post to Facebook by default"] = "Poster sur Facebook par défaut";
-$a->strings["Link all your Facebook friends and conversations on this website"] = "Lier tous vos amis et conversations Facebook sur ce site";
-$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "Les conversations Facebook se composent du <em>mur du profil</em> et des <em>flux</em> de vos amis.";
-$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Sur ce site, les flux de vos amis Facebook ne sont visibles que par vous.";
-$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "Les réglages suivants déterminent le niveau de vie privée de votre mur Facebook depuis ce site.";
-$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "Sur ce site, les conversations de votre mur Facebook ne sont visibles que par vous.";
-$a->strings["Do not import your Facebook profile wall conversations"] = "Ne pas importer les conversations de votre mur Facebook.";
-$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Si vous choisissez de lier les conversations et de laisser ces deux cases non-cochées, votre mur Facebook sera fusionné avec votre mur de profil (sur ce site). Vos réglages (locaux) de vie privée serviront à en déterminer la visibilité.";
-$a->strings["Facebook"] = "Facebook";
-$a->strings["Facebook Connector Settings"] = "Réglages du connecteur Facebook";
-$a->strings["Post to Facebook"] = "Poster sur Facebook";
-$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Publication sur Facebook annulée pour cause de conflit de permissions inter-réseaux.";
-$a->strings["Image: "] = "Image: ";
-$a->strings["View on Friendika"] = "Voir sur Friendica";
-$a->strings["Facebook post failed. Queued for retry."] = "Publication sur Facebook échouée. En attente pour re-tentative.";
-$a->strings["Generate new key"] = "Générer une nouvelle clé";
-$a->strings["Widgets key"] = "Clé des widgets";
-$a->strings["Widgets available"] = "Widgets disponibles";
-$a->strings["Connect on Friendika!"] = "Se connecter à Friendica!";
-$a->strings["%d person likes this"] = array(
-	0 => "%d personne aime ça",
-	1 => "%d personnes aiment ça",
-);
-$a->strings["%d person doesn't like this"] = array(
-	0 => "%d personne n'aime pas ça",
-	1 => "%d personnes n'aiment pas ça",
-);
-$a->strings["Report Bug"] = "Signaler un bug";
-$a->strings["\"Not Safe For Work\" Settings"] = "Réglages de \"Not Safe For Work\"";
-$a->strings["Comma separated words to treat as NSFW"] = "Liste de mots à considérer comme NSFW. Séparés par des virgules.";
-$a->strings["NSFW Settings saved."] = "Réglages NSFW sauvegardés.";
-$a->strings["%s - Click to open/close"] = "%s - cliquer pour ouvrir/fermer";
-$a->strings["OpenID"] = "OpenID";
-$a->strings["Last users"] = "Derniers utilisateurs";
-$a->strings["Most active users"] = "Utilisateurs les plus actifs";
-$a->strings["Last photos"] = "Dernières photos";
-$a->strings["Last likes"] = "Dernièrement aimé";
-$a->strings["event"] = "évènement";
-$a->strings[" - Member since: %s"] = " - Membre depuis: %s";
-$a->strings["Randplace Settings"] = "Réglages de Randplace";
-$a->strings["Enable Randplace Plugin"] = "Activer l'extension Randplace";
-$a->strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "Ce site collecte ses statistiques grâce à <a href='http://www.piwik.org'>Piwik</a>.";
-$a->strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "Si vous ne voulez pas que vos visites soient collectées par ce biais, vous <a href='%s'>pouvez activer un cookie qui empêchera Piwik de tenir compte de vos visites ultérieures</a> (opt-out).";
-$a->strings["Piwik Base URL"] = "URL de base de Piwik";
-$a->strings["Site ID"] = "ID du site";
-$a->strings["Show opt-out cookie link?"] = "Montrer le lien d'opt-out?";
-$a->strings["Upload a file"] = "Téléverser un fichier";
-$a->strings["Drop files here to upload"] = "Déposer des fichiers ici pour les téléverser";
-$a->strings["Failed"] = "Échec";
-$a->strings["No files were uploaded."] = "Aucun fichier n'a été téléversé.";
-$a->strings["Uploaded file is empty"] = "Le fichier téléversé est vide";
-$a->strings["File has an invalid extension, it should be one of "] = "Le fichier a une extension invalide, elle devrait être parmi ";
-$a->strings["Upload was cancelled, or server error encountered"] = "Téléversement annulé, ou erreur de serveur";
-$a->strings["Post to Wordpress"] = "Poster sur WordPress";
-$a->strings["WordPress Post Settings"] = "Réglages WordPress";
-$a->strings["Enable WordPress Post Plugin"] = "Activer l'extension WordPress";
-$a->strings["WordPress username"] = "Utilisateur WordPress";
-$a->strings["WordPress password"] = "Mot de passe WordPress";
-$a->strings["WordPress API URL"] = "URL de l'API WordPress";
-$a->strings["Post to WordPress by default"] = "Publier sur WordPress par défaut";
-$a->strings["(no subject)"] = "(sans titre)";
-$a->strings["Unknown | Not categorised"] = "Inconnu | Non-classé";
-$a->strings["Block immediately"] = "Bloquer immédiatement";
-$a->strings["Shady, spammer, self-marketer"] = "Douteux, spammeur, accro à l'auto-promotion";
-$a->strings["Known to me, but no opinion"] = "Connu de moi, mais sans opinion";
-$a->strings["OK, probably harmless"] = "OK, probablement inoffensif";
-$a->strings["Reputable, has my trust"] = "Réputé, a toute ma confiance";
-$a->strings["Frequently"] = "Fréquemment";
-$a->strings["Hourly"] = "Toutes les heures";
-$a->strings["Twice daily"] = "Deux fois par jour";
-$a->strings["Daily"] = "Chaque jour";
-$a->strings["Weekly"] = "Chaque semaine";
-$a->strings["Monthly"] = "Chaque mois";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Zot!"] = "Zot!";
-$a->strings["Male"] = "Masculin";
-$a->strings["Female"] = "Féminin";
-$a->strings["Currently Male"] = "Actuellement masculin";
-$a->strings["Currently Female"] = "Actuellement féminin";
-$a->strings["Mostly Male"] = "Principalement masculin";
-$a->strings["Mostly Female"] = "Principalement féminin";
-$a->strings["Transgender"] = "Transgenre";
-$a->strings["Intersex"] = "Inter-sexe";
-$a->strings["Transsexual"] = "Transsexuel";
-$a->strings["Hermaphrodite"] = "Hermaphrodite";
-$a->strings["Neuter"] = "Neutre";
-$a->strings["Non-specific"] = "Non-spécifique";
-$a->strings["Other"] = "Autre";
-$a->strings["Undecided"] = "Indécis";
-$a->strings["Males"] = "Hommes";
-$a->strings["Females"] = "Femmes";
-$a->strings["Gay"] = "Gay";
-$a->strings["Lesbian"] = "Lesbienne";
-$a->strings["No Preference"] = "Sans préférence";
-$a->strings["Bisexual"] = "Bisexuel";
-$a->strings["Autosexual"] = "Auto-sexuel";
-$a->strings["Abstinent"] = "Abstinent";
-$a->strings["Virgin"] = "Vierge";
-$a->strings["Deviant"] = "Déviant";
-$a->strings["Fetish"] = "Fétichiste";
-$a->strings["Oodles"] = "Oodles";
-$a->strings["Nonsexual"] = "Non-sexuel";
-$a->strings["Single"] = "Célibataire";
-$a->strings["Lonely"] = "Esseulé";
-$a->strings["Available"] = "Disponible";
-$a->strings["Unavailable"] = "Indisponible";
-$a->strings["Dating"] = "Dans une relation";
-$a->strings["Unfaithful"] = "Infidèle";
-$a->strings["Sex Addict"] = "Accro au sexe";
-$a->strings["Friends"] = "Amis";
-$a->strings["Friends/Benefits"] = "Amis par intérêt";
-$a->strings["Casual"] = "Casual";
-$a->strings["Engaged"] = "Fiancé";
-$a->strings["Married"] = "Marié";
-$a->strings["Partners"] = "Partenaire";
-$a->strings["Cohabiting"] = "En cohabitation";
-$a->strings["Happy"] = "Heureux";
-$a->strings["Not Looking"] = "Sans recherche";
-$a->strings["Swinger"] = "Échangiste";
-$a->strings["Betrayed"] = "Trahi(e)";
-$a->strings["Separated"] = "Séparé";
-$a->strings["Unstable"] = "Instable";
-$a->strings["Divorced"] = "Divorcé";
-$a->strings["Widowed"] = "Veuf/Veuve";
-$a->strings["Uncertain"] = "Incertain";
-$a->strings["Complicated"] = "Compliqué";
-$a->strings["Don't care"] = "S'en désintéresse";
-$a->strings["Ask me"] = "Me demander";
-$a->strings["Starts:"] = "Débute:";
-$a->strings["Finishes:"] = "Finit:";
-$a->strings["Visible to everybody"] = "Visible par tout le monde";
-$a->strings["show"] = "montrer";
-$a->strings["don't show"] = "ne pas montrer";
-$a->strings["Logged out."] = "Déconnecté.";
-$a->strings["Image/photo"] = "Image/photo";
-$a->strings["From: "] = "De: ";
-$a->strings["View status"] = "Voir le statut";
-$a->strings["View profile"] = "Voir le profil";
-$a->strings["View photos"] = "Voir les photos";
-$a->strings["View recent"] = "Voir nouveautés";
-$a->strings["Send PM"] = "Envoyer message privé";
-$a->strings["Miscellaneous"] = "Divers";
-$a->strings["year"] = "an";
-$a->strings["month"] = "mois";
-$a->strings["day"] = "jour";
-$a->strings["never"] = "jamais";
-$a->strings["less than a second ago"] = "il y a moins d'une seconde";
-$a->strings["years"] = "ans";
-$a->strings["months"] = "mois";
-$a->strings["week"] = "semaine";
-$a->strings["weeks"] = "semaines";
-$a->strings["days"] = "jours";
-$a->strings["hour"] = "heure";
-$a->strings["hours"] = "heures";
-$a->strings["minute"] = "minute";
-$a->strings["minutes"] = "minutes";
-$a->strings["second"] = "seconde";
-$a->strings["seconds"] = "secondes";
-$a->strings[" ago"] = " auparavant";
-$a->strings["Birthday:"] = "Anniversaire:";
-$a->strings["j F, Y"] = "j F, Y";
-$a->strings["j F"] = "j F";
-$a->strings["Age:"] = "Age:";
-$a->strings["Religion:"] = "Religion:";
-$a->strings["About:"] = "À propos:";
-$a->strings["Hobbies/Interests:"] = "Passe-temps/Centres d'intérêt:";
-$a->strings["Contact information and Social Networks:"] = "Coordonées/Réseaux sociaux:";
-$a->strings["Musical interests:"] = "Goûts musicaux:";
-$a->strings["Books, literature:"] = "Lectures:";
-$a->strings["Television:"] = "Télévision:";
-$a->strings["Film/dance/culture/entertainment:"] = "Cinéma/Danse/Culture/Divertissement:";
-$a->strings["Love/Romance:"] = "Amour/Romance:";
-$a->strings["Work/employment:"] = "Activité professionnelle/Occupation:";
-$a->strings["School/education:"] = "Études/Formation:";
-$a->strings["prev"] = "précédent";
-$a->strings["first"] = "premier";
-$a->strings["last"] = "dernier";
-$a->strings["next"] = "suivant";
-$a->strings["No contacts"] = "Aucun contact";
-$a->strings["%d Contact"] = array(
-	0 => "%d contact",
-	1 => "%d contacts",
-);
-$a->strings["Search"] = "Recherche";
-$a->strings["Monday"] = "Lundi";
-$a->strings["Tuesday"] = "Mardi";
-$a->strings["Wednesday"] = "Mercredi";
-$a->strings["Thursday"] = "Jeudi";
-$a->strings["Friday"] = "Vendredi";
-$a->strings["Saturday"] = "Samedi";
-$a->strings["Sunday"] = "Dimanche";
-$a->strings["January"] = "Janvier";
-$a->strings["February"] = "Février";
-$a->strings["March"] = "Mars";
-$a->strings["April"] = "Avril";
-$a->strings["May"] = "Mai";
-$a->strings["June"] = "Juin";
-$a->strings["July"] = "Juillet";
-$a->strings["August"] = "Août";
-$a->strings["September"] = "Septembre";
-$a->strings["October"] = "Octobre";
-$a->strings["November"] = "Novembre";
-$a->strings["December"] = "Décembre";
-$a->strings["bytes"] = "octets";
-$a->strings["Select an alternate language"] = "Choisir une langue alternative";
-$a->strings["default"] = "défaut";
-$a->strings["End this session"] = "Mettre fin à cette session";
-$a->strings["Your posts and conversations"] = "Vos notices et conversations";
-$a->strings["Your profile page"] = "Votre page de profil";
-$a->strings["Your photos"] = "Vos photos";
-$a->strings["Your events"] = "Vos événements";
-$a->strings["Personal notes"] = "Notes personnelles";
-$a->strings["Your personal photos"] = "Vos photos personnelles";
-$a->strings["Sign in"] = "Se connecter";
-$a->strings["Home Page"] = "Page d'accueil";
-$a->strings["Create an account"] = "Créer un compte";
-$a->strings["Help and documentation"] = "Aide et documentation";
-$a->strings["Apps"] = "Applications";
-$a->strings["Addon applications, utilities, games"] = "Applications supplémentaires, utilitaires, jeux";
-$a->strings["Search site content"] = "Rechercher dans le contenu du site";
-$a->strings["Conversations on this site"] = "Conversations ayant cours sur ce site";
-$a->strings["Directory"] = "Annuaire";
-$a->strings["People directory"] = "Annuaire des utilisateurs";
-$a->strings["Conversations from your friends"] = "Conversations de vos amis";
-$a->strings["Friend Requests"] = "Demande d'amitié";
-$a->strings["Private mail"] = "Messages privés";
-$a->strings["Manage"] = "Gérer";
-$a->strings["Manage other pages"] = "Gérer les autres pages";
-$a->strings["Manage/edit friends and contacts"] = "Gérer/éditer les amitiés et contacts";
-$a->strings["Admin"] = "Admin";
-$a->strings["Site setup and configuration"] = "Démarrage et configuration du site";
-$a->strings["Nothing new here"] = "Rien de neuf ici";
-$a->strings["Select"] = "Sélectionner";
-$a->strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s";
-$a->strings["%s from %s"] = "%s de %s";
-$a->strings["View in context"] = "Voir dans le contexte";
-$a->strings["See all %d comments"] = "Voir les %d commentaires";
-$a->strings["like"] = "aime";
-$a->strings["dislike"] = "n'aime pas";
-$a->strings["Share this"] = "Partager ça";
-$a->strings["share"] = "partager";
-$a->strings["add star"] = "mett en avant";
-$a->strings["remove star"] = "ne plus mettre en avant";
-$a->strings["toggle star status"] = "mettre en avant";
-$a->strings["starred"] = "mis en avant";
-$a->strings["add tag"] = "ajouter un tag";
-$a->strings["to"] = "à";
-$a->strings["Wall-to-Wall"] = "Inter-mur";
-$a->strings["via Wall-To-Wall:"] = "en Inter-mur:";
-$a->strings["Delete Selected Items"] = "Supprimer les éléments sélectionnés";
-$a->strings["%s likes this."] = "%s aime ça.";
-$a->strings["%s doesn't like this."] = "%s n'aime pas ça.";
-$a->strings["<span  %1\$s>%2\$d people</span> like this."] = "<span  %1\$s>%2\$d personnes</span> aiment ça.";
-$a->strings["<span  %1\$s>%2\$d people</span> don't like this."] = "<span  %1\$s>%2\$d personnes</span> n'aiment pas ça.";
-$a->strings["and"] = "et";
-$a->strings[", and %d other people"] = ", et %d autres personnes";
-$a->strings["%s like this."] = "%s aiment ça.";
-$a->strings["%s don't like this."] = "%s n'aiment pas ça.";
-$a->strings["Visible to <strong>everybody</strong>"] = "Visible par <strong>tout le monde</strong>";
-$a->strings["Please enter a video link/URL:"] = "Entrez un lien/URL video :";
-$a->strings["Please enter an audio link/URL:"] = "Entrez un lien/URL audio :";
-$a->strings["Tag term:"] = "Tag : ";
-$a->strings["Where are you right now?"] = "Où êtes-vous présentemment?";
-$a->strings["Enter a title for this item"] = "Saisissez un titre pour cet élément";
-$a->strings["Insert video link"] = "Insérer un lien video";
-$a->strings["Insert audio link"] = "Insérer un lien audio";
-$a->strings["Set title"] = "Définir un titre";
-$a->strings["view full size"] = "voir en pleine taille";
-$a->strings["image/photo"] = "image/photo";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Impossible de localiser les informations DNS pour le serveur de base de données '%s'";
-$a->strings["Add New Contact"] = "Ajouter un nouveau contact";
-$a->strings["Enter address or web location"] = "Entrez son adresse ou sa localisation web";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple: bob@example.com, http://example.com/barbara";
-$a->strings["Invite Friends"] = "Inviter des amis";
-$a->strings["%d invitation available"] = array(
-	0 => "%d invitation disponible",
-	1 => "%d invitations disponibles",
-);
-$a->strings["Find People"] = "Trouver des personnes";
-$a->strings["Enter name or interest"] = "Entrez un nom ou un centre d'intérêt";
-$a->strings["Connect/Follow"] = "Connecter/Suivre";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Robert Morgenstein, Pêche";
-$a->strings["Similar Interests"] = "Intérêts similaires";
-$a->strings["New mail received at "] = "Nouvel email reçu à ";
-$a->strings["A new person is sharing with you at "] = "Une nouvelle personne partage avec vous à ";
-$a->strings["You have a new follower at "] = "Vous avez un nouvel abonné à ";
-$a->strings["[no subject]"] = "[pas de sujet]";
-$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."] = "Un groupe supprimé a été recréé. Les permissions existantes <strong>pourraient</strong> s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom.";
-$a->strings["Create a new group"] = "Créer un nouveau groupe";
-$a->strings["Everybody"] = "Tout le monde";
-$a->strings["Sharing notification from Diaspora network"] = "Notification de partage du réseau Diaspora";
-$a->strings["Attachments:"] = "Pièces jointes : ";
-$a->strings["[Relayed] Comment authored by %s from network %s"] = "[Relayé] Commentaire de %s sur le réseau %s";
-$a->strings["Embedded content"] = "Contenu incorporé";
-$a->strings["Embedding disabled"] = "Incorporation désactivée";
+$a->strings["No results."] = "Aucun résultat.";
+$a->strings["Contact not found."] = "Contact introuvable.";
+$a->strings["Friend suggestion sent."] = "Suggestion d'amitié/relation envoyée.";
+$a->strings["Suggest Friends"] = "Suggérer une relation";
+$a->strings["Suggest a friend for %s"] = "Suggérer une relation à %s";
+$a->strings["Edit Block"] = "Éditer bloc";
+$a->strings["Delete block?"] = "Supprimer le bloc?";
+$a->strings["Delete Block"] = "Supprimer bloc";
+$a->strings["Status: "] = "État&nbsp;:";
+$a->strings["Sexual Preference: "] = "Orientation sexuelle&nbsp;:";
+$a->strings["Homepage: "] = "Site web&nbsp;:";
+$a->strings["Hometown: "] = "Ville natale&nbsp;:";
+$a->strings["About: "] = "À propos&nbsp;:";
+$a->strings["Keywords: "] = "Mots-clefs&nbsp;:";
+$a->strings["Permission Denied."] = "Permission refusée.";
+$a->strings["File not found."] = "Fichier introuvable.";
+$a->strings["Edit file permissions"] = "Éditer les permissions du fichier";
+$a->strings["Permissions"] = "Permissions";
+$a->strings["Include all files and sub folders"] = "Inclure tous fichiers et sous-répertoires";
+$a->strings["Return to file list"] = "Retourner à la liste des fichiers";
+$a->strings["Copy/paste this code to attach file to a post"] = "Copiez/collez ce code pour joindre le fichier à une publication";
+$a->strings["Copy/paste this URL to link file from a web page"] = "Copiez/collez cette URL pour lier le fichier depuis une page web";
+$a->strings["Download"] = "Télécharger";
+$a->strings["Used: "] = "Utilisé&nbsp;:";
+$a->strings["[directory]"] = "[répertoire]";
+$a->strings["Limit: "] = "Limite&nbsp;:";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Pas de suggestions pour l'instant. Si le site est récent, merci de re-tenter dans 24 heures.";
+$a->strings["Conversation removed."] = "Conversation supprimée.";
+$a->strings["No messages."] = "Pas de message.";
+$a->strings["D, d M Y - g:i A"] = "D d Y - H:i";
+$a->strings["Public Sites"] = "Sites publics";
+$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."] = "Les sites listés autorisent l'inscription pour tous. Tous sont liés entre eux, de manière à ce qu'un compte sur un seul d'entre eux soit valable sur l'ensemble de la matrice. Certains sites peuvent demander des frais de souscriptions, ou fournir des forfaits ajustés. Le lien \"fournisseur\" <strong>peut</strong> vous donner des détails supplémentaires.";
+$a->strings["Site URL"] = "URL du site";
+$a->strings["Access Type"] = "Type d'accès";
+$a->strings["Registration Policy"] = "Politique d'inscription";
+$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Nombre d'inscriptions quotidiennes dépassé. Merci de recommencer demain.";
+$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Merci d'indiquer votre adhésion aux Règles du Service. L'inscription a échoué.";
+$a->strings["Passwords do not match."] = "Les mots de passe ne concordent pas.";
+$a->strings["Registration successful. Please check your email for validation instructions."] = "Inscription réussie. Merci de vérifier vos courriels pour valider votre compte.";
+$a->strings["Your registration is pending approval by the site owner."] = "Votre inscription est en attente de l'approbation d'un administrateur.";
+$a->strings["Your registration can not be processed."] = "Votre inscription ne peut être traîtée.";
+$a->strings["Registration on this site/hub is by approval only."] = "L'inscription sur cette instance/ce site est soumis à une modération.";
+$a->strings["<a href=\"pubsites\">Register at another affiliated site/hub</a>"] = "<a href=\"pubsites\">S'inscrire sur un site/hub affilié</a>";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Ce site a dépassé le nombre de création de compte autorisé par jour. Merci de recommencer demain.";
+$a->strings["Terms of Service"] = "les Règles du Service";
+$a->strings["I accept the %s for this website"] = "J'accepte %s de ce site";
+$a->strings["I am over 13 years of age and accept the %s for this website"] = "J'ai treize (13) ans révolus, et j'accepte %s de ce site";
+$a->strings["Membership on this site is by invitation only."] = "L'inscription à ce site se fait uniquement sur invitation.";
+$a->strings["Please enter your invitation code"] = "Merci de saisir votre code d'invitation";
+$a->strings["Your email address"] = "Votre adresse de courriel";
+$a->strings["Choose a password"] = "Choisissez un mot de passe";
+$a->strings["Please re-enter your password"] = "Confirmez-le";
+$a->strings["Please login."] = "Merci de vous connecter.";
+$a->strings["Remove This Channel"] = "Supprimer ce canal";
+$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Ceci effacera complètement le canal du réseau. Une fois effacé, un canal ne PEUT PAS être récupéré.";
+$a->strings["Please enter your password for verification:"] = "Merci de re-saisir votre mot de passe pour vérification&nbsp;:";
+$a->strings["Remove this channel and all its clones from the network"] = "Supprimer ce canal ainsi que tous ses clones de par le réseau";
+$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Par défaut, seule l'instance du canal présente sur ce hub sera supprimée du réseau";
+$a->strings["Remove Channel"] = "Enlever le canal";
+$a->strings["Page owner information could not be retrieved."] = "Impossible d'obtenir des informations sur le propriétaire de la page.";
+$a->strings["Album not found."] = "Album introuvable.";
+$a->strings["Delete Album"] = "Supprimer album";
+$a->strings["Delete Photo"] = "Supprimer photo";
+$a->strings["No photos selected"] = "Aucune photo selectionnée";
+$a->strings["Access to this item is restricted."] = "L'accès à l'élément est restreint.";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Vous avez utilisé %1$.2f mégaoctets sur les %2$.2f autorisés pour le stockage des photos.";
+$a->strings["You have used %1$.2f Mbytes of photo storage."] = "Vous avez utilisé %1$.2f mégaoctets pour le stockage des photos.";
+$a->strings["Upload Photos"] = "Téléverser des photos";
+$a->strings["New album name: "] = "Créer un album&nbsp;:";
+$a->strings["or existing album name: "] = "ou choisir un album existant&nbsp;:";
+$a->strings["Do not show a status post for this upload"] = "Ne pas publier de statut pour cet envoi";
+$a->strings["Contact Photos"] = "Photos de contact";
+$a->strings["Edit Album"] = "Éditer l'album";
+$a->strings["Show Newest First"] = "Ordre anté-chronologique";
+$a->strings["Show Oldest First"] = "Ordre chronologique";
+$a->strings["View Photo"] = "Voir photo";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Permission refusée. L'accès à cet élément peut avoir été restreint.";
+$a->strings["Photo not available"] = "Photo indisponible";
+$a->strings["Use as profile photo"] = "Utiliser comme photo du profil";
+$a->strings["View Full Size"] = "Voir en taille réelle";
+$a->strings["Edit photo"] = "Éditer photo";
+$a->strings["Rotate CW (right)"] = "Rotation horaire (droite)";
+$a->strings["Rotate CCW (left)"] = "Rotation anti-horaire (gauche)";
+$a->strings["New album name"] = "Nouveau nom d'album&nbsp;:";
+$a->strings["Caption"] = "Titre/légende";
+$a->strings["Add a Tag"] = "Ajouter une étiquette";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemple&nbsp;: @bob, @Barbara_Jensen, @jim@exemple.com, #Ile_de_France, #marathon";
+$a->strings["In This Photo:"] = "Dans cette photo&nbsp;:";
+$a->strings["View Album"] = "Voir album";
+$a->strings["Recent Photos"] = "Photos récentes";
+$a->strings["Mood"] = "Humeur";
+$a->strings["Set your current mood and tell your friends"] = "Indiquez votre humeur du moment à vos amis";
+$a->strings["sent you a private message"] = "vous a envoyé un message privé";
+$a->strings["added your channel"] = "a ajouté votre canal";
+$a->strings["posted an event"] = "a publié un événement";
+$a->strings["Scheme Default"] = "Schéma de couleur par défaut";
+$a->strings["silver"] = "argent";
+$a->strings["Theme settings"] = "Réglages du thème";
+$a->strings["Set scheme"] = "Définir la palette de couleurs";
+$a->strings["Navigation bar colour"] = "Couleur de la barre de navigation";
+$a->strings["link colour"] = "couleur des liens";
+$a->strings["Set font-colour for banner"] = "Définir la couleur du texte de la bannière";
+$a->strings["Set the background colour"] = "Définir la couleur d'arrière-plan";
+$a->strings["Set the background image"] = "Définir l'image d'arrière-plan";
+$a->strings["Set the background colour of items"] = "Définir la couleur de fond des contributions";
+$a->strings["Set the opacity of items"] = "Définir l'opacité des contributions";
+$a->strings["Set the basic colour for item icons"] = "Définir la couleur de base pour les icônes des éléments";
+$a->strings["Set the hover colour for item icons"] = "Définir la couleur de survol des icônes des éléments";
+$a->strings["Set font-size for the entire application"] = "Définir la taille de police pour l'application entière";
+$a->strings["Set font-size for posts and comments"] = "Définir font-size pour contribution et commentaires";
+$a->strings["Set font-colour for posts and comments"] = "Définir font-colour pour les contributions et commentaires";
+$a->strings["Set radius of corners"] = "Définir le rayon des arrondis";
+$a->strings["Set shadow depth of photos"] = "Définir la profondeur de l'ombre des photos";
+$a->strings["Set maximum width of conversation regions"] = "Définir la largeur maximale des conversations";
+$a->strings["Set minimum opacity of nav bar - to hide it"] = "Définir l'opacité minimum du bandeau de navigation - pour le cacher";
+$a->strings["Set size of conversation author photo"] = "Définir la taille de la photo de l'auteur d'une conversation";
+$a->strings["Set size of followup author photos"] = "Définir la taille de la photo de l'auteur d'une réponse";
+$a->strings["Sloppy photo albums"] = "Albums photo \"en biais\"";
+$a->strings["Are you a clean desk or a messy desk person?"] = "Vous êtes plutôt \"bureau bien rangé\" ou \"gros foutoir\"?";
+$a->strings["Schema Default"] = "Palette par défaut";
+$a->strings["Sans-Serif"] = "Sans empâtements";
+$a->strings["Monospace"] = "Châsse fixe";
+$a->strings["Set font face"] = "Définir la fonte";
+$a->strings["Set iconset"] = "Définir le jeu d'icônes";
+$a->strings["Set big shadow size, default 15px 15px 15px"] = "Définir la taille des grandes ombres, par défaut 15px 15px 15px";
+$a->strings["Set small shadow size, default 5px 5px 5px"] = "Définir la taille des petites ombres, par défaut 5px 5px 5px";
+$a->strings["Set shadow colour, default #000"] = "Définir la couleur des ombres, par défaut #000";
+$a->strings["Set radius size, default 5px"] = "Définir le rayon des arrondis, par défaut 5px";
+$a->strings["Set line-height for posts and comments"] = "Définir line-height pour contributions et commentaires";
+$a->strings["Set background image"] = "Définir l'image d'arrière-plan";
+$a->strings["Set background colour"] = "Définir la couleur d'arrière-plan";
+$a->strings["Set section background image"] = "Définir l'image d'arrière-plan des sections";
+$a->strings["Set section background colour"] = "Définir la couleur d'arrière-plan des sections";
+$a->strings["Set colour of items - use hex"] = "Définir la couleur des éléments - en héxadécimal";
+$a->strings["Set colour of links - use hex"] = "Définir la couleur des liens - en héxadécimal";
+$a->strings["Set max-width for items.  Default 400px"] = "Définir la largeur maximal des éléments. Par défaut, 400px";
+$a->strings["Set min-width for items.  Default 240px"] = "Définir la largeur minimale des éléments. Par défaut, 240px";
+$a->strings["Set the generic content wrapper width.  Default 48%"] = "Définir la largeur du contenu. Par défaut, 48%";
+$a->strings["Set colour of fonts - use hex"] = "Définir la couleur des fontes - en héxadécimal";
+$a->strings["Set background-size element"] = "Définir background-size pour les éléments";
+$a->strings["Item opacity"] = "Opacité des éléments";
+$a->strings["Display post previews only"] = "Afficher seulement l'aperçu des contributions";
+$a->strings["Display side bar on channel page"] = "Afficher le panneau latéral sur la page du canal";
+$a->strings["Colour of the navigation bar"] = "Couleur de la barre de navigation";
+$a->strings["Item float"] = "Alignement de l'élément";
+$a->strings["Left offset of the section element"] = "Décalage gauche de l'élément section";
+$a->strings["Right offset of the section element"] = "Décalage droit de l'élément section";
+$a->strings["Section width"] = "Largeur de la section";
+$a->strings["Left offset of the aside"] = "Décalage gauche du panneau latéral";
+$a->strings["Right offset of the aside element"] = "Décalage droit du panneau latéral";
+$a->strings["None"] = "";
+$a->strings["Header image"] = "Têtière";
+$a->strings["Header image only on profile pages"] = "Têtière seulement sur les profils";
+$a->strings["Update %s failed. See error logs."] = "La mise-à-jour %s a échoué. Merci de consulter les journaux d'erreur.";
+$a->strings["Update Error at %s"] = "Erreur de mise-à-jour sur %s";
+$a->strings["Create an account to access services and applications within the Red Matrix"] = "Créez un compte pour pouvoir accéder aux services et applications de la Matrice Red";
+$a->strings["Password"] = "Mot de pass";
+$a->strings["Remember me"] = "Se souvenir de moi";
+$a->strings["Forgot your password?"] = "Mot de passe oublié?";
+$a->strings["permission denied"] = "permission refusée";
+$a->strings["Got Zot?"] = "T'as Zot?";
+$a->strings["toggle mobile"] = "(dés)activer mobile";
diff --git a/view/tpl/js_strings.tpl b/view/tpl/js_strings.tpl
index 144ecb17c..9eb552767 100755
--- a/view/tpl/js_strings.tpl
+++ b/view/tpl/js_strings.tpl
@@ -2,33 +2,33 @@
 
 	var aStr = {
 
-		'delitem'    : '{{$delitem}}',
-		'comment'    : '{{$comment}}',
-		'showmore'   : '{{$showmore}}',
-		'showfewer'  : '{{$showfewer}}',
-		'pwshort'    : '{{$pwshort}}',
-		'pwnomatch'  : '{{$pwnomatch}}',
-		'everybody'  : '{{$everybody}}',
-		'passphrase' : '{{$passphrase}}',
-		'passhint'   : '{{$passhint}}',
+		'delitem'    : "{{$delitem}}",
+		'comment'    : "{{$comment}}",
+		'showmore'   : "{{$showmore}}",
+		'showfewer'  : "{{$showfewer}}",
+		'pwshort'    : "{{$pwshort}}",
+		'pwnomatch'  : "{{$pwnomatch}}",
+		'everybody'  : "{{$everybody}}",
+		'passphrase' : "{{$passphrase}}",
+		'passhint'   : "{{$passhint}}",
 
 		't01' :  {{$t01}},
 		't02' :  {{$t02}},
-		't03' : '{{$t03}}',
-		't04' : '{{$t04}}',
-		't05' : '{{$t05}}',
-		't06' : '{{$t06}}',
-		't07' : '{{$t07}}',
-		't08' : '{{$t08}}',
-		't09' : '{{$t09}}',
-		't10' : '{{$t10}}',
-		't11' : '{{$t11}}',
-		't12' : '{{$t12}}',
-		't13' : '{{$t13}}',
-		't14' : '{{$t14}}',
-		't15' : '{{$t15}}',
-		't16' : '{{$t16}}',
-		't17' : '{{$t17}}',
+		't03' : "{{$t03}}",
+		't04' : "{{$t04}}",
+		't05' : "{{$t05}}",
+		't06' : "{{$t06}}",
+		't07' : "{{$t07}}",
+		't08' : "{{$t08}}",
+		't09' : "{{$t09}}",
+		't10' : "{{$t10}}",
+		't11' : "{{$t11}}",
+		't12' : "{{$t12}}",
+		't13' : "{{$t13}}",
+		't14' : "{{$t14}}",
+		't15' : "{{$t15}}",
+		't16' : "{{$t16}}",
+		't17' : "{{$t17}}",
 	};
 
 </script>
-- 
cgit v1.2.3


From 97739920ebfa0d7b0db95c61187d5820c0939f14 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sat, 8 Feb 2014 00:48:19 -0800
Subject: create a new "subdued" CSS class for things that shouldn't be in your
 face unless you want them and intentionally hover over them. Typically this
 would be accomplished via an opacity or colour change, but themes are free to
 use other methods. Also changed the channel_tabs "chatroom" link to use the
 subdued class if no rooms have been created rather than a count of chatrooms.
 Themse should probably create a .subdued and .subdued:hover definition
 because we'll probably take most of the stuff which is now hardwired to use
 opacity by id and change it to use the class definition instead.

---
 view/theme/redbasic/css/style.css | 9 +++++++++
 1 file changed, 9 insertions(+)

(limited to 'view')

diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 776b4c31a..209399d0c 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -114,6 +114,15 @@ blockquote {
 	margin-right: 5px;
 }
 
+.subdued {
+	opacity: 0.3;
+	filter:alpha(opacity=30);
+}
+
+.subdued:hover {
+	opacity: 1.0;
+	filter:alpha(opacity=100);
+}
 
 
 #langselector {
-- 
cgit v1.2.3


From 176b0881ce6fd9b820c9dffaa926b542007f98df Mon Sep 17 00:00:00 2001
From: Christian Vogeley <christian.vogeley@hotmail.de>
Date: Sun, 9 Feb 2014 01:39:37 +0100
Subject: .

---
 view/theme/redbasic/css/style.css | 1 +
 1 file changed, 1 insertion(+)

(limited to 'view')

diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 209399d0c..6164407e8 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -2459,3 +2459,4 @@ img.mail-list-sender-photo {
 	color: red;
 	cursor: pointer;
 }
+
-- 
cgit v1.2.3


From 4fc0126661f2389843599a4a6829d8eb79a109e4 Mon Sep 17 00:00:00 2001
From: marijus <mario@localhost.localdomain>
Date: Sun, 9 Feb 2014 23:52:09 +0100
Subject: theming chat a little

---
 view/css/mod_chat.css             | 29 +++++++++++++++++++++++++++--
 view/theme/redbasic/css/style.css |  8 ++++++++
 view/tpl/chat.tpl                 |  7 ++++---
 3 files changed, 39 insertions(+), 5 deletions(-)

(limited to 'view')

diff --git a/view/css/mod_chat.css b/view/css/mod_chat.css
index ce6e59af1..99bd1b154 100644
--- a/view/css/mod_chat.css
+++ b/view/css/mod_chat.css
@@ -27,5 +27,30 @@
  section {
 	 padding-bottom: 0;
  }
- 
- 
\ No newline at end of file
+
+.chat-item {
+	padding: 3px;
+}
+
+.chat-item-end {
+	clear: both;
+}
+
+.chat-item-photo {
+	float: left;
+	height: 32px;
+	width: 32px;
+}
+
+.chat-body {
+	float: left;
+	width: 80%;
+	margin-left: 15px;
+}
+
+.chat-item-text {
+	float: left;
+	background-color:#eee;
+	padding: 3px;
+	display:inline-block;
+}
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 6164407e8..08129aabb 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -2455,8 +2455,16 @@ img.mail-list-sender-photo {
 .abook-self {
 	background-color: #ffdddd;
 }
+
 .online-now {
 	color: red;
 	cursor: pointer;
 }
 
+.chat-item-photo {
+	border-radius: $radiuspx;
+}
+
+.chat-item-text {
+	border-radius: $radiuspx;
+}
diff --git a/view/tpl/chat.tpl b/view/tpl/chat.tpl
index 7073a0a52..51aeb836e 100644
--- a/view/tpl/chat.tpl
+++ b/view/tpl/chat.tpl
@@ -1,5 +1,5 @@
 <h1>{{$room_name}}</h1>
-<div id="chatContainer"">
+<div id="chatContainer">
 
     <div id="chatTopBar">
     	<div id="chatLineHolder"></div>
@@ -64,7 +64,7 @@ function update_inroom(inroom) {
 	$.each( inroom, function(index, item) {
 		var newNode = document.createElement('div');
 		$(newNode).html('<img style="height: 32px; width: 32px;" src="' + item.img + '" alt="' + item.name + '" /> ' + item.status + '<br />' + item.name + '<br/>');
-		html.appendChild(newNode); 		
+		html.appendChild(newNode);
 	});
 	$('#chatUsers').html(html);	
 }
@@ -75,7 +75,8 @@ function update_chats(chats) {
 	$.each( chats, function(index, item) {
 		last_chat = item.id;
 		var newNode = document.createElement('div');
-		$(newNode).html('<div style="margin-bottom: 5px; clear: both;"><img style="height: 32px; width: 32px; float: left;" src="' + item.img + '" alt="' + item.name + '" /><div class="chat-body" style="float: left; width: 80%; margin-left: 15px; font-size: 14px;">' + item.name + ' <span class="autotime" title="' + item.isotime + '">' + item.localtime + '</span><br />' + item.text + '</div></div>');
+		newNode.setAttribute('class', 'chat-item');
+		$(newNode).html('<img class="chat-item-photo" src="' + item.img + '" alt="' + item.name + '" /><div class="chat-body"><span class="chat-item-name">' + item.name + ' </span><span class="autotime chat-item-time" title="' + item.isotime + '">' + item.localtime + '</span><br /><span class="chat-item-text">' + item.text + '</span></div><div class="chat-item-end"></div>');
 		$('#chatLineHolder').append(newNode);
 		$(".autotime").timeago();
 
-- 
cgit v1.2.3


From 46153e4a5795a6ad6f088304233a4524a1e8409c Mon Sep 17 00:00:00 2001
From: marijus <mario@localhost.localdomain>
Date: Sun, 9 Feb 2014 23:59:19 +0100
Subject: moving background-color to style.css

---
 view/css/mod_chat.css             | 3 +--
 view/theme/redbasic/css/style.css | 1 +
 2 files changed, 2 insertions(+), 2 deletions(-)

(limited to 'view')

diff --git a/view/css/mod_chat.css b/view/css/mod_chat.css
index 99bd1b154..7963fbbd6 100644
--- a/view/css/mod_chat.css
+++ b/view/css/mod_chat.css
@@ -50,7 +50,6 @@
 
 .chat-item-text {
 	float: left;
-	background-color:#eee;
 	padding: 3px;
-	display:inline-block;
+	display: inline-block;
 }
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 08129aabb..8a43f5a51 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -2467,4 +2467,5 @@ img.mail-list-sender-photo {
 
 .chat-item-text {
 	border-radius: $radiuspx;
+	background-color:#eee;
 }
-- 
cgit v1.2.3


From 3ad9cf67c6e28f41c191dea52fac664471e5b107 Mon Sep 17 00:00:00 2001
From: marijus <mario@localhost.localdomain>
Date: Mon, 10 Feb 2014 00:00:35 +0100
Subject: whitespace

---
 view/theme/redbasic/css/style.css | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 8a43f5a51..78fdac0cd 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -2467,5 +2467,5 @@ img.mail-list-sender-photo {
 
 .chat-item-text {
 	border-radius: $radiuspx;
-	background-color:#eee;
+	background-color: #eee;
 }
-- 
cgit v1.2.3


From 12319c41e3c0565745060d7ade97f194229dddb2 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Mon, 10 Feb 2014 15:14:03 -0800
Subject: add chanview mode to settings

---
 view/tpl/settings_display.tpl | 1 +
 1 file changed, 1 insertion(+)

(limited to 'view')

diff --git a/view/tpl/settings_display.tpl b/view/tpl/settings_display.tpl
index ddd3ca56d..a8fb002fb 100755
--- a/view/tpl/settings_display.tpl
+++ b/view/tpl/settings_display.tpl
@@ -9,6 +9,7 @@
 {{include file="field_input.tpl" field=$ajaxint}}
 {{include file="field_input.tpl" field=$itemspage}}
 {{include file="field_checkbox.tpl" field=$nosmile}}
+{{include file="field_checkbox.tpl" field=$chanview_full}}
 
 
 <div class="settings-submit-wrapper" >
-- 
cgit v1.2.3


From 95a45a119dd61241ae8d0f0f8eda467cff64d855 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Tue, 11 Feb 2014 18:45:50 -0800
Subject: shamelessly steal, and cut/paste from the settings page to get
 mod_photos edit permissions working - and it looks like we still have some
 other fancybox instances (yet another lightbox) which haven't yet been
 converted to colorbox and will need to be fixed. Way too many lightboxes.

---
 view/js/mod_photos.js   |  8 ++++++++
 view/tpl/photo_view.tpl | 25 +++++++++++++------------
 2 files changed, 21 insertions(+), 12 deletions(-)

(limited to 'view')

diff --git a/view/js/mod_photos.js b/view/js/mod_photos.js
index 82957ae44..c9d13f742 100644
--- a/view/js/mod_photos.js
+++ b/view/js/mod_photos.js
@@ -1,5 +1,13 @@
+
+var ispublic = aStr['everybody'];
+
 $(document).ready(function() {
 
+		  $("a#settings-default-perms-menu").colorbox({ 
+				  'inline' : true, 
+				  'transition' : 'elastic' 
+			});
+
 	$('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
 		var selstr;
 		$('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() {
diff --git a/view/tpl/photo_view.tpl b/view/tpl/photo_view.tpl
index 8c19d39d7..f5e5bb7b5 100755
--- a/view/tpl/photo_view.tpl
+++ b/view/tpl/photo_view.tpl
@@ -1,4 +1,4 @@
-<div id="live-display"></div>
+<div id="live-photos"></div>
 <h3><a href="{{$album.0}}">{{$album.1}}</a></h3>
 
 <div id="photo-edit-link-wrap">
@@ -52,19 +52,20 @@
 	</div>
 	<div id="photo-edit-rotate-end"></div>
 
-	<div id="photo-edit-perms" class="photo-edit-perms" >
-		<a href="#photo-edit-perms-select" id="photo-edit-perms-menu" class="button popupbox" title="{{$edit.permissions}}"/>
-			<span id="jot-perms-icon" class="icon {{$edit.lockstate}}" ></span>{{$edit.permissions}}
-		</a>
-		<div id="photo-edit-perms-menu-end"></div>
-		
-		<div style="display: none;">
-			<div id="photo-edit-perms-select" >
-				{{$edit.aclselect}}
+	<div id="settings-default-perms" class="settings-default-perms" >
+		<span id="jot-perms-icon" class="icon {{$edit.lockstate}}" ></span>
+		<a href="#profile-jot-acl-wrapper" id="settings-default-perms-menu" >{{$edit.permissions}}</a>
+		<div id="settings-default-perms-menu-end"></div>
+		<div id="settings-default-perms-select" style="display: none; margin-bottom: 20px" >
+			<div style="display: none;">    
+				<div id="profile-jot-acl-wrapper" style="width:auto;height:auto;overflow:auto;">
+					{{$edit.aclselect}}     
+				</div>
 			</div>
 		</div>
-	</div>
-	<div id="photo-edit-perms-end"></div>
+	</div>                                                                                  
+	<br/>
+	<div id="settings-default-perms-end"></div>
 
 	<input id="photo-edit-submit-button" type="submit" name="submit" value="{{$edit.submit}}" />
 	<input id="photo-edit-delete-button" type="submit" name="delete" value="{{$edit.delete}}" onclick="return confirmDelete()"; />
-- 
cgit v1.2.3


From 8ffd07688442ce837e3040f2d8933ea402738910 Mon Sep 17 00:00:00 2001
From: Tobias Diekershoff <tobias.diekershoff@gmx.net>
Date: Wed, 12 Feb 2014 09:01:42 +0100
Subject: DE: update to the strings

---
 view/de/messages.po | 7844 ++++++++++++++++++++++++++-------------------------
 view/de/strings.php | 2011 ++++++-------
 2 files changed, 4993 insertions(+), 4862 deletions(-)

(limited to 'view')

diff --git a/view/de/messages.po b/view/de/messages.po
index bcaad338a..9116932b7 100644
--- a/view/de/messages.po
+++ b/view/de/messages.po
@@ -19,8 +19,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Red Matrix\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-01-31 00:02-0800\n"
-"PO-Revision-Date: 2014-02-04 06:40+0000\n"
+"POT-Creation-Date: 2014-02-07 00:03-0800\n"
+"PO-Revision-Date: 2014-02-12 07:57+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"
@@ -64,15 +64,15 @@ msgstr "Besuche %1$s's %2$s"
 msgid "%1$s has an updated %2$s, changing %3$s."
 msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert."
 
-#: ../../include/nav.php:72 ../../include/nav.php:87 ../../boot.php:1420
+#: ../../include/nav.php:72 ../../include/nav.php:91 ../../boot.php:1423
 msgid "Logout"
 msgstr "Abmelden"
 
-#: ../../include/nav.php:72 ../../include/nav.php:87
+#: ../../include/nav.php:72 ../../include/nav.php:91
 msgid "End this session"
 msgstr "Beende diese Sitzung"
 
-#: ../../include/nav.php:75 ../../include/nav.php:121
+#: ../../include/nav.php:75 ../../include/nav.php:125
 msgid "Home"
 msgstr "Home"
 
@@ -81,7 +81,7 @@ msgid "Your posts and conversations"
 msgstr "Deine Beiträge und Unterhaltungen"
 
 #: ../../include/nav.php:76 ../../include/conversation.php:933
-#: ../../mod/connedit.php:309 ../../mod/connedit.php:423
+#: ../../mod/connedit.php:312 ../../mod/connedit.php:426
 msgid "View Profile"
 msgstr "Profil ansehen"
 
@@ -94,8 +94,8 @@ msgid "Edit Profiles"
 msgstr "Profile bearbeiten"
 
 #: ../../include/nav.php:78
-msgid "Manage/Edit Profiles"
-msgstr "Verwalte/Bearbeite Profile"
+msgid "Manage/Edit profiles"
+msgstr "Profile verwalten"
 
 #: ../../include/nav.php:79 ../../include/conversation.php:1475
 #: ../../mod/fbrowser.php:25
@@ -106,903 +106,758 @@ msgstr "Fotos"
 msgid "Your photos"
 msgstr "Deine Bilder"
 
-#: ../../include/nav.php:85 ../../boot.php:1421
+#: ../../include/nav.php:80 ../../include/conversation.php:1484
+#: ../../mod/fbrowser.php:114
+msgid "Files"
+msgstr "Dateien"
+
+#: ../../include/nav.php:80
+msgid "Your files"
+msgstr "Deine Dateien"
+
+#: ../../include/nav.php:81
+msgid "Chat"
+msgstr "Chat"
+
+#: ../../include/nav.php:81
+msgid "Your chatrooms"
+msgstr "Deine Chat-Räume"
+
+#: ../../include/nav.php:82 ../../include/nav.php:175
+#: ../../include/conversation.php:1506 ../../mod/events.php:354
+msgid "Events"
+msgstr "Veranstaltungen"
+
+#: ../../include/nav.php:82
+msgid "Your events"
+msgstr "Deine Veransctaltungen"
+
+#: ../../include/nav.php:83 ../../include/conversation.php:1514
+msgid "Bookmarks"
+msgstr "Lesezeichen"
+
+#: ../../include/nav.php:83
+msgid "Your bookmarks"
+msgstr "Deine Lesezeichen"
+
+#: ../../include/nav.php:85 ../../include/conversation.php:1525
+msgid "Webpages"
+msgstr "Webseiten"
+
+#: ../../include/nav.php:85
+msgid "Your webpages"
+msgstr "Deine Webseiten"
+
+#: ../../include/nav.php:89 ../../boot.php:1424
 msgid "Login"
 msgstr "Anmelden"
 
-#: ../../include/nav.php:85
+#: ../../include/nav.php:89
 msgid "Sign in"
 msgstr "Anmelden"
 
-#: ../../include/nav.php:102
+#: ../../include/nav.php:106
 #, php-format
 msgid "%s - click to logout"
 msgstr "%s - Klick zum Abmelden"
 
-#: ../../include/nav.php:107
+#: ../../include/nav.php:111
 msgid "Click to authenticate to your home hub"
 msgstr "Klick zum Authentifizieren bei Deinem Heimat-Hub"
 
-#: ../../include/nav.php:121
+#: ../../include/nav.php:125
 msgid "Home Page"
 msgstr "Homepage"
 
-#: ../../include/nav.php:125 ../../mod/register.php:206 ../../boot.php:1397
+#: ../../include/nav.php:129 ../../mod/register.php:206 ../../boot.php:1400
 msgid "Register"
 msgstr "Registrieren"
 
-#: ../../include/nav.php:125
+#: ../../include/nav.php:129
 msgid "Create an account"
 msgstr "Erzeuge ein Konto"
 
-#: ../../include/nav.php:130 ../../mod/help.php:60 ../../mod/help.php:64
+#: ../../include/nav.php:134 ../../mod/help.php:60 ../../mod/help.php:64
 msgid "Help"
 msgstr "Hilfe"
 
-#: ../../include/nav.php:130
+#: ../../include/nav.php:134
 msgid "Help and documentation"
 msgstr "Hilfe und Dokumentation"
 
-#: ../../include/nav.php:133
+#: ../../include/nav.php:137
 msgid "Apps"
 msgstr "Apps"
 
-#: ../../include/nav.php:133
+#: ../../include/nav.php:137
 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:29
+#: ../../include/nav.php:139 ../../include/text.php:752
+#: ../../include/text.php:766 ../../mod/search.php:29
 msgid "Search"
 msgstr "Suche"
 
-#: ../../include/nav.php:135
+#: ../../include/nav.php:139
 msgid "Search site content"
 msgstr "Durchsuche Seiten-Inhalt"
 
-#: ../../include/nav.php:138 ../../mod/directory.php:210
+#: ../../include/nav.php:142 ../../mod/directory.php:210
 msgid "Directory"
 msgstr "Verzeichnis"
 
-#: ../../include/nav.php:138
+#: ../../include/nav.php:142
 msgid "Channel Locator"
 msgstr "Kanal-Anzeiger"
 
-#: ../../include/nav.php:149
+#: ../../include/nav.php:153
 msgid "Matrix"
 msgstr "Matrix"
 
-#: ../../include/nav.php:149
+#: ../../include/nav.php:153
 msgid "Your matrix"
 msgstr "Deine Matrix"
 
-#: ../../include/nav.php:150
+#: ../../include/nav.php:154
 msgid "Mark all matrix notifications seen"
 msgstr "Markiere alle Matrix-Benachrichtigungen als angesehen"
 
-#: ../../include/nav.php:152
+#: ../../include/nav.php:156
 msgid "Channel Home"
 msgstr "Mein Kanal"
 
-#: ../../include/nav.php:152
+#: ../../include/nav.php:156
 msgid "Channel home"
 msgstr "Mein Kanal"
 
-#: ../../include/nav.php:153
+#: ../../include/nav.php:157
 msgid "Mark all channel notifications seen"
 msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen"
 
-#: ../../include/nav.php:156
+#: ../../include/nav.php:160
 msgid "Intros"
 msgstr "Vorstellungen"
 
-#: ../../include/nav.php:156 ../../mod/connections.php:242
+#: ../../include/nav.php:160 ../../mod/connections.php:244
 msgid "New Connections"
 msgstr "Neue Verbindungen"
 
-#: ../../include/nav.php:159
+#: ../../include/nav.php:163
 msgid "Notices"
 msgstr "Benachrichtigungen"
 
-#: ../../include/nav.php:159
+#: ../../include/nav.php:163
 msgid "Notifications"
 msgstr "Benachrichtigungen"
 
-#: ../../include/nav.php:160
+#: ../../include/nav.php:164
 msgid "See all notifications"
 msgstr "Alle Benachrichtigungen ansehen"
 
-#: ../../include/nav.php:161
+#: ../../include/nav.php:165
 msgid "Mark all system notifications seen"
 msgstr "Markiere alle System-Benachrichtigungen als gesehen"
 
-#: ../../include/nav.php:163
+#: ../../include/nav.php:167
 msgid "Mail"
 msgstr "Mail"
 
-#: ../../include/nav.php:163
+#: ../../include/nav.php:167
 msgid "Private mail"
 msgstr "Persönliche Mail"
 
-#: ../../include/nav.php:164
+#: ../../include/nav.php:168
 msgid "See all private messages"
 msgstr "Alle persönlichen Nachrichten ansehen"
 
-#: ../../include/nav.php:165
+#: ../../include/nav.php:169
 msgid "Mark all private messages seen"
 msgstr "Markiere alle persönlichen Nachrichten als gesehen"
 
-#: ../../include/nav.php:166
+#: ../../include/nav.php:170
 msgid "Inbox"
 msgstr "Eingang"
 
-#: ../../include/nav.php:167
+#: ../../include/nav.php:171
 msgid "Outbox"
 msgstr "Ausgang"
 
-#: ../../include/nav.php:168 ../../include/widgets.php:509
+#: ../../include/nav.php:172 ../../include/widgets.php:509
 msgid "New Message"
 msgstr "Neue Nachricht"
 
-#: ../../include/nav.php:171 ../../include/conversation.php:1493
-#: ../../mod/events.php:354
-msgid "Events"
-msgstr "Veranstaltungen"
-
-#: ../../include/nav.php:171
+#: ../../include/nav.php:175
 msgid "Event Calendar"
 msgstr "Veranstaltungskalender"
 
-#: ../../include/nav.php:172
+#: ../../include/nav.php:176
 msgid "See all events"
 msgstr "Alle Ereignisse ansehen"
 
-#: ../../include/nav.php:173
+#: ../../include/nav.php:177
 msgid "Mark all events seen"
 msgstr "Markiere alle Ereignisse als gesehen"
 
-#: ../../include/nav.php:175
+#: ../../include/nav.php:179
 msgid "Channel Select"
 msgstr "Kanal-Auswahl"
 
-#: ../../include/nav.php:175
+#: ../../include/nav.php:179
 msgid "Manage Your Channels"
 msgstr "Verwalte Deine Kanäle"
 
-#: ../../include/nav.php:177 ../../include/widgets.php:487
+#: ../../include/nav.php:181 ../../include/widgets.php:487
 #: ../../mod/admin.php:837 ../../mod/admin.php:1042
 msgid "Settings"
 msgstr "Einstellungen"
 
-#: ../../include/nav.php:177
+#: ../../include/nav.php:181
 msgid "Account/Channel Settings"
 msgstr "Konto-/Kanal-Einstellungen"
 
-#: ../../include/nav.php:179 ../../mod/connections.php:349
+#: ../../include/nav.php:183 ../../mod/connections.php:351
 msgid "Connections"
 msgstr "Verbindungen"
 
-#: ../../include/nav.php:179
+#: ../../include/nav.php:183
 msgid "Manage/Edit Friends and Connections"
 msgstr "Verwalte/Bearbeite Freunde und Verbindungen"
 
-#: ../../include/nav.php:186 ../../mod/admin.php:112
+#: ../../include/nav.php:190 ../../mod/admin.php:112
 msgid "Admin"
 msgstr "Admin"
 
-#: ../../include/nav.php:186
+#: ../../include/nav.php:190
 msgid "Site Setup and Configuration"
 msgstr "Seiten-Einrichtung und -Konfiguration"
 
-#: ../../include/nav.php:212
+#: ../../include/nav.php:216
 msgid "Nothing new here"
 msgstr "Nichts Neues hier"
 
-#: ../../include/nav.php:217
+#: ../../include/nav.php:221
 msgid "Please wait..."
 msgstr "Bitte warten..."
 
-#: ../../include/chat.php:10
-msgid "Missing room name"
-msgstr "Der Chatraum hat keinen Namen"
+#: ../../include/text.php:315
+msgid "prev"
+msgstr "vorherige"
 
-#: ../../include/chat.php:19
-msgid "Duplicate room name"
-msgstr "Name des Chatraums bereits vergeben"
+#: ../../include/text.php:317
+msgid "first"
+msgstr "erste"
 
-#: ../../include/chat.php:68 ../../include/chat.php:76
-msgid "Invalid room specifier."
-msgstr "Ungültiger Raumbezeichner."
+#: ../../include/text.php:346
+msgid "last"
+msgstr "letzte"
 
-#: ../../include/chat.php:102
-msgid "Room not found."
-msgstr "Chatraum konnte nicht gefunden werden."
+#: ../../include/text.php:349
+msgid "next"
+msgstr "nächste"
 
-#: ../../include/chat.php:113 ../../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:462
-#: ../../include/attach.php:540 ../../include/items.php:3454
-#: ../../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:522
-#: ../../mod/chat.php:84 ../../mod/chat.php:89 ../../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:453
-#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97
-#: ../../mod/achievements.php:27 ../../mod/filestorage.php:10
-#: ../../mod/filestorage.php:59 ../../mod/filestorage.php:75
-#: ../../mod/filestorage.php:98 ../../mod/manage.php:6
-#: ../../mod/settings.php:486 ../../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/editwebpage.php:44
-#: ../../mod/editwebpage.php:83 ../../mod/poke.php:128
-#: ../../mod/channel.php:88 ../../mod/channel.php:188
-#: ../../mod/channel.php:231 ../../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:347
-msgid "Permission denied."
-msgstr "Zugang verweigert"
+#: ../../include/text.php:361
+msgid "older"
+msgstr "älter"
 
-#: ../../include/Contact.php:104 ../../include/identity.php:628
-#: ../../include/widgets.php:115 ../../include/widgets.php:155
-#: ../../mod/directory.php:183 ../../mod/match.php:62 ../../mod/suggest.php:51
-#: ../../mod/dirprofile.php:170
-msgid "Connect"
-msgstr "Verbinden"
+#: ../../include/text.php:363
+msgid "newer"
+msgstr "neuer"
 
-#: ../../include/Contact.php:120
-msgid "New window"
-msgstr "Neues Fenster"
+#: ../../include/text.php:670
+msgid "No connections"
+msgstr "Keine Verbindungen"
 
-#: ../../include/Contact.php:121
-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/text.php:681
+#, php-format
+msgid "%d Connection"
+msgid_plural "%d Connections"
+msgstr[0] "%d Verbindung"
+msgstr[1] "%d Verbindungen"
 
-#: ../../include/contact_selectors.php:30
-msgid "Unknown | Not categorised"
-msgstr "Unbekannt | Nicht kategorisiert"
+#: ../../include/text.php:693
+msgid "View Connections"
+msgstr "Zeige Verbindungen"
 
-#: ../../include/contact_selectors.php:31
-msgid "Block immediately"
-msgstr "Sofort blockieren"
+#: ../../include/text.php:754 ../../include/text.php:768
+#: ../../include/widgets.php:173 ../../mod/filer.php:36
+msgid "Save"
+msgstr "Speichern"
 
-#: ../../include/contact_selectors.php:32
-msgid "Shady, spammer, self-marketer"
-msgstr "Zwielichtig, Spammer, Selbstdarsteller"
+#: ../../include/text.php:834
+msgid "poke"
+msgstr "anstupsen"
 
-#: ../../include/contact_selectors.php:33
-msgid "Known to me, but no opinion"
-msgstr "Mir bekannt, aber keine Meinung"
+#: ../../include/text.php:834 ../../include/conversation.php:240
+msgid "poked"
+msgstr "stupste"
 
-#: ../../include/contact_selectors.php:34
-msgid "OK, probably harmless"
-msgstr "Ok, wahrscheinlich harmlos"
+#: ../../include/text.php:835
+msgid "ping"
+msgstr "anpingen"
 
-#: ../../include/contact_selectors.php:35
-msgid "Reputable, has my trust"
-msgstr "Seriös, hat mein Vertrauen"
+#: ../../include/text.php:835
+msgid "pinged"
+msgstr "pingte"
 
-#: ../../include/contact_selectors.php:54
-msgid "Frequently"
-msgstr "Häufig"
+#: ../../include/text.php:836
+msgid "prod"
+msgstr "knuffen"
 
-#: ../../include/contact_selectors.php:55
-msgid "Hourly"
-msgstr "Stündlich"
+#: ../../include/text.php:836
+msgid "prodded"
+msgstr "knuffte"
 
-#: ../../include/contact_selectors.php:56
-msgid "Twice daily"
-msgstr "Zwei Mal am Tag"
+#: ../../include/text.php:837
+msgid "slap"
+msgstr "ohrfeigen"
 
-#: ../../include/contact_selectors.php:57
-msgid "Daily"
-msgstr "Täglich"
+#: ../../include/text.php:837
+msgid "slapped"
+msgstr "ohrfeigte"
 
-#: ../../include/contact_selectors.php:58
-msgid "Weekly"
-msgstr "Wöchentlich"
+#: ../../include/text.php:838
+msgid "finger"
+msgstr "befummeln"
 
-#: ../../include/contact_selectors.php:59
-msgid "Monthly"
-msgstr "Monatlich"
+#: ../../include/text.php:838
+msgid "fingered"
+msgstr "befummelte"
 
-#: ../../include/contact_selectors.php:74
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../include/text.php:839
+msgid "rebuff"
+msgstr "eine Abfuhr erteilen"
 
-#: ../../include/contact_selectors.php:75
-msgid "OStatus"
-msgstr "OStatus"
+#: ../../include/text.php:839
+msgid "rebuffed"
+msgstr "abfuhrerteilte"
 
-#: ../../include/contact_selectors.php:76
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: ../../include/text.php:851
+msgid "happy"
+msgstr "glücklich"
 
-#: ../../include/contact_selectors.php:77 ../../mod/admin.php:741
-#: ../../mod/admin.php:750 ../../boot.php:1423
-msgid "Email"
-msgstr "E-Mail"
+#: ../../include/text.php:852
+msgid "sad"
+msgstr "traurig"
 
-#: ../../include/contact_selectors.php:78
-msgid "Diaspora"
-msgstr "Diaspora"
+#: ../../include/text.php:853
+msgid "mellow"
+msgstr "sanft"
 
-#: ../../include/contact_selectors.php:79
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../include/text.php:854
+msgid "tired"
+msgstr "müde"
 
-#: ../../include/contact_selectors.php:80
-msgid "Zot!"
-msgstr "Zot!"
+#: ../../include/text.php:855
+msgid "perky"
+msgstr "frech"
 
-#: ../../include/contact_selectors.php:81
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: ../../include/text.php:856
+msgid "angry"
+msgstr "sauer"
 
-#: ../../include/contact_selectors.php:82
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: ../../include/text.php:857
+msgid "stupified"
+msgstr "verblüfft"
 
-#: ../../include/contact_selectors.php:83
-msgid "MySpace"
-msgstr "MySpace"
+#: ../../include/text.php:858
+msgid "puzzled"
+msgstr "verwirrt"
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Verschiedenes"
+#: ../../include/text.php:859
+msgid "interested"
+msgstr "interessiert"
 
-#: ../../include/datetime.php:152 ../../include/datetime.php:284
-msgid "year"
-msgstr "Jahr"
+#: ../../include/text.php:860
+msgid "bitter"
+msgstr "verbittert"
 
-#: ../../include/datetime.php:157 ../../include/datetime.php:285
-msgid "month"
-msgstr "Monat"
+#: ../../include/text.php:861
+msgid "cheerful"
+msgstr "fröhlich"
 
-#: ../../include/datetime.php:162 ../../include/datetime.php:287
-msgid "day"
-msgstr "Tag"
-
-#: ../../include/datetime.php:275
-msgid "never"
-msgstr "Nie"
+#: ../../include/text.php:862
+msgid "alive"
+msgstr "lebendig"
 
-#: ../../include/datetime.php:281
-msgid "less than a second ago"
-msgstr "Vor weniger als einer Sekunde"
+#: ../../include/text.php:863
+msgid "annoyed"
+msgstr "verärgert"
 
-#: ../../include/datetime.php:284
-msgid "years"
-msgstr "Jahre"
+#: ../../include/text.php:864
+msgid "anxious"
+msgstr "unruhig"
 
-#: ../../include/datetime.php:285
-msgid "months"
-msgstr "Monate"
+#: ../../include/text.php:865
+msgid "cranky"
+msgstr "schrullig"
 
-#: ../../include/datetime.php:286
-msgid "week"
-msgstr "Woche"
+#: ../../include/text.php:866
+msgid "disturbed"
+msgstr "verstört"
 
-#: ../../include/datetime.php:286
-msgid "weeks"
-msgstr "Wochen"
+#: ../../include/text.php:867
+msgid "frustrated"
+msgstr "frustriert"
 
-#: ../../include/datetime.php:287
-msgid "days"
-msgstr "Tage"
+#: ../../include/text.php:868
+msgid "motivated"
+msgstr "motiviert"
 
-#: ../../include/datetime.php:288
-msgid "hour"
-msgstr "Stunde"
+#: ../../include/text.php:869
+msgid "relaxed"
+msgstr "entspannt"
 
-#: ../../include/datetime.php:288
-msgid "hours"
-msgstr "Stunden"
+#: ../../include/text.php:870
+msgid "surprised"
+msgstr "überrascht"
 
-#: ../../include/datetime.php:289
-msgid "minute"
-msgstr "Minute"
+#: ../../include/text.php:1031
+msgid "Monday"
+msgstr "Montag"
 
-#: ../../include/datetime.php:289
-msgid "minutes"
-msgstr "Minuten"
+#: ../../include/text.php:1031
+msgid "Tuesday"
+msgstr "Dienstag"
 
-#: ../../include/datetime.php:290
-msgid "second"
-msgstr "Sekunde"
+#: ../../include/text.php:1031
+msgid "Wednesday"
+msgstr "Mittwoch"
 
-#: ../../include/datetime.php:290
-msgid "seconds"
-msgstr "Sekunden"
+#: ../../include/text.php:1031
+msgid "Thursday"
+msgstr "Donnerstag"
 
-#: ../../include/datetime.php:299
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "vor %1$d %2$s"
+#: ../../include/text.php:1031
+msgid "Friday"
+msgstr "Freitag"
 
-#: ../../include/dba/dba_driver.php:50
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Kann die DNS-Info für den Datenbank-Server '%s' nicht finden"
+#: ../../include/text.php:1031
+msgid "Saturday"
+msgstr "Samstag"
 
-#: ../../include/network.php:640
-msgid "view full size"
-msgstr "In Vollbildansicht anschauen"
+#: ../../include/text.php:1031
+msgid "Sunday"
+msgstr "Sonntag"
 
-#: ../../include/event.php:11 ../../include/bb2diaspora.php:433
-msgid "l F d, Y \\@ g:i A"
-msgstr "l, d. F Y\\\\, H:i"
+#: ../../include/text.php:1035
+msgid "January"
+msgstr "Januar"
 
-#: ../../include/event.php:20 ../../include/bb2diaspora.php:439
-msgid "Starts:"
-msgstr "Beginnt:"
+#: ../../include/text.php:1035
+msgid "February"
+msgstr "Februar"
 
-#: ../../include/event.php:30 ../../include/bb2diaspora.php:447
-msgid "Finishes:"
-msgstr "Endet:"
+#: ../../include/text.php:1035
+msgid "March"
+msgstr "März"
 
-#: ../../include/event.php:40 ../../include/identity.php:679
-#: ../../include/bb2diaspora.php:455 ../../mod/events.php:462
-#: ../../mod/directory.php:156 ../../mod/dirprofile.php:111
-msgid "Location:"
-msgstr "Ort:"
+#: ../../include/text.php:1035
+msgid "April"
+msgstr "April"
 
-#: ../../include/bbcode.php:128 ../../include/bbcode.php:537
-#: ../../include/bbcode.php:540 ../../include/bbcode.php:545
-#: ../../include/bbcode.php:548 ../../include/bbcode.php:551
-#: ../../include/bbcode.php:554 ../../include/bbcode.php:559
-#: ../../include/bbcode.php:562 ../../include/bbcode.php:567
-#: ../../include/bbcode.php:570 ../../include/bbcode.php:573
-#: ../../include/bbcode.php:576
-msgid "Image/photo"
-msgstr "Bild/Foto"
+#: ../../include/text.php:1035
+msgid "May"
+msgstr "Mai"
 
-#: ../../include/bbcode.php:163 ../../include/bbcode.php:582
-msgid "Encrypted content"
-msgstr "Verschlüsselter Inhalt"
+#: ../../include/text.php:1035
+msgid "June"
+msgstr "Juni"
 
-#: ../../include/bbcode.php:170
-msgid "QR code"
-msgstr "QR Code"
+#: ../../include/text.php:1035
+msgid "July"
+msgstr "Juli"
 
-#: ../../include/bbcode.php:213
-#, php-format
-msgid "%1$s wrote the following %2$s %3$s"
-msgstr "%1$s schrieb den folgenden %2$s %3$s"
+#: ../../include/text.php:1035
+msgid "August"
+msgstr "August"
 
-#: ../../include/bbcode.php:215
-msgid "post"
-msgstr "Beitrag"
+#: ../../include/text.php:1035
+msgid "September"
+msgstr "September"
 
-#: ../../include/bbcode.php:505 ../../include/bbcode.php:525
-msgid "$1 wrote:"
-msgstr "$1 schrieb:"
+#: ../../include/text.php:1035
+msgid "October"
+msgstr "Oktober"
 
-#: ../../include/js_strings.php:5
-msgid "Delete this item?"
-msgstr "Dieses Element löschen?"
+#: ../../include/text.php:1035
+msgid "November"
+msgstr "November"
 
-#: ../../include/js_strings.php:6 ../../include/ItemObject.php:536
-#: ../../mod/photos.php:972 ../../mod/photos.php:1059
-msgid "Comment"
-msgstr "Kommentar"
+#: ../../include/text.php:1035
+msgid "December"
+msgstr "Dezember"
 
-#: ../../include/js_strings.php:7 ../../include/contact_widgets.php:125
-#: ../../include/ItemObject.php:270
-msgid "show more"
-msgstr "mehr zeigen"
+#: ../../include/text.php:1113
+msgid "unknown.???"
+msgstr "unbekannt.???"
 
-#: ../../include/js_strings.php:8
-msgid "show fewer"
-msgstr "Zeige weniger"
+#: ../../include/text.php:1114
+msgid "bytes"
+msgstr "Bytes"
 
-#: ../../include/js_strings.php:9
-msgid "Password too short"
-msgstr "Kennwort zu kurz"
+#: ../../include/text.php:1149
+msgid "remove category"
+msgstr "Kategorie entfernen"
 
-#: ../../include/js_strings.php:10
-msgid "Passwords do not match"
-msgstr "Kennwörter stimmen nicht überein"
+#: ../../include/text.php:1171
+msgid "remove from file"
+msgstr "aus der Datei entfernen"
 
-#: ../../include/js_strings.php:11 ../../mod/photos.php:39
-msgid "everybody"
-msgstr "alle"
+#: ../../include/text.php:1229 ../../include/text.php:1241
+msgid "Click to open/close"
+msgstr "Klicke zum Öffnen/Schließen"
 
-#: ../../include/js_strings.php:12
-msgid "Secret Passphrase"
-msgstr "geheime Passwort-Phrase"
+#: ../../include/text.php:1417 ../../mod/events.php:332
+msgid "link to source"
+msgstr "Link zum Originalbeitrag"
 
-#: ../../include/js_strings.php:13
-msgid "Passphrase hint"
-msgstr "Hinweis zur Phrase"
+#: ../../include/text.php:1436
+msgid "Select a page layout: "
+msgstr "Ein Seiten-Layout auswählen"
 
-#: ../../include/js_strings.php:15
-msgid "timeago.prefixAgo"
-msgstr "timeago.prefixAgo"
+#: ../../include/text.php:1439 ../../include/text.php:1504
+msgid "default"
+msgstr "Standard"
 
-#: ../../include/js_strings.php:16
-msgid "timeago.suffixAgo"
-msgstr "timeago.suffixAgo"
+#: ../../include/text.php:1475
+msgid "Page content type: "
+msgstr "Content-Typ der Seite"
 
-#: ../../include/js_strings.php:17
-msgid "ago"
-msgstr "her"
+#: ../../include/text.php:1516
+msgid "Select an alternate language"
+msgstr "Wähle eine alternative Sprache"
 
-#: ../../include/js_strings.php:18
-msgid "from now"
-msgstr "von jetzt"
+#: ../../include/text.php:1637 ../../include/conversation.php:117
+#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:45
+msgid "photo"
+msgstr "Foto"
 
-#: ../../include/js_strings.php:19
-msgid "less than a minute"
-msgstr "weniger als eine Minute"
+#: ../../include/text.php:1640 ../../include/conversation.php:120
+#: ../../mod/tagger.php:49
+msgid "event"
+msgstr "Ereignis"
 
-#: ../../include/js_strings.php:20
-msgid "about a minute"
-msgstr "ungefähr eine Minute"
+#: ../../include/text.php:1643 ../../include/conversation.php:145
+#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:53
+msgid "status"
+msgstr "Status"
 
-#: ../../include/js_strings.php:21
-#, php-format
-msgid "%d minutes"
-msgstr "%d Minuten"
+#: ../../include/text.php:1645 ../../include/conversation.php:147
+#: ../../mod/tagger.php:55
+msgid "comment"
+msgstr "Kommentar"
 
-#: ../../include/js_strings.php:22
-msgid "about an hour"
-msgstr "ungefähr eine Stunde"
+#: ../../include/text.php:1650
+msgid "activity"
+msgstr "Aktivität"
 
-#: ../../include/js_strings.php:23
-#, php-format
-msgid "about %d hours"
-msgstr "ungefähr %d Stunden"
+#: ../../include/text.php:1907
+msgid "Design"
+msgstr "Design"
 
-#: ../../include/js_strings.php:24
-msgid "a day"
-msgstr "ein Tag"
+#: ../../include/text.php:1909
+msgid "Blocks"
+msgstr "Blöcke"
 
-#: ../../include/js_strings.php:25
-#, php-format
-msgid "%d days"
-msgstr "%d Tage"
+#: ../../include/text.php:1910
+msgid "Menus"
+msgstr "Menüs"
 
-#: ../../include/js_strings.php:26
-msgid "about a month"
-msgstr "ungefähr ein Monat"
+#: ../../include/text.php:1911
+msgid "Layouts"
+msgstr "Layouts"
 
-#: ../../include/js_strings.php:27
-#, php-format
-msgid "%d months"
-msgstr "%d Monate"
+#: ../../include/text.php:1912
+msgid "Pages"
+msgstr "Seiten"
 
-#: ../../include/js_strings.php:28
-msgid "about a year"
-msgstr "ungefähr ein Jahr"
+#: ../../include/widgets.php:29 ../../include/contact_widgets.php:87
+msgid "Categories"
+msgstr "Kategorien"
 
-#: ../../include/js_strings.php:29
-#, php-format
-msgid "%d years"
-msgstr "%d Jahre"
+#: ../../include/widgets.php:115 ../../include/widgets.php:155
+#: ../../include/Contact.php:104 ../../include/identity.php:628
+#: ../../mod/directory.php:183 ../../mod/match.php:62
+#: ../../mod/dirprofile.php:170 ../../mod/suggest.php:51
+msgid "Connect"
+msgstr "Verbinden"
 
-#: ../../include/js_strings.php:30
-msgid " "
-msgstr " "
+#: ../../include/widgets.php:117 ../../mod/suggest.php:53
+msgid "Ignore/Hide"
+msgstr "Ignorieren/Verstecken"
 
-#: ../../include/js_strings.php:31
-msgid "timeago.numbers"
-msgstr "timeago.numbers"
+#: ../../include/widgets.php:123 ../../mod/connections.php:238
+msgid "Suggestions"
+msgstr "Vorschläge"
 
-#: ../../include/message.php:18
-msgid "No recipient provided."
-msgstr "Kein Empfänger angegeben"
+#: ../../include/widgets.php:124
+msgid "See more..."
+msgstr "Mehr anzeigen..."
 
-#: ../../include/message.php:23
-msgid "[no subject]"
-msgstr "[no subject]"
+#: ../../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/message.php:42
-msgid "Unable to determine sender."
-msgstr "Kann Absender nicht bestimmen."
+#: ../../include/widgets.php:152
+msgid "Add New Connection"
+msgstr "Neue Verbindung hinzufügen"
 
-#: ../../include/message.php:143
-msgid "Stored post could not be verified."
-msgstr "Gespeicherter Beitrag konnten nicht überprüft werden."
+#: ../../include/widgets.php:153
+msgid "Enter the channel address"
+msgstr "Adresse des Kanals eingeben"
 
-#: ../../include/photo/photo_driver.php:637 ../../include/photos.php:51
-#: ../../mod/photos.php:91 ../../mod/photos.php:652 ../../mod/photos.php:674
-#: ../../mod/profile_photo.php:78 ../../mod/profile_photo.php:225
-#: ../../mod/profile_photo.php:336
-msgid "Profile Photos"
-msgstr "Profilfotos"
+#: ../../include/widgets.php:154
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara"
 
-#: ../../include/identity.php:29 ../../mod/item.php:1150
-msgid "Unable to obtain identity information from database"
-msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen"
+#: ../../include/widgets.php:171
+msgid "Notes"
+msgstr "Notizen"
 
-#: ../../include/identity.php:62
-msgid "Empty name"
-msgstr "Namensfeld leer"
+#: ../../include/widgets.php:243
+msgid "Remove term"
+msgstr "Eintrag löschen"
 
-#: ../../include/identity.php:64
-msgid "Name too long"
-msgstr "Name ist zu lang"
+#: ../../include/widgets.php:252 ../../include/features.php:52
+msgid "Saved Searches"
+msgstr "Gesicherte Suchanfragen"
 
-#: ../../include/identity.php:143
-msgid "No account identifier"
-msgstr "Keine Account-Kennung"
+#: ../../include/widgets.php:253 ../../include/group.php:290
+msgid "add"
+msgstr "hinzufügen"
 
-#: ../../include/identity.php:153
-msgid "Nickname is required."
-msgstr "Spitzname ist erforderlich."
+#: ../../include/widgets.php:283 ../../include/features.php:66
+#: ../../include/contact_widgets.php:53
+msgid "Saved Folders"
+msgstr "Gesicherte Ordner"
 
-#: ../../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/widgets.php:286 ../../include/contact_widgets.php:56
+#: ../../include/contact_widgets.php:90
+msgid "Everything"
+msgstr "Alles"
 
-#: ../../include/identity.php:226
-msgid "Unable to retrieve created identity"
-msgstr "Kann die erstellte Identität nicht empfangen"
+#: ../../include/widgets.php:318 ../../include/items.php:3613
+msgid "Archives"
+msgstr "Archive"
 
-#: ../../include/identity.php:285
-msgid "Default Profile"
-msgstr "Standard-Profil"
+#: ../../include/widgets.php:370
+msgid "Refresh"
+msgstr "Aktualisieren"
 
-#: ../../include/identity.php:310 ../../include/profile_selectors.php:42
-#: ../../include/widgets.php:373 ../../mod/connedit.php:389
+#: ../../include/widgets.php:371 ../../mod/connedit.php:389
+msgid "Me"
+msgstr "Ich"
+
+#: ../../include/widgets.php:372 ../../mod/connedit.php:391
+msgid "Best Friends"
+msgstr "Beste Freunde"
+
+#: ../../include/widgets.php:373 ../../include/identity.php:310
+#: ../../include/profile_selectors.php:42 ../../mod/connedit.php:392
 msgid "Friends"
 msgstr "Freunde"
 
-#: ../../include/identity.php:477
-msgid "Requested channel is not available."
-msgstr "Angeforderte Kanal nicht verfügbar."
+#: ../../include/widgets.php:374
+msgid "Co-workers"
+msgstr "Kollegen"
 
-#: ../../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/widgets.php:375 ../../mod/connedit.php:393
+msgid "Former Friends"
+msgstr "ehem. Freunde"
 
-#: ../../include/identity.php:524 ../../mod/webpages.php:8
-#: ../../mod/connect.php:13 ../../mod/layouts.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 "Erwünschte Profil ist nicht verfügbar."
+#: ../../include/widgets.php:376 ../../mod/connedit.php:394
+msgid "Acquaintances"
+msgstr "Bekanntschaften"
 
-#: ../../include/identity.php:642 ../../mod/profiles.php:603
-msgid "Change profile photo"
-msgstr "Ändere das Profilfoto"
+#: ../../include/widgets.php:377
+msgid "Everybody"
+msgstr "Jeder"
 
-#: ../../include/identity.php:648
-msgid "Profiles"
-msgstr "Profile"
+#: ../../include/widgets.php:409
+msgid "Account settings"
+msgstr "Konto-Einstellungen"
 
-#: ../../include/identity.php:648
-msgid "Manage/edit profiles"
-msgstr "Verwalte/Bearbeite Profile"
+#: ../../include/widgets.php:415
+msgid "Channel settings"
+msgstr "Kanal-Einstellungen"
 
-#: ../../include/identity.php:649 ../../mod/profiles.php:604
-msgid "Create New Profile"
-msgstr "Neues Profil erstellen"
+#: ../../include/widgets.php:421
+msgid "Additional features"
+msgstr "Zusätzliche Funktionen"
 
-#: ../../include/identity.php:652
-msgid "Edit Profile"
-msgstr "Profile bearbeiten"
+#: ../../include/widgets.php:427
+msgid "Feature settings"
+msgstr "Funktions-Einstellungen"
 
-#: ../../include/identity.php:663 ../../mod/profiles.php:615
-msgid "Profile Image"
-msgstr "Profilfoto:"
+#: ../../include/widgets.php:433
+msgid "Display settings"
+msgstr "Anzeige-Einstellungen"
 
-#: ../../include/identity.php:666 ../../mod/profiles.php:618
-msgid "visible to everybody"
-msgstr "sichtbar für jeden"
+#: ../../include/widgets.php:439
+msgid "Connected apps"
+msgstr "Verbundene Apps"
 
-#: ../../include/identity.php:667 ../../mod/profiles.php:619
-msgid "Edit visibility"
-msgstr "Sichtbarkeit bearbeiten"
+#: ../../include/widgets.php:445
+msgid "Export channel"
+msgstr "Kanal exportieren"
 
-#: ../../include/identity.php:681 ../../include/identity.php:908
-#: ../../mod/directory.php:158
-msgid "Gender:"
-msgstr "Geschlecht:"
+#: ../../include/widgets.php:457
+msgid "Automatic Permissions (Advanced)"
+msgstr "Automatische Berechtigungen (Erweitert)"
 
-#: ../../include/identity.php:682 ../../include/identity.php:928
-#: ../../mod/directory.php:160
-msgid "Status:"
-msgstr "Status:"
+#: ../../include/widgets.php:467
+msgid "Premium Channel Settings"
+msgstr "Prämium-Kanal Einstellungen"
 
-#: ../../include/identity.php:683 ../../include/identity.php:939
-#: ../../mod/directory.php:162
-msgid "Homepage:"
-msgstr "Homepage:"
+#: ../../include/widgets.php:476 ../../include/features.php:43
+#: ../../mod/sources.php:88
+msgid "Channel Sources"
+msgstr "Kanal Quellen"
 
-#: ../../include/identity.php:684 ../../mod/dirprofile.php:157
-msgid "Online Now"
-msgstr "gerade online"
+#: ../../include/widgets.php:504
+msgid "Check Mail"
+msgstr "E-Mails abrufen"
 
-#: ../../include/identity.php:752 ../../include/identity.php:832
-#: ../../mod/ping.php:256
-msgid "g A l F d"
-msgstr "l, d. F G \\\\U\\\\h\\\\r"
+#: ../../include/widgets.php:585
+msgid "Chat Rooms"
+msgstr "Chaträume"
 
-#: ../../include/identity.php:753 ../../include/identity.php:833
-msgid "F d"
-msgstr "d. F"
+#: ../../include/Contact.php:120
+msgid "New window"
+msgstr "Neues Fenster"
 
-#: ../../include/identity.php:798 ../../include/identity.php:873
-#: ../../mod/ping.php:278
-msgid "[today]"
-msgstr "[Heute]"
+#: ../../include/Contact.php:121
+msgid "Open the selected location in a different window or browser tab"
+msgstr "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab"
 
-#: ../../include/identity.php:810
-msgid "Birthday Reminders"
-msgstr "Geburtstags Erinnerungen"
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Allgemeine Funktionen"
 
-#: ../../include/identity.php:811
-msgid "Birthdays this week:"
-msgstr "Geburtstage in dieser Woche:"
+#: ../../include/features.php:25
+msgid "Content Expiration"
+msgstr "Verfall von Inhalten"
 
-#: ../../include/identity.php:866
-msgid "[No description]"
-msgstr "[Keine Beschreibung]"
+#: ../../include/features.php:25
+msgid "Remove posts/comments and/or private messages at a future time"
+msgstr "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum."
 
-#: ../../include/identity.php:884
-msgid "Event Reminders"
-msgstr "Veranstaltungs- Erinnerungen"
+#: ../../include/features.php:26
+msgid "Multiple Profiles"
+msgstr "Mehrfachprofile"
 
-#: ../../include/identity.php:885
-msgid "Events this week:"
-msgstr "Veranstaltungen in dieser Woche:"
+#: ../../include/features.php:26
+msgid "Ability to create multiple profiles"
+msgstr "Mehrfachprofile anlegen können"
 
-#: ../../include/identity.php:898 ../../include/identity.php:982
-#: ../../mod/profperm.php:107
-msgid "Profile"
-msgstr "Profil"
+#: ../../include/features.php:27
+msgid "Web Pages"
+msgstr "Webseiten"
 
-#: ../../include/identity.php:906 ../../mod/settings.php:916
-msgid "Full Name:"
-msgstr "Voller Name:"
-
-#: ../../include/identity.php:913
-msgid "j F, Y"
-msgstr "j F, Y"
-
-#: ../../include/identity.php:914
-msgid "j F"
-msgstr "j F"
-
-#: ../../include/identity.php:921
-msgid "Birthday:"
-msgstr "Geburtstag:"
-
-#: ../../include/identity.php:925
-msgid "Age:"
-msgstr "Alter:"
-
-#: ../../include/identity.php:934
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "für %1$d %2$s"
-
-#: ../../include/identity.php:937 ../../mod/profiles.php:526
-msgid "Sexual Preference:"
-msgstr "Sexuelle Orientierung:"
-
-#: ../../include/identity.php:941 ../../mod/profiles.php:528
-msgid "Hometown:"
-msgstr "Heimatstadt:"
-
-#: ../../include/identity.php:943
-msgid "Tags:"
-msgstr "Schlagworte:"
-
-#: ../../include/identity.php:945 ../../mod/profiles.php:529
-msgid "Political Views:"
-msgstr "Politische Ansichten:"
-
-#: ../../include/identity.php:947
-msgid "Religion:"
-msgstr "Religion:"
-
-#: ../../include/identity.php:949 ../../mod/directory.php:164
-msgid "About:"
-msgstr "Über:"
-
-#: ../../include/identity.php:951
-msgid "Hobbies/Interests:"
-msgstr "Hobbys/Interessen:"
-
-#: ../../include/identity.php:953 ../../mod/profiles.php:532
-msgid "Likes:"
-msgstr "Gefällt-mir:"
-
-#: ../../include/identity.php:955 ../../mod/profiles.php:533
-msgid "Dislikes:"
-msgstr "Gefällt-mir-nicht:"
-
-#: ../../include/identity.php:958
-msgid "Contact information and Social Networks:"
-msgstr "Kontaktinformation und soziale Netzwerke:"
-
-#: ../../include/identity.php:960
-msgid "My other channels:"
-msgstr "Meine anderen Kanäle:"
-
-#: ../../include/identity.php:962
-msgid "Musical interests:"
-msgstr "Musikalische Interessen:"
-
-#: ../../include/identity.php:964
-msgid "Books, literature:"
-msgstr "Bücher, Literatur:"
-
-#: ../../include/identity.php:966
-msgid "Television:"
-msgstr "Fernsehen:"
-
-#: ../../include/identity.php:968
-msgid "Film/dance/culture/entertainment:"
-msgstr "Film/Tanz/Kultur/Unterhaltung:"
-
-#: ../../include/identity.php:970
-msgid "Love/Romance:"
-msgstr "Liebe/Romantik:"
-
-#: ../../include/identity.php:972
-msgid "Work/employment:"
-msgstr "Arbeit/Anstellung:"
-
-#: ../../include/identity.php:974
-msgid "School/education:"
-msgstr "Schule/Ausbildung:"
-
-#: ../../include/reddav.php:1018
-msgid "Edit File properties"
-msgstr "Dateieigenschaften ändern"
-
-#: ../../include/oembed.php:157
-msgid "Embedded content"
-msgstr "Eingebetteter Inhalt"
-
-#: ../../include/oembed.php:166
-msgid "Embedding disabled"
-msgstr "Einbetten ausgeschaltet"
-
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "Allgemeine Funktionen"
-
-#: ../../include/features.php:25
-msgid "Content Expiration"
-msgstr "Verfall von Inhalten"
-
-#: ../../include/features.php:25
-msgid "Remove posts/comments and/or private messages at a future time"
-msgstr "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum."
-
-#: ../../include/features.php:26
-msgid "Multiple Profiles"
-msgstr "Mehrfachprofile"
-
-#: ../../include/features.php:26
-msgid "Ability to create multiple profiles"
-msgstr "Mehrfachprofile anlegen können"
-
-#: ../../include/features.php:27
-msgid "Web Pages"
-msgstr "Webseiten"
-
-#: ../../include/features.php:27
-msgid "Provide managed web pages on your channel"
-msgstr "Stelle verwaltete Webseiten in Deinem Kanal zur Verfügung"
+#: ../../include/features.php:27
+msgid "Provide managed web pages on your channel"
+msgstr "Stelle verwaltete Webseiten in Deinem Kanal zur Verfügung"
 
 #: ../../include/features.php:28
 msgid "Private Notes"
@@ -1060,11 +915,6 @@ msgstr "Voransicht"
 msgid "Allow previewing posts and comments before publishing them"
 msgstr "Erlaube Voransicht von Beiträgen und Kommentaren vor Veröffentlichung"
 
-#: ../../include/features.php:43 ../../include/widgets.php:476
-#: ../../mod/sources.php:81
-msgid "Channel Sources"
-msgstr "Kanal Quellen"
-
 #: ../../include/features.php:43
 msgid "Automatically import channel content from other channels or feeds"
 msgstr "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds."
@@ -1098,10 +948,6 @@ msgstr "Filter für Sammlung"
 msgid "Enable widget to display Network posts only from selected collections"
 msgstr "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen"
 
-#: ../../include/features.php:52 ../../include/widgets.php:252
-msgid "Saved Searches"
-msgstr "Gesicherte Suchanfragen"
-
 #: ../../include/features.php:52
 msgid "Save search terms for re-use"
 msgstr "Gesicherte Suchbegriffe zur Wiederverwendung"
@@ -1166,11 +1012,6 @@ msgstr "Beitrags-Kategorien"
 msgid "Add categories to your posts"
 msgstr "Kategorien für Beiträge"
 
-#: ../../include/features.php:66 ../../include/widgets.php:283
-#: ../../include/contact_widgets.php:53
-msgid "Saved Folders"
-msgstr "Gesicherte Ordner"
-
 #: ../../include/features.php:66
 msgid "Ability to file posts under folders"
 msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln"
@@ -1199,1943 +1040,2148 @@ msgstr "Tag Wolke"
 msgid "Provide a personal tag cloud on your channel page"
 msgstr "Persönliche Schlagwort-Wolke für deine Kanal-Seite anlegen"
 
-#: ../../include/group.php:25
-msgid ""
-"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."
-msgstr "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."
-
-#: ../../include/group.php:223
-msgid "Default privacy group for new contacts"
-msgstr "Standard-Privatsphärengruppe für neue Kontakte"
+#: ../../include/contact_selectors.php:30
+msgid "Unknown | Not categorised"
+msgstr "Unbekannt | Nicht kategorisiert"
 
-#: ../../include/group.php:242 ../../mod/admin.php:750
-msgid "All Channels"
-msgstr "Alle Kanäle"
+#: ../../include/contact_selectors.php:31
+msgid "Block immediately"
+msgstr "Sofort blockieren"
 
-#: ../../include/group.php:264
-msgid "edit"
-msgstr "Bearbeiten"
+#: ../../include/contact_selectors.php:32
+msgid "Shady, spammer, self-marketer"
+msgstr "Zwielichtig, Spammer, Selbstdarsteller"
 
-#: ../../include/group.php:285
-msgid "Collections"
-msgstr "Sammlungen"
+#: ../../include/contact_selectors.php:33
+msgid "Known to me, but no opinion"
+msgstr "Mir bekannt, aber keine Meinung"
 
-#: ../../include/group.php:286
-msgid "Edit collection"
-msgstr "Bearbeite Sammlungen"
+#: ../../include/contact_selectors.php:34
+msgid "OK, probably harmless"
+msgstr "Ok, wahrscheinlich harmlos"
 
-#: ../../include/group.php:287
-msgid "Create a new collection"
-msgstr "Neue Sammlung erzeugen"
+#: ../../include/contact_selectors.php:35
+msgid "Reputable, has my trust"
+msgstr "Seriös, hat mein Vertrauen"
 
-#: ../../include/group.php:288
-msgid "Channels not in any collection"
-msgstr "Kanäle, die nicht in einer Sammlung sind"
+#: ../../include/contact_selectors.php:54
+msgid "Frequently"
+msgstr "Häufig"
 
-#: ../../include/group.php:290 ../../include/widgets.php:253
-msgid "add"
-msgstr "hinzufügen"
+#: ../../include/contact_selectors.php:55
+msgid "Hourly"
+msgstr "Stündlich"
 
-#: ../../include/notify.php:23
-msgid "created a new post"
-msgstr "Neuer Beitrag wurde erzeugt"
+#: ../../include/contact_selectors.php:56
+msgid "Twice daily"
+msgstr "Zwei Mal am Tag"
 
-#: ../../include/notify.php:24
-#, php-format
-msgid "commented on %s's post"
-msgstr "hat %s's Beitrag kommentiert"
+#: ../../include/contact_selectors.php:57
+msgid "Daily"
+msgstr "Täglich"
 
-#: ../../include/photos.php:89
-#, php-format
-msgid "Image exceeds website size limit of %lu bytes"
-msgstr "Bild überschreitet das Limit der Webseite von %lu bytes"
+#: ../../include/contact_selectors.php:58
+msgid "Weekly"
+msgstr "Wöchentlich"
 
-#: ../../include/photos.php:96
-msgid "Image file is empty."
-msgstr "Bilddatei ist leer."
+#: ../../include/contact_selectors.php:59
+msgid "Monthly"
+msgstr "Monatlich"
 
-#: ../../include/photos.php:123 ../../mod/profile_photo.php:147
-msgid "Unable to process image"
-msgstr "Kann Bild nicht verarbeiten"
+#: ../../include/contact_selectors.php:74
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../include/photos.php:185
-msgid "Photo storage failed."
-msgstr "Foto speichern schlug fehl"
+#: ../../include/contact_selectors.php:75
+msgid "OStatus"
+msgstr "OStatus"
 
-#: ../../include/photos.php:302 ../../include/conversation.php:1478
-msgid "Photo Albums"
-msgstr "Fotoalben"
+#: ../../include/contact_selectors.php:76
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: ../../include/photos.php:306 ../../mod/photos.php:690
-#: ../../mod/photos.php:1169
-msgid "Upload New Photos"
-msgstr "Lade neue Fotos hoch"
+#: ../../include/contact_selectors.php:77 ../../mod/admin.php:741
+#: ../../mod/admin.php:750 ../../boot.php:1426
+msgid "Email"
+msgstr "E-Mail"
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Männlich"
+#: ../../include/contact_selectors.php:78
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Weiblich"
+#: ../../include/contact_selectors.php:79
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Momentan männlich"
+#: ../../include/contact_selectors.php:80
+msgid "Zot!"
+msgstr "Zot!"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Momentan weiblich"
+#: ../../include/contact_selectors.php:81
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Größtenteils männlich"
+#: ../../include/contact_selectors.php:82
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Größtenteils weiblich"
+#: ../../include/contact_selectors.php:83
+msgid "MySpace"
+msgstr "MySpace"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transsexuell"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Verschiedenes"
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Zwischengeschlechtlich"
+#: ../../include/datetime.php:152 ../../include/datetime.php:284
+msgid "year"
+msgstr "Jahr"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transsexuell"
+#: ../../include/datetime.php:157 ../../include/datetime.php:285
+msgid "month"
+msgstr "Monat"
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Zwitter"
+#: ../../include/datetime.php:162 ../../include/datetime.php:287
+msgid "day"
+msgstr "Tag"
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Geschlechtslos"
+#: ../../include/datetime.php:275
+msgid "never"
+msgstr "Nie"
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "unklar"
+#: ../../include/datetime.php:281
+msgid "less than a second ago"
+msgstr "Vor weniger als einer Sekunde"
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Anders"
+#: ../../include/datetime.php:284
+msgid "years"
+msgstr "Jahre"
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Unentschieden"
+#: ../../include/datetime.php:285
+msgid "months"
+msgstr "Monate"
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Männer"
+#: ../../include/datetime.php:286
+msgid "week"
+msgstr "Woche"
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Frauen"
+#: ../../include/datetime.php:286
+msgid "weeks"
+msgstr "Wochen"
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Schwul"
+#: ../../include/datetime.php:287
+msgid "days"
+msgstr "Tage"
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbisch"
+#: ../../include/datetime.php:288
+msgid "hour"
+msgstr "Stunde"
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Keine Bevorzugung"
+#: ../../include/datetime.php:288
+msgid "hours"
+msgstr "Stunden"
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bisexuell"
+#: ../../include/datetime.php:289
+msgid "minute"
+msgstr "Minute"
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autosexuell"
+#: ../../include/datetime.php:289
+msgid "minutes"
+msgstr "Minuten"
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Enthaltsam"
+#: ../../include/datetime.php:290
+msgid "second"
+msgstr "Sekunde"
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Jungfräulich"
+#: ../../include/datetime.php:290
+msgid "seconds"
+msgstr "Sekunden"
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Abweichend"
+#: ../../include/datetime.php:299
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "vor %1$d %2$s"
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetisch"
+#: ../../include/dba/dba_driver.php:50
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Kann die DNS-Info für den Datenbank-Server '%s' nicht finden"
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Unmengen"
+#: ../../include/event.php:11 ../../include/bb2diaspora.php:433
+msgid "l F d, Y \\@ g:i A"
+msgstr "l, d. F Y\\\\, H:i"
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Sexlos"
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:439
+msgid "Starts:"
+msgstr "Beginnt:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Single"
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:447
+msgid "Finishes:"
+msgstr "Endet:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Einsam"
+#: ../../include/event.php:40 ../../include/identity.php:679
+#: ../../include/bb2diaspora.php:455 ../../mod/events.php:462
+#: ../../mod/directory.php:156 ../../mod/dirprofile.php:111
+msgid "Location:"
+msgstr "Ort:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Verfügbar"
+#: ../../include/group.php:25
+msgid ""
+"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."
+msgstr "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."
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Nicht verfügbar"
+#: ../../include/group.php:223
+msgid "Default privacy group for new contacts"
+msgstr "Standard-Privatsphärengruppe für neue Kontakte"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "Verguckt"
+#: ../../include/group.php:242 ../../mod/admin.php:750
+msgid "All Channels"
+msgstr "Alle Kanäle"
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "Verknallt"
+#: ../../include/group.php:264
+msgid "edit"
+msgstr "Bearbeiten"
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Lerne gerade jemanden kennen"
+#: ../../include/group.php:285
+msgid "Collections"
+msgstr "Sammlungen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Treulos"
+#: ../../include/group.php:286
+msgid "Edit collection"
+msgstr "Bearbeite Sammlungen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Sexabhängig"
+#: ../../include/group.php:287
+msgid "Create a new collection"
+msgstr "Neue Sammlung erzeugen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Freunde/Begünstigte"
+#: ../../include/group.php:288
+msgid "Channels not in any collection"
+msgstr "Kanäle, die nicht in einer Sammlung sind"
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Lose"
+#: ../../include/js_strings.php:5
+msgid "Delete this item?"
+msgstr "Dieses Element löschen?"
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Verlobt"
+#: ../../include/js_strings.php:6 ../../include/ItemObject.php:546
+#: ../../mod/photos.php:989 ../../mod/photos.php:1076
+msgid "Comment"
+msgstr "Kommentar"
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Verheiratet"
+#: ../../include/js_strings.php:7 ../../include/ItemObject.php:280
+#: ../../include/contact_widgets.php:125
+msgid "show more"
+msgstr "mehr zeigen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "Gewissermaßen verheiratet"
+#: ../../include/js_strings.php:8
+msgid "show fewer"
+msgstr "Zeige weniger"
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partner"
+#: ../../include/js_strings.php:9
+msgid "Password too short"
+msgstr "Kennwort zu kurz"
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "Lebensgemeinschaft"
+#: ../../include/js_strings.php:10
+msgid "Passwords do not match"
+msgstr "Kennwörter stimmen nicht überein"
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr "Informelle Ehe"
+#: ../../include/js_strings.php:11 ../../mod/photos.php:39
+msgid "everybody"
+msgstr "alle"
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Glücklich"
+#: ../../include/js_strings.php:12
+msgid "Secret Passphrase"
+msgstr "geheime Passwort-Phrase"
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Nicht Ausschau haltend"
+#: ../../include/js_strings.php:13
+msgid "Passphrase hint"
+msgstr "Hinweis zur Phrase"
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: ../../include/js_strings.php:15
+msgid "timeago.prefixAgo"
+msgstr "timeago.prefixAgo"
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Betrogen"
+#: ../../include/js_strings.php:16
+msgid "timeago.suffixAgo"
+msgstr "timeago.suffixAgo"
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Getrennt"
+#: ../../include/js_strings.php:17
+msgid "ago"
+msgstr "her"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Labil"
+#: ../../include/js_strings.php:18
+msgid "from now"
+msgstr "von jetzt"
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Geschieden"
+#: ../../include/js_strings.php:19
+msgid "less than a minute"
+msgstr "weniger als eine Minute"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "Gewissermaßen geschieden"
+#: ../../include/js_strings.php:20
+msgid "about a minute"
+msgstr "ungefähr eine Minute"
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Verwitwet"
+#: ../../include/js_strings.php:21
+#, php-format
+msgid "%d minutes"
+msgstr "%d Minuten"
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Ungewiss"
+#: ../../include/js_strings.php:22
+msgid "about an hour"
+msgstr "ungefähr eine Stunde"
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "Es ist kompliziert"
+#: ../../include/js_strings.php:23
+#, php-format
+msgid "about %d hours"
+msgstr "ungefähr %d Stunden"
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Interessiert mich nicht"
+#: ../../include/js_strings.php:24
+msgid "a day"
+msgstr "ein Tag"
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Frag mich mal"
+#: ../../include/js_strings.php:25
+#, php-format
+msgid "%d days"
+msgstr "%d Tage"
+
+#: ../../include/js_strings.php:26
+msgid "about a month"
+msgstr "ungefähr ein Monat"
+
+#: ../../include/js_strings.php:27
+#, php-format
+msgid "%d months"
+msgstr "%d Monate"
+
+#: ../../include/js_strings.php:28
+msgid "about a year"
+msgstr "ungefähr ein Jahr"
+
+#: ../../include/js_strings.php:29
+#, php-format
+msgid "%d years"
+msgstr "%d Jahre"
+
+#: ../../include/js_strings.php:30
+msgid " "
+msgstr " "
+
+#: ../../include/js_strings.php:31
+msgid "timeago.numbers"
+msgstr "timeago.numbers"
+
+#: ../../include/message.php:18
+msgid "No recipient provided."
+msgstr "Kein Empfänger angegeben"
+
+#: ../../include/message.php:23
+msgid "[no subject]"
+msgstr "[no subject]"
+
+#: ../../include/message.php:42
+msgid "Unable to determine sender."
+msgstr "Kann Absender nicht bestimmen."
+
+#: ../../include/message.php:143
+msgid "Stored post could not be verified."
+msgstr "Gespeicherter Beitrag konnten nicht überprüft werden."
+
+#: ../../include/photo/photo_driver.php:637 ../../include/photos.php:51
+#: ../../mod/profile_photo.php:78 ../../mod/profile_photo.php:225
+#: ../../mod/profile_photo.php:336 ../../mod/photos.php:91
+#: ../../mod/photos.php:652 ../../mod/photos.php:674
+msgid "Profile Photos"
+msgstr "Profilfotos"
 
-#: ../../include/attach.php:179 ../../include/attach.php:227
+#: ../../include/attach.php:98 ../../include/attach.php:129
+#: ../../include/attach.php:185 ../../include/attach.php:200
+#: ../../include/attach.php:233 ../../include/attach.php:247
+#: ../../include/attach.php:268 ../../include/attach.php:463
+#: ../../include/attach.php:541 ../../include/chat.php:113
+#: ../../include/photos.php:15 ../../include/items.php:3492
+#: ../../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/item.php:182 ../../mod/item.php:190
+#: ../../mod/menu.php:44 ../../mod/webpages.php:40 ../../mod/api.php:26
+#: ../../mod/api.php:31 ../../mod/bookmarks.php:46 ../../mod/settings.php:490
+#: ../../mod/chat.php:87 ../../mod/chat.php:92
+#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27
+#: ../../mod/delegate.php:6 ../../mod/mitem.php:73 ../../mod/group.php:9
+#: ../../mod/viewsrc.php:12 ../../mod/editpost.php:13
+#: ../../mod/connedit.php:182 ../../mod/layouts.php:27
+#: ../../mod/layouts.php:42 ../../mod/page.php:30 ../../mod/page.php:80
+#: ../../mod/network.php:12 ../../mod/profiles.php:152
+#: ../../mod/profiles.php:453 ../../mod/sources.php:66 ../../mod/setup.php:200
+#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97
+#: ../../mod/achievements.php:27 ../../mod/manage.php:6 ../../mod/mail.php:108
+#: ../../mod/editlayout.php:48 ../../mod/profile_photo.php:187
+#: ../../mod/profile_photo.php:200 ../../mod/connections.php:169
+#: ../../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:188
+#: ../../mod/channel.php:231 ../../mod/fsuggest.php:78
+#: ../../mod/editblock.php:48 ../../mod/filestorage.php:10
+#: ../../mod/filestorage.php:59 ../../mod/filestorage.php:75
+#: ../../mod/filestorage.php:98 ../../mod/suggest.php:26
+#: ../../mod/message.php:16 ../../mod/register.php:68 ../../mod/regmod.php:18
+#: ../../mod/authtest.php:13 ../../mod/photos.php:68 ../../mod/photos.php:522
+#: ../../mod/mood.php:119 ../../index.php:176 ../../index.php:351
+msgid "Permission denied."
+msgstr "Zugang verweigert"
+
+#: ../../include/attach.php:180 ../../include/attach.php:228
 msgid "Item was not found."
 msgstr "Beitrag wurde nicht gefunden."
 
-#: ../../include/attach.php:280
+#: ../../include/attach.php:281
 msgid "No source file."
 msgstr "Keine Quelldatei."
 
-#: ../../include/attach.php:297
+#: ../../include/attach.php:298
 msgid "Cannot locate file to replace"
 msgstr "Kann Datei zum Ersetzen nicht finden"
 
-#: ../../include/attach.php:315
+#: ../../include/attach.php:316
 msgid "Cannot locate file to revise/update"
 msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden"
 
-#: ../../include/attach.php:326
+#: ../../include/attach.php:327
 #, php-format
 msgid "File exceeds size limit of %d"
 msgstr "Datei überschreitet das Größen-Limit von %d"
 
-#: ../../include/attach.php:338
+#: ../../include/attach.php:339
 #, 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:422
+#: ../../include/attach.php:423
 msgid "File upload failed. Possible system limit or action terminated."
 msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."
 
-#: ../../include/attach.php:434
+#: ../../include/attach.php:435
 msgid "Stored file could not be verified. Upload failed."
 msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."
 
-#: ../../include/attach.php:478 ../../include/attach.php:495
+#: ../../include/attach.php:479 ../../include/attach.php:496
 msgid "Path not available."
 msgstr "Pfad nicht verfügbar."
 
-#: ../../include/attach.php:545
+#: ../../include/attach.php:546
 msgid "Empty pathname"
 msgstr "leere Pfadangabe"
 
-#: ../../include/attach.php:563
+#: ../../include/attach.php:564
 msgid "duplicate filename or path"
 msgstr "doppelter Dateiname oder Pfad"
 
-#: ../../include/attach.php:588
+#: ../../include/attach.php:589
 msgid "Path not found."
 msgstr "Pfad nicht gefunden."
 
-#: ../../include/attach.php:633
+#: ../../include/attach.php:634
 msgid "mkdir failed."
 msgstr "mkdir fehlgeschlagen."
 
-#: ../../include/attach.php:637
+#: ../../include/attach.php:638
 msgid "database storage failed."
 msgstr "Speichern in der Datenbank fehlgeschlagen."
 
-#: ../../include/taxonomy.php:210
-msgid "Tags"
-msgstr "Tags"
+#: ../../include/bbcode.php:128 ../../include/bbcode.php:587
+#: ../../include/bbcode.php:590 ../../include/bbcode.php:595
+#: ../../include/bbcode.php:598 ../../include/bbcode.php:601
+#: ../../include/bbcode.php:604 ../../include/bbcode.php:609
+#: ../../include/bbcode.php:612 ../../include/bbcode.php:617
+#: ../../include/bbcode.php:620 ../../include/bbcode.php:623
+#: ../../include/bbcode.php:626
+msgid "Image/photo"
+msgstr "Bild/Foto"
 
-#: ../../include/taxonomy.php:227
-msgid "Keywords"
-msgstr "Schlüsselbegriffe"
+#: ../../include/bbcode.php:163 ../../include/bbcode.php:637
+msgid "Encrypted content"
+msgstr "Verschlüsselter Inhalt"
 
-#: ../../include/taxonomy.php:252
-msgid "have"
-msgstr "habe"
+#: ../../include/bbcode.php:170
+msgid "QR code"
+msgstr "QR Code"
 
-#: ../../include/taxonomy.php:252
-msgid "has"
-msgstr "hat"
+#: ../../include/bbcode.php:213
+#, php-format
+msgid "%1$s wrote the following %2$s %3$s"
+msgstr "%1$s schrieb den folgenden %2$s %3$s"
 
-#: ../../include/taxonomy.php:253
-msgid "want"
-msgstr "will"
+#: ../../include/bbcode.php:215
+msgid "post"
+msgstr "Beitrag"
 
-#: ../../include/taxonomy.php:253
-msgid "wants"
-msgstr "will"
+#: ../../include/bbcode.php:555 ../../include/bbcode.php:575
+msgid "$1 wrote:"
+msgstr "$1 schrieb:"
 
-#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:175
-msgid "like"
-msgstr "Gefällt-mir"
+#: ../../include/bookmarks.php:31
+#, php-format
+msgid "%1$s's bookmarks"
+msgstr "%1$s's Lesezeichen"
 
-#: ../../include/taxonomy.php:254
-msgid "likes"
-msgstr "Gefällt-mir"
+#: ../../include/conversation.php:123
+msgid "channel"
+msgstr "Kanal"
 
-#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:176
-msgid "dislike"
-msgstr "Gefällt-mir-nicht"
+#: ../../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/taxonomy.php:255
-msgid "dislikes"
-msgstr "Gefällt-mir-nicht"
+#: ../../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/auth.php:76
-msgid "Logged out."
-msgstr "Ausgeloggt."
+#: ../../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/auth.php:188
-msgid "Failed authentication"
-msgstr "Authentifizierung fehlgeschlagen"
+#: ../../include/conversation.php:236
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s stupste %2$s"
 
-#: ../../include/auth.php:203
-msgid "Login failed."
-msgstr "Login fehlgeschlagen."
+#: ../../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/account.php:23
-msgid "Not a valid email address"
-msgstr "Ungültige E-Mail-Adresse"
+#: ../../include/conversation.php:631 ../../include/ItemObject.php:114
+msgid "Select"
+msgstr "Auswählen"
 
-#: ../../include/account.php:25
-msgid "Your email domain is not among those allowed on this site"
-msgstr "Deine E-Mail-Adresse ist nicht unter denen, die auf dieser Seite erlaubt sind"
+#: ../../include/conversation.php:632 ../../include/ItemObject.php:108
+#: ../../mod/thing.php:230 ../../mod/settings.php:576 ../../mod/group.php:176
+#: ../../mod/admin.php:745 ../../mod/connedit.php:359
+#: ../../mod/filestorage.php:171 ../../mod/photos.php:1040
+msgid "Delete"
+msgstr "Löschen"
 
-#: ../../include/account.php:31
-msgid "Your email address is already registered at this site."
-msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."
+#: ../../include/conversation.php:642 ../../include/ItemObject.php:161
+msgid "Message is verified"
+msgstr "Nachricht überprüft"
 
-#: ../../include/account.php:64
-msgid "An invitation is required."
-msgstr "Eine Einladung wird benötigt"
+#: ../../include/conversation.php:662
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Schaue Dir %s's Profil auf %s an."
 
-#: ../../include/account.php:68
-msgid "Invitation could not be verified."
-msgstr "Die Einladung konnte nicht bestätigt werden"
+#: ../../include/conversation.php:676
+msgid "Categories:"
+msgstr "Kategorien:"
 
-#: ../../include/account.php:119
-msgid "Please enter the required information."
-msgstr "Bitte gib die benötigten Informationen ein."
+#: ../../include/conversation.php:677
+msgid "Filed under:"
+msgstr "Gespeichert unter:"
 
-#: ../../include/account.php:187
-msgid "Failed to store account information."
-msgstr "Speichern der Account-Informationen fehlgeschlagen"
-
-#: ../../include/account.php:273
+#: ../../include/conversation.php:686 ../../include/ItemObject.php:226
 #, php-format
-msgid "Registration request at %s"
-msgstr "Registrierungsanfrage auf %s"
-
-#: ../../include/account.php:275 ../../include/account.php:302
-#: ../../include/account.php:359
-msgid "Administrator"
-msgstr "Administrator"
+msgid " from %s"
+msgstr "von %s"
 
-#: ../../include/account.php:297
-msgid "your registration password"
-msgstr "dein Registrierungspasswort"
+#: ../../include/conversation.php:689 ../../include/ItemObject.php:229
+#, php-format
+msgid "last edited: %s"
+msgstr "zuletzt bearbeitet: %s"
 
-#: ../../include/account.php:300 ../../include/account.php:357
+#: ../../include/conversation.php:690 ../../include/ItemObject.php:230
 #, php-format
-msgid "Registration details for %s"
-msgstr "Registrierungsdetails für %s"
+msgid "Expires: %s"
+msgstr "Verfällt: %s"
 
-#: ../../include/account.php:366
-msgid "Account approved."
-msgstr "Account bestätigt."
+#: ../../include/conversation.php:705
+msgid "View in context"
+msgstr "Im Zusammenhang anschauen"
 
-#: ../../include/account.php:400
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrierung für %s widerrufen"
+#: ../../include/conversation.php:707 ../../include/conversation.php:1120
+#: ../../include/ItemObject.php:258 ../../mod/editpost.php:112
+#: ../../mod/mail.php:222 ../../mod/mail.php:336 ../../mod/editlayout.php:115
+#: ../../mod/editwebpage.php:153 ../../mod/editblock.php:129
+#: ../../mod/photos.php:971
+msgid "Please wait"
+msgstr "Bitte warten"
 
-#: ../../include/dir_fns.php:15
-msgid "Sort Options"
-msgstr "Sortieroptionen"
+#: ../../include/conversation.php:834
+msgid "remove"
+msgstr "lösche"
 
-#: ../../include/dir_fns.php:16
-msgid "Alphabetic"
-msgstr "alphabetisch"
+#: ../../include/conversation.php:838
+msgid "Loading..."
+msgstr "Lädt ..."
 
-#: ../../include/dir_fns.php:17
-msgid "Reverse Alphabetic"
-msgstr "Entgegengesetzt alphabetisch"
+#: ../../include/conversation.php:839
+msgid "Delete Selected Items"
+msgstr "Lösche die ausgewählten Elemente"
 
-#: ../../include/dir_fns.php:18
-msgid "Newest to Oldest"
-msgstr "Neueste zuerst"
+#: ../../include/conversation.php:930
+msgid "View Source"
+msgstr "Quelle anzeigen"
 
-#: ../../include/dir_fns.php:30
-msgid "Enable Safe Search"
-msgstr "Sichere Suche einschalten"
+#: ../../include/conversation.php:931
+msgid "Follow Thread"
+msgstr "Unterhaltung folgen"
 
-#: ../../include/dir_fns.php:32
-msgid "Disable Safe Search"
-msgstr "Sichere Suche ausschalten"
+#: ../../include/conversation.php:932
+msgid "View Status"
+msgstr "Status ansehen"
 
-#: ../../include/dir_fns.php:34
-msgid "Safe Mode"
-msgstr "Sicherer Modus"
+#: ../../include/conversation.php:934
+msgid "View Photos"
+msgstr "Fotos ansehen"
 
-#: ../../include/enotify.php:40
-msgid "Red Matrix Notification"
-msgstr "Red Matrix Benachrichtigung"
+#: ../../include/conversation.php:935
+msgid "Matrix Activity"
+msgstr "Matrix Aktivität"
 
-#: ../../include/enotify.php:41
-msgid "redmatrix"
-msgstr "redmatrix"
+#: ../../include/conversation.php:936
+msgid "Edit Contact"
+msgstr "Kontakt bearbeiten"
 
-#: ../../include/enotify.php:43
-msgid "Thank You,"
-msgstr "Danke."
+#: ../../include/conversation.php:937
+msgid "Send PM"
+msgstr "Sende PN"
 
-#: ../../include/enotify.php:45
-#, php-format
-msgid "%s Administrator"
-msgstr "%s Administrator"
+#: ../../include/conversation.php:938
+msgid "Poke"
+msgstr "Anstupsen"
 
-#: ../../include/enotify.php:80
+#: ../../include/conversation.php:1000
 #, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+msgid "%s likes this."
+msgstr "%s gefällt das."
 
-#: ../../include/enotify.php:84
+#: ../../include/conversation.php:1000
 #, php-format
-msgid "[Red:Notify] New mail received at %s"
-msgstr "[Red Notify] Neue Mail auf %s empfangen"
+msgid "%s doesn't like this."
+msgstr "%s gefällt das nicht."
 
-#: ../../include/enotify.php:86
+#: ../../include/conversation.php:1004
 #, 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."
+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/enotify.php:87
+#: ../../include/conversation.php:1006
 #, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s hat dir %2$s geschickt."
+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/enotify.php:87
-msgid "a private message"
-msgstr "eine private Nachricht"
+#: ../../include/conversation.php:1012
+msgid "and"
+msgstr "und"
 
-#: ../../include/enotify.php:88
+#: ../../include/conversation.php:1015
 #, 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."
+msgid ", and %d other people"
+msgid_plural ", and %d other people"
+msgstr[0] ""
+msgstr[1] ", und %d andere"
 
-#: ../../include/enotify.php:142
+#: ../../include/conversation.php:1016
 #, 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"
+msgid "%s like this."
+msgstr "%s gefällt das."
 
-#: ../../include/enotify.php:150
+#: ../../include/conversation.php:1016
 #, 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"
+msgid "%s don't like this."
+msgstr "%s gefällt das nicht."
 
-#: ../../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 hat [zrl=%3$s]deinen %4$s[/zrl] kommentiert"
+#: ../../include/conversation.php:1066
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Sichtbar für <strong>jeden</strong>"
 
-#: ../../include/enotify.php:170
-#, php-format
-msgid "[Red:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1$d von %2$s"
+#: ../../include/conversation.php:1067 ../../mod/mail.php:171
+#: ../../mod/mail.php:269
+msgid "Please enter a link URL:"
+msgstr "Gib eine URL ein:"
 
-#: ../../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 hat ein Thema kommentiert, dem du folgst."
+#: ../../include/conversation.php:1068
+msgid "Please enter a video link/URL:"
+msgstr "Gib einen Video-Link/URL ein:"
 
-#: ../../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 "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
+#: ../../include/conversation.php:1069
+msgid "Please enter an audio link/URL:"
+msgstr "Gib einen Audio-Link/URL ein:"
 
-#: ../../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:1070
+msgid "Tag term:"
+msgstr "Schlagwort:"
 
-#: ../../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:1071 ../../mod/filer.php:35
+msgid "Save to Folder:"
+msgstr "Speichern in Ordner:"
 
-#: ../../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:1072
+msgid "Where are you right now?"
+msgstr "Wo bist du jetzt grade?"
 
-#: ../../include/enotify.php:208
-#, php-format
-msgid "[Red:Notify] %s tagged you"
-msgstr "[Red Notify] %s hat dich getaggt"
+#: ../../include/conversation.php:1073 ../../mod/editpost.php:52
+#: ../../mod/mail.php:172 ../../mod/mail.php:270
+msgid "Expires YYYY-MM-DD HH:MM"
+msgstr "Verfällt YYYY-MM-DD HH;MM"
 
-#: ../../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:1083 ../../include/ItemObject.php:556
+#: ../../mod/webpages.php:122 ../../mod/editpost.php:132
+#: ../../mod/editlayout.php:136 ../../mod/editwebpage.php:177
+#: ../../mod/editblock.php:151 ../../mod/photos.php:991
+msgid "Preview"
+msgstr "Vorschau"
 
-#: ../../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:1097 ../../mod/photos.php:970
+msgid "Share"
+msgstr "Teilen"
 
-#: ../../include/enotify.php:223
-#, php-format
-msgid "[Red:Notify] %1$s poked you"
-msgstr "[Red Notify] %1$s hat dich angestupst"
+#: ../../include/conversation.php:1099 ../../mod/editwebpage.php:140
+msgid "Page link title"
+msgstr "Seitentitel-Link"
 
-#: ../../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:1101 ../../mod/editpost.php:104
+#: ../../mod/mail.php:219 ../../mod/mail.php:332 ../../mod/editlayout.php:107
+#: ../../mod/editwebpage.php:145 ../../mod/editblock.php:121
+msgid "Upload photo"
+msgstr "Foto hochladen"
 
-#: ../../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:1102
+msgid "upload photo"
+msgstr "Foto hochladen"
 
-#: ../../include/enotify.php:241
-#, php-format
-msgid "[Red:Notify] %s tagged your post"
-msgstr "[Red:Hinweis] %s hat Dich getaggt"
+#: ../../include/conversation.php:1103 ../../mod/editpost.php:105
+#: ../../mod/mail.php:220 ../../mod/mail.php:333 ../../mod/editlayout.php:108
+#: ../../mod/editwebpage.php:146 ../../mod/editblock.php:122
+msgid "Attach file"
+msgstr "Datei anhängen"
 
-#: ../../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/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:1104
+msgid "attach file"
+msgstr "Datei anfügen"
 
-#: ../../include/enotify.php:255
-msgid "[Red:Notify] Introduction received"
-msgstr "[Red:Notify] Vorstellung erhalten"
+#: ../../include/conversation.php:1105 ../../mod/editpost.php:106
+#: ../../mod/mail.php:221 ../../mod/mail.php:334 ../../mod/editlayout.php:109
+#: ../../mod/editwebpage.php:147 ../../mod/editblock.php:123
+msgid "Insert web link"
+msgstr "Link einfügen"
 
-#: ../../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:1106
+msgid "web link"
+msgstr "Web-Link"
 
-#: ../../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:1107
+msgid "Insert video link"
+msgstr "Video-Link einfügen"
 
-#: ../../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:1108
+msgid "video link"
+msgstr "Video-Link"
 
-#: ../../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:1109
+msgid "Insert audio link"
+msgstr "Audio-Link einfügen"
 
-#: ../../include/enotify.php:270
-msgid "[Red:Notify] Friend suggestion received"
-msgstr "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten"
+#: ../../include/conversation.php:1110
+msgid "audio link"
+msgstr "Audio-Link"
 
-#: ../../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:1111 ../../mod/editpost.php:110
+#: ../../mod/editlayout.php:113 ../../mod/editwebpage.php:151
+#: ../../mod/editblock.php:127
+msgid "Set your location"
+msgstr "Standort"
 
-#: ../../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:1112
+msgid "set location"
+msgstr "Standort"
 
-#: ../../include/enotify.php:278
-msgid "Name:"
-msgstr "Name:"
+#: ../../include/conversation.php:1113 ../../mod/editpost.php:111
+#: ../../mod/editlayout.php:114 ../../mod/editwebpage.php:152
+#: ../../mod/editblock.php:128
+msgid "Clear browser location"
+msgstr "Browser-Standort löschen"
 
-#: ../../include/enotify.php:279
-msgid "Photo:"
-msgstr "Foto:"
+#: ../../include/conversation.php:1114
+msgid "clear location"
+msgstr "Standort löschen"
 
-#: ../../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/conversation.php:1116 ../../mod/editpost.php:124
+#: ../../mod/editlayout.php:127 ../../mod/editwebpage.php:169
+#: ../../mod/editblock.php:142
+msgid "Set title"
+msgstr "Titel"
 
-#: ../../include/widgets.php:29 ../../include/contact_widgets.php:87
-msgid "Categories"
-msgstr "Kategorien"
+#: ../../include/conversation.php:1119 ../../mod/editpost.php:126
+#: ../../mod/editlayout.php:130 ../../mod/editwebpage.php:171
+#: ../../mod/editblock.php:145
+msgid "Categories (comma-separated list)"
+msgstr "Kategorien (Kommagetrennte Liste)"
 
-#: ../../include/widgets.php:117 ../../mod/suggest.php:53
-msgid "Ignore/Hide"
-msgstr "Ignorieren/Verstecken"
+#: ../../include/conversation.php:1121 ../../mod/editpost.php:113
+#: ../../mod/editlayout.php:116 ../../mod/editwebpage.php:154
+#: ../../mod/editblock.php:130
+msgid "Permission settings"
+msgstr "Berechtigungs-Einstellungen"
 
-#: ../../include/widgets.php:123 ../../mod/connections.php:236
-msgid "Suggestions"
-msgstr "Vorschläge"
+#: ../../include/conversation.php:1122
+msgid "permissions"
+msgstr "Berechtigungen"
 
-#: ../../include/widgets.php:124
-msgid "See more..."
-msgstr "Mehr anzeigen..."
+#: ../../include/conversation.php:1130 ../../mod/editpost.php:121
+#: ../../mod/editlayout.php:124 ../../mod/editwebpage.php:164
+#: ../../mod/editblock.php:139
+msgid "Public post"
+msgstr "Öffentlicher Beitrag"
 
-#: ../../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/conversation.php:1132 ../../mod/editpost.php:127
+#: ../../mod/editlayout.php:131 ../../mod/editwebpage.php:172
+#: ../../mod/editblock.php:146
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Beispiel: bob@example.com, mary@example.com"
 
-#: ../../include/widgets.php:152
-msgid "Add New Connection"
-msgstr "Neue Verbindung hinzufügen"
+#: ../../include/conversation.php:1145 ../../mod/editpost.php:138
+#: ../../mod/mail.php:226 ../../mod/mail.php:339 ../../mod/editlayout.php:141
+#: ../../mod/editwebpage.php:182 ../../mod/editblock.php:156
+msgid "Set expiration date"
+msgstr "Verfallsdatum"
 
-#: ../../include/widgets.php:153
-msgid "Enter the channel address"
-msgstr "Adresse des Kanals eingeben"
+#: ../../include/conversation.php:1147 ../../include/ItemObject.php:559
+#: ../../mod/editpost.php:140 ../../mod/mail.php:228 ../../mod/mail.php:341
+msgid "Encrypt text"
+msgstr "Text verschlüsseln"
 
-#: ../../include/widgets.php:154
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara"
+#: ../../include/conversation.php:1149 ../../mod/editpost.php:142
+msgid "OK"
+msgstr "OK"
 
-#: ../../include/widgets.php:171
-msgid "Notes"
-msgstr "Notizen"
+#: ../../include/conversation.php:1150 ../../mod/settings.php:514
+#: ../../mod/settings.php:540 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
+#: ../../mod/editpost.php:143 ../../mod/fbrowser.php:82
+#: ../../mod/fbrowser.php:117
+msgid "Cancel"
+msgstr "Abbrechen"
 
-#: ../../include/widgets.php:173 ../../include/text.php:738
-#: ../../include/text.php:752 ../../mod/filer.php:36
-msgid "Save"
-msgstr "Speichern"
+#: ../../include/conversation.php:1381
+msgid "Commented Order"
+msgstr "Neueste Kommentare"
 
-#: ../../include/widgets.php:243
-msgid "Remove term"
-msgstr "Eintrag löschen"
+#: ../../include/conversation.php:1384
+msgid "Sort by Comment Date"
+msgstr "Nach Kommentardatum sortiert"
 
-#: ../../include/widgets.php:286 ../../include/contact_widgets.php:56
-#: ../../include/contact_widgets.php:90
-msgid "Everything"
-msgstr "Alles"
+#: ../../include/conversation.php:1387
+msgid "Posted Order"
+msgstr "Neueste Beiträge"
 
-#: ../../include/widgets.php:318 ../../include/items.php:3575
-msgid "Archives"
-msgstr "Archive"
+#: ../../include/conversation.php:1390
+msgid "Sort by Post Date"
+msgstr "Nach Beitragsdatum sortiert"
 
-#: ../../include/widgets.php:370
-msgid "Refresh"
-msgstr "Aktualisieren"
+#: ../../include/conversation.php:1394
+msgid "Personal"
+msgstr "Persönlich"
 
-#: ../../include/widgets.php:371 ../../mod/connedit.php:386
-msgid "Me"
-msgstr "Ich"
+#: ../../include/conversation.php:1397
+msgid "Posts that mention or involve you"
+msgstr "Beiträge mit Beteiligung deinerseits"
 
-#: ../../include/widgets.php:372 ../../mod/connedit.php:388
-msgid "Best Friends"
-msgstr "Beste Freunde"
+#: ../../include/conversation.php:1400 ../../mod/menu.php:61
+#: ../../mod/connections.php:211
+msgid "New"
+msgstr "Neu"
 
-#: ../../include/widgets.php:374
-msgid "Co-workers"
-msgstr "Kollegen"
+#: ../../include/conversation.php:1403
+msgid "Activity Stream - by date"
+msgstr "Activity Stream - nach Datum sortiert"
 
-#: ../../include/widgets.php:375 ../../mod/connedit.php:390
-msgid "Former Friends"
-msgstr "ehem. Freunde"
+#: ../../include/conversation.php:1410
+msgid "Starred"
+msgstr "Markiert"
 
-#: ../../include/widgets.php:376 ../../mod/connedit.php:391
-msgid "Acquaintances"
-msgstr "Bekanntschaften"
+#: ../../include/conversation.php:1413
+msgid "Favourite Posts"
+msgstr "Beiträge mit Sternchen"
 
-#: ../../include/widgets.php:377
-msgid "Everybody"
-msgstr "Jeder"
+#: ../../include/conversation.php:1420
+msgid "Spam"
+msgstr "Spam"
 
-#: ../../include/widgets.php:409
-msgid "Account settings"
-msgstr "Konto-Einstellungen"
+#: ../../include/conversation.php:1423
+msgid "Posts flagged as SPAM"
+msgstr "Nachrichten die als SPAM markiert wurden"
 
-#: ../../include/widgets.php:415
-msgid "Channel settings"
-msgstr "Kanal-Einstellungen"
+#: ../../include/conversation.php:1454
+msgid "Channel"
+msgstr "Kanal"
 
-#: ../../include/widgets.php:421
-msgid "Additional features"
-msgstr "Zusätzliche Funktionen"
+#: ../../include/conversation.php:1457
+msgid "Status Messages and Posts"
+msgstr "Statusnachrichten und Beiträge"
 
-#: ../../include/widgets.php:427
-msgid "Feature settings"
-msgstr "Funktions-Einstellungen"
+#: ../../include/conversation.php:1466
+msgid "About"
+msgstr "Über"
 
-#: ../../include/widgets.php:433
-msgid "Display settings"
-msgstr "Anzeige-Einstellungen"
+#: ../../include/conversation.php:1469
+msgid "Profile Details"
+msgstr "Profil-Details"
 
-#: ../../include/widgets.php:439
-msgid "Connected apps"
-msgstr "Verbundene Apps"
+#: ../../include/conversation.php:1478 ../../include/photos.php:302
+msgid "Photo Albums"
+msgstr "Fotoalben"
 
-#: ../../include/widgets.php:445
-msgid "Export channel"
-msgstr "Kanal exportieren"
+#: ../../include/conversation.php:1487
+msgid "Files and Storage"
+msgstr "Dateien und Speicher"
 
-#: ../../include/widgets.php:457
-msgid "Automatic Permissions (Advanced)"
-msgstr "Automatische Berechtigungen (Erweitert)"
+#: ../../include/conversation.php:1496 ../../include/conversation.php:1499
+msgid "Chatrooms"
+msgstr "Chat-Räume"
 
-#: ../../include/widgets.php:467
-msgid "Premium Channel Settings"
-msgstr "Prämium-Kanal Einstellungen"
+#: ../../include/conversation.php:1509
+msgid "Events and Calendar"
+msgstr "Veranstaltungen und Kalender"
 
-#: ../../include/widgets.php:504
-msgid "Check Mail"
-msgstr "E-Mails abrufen"
+#: ../../include/conversation.php:1517
+msgid "Saved Bookmarks"
+msgstr "Gespeicherte Lesezeichen"
 
-#: ../../include/widgets.php:585
-msgid "Chat Rooms"
-msgstr "Chaträume"
+#: ../../include/conversation.php:1528
+msgid "Manage Webpages"
+msgstr "Webseiten verwalten"
 
-#: ../../include/api.php:974
-msgid "Public Timeline"
-msgstr "Öffentliche Zeitleiste"
+#: ../../include/identity.php:29 ../../mod/item.php:1161
+msgid "Unable to obtain identity information from database"
+msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen"
 
-#: ../../include/contact_widgets.php:14
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d Einladung verfügbar"
-msgstr[1] "%d Einladungen verfügbar"
+#: ../../include/identity.php:62
+msgid "Empty name"
+msgstr "Namensfeld leer"
 
-#: ../../include/contact_widgets.php:20
-msgid "Find Channels"
-msgstr "Finde Kanäle"
+#: ../../include/identity.php:64
+msgid "Name too long"
+msgstr "Name ist zu lang"
 
-#: ../../include/contact_widgets.php:21
-msgid "Enter name or interest"
-msgstr "Name oder Interessen eingeben"
+#: ../../include/identity.php:143
+msgid "No account identifier"
+msgstr "Keine Account-Kennung"
 
-#: ../../include/contact_widgets.php:22
-msgid "Connect/Follow"
-msgstr "Verbinden/Folgen"
+#: ../../include/identity.php:153
+msgid "Nickname is required."
+msgstr "Spitzname ist erforderlich."
 
-#: ../../include/contact_widgets.php:23
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Beispiele: Robert Morgenstein, Angeln"
+#: ../../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/contact_widgets.php:24 ../../mod/directory.php:206
-#: ../../mod/directory.php:211 ../../mod/connections.php:355
-msgid "Find"
-msgstr "Finde"
+#: ../../include/identity.php:226
+msgid "Unable to retrieve created identity"
+msgstr "Kann die erstellte Identität nicht empfangen"
 
-#: ../../include/contact_widgets.php:25 ../../mod/suggest.php:59
-msgid "Channel Suggestions"
-msgstr "Kanal-Vorschläge"
+#: ../../include/identity.php:285
+msgid "Default Profile"
+msgstr "Standard-Profil"
 
-#: ../../include/contact_widgets.php:27
-msgid "Random Profile"
-msgstr "Zufallsprofil"
+#: ../../include/identity.php:477
+msgid "Requested channel is not available."
+msgstr "Angeforderte Kanal nicht verfügbar."
 
-#: ../../include/contact_widgets.php:28
-msgid "Invite Friends"
-msgstr "Lade Freunde ein"
+#: ../../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/contact_widgets.php:120
-#, php-format
-msgid "%d connection in common"
-msgid_plural "%d connections in common"
-msgstr[0] "%d gemeinsame Verbindung"
-msgstr[1] "%d gemeinsame Verbindungen"
+#: ../../include/identity.php:524 ../../mod/webpages.php:8
+#: ../../mod/connect.php:13 ../../mod/layouts.php:8
+#: ../../mod/achievements.php:8 ../../mod/blocks.php:10
+#: ../../mod/profile.php:16 ../../mod/filestorage.php:40
+msgid "Requested profile is not available."
+msgstr "Erwünschte Profil ist nicht verfügbar."
 
-#: ../../include/page_widgets.php:6
-msgid "New Page"
-msgstr "Neue Seite"
+#: ../../include/identity.php:642 ../../mod/profiles.php:603
+msgid "Change profile photo"
+msgstr "Ändere das Profilfoto"
 
-#: ../../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:170
-#: ../../mod/settings.php:571 ../../mod/editlayout.php:106
-#: ../../mod/editpost.php:103 ../../mod/blocks.php:93
-#: ../../mod/editwebpage.php:144 ../../mod/editblock.php:120
-msgid "Edit"
-msgstr "Bearbeiten"
+#: ../../include/identity.php:648
+msgid "Profiles"
+msgstr "Profile"
 
-#: ../../include/plugin.php:475 ../../include/plugin.php:477
-msgid "Click here to upgrade."
-msgstr "Klicke hier, um das Upgrade durchzuführen."
+#: ../../include/identity.php:648
+msgid "Manage/edit profiles"
+msgstr "Verwalte/Bearbeite Profile"
 
-#: ../../include/plugin.php:483
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements."
+#: ../../include/identity.php:649 ../../mod/profiles.php:604
+msgid "Create New Profile"
+msgstr "Neues Profil erstellen"
 
-#: ../../include/plugin.php:488
-msgid "This action is not available under your subscription plan."
-msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."
+#: ../../include/identity.php:652
+msgid "Edit Profile"
+msgstr "Profile bearbeiten"
 
-#: ../../include/follow.php:21
-msgid "Channel is blocked on this site."
-msgstr "Der Kanal ist auf dieser Seite blockiert "
+#: ../../include/identity.php:663 ../../mod/profiles.php:615
+msgid "Profile Image"
+msgstr "Profilfoto:"
 
-#: ../../include/follow.php:26
-msgid "Channel location missing."
-msgstr "Adresse des Kanals fehlt."
+#: ../../include/identity.php:666 ../../mod/profiles.php:618
+msgid "visible to everybody"
+msgstr "sichtbar für jeden"
 
-#: ../../include/follow.php:43
-msgid "Channel discovery failed. Website may be down or misconfigured."
-msgstr "Auffinden des Kanals schlug fehl. Die Webseite könnte falsch konfiguriert oder abgeschaltet sein."
+#: ../../include/identity.php:667 ../../mod/profiles.php:619
+msgid "Edit visibility"
+msgstr "Sichtbarkeit bearbeiten"
 
-#: ../../include/follow.php:51
-msgid "Response from remote channel was not understood."
-msgstr "Antwort des entfernten Kanals war unverständlich."
+#: ../../include/identity.php:681 ../../include/identity.php:908
+#: ../../mod/directory.php:158
+msgid "Gender:"
+msgstr "Geschlecht:"
 
-#: ../../include/follow.php:58
-msgid "Response from remote channel was incomplete."
-msgstr "Antwort des entfernten Kanals war unvollständig."
+#: ../../include/identity.php:682 ../../include/identity.php:928
+#: ../../mod/directory.php:160
+msgid "Status:"
+msgstr "Status:"
 
-#: ../../include/follow.php:129
-msgid "local account not found."
-msgstr "Lokales Konto nicht gefunden."
+#: ../../include/identity.php:683 ../../include/identity.php:939
+#: ../../mod/directory.php:162
+msgid "Homepage:"
+msgstr "Homepage:"
 
-#: ../../include/follow.php:138
-msgid "Cannot connect to yourself."
-msgstr "Du kannst dich nicht mit dir selbst verbinden."
+#: ../../include/identity.php:684 ../../mod/dirprofile.php:157
+msgid "Online Now"
+msgstr "gerade online"
 
-#: ../../include/permissions.php:13
-msgid "Can view my \"public\" stream and posts"
-msgstr "Kann meinen öffentlichen Stream und Beiträge sehen"
+#: ../../include/identity.php:752 ../../include/identity.php:832
+#: ../../mod/ping.php:262
+msgid "g A l F d"
+msgstr "l, d. F G \\\\U\\\\h\\\\r"
 
-#: ../../include/permissions.php:14
-msgid "Can view my \"public\" channel profile"
-msgstr "Kann meinen öffentliches Kanal-Profil sehen"
+#: ../../include/identity.php:753 ../../include/identity.php:833
+msgid "F d"
+msgstr "d. F"
 
-#: ../../include/permissions.php:15
-msgid "Can view my \"public\" photo albums"
-msgstr "Kann meine öffentlichen Fotoalben sehen"
+#: ../../include/identity.php:798 ../../include/identity.php:873
+#: ../../mod/ping.php:284
+msgid "[today]"
+msgstr "[Heute]"
 
-#: ../../include/permissions.php:16
-msgid "Can view my \"public\" address book"
-msgstr "Kann mein öffentliches Adressbuch sehen"
+#: ../../include/identity.php:810
+msgid "Birthday Reminders"
+msgstr "Geburtstags Erinnerungen"
 
-#: ../../include/permissions.php:17
-msgid "Can view my \"public\" file storage"
-msgstr "Kann meinen öffentlichen Dateiordner sehen"
+#: ../../include/identity.php:811
+msgid "Birthdays this week:"
+msgstr "Geburtstage in dieser Woche:"
 
-#: ../../include/permissions.php:18
-msgid "Can view my \"public\" pages"
-msgstr "Kann meine öffentlichen Seiten sehen"
+#: ../../include/identity.php:866
+msgid "[No description]"
+msgstr "[Keine Beschreibung]"
 
-#: ../../include/permissions.php:21
-msgid "Can send me their channel stream and posts"
-msgstr "Können mir den Stream und die Beiträge aus ihrem Kanal schicken"
+#: ../../include/identity.php:884
+msgid "Event Reminders"
+msgstr "Veranstaltungs- Erinnerungen"
 
-#: ../../include/permissions.php:22
-msgid "Can post on my channel page (\"wall\")"
-msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"
+#: ../../include/identity.php:885
+msgid "Events this week:"
+msgstr "Veranstaltungen in dieser Woche:"
 
-#: ../../include/permissions.php:23
-msgid "Can comment on my posts"
-msgstr "Kann meine Beiträge kommentieren"
+#: ../../include/identity.php:898 ../../include/identity.php:982
+#: ../../mod/profperm.php:107
+msgid "Profile"
+msgstr "Profil"
 
-#: ../../include/permissions.php:24
-msgid "Can send me private mail messages"
-msgstr "Kann mir private Nachrichten schicken"
+#: ../../include/identity.php:906 ../../mod/settings.php:920
+msgid "Full Name:"
+msgstr "Voller Name:"
 
-#: ../../include/permissions.php:25
-msgid "Can post photos to my photo albums"
-msgstr "Kann Fotos in meinen Fotoalben veröffentlichen"
+#: ../../include/identity.php:913
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: ../../include/permissions.php:26
-msgid "Can forward to all my channel contacts via post @mentions"
-msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten"
+#: ../../include/identity.php:914
+msgid "j F"
+msgstr "j F"
 
-#: ../../include/permissions.php:26
-msgid "Advanced - useful for creating group forum channels"
-msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen"
+#: ../../include/identity.php:921
+msgid "Birthday:"
+msgstr "Geburtstag:"
 
-#: ../../include/permissions.php:27
-msgid "Can chat with me (when available)"
-msgstr "Kann mit mir chatten (wenn verfügbar)"
+#: ../../include/identity.php:925
+msgid "Age:"
+msgstr "Alter:"
 
-#: ../../include/permissions.php:27
-msgid "Requires compatible chat plugin"
-msgstr "Benötigt ein kompatibles Chat-Plugin"
+#: ../../include/identity.php:934
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "für %1$d %2$s"
 
-#: ../../include/permissions.php:28
-msgid "Can write to my \"public\" file storage"
-msgstr "Kann in meinen öffentlichen Dateiordner schreiben"
+#: ../../include/identity.php:937 ../../mod/profiles.php:526
+msgid "Sexual Preference:"
+msgstr "Sexuelle Orientierung:"
 
-#: ../../include/permissions.php:29
-msgid "Can edit my \"public\" pages"
-msgstr "Kann meine öffentlichen Seiten bearbeiten"
+#: ../../include/identity.php:941 ../../mod/profiles.php:528
+msgid "Hometown:"
+msgstr "Heimatstadt:"
 
-#: ../../include/permissions.php:31
-msgid "Can source my \"public\" posts in derived channels"
-msgstr "Kann meine \"öffentlichen\" Beiträge als Quellen von Kanälen verwenden"
+#: ../../include/identity.php:943
+msgid "Tags:"
+msgstr "Schlagworte:"
 
-#: ../../include/permissions.php:31
-msgid "Somewhat advanced - very useful in open communities"
-msgstr "Etwas Fortgeschritten - sehr nützlich in offenen Gemeinschaften."
+#: ../../include/identity.php:945 ../../mod/profiles.php:529
+msgid "Political Views:"
+msgstr "Politische Ansichten:"
 
-#: ../../include/permissions.php:32
-msgid "Can administer my channel resources"
-msgstr "Kann meine Kanäle administrieren"
+#: ../../include/identity.php:947
+msgid "Religion:"
+msgstr "Religion:"
 
-#: ../../include/permissions.php:32
-msgid ""
-"Extremely advanced. Leave this alone unless you know what you are doing"
-msgstr "Sehr fortgeschritten. Bearbeite dies nur, wenn du genau weißt, was du machst"
+#: ../../include/identity.php:949 ../../mod/directory.php:164
+msgid "About:"
+msgstr "Über:"
 
-#: ../../include/comanche.php:35 ../../view/theme/redbasic/php/config.php:62
-#: ../../view/theme/apw/php/config.php:176
-msgid "Default"
-msgstr "Standard"
+#: ../../include/identity.php:951
+msgid "Hobbies/Interests:"
+msgstr "Hobbys/Interessen:"
 
-#: ../../include/items.php:208 ../../mod/like.php:55 ../../mod/group.php:68
-#: ../../mod/profperm.php:23 ../../index.php:346
-msgid "Permission denied"
-msgstr "Keine Berechtigung"
+#: ../../include/identity.php:953 ../../mod/profiles.php:532
+msgid "Likes:"
+msgstr "Gefällt-mir:"
 
-#: ../../include/items.php:3392 ../../mod/thing.php:74 ../../mod/admin.php:151
-#: ../../mod/admin.php:782 ../../mod/admin.php:985 ../../mod/viewsrc.php:18
-#: ../../mod/home.php:63 ../../mod/filestorage.php:18 ../../mod/display.php:32
-msgid "Item not found."
-msgstr "Element nicht gefunden."
+#: ../../include/identity.php:955 ../../mod/profiles.php:533
+msgid "Dislikes:"
+msgstr "Gefällt-mir-nicht:"
 
-#: ../../include/items.php:3748 ../../mod/group.php:38 ../../mod/group.php:140
-msgid "Collection not found."
-msgstr "Sammlung nicht gefunden"
+#: ../../include/identity.php:958
+msgid "Contact information and Social Networks:"
+msgstr "Kontaktinformation und soziale Netzwerke:"
 
-#: ../../include/items.php:3763
-msgid "Collection is empty."
-msgstr "Sammlung ist leer."
+#: ../../include/identity.php:960
+msgid "My other channels:"
+msgstr "Meine anderen Kanäle:"
 
-#: ../../include/items.php:3770
-#, php-format
-msgid "Collection: %s"
-msgstr "Sammlung: %s"
+#: ../../include/identity.php:962
+msgid "Musical interests:"
+msgstr "Musikalische Interessen:"
 
-#: ../../include/items.php:3781
-#, php-format
-msgid "Connection: %s"
-msgstr "Verbindung: %s"
+#: ../../include/identity.php:964
+msgid "Books, literature:"
+msgstr "Bücher, Literatur:"
 
-#: ../../include/items.php:3784
-msgid "Connection not found."
-msgstr "Die Verbindung wurde nicht gefunden."
+#: ../../include/identity.php:966
+msgid "Television:"
+msgstr "Fernsehen:"
 
-#: ../../include/security.php:280
-msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
-msgstr "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde."
+#: ../../include/identity.php:968
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film/Tanz/Kultur/Unterhaltung:"
 
-#: ../../include/text.php:315
-msgid "prev"
-msgstr "vorherige"
+#: ../../include/identity.php:970
+msgid "Love/Romance:"
+msgstr "Liebe/Romantik:"
 
-#: ../../include/text.php:317
-msgid "first"
-msgstr "erste"
+#: ../../include/identity.php:972
+msgid "Work/employment:"
+msgstr "Arbeit/Anstellung:"
 
-#: ../../include/text.php:346
-msgid "last"
-msgstr "letzte"
+#: ../../include/identity.php:974
+msgid "School/education:"
+msgstr "Schule/Ausbildung:"
 
-#: ../../include/text.php:349
-msgid "next"
-msgstr "nächste"
+#: ../../include/ItemObject.php:89 ../../mod/photos.php:843
+msgid "Private Message"
+msgstr "Private Nachricht"
 
-#: ../../include/text.php:361
-msgid "older"
-msgstr "älter"
+#: ../../include/ItemObject.php:96 ../../include/page_widgets.php:8
+#: ../../mod/thing.php:229 ../../mod/menu.php:59 ../../mod/webpages.php:118
+#: ../../mod/settings.php:575 ../../mod/editpost.php:103
+#: ../../mod/layouts.php:102 ../../mod/editlayout.php:106
+#: ../../mod/blocks.php:93 ../../mod/editwebpage.php:144
+#: ../../mod/editblock.php:120 ../../mod/filestorage.php:170
+msgid "Edit"
+msgstr "Bearbeiten"
 
-#: ../../include/text.php:363
-msgid "newer"
-msgstr "neuer"
+#: ../../include/ItemObject.php:118
+msgid "save to folder"
+msgstr "In Ordner speichern"
 
-#: ../../include/text.php:654
-msgid "No connections"
-msgstr "Keine Verbindungen"
+#: ../../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:184 ../../mod/photos.php:968
+msgid "I like this (toggle)"
+msgstr "Ich mag das (Umschalter)"
+
+#: ../../include/ItemObject.php:184 ../../include/taxonomy.php:254
+msgid "like"
+msgstr "Gefällt-mir"
+
+#: ../../include/ItemObject.php:185 ../../mod/photos.php:969
+msgid "I don't like this (toggle)"
+msgstr "Ich mag das nicht (Umschalter)"
+
+#: ../../include/ItemObject.php:185 ../../include/taxonomy.php:255
+msgid "dislike"
+msgstr "Gefällt-mir-nicht"
 
-#: ../../include/text.php:665
+#: ../../include/ItemObject.php:187
+msgid "Share this"
+msgstr "Teile dies"
+
+#: ../../include/ItemObject.php:187
+msgid "share"
+msgstr "Teilen"
+
+#: ../../include/ItemObject.php:211 ../../include/ItemObject.php:212
 #, php-format
-msgid "%d Connection"
-msgid_plural "%d Connections"
-msgstr[0] "%d Verbindung"
-msgstr[1] "%d Verbindungen"
+msgid "View %s's profile - %s"
+msgstr "Schaue dir %s's Profil an - %s"
 
-#: ../../include/text.php:677
-msgid "View Connections"
-msgstr "Zeige Verbindungen"
+#: ../../include/ItemObject.php:213
+msgid "to"
+msgstr "zu"
 
-#: ../../include/text.php:818
-msgid "poke"
-msgstr "anstupsen"
+#: ../../include/ItemObject.php:214
+msgid "via"
+msgstr "via"
 
-#: ../../include/text.php:818 ../../include/conversation.php:240
-msgid "poked"
-msgstr "stupste"
+#: ../../include/ItemObject.php:215
+msgid "Wall-to-Wall"
+msgstr "Wall-to-Wall"
+
+#: ../../include/ItemObject.php:216
+msgid "via Wall-To-Wall:"
+msgstr "via Wall-To-Wall:"
+
+#: ../../include/ItemObject.php:249
+msgid "Bookmark Links"
+msgstr "Setze Lesezeichen für die Verweise"
+
+#: ../../include/ItemObject.php:279
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d Kommentar"
+msgstr[1] "%d Kommentare"
+
+#: ../../include/ItemObject.php:544 ../../mod/photos.php:987
+#: ../../mod/photos.php:1074
+msgid "This is you"
+msgstr "Das bist du"
+
+#: ../../include/ItemObject.php:547 ../../mod/events.php:469
+#: ../../mod/thing.php:276 ../../mod/thing.php:318 ../../mod/invite.php:156
+#: ../../mod/settings.php:513 ../../mod/settings.php:625
+#: ../../mod/settings.php:653 ../../mod/settings.php:677
+#: ../../mod/settings.php:748 ../../mod/settings.php:912
+#: ../../mod/chat.php:119 ../../mod/chat.php:149 ../../mod/connect.php:92
+#: ../../mod/group.php:81 ../../mod/admin.php:431 ../../mod/admin.php:738
+#: ../../mod/admin.php:878 ../../mod/admin.php:1077 ../../mod/admin.php:1164
+#: ../../mod/connedit.php:437 ../../mod/profiles.php:506
+#: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/setup.php:304
+#: ../../mod/setup.php:347 ../../mod/import.php:387 ../../mod/mail.php:223
+#: ../../mod/mail.php:335 ../../mod/poke.php:166 ../../mod/fsuggest.php:108
+#: ../../mod/filestorage.php:131 ../../mod/photos.php:562
+#: ../../mod/photos.php:667 ../../mod/photos.php:950 ../../mod/photos.php:990
+#: ../../mod/photos.php:1077 ../../mod/mood.php:142
+#: ../../view/theme/redbasic/php/config.php:95
+#: ../../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:548
+msgid "Bold"
+msgstr "Fett"
+
+#: ../../include/ItemObject.php:549
+msgid "Italic"
+msgstr "Kursiv"
+
+#: ../../include/ItemObject.php:550
+msgid "Underline"
+msgstr "Unterstrichen"
+
+#: ../../include/ItemObject.php:551
+msgid "Quote"
+msgstr "Zitat"
+
+#: ../../include/ItemObject.php:552
+msgid "Code"
+msgstr "Code"
+
+#: ../../include/ItemObject.php:553
+msgid "Image"
+msgstr "Bild"
+
+#: ../../include/ItemObject.php:554
+msgid "Link"
+msgstr "Link"
+
+#: ../../include/ItemObject.php:555
+msgid "Video"
+msgstr "Video"
+
+#: ../../include/api.php:974
+msgid "Public Timeline"
+msgstr "Öffentliche Zeitleiste"
 
-#: ../../include/text.php:819
-msgid "ping"
-msgstr "anpingen"
+#: ../../include/network.php:640
+msgid "view full size"
+msgstr "In Vollbildansicht anschauen"
 
-#: ../../include/text.php:819
-msgid "pinged"
-msgstr "pingte"
+#: ../../include/notify.php:23
+msgid "created a new post"
+msgstr "Neuer Beitrag wurde erzeugt"
 
-#: ../../include/text.php:820
-msgid "prod"
-msgstr "knuffen"
+#: ../../include/notify.php:24
+#, php-format
+msgid "commented on %s's post"
+msgstr "hat %s's Beitrag kommentiert"
 
-#: ../../include/text.php:820
-msgid "prodded"
-msgstr "knuffte"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Männlich"
 
-#: ../../include/text.php:821
-msgid "slap"
-msgstr "ohrfeigen"
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Weiblich"
 
-#: ../../include/text.php:821
-msgid "slapped"
-msgstr "ohrfeigte"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Momentan männlich"
 
-#: ../../include/text.php:822
-msgid "finger"
-msgstr "befummeln"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Momentan weiblich"
 
-#: ../../include/text.php:822
-msgid "fingered"
-msgstr "befummelte"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Größtenteils männlich"
 
-#: ../../include/text.php:823
-msgid "rebuff"
-msgstr "eine Abfuhr erteilen"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Größtenteils weiblich"
 
-#: ../../include/text.php:823
-msgid "rebuffed"
-msgstr "abfuhrerteilte"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transsexuell"
 
-#: ../../include/text.php:835
-msgid "happy"
-msgstr "glücklich"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Zwischengeschlechtlich"
 
-#: ../../include/text.php:836
-msgid "sad"
-msgstr "traurig"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transsexuell"
 
-#: ../../include/text.php:837
-msgid "mellow"
-msgstr "sanft"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Zwitter"
 
-#: ../../include/text.php:838
-msgid "tired"
-msgstr "müde"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Geschlechtslos"
 
-#: ../../include/text.php:839
-msgid "perky"
-msgstr "frech"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "unklar"
 
-#: ../../include/text.php:840
-msgid "angry"
-msgstr "sauer"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Anders"
 
-#: ../../include/text.php:841
-msgid "stupified"
-msgstr "verblüfft"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Unentschieden"
 
-#: ../../include/text.php:842
-msgid "puzzled"
-msgstr "verwirrt"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Männer"
 
-#: ../../include/text.php:843
-msgid "interested"
-msgstr "interessiert"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Frauen"
 
-#: ../../include/text.php:844
-msgid "bitter"
-msgstr "verbittert"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Schwul"
 
-#: ../../include/text.php:845
-msgid "cheerful"
-msgstr "fröhlich"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbisch"
 
-#: ../../include/text.php:846
-msgid "alive"
-msgstr "lebendig"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Keine Bevorzugung"
 
-#: ../../include/text.php:847
-msgid "annoyed"
-msgstr "verärgert"
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bisexuell"
 
-#: ../../include/text.php:848
-msgid "anxious"
-msgstr "unruhig"
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autosexuell"
 
-#: ../../include/text.php:849
-msgid "cranky"
-msgstr "schrullig"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Enthaltsam"
 
-#: ../../include/text.php:850
-msgid "disturbed"
-msgstr "verstört"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Jungfräulich"
 
-#: ../../include/text.php:851
-msgid "frustrated"
-msgstr "frustriert"
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Abweichend"
 
-#: ../../include/text.php:852
-msgid "motivated"
-msgstr "motiviert"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetisch"
 
-#: ../../include/text.php:853
-msgid "relaxed"
-msgstr "entspannt"
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Unmengen"
 
-#: ../../include/text.php:854
-msgid "surprised"
-msgstr "überrascht"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Sexlos"
 
-#: ../../include/text.php:1017
-msgid "Monday"
-msgstr "Montag"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Single"
 
-#: ../../include/text.php:1017
-msgid "Tuesday"
-msgstr "Dienstag"
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Einsam"
 
-#: ../../include/text.php:1017
-msgid "Wednesday"
-msgstr "Mittwoch"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Verfügbar"
 
-#: ../../include/text.php:1017
-msgid "Thursday"
-msgstr "Donnerstag"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Nicht verfügbar"
 
-#: ../../include/text.php:1017
-msgid "Friday"
-msgstr "Freitag"
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "Verguckt"
 
-#: ../../include/text.php:1017
-msgid "Saturday"
-msgstr "Samstag"
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "Verknallt"
 
-#: ../../include/text.php:1017
-msgid "Sunday"
-msgstr "Sonntag"
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Lerne gerade jemanden kennen"
 
-#: ../../include/text.php:1021
-msgid "January"
-msgstr "Januar"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Treulos"
 
-#: ../../include/text.php:1021
-msgid "February"
-msgstr "Februar"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Sexabhängig"
 
-#: ../../include/text.php:1021
-msgid "March"
-msgstr "März"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Freunde/Begünstigte"
 
-#: ../../include/text.php:1021
-msgid "April"
-msgstr "April"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Lose"
 
-#: ../../include/text.php:1021
-msgid "May"
-msgstr "Mai"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Verlobt"
 
-#: ../../include/text.php:1021
-msgid "June"
-msgstr "Juni"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Verheiratet"
 
-#: ../../include/text.php:1021
-msgid "July"
-msgstr "Juli"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "Gewissermaßen verheiratet"
 
-#: ../../include/text.php:1021
-msgid "August"
-msgstr "August"
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partner"
 
-#: ../../include/text.php:1021
-msgid "September"
-msgstr "September"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "Lebensgemeinschaft"
 
-#: ../../include/text.php:1021
-msgid "October"
-msgstr "Oktober"
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "Informelle Ehe"
 
-#: ../../include/text.php:1021
-msgid "November"
-msgstr "November"
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Glücklich"
 
-#: ../../include/text.php:1021
-msgid "December"
-msgstr "Dezember"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Nicht Ausschau haltend"
 
-#: ../../include/text.php:1099
-msgid "unknown.???"
-msgstr "unbekannt.???"
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Swinger"
 
-#: ../../include/text.php:1100
-msgid "bytes"
-msgstr "Bytes"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Betrogen"
 
-#: ../../include/text.php:1135
-msgid "remove category"
-msgstr "Kategorie entfernen"
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Getrennt"
 
-#: ../../include/text.php:1157
-msgid "remove from file"
-msgstr "aus der Datei entfernen"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Labil"
 
-#: ../../include/text.php:1215 ../../include/text.php:1227
-msgid "Click to open/close"
-msgstr "Klicke zum Öffnen/Schließen"
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Geschieden"
 
-#: ../../include/text.php:1403 ../../mod/events.php:332
-msgid "link to source"
-msgstr "Link zum Originalbeitrag"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "Gewissermaßen geschieden"
 
-#: ../../include/text.php:1422
-msgid "Select a page layout: "
-msgstr "Ein Seiten-Layout auswählen"
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Verwitwet"
 
-#: ../../include/text.php:1425 ../../include/text.php:1490
-msgid "default"
-msgstr "Standard"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Ungewiss"
 
-#: ../../include/text.php:1461
-msgid "Page content type: "
-msgstr "Content-Typ der Seite"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "Es ist kompliziert"
 
-#: ../../include/text.php:1502
-msgid "Select an alternate language"
-msgstr "Wähle eine alternative Sprache"
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Interessiert mich nicht"
 
-#: ../../include/text.php:1654 ../../include/conversation.php:117
-#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:45
-msgid "photo"
-msgstr "Foto"
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Frag mich mal"
 
-#: ../../include/text.php:1657 ../../include/conversation.php:120
-#: ../../mod/tagger.php:49
-msgid "event"
-msgstr "Ereignis"
+#: ../../include/chat.php:10
+msgid "Missing room name"
+msgstr "Der Chatraum hat keinen Namen"
 
-#: ../../include/text.php:1660 ../../include/conversation.php:145
-#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:53
-msgid "status"
-msgstr "Status"
+#: ../../include/chat.php:19
+msgid "Duplicate room name"
+msgstr "Name des Chatraums bereits vergeben"
 
-#: ../../include/text.php:1662 ../../include/conversation.php:147
-#: ../../mod/tagger.php:55
-msgid "comment"
-msgstr "Kommentar"
+#: ../../include/chat.php:68 ../../include/chat.php:76
+msgid "Invalid room specifier."
+msgstr "Ungültiger Raumbezeichner."
 
-#: ../../include/text.php:1667
-msgid "activity"
-msgstr "Aktivität"
+#: ../../include/chat.php:102
+msgid "Room not found."
+msgstr "Chatraum konnte nicht gefunden werden."
 
-#: ../../include/text.php:1929
-msgid "Design"
-msgstr "Design"
+#: ../../include/chat.php:123
+msgid "Room is full"
+msgstr "Der Raum ist voll"
 
-#: ../../include/text.php:1931
-msgid "Blocks"
-msgstr "Blöcke"
+#: ../../include/taxonomy.php:210
+msgid "Tags"
+msgstr "Tags"
 
-#: ../../include/text.php:1932
-msgid "Menus"
-msgstr "Menüs"
+#: ../../include/taxonomy.php:227
+msgid "Keywords"
+msgstr "Schlüsselbegriffe"
 
-#: ../../include/text.php:1933
-msgid "Layouts"
-msgstr "Layouts"
+#: ../../include/taxonomy.php:252
+msgid "have"
+msgstr "habe"
 
-#: ../../include/text.php:1934
-msgid "Pages"
-msgstr "Seiten"
+#: ../../include/taxonomy.php:252
+msgid "has"
+msgstr "hat"
 
-#: ../../include/ItemObject.php:89 ../../mod/photos.php:843
-msgid "Private Message"
-msgstr "Private Nachricht"
+#: ../../include/taxonomy.php:253
+msgid "want"
+msgstr "will"
 
-#: ../../include/ItemObject.php:108 ../../include/conversation.php:632
-#: ../../mod/thing.php:230 ../../mod/connedit.php:356 ../../mod/admin.php:745
-#: ../../mod/group.php:176 ../../mod/photos.php:1023
-#: ../../mod/filestorage.php:171 ../../mod/settings.php:572
-msgid "Delete"
-msgstr "Löschen"
+#: ../../include/taxonomy.php:253
+msgid "wants"
+msgstr "will"
 
-#: ../../include/ItemObject.php:114 ../../include/conversation.php:631
-msgid "Select"
-msgstr "Auswählen"
+#: ../../include/taxonomy.php:254
+msgid "likes"
+msgstr "Gefällt-mir"
 
-#: ../../include/ItemObject.php:118
-msgid "save to folder"
-msgstr "In Ordner speichern"
+#: ../../include/taxonomy.php:255
+msgid "dislikes"
+msgstr "Gefällt-mir-nicht"
 
-#: ../../include/ItemObject.php:146
-msgid "add star"
-msgstr "markieren"
+#: ../../include/auth.php:76
+msgid "Logged out."
+msgstr "Ausgeloggt."
 
-#: ../../include/ItemObject.php:147
-msgid "remove star"
-msgstr "Markierung entfernen"
+#: ../../include/auth.php:188
+msgid "Failed authentication"
+msgstr "Authentifizierung fehlgeschlagen"
 
-#: ../../include/ItemObject.php:148
-msgid "toggle star status"
-msgstr "Stern-Status umschalten"
+#: ../../include/auth.php:203
+msgid "Login failed."
+msgstr "Login fehlgeschlagen."
 
-#: ../../include/ItemObject.php:152
-msgid "starred"
-msgstr "markiert"
+#: ../../include/account.php:23
+msgid "Not a valid email address"
+msgstr "Ungültige E-Mail-Adresse"
 
-#: ../../include/ItemObject.php:161 ../../include/conversation.php:642
-msgid "Message is verified"
-msgstr "Nachricht überprüft"
+#: ../../include/account.php:25
+msgid "Your email domain is not among those allowed on this site"
+msgstr "Deine E-Mail-Adresse ist nicht unter denen, die auf dieser Seite erlaubt sind"
 
-#: ../../include/ItemObject.php:169
-msgid "add tag"
-msgstr "Schlagwort hinzufügen"
+#: ../../include/account.php:31
+msgid "Your email address is already registered at this site."
+msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."
 
-#: ../../include/ItemObject.php:175 ../../mod/photos.php:951
-msgid "I like this (toggle)"
-msgstr "Ich mag das (Umschalter)"
+#: ../../include/account.php:64
+msgid "An invitation is required."
+msgstr "Eine Einladung wird benötigt"
 
-#: ../../include/ItemObject.php:176 ../../mod/photos.php:952
-msgid "I don't like this (toggle)"
-msgstr "Ich mag das nicht (Umschalter)"
+#: ../../include/account.php:68
+msgid "Invitation could not be verified."
+msgstr "Die Einladung konnte nicht bestätigt werden"
 
-#: ../../include/ItemObject.php:178
-msgid "Share this"
-msgstr "Teile dies"
+#: ../../include/account.php:119
+msgid "Please enter the required information."
+msgstr "Bitte gib die benötigten Informationen ein."
 
-#: ../../include/ItemObject.php:178
-msgid "share"
-msgstr "Teilen"
+#: ../../include/account.php:187
+msgid "Failed to store account information."
+msgstr "Speichern der Account-Informationen fehlgeschlagen"
 
-#: ../../include/ItemObject.php:202 ../../include/ItemObject.php:203
+#: ../../include/account.php:273
 #, php-format
-msgid "View %s's profile - %s"
-msgstr "Schaue dir %s's Profil an - %s"
+msgid "Registration request at %s"
+msgstr "Registrierungsanfrage auf %s"
 
-#: ../../include/ItemObject.php:204
-msgid "to"
-msgstr "zu"
+#: ../../include/account.php:275 ../../include/account.php:302
+#: ../../include/account.php:359
+msgid "Administrator"
+msgstr "Administrator"
 
-#: ../../include/ItemObject.php:205
-msgid "via"
-msgstr "via"
+#: ../../include/account.php:297
+msgid "your registration password"
+msgstr "dein Registrierungspasswort"
 
-#: ../../include/ItemObject.php:206
-msgid "Wall-to-Wall"
-msgstr "Wall-to-Wall"
+#: ../../include/account.php:300 ../../include/account.php:357
+#, php-format
+msgid "Registration details for %s"
+msgstr "Registrierungsdetails für %s"
 
-#: ../../include/ItemObject.php:207
-msgid "via Wall-To-Wall:"
-msgstr "via Wall-To-Wall:"
+#: ../../include/account.php:366
+msgid "Account approved."
+msgstr "Account bestätigt."
 
-#: ../../include/ItemObject.php:217 ../../include/conversation.php:686
+#: ../../include/account.php:400
 #, php-format
-msgid " from %s"
-msgstr "von %s"
+msgid "Registration revoked for %s"
+msgstr "Registrierung für %s widerrufen"
 
-#: ../../include/ItemObject.php:220 ../../include/conversation.php:689
-#, php-format
-msgid "last edited: %s"
-msgstr "zuletzt bearbeitet: %s"
+#: ../../include/dir_fns.php:15
+msgid "Sort Options"
+msgstr "Sortieroptionen"
 
-#: ../../include/ItemObject.php:221 ../../include/conversation.php:690
-#, php-format
-msgid "Expires: %s"
-msgstr "Verfällt: %s"
+#: ../../include/dir_fns.php:16
+msgid "Alphabetic"
+msgstr "alphabetisch"
 
-#: ../../include/ItemObject.php:248 ../../include/conversation.php:707
-#: ../../include/conversation.php:1120 ../../mod/photos.php:954
-#: ../../mod/mail.php:222 ../../mod/mail.php:336 ../../mod/editlayout.php:115
-#: ../../mod/editpost.php:112 ../../mod/editwebpage.php:153
-#: ../../mod/editblock.php:129
-msgid "Please wait"
-msgstr "Bitte warten"
+#: ../../include/dir_fns.php:17
+msgid "Reverse Alphabetic"
+msgstr "Entgegengesetzt alphabetisch"
 
-#: ../../include/ItemObject.php:269
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d Kommentar"
-msgstr[1] "%d Kommentare"
+#: ../../include/dir_fns.php:18
+msgid "Newest to Oldest"
+msgstr "Neueste zuerst"
 
-#: ../../include/ItemObject.php:534 ../../mod/photos.php:970
-#: ../../mod/photos.php:1057
-msgid "This is you"
-msgstr "Das bist du"
+#: ../../include/dir_fns.php:30
+msgid "Enable Safe Search"
+msgstr "Sichere Suche einschalten"
 
-#: ../../include/ItemObject.php:537 ../../mod/events.php:469
-#: ../../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:431 ../../mod/admin.php:738 ../../mod/admin.php:878
-#: ../../mod/admin.php:1077 ../../mod/admin.php:1164 ../../mod/group.php:81
-#: ../../mod/photos.php:562 ../../mod/photos.php:667 ../../mod/photos.php:933
-#: ../../mod/photos.php:973 ../../mod/photos.php:1060 ../../mod/chat.php:107
-#: ../../mod/chat.php:133 ../../mod/profiles.php:506
-#: ../../mod/filestorage.php:131 ../../mod/import.php:387
-#: ../../mod/settings.php:509 ../../mod/settings.php:621
-#: ../../mod/settings.php:649 ../../mod/settings.php:673
-#: ../../mod/settings.php:744 ../../mod/settings.php:908
-#: ../../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/dir_fns.php:32
+msgid "Disable Safe Search"
+msgstr "Sichere Suche ausschalten"
 
-#: ../../include/ItemObject.php:538
-msgid "Bold"
-msgstr "Fett"
+#: ../../include/dir_fns.php:34
+msgid "Safe Mode"
+msgstr "Sicherer Modus"
 
-#: ../../include/ItemObject.php:539
-msgid "Italic"
-msgstr "Kursiv"
+#: ../../include/enotify.php:40
+msgid "Red Matrix Notification"
+msgstr "Red Matrix Benachrichtigung"
 
-#: ../../include/ItemObject.php:540
-msgid "Underline"
-msgstr "Unterstrichen"
+#: ../../include/enotify.php:41
+msgid "redmatrix"
+msgstr "redmatrix"
 
-#: ../../include/ItemObject.php:541
-msgid "Quote"
-msgstr "Zitat"
+#: ../../include/enotify.php:43
+msgid "Thank You,"
+msgstr "Danke."
 
-#: ../../include/ItemObject.php:542
-msgid "Code"
-msgstr "Code"
+#: ../../include/enotify.php:45
+#, php-format
+msgid "%s Administrator"
+msgstr "%s Administrator"
 
-#: ../../include/ItemObject.php:543
-msgid "Image"
-msgstr "Bild"
+#: ../../include/enotify.php:80
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: ../../include/ItemObject.php:544
-msgid "Link"
-msgstr "Link"
+#: ../../include/enotify.php:84
+#, php-format
+msgid "[Red:Notify] New mail received at %s"
+msgstr "[Red Notify] Neue Mail auf %s empfangen"
 
-#: ../../include/ItemObject.php:545
-msgid "Video"
-msgstr "Video"
+#: ../../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/ItemObject.php:546 ../../include/conversation.php:1083
-#: ../../mod/webpages.php:122 ../../mod/photos.php:974
-#: ../../mod/editlayout.php:136 ../../mod/editpost.php:132
-#: ../../mod/editwebpage.php:177 ../../mod/editblock.php:151
-msgid "Preview"
-msgstr "Vorschau"
+#: ../../include/enotify.php:87
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s hat dir %2$s geschickt."
 
-#: ../../include/ItemObject.php:549 ../../include/conversation.php:1147
-#: ../../mod/mail.php:228 ../../mod/mail.php:341 ../../mod/editpost.php:140
-msgid "Encrypt text"
-msgstr "Text verschlüsseln"
+#: ../../include/enotify.php:87
+msgid "a private message"
+msgstr "eine private Nachricht"
 
-#: ../../include/conversation.php:123
-msgid "channel"
-msgstr "Kanal"
+#: ../../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/conversation.php:161 ../../mod/like.php:134
+#: ../../include/enotify.php:142
 #, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s mag %2$s's %3$s"
+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:164 ../../mod/like.php:136
+#: ../../include/enotify.php:150
 #, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s mag %2$s's %3$s nicht"
+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:201
+#: ../../include/enotify.php:159
 #, php-format
-msgid "%1$s is now connected with %2$s"
-msgstr "%1$s ist jetzt mit %2$s verbunden"
+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:236
+#: ../../include/enotify.php:170
 #, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s stupste %2$s"
+msgid "[Red:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1$d von %2$s"
 
-#: ../../include/conversation.php:258 ../../mod/mood.php:63
+#: ../../include/enotify.php:171
 #, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s ist momentan %2$s"
+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:662
+#: ../../include/enotify.php:174 ../../include/enotify.php:189
+#: ../../include/enotify.php:215 ../../include/enotify.php:234
+#: ../../include/enotify.php:248
 #, php-format
-msgid "View %s's profile @ %s"
-msgstr "Schaue Dir %s's Profil auf %s an."
+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:676
-msgid "Categories:"
-msgstr "Kategorien:"
+#: ../../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:677
-msgid "Filed under:"
-msgstr "Gespeichert unter:"
+#: ../../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:705
-msgid "View in context"
-msgstr "Im Zusammenhang anschauen"
+#: ../../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:834
-msgid "remove"
-msgstr "lösche"
+#: ../../include/enotify.php:208
+#, php-format
+msgid "[Red:Notify] %s tagged you"
+msgstr "[Red Notify] %s hat dich getaggt"
 
-#: ../../include/conversation.php:838
-msgid "Loading..."
-msgstr "Lädt ..."
+#: ../../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:839
-msgid "Delete Selected Items"
-msgstr "Lösche die ausgewählten Elemente"
+#: ../../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:930
-msgid "View Source"
-msgstr "Quelle anzeigen"
+#: ../../include/enotify.php:223
+#, php-format
+msgid "[Red:Notify] %1$s poked you"
+msgstr "[Red Notify] %1$s hat dich angestupst"
 
-#: ../../include/conversation.php:931
-msgid "Follow Thread"
-msgstr "Unterhaltung folgen"
+#: ../../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:932
-msgid "View Status"
-msgstr "Status ansehen"
+#: ../../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:934
-msgid "View Photos"
-msgstr "Fotos ansehen"
+#: ../../include/enotify.php:241
+#, php-format
+msgid "[Red:Notify] %s tagged your post"
+msgstr "[Red:Hinweis] %s hat Dich getaggt"
 
-#: ../../include/conversation.php:935
-msgid "Matrix Activity"
-msgstr "Matrix Aktivität"
+#: ../../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:936
-msgid "Edit Contact"
-msgstr "Kontakt bearbeiten"
+#: ../../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:937
-msgid "Send PM"
-msgstr "Sende PN"
+#: ../../include/enotify.php:255
+msgid "[Red:Notify] Introduction received"
+msgstr "[Red:Notify] Vorstellung erhalten"
 
-#: ../../include/conversation.php:938
-msgid "Poke"
-msgstr "Anstupsen"
+#: ../../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:1000
+#: ../../include/enotify.php:257
 #, php-format
-msgid "%s likes this."
-msgstr "%s gefällt das."
+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:1000
+#: ../../include/enotify.php:261 ../../include/enotify.php:280
 #, php-format
-msgid "%s doesn't like this."
-msgstr "%s gefällt das nicht."
+msgid "You may visit their profile at %s"
+msgstr "Du kannst Dir das Profil unter %s ansehen"
 
-#: ../../include/conversation.php:1004
+#: ../../include/enotify.php:263
 #, 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 "Please visit %s to approve or reject the introduction."
+msgstr "Bitte besuche %s um sie anzunehmen oder abzulehnen."
 
-#: ../../include/conversation.php:1006
+#: ../../include/enotify.php:270
+msgid "[Red:Notify] Friend suggestion received"
+msgstr "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten"
+
+#: ../../include/enotify.php:271
 #, 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."
+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:1012
-msgid "and"
-msgstr "und"
+#: ../../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:1015
+#: ../../include/enotify.php:278
+msgid "Name:"
+msgstr "Name:"
+
+#: ../../include/enotify.php:279
+msgid "Photo:"
+msgstr "Foto:"
+
+#: ../../include/enotify.php:282
 #, php-format
-msgid ", and %d other people"
-msgid_plural ", and %d other people"
-msgstr[0] ""
-msgstr[1] ", und %d andere"
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen."
+
+#: ../../include/photos.php:89
+#, php-format
+msgid "Image exceeds website size limit of %lu bytes"
+msgstr "Bild überschreitet das Limit der Webseite von %lu bytes"
+
+#: ../../include/photos.php:96
+msgid "Image file is empty."
+msgstr "Bilddatei ist leer."
 
-#: ../../include/conversation.php:1016
-#, php-format
-msgid "%s like this."
-msgstr "%s gefällt das."
+#: ../../include/photos.php:123 ../../mod/profile_photo.php:147
+msgid "Unable to process image"
+msgstr "Kann Bild nicht verarbeiten"
 
-#: ../../include/conversation.php:1016
-#, php-format
-msgid "%s don't like this."
-msgstr "%s gefällt das nicht."
+#: ../../include/photos.php:185
+msgid "Photo storage failed."
+msgstr "Foto speichern schlug fehl"
 
-#: ../../include/conversation.php:1066
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Sichtbar für <strong>jeden</strong>"
+#: ../../include/photos.php:306 ../../mod/photos.php:690
+#: ../../mod/photos.php:1187
+msgid "Upload New Photos"
+msgstr "Lade neue Fotos hoch"
 
-#: ../../include/conversation.php:1067 ../../mod/mail.php:171
-#: ../../mod/mail.php:269
-msgid "Please enter a link URL:"
-msgstr "Gib eine URL ein:"
+#: ../../include/reddav.php:1018
+msgid "Edit File properties"
+msgstr "Dateieigenschaften ändern"
 
-#: ../../include/conversation.php:1068
-msgid "Please enter a video link/URL:"
-msgstr "Gib einen Video-Link/URL ein:"
+#: ../../include/contact_widgets.php:14
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d Einladung verfügbar"
+msgstr[1] "%d Einladungen verfügbar"
 
-#: ../../include/conversation.php:1069
-msgid "Please enter an audio link/URL:"
-msgstr "Gib einen Audio-Link/URL ein:"
+#: ../../include/contact_widgets.php:20
+msgid "Find Channels"
+msgstr "Finde Kanäle"
 
-#: ../../include/conversation.php:1070
-msgid "Tag term:"
-msgstr "Schlagwort:"
+#: ../../include/contact_widgets.php:21
+msgid "Enter name or interest"
+msgstr "Name oder Interessen eingeben"
 
-#: ../../include/conversation.php:1071 ../../mod/filer.php:35
-msgid "Save to Folder:"
-msgstr "Speichern in Ordner:"
+#: ../../include/contact_widgets.php:22
+msgid "Connect/Follow"
+msgstr "Verbinden/Folgen"
 
-#: ../../include/conversation.php:1072
-msgid "Where are you right now?"
-msgstr "Wo bist du jetzt grade?"
+#: ../../include/contact_widgets.php:23
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Beispiele: Robert Morgenstein, Angeln"
 
-#: ../../include/conversation.php:1073 ../../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/contact_widgets.php:24 ../../mod/directory.php:206
+#: ../../mod/directory.php:211 ../../mod/connections.php:357
+msgid "Find"
+msgstr "Finde"
 
-#: ../../include/conversation.php:1097 ../../mod/photos.php:953
-msgid "Share"
-msgstr "Teilen"
+#: ../../include/contact_widgets.php:25 ../../mod/suggest.php:59
+msgid "Channel Suggestions"
+msgstr "Kanal-Vorschläge"
 
-#: ../../include/conversation.php:1099 ../../mod/editwebpage.php:140
-msgid "Page link title"
-msgstr "Seitentitel-Link"
+#: ../../include/contact_widgets.php:27
+msgid "Random Profile"
+msgstr "Zufallsprofil"
 
-#: ../../include/conversation.php:1101 ../../mod/mail.php:219
-#: ../../mod/mail.php:332 ../../mod/editlayout.php:107
-#: ../../mod/editpost.php:104 ../../mod/editwebpage.php:145
-#: ../../mod/editblock.php:121
-msgid "Upload photo"
-msgstr "Foto hochladen"
+#: ../../include/contact_widgets.php:28
+msgid "Invite Friends"
+msgstr "Lade Freunde ein"
 
-#: ../../include/conversation.php:1102
-msgid "upload photo"
-msgstr "Foto hochladen"
+#: ../../include/contact_widgets.php:120
+#, php-format
+msgid "%d connection in common"
+msgid_plural "%d connections in common"
+msgstr[0] "%d gemeinsame Verbindung"
+msgstr[1] "%d gemeinsame Verbindungen"
 
-#: ../../include/conversation.php:1103 ../../mod/mail.php:220
-#: ../../mod/mail.php:333 ../../mod/editlayout.php:108
-#: ../../mod/editpost.php:105 ../../mod/editwebpage.php:146
-#: ../../mod/editblock.php:122
-msgid "Attach file"
-msgstr "Datei anhängen"
+#: ../../include/page_widgets.php:6
+msgid "New Page"
+msgstr "Neue Seite"
 
-#: ../../include/conversation.php:1104
-msgid "attach file"
-msgstr "Datei anfügen"
+#: ../../include/plugin.php:475 ../../include/plugin.php:477
+msgid "Click here to upgrade."
+msgstr "Klicke hier, um das Upgrade durchzuführen."
 
-#: ../../include/conversation.php:1105 ../../mod/mail.php:221
-#: ../../mod/mail.php:334 ../../mod/editlayout.php:109
-#: ../../mod/editpost.php:106 ../../mod/editwebpage.php:147
-#: ../../mod/editblock.php:123
-msgid "Insert web link"
-msgstr "Link einfügen"
+#: ../../include/plugin.php:483
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements."
 
-#: ../../include/conversation.php:1106
-msgid "web link"
-msgstr "Web-Link"
+#: ../../include/plugin.php:488
+msgid "This action is not available under your subscription plan."
+msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."
 
-#: ../../include/conversation.php:1107
-msgid "Insert video link"
-msgstr "Video-Link einfügen"
+#: ../../include/follow.php:21
+msgid "Channel is blocked on this site."
+msgstr "Der Kanal ist auf dieser Seite blockiert "
 
-#: ../../include/conversation.php:1108
-msgid "video link"
-msgstr "Video-Link"
+#: ../../include/follow.php:26
+msgid "Channel location missing."
+msgstr "Adresse des Kanals fehlt."
 
-#: ../../include/conversation.php:1109
-msgid "Insert audio link"
-msgstr "Audio-Link einfügen"
+#: ../../include/follow.php:43
+msgid "Channel discovery failed. Website may be down or misconfigured."
+msgstr "Auffinden des Kanals schlug fehl. Die Webseite könnte falsch konfiguriert oder abgeschaltet sein."
 
-#: ../../include/conversation.php:1110
-msgid "audio link"
-msgstr "Audio-Link"
+#: ../../include/follow.php:51
+msgid "Response from remote channel was not understood."
+msgstr "Antwort des entfernten Kanals war unverständlich."
 
-#: ../../include/conversation.php:1111 ../../mod/editlayout.php:113
-#: ../../mod/editpost.php:110 ../../mod/editwebpage.php:151
-#: ../../mod/editblock.php:127
-msgid "Set your location"
-msgstr "Standort"
+#: ../../include/follow.php:58
+msgid "Response from remote channel was incomplete."
+msgstr "Antwort des entfernten Kanals war unvollständig."
 
-#: ../../include/conversation.php:1112
-msgid "set location"
-msgstr "Standort"
+#: ../../include/follow.php:129
+msgid "local account not found."
+msgstr "Lokales Konto nicht gefunden."
 
-#: ../../include/conversation.php:1113 ../../mod/editlayout.php:114
-#: ../../mod/editpost.php:111 ../../mod/editwebpage.php:152
-#: ../../mod/editblock.php:128
-msgid "Clear browser location"
-msgstr "Browser-Standort löschen"
+#: ../../include/follow.php:138
+msgid "Cannot connect to yourself."
+msgstr "Du kannst dich nicht mit dir selbst verbinden."
 
-#: ../../include/conversation.php:1114
-msgid "clear location"
-msgstr "Standort löschen"
+#: ../../include/security.php:280
+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/conversation.php:1116 ../../mod/editlayout.php:127
-#: ../../mod/editpost.php:124 ../../mod/editwebpage.php:169
-#: ../../mod/editblock.php:142
-msgid "Set title"
-msgstr "Titel"
+#: ../../include/comanche.php:35 ../../view/theme/redbasic/php/config.php:64
+#: ../../view/theme/apw/php/config.php:176
+msgid "Default"
+msgstr "Standard"
 
-#: ../../include/conversation.php:1119 ../../mod/editlayout.php:130
-#: ../../mod/editpost.php:126 ../../mod/editwebpage.php:171
-#: ../../mod/editblock.php:145
-msgid "Categories (comma-separated list)"
-msgstr "Kategorien (Kommagetrennte Liste)"
+#: ../../include/oembed.php:157
+msgid "Embedded content"
+msgstr "Eingebetteter Inhalt"
 
-#: ../../include/conversation.php:1121 ../../mod/editlayout.php:116
-#: ../../mod/editpost.php:113 ../../mod/editwebpage.php:154
-#: ../../mod/editblock.php:130
-msgid "Permission settings"
-msgstr "Berechtigungs-Einstellungen"
+#: ../../include/oembed.php:166
+msgid "Embedding disabled"
+msgstr "Einbetten ausgeschaltet"
 
-#: ../../include/conversation.php:1122
-msgid "permissions"
-msgstr "Berechtigungen"
+#: ../../include/permissions.php:13
+msgid "Can view my \"public\" stream and posts"
+msgstr "Kann meinen öffentlichen Stream und Beiträge sehen"
 
-#: ../../include/conversation.php:1130 ../../mod/editlayout.php:124
-#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:164
-#: ../../mod/editblock.php:139
-msgid "Public post"
-msgstr "Öffentlicher Beitrag"
+#: ../../include/permissions.php:14
+msgid "Can view my \"public\" channel profile"
+msgstr "Kann meinen öffentliches Kanal-Profil sehen"
 
-#: ../../include/conversation.php:1132 ../../mod/editlayout.php:131
-#: ../../mod/editpost.php:127 ../../mod/editwebpage.php:172
-#: ../../mod/editblock.php:146
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Beispiel: bob@example.com, mary@example.com"
+#: ../../include/permissions.php:15
+msgid "Can view my \"public\" photo albums"
+msgstr "Kann meine öffentlichen Fotoalben sehen"
 
-#: ../../include/conversation.php:1145 ../../mod/mail.php:226
-#: ../../mod/mail.php:339 ../../mod/editlayout.php:141
-#: ../../mod/editpost.php:138 ../../mod/editwebpage.php:182
-#: ../../mod/editblock.php:156
-msgid "Set expiration date"
-msgstr "Verfallsdatum"
+#: ../../include/permissions.php:16
+msgid "Can view my \"public\" address book"
+msgstr "Kann mein öffentliches Adressbuch sehen"
 
-#: ../../include/conversation.php:1149 ../../mod/editpost.php:142
-msgid "OK"
-msgstr "OK"
+#: ../../include/permissions.php:17
+msgid "Can view my \"public\" file storage"
+msgstr "Kann meinen öffentlichen Dateiordner sehen"
 
-#: ../../include/conversation.php:1150 ../../mod/tagrm.php:11
-#: ../../mod/tagrm.php:94 ../../mod/settings.php:510
-#: ../../mod/settings.php:536 ../../mod/editpost.php:143
-#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117
-msgid "Cancel"
-msgstr "Abbrechen"
+#: ../../include/permissions.php:18
+msgid "Can view my \"public\" pages"
+msgstr "Kann meine öffentlichen Seiten sehen"
 
-#: ../../include/conversation.php:1381
-msgid "Commented Order"
-msgstr "Neueste Kommentare"
+#: ../../include/permissions.php:21
+msgid "Can send me their channel stream and posts"
+msgstr "Können mir den Stream und die Beiträge aus ihrem Kanal schicken"
 
-#: ../../include/conversation.php:1384
-msgid "Sort by Comment Date"
-msgstr "Nach Kommentardatum sortiert"
+#: ../../include/permissions.php:22
+msgid "Can post on my channel page (\"wall\")"
+msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"
 
-#: ../../include/conversation.php:1387
-msgid "Posted Order"
-msgstr "Neueste Beiträge"
+#: ../../include/permissions.php:23
+msgid "Can comment on my posts"
+msgstr "Kann meine Beiträge kommentieren"
 
-#: ../../include/conversation.php:1390
-msgid "Sort by Post Date"
-msgstr "Nach Beitragsdatum sortiert"
+#: ../../include/permissions.php:24
+msgid "Can send me private mail messages"
+msgstr "Kann mir private Nachrichten schicken"
 
-#: ../../include/conversation.php:1394
-msgid "Personal"
-msgstr "Persönlich"
+#: ../../include/permissions.php:25
+msgid "Can post photos to my photo albums"
+msgstr "Kann Fotos in meinen Fotoalben veröffentlichen"
 
-#: ../../include/conversation.php:1397
-msgid "Posts that mention or involve you"
-msgstr "Beiträge mit Beteiligung deinerseits"
+#: ../../include/permissions.php:26
+msgid "Can forward to all my channel contacts via post @mentions"
+msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten"
+
+#: ../../include/permissions.php:26
+msgid "Advanced - useful for creating group forum channels"
+msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen"
 
-#: ../../include/conversation.php:1400 ../../mod/menu.php:57
-#: ../../mod/connections.php:209
-msgid "New"
-msgstr "Neu"
+#: ../../include/permissions.php:27
+msgid "Can chat with me (when available)"
+msgstr "Kann mit mir chatten (wenn verfügbar)"
 
-#: ../../include/conversation.php:1403
-msgid "Activity Stream - by date"
-msgstr "Activity Stream - nach Datum sortiert"
+#: ../../include/permissions.php:28
+msgid "Can write to my \"public\" file storage"
+msgstr "Kann in meinen öffentlichen Dateiordner schreiben"
 
-#: ../../include/conversation.php:1410
-msgid "Starred"
-msgstr "Markiert"
+#: ../../include/permissions.php:29
+msgid "Can edit my \"public\" pages"
+msgstr "Kann meine öffentlichen Seiten bearbeiten"
 
-#: ../../include/conversation.php:1413
-msgid "Favourite Posts"
-msgstr "Beiträge mit Sternchen"
+#: ../../include/permissions.php:31
+msgid "Can source my \"public\" posts in derived channels"
+msgstr "Kann meine \"öffentlichen\" Beiträge als Quellen von Kanälen verwenden"
 
-#: ../../include/conversation.php:1420
-msgid "Spam"
-msgstr "Spam"
+#: ../../include/permissions.php:31
+msgid "Somewhat advanced - very useful in open communities"
+msgstr "Etwas Fortgeschritten - sehr nützlich in offenen Gemeinschaften."
 
-#: ../../include/conversation.php:1423
-msgid "Posts flagged as SPAM"
-msgstr "Nachrichten die als SPAM markiert wurden"
+#: ../../include/permissions.php:32
+msgid "Can send me bookmarks"
+msgstr "Darf mir Lesezeichen senden"
 
-#: ../../include/conversation.php:1454
-msgid "Channel"
-msgstr "Kanal"
+#: ../../include/permissions.php:33
+msgid "Can administer my channel resources"
+msgstr "Kann meine Kanäle administrieren"
 
-#: ../../include/conversation.php:1457
-msgid "Status Messages and Posts"
-msgstr "Statusnachrichten und Beiträge"
+#: ../../include/permissions.php:33
+msgid ""
+"Extremely advanced. Leave this alone unless you know what you are doing"
+msgstr "Sehr fortgeschritten. Bearbeite dies nur, wenn du genau weißt, was du machst"
 
-#: ../../include/conversation.php:1466
-msgid "About"
-msgstr "Über"
+#: ../../include/items.php:208 ../../mod/like.php:55 ../../mod/group.php:68
+#: ../../mod/profperm.php:23 ../../index.php:350
+msgid "Permission denied"
+msgstr "Keine Berechtigung"
 
-#: ../../include/conversation.php:1469
-msgid "Profile Details"
-msgstr "Profil-Details"
+#: ../../include/items.php:3430 ../../mod/thing.php:74 ../../mod/admin.php:151
+#: ../../mod/admin.php:782 ../../mod/admin.php:985 ../../mod/viewsrc.php:18
+#: ../../mod/home.php:63 ../../mod/display.php:32 ../../mod/filestorage.php:18
+msgid "Item not found."
+msgstr "Element nicht gefunden."
 
-#: ../../include/conversation.php:1484 ../../mod/fbrowser.php:114
-msgid "Files"
-msgstr "Dateien"
+#: ../../include/items.php:3786 ../../mod/group.php:38 ../../mod/group.php:140
+msgid "Collection not found."
+msgstr "Sammlung nicht gefunden"
 
-#: ../../include/conversation.php:1487
-msgid "Files and Storage"
-msgstr "Dateien und Speicher"
+#: ../../include/items.php:3801
+msgid "Collection is empty."
+msgstr "Sammlung ist leer."
 
-#: ../../include/conversation.php:1496
-msgid "Events and Calendar"
-msgstr "Veranstaltungen und Kalender"
+#: ../../include/items.php:3808
+#, php-format
+msgid "Collection: %s"
+msgstr "Sammlung: %s"
 
-#: ../../include/conversation.php:1503
-msgid "Webpages"
-msgstr "Webseiten"
+#: ../../include/items.php:3819
+#, php-format
+msgid "Connection: %s"
+msgstr "Verbindung: %s"
 
-#: ../../include/conversation.php:1506
-msgid "Manage Webpages"
-msgstr "Webseiten verwalten"
+#: ../../include/items.php:3822
+msgid "Connection not found."
+msgstr "Die Verbindung wurde nicht gefunden."
 
 #: ../../include/zot.php:545
 msgid "Invalid data packet"
@@ -3361,333 +3407,136 @@ msgid ""
 "http://getzot.com"
 msgstr "Für weitere Informationen über das Red Matrix Projekt und warum es das Potential hat das Internet wie wir es kennen grundlegend zu verändern schau dir bitte http://getzot.com an"
 
-#: ../../mod/cloud.php:112
-msgid "Red Matrix - Guests: Username: {your email address}, Password: +++"
-msgstr "Red Matrix Gäste: Nutzername: {deine Email Adresse}; Passwort: +++"
-
-#: ../../mod/connedit.php:49 ../../mod/connections.php:37
-msgid "Could not access contact record."
-msgstr "Konnte auf den Kontakteintrag nicht zugreifen."
-
-#: ../../mod/connedit.php:63 ../../mod/connections.php:51
-msgid "Could not locate selected profile."
-msgstr "Konnte das gewählte Profil nicht finden."
-
-#: ../../mod/connedit.php:104 ../../mod/connections.php:92
-msgid "Connection updated."
-msgstr "Verbindung aktualisiert."
-
-#: ../../mod/connedit.php:106 ../../mod/connections.php:94
-msgid "Failed to update connection record."
-msgstr "Konnte den Verbindungseintrag nicht aktualisieren."
-
-#: ../../mod/connedit.php:201
-msgid "Could not access address book record."
-msgstr "Konnte nicht auf den Eintrag im Adressbuch zugreifen."
-
-#: ../../mod/connedit.php:215
-msgid "Refresh failed - channel is currently unavailable."
-msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar."
-
-#: ../../mod/connedit.php:222
-msgid "Channel has been unblocked"
-msgstr "Kanal nicht mehr blockiert"
-
-#: ../../mod/connedit.php:223
-msgid "Channel has been blocked"
-msgstr "Kanal blockiert"
-
-#: ../../mod/connedit.php:227 ../../mod/connedit.php:239
-#: ../../mod/connedit.php:251 ../../mod/connedit.php:263
-#: ../../mod/connedit.php:278
-msgid "Unable to set address book parameters."
-msgstr "Konnte die Adressbuch Parameter nicht setzen."
-
-#: ../../mod/connedit.php:234
-msgid "Channel has been unignored"
-msgstr "Kanal wird nicht mehr ignoriert"
-
-#: ../../mod/connedit.php:235
-msgid "Channel has been ignored"
-msgstr "Kanal wird ignoriert"
-
-#: ../../mod/connedit.php:246
-msgid "Channel has been unarchived"
-msgstr "Kanal wurde aus dem Archiv zurück geholt"
-
-#: ../../mod/connedit.php:247
-msgid "Channel has been archived"
-msgstr "Kanal wurde archiviert"
-
-#: ../../mod/connedit.php:258
-msgid "Channel has been unhidden"
-msgstr "Kanal wird nicht mehr versteckt"
-
-#: ../../mod/connedit.php:259
-msgid "Channel has been hidden"
-msgstr "Kanal wurde versteckt"
-
-#: ../../mod/connedit.php:273
-msgid "Channel has been approved"
-msgstr "Kanal wurde zugelassen"
-
-#: ../../mod/connedit.php:274
-msgid "Channel has been unapproved"
-msgstr "Zulassung des Kanals entfernt"
-
-#: ../../mod/connedit.php:292
-msgid "Contact has been removed."
-msgstr "Kontakt wurde entfernt."
-
-#: ../../mod/connedit.php:312
-#, php-format
-msgid "View %s's profile"
-msgstr "%s's Profil ansehen"
-
-#: ../../mod/connedit.php:316
-msgid "Refresh Permissions"
-msgstr "Zugriffsrechte auffrischen"
-
-#: ../../mod/connedit.php:319
-msgid "Fetch updated permissions"
-msgstr "Aktualisierte Zugriffsrechte abfragen"
-
-#: ../../mod/connedit.php:323
-msgid "Recent Activity"
-msgstr "Kürzliche Aktivitäten"
-
-#: ../../mod/connedit.php:326
-msgid "View recent posts and comments"
-msgstr "Betrachte die neuesten Beiträge und Kommentare"
-
-#: ../../mod/connedit.php:330 ../../mod/connedit.php:472
-#: ../../mod/admin.php:747
-msgid "Unblock"
-msgstr "Freigeben"
-
-#: ../../mod/connedit.php:330 ../../mod/connedit.php:472
-#: ../../mod/admin.php:746
-msgid "Block"
-msgstr "Blockieren"
-
-#: ../../mod/connedit.php:333
-msgid "Block or Unblock this connection"
-msgstr "Verbindung blockieren oder frei geben"
-
-#: ../../mod/connedit.php:337 ../../mod/connedit.php:473
-msgid "Unignore"
-msgstr "Nicht ignorieren"
-
-#: ../../mod/connedit.php:337 ../../mod/connedit.php:473
-#: ../../mod/notifications.php:51
-msgid "Ignore"
-msgstr "Ignorieren"
-
-#: ../../mod/connedit.php:340
-msgid "Ignore or Unignore this connection"
-msgstr "Verbindung ignorieren oder wieder beachten"
-
-#: ../../mod/connedit.php:343
-msgid "Unarchive"
-msgstr "Aus Archiv zurückholen"
-
-#: ../../mod/connedit.php:343
-msgid "Archive"
-msgstr "Archivieren"
-
-#: ../../mod/connedit.php:346
-msgid "Archive or Unarchive this connection"
-msgstr "Archiviere diese Verbindung oder hole sie aus dem Archiv zurück"
-
-#: ../../mod/connedit.php:349
-msgid "Unhide"
-msgstr "aufdecken"
-
-#: ../../mod/connedit.php:349
-msgid "Hide"
-msgstr "Verbergen"
-
-#: ../../mod/connedit.php:352
-msgid "Hide or Unhide this connection"
-msgstr "Diese Verbindung verstecken oder aufdecken"
-
-#: ../../mod/connedit.php:359
-msgid "Delete this connection"
-msgstr "Verbindung löschen"
-
-#: ../../mod/connedit.php:392
-msgid "Unknown"
-msgstr "Unbekannt"
-
-#: ../../mod/connedit.php:402 ../../mod/connedit.php:431
-msgid "Approve this connection"
-msgstr "Verbindung genehmigen"
-
-#: ../../mod/connedit.php:402
-msgid "Accept connection to allow communication"
-msgstr "Aktzeptiere die Verbindung um Kommunikation zu ermöglichen"
-
-#: ../../mod/connedit.php:418
-msgid "Automatic Permissions Settings"
-msgstr "Automatische Berechtigungs-Einstellungen"
-
-#: ../../mod/connedit.php:418
-#, php-format
-msgid "Connections: settings for %s"
-msgstr "Verbindungseinstellungen für %s"
-
-#: ../../mod/connedit.php:422
-msgid ""
-"When receiving a channel introduction, any permissions provided here will be"
-" applied to the new connection automatically and the introduction approved. "
-"Leave this page if you do not wish to use this feature."
-msgstr "Wenn eine Kanal-Vorstellung empfangen wird, werden die hier getroffenen Einstellungen automatisch angewandt und der Anfrage wird stattgegeben. Verlasse diese Seite, wenn du dieses Feature nicht verwanden möchtest."
-
-#: ../../mod/connedit.php:424
-msgid "Slide to adjust your degree of friendship"
-msgstr "Schieben um den Grad der Freundschaft zu wählen"
-
-#: ../../mod/connedit.php:430
-msgid "inherited"
-msgstr "Geerbt"
-
-#: ../../mod/connedit.php:432
-msgid "Connection has no individual permissions!"
-msgstr "Diese Verbindung hat keine individuellen Zugriffseinstellungen."
-
-#: ../../mod/connedit.php:433
-msgid ""
-"This may be appropriate based on your <a href=\"settings\">privacy "
-"settings</a>, though you may wish to review the \"Advanced Permissions\"."
-msgstr "Abhängig von deinen <a href=\"settings\">Privatsphären Einstellungen</a> könnte dies angebracht sein, eventuell solltest du aber die \"Erweiterte Zugriffsrechte\" überprüfen."
+#: ../../mod/item.php:145
+msgid "Unable to locate original post."
+msgstr "Originalbeitrag kann nicht gefunden werden."
 
-#: ../../mod/connedit.php:435
-msgid "Profile Visibility"
-msgstr "Sichtbarkeit des Profils"
+#: ../../mod/item.php:346
+msgid "Empty post discarded."
+msgstr "Leerer Beitrag verworfen."
 
-#: ../../mod/connedit.php:436
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn deine Profilseite über eine verifizierte Verbindung aufgerufen wird."
+#: ../../mod/item.php:388
+msgid "Executable content type not permitted to this channel."
+msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."
 
-#: ../../mod/connedit.php:437
-msgid "Contact Information / Notes"
-msgstr "Kontaktinformationen / Notizen"
+#: ../../mod/item.php:819
+msgid "System error. Post not saved."
+msgstr "Systemfehler. Beitrag nicht gespeichert."
 
-#: ../../mod/connedit.php:438
-msgid "Edit contact notes"
-msgstr "Kontaktnotizen editieren"
+#: ../../mod/item.php:1086 ../../mod/wall_upload.php:41
+msgid "Wall Photos"
+msgstr "Wall Fotos"
 
-#: ../../mod/connedit.php:440
-msgid "Their Settings"
-msgstr "Deren Einstellungen"
+#: ../../mod/item.php:1166
+#, 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/connedit.php:441
-msgid "My Settings"
-msgstr "Meine Einstellungen"
+#: ../../mod/item.php:1172
+#, php-format
+msgid "You have reached your limit of %1$.0f webpages."
+msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."
 
-#: ../../mod/connedit.php:443
-msgid "Forum Members"
-msgstr "Forum Mitglieder"
+#: ../../mod/menu.php:21
+msgid "Menu updated."
+msgstr "Menü aktualisiert."
 
-#: ../../mod/connedit.php:444
-msgid "Soapbox"
-msgstr "Marktschreier"
+#: ../../mod/menu.php:25
+msgid "Unable to update menu."
+msgstr "Kann Menü nicht aktualisieren."
 
-#: ../../mod/connedit.php:445
-msgid "Full Sharing"
-msgstr "Volles Teilen"
+#: ../../mod/menu.php:30
+msgid "Menu created."
+msgstr "Menü erstellt."
 
-#: ../../mod/connedit.php:446
-msgid "Cautious Sharing"
-msgstr "Vorsichtiges Teilen"
+#: ../../mod/menu.php:34
+msgid "Unable to create menu."
+msgstr "Kann Menü nicht erstellen."
 
-#: ../../mod/connedit.php:447
-msgid "Follow Only"
-msgstr "Nur Folgen"
+#: ../../mod/menu.php:57
+msgid "Manage Menus"
+msgstr "Menüs verwalten"
 
-#: ../../mod/connedit.php:448
-msgid "Individual Permissions"
-msgstr "Individuelle Zugriffseinstellungen"
+#: ../../mod/menu.php:60
+msgid "Drop"
+msgstr "Löschen"
 
-#: ../../mod/connedit.php:449
-msgid ""
-"Some permissions may be inherited from your channel <a "
-"href=\"settings\">privacy settings</a>, which have higher priority. Changing"
-" those inherited settings on this page will have no effect."
-msgstr "Einige Genehmigungen können von deinen <a href=\"settings\">Sicherheits- und Datenschutz-Einstellungen</a> geerbt sein (siehe Kennzeichnung), da diese eine höhere Priorität haben. Wenn du solche Genehmigungen hier änderst, hat das keine Auswirkungen."
+#: ../../mod/menu.php:62
+msgid "Create a new menu"
+msgstr "Neues Menü erstellen"
 
-#: ../../mod/connedit.php:450
-msgid "Advanced Permissions"
-msgstr "Erweiterte Zugriffsrechte"
+#: ../../mod/menu.php:63
+msgid "Delete this menu"
+msgstr "Lösche dieses Menü"
 
-#: ../../mod/connedit.php:451
-msgid "Quick Links"
-msgstr "Quick Links"
+#: ../../mod/menu.php:64 ../../mod/menu.php:109
+msgid "Edit menu contents"
+msgstr "Bearbeite Menü Inhalte"
 
-#: ../../mod/connedit.php:455
-#, php-format
-msgid "Visit %s's profile - %s"
-msgstr "%s's Profil besuchen - %s"
+#: ../../mod/menu.php:65
+msgid "Edit this menu"
+msgstr "Dieses Menü bearbeiten"
 
-#: ../../mod/connedit.php:456
-msgid "Block/Unblock contact"
-msgstr "Geblockt Status ein- / ausschalten"
+#: ../../mod/menu.php:80
+msgid "New Menu"
+msgstr "Neues Menü"
 
-#: ../../mod/connedit.php:457
-msgid "Ignore contact"
-msgstr "Kontakt ignorieren"
+#: ../../mod/menu.php:81 ../../mod/menu.php:110
+msgid "Menu name"
+msgstr "Menü Name"
 
-#: ../../mod/connedit.php:458
-msgid "Repair URL settings"
-msgstr "URL Einstellungen reparieren"
+#: ../../mod/menu.php:81 ../../mod/menu.php:110
+msgid "Must be unique, only seen by you"
+msgstr "Muss unverwechselbar sein, nur für dich sichtbar"
 
-#: ../../mod/connedit.php:459
-msgid "View conversations"
-msgstr "Unterhaltungen anzeigen"
+#: ../../mod/menu.php:82 ../../mod/menu.php:111
+msgid "Menu title"
+msgstr "Menü Titel"
 
-#: ../../mod/connedit.php:461
-msgid "Delete contact"
-msgstr "Kontakt löschen"
+#: ../../mod/menu.php:82 ../../mod/menu.php:111
+msgid "Menu title as seen by others"
+msgstr "Menü Titel wie er von anderen gesehen wird"
 
-#: ../../mod/connedit.php:464
-msgid "Last update:"
-msgstr "Letzte Aktualisierung:"
+#: ../../mod/menu.php:83 ../../mod/menu.php:112
+msgid "Allow bookmarks"
+msgstr "Erlaube Lesezeichen"
 
-#: ../../mod/connedit.php:466
-msgid "Update public posts"
-msgstr "Öffentliche Beiträge aktualisieren"
+#: ../../mod/menu.php:83 ../../mod/menu.php:112
+msgid "Menu may be used to store saved bookmarks"
+msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden"
 
-#: ../../mod/connedit.php:468
-msgid "Update now"
-msgstr "Jetzt aktualisieren"
+#: ../../mod/menu.php:84 ../../mod/mitem.php:142 ../../mod/new_channel.php:117
+msgid "Create"
+msgstr "Erstelle"
 
-#: ../../mod/connedit.php:474
-msgid "Currently blocked"
-msgstr "Derzeit blockiert"
+#: ../../mod/menu.php:92 ../../mod/mitem.php:14
+msgid "Menu not found."
+msgstr "Menü nicht gefunden"
 
-#: ../../mod/connedit.php:475
-msgid "Currently ignored"
-msgstr "Derzeit ignoriert"
+#: ../../mod/menu.php:98
+msgid "Menu deleted."
+msgstr "Menü gelöscht."
 
-#: ../../mod/connedit.php:476
-msgid "Currently archived"
-msgstr "Derzeit archiviert"
+#: ../../mod/menu.php:100
+msgid "Menu could not be deleted."
+msgstr "Menü konnte nicht gelöscht werden."
 
-#: ../../mod/connedit.php:477
-msgid "Currently pending"
-msgstr "Derzeit anstehend"
+#: ../../mod/menu.php:106
+msgid "Edit Menu"
+msgstr "Menü bearbeiten"
 
-#: ../../mod/connedit.php:478
-msgid "Hide this contact from others"
-msgstr "Diese Verbindung vor den anderen verbergen."
+#: ../../mod/menu.php:108
+msgid "Add or remove entries to this menu"
+msgstr "Einträge zu diesem Menü hinzufügen oder entfernen"
 
-#: ../../mod/connedit.php:478
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>können</strong> immer noch sichtbar sein"
+#: ../../mod/menu.php:114 ../../mod/mitem.php:186
+msgid "Modify"
+msgstr "Ändern"
+
+#: ../../mod/menu.php:120 ../../mod/mitem.php:78 ../../mod/xchan.php:27
+#: ../../mod/dirprofile.php:181
+msgid "Not found."
+msgstr "Nicht gefunden."
 
 #: ../../mod/webpages.php:121 ../../mod/layouts.php:105
 #: ../../mod/blocks.php:96
@@ -3712,13 +3561,13 @@ msgid ""
 " and/or create new posts for you?"
 msgstr "Möchtest du der Anwendung erlauben, deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für dich zu erstellen?"
 
-#: ../../mod/api.php:105 ../../mod/profiles.php:483 ../../mod/settings.php:870
-#: ../../mod/settings.php:875
+#: ../../mod/api.php:105 ../../mod/settings.php:874 ../../mod/settings.php:879
+#: ../../mod/profiles.php:483
 msgid "Yes"
 msgstr "Ja"
 
-#: ../../mod/api.php:106 ../../mod/profiles.php:484 ../../mod/settings.php:870
-#: ../../mod/settings.php:875
+#: ../../mod/api.php:106 ../../mod/settings.php:874 ../../mod/settings.php:879
+#: ../../mod/profiles.php:484
 msgid "No"
 msgstr "Nein"
 
@@ -3730,372 +3579,421 @@ msgstr "Keine installierten Applikationen"
 msgid "Applications"
 msgstr "Anwendungen"
 
-#: ../../mod/page.php:35
-msgid "Invalid item."
-msgstr "Ungültiges Element."
+#: ../../mod/rpost.php:86 ../../mod/editpost.php:42
+msgid "Edit post"
+msgstr "Bearbeite Beitrag"
 
-#: ../../mod/page.php:47 ../../mod/chanview.php:77 ../../mod/home.php:50
-#: ../../mod/wall_upload.php:35
-msgid "Channel not found."
-msgstr "Kanal nicht gefunden."
+#: ../../mod/cloud.php:112
+msgid "Red Matrix - Guests: Username: {your email address}, Password: +++"
+msgstr "Red Matrix Gäste: Nutzername: {deine Email Adresse}; Passwort: +++"
 
-#: ../../mod/page.php:83 ../../mod/help.php:71 ../../mod/display.php:100
-#: ../../index.php:226
-msgid "Page not found."
-msgstr "Seite nicht gefunden."
+#: ../../mod/bookmarks.php:38
+msgid "Bookmark added"
+msgstr "Lesezeichen hinzugefügt"
 
-#: ../../mod/attach.php:9
-msgid "Item not available."
-msgstr "Element nicht verfügbar."
+#: ../../mod/bookmarks.php:53
+msgid "My Bookmarks"
+msgstr "Meine Lesezeichen"
 
-#: ../../mod/setup.php:161
-msgid "Red Matrix Server - Setup"
-msgstr "Red Matrix Server - Installation"
+#: ../../mod/bookmarks.php:64
+msgid "My Connections Bookmarks"
+msgstr "Lesezeichen meiner Kontakte"
 
-#: ../../mod/setup.php:167
-msgid "Could not connect to database."
-msgstr "Kann nicht mit der Datenbank verbinden."
+#: ../../mod/settings.php:71
+msgid "Name is required"
+msgstr "Name wird benötigt"
 
-#: ../../mod/setup.php:171
+#: ../../mod/settings.php:75
+msgid "Key and Secret are required"
+msgstr "Schlüssel und Geheimnis werden benötigt"
+
+#: ../../mod/settings.php:79 ../../mod/settings.php:539
+msgid "Update"
+msgstr "Update"
+
+#: ../../mod/settings.php:192
+msgid "Passwords do not match. Password unchanged."
+msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert."
+
+#: ../../mod/settings.php:196
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert."
+
+#: ../../mod/settings.php:209
+msgid "Password changed."
+msgstr "Kennwort geändert."
+
+#: ../../mod/settings.php:211
+msgid "Password update failed. Please try again."
+msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal."
+
+#: ../../mod/settings.php:225
+msgid "Not valid email."
+msgstr "Keine gültige E-Mail Adresse."
+
+#: ../../mod/settings.php:228
+msgid "Protected email address. Cannot change to that email."
+msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden."
+
+#: ../../mod/settings.php:237
+msgid "System failure storing new email. Please try again."
+msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal."
+
+#: ../../mod/settings.php:441
+msgid "Settings updated."
+msgstr "Einstellungen aktualisiert."
+
+#: ../../mod/settings.php:512 ../../mod/settings.php:538
+#: ../../mod/settings.php:574
+msgid "Add application"
+msgstr "Anwendung hinzufügen"
+
+#: ../../mod/settings.php:515 ../../mod/settings.php:541
+msgid "Name"
+msgstr "Name"
+
+#: ../../mod/settings.php:515
+msgid "Name of application"
+msgstr "Name der Anwendung"
+
+#: ../../mod/settings.php:516 ../../mod/settings.php:542
+msgid "Consumer Key"
+msgstr "Consumer Key"
+
+#: ../../mod/settings.php:516 ../../mod/settings.php:517
+msgid "Automatically generated - change if desired. Max length 20"
+msgstr "Automatisch erzeugt - ändern falls erwünscht. Maximale Länge 20"
+
+#: ../../mod/settings.php:517 ../../mod/settings.php:543
+msgid "Consumer Secret"
+msgstr "Consumer Secret"
+
+#: ../../mod/settings.php:518 ../../mod/settings.php:544
+msgid "Redirect"
+msgstr "Umleitung"
+
+#: ../../mod/settings.php:518
 msgid ""
-"Could not connect to specified site URL. Possible SSL certificate or DNS "
-"issue."
-msgstr "Konnte die angegebene Webseiten URL nicht erreichen. Möglicherweise ein Problem mit dem SSL Zertifikat oder dem DNS."
+"Redirect URI - leave blank unless your application specifically requires "
+"this"
+msgstr "Umleitungs-URl - lasse dies frei außer deine Anwendung erfordert dies explizit"
 
-#: ../../mod/setup.php:176
-msgid "Could not create table."
-msgstr "Kann Tabelle nicht erstellen."
+#: ../../mod/settings.php:519 ../../mod/settings.php:545
+msgid "Icon url"
+msgstr "Symbol-URL"
 
-#: ../../mod/setup.php:182
-msgid "Your site database has been installed."
-msgstr "Die Datenbank deiner Seite wurde installiert."
+#: ../../mod/settings.php:519
+msgid "Optional"
+msgstr "Optional"
+
+#: ../../mod/settings.php:530
+msgid "You can't edit this application."
+msgstr "Diese Anwendung kann nicht bearbeitet werden."
+
+#: ../../mod/settings.php:573
+msgid "Connected Apps"
+msgstr "Verbundene Apps"
+
+#: ../../mod/settings.php:577
+msgid "Client key starts with"
+msgstr "Client key beginnt mit"
+
+#: ../../mod/settings.php:578
+msgid "No name"
+msgstr "Kein Name"
+
+#: ../../mod/settings.php:579
+msgid "Remove authorization"
+msgstr "Authorisierung aufheben"
 
-#: ../../mod/setup.php:187
-msgid ""
-"You may need to import the file \"install/database.sql\" manually using "
-"phpmyadmin or mysql."
-msgstr "Eventuell musst du die Datei \"install/database.sql\" händisch mit phpmyadmin oder mysql importieren."
+#: ../../mod/settings.php:590
+msgid "No feature settings configured"
+msgstr "Keine Funktions-Einstellungen konfiguriert"
 
-#: ../../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/settings.php:598
+msgid "Feature Settings"
+msgstr "Funktions-Einstellungen"
 
-#: ../../mod/setup.php:254
-msgid "System check"
-msgstr "Systemprüfung"
+#: ../../mod/settings.php:621
+msgid "Account Settings"
+msgstr "Konto-Einstellungen"
 
-#: ../../mod/setup.php:259
-msgid "Check again"
-msgstr "Bitte nochmal prüfen"
+#: ../../mod/settings.php:622
+msgid "Password Settings"
+msgstr "Kennwort-Einstellungen"
 
-#: ../../mod/setup.php:281
-msgid "Database connection"
-msgstr "Datenbank Verbindung"
+#: ../../mod/settings.php:623
+msgid "New Password:"
+msgstr "Neues Passwort:"
 
-#: ../../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/settings.php:624
+msgid "Confirm:"
+msgstr "Bestätigen:"
 
-#: ../../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/settings.php:624
+msgid "Leave password fields blank unless changing"
+msgstr "Lasse die Passwort -Felder leer außer du möchtest das Passwort ändern"
 
-#: ../../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/settings.php:626 ../../mod/settings.php:921
+msgid "Email Address:"
+msgstr "Email Adresse:"
 
-#: ../../mod/setup.php:288
-msgid "Database Server Name"
-msgstr "Datenbank-Servername"
+#: ../../mod/settings.php:627
+msgid "Remove Account"
+msgstr "Konto entfernen"
 
-#: ../../mod/setup.php:288
-msgid "Default is localhost"
-msgstr "Standard ist localhost"
+#: ../../mod/settings.php:628
+msgid "Warning: This action is permanent and cannot be reversed."
+msgstr "Achtung: Diese Aktion ist permanent und kann nicht rückgänging gemacht werden."
 
-#: ../../mod/setup.php:289
-msgid "Database Port"
-msgstr "Datenbank-Port"
+#: ../../mod/settings.php:644
+msgid "Off"
+msgstr "Aus"
 
-#: ../../mod/setup.php:289
-msgid "Communication port number - use 0 for default"
-msgstr "Port Nummer zur Kommunikation - verwende 0 für die Standardeinstellung:"
+#: ../../mod/settings.php:644
+msgid "On"
+msgstr "An"
 
-#: ../../mod/setup.php:290
-msgid "Database Login Name"
-msgstr "Datenbank-Benutzername"
+#: ../../mod/settings.php:651
+msgid "Additional Features"
+msgstr "Zusätzliche Funktionen"
 
-#: ../../mod/setup.php:291
-msgid "Database Login Password"
-msgstr "Datenbank-Kennwort"
+#: ../../mod/settings.php:676
+msgid "Connector Settings"
+msgstr "Connector-Einstellungen"
 
-#: ../../mod/setup.php:292
-msgid "Database Name"
-msgstr "Datenbank-Name"
+#: ../../mod/settings.php:706 ../../mod/admin.php:379
+msgid "No special theme for mobile devices"
+msgstr "Keine spezielle Theme für mobile Geräte"
 
-#: ../../mod/setup.php:294 ../../mod/setup.php:336
-msgid "Site administrator email address"
-msgstr "E-Mail Adresse des Seiten-Administrators"
+#: ../../mod/settings.php:746
+msgid "Display Settings"
+msgstr "Anzeige-Einstellungen"
 
-#: ../../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/settings.php:752
+msgid "Display Theme:"
+msgstr "Anzeige Theme:"
 
-#: ../../mod/setup.php:295 ../../mod/setup.php:338
-msgid "Website URL"
-msgstr "Webseiten URL"
+#: ../../mod/settings.php:753
+msgid "Mobile Theme:"
+msgstr "Mobile Theme:"
 
-#: ../../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/settings.php:754
+msgid "Update browser every xx seconds"
+msgstr "Browser alle xx Sekunden aktualisieren"
 
-#: ../../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/settings.php:754
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Minimum von 10 Sekunden, kein Maximum"
 
-#: ../../mod/setup.php:325
-msgid "Site settings"
-msgstr "Seiteneinstellungen"
+#: ../../mod/settings.php:755
+msgid "Maximum number of conversations to load at any time:"
+msgstr "Maximale Anzahl von Unterhaltungen die gleichzeitig geladen werden sollen:"
 
-#: ../../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/settings.php:755
+msgid "Maximum of 100 items"
+msgstr "Maximum von 100 Beiträgen"
 
-#: ../../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/settings.php:756
+msgid "Don't show emoticons"
+msgstr "Emoticons nicht zeigen"
 
-#: ../../mod/setup.php:386
-msgid "PHP executable path"
-msgstr "PHP Pfad zu ausführbarer Datei"
+#: ../../mod/settings.php:792
+msgid "Nobody except yourself"
+msgstr "Niemand außer du selbst"
 
-#: ../../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/settings.php:793
+msgid "Only those you specifically allow"
+msgstr "Nur die, denen du es explizit erlaubst"
 
-#: ../../mod/setup.php:391
-msgid "Command line PHP"
-msgstr "PHP Befehlszeile"
+#: ../../mod/settings.php:794
+msgid "Anybody in your address book"
+msgstr "Jeder aus Ihrem Adressbuch"
 
-#: ../../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/settings.php:795
+msgid "Anybody on this website"
+msgstr "Jeder auf dieser Website"
 
-#: ../../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/settings.php:796
+msgid "Anybody in this network"
+msgstr "Jeder in diesem Netzwerk"
 
-#: ../../mod/setup.php:403
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../mod/settings.php:797
+msgid "Anybody on the internet"
+msgstr "Jeder im Internet"
 
-#: ../../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/settings.php:874
+msgid "Publish your default profile in the network directory"
+msgstr "Veröffentliche dein Standard-Profil im Netzwerk-Verzeichnis"
 
-#: ../../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/settings.php:879
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
 
-#: ../../mod/setup.php:427
-msgid "Generate encryption keys"
-msgstr "Verschlüsselungsschlüssel  generieren"
+#: ../../mod/settings.php:883 ../../mod/profile_photo.php:288
+msgid "or"
+msgstr "oder"
 
-#: ../../mod/setup.php:434
-msgid "libCurl PHP module"
-msgstr "libCurl PHP Modul"
+#: ../../mod/settings.php:888
+msgid "Your channel address is"
+msgstr "Deine Kanal-Adresse lautet"
 
-#: ../../mod/setup.php:435
-msgid "GD graphics PHP module"
-msgstr "GD Graphik PHP Modul"
+#: ../../mod/settings.php:910
+msgid "Channel Settings"
+msgstr "Kanal-Einstellungen"
 
-#: ../../mod/setup.php:436
-msgid "OpenSSL PHP module"
-msgstr "OpenSSL PHP Modul"
+#: ../../mod/settings.php:919
+msgid "Basic Settings"
+msgstr "Grundeinstellungen"
 
-#: ../../mod/setup.php:437
-msgid "mysqli PHP module"
-msgstr "mysqli PHP Modul"
+#: ../../mod/settings.php:922
+msgid "Your Timezone:"
+msgstr "Ihre Zeitzone:"
 
-#: ../../mod/setup.php:438
-msgid "mb_string PHP module"
-msgstr "mb_string PHP Modul"
+#: ../../mod/settings.php:923
+msgid "Default Post Location:"
+msgstr "Standardstandort:"
 
-#: ../../mod/setup.php:439
-msgid "mcrypt PHP module"
-msgstr "mcrypt PHP Modul"
+#: ../../mod/settings.php:924
+msgid "Use Browser Location:"
+msgstr "Standort des Browsers verwenden:"
 
-#: ../../mod/setup.php:444 ../../mod/setup.php:446
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite Modul"
+#: ../../mod/settings.php:926
+msgid "Adult Content"
+msgstr "Nicht Jugendfreie-Inhalte"
 
-#: ../../mod/setup.php:444
+#: ../../mod/settings.php:926
 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."
+"This channel frequently or regularly publishes adult content. (Please tag "
+"any adult material and/or nudity with #NSFW)"
+msgstr "Dieser Kanal veröffentlicht regelmäßig Inhalte die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)"
 
-#: ../../mod/setup.php:450 ../../mod/setup.php:453
-msgid "proc_open"
-msgstr "proc_open"
+#: ../../mod/settings.php:928
+msgid "Security and Privacy Settings"
+msgstr "Sicherheits- und Datenschutz-Einstellungen"
 
-#: ../../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/settings.php:930
+msgid "Hide my online presence"
+msgstr "Meine Online-Präsenz verbergen"
 
-#: ../../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/settings.php:930
+msgid "Prevents displaying in your profile that you are online"
+msgstr "Verhindert die Anzeige deines Online-Status in deinem Profil"
+
+#: ../../mod/settings.php:932
+msgid "Simple Privacy Settings:"
+msgstr "Einfache Privatsphären-Einstellungen"
 
-#: ../../mod/setup.php:462
+#: ../../mod/settings.php:933
 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."
+"Very Public - <em>extremely permissive (should be used with caution)</em>"
+msgstr ""
 
-#: ../../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/settings.php:934
+msgid ""
+"Typical - <em>default public, privacy when desired (similar to social "
+"network permissions but with improved privacy)</em>"
+msgstr ""
 
-#: ../../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/settings.php:935
+msgid "Private - <em>default private, never open or public</em>"
+msgstr ""
 
-#: ../../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/settings.php:936
+msgid "Blocked - <em>default blocked to/from everybody</em>"
+msgstr ""
 
-#: ../../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/settings.php:939
+msgid "Advanced Privacy Settings"
+msgstr ""
 
-#: ../../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/settings.php:941
+msgid "Maximum Friend Requests/Day:"
+msgstr "Maximale Kontaktanfragen pro Tag:"
+
+#: ../../mod/settings.php:941
+msgid "May reduce spam activity"
+msgstr "Kann die Spam-Aktivität verringern"
 
-#: ../../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/settings.php:942
+msgid "Default Post Permissions"
+msgstr "Beitragszugriffrechte Standardeinstellungen"
 
-#: ../../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/settings.php:943 ../../mod/mitem.php:134 ../../mod/mitem.php:177
+msgid "(click to open/close)"
+msgstr "(zum öffnen/schließen anklicken)"
 
-#: ../../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/settings.php:954
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:"
 
-#: ../../mod/setup.php:500
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php ist beschreibbar"
+#: ../../mod/settings.php:954
+msgid "Useful to reduce spamming"
+msgstr "Nützlich um Spam zu verringern"
 
-#: ../../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/settings.php:957
+msgid "Notification Settings"
+msgstr "Benachrichtigungs-Einstellungen"
 
-#: ../../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/settings.php:958
+msgid "By default post a status message when:"
+msgstr "Sende standardmäßig Status-Nachrichten wenn:"
 
-#: ../../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/settings.php:959
+msgid "accepting a friend request"
+msgstr "einer Kontaktanfrage stattgegeben wurde"
 
-#: ../../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/settings.php:960
+msgid "joining a forum/community"
+msgstr "ein Forum beigetreten wurde"
 
-#: ../../mod/setup.php:516
-msgid "view/tpl/smarty3 is writable"
-msgstr "view/tpl/smarty3 ist beschreibbar"
+#: ../../mod/settings.php:961
+msgid "making an <em>interesting</em> profile change"
+msgstr "eine <em>interessante</em> Änderung am Profil vorgenommen wurde"
 
-#: ../../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/settings.php:962
+msgid "Send a notification email when:"
+msgstr "Eine Email Benachrichtigung senden wenn:"
 
-#: ../../mod/setup.php:533
-msgid "store is writable"
-msgstr "store ist schreibbar"
+#: ../../mod/settings.php:963
+msgid "You receive an introduction"
+msgstr "Du eine Vorstellung erhältst"
 
-#: ../../mod/setup.php:548
-msgid "SSL certificate validation"
-msgstr "SSL Zertifikatverifizierung"
+#: ../../mod/settings.php:964
+msgid "Your introductions are confirmed"
+msgstr "Deine Vorstellung bestätigt wurde."
 
-#: ../../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/settings.php:965
+msgid "Someone writes on your profile wall"
+msgstr "Jemand auf deine Pinnwand schreibt"
 
-#: ../../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/settings.php:966
+msgid "Someone writes a followup comment"
+msgstr "Jemand einen Beitrag kommentiert"
 
-#: ../../mod/setup.php:557
-msgid "Url rewrite is working"
-msgstr "Url rewrite funktioniert"
+#: ../../mod/settings.php:967
+msgid "You receive a private message"
+msgstr "Du eine private Nachricht erhältst"
 
-#: ../../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/settings.php:968
+msgid "You receive a friend suggestion"
+msgstr "Du einen Kontaktvorschlag erhältst"
 
-#: ../../mod/setup.php:591
-msgid "Errors encountered creating database tables."
-msgstr "Fehler während des Anlegens der Datenbank Tabellen aufgetreten."
+#: ../../mod/settings.php:969
+msgid "You are tagged in a post"
+msgstr "Du wurdest in einem Beitrag getaggt"
 
-#: ../../mod/setup.php:604
-msgid "<h1>What next</h1>"
-msgstr "<h1>Was als Nächstes</h1>"
+#: ../../mod/settings.php:970
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Du in einer Nachricht angestupst/geknufft/o.ä. wirst"
 
-#: ../../mod/setup.php:605
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "WICHTIG: Du musst die geplanten Aufgaben für den Poller [manuell] einrichten."
+#: ../../mod/settings.php:973
+msgid "Advanced Account/Page Type Settings"
+msgstr "Erweiterte Account / Seiten Arten Einstellungen"
 
-#: ../../mod/rpost.php:86 ../../mod/editpost.php:42
-msgid "Edit post"
-msgstr "Bearbeite Beitrag"
+#: ../../mod/settings.php:974
+msgid "Change the behaviour of this account for special situations"
+msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen"
 
 #: ../../mod/subthread.php:105
 #, php-format
@@ -4108,6 +4006,11 @@ msgstr "%1$s folgt nun %2$s's %3$s"
 msgid "[Embedded content - reload page to view]"
 msgstr "[Eingebetteter Inhalte - bitte lade die Seite zur Anzeige neu]"
 
+#: ../../mod/chanview.php:77 ../../mod/home.php:50 ../../mod/page.php:47
+#: ../../mod/wall_upload.php:35
+msgid "Channel not found."
+msgstr "Kanal nicht gefunden."
+
 #: ../../mod/chanview.php:93
 msgid "toggle full screen mode"
 msgstr "auf Vollbildmodus umschalten"
@@ -4117,9 +4020,39 @@ 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/chat.php:18 ../../mod/channel.php:25
+msgid "You must be logged in to see this page."
+msgstr "Du musst angemeldet sein um diese Seite betrachten zu können."
+
+#: ../../mod/chat.php:120
+msgid "Leave Room"
+msgstr "Raum verlassen"
+
+#: ../../mod/chat.php:121
+msgid "I am away right now"
+msgstr "Ich bin gerade nicht da"
+
+#: ../../mod/chat.php:122
+msgid "I am online"
+msgstr "Ich bin online"
+
+#: ../../mod/chat.php:146 ../../mod/chat.php:166
+msgid "New Chatroom"
+msgstr "Neuen Chatraum"
+
+#: ../../mod/chat.php:147
+msgid "Chatroom Name"
+msgstr "Chatraum Name"
+
+#: ../../mod/chat.php:162
+#, php-format
+msgid "%1$s's Chatrooms"
+msgstr "%1$s's Chat-Räume"
+
 #: ../../mod/viewconnections.php:17 ../../mod/search.php:13
-#: ../../mod/photos.php:442 ../../mod/directory.php:15 ../../mod/display.php:9
+#: ../../mod/directory.php:15 ../../mod/display.php:9
 #: ../../mod/community.php:18 ../../mod/dirprofile.php:9
+#: ../../mod/photos.php:442
 msgid "Public access denied."
 msgstr "Öffentlicher Zugang verweigert."
 
@@ -4148,7 +4081,7 @@ msgstr "Schlagwort des Beitrags entfernen"
 msgid "Select a tag to remove: "
 msgstr "Schlagwort zum entfernen auswählen:"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 ../../mod/photos.php:905
 msgid "Remove"
 msgstr "Entferne"
 
@@ -4218,76 +4151,197 @@ msgstr "Vorhandene Seitenmanager"
 msgid "Existing Page Delegates"
 msgstr "Vorhandene Bevollmächtigte für die Seite"
 
-#: ../../mod/delegate.php:128
-msgid "Potential Delegates"
-msgstr "Potentielle Bevollmächtigte"
+#: ../../mod/delegate.php:128
+msgid "Potential Delegates"
+msgstr "Potentielle Bevollmächtigte"
+
+#: ../../mod/delegate.php:131
+msgid "Add"
+msgstr "Hinzufügen"
+
+#: ../../mod/delegate.php:132
+msgid "No entries."
+msgstr "Keine Einträge."
+
+#: ../../mod/chatsvc.php:102
+msgid "Away"
+msgstr "Abwesend"
+
+#: ../../mod/chatsvc.php:106
+msgid "Online"
+msgstr "Online"
+
+#: ../../mod/attach.php:9
+msgid "Item not available."
+msgstr "Element nicht verfügbar."
+
+#: ../../mod/mitem.php:47
+msgid "Menu element updated."
+msgstr "Menü-Element aktualisiert."
+
+#: ../../mod/mitem.php:51
+msgid "Unable to update menu element."
+msgstr "Kann Menü-Element nicht aktualisieren."
+
+#: ../../mod/mitem.php:57
+msgid "Menu element added."
+msgstr "Menü-Bestandteil hinzugefügt."
+
+#: ../../mod/mitem.php:61
+msgid "Unable to add menu element."
+msgstr "Kann Menü-Bestandteil nicht hinzufügen."
+
+#: ../../mod/mitem.php:96
+msgid "Manage Menu Elements"
+msgstr "Menü-Bestandteile verwalten"
+
+#: ../../mod/mitem.php:99
+msgid "Edit menu"
+msgstr "Menü bearbeiten"
+
+#: ../../mod/mitem.php:102
+msgid "Edit element"
+msgstr "Bestandteil bearbeiten"
+
+#: ../../mod/mitem.php:103
+msgid "Drop element"
+msgstr "Bestandteil löschen"
+
+#: ../../mod/mitem.php:104
+msgid "New element"
+msgstr "Neues Bestandteil"
+
+#: ../../mod/mitem.php:105
+msgid "Edit this menu container"
+msgstr "Diesen Menü-Container bearbeiten"
+
+#: ../../mod/mitem.php:106
+msgid "Add menu element"
+msgstr "Menüelement hinzufügen"
+
+#: ../../mod/mitem.php:107
+msgid "Delete this menu item"
+msgstr "Lösche dieses Menü-Bestandteil"
+
+#: ../../mod/mitem.php:108
+msgid "Edit this menu item"
+msgstr "Bearbeite dieses Menü-Bestandteil"
+
+#: ../../mod/mitem.php:131
+msgid "New Menu Element"
+msgstr "Neues Menü-Bestandteil"
+
+#: ../../mod/mitem.php:133 ../../mod/mitem.php:176
+msgid "Menu Item Permissions"
+msgstr "Menü-Element Zugriffsrechte"
+
+#: ../../mod/mitem.php:136 ../../mod/mitem.php:180
+msgid "Link text"
+msgstr "Link Text"
+
+#: ../../mod/mitem.php:137 ../../mod/mitem.php:181
+msgid "URL of link"
+msgstr "URL des Links"
+
+#: ../../mod/mitem.php:138 ../../mod/mitem.php:182
+msgid "Use Red magic-auth if available"
+msgstr "Verwende Red Magic-Auth wenn verfügbar"
+
+#: ../../mod/mitem.php:139 ../../mod/mitem.php:183
+msgid "Open link in new window"
+msgstr "Öffne Link in neuem Fenster"
+
+#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
+msgid "Order in list"
+msgstr "Reihenfolge in der Liste"
+
+#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
+msgid "Higher numbers will sink to bottom of listing"
+msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert"
+
+#: ../../mod/mitem.php:154
+msgid "Menu item not found."
+msgstr "Menü-Bestandteil nicht gefunden."
+
+#: ../../mod/mitem.php:163
+msgid "Menu item deleted."
+msgstr "Menü-Bestandteil gelöscht."
+
+#: ../../mod/mitem.php:165
+msgid "Menu item could not be deleted."
+msgstr "Menü-Bestandteil kann nicht gelöscht werden."
+
+#: ../../mod/mitem.php:174
+msgid "Edit Menu Element"
+msgstr "Bearbeite Menü-Bestandteil"
 
-#: ../../mod/delegate.php:131
-msgid "Add"
-msgstr "Hinzufügen"
+#: ../../mod/group.php:20
+msgid "Collection created."
+msgstr "Sammlung erstellt."
 
-#: ../../mod/delegate.php:132
-msgid "No entries."
-msgstr "Keine Einträge."
+#: ../../mod/group.php:26
+msgid "Could not create collection."
+msgstr "Sammlung kann nicht erstellt werden."
 
-#: ../../mod/sources.php:28
-msgid "Failed to create source. No channel selected."
-msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt."
+#: ../../mod/group.php:54
+msgid "Collection updated."
+msgstr "Sammlung aktualisiert."
 
-#: ../../mod/sources.php:41
-msgid "Source created."
-msgstr "Quelle erstellt."
+#: ../../mod/group.php:86
+msgid "Create a collection of channels."
+msgstr "Erstelle eine Sammlung von Kanälen."
 
-#: ../../mod/sources.php:53
-msgid "Source updated."
-msgstr "Quelle aktualisiert."
+#: ../../mod/group.php:87 ../../mod/group.php:183
+msgid "Collection Name: "
+msgstr "Name der Sammlung:"
 
-#: ../../mod/sources.php:82
-msgid "Manage remote sources of content for your channel."
-msgstr "Entfernte Quellen von Inhalten deines Kanals verwalten."
+#: ../../mod/group.php:89 ../../mod/group.php:186
+msgid "Members are visible to other channels"
+msgstr "Mitglieder sind sichtbar für andere Kanäle"
 
-#: ../../mod/sources.php:83 ../../mod/sources.php:93
-msgid "New Source"
-msgstr "Neue Quelle"
+#: ../../mod/group.php:107
+msgid "Collection removed."
+msgstr "Sammlung gelöscht."
 
-#: ../../mod/sources.php:94 ../../mod/sources.php:126
-msgid ""
-"Import all or selected content from the following channel into this channel "
-"and distribute it according to your channel settings."
-msgstr "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals."
+#: ../../mod/group.php:109
+msgid "Unable to remove collection."
+msgstr "Löschen der Sammlung nicht möglich."
 
-#: ../../mod/sources.php:95 ../../mod/sources.php:127
-msgid "Only import content with these words (one per line)"
-msgstr "Importiere ausschließlich Beiträge, die folgende Wörter (eines pro Zeile) enthalten"
+#: ../../mod/group.php:182
+msgid "Collection Editor"
+msgstr "Sammlung-Editor"
 
-#: ../../mod/sources.php:95 ../../mod/sources.php:127
-msgid "Leave blank to import all public content"
-msgstr "Leer lassen um alle öffentlichen Beiträge zu importieren"
+#: ../../mod/group.php:196
+msgid "Members"
+msgstr "Mitglieder"
 
-#: ../../mod/sources.php:96 ../../mod/sources.php:130
-#: ../../mod/new_channel.php:110
-msgid "Channel Name"
-msgstr "Name des Kanals"
+#: ../../mod/group.php:198
+msgid "All Connected Channels"
+msgstr "Alle verbundenen Kanäle"
 
-#: ../../mod/sources.php:116 ../../mod/sources.php:143
-msgid "Source not found."
-msgstr "Quelle nicht gefunden."
+#: ../../mod/group.php:231
+msgid "Click on a channel to add or remove."
+msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus."
 
-#: ../../mod/sources.php:123
-msgid "Edit Source"
-msgstr "Quelle bearbeiten"
+#: ../../mod/profperm.php:29 ../../mod/profperm.php:58
+msgid "Invalid profile identifier."
+msgstr "Ungültiger Profil Identifikator"
 
-#: ../../mod/sources.php:124
-msgid "Delete Source"
-msgstr "Quelle löschen"
+#: ../../mod/profperm.php:105
+msgid "Profile Visibility Editor"
+msgstr "Profil-Sichtbarkeits Editor"
 
-#: ../../mod/sources.php:151
-msgid "Source removed"
-msgstr "Quelle gelöscht"
+#: ../../mod/profperm.php:109
+msgid "Click on a contact to add or remove."
+msgstr "Wähle einen Kontakt zum Hinzufügen oder Löschen aus."
 
-#: ../../mod/sources.php:153
-msgid "Unable to remove source."
-msgstr "Konnte die Quelle nicht löschen."
+#: ../../mod/profperm.php:118
+msgid "Visible To"
+msgstr "Sichtbar für"
+
+#: ../../mod/profperm.php:134 ../../mod/connections.php:250
+msgid "All Connections"
+msgstr "Alle Verbindungen"
 
 #: ../../mod/admin.php:48
 msgid "Theme settings updated."
@@ -4363,10 +4417,6 @@ msgstr "Aktive Plug-Ins"
 msgid "Site settings updated."
 msgstr "Site-Einstellungen aktualisiert."
 
-#: ../../mod/admin.php:379 ../../mod/settings.php:702
-msgid "No special theme for mobile devices"
-msgstr "Keine spezielle Theme für mobile Geräte"
-
 #: ../../mod/admin.php:381
 msgid "No special theme for accessibility"
 msgstr "Kein spezielles Accessibility Theme vorhanden"
@@ -4722,6 +4772,16 @@ msgstr "Genehmigen"
 msgid "Deny"
 msgstr "Verweigern"
 
+#: ../../mod/admin.php:746 ../../mod/connedit.php:333
+#: ../../mod/connedit.php:475
+msgid "Block"
+msgstr "Blockieren"
+
+#: ../../mod/admin.php:747 ../../mod/connedit.php:333
+#: ../../mod/connedit.php:475
+msgid "Unblock"
+msgstr "Freigeben"
+
 #: ../../mod/admin.php:750
 msgid "Register date"
 msgstr "Registrierungs-Datum"
@@ -4821,502 +4881,382 @@ msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Red Stammverzeichn
 msgid "Log level"
 msgstr "Protokollstufe"
 
-#: ../../mod/mitem.php:14 ../../mod/menu.php:87
-msgid "Menu not found."
-msgstr "Menü nicht gefunden"
-
-#: ../../mod/mitem.php:47
-msgid "Menu element updated."
-msgstr "Menü-Element aktualisiert."
-
-#: ../../mod/mitem.php:51
-msgid "Unable to update menu element."
-msgstr "Kann Menü-Element nicht aktualisieren."
-
-#: ../../mod/mitem.php:57
-msgid "Menu element added."
-msgstr "Menü-Bestandteil hinzugefügt."
-
-#: ../../mod/mitem.php:61
-msgid "Unable to add menu element."
-msgstr "Kann Menü-Bestandteil nicht hinzufügen."
-
-#: ../../mod/mitem.php:78 ../../mod/xchan.php:25 ../../mod/menu.php:113
-#: ../../mod/dirprofile.php:181
-msgid "Not found."
-msgstr "Nicht gefunden."
-
-#: ../../mod/mitem.php:96
-msgid "Manage Menu Elements"
-msgstr "Menü-Bestandteile verwalten"
-
-#: ../../mod/mitem.php:99
-msgid "Edit menu"
-msgstr "Menü bearbeiten"
-
-#: ../../mod/mitem.php:102
-msgid "Edit element"
-msgstr "Bestandteil bearbeiten"
-
-#: ../../mod/mitem.php:103
-msgid "Drop element"
-msgstr "Bestandteil löschen"
-
-#: ../../mod/mitem.php:104
-msgid "New element"
-msgstr "Neues Bestandteil"
-
-#: ../../mod/mitem.php:105
-msgid "Edit this menu container"
-msgstr "Diesen Menü-Container bearbeiten"
-
-#: ../../mod/mitem.php:106
-msgid "Add menu element"
-msgstr "Menüelement hinzufügen"
-
-#: ../../mod/mitem.php:107
-msgid "Delete this menu item"
-msgstr "Lösche dieses Menü-Bestandteil"
-
-#: ../../mod/mitem.php:108
-msgid "Edit this menu item"
-msgstr "Bearbeite dieses Menü-Bestandteil"
-
-#: ../../mod/mitem.php:131
-msgid "New Menu Element"
-msgstr "Neues Menü-Bestandteil"
-
-#: ../../mod/mitem.php:133 ../../mod/mitem.php:176
-msgid "Menu Item Permissions"
-msgstr "Menü-Element Zugriffsrechte"
-
-#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:937
-msgid "(click to open/close)"
-msgstr "(zum öffnen/schließen anklicken)"
-
-#: ../../mod/mitem.php:136 ../../mod/mitem.php:180
-msgid "Link text"
-msgstr "Link Text"
-
-#: ../../mod/mitem.php:137 ../../mod/mitem.php:181
-msgid "URL of link"
-msgstr "URL des Links"
-
-#: ../../mod/mitem.php:138 ../../mod/mitem.php:182
-msgid "Use Red magic-auth if available"
-msgstr "Verwende Red Magic-Auth wenn verfügbar"
-
-#: ../../mod/mitem.php:139 ../../mod/mitem.php:183
-msgid "Open link in new window"
-msgstr "Öffne Link in neuem Fenster"
-
-#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
-msgid "Order in list"
-msgstr "Reihenfolge in der Liste"
-
-#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
-msgid "Higher numbers will sink to bottom of listing"
-msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert"
-
-#: ../../mod/mitem.php:142 ../../mod/menu.php:79 ../../mod/new_channel.php:117
-msgid "Create"
-msgstr "Erstelle"
-
-#: ../../mod/mitem.php:154
-msgid "Menu item not found."
-msgstr "Menü-Bestandteil nicht gefunden."
-
-#: ../../mod/mitem.php:163
-msgid "Menu item deleted."
-msgstr "Menü-Bestandteil gelöscht."
-
-#: ../../mod/mitem.php:165
-msgid "Menu item could not be deleted."
-msgstr "Menü-Bestandteil kann nicht gelöscht werden."
-
-#: ../../mod/mitem.php:174
-msgid "Edit Menu Element"
-msgstr "Bearbeite Menü-Bestandteil"
-
-#: ../../mod/mitem.php:186 ../../mod/menu.php:107
-msgid "Modify"
-msgstr "Ändern"
-
-#: ../../mod/group.php:20
-msgid "Collection created."
-msgstr "Sammlung erstellt."
-
-#: ../../mod/group.php:26
-msgid "Could not create collection."
-msgstr "Sammlung kann nicht erstellt werden."
-
-#: ../../mod/group.php:54
-msgid "Collection updated."
-msgstr "Sammlung aktualisiert."
-
-#: ../../mod/group.php:86
-msgid "Create a collection of channels."
-msgstr "Erstelle eine Sammlung von Kanälen."
-
-#: ../../mod/group.php:87 ../../mod/group.php:183
-msgid "Collection Name: "
-msgstr "Name der Sammlung:"
+#: ../../mod/filer.php:35
+msgid "- select -"
+msgstr "-auswählen-"
 
-#: ../../mod/group.php:89 ../../mod/group.php:186
-msgid "Members are visible to other channels"
-msgstr "Mitglieder sind sichtbar für andere Kanäle"
+#: ../../mod/home.php:89
+#, php-format
+msgid "Welcome to %s"
+msgstr "Willkommen auf %s"
 
-#: ../../mod/group.php:107
-msgid "Collection removed."
-msgstr "Sammlung gelöscht."
+#: ../../mod/editpost.php:20 ../../mod/editlayout.php:36
+#: ../../mod/editwebpage.php:32 ../../mod/editblock.php:36
+msgid "Item not found"
+msgstr "Element nicht gefunden"
 
-#: ../../mod/group.php:109
-msgid "Unable to remove collection."
-msgstr "Löschen der Sammlung nicht möglich."
+#: ../../mod/editpost.php:31
+msgid "Item is not editable"
+msgstr "Element kann nicht bearbeitet werden."
 
-#: ../../mod/group.php:182
-msgid "Collection Editor"
-msgstr "Sammlung-Editor"
+#: ../../mod/editpost.php:53
+msgid "Delete item?"
+msgstr "Eintrag löschen?"
 
-#: ../../mod/group.php:196
-msgid "Members"
-msgstr "Mitglieder"
+#: ../../mod/editpost.php:107 ../../mod/editlayout.php:110
+#: ../../mod/editwebpage.php:148 ../../mod/editblock.php:124
+msgid "Insert YouTube video"
+msgstr "YouTube-Video einfügen"
 
-#: ../../mod/group.php:198
-msgid "All Connected Channels"
-msgstr "Alle verbundenen Kanäle"
+#: ../../mod/editpost.php:108 ../../mod/editlayout.php:111
+#: ../../mod/editwebpage.php:149 ../../mod/editblock.php:125
+msgid "Insert Vorbis [.ogg] video"
+msgstr "Vorbis [.ogg]-Video einfügen"
 
-#: ../../mod/group.php:231
-msgid "Click on a channel to add or remove."
-msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus."
+#: ../../mod/editpost.php:109 ../../mod/editlayout.php:112
+#: ../../mod/editwebpage.php:150 ../../mod/editblock.php:126
+msgid "Insert Vorbis [.ogg] audio"
+msgstr "Vorbis [.ogg]-Audio einfügen"
 
-#: ../../mod/photos.php:77
-msgid "Page owner information could not be retrieved."
-msgstr "Informationen über den Betreiber der Seite konnten nicht gefunden werden."
+#: ../../mod/directory.php:143 ../../mod/profiles.php:561
+#: ../../mod/dirprofile.php:98
+msgid "Age: "
+msgstr "Alter:"
 
-#: ../../mod/photos.php:97
-msgid "Album not found."
-msgstr "Album nicht gefunden."
+#: ../../mod/directory.php:146 ../../mod/dirprofile.php:101
+msgid "Gender: "
+msgstr "Geschlecht:"
 
-#: ../../mod/photos.php:119 ../../mod/photos.php:668
-msgid "Delete Album"
-msgstr "Album löschen"
+#: ../../mod/directory.php:207
+msgid "Finding:"
+msgstr "Ergebnisse:"
 
-#: ../../mod/photos.php:159 ../../mod/photos.php:934
-msgid "Delete Photo"
-msgstr "Foto löschen"
+#: ../../mod/directory.php:215
+msgid "next page"
+msgstr "nächste Seite"
 
-#: ../../mod/photos.php:452
-msgid "No photos selected"
-msgstr "Keine Fotos ausgewählt"
+#: ../../mod/directory.php:215
+msgid "previous page"
+msgstr "vorige Seite"
 
-#: ../../mod/photos.php:499
-msgid "Access to this item is restricted."
-msgstr "Zugriff auf dieses Foto wurde eingeschränkt."
+#: ../../mod/directory.php:222
+msgid "No entries (some entries may be hidden)."
+msgstr "Keine Einträge gefunden (einige könnten versteckt sein)."
 
-#: ../../mod/photos.php:573
-#, 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/connedit.php:49 ../../mod/connections.php:37
+msgid "Could not access contact record."
+msgstr "Konnte auf den Kontakteintrag nicht zugreifen."
 
-#: ../../mod/photos.php:576
-#, php-format
-msgid "You have used %1$.2f Mbytes of photo storage."
-msgstr "Du verwendets %1$.2f MBytes deines Foto-Speichers."
+#: ../../mod/connedit.php:63 ../../mod/connections.php:51
+msgid "Could not locate selected profile."
+msgstr "Konnte das gewählte Profil nicht finden."
 
-#: ../../mod/photos.php:595
-msgid "Upload Photos"
-msgstr "Fotos hochladen"
+#: ../../mod/connedit.php:107 ../../mod/connections.php:94
+msgid "Connection updated."
+msgstr "Verbindung aktualisiert."
 
-#: ../../mod/photos.php:599 ../../mod/photos.php:663
-msgid "New album name: "
-msgstr "Name des neuen Albums:"
+#: ../../mod/connedit.php:109 ../../mod/connections.php:96
+msgid "Failed to update connection record."
+msgstr "Konnte den Verbindungseintrag nicht aktualisieren."
 
-#: ../../mod/photos.php:600
-msgid "or existing album name: "
-msgstr "oder bestehenden Album Namen:"
+#: ../../mod/connedit.php:204
+msgid "Could not access address book record."
+msgstr "Konnte nicht auf den Eintrag im Adressbuch zugreifen."
 
-#: ../../mod/photos.php:601
-msgid "Do not show a status post for this upload"
-msgstr "Keine Statusnachricht für diesen Upload senden"
+#: ../../mod/connedit.php:218
+msgid "Refresh failed - channel is currently unavailable."
+msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar."
 
-#: ../../mod/photos.php:603 ../../mod/photos.php:929
-#: ../../mod/filestorage.php:124
-msgid "Permissions"
-msgstr "Berechtigungen"
+#: ../../mod/connedit.php:225
+msgid "Channel has been unblocked"
+msgstr "Kanal nicht mehr blockiert"
 
-#: ../../mod/photos.php:652 ../../mod/photos.php:674 ../../mod/photos.php:1105
-#: ../../mod/photos.php:1120
-msgid "Contact Photos"
-msgstr "Kontakt Bilder"
+#: ../../mod/connedit.php:226
+msgid "Channel has been blocked"
+msgstr "Kanal blockiert"
 
-#: ../../mod/photos.php:678
-msgid "Edit Album"
-msgstr "Album bearbeiten"
+#: ../../mod/connedit.php:230 ../../mod/connedit.php:242
+#: ../../mod/connedit.php:254 ../../mod/connedit.php:266
+#: ../../mod/connedit.php:281
+msgid "Unable to set address book parameters."
+msgstr "Konnte die Adressbuch Parameter nicht setzen."
 
-#: ../../mod/photos.php:684
-msgid "Show Newest First"
-msgstr "Zeige neueste zuerst"
+#: ../../mod/connedit.php:237
+msgid "Channel has been unignored"
+msgstr "Kanal wird nicht mehr ignoriert"
 
-#: ../../mod/photos.php:686
-msgid "Show Oldest First"
-msgstr "Zeige älteste zuerst"
+#: ../../mod/connedit.php:238
+msgid "Channel has been ignored"
+msgstr "Kanal wird ignoriert"
 
-#: ../../mod/photos.php:729 ../../mod/photos.php:1152
-msgid "View Photo"
-msgstr "Foto ansehen"
+#: ../../mod/connedit.php:249
+msgid "Channel has been unarchived"
+msgstr "Kanal wurde aus dem Archiv zurück geholt"
 
-#: ../../mod/photos.php:775
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."
+#: ../../mod/connedit.php:250
+msgid "Channel has been archived"
+msgstr "Kanal wurde archiviert"
 
-#: ../../mod/photos.php:777
-msgid "Photo not available"
-msgstr "Foto nicht verfügbar"
+#: ../../mod/connedit.php:261
+msgid "Channel has been unhidden"
+msgstr "Kanal wird nicht mehr versteckt"
 
-#: ../../mod/photos.php:837
-msgid "Use as profile photo"
-msgstr "Als Profilfoto verwenden"
+#: ../../mod/connedit.php:262
+msgid "Channel has been hidden"
+msgstr "Kanal wurde versteckt"
 
-#: ../../mod/photos.php:861
-msgid "View Full Size"
-msgstr "In voller Größe anzeigen"
+#: ../../mod/connedit.php:276
+msgid "Channel has been approved"
+msgstr "Kanal wurde zugelassen"
 
-#: ../../mod/photos.php:917
-msgid "Edit photo"
-msgstr "Foto bearbeiten"
+#: ../../mod/connedit.php:277
+msgid "Channel has been unapproved"
+msgstr "Zulassung des Kanals entfernt"
 
-#: ../../mod/photos.php:919
-msgid "Rotate CW (right)"
-msgstr "Drehen US (rechts)"
+#: ../../mod/connedit.php:295
+msgid "Contact has been removed."
+msgstr "Kontakt wurde entfernt."
 
-#: ../../mod/photos.php:920
-msgid "Rotate CCW (left)"
-msgstr "Drehen EUS (links)"
+#: ../../mod/connedit.php:315
+#, php-format
+msgid "View %s's profile"
+msgstr "%s's Profil ansehen"
 
-#: ../../mod/photos.php:922
-msgid "New album name"
-msgstr "Name des neuen Albums:"
+#: ../../mod/connedit.php:319
+msgid "Refresh Permissions"
+msgstr "Zugriffsrechte auffrischen"
 
-#: ../../mod/photos.php:925
-msgid "Caption"
-msgstr "Bildunterschrift"
+#: ../../mod/connedit.php:322
+msgid "Fetch updated permissions"
+msgstr "Aktualisierte Zugriffsrechte abfragen"
 
-#: ../../mod/photos.php:927
-msgid "Add a Tag"
-msgstr "Schlagwort hinzufügen"
+#: ../../mod/connedit.php:326
+msgid "Recent Activity"
+msgstr "Kürzliche Aktivitäten"
 
-#: ../../mod/photos.php:931
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+#: ../../mod/connedit.php:329
+msgid "View recent posts and comments"
+msgstr "Betrachte die neuesten Beiträge und Kommentare"
 
-#: ../../mod/photos.php:1158
-msgid "View Album"
-msgstr "Album ansehen"
+#: ../../mod/connedit.php:336
+msgid "Block or Unblock this connection"
+msgstr "Verbindung blockieren oder frei geben"
 
-#: ../../mod/photos.php:1167
-msgid "Recent Photos"
-msgstr "Neueste Fotos"
+#: ../../mod/connedit.php:340 ../../mod/connedit.php:476
+msgid "Unignore"
+msgstr "Nicht ignorieren"
 
-#: ../../mod/chat.php:18 ../../mod/channel.php:25
-msgid "You must be logged in to see this page."
-msgstr "Du musst angemeldet sein um diese Seite betrachten zu können."
+#: ../../mod/connedit.php:340 ../../mod/connedit.php:476
+#: ../../mod/notifications.php:51
+msgid "Ignore"
+msgstr "Ignorieren"
 
-#: ../../mod/chat.php:130
-msgid "New Chatroom"
-msgstr "Neuen Chatraum"
+#: ../../mod/connedit.php:343
+msgid "Ignore or Unignore this connection"
+msgstr "Verbindung ignorieren oder wieder beachten"
 
-#: ../../mod/chat.php:131
-msgid "Chatroom Name"
-msgstr "Chatraum Name"
+#: ../../mod/connedit.php:346
+msgid "Unarchive"
+msgstr "Aus Archiv zurückholen"
 
-#: ../../mod/filer.php:35
-msgid "- select -"
-msgstr "-auswählen-"
+#: ../../mod/connedit.php:346
+msgid "Archive"
+msgstr "Archivieren"
 
-#: ../../mod/menu.php:17
-msgid "Menu updated."
-msgstr "Menü aktualisiert."
+#: ../../mod/connedit.php:349
+msgid "Archive or Unarchive this connection"
+msgstr "Archiviere diese Verbindung oder hole sie aus dem Archiv zurück"
 
-#: ../../mod/menu.php:21
-msgid "Unable to update menu."
-msgstr "Kann Menü nicht aktualisieren."
+#: ../../mod/connedit.php:352
+msgid "Unhide"
+msgstr "aufdecken"
 
-#: ../../mod/menu.php:26
-msgid "Menu created."
-msgstr "Menü erstellt."
+#: ../../mod/connedit.php:352
+msgid "Hide"
+msgstr "Verbergen"
 
-#: ../../mod/menu.php:30
-msgid "Unable to create menu."
-msgstr "Kann Menü nicht erstellen."
+#: ../../mod/connedit.php:355
+msgid "Hide or Unhide this connection"
+msgstr "Diese Verbindung verstecken oder aufdecken"
 
-#: ../../mod/menu.php:53
-msgid "Manage Menus"
-msgstr "Menüs verwalten"
+#: ../../mod/connedit.php:362
+msgid "Delete this connection"
+msgstr "Verbindung löschen"
 
-#: ../../mod/menu.php:56
-msgid "Drop"
-msgstr "Löschen"
+#: ../../mod/connedit.php:395
+msgid "Unknown"
+msgstr "Unbekannt"
 
-#: ../../mod/menu.php:58
-msgid "Create a new menu"
-msgstr "Neues Menü erstellen"
+#: ../../mod/connedit.php:405 ../../mod/connedit.php:434
+msgid "Approve this connection"
+msgstr "Verbindung genehmigen"
 
-#: ../../mod/menu.php:59
-msgid "Delete this menu"
-msgstr "Lösche dieses Menü"
+#: ../../mod/connedit.php:405
+msgid "Accept connection to allow communication"
+msgstr "Aktzeptiere die Verbindung um Kommunikation zu ermöglichen"
 
-#: ../../mod/menu.php:60 ../../mod/menu.php:104
-msgid "Edit menu contents"
-msgstr "Bearbeite Menü Inhalte"
+#: ../../mod/connedit.php:421
+msgid "Automatic Permissions Settings"
+msgstr "Automatische Berechtigungs-Einstellungen"
 
-#: ../../mod/menu.php:61
-msgid "Edit this menu"
-msgstr "Dieses Menü bearbeiten"
+#: ../../mod/connedit.php:421
+#, php-format
+msgid "Connections: settings for %s"
+msgstr "Verbindungseinstellungen für %s"
 
-#: ../../mod/menu.php:76
-msgid "New Menu"
-msgstr "Neues Menü"
+#: ../../mod/connedit.php:425
+msgid ""
+"When receiving a channel introduction, any permissions provided here will be"
+" applied to the new connection automatically and the introduction approved. "
+"Leave this page if you do not wish to use this feature."
+msgstr "Wenn eine Kanal-Vorstellung empfangen wird, werden die hier getroffenen Einstellungen automatisch angewandt und der Anfrage wird stattgegeben. Verlasse diese Seite, wenn du dieses Feature nicht verwanden möchtest."
 
-#: ../../mod/menu.php:77 ../../mod/menu.php:105
-msgid "Menu name"
-msgstr "Menü Name"
+#: ../../mod/connedit.php:427
+msgid "Slide to adjust your degree of friendship"
+msgstr "Schieben um den Grad der Freundschaft zu wählen"
 
-#: ../../mod/menu.php:77 ../../mod/menu.php:105
-msgid "Must be unique, only seen by you"
-msgstr "Muss unverwechselbar sein, nur für dich sichtbar"
+#: ../../mod/connedit.php:433
+msgid "inherited"
+msgstr "Geerbt"
 
-#: ../../mod/menu.php:78 ../../mod/menu.php:106
-msgid "Menu title"
-msgstr "Menü Titel"
+#: ../../mod/connedit.php:435
+msgid "Connection has no individual permissions!"
+msgstr "Diese Verbindung hat keine individuellen Zugriffseinstellungen."
 
-#: ../../mod/menu.php:78 ../../mod/menu.php:106
-msgid "Menu title as seen by others"
-msgstr "Menü Titel wie er von anderen gesehen wird"
+#: ../../mod/connedit.php:436
+msgid ""
+"This may be appropriate based on your <a href=\"settings\">privacy "
+"settings</a>, though you may wish to review the \"Advanced Permissions\"."
+msgstr "Abhängig von deinen <a href=\"settings\">Privatsphären Einstellungen</a> könnte dies angebracht sein, eventuell solltest du aber die \"Erweiterte Zugriffsrechte\" überprüfen."
 
-#: ../../mod/menu.php:93
-msgid "Menu deleted."
-msgstr "Menü gelöscht."
+#: ../../mod/connedit.php:438
+msgid "Profile Visibility"
+msgstr "Sichtbarkeit des Profils"
 
-#: ../../mod/menu.php:95
-msgid "Menu could not be deleted."
-msgstr "Menü konnte nicht gelöscht werden."
+#: ../../mod/connedit.php:439
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn deine Profilseite über eine verifizierte Verbindung aufgerufen wird."
 
-#: ../../mod/menu.php:101
-msgid "Edit Menu"
-msgstr "Menü bearbeiten"
+#: ../../mod/connedit.php:440
+msgid "Contact Information / Notes"
+msgstr "Kontaktinformationen / Notizen"
 
-#: ../../mod/menu.php:103
-msgid "Add or remove entries to this menu"
-msgstr "Einträge zu diesem Menü hinzufügen oder entfernen"
+#: ../../mod/connedit.php:441
+msgid "Edit contact notes"
+msgstr "Kontaktnotizen editieren"
 
-#: ../../mod/home.php:89
-#, php-format
-msgid "Welcome to %s"
-msgstr "Willkommen auf %s"
+#: ../../mod/connedit.php:443
+msgid "Their Settings"
+msgstr "Deren Einstellungen"
 
-#: ../../mod/directory.php:143 ../../mod/profiles.php:561
-#: ../../mod/dirprofile.php:98
-msgid "Age: "
-msgstr "Alter:"
+#: ../../mod/connedit.php:444
+msgid "My Settings"
+msgstr "Meine Einstellungen"
 
-#: ../../mod/directory.php:146 ../../mod/dirprofile.php:101
-msgid "Gender: "
-msgstr "Geschlecht:"
+#: ../../mod/connedit.php:446
+msgid "Forum Members"
+msgstr "Forum Mitglieder"
 
-#: ../../mod/directory.php:207
-msgid "Finding:"
-msgstr "Ergebnisse:"
+#: ../../mod/connedit.php:447
+msgid "Soapbox"
+msgstr "Marktschreier"
 
-#: ../../mod/directory.php:215
-msgid "next page"
-msgstr "nächste Seite"
+#: ../../mod/connedit.php:448
+msgid "Full Sharing (typical social network permissions)"
+msgstr ""
 
-#: ../../mod/directory.php:215
-msgid "previous page"
-msgstr "vorige Seite"
+#: ../../mod/connedit.php:449
+msgid "Cautious Sharing "
+msgstr ""
 
-#: ../../mod/directory.php:222
-msgid "No entries (some entries may be hidden)."
-msgstr "Keine Einträge gefunden (einige könnten versteckt sein)."
+#: ../../mod/connedit.php:450
+msgid "Follow Only"
+msgstr "Nur Folgen"
 
-#: ../../mod/connections.php:189 ../../mod/connections.php:261
-msgid "Blocked"
-msgstr "Blockiert"
+#: ../../mod/connedit.php:451
+msgid "Individual Permissions"
+msgstr "Individuelle Zugriffseinstellungen"
 
-#: ../../mod/connections.php:194 ../../mod/connections.php:268
-msgid "Ignored"
-msgstr "Ignoriert"
+#: ../../mod/connedit.php:452
+msgid ""
+"Some permissions may be inherited from your channel <a "
+"href=\"settings\">privacy settings</a>, which have higher priority than "
+"individual settings. Changing those inherited settings on this page will "
+"have no effect."
+msgstr ""
 
-#: ../../mod/connections.php:199 ../../mod/connections.php:282
-msgid "Hidden"
-msgstr "Versteckt"
+#: ../../mod/connedit.php:453
+msgid "Advanced Permissions"
+msgstr "Erweiterte Zugriffsrechte"
 
-#: ../../mod/connections.php:204 ../../mod/connections.php:275
-msgid "Archived"
-msgstr "Archiviert"
+#: ../../mod/connedit.php:454
+msgid "Simple Permissions (select one and submit)"
+msgstr ""
 
-#: ../../mod/connections.php:215
-msgid "All"
-msgstr "Alle"
+#: ../../mod/connedit.php:458
+#, php-format
+msgid "Visit %s's profile - %s"
+msgstr "%s's Profil besuchen - %s"
 
-#: ../../mod/connections.php:239
-msgid "Suggest new connections"
-msgstr "Neue Verbindungen vorschlagen"
+#: ../../mod/connedit.php:459
+msgid "Block/Unblock contact"
+msgstr "Geblockt Status ein- / ausschalten"
 
-#: ../../mod/connections.php:245
-msgid "Show pending (new) connections"
-msgstr "Zeige schwebende (neue) Verbindungen"
+#: ../../mod/connedit.php:460
+msgid "Ignore contact"
+msgstr "Kontakt ignorieren"
 
-#: ../../mod/connections.php:248 ../../mod/profperm.php:134
-msgid "All Connections"
-msgstr "Alle Verbindungen"
+#: ../../mod/connedit.php:461
+msgid "Repair URL settings"
+msgstr "URL Einstellungen reparieren"
 
-#: ../../mod/connections.php:251
-msgid "Show all connections"
-msgstr "Zeige alle Verbindungen"
+#: ../../mod/connedit.php:462
+msgid "View conversations"
+msgstr "Unterhaltungen anzeigen"
 
-#: ../../mod/connections.php:254
-msgid "Unblocked"
-msgstr "Freigegeben"
+#: ../../mod/connedit.php:464
+msgid "Delete contact"
+msgstr "Kontakt löschen"
 
-#: ../../mod/connections.php:257
-msgid "Only show unblocked connections"
-msgstr "Zeige nur freigegebene Verbindungen"
+#: ../../mod/connedit.php:467
+msgid "Last update:"
+msgstr "Letzte Aktualisierung:"
 
-#: ../../mod/connections.php:264
-msgid "Only show blocked connections"
-msgstr "Zeige nur blockierte Verbindungen"
+#: ../../mod/connedit.php:469
+msgid "Update public posts"
+msgstr "Öffentliche Beiträge aktualisieren"
 
-#: ../../mod/connections.php:271
-msgid "Only show ignored connections"
-msgstr "Zeige nur ignorierte Verbindungen"
+#: ../../mod/connedit.php:471
+msgid "Update now"
+msgstr "Jetzt aktualisieren"
 
-#: ../../mod/connections.php:278
-msgid "Only show archived connections"
-msgstr "Zeige nur archivierte Verbindungen"
+#: ../../mod/connedit.php:477
+msgid "Currently blocked"
+msgstr "Derzeit blockiert"
 
-#: ../../mod/connections.php:285
-msgid "Only show hidden connections"
-msgstr "Zeige nur versteckte Verbindungen"
+#: ../../mod/connedit.php:478
+msgid "Currently ignored"
+msgstr "Derzeit ignoriert"
 
-#: ../../mod/connections.php:329
-#, php-format
-msgid "%1$s [%2$s]"
-msgstr "%1$s [%2$s]"
+#: ../../mod/connedit.php:479
+msgid "Currently archived"
+msgstr "Derzeit archiviert"
 
-#: ../../mod/connections.php:330
-msgid "Edit contact"
-msgstr "Kontakt bearbeiten"
+#: ../../mod/connedit.php:480
+msgid "Currently pending"
+msgstr "Derzeit anstehend"
 
-#: ../../mod/connections.php:353
-msgid "Search your connections"
-msgstr "Verbindungen durchsuchen"
+#: ../../mod/connedit.php:481
+msgid "Hide this contact from others"
+msgstr "Diese Verbindung vor den anderen verbergen."
 
-#: ../../mod/connections.php:354
-msgid "Finding: "
-msgstr "Ergebnisse:"
+#: ../../mod/connedit.php:481
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>können</strong> immer noch sichtbar sein"
 
 #: ../../mod/layouts.php:52
 msgid "Layout Help"
@@ -5338,6 +5278,11 @@ msgstr "Hilfe:"
 msgid "Not Found"
 msgstr "Nicht gefunden"
 
+#: ../../mod/help.php:71 ../../mod/page.php:83 ../../mod/display.php:100
+#: ../../index.php:226
+msgid "Page not found."
+msgstr "Seite nicht gefunden."
+
 #: ../../mod/rmagic.php:56
 msgid "Remote Authentication"
 msgstr "Entfernte Authentifizierung"
@@ -5350,6 +5295,10 @@ msgstr "Deine Kanal-Adresse (z. B. channel@example.com)"
 msgid "Authenticate"
 msgstr "Authentifizieren"
 
+#: ../../mod/page.php:35
+msgid "Invalid item."
+msgstr "Ungültiges Element."
+
 #: ../../mod/network.php:79
 msgid "No such group"
 msgstr "Gruppe existiert nicht"
@@ -5358,99 +5307,21 @@ msgstr "Gruppe existiert nicht"
 msgid "Search Results For:"
 msgstr "Suchergebnisse für:"
 
-#: ../../mod/network.php:172
-msgid "Collection is empty"
-msgstr "Sammlung ist leer"
-
-#: ../../mod/network.php:180
-msgid "Collection: "
-msgstr "Sammlung:"
-
-#: ../../mod/network.php:193
-msgid "Connection: "
-msgstr "Verbindung:"
-
-#: ../../mod/network.php:196
-msgid "Invalid connection."
-msgstr "Ungültige Verbindung."
-
-#: ../../mod/follow.php:25
-msgid "Channel added."
-msgstr "Kanal hinzugefügt."
-
-#: ../../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:256
-#, php-format
-msgid "Welcome %s. Remote authentication successful."
-msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich."
-
-#: ../../mod/dirsearch.php:21
-msgid "This site is not a directory server"
-msgstr "Diese Website ist kein Verzeichnis-Server"
-
-#: ../../mod/siteinfo.php:57
-#, php-format
-msgid "Version %s"
-msgstr "Version %s"
-
-#: ../../mod/siteinfo.php:76
-msgid "Installed plugins/addons/apps:"
-msgstr "Installierte Plugins/Addons/Apps"
-
-#: ../../mod/siteinfo.php:89
-msgid "No installed plugins/addons/apps"
-msgstr "Keine installierten Plugins/Addons/Apps"
-
-#: ../../mod/siteinfo.php:94
-msgid "Red"
-msgstr "Red"
-
-#: ../../mod/siteinfo.php:95
-msgid ""
-"This is a hub of the Red Matrix - a global cooperative network of "
-"decentralised privacy enhanced websites."
-msgstr "Dieser Server ist Teil der Red-Matrix – einem global vernetzten Verbund aus dezentralen Websites mit Rücksicht auf die Privatsphäre."
-
-#: ../../mod/siteinfo.php:98
-msgid "Running at web location"
-msgstr "Erreichbar unter der Web-Adresse"
-
-#: ../../mod/siteinfo.php:99
-msgid ""
-"Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more "
-"about the Red Matrix."
-msgstr "Besuche <a href=\"http://getzot.com\">GetZot.com</a> um mehr über die Red Matrix zu erfahren."
-
-#: ../../mod/siteinfo.php:100
-msgid "Bug reports and issues: please visit"
-msgstr "Probleme oder Fehler gefunden? Bitte besuche"
-
-#: ../../mod/siteinfo.php:103
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"redmatrix\" at "
-"librelist - dot com"
-msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an 'redmatrix' at librelist - dot - com"
-
-#: ../../mod/siteinfo.php:104
-msgid "Site Administrators"
-msgstr "Administratoren"
+#: ../../mod/network.php:172
+msgid "Collection is empty"
+msgstr "Sammlung ist leer"
 
-#: ../../mod/lockview.php:34
-msgid "Remote privacy information not available."
-msgstr "Entfernte Privatsphären Einstellungen sind nicht verfügbar."
+#: ../../mod/network.php:180
+msgid "Collection: "
+msgstr "Sammlung:"
 
-#: ../../mod/lockview.php:43
-msgid "Visible to:"
-msgstr "Sichtbar für:"
+#: ../../mod/network.php:193
+msgid "Connection: "
+msgstr "Verbindung:"
 
-#: ../../mod/magic.php:70
-msgid "Hub not found."
-msgstr "Server nicht gefunden."
+#: ../../mod/network.php:196
+msgid "Invalid connection."
+msgstr "Ungültige Verbindung."
 
 #: ../../mod/profiles.php:18 ../../mod/profiles.php:138
 #: ../../mod/profiles.php:168 ../../mod/profiles.php:463
@@ -5700,665 +5571,728 @@ msgstr "Profil-Dinge hinzufügen"
 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 "Kanal hinzufügen"
+#: ../../mod/follow.php:25
+msgid "Channel added."
+msgstr "Kanal hinzugefügt."
 
-#: ../../mod/new_channel.php:108
+#: ../../mod/post.php:226
 msgid ""
-"A channel is your own collection of related web pages. A channel can be used"
-" to hold social network profiles, blogs, conversation groups and forums, "
-"celebrity pages, and much more. You may create as many channels as your "
-"service provider allows."
-msgstr "Ein Kanal ist deine eigene Sammlung von verbundenen Webseiten. Ein Kanal kann genutzt werden, um 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."
+"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/new_channel.php:111
-msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "
-msgstr "Beispiele: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "
+#: ../../mod/post.php:256
+#, php-format
+msgid "Welcome %s. Remote authentication successful."
+msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich."
 
-#: ../../mod/new_channel.php:112
-msgid "Choose a short nickname"
-msgstr "Wähle einen kurzen Spitznahmen"
+#: ../../mod/dirsearch.php:21
+msgid "This site is not a directory server"
+msgstr "Diese Website ist kein Verzeichnis-Server"
 
-#: ../../mod/new_channel.php:113
-msgid ""
-"Your nickname will be used to create an easily remembered channel address "
-"(like an email address) which you can share with others."
-msgstr "Dein Spitzname wird verwendet, um eine einfach zu erinnernde Kanal-Adresse (ähnlich einer E-Mail Adresse) zu erzeugen, die Du mit anderen austauschen kannst."
+#: ../../mod/sources.php:32
+msgid "Failed to create source. No channel selected."
+msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt."
 
-#: ../../mod/new_channel.php:114
-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/sources.php:45
+msgid "Source created."
+msgstr "Quelle erstellt."
 
-#: ../../mod/filestorage.php:68
-msgid "Permission Denied."
-msgstr "Zugriff verweigert."
+#: ../../mod/sources.php:57
+msgid "Source updated."
+msgstr "Quelle aktualisiert."
 
-#: ../../mod/filestorage.php:85
-msgid "File not found."
-msgstr "Datei nicht gefunden"
+#: ../../mod/sources.php:82
+msgid "*"
+msgstr "*"
 
-#: ../../mod/filestorage.php:119
-msgid "Edit file permissions"
-msgstr "Dateiberechtigungen bearbeiten"
+#: ../../mod/sources.php:89
+msgid "Manage remote sources of content for your channel."
+msgstr "Entfernte Quellen von Inhalten deines Kanals verwalten."
 
-#: ../../mod/filestorage.php:126
-msgid "Include all files and sub folders"
-msgstr "Alle Dateien und Unterverzeichnisse einbinden"
+#: ../../mod/sources.php:90 ../../mod/sources.php:100
+msgid "New Source"
+msgstr "Neue Quelle"
 
-#: ../../mod/filestorage.php:127
-msgid "Return to file list"
-msgstr "Zurück zur Dateiliste"
+#: ../../mod/sources.php:101 ../../mod/sources.php:133
+msgid ""
+"Import all or selected content from the following channel into this channel "
+"and distribute it according to your channel settings."
+msgstr "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals."
 
-#: ../../mod/filestorage.php:129
-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/sources.php:102 ../../mod/sources.php:134
+msgid "Only import content with these words (one per line)"
+msgstr "Importiere ausschließlich Beiträge, die folgende Wörter (eines pro Zeile) enthalten"
 
-#: ../../mod/filestorage.php:130
-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/sources.php:102 ../../mod/sources.php:134
+msgid "Leave blank to import all public content"
+msgstr "Leer lassen um alle öffentlichen Beiträge zu importieren"
 
-#: ../../mod/filestorage.php:167
-msgid "Download"
-msgstr "Download"
+#: ../../mod/sources.php:103 ../../mod/sources.php:137
+#: ../../mod/new_channel.php:110
+msgid "Channel Name"
+msgstr "Name des Kanals"
 
-#: ../../mod/filestorage.php:173
-msgid "Used: "
-msgstr "Verwendet:"
+#: ../../mod/sources.php:123 ../../mod/sources.php:150
+msgid "Source not found."
+msgstr "Quelle nicht gefunden."
 
-#: ../../mod/filestorage.php:174
-msgid "[directory]"
-msgstr "[Verzeichnis]"
+#: ../../mod/sources.php:130
+msgid "Edit Source"
+msgstr "Quelle bearbeiten"
 
-#: ../../mod/filestorage.php:176
-msgid "Limit: "
-msgstr "Limit:"
+#: ../../mod/sources.php:131
+msgid "Delete Source"
+msgstr "Quelle löschen"
 
-#: ../../mod/lostpass.php:15
-msgid "No valid account found."
-msgstr "Kein gültiges Konto gefunden."
+#: ../../mod/sources.php:158
+msgid "Source removed"
+msgstr "Quelle gelöscht"
 
-#: ../../mod/lostpass.php:29
-msgid "Password reset request issued. Check your email."
-msgstr "Zurücksetzen des Passworts veranlasst. Rufe bitte Deine E-Mails ab."
+#: ../../mod/sources.php:160
+msgid "Unable to remove source."
+msgstr "Konnte die Quelle nicht löschen."
 
-#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102
-#, php-format
-msgid "Site Member (%s)"
-msgstr "Seiten Mitglied (%s)"
+#: ../../mod/lockview.php:34
+msgid "Remote privacy information not available."
+msgstr "Entfernte Privatsphären Einstellungen sind nicht verfügbar."
 
-#: ../../mod/lostpass.php:40
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Passwort Rücksetzung auf %s angefordert"
+#: ../../mod/lockview.php:43
+msgid "Visible to:"
+msgstr "Sichtbar für:"
 
-#: ../../mod/lostpass.php:63
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Die Anfrage konnte nicht verifiziert werden. (Es könnte sein, dass du vorher bereits eine Anfrage eingereicht hast.) Passwort Anforderung fehlgeschlagen."
+#: ../../mod/magic.php:70
+msgid "Hub not found."
+msgstr "Server nicht gefunden."
 
-#: ../../mod/lostpass.php:85 ../../boot.php:1431
-msgid "Password Reset"
-msgstr "Zurücksetzen des Kennworts"
+#: ../../mod/setup.php:161
+msgid "Red Matrix Server - Setup"
+msgstr "Red Matrix Server - Installation"
 
-#: ../../mod/lostpass.php:86
-msgid "Your password has been reset as requested."
-msgstr "Dein Passwort wurde wie angefordert neu erstellt."
+#: ../../mod/setup.php:167
+msgid "Could not connect to database."
+msgstr "Kann nicht mit der Datenbank verbinden."
 
-#: ../../mod/lostpass.php:87
-msgid "Your new password is"
-msgstr "Dein neues Passwort lautet"
+#: ../../mod/setup.php:171
+msgid ""
+"Could not connect to specified site URL. Possible SSL certificate or DNS "
+"issue."
+msgstr "Konnte die angegebene Webseiten URL nicht erreichen. Möglicherweise ein Problem mit dem SSL Zertifikat oder dem DNS."
 
-#: ../../mod/lostpass.php:88
-msgid "Save or copy your new password - and then"
-msgstr "Speichere oder kopiere dein neues Passwort - und dann"
+#: ../../mod/setup.php:176
+msgid "Could not create table."
+msgstr "Kann Tabelle nicht erstellen."
 
-#: ../../mod/lostpass.php:89
-msgid "click here to login"
-msgstr "Klicke hier, um dich anzumelden"
+#: ../../mod/setup.php:182
+msgid "Your site database has been installed."
+msgstr "Die Datenbank deiner Seite wurde installiert."
 
-#: ../../mod/lostpass.php:90
+#: ../../mod/setup.php:187
 msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Dein Passwort kann unter <em>Einstellungen</em> nach einer erfolgreichen Anmeldung geändert werden."
+"You may need to import the file \"install/database.sql\" manually using "
+"phpmyadmin or mysql."
+msgstr "Eventuell musst du die Datei \"install/database.sql\" händisch mit phpmyadmin oder mysql importieren."
 
-#: ../../mod/lostpass.php:107
-#, php-format
-msgid "Your password has changed at %s"
-msgstr "Auf %s wurde dein Passwort geändert"
+#: ../../mod/setup.php:188 ../../mod/setup.php:257 ../../mod/setup.php:609
+msgid "Please see the file \"install/INSTALL.txt\"."
+msgstr "Lies die Datei \"install/INSTALL.txt\"."
 
-#: ../../mod/lostpass.php:122
-msgid "Forgot your Password?"
-msgstr "Kennwort vergessen?"
+#: ../../mod/setup.php:254
+msgid "System check"
+msgstr "Systemprüfung"
 
-#: ../../mod/lostpass.php:123
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet."
+#: ../../mod/setup.php:259
+msgid "Check again"
+msgstr "Bitte nochmal prüfen"
 
-#: ../../mod/lostpass.php:124
-msgid "Email Address"
-msgstr "E-Mail Adresse"
+#: ../../mod/setup.php:281
+msgid "Database connection"
+msgstr "Datenbank Verbindung"
 
-#: ../../mod/lostpass.php:125
-msgid "Reset"
-msgstr "Zurücksetzen"
+#: ../../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/import.php:36
-msgid "Nothing to import."
-msgstr "Nichts zu importieren."
+#: ../../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/import.php:58
-msgid "Unable to download data from old server"
-msgstr "Daten können vom alten Server nicht heruntergeladen werden"
+#: ../../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/import.php:64
-msgid "Imported file is empty."
-msgstr "Die importierte Datei ist leer."
+#: ../../mod/setup.php:288
+msgid "Database Server Name"
+msgstr "Datenbank-Servername"
 
-#: ../../mod/import.php:88
-msgid ""
-"Cannot create a duplicate channel identifier on this system. Import failed."
-msgstr "Kann auf diesem System keinen duplizierten Kanal-Identifikator erzeugen. Import fehlgeschlagen."
+#: ../../mod/setup.php:288
+msgid "Default is localhost"
+msgstr "Standard ist localhost"
+
+#: ../../mod/setup.php:289
+msgid "Database Port"
+msgstr "Datenbank-Port"
 
-#: ../../mod/import.php:106
-msgid "Channel clone failed. Import failed."
-msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen."
+#: ../../mod/setup.php:289
+msgid "Communication port number - use 0 for default"
+msgstr "Port Nummer zur Kommunikation - verwende 0 für die Standardeinstellung:"
 
-#: ../../mod/import.php:116
-msgid "Cloned channel not found. Import failed."
-msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen."
+#: ../../mod/setup.php:290
+msgid "Database Login Name"
+msgstr "Datenbank-Benutzername"
 
-#: ../../mod/import.php:358
-msgid "Import completed."
-msgstr "Import abgeschlossen."
+#: ../../mod/setup.php:291
+msgid "Database Login Password"
+msgstr "Datenbank-Kennwort"
 
-#: ../../mod/import.php:371
-msgid "You must be logged in to use this feature."
-msgstr "Du musst angemeldet sein um diese Funktion zu nutzen."
+#: ../../mod/setup.php:292
+msgid "Database Name"
+msgstr "Datenbank-Name"
 
-#: ../../mod/import.php:376
-msgid "Import Channel"
-msgstr "Kanal importieren"
+#: ../../mod/setup.php:294 ../../mod/setup.php:336
+msgid "Site administrator email address"
+msgstr "E-Mail Adresse des Seiten-Administrators"
 
-#: ../../mod/import.php:377
+#: ../../mod/setup.php:294 ../../mod/setup.php:336
 msgid ""
-"Use this form to import an existing channel from a different server/hub. You"
-" may retrieve the channel identity from the old server/hub via the network "
-"or provide an export file. Only identity and connections/relationships will "
-"be imported. Importation of content is not yet available."
-msgstr "Verwende dieses Formular um einen existierenden Kanal von einem anderen Server/Hub zu importieren. Du kannst die Kanal-Identität vom alten Server/Hub über das Netzwerk erhalten oder über eine exportierte Sicherungskopie. Es werden ausschließlich die Identität und die Verbindungen/Beziehungen importiert. Das Importieren von Inhalten ist derzeit nicht möglich."
+"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/import.php:378
-msgid "File to Upload"
-msgstr "Hochzuladende Datei:"
+#: ../../mod/setup.php:295 ../../mod/setup.php:338
+msgid "Website URL"
+msgstr "Webseiten URL"
 
-#: ../../mod/import.php:379
-msgid "Or provide the old server/hub details"
-msgstr "Oder gib die Deteils deines alten Server/Hubs an"
+#: ../../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/import.php:380
-msgid "Your old identity address (xyz@example.com)"
-msgstr "Die alte Adresse der Identität (xyz@example.com)"
+#: ../../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/import.php:381
-msgid "Your old login email address"
-msgstr "Ihre alte Login E-Mail Adresse"
+#: ../../mod/setup.php:325
+msgid "Site settings"
+msgstr "Seiteneinstellungen"
 
-#: ../../mod/import.php:382
-msgid "Your old login password"
-msgstr "Ihr altes Login Kennwort"
+#: ../../mod/setup.php:384
+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/import.php:383
+#: ../../mod/setup.php:385
 msgid ""
-"For either option, please choose whether to make this hub your new primary "
-"address, or whether your old location should continue this role. You will be"
-" able to post from either location, but only one can be marked as the "
-"primary location for files, photos, and media."
-msgstr "Egal welche Option du wählst, bitte lege fest, ob dieser Hub deine neue primäre Adresse sein soll oder ob dein alter Hub diese Rolle weiterhin wahrnimmt. Du kannst von beiden Orten aus neue Dinge posten, aber nur einer kann die primäre Adresse deiner Dateien, Fotos und anderen Mediendaten sein."
-
-#: ../../mod/import.php:384
-msgid "Make this hub my primary location"
-msgstr "Dieser Hub ist mein primärer Server."
-
-#: ../../mod/manage.php:63
-#, php-format
-msgid "You have created %1$.0f of %2$.0f allowed channels."
-msgstr "Du hast %1$.0f von %2$.0f erlaubten Kanälen eingerichtet."
+"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/manage.php:71
-msgid "Create a new channel"
-msgstr "Erzeuge neues Kanal"
+#: ../../mod/setup.php:389
+msgid "PHP executable path"
+msgstr "PHP Pfad zu ausführbarer Datei"
 
-#: ../../mod/manage.php:76
-msgid "Channel Manager"
-msgstr "Kanal-Manager"
+#: ../../mod/setup.php:389
+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/manage.php:77
-msgid "Current Channel"
-msgstr "Aktueller Kanal"
+#: ../../mod/setup.php:394
+msgid "Command line PHP"
+msgstr "PHP Befehlszeile"
 
-#: ../../mod/manage.php:79
-msgid "Attach to one of your channels by selecting it."
-msgstr "Wähle einen deiner Kanäle aus um ihn zu verwenden."
+#: ../../mod/setup.php:403
+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/manage.php:80
-msgid "Default Channel"
-msgstr "Standard Kanal"
+#: ../../mod/setup.php:404
+msgid "This is required for message delivery to work."
+msgstr "Dies wird benötigt, damit die Auslieferung von Nachrichten funktioniert."
 
-#: ../../mod/manage.php:81
-msgid "Make Default"
-msgstr "Zum Standard machen"
+#: ../../mod/setup.php:406
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../mod/vote.php:97
-msgid "Total votes"
-msgstr "Stimmen gesamt"
+#: ../../mod/setup.php:427
+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/vote.php:98
-msgid "Average Rating"
-msgstr "durchschnittliche Bewertung"
+#: ../../mod/setup.php:428
+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/match.php:16
-msgid "Profile Match"
-msgstr "Profil-Übereinstimmungen"
+#: ../../mod/setup.php:430
+msgid "Generate encryption keys"
+msgstr "Verschlüsselungsschlüssel  generieren"
 
-#: ../../mod/match.php:24
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Keine Schlüsselbegriffe für den Abgleich gefunden. Bitte füge Schlüsselbegriffe zu deinem Standardprofil hinzu."
+#: ../../mod/setup.php:437
+msgid "libCurl PHP module"
+msgstr "libCurl PHP Modul"
 
-#: ../../mod/match.php:61
-msgid "is interested in:"
-msgstr "interessiert sich für:"
+#: ../../mod/setup.php:438
+msgid "GD graphics PHP module"
+msgstr "GD Graphik PHP Modul"
 
-#: ../../mod/match.php:69
-msgid "No matches"
-msgstr "Keine Übereinstimmungen"
+#: ../../mod/setup.php:439
+msgid "OpenSSL PHP module"
+msgstr "OpenSSL PHP Modul"
 
-#: ../../mod/zfinger.php:23
-msgid "invalid target signature"
-msgstr "Ungültige Signatur des Ziels"
+#: ../../mod/setup.php:440
+msgid "mysqli PHP module"
+msgstr "mysqli PHP Modul"
 
-#: ../../mod/settings.php:71
-msgid "Name is required"
-msgstr "Name wird benötigt"
+#: ../../mod/setup.php:441
+msgid "mb_string PHP module"
+msgstr "mb_string PHP Modul"
 
-#: ../../mod/settings.php:75
-msgid "Key and Secret are required"
-msgstr "Schlüssel und Geheimnis werden benötigt"
+#: ../../mod/setup.php:442
+msgid "mcrypt PHP module"
+msgstr "mcrypt PHP Modul"
 
-#: ../../mod/settings.php:79 ../../mod/settings.php:535
-msgid "Update"
-msgstr "Update"
+#: ../../mod/setup.php:447 ../../mod/setup.php:449
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite Modul"
 
-#: ../../mod/settings.php:192
-msgid "Passwords do not match. Password unchanged."
-msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert."
+#: ../../mod/setup.php:447
+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/settings.php:196
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert."
+#: ../../mod/setup.php:453 ../../mod/setup.php:456
+msgid "proc_open"
+msgstr "proc_open"
 
-#: ../../mod/settings.php:209
-msgid "Password changed."
-msgstr "Kennwort geändert."
+#: ../../mod/setup.php:453
+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/settings.php:211
-msgid "Password update failed. Please try again."
-msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal."
+#: ../../mod/setup.php:461
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Fehler: das PHP Modul libCURL wird benütigt ist aber nicht installiert."
 
-#: ../../mod/settings.php:225
-msgid "Not valid email."
-msgstr "Keine gültige E-Mail Adresse."
+#: ../../mod/setup.php:465
+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/settings.php:228
-msgid "Protected email address. Cannot change to that email."
-msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden."
+#: ../../mod/setup.php:469
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Fehler: das OpenSSL PHP Modul wird benötigt ist aber nicht installiert."
 
-#: ../../mod/settings.php:237
-msgid "System failure storing new email. Please try again."
-msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal."
+#: ../../mod/setup.php:473
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Fehler: das PHP Modul mysqli wird benötigt ist aber nicht installiert."
 
-#: ../../mod/settings.php:437
-msgid "Settings updated."
-msgstr "Einstellungen aktualisiert."
+#: ../../mod/setup.php:477
+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/settings.php:508 ../../mod/settings.php:534
-#: ../../mod/settings.php:570
-msgid "Add application"
-msgstr "Anwendung hinzufügen"
+#: ../../mod/setup.php:481
+msgid "Error: mcrypt PHP module required but not installed."
+msgstr "Fehler: das PHP Modul mcrypt wird benötigt ist aber nicht installiert."
 
-#: ../../mod/settings.php:511 ../../mod/settings.php:537
-msgid "Name"
-msgstr "Name"
+#: ../../mod/setup.php:497
+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/settings.php:511
-msgid "Name of application"
-msgstr "Name der Anwendung"
+#: ../../mod/setup.php:498
+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/settings.php:512 ../../mod/settings.php:538
-msgid "Consumer Key"
-msgstr "Consumer Key"
+#: ../../mod/setup.php:499
+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/settings.php:512 ../../mod/settings.php:513
-msgid "Automatically generated - change if desired. Max length 20"
-msgstr "Automatisch erzeugt - ändern falls erwünscht. Maximale Länge 20"
+#: ../../mod/setup.php:500
+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/settings.php:513 ../../mod/settings.php:539
-msgid "Consumer Secret"
-msgstr "Consumer Secret"
+#: ../../mod/setup.php:503
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php ist beschreibbar"
 
-#: ../../mod/settings.php:514 ../../mod/settings.php:540
-msgid "Redirect"
-msgstr "Umleitung"
+#: ../../mod/setup.php:513
+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/settings.php:514
+#: ../../mod/setup.php:514
 msgid ""
-"Redirect URI - leave blank unless your application specifically requires "
-"this"
-msgstr "Umleitungs-URl - lasse dies frei außer deine Anwendung erfordert dies explizit"
+"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/settings.php:515 ../../mod/settings.php:541
-msgid "Icon url"
-msgstr "Symbol-URL"
+#: ../../mod/setup.php:515 ../../mod/setup.php:533
+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/settings.php:515
-msgid "Optional"
-msgstr "Optional"
+#: ../../mod/setup.php:516
+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/settings.php:526
-msgid "You can't edit this application."
-msgstr "Diese Anwendung kann nicht bearbeitet werden."
+#: ../../mod/setup.php:519
+msgid "view/tpl/smarty3 is writable"
+msgstr "view/tpl/smarty3 ist beschreibbar"
 
-#: ../../mod/settings.php:569
-msgid "Connected Apps"
-msgstr "Verbundene Apps"
+#: ../../mod/setup.php:532
+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/settings.php:573
-msgid "Client key starts with"
-msgstr "Client key beginnt mit"
+#: ../../mod/setup.php:536
+msgid "store is writable"
+msgstr "store ist schreibbar"
 
-#: ../../mod/settings.php:574
-msgid "No name"
-msgstr "Kein Name"
+#: ../../mod/setup.php:551
+msgid "SSL certificate validation"
+msgstr "SSL Zertifikatverifizierung"
 
-#: ../../mod/settings.php:575
-msgid "Remove authorization"
-msgstr "Authorisierung aufheben"
+#: ../../mod/setup.php:551
+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/settings.php:586
-msgid "No feature settings configured"
-msgstr "Keine Funktions-Einstellungen konfiguriert"
+#: ../../mod/setup.php:558
+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/settings.php:594
-msgid "Feature Settings"
-msgstr "Funktions-Einstellungen"
+#: ../../mod/setup.php:560
+msgid "Url rewrite is working"
+msgstr "Url rewrite funktioniert"
 
-#: ../../mod/settings.php:617
-msgid "Account Settings"
-msgstr "Konto-Einstellungen"
+#: ../../mod/setup.php:570
+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/settings.php:618
-msgid "Password Settings"
-msgstr "Kennwort-Einstellungen"
+#: ../../mod/setup.php:594
+msgid "Errors encountered creating database tables."
+msgstr "Fehler während des Anlegens der Datenbank Tabellen aufgetreten."
 
-#: ../../mod/settings.php:619
-msgid "New Password:"
-msgstr "Neues Passwort:"
+#: ../../mod/setup.php:607
+msgid "<h1>What next</h1>"
+msgstr "<h1>Was als Nächstes</h1>"
 
-#: ../../mod/settings.php:620
-msgid "Confirm:"
-msgstr "Bestätigen:"
+#: ../../mod/setup.php:608
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "WICHTIG: Du musst die geplanten Aufgaben für den Poller [manuell] einrichten."
 
-#: ../../mod/settings.php:620
-msgid "Leave password fields blank unless changing"
-msgstr "Lasse die Passwort -Felder leer außer du möchtest das Passwort ändern"
+#: ../../mod/siteinfo.php:57
+#, php-format
+msgid "Version %s"
+msgstr "Version %s"
 
-#: ../../mod/settings.php:622 ../../mod/settings.php:917
-msgid "Email Address:"
-msgstr "Email Adresse:"
+#: ../../mod/siteinfo.php:76
+msgid "Installed plugins/addons/apps:"
+msgstr "Installierte Plugins/Addons/Apps"
 
-#: ../../mod/settings.php:623
-msgid "Remove Account"
-msgstr "Konto entfernen"
+#: ../../mod/siteinfo.php:89
+msgid "No installed plugins/addons/apps"
+msgstr "Keine installierten Plugins/Addons/Apps"
 
-#: ../../mod/settings.php:624
-msgid "Warning: This action is permanent and cannot be reversed."
-msgstr "Achtung: Diese Aktion ist permanent und kann nicht rückgänging gemacht werden."
+#: ../../mod/siteinfo.php:109
+msgid "Red"
+msgstr "Red"
 
-#: ../../mod/settings.php:640
-msgid "Off"
-msgstr "Aus"
+#: ../../mod/siteinfo.php:110
+msgid ""
+"This is a hub of the Red Matrix - a global cooperative network of "
+"decentralised privacy enhanced websites."
+msgstr "Dieser Server ist Teil der Red-Matrix – einem global vernetzten Verbund aus dezentralen Websites mit Rücksicht auf die Privatsphäre."
 
-#: ../../mod/settings.php:640
-msgid "On"
-msgstr "An"
+#: ../../mod/siteinfo.php:113
+msgid "Running at web location"
+msgstr "Erreichbar unter der Web-Adresse"
 
-#: ../../mod/settings.php:647
-msgid "Additional Features"
-msgstr "Zusätzliche Funktionen"
+#: ../../mod/siteinfo.php:114
+msgid ""
+"Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more "
+"about the Red Matrix."
+msgstr "Besuche <a href=\"http://getzot.com\">GetZot.com</a> um mehr über die Red Matrix zu erfahren."
 
-#: ../../mod/settings.php:672
-msgid "Connector Settings"
-msgstr "Connector-Einstellungen"
+#: ../../mod/siteinfo.php:115
+msgid "Bug reports and issues: please visit"
+msgstr "Probleme oder Fehler gefunden? Bitte besuche"
 
-#: ../../mod/settings.php:742
-msgid "Display Settings"
-msgstr "Anzeige-Einstellungen"
+#: ../../mod/siteinfo.php:118
+msgid ""
+"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot "
+"com"
+msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"
 
-#: ../../mod/settings.php:748
-msgid "Display Theme:"
-msgstr "Anzeige Theme:"
+#: ../../mod/siteinfo.php:120
+msgid "Site Administrators"
+msgstr "Administratoren"
 
-#: ../../mod/settings.php:749
-msgid "Mobile Theme:"
-msgstr "Mobile Theme:"
+#: ../../mod/new_channel.php:107
+msgid "Add a Channel"
+msgstr "Kanal hinzufügen"
 
-#: ../../mod/settings.php:750
-msgid "Update browser every xx seconds"
-msgstr "Browser alle xx Sekunden aktualisieren"
+#: ../../mod/new_channel.php:108
+msgid ""
+"A channel is your own collection of related web pages. A channel can be used"
+" to hold social network profiles, blogs, conversation groups and forums, "
+"celebrity pages, and much more. You may create as many channels as your "
+"service provider allows."
+msgstr "Ein Kanal ist deine eigene Sammlung von verbundenen Webseiten. Ein Kanal kann genutzt werden, um 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."
 
-#: ../../mod/settings.php:750
-msgid "Minimum of 10 seconds, no maximum"
-msgstr "Minimum von 10 Sekunden, kein Maximum"
+#: ../../mod/new_channel.php:111
+msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "
+msgstr "Beispiele: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "
 
-#: ../../mod/settings.php:751
-msgid "Maximum number of conversations to load at any time:"
-msgstr "Maximale Anzahl von Unterhaltungen die gleichzeitig geladen werden sollen:"
+#: ../../mod/new_channel.php:112
+msgid "Choose a short nickname"
+msgstr "Wähle einen kurzen Spitznahmen"
 
-#: ../../mod/settings.php:751
-msgid "Maximum of 100 items"
-msgstr "Maximum von 100 Beiträgen"
+#: ../../mod/new_channel.php:113
+msgid ""
+"Your nickname will be used to create an easily remembered channel address "
+"(like an email address) which you can share with others."
+msgstr "Dein Spitzname wird verwendet, um eine einfach zu erinnernde Kanal-Adresse (ähnlich einer E-Mail Adresse) zu erzeugen, die Du mit anderen austauschen kannst."
 
-#: ../../mod/settings.php:752
-msgid "Don't show emoticons"
-msgstr "Emoticons nicht zeigen"
+#: ../../mod/new_channel.php:114
+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/settings.php:788
-msgid "Nobody except yourself"
-msgstr "Niemand außer du selbst"
+#: ../../mod/lostpass.php:15
+msgid "No valid account found."
+msgstr "Kein gültiges Konto gefunden."
 
-#: ../../mod/settings.php:789
-msgid "Only those you specifically allow"
-msgstr "Nur die, denen du es explizit erlaubst"
+#: ../../mod/lostpass.php:29
+msgid "Password reset request issued. Check your email."
+msgstr "Zurücksetzen des Passworts veranlasst. Rufe bitte Deine E-Mails ab."
 
-#: ../../mod/settings.php:790
-msgid "Anybody in your address book"
-msgstr "Jeder aus Ihrem Adressbuch"
+#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102
+#, php-format
+msgid "Site Member (%s)"
+msgstr "Seiten Mitglied (%s)"
 
-#: ../../mod/settings.php:791
-msgid "Anybody on this website"
-msgstr "Jeder auf dieser Website"
+#: ../../mod/lostpass.php:40
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Passwort Rücksetzung auf %s angefordert"
 
-#: ../../mod/settings.php:792
-msgid "Anybody in this network"
-msgstr "Jeder in diesem Netzwerk"
+#: ../../mod/lostpass.php:63
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Die Anfrage konnte nicht verifiziert werden. (Es könnte sein, dass du vorher bereits eine Anfrage eingereicht hast.) Passwort Anforderung fehlgeschlagen."
 
-#: ../../mod/settings.php:793
-msgid "Anybody on the internet"
-msgstr "Jeder im Internet"
+#: ../../mod/lostpass.php:85 ../../boot.php:1434
+msgid "Password Reset"
+msgstr "Zurücksetzen des Kennworts"
 
-#: ../../mod/settings.php:870
-msgid "Publish your default profile in the network directory"
-msgstr "Veröffentliche dein Standard-Profil im Netzwerk-Verzeichnis"
+#: ../../mod/lostpass.php:86
+msgid "Your password has been reset as requested."
+msgstr "Dein Passwort wurde wie angefordert neu erstellt."
 
-#: ../../mod/settings.php:875
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
+#: ../../mod/lostpass.php:87
+msgid "Your new password is"
+msgstr "Dein neues Passwort lautet"
 
-#: ../../mod/settings.php:879 ../../mod/profile_photo.php:288
-msgid "or"
-msgstr "oder"
+#: ../../mod/lostpass.php:88
+msgid "Save or copy your new password - and then"
+msgstr "Speichere oder kopiere dein neues Passwort - und dann"
 
-#: ../../mod/settings.php:884
-msgid "Your channel address is"
-msgstr "Deine Kanal-Adresse lautet"
+#: ../../mod/lostpass.php:89
+msgid "click here to login"
+msgstr "Klicke hier, um dich anzumelden"
 
-#: ../../mod/settings.php:906
-msgid "Channel Settings"
-msgstr "Kanal-Einstellungen"
+#: ../../mod/lostpass.php:90
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Dein Passwort kann unter <em>Einstellungen</em> nach einer erfolgreichen Anmeldung geändert werden."
 
-#: ../../mod/settings.php:915
-msgid "Basic Settings"
-msgstr "Grundeinstellungen"
+#: ../../mod/lostpass.php:107
+#, php-format
+msgid "Your password has changed at %s"
+msgstr "Auf %s wurde dein Passwort geändert"
 
-#: ../../mod/settings.php:918
-msgid "Your Timezone:"
-msgstr "Ihre Zeitzone:"
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
+msgstr "Kennwort vergessen?"
 
-#: ../../mod/settings.php:919
-msgid "Default Post Location:"
-msgstr "Standardstandort:"
+#: ../../mod/lostpass.php:123
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet."
 
-#: ../../mod/settings.php:920
-msgid "Use Browser Location:"
-msgstr "Standort des Browsers verwenden:"
+#: ../../mod/lostpass.php:124
+msgid "Email Address"
+msgstr "E-Mail Adresse"
 
-#: ../../mod/settings.php:922
-msgid "Adult Content"
-msgstr "Nicht Jugendfreie-Inhalte"
+#: ../../mod/lostpass.php:125
+msgid "Reset"
+msgstr "Zurücksetzen"
 
-#: ../../mod/settings.php:922
-msgid "This channel publishes adult content."
-msgstr "Dieser Kanal veröffentlicht nicht Jugendfreie-Inhalte"
+#: ../../mod/import.php:36
+msgid "Nothing to import."
+msgstr "Nichts zu importieren."
 
-#: ../../mod/settings.php:924
-msgid "Security and Privacy Settings"
-msgstr "Sicherheits- und Datenschutz-Einstellungen"
+#: ../../mod/import.php:58
+msgid "Unable to download data from old server"
+msgstr "Daten können vom alten Server nicht heruntergeladen werden"
 
-#: ../../mod/settings.php:926
-msgid "Hide my online presence"
-msgstr "Meine Online-Präsenz verbergen"
+#: ../../mod/import.php:64
+msgid "Imported file is empty."
+msgstr "Die importierte Datei ist leer."
 
-#: ../../mod/settings.php:926
-msgid "Prevents showing if you are available for chat"
-msgstr "Verhindert es als für Chats verfügbar angezeigt zu werden"
+#: ../../mod/import.php:88
+msgid ""
+"Cannot create a duplicate channel identifier on this system. Import failed."
+msgstr "Kann auf diesem System keinen duplizierten Kanal-Identifikator erzeugen. Import fehlgeschlagen."
 
-#: ../../mod/settings.php:928
-msgid "Quick Privacy Settings:"
-msgstr "Schnelle Datenschutz-Einstellungen:"
+#: ../../mod/import.php:106
+msgid "Channel clone failed. Import failed."
+msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen."
 
-#: ../../mod/settings.php:929
-msgid "Very Public - extremely permissive"
-msgstr "Sehr offen - extrem freizügig"
+#: ../../mod/import.php:116
+msgid "Cloned channel not found. Import failed."
+msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen."
 
-#: ../../mod/settings.php:930
-msgid "Typical - default public, privacy when desired"
-msgstr "Typisch - Standard öffentlich, Privatheit wenn gewünscht"
+#: ../../mod/import.php:358
+msgid "Import completed."
+msgstr "Import abgeschlossen."
 
-#: ../../mod/settings.php:931
-msgid "Private - default private, rarely open or public"
-msgstr "Privat - Standard privat, selten offen oder öffentlich"
+#: ../../mod/import.php:371
+msgid "You must be logged in to use this feature."
+msgstr "Du musst angemeldet sein um diese Funktion zu nutzen."
 
-#: ../../mod/settings.php:932
-msgid "Blocked - default blocked to/from everybody"
-msgstr "Geschlossen - Standard zu und von jedem geblockt"
+#: ../../mod/import.php:376
+msgid "Import Channel"
+msgstr "Kanal importieren"
 
-#: ../../mod/settings.php:935
-msgid "Maximum Friend Requests/Day:"
-msgstr "Maximale Kontaktanfragen pro Tag:"
+#: ../../mod/import.php:377
+msgid ""
+"Use this form to import an existing channel from a different server/hub. You"
+" may retrieve the channel identity from the old server/hub via the network "
+"or provide an export file. Only identity and connections/relationships will "
+"be imported. Importation of content is not yet available."
+msgstr "Verwende dieses Formular um einen existierenden Kanal von einem anderen Server/Hub zu importieren. Du kannst die Kanal-Identität vom alten Server/Hub über das Netzwerk erhalten oder über eine exportierte Sicherungskopie. Es werden ausschließlich die Identität und die Verbindungen/Beziehungen importiert. Das Importieren von Inhalten ist derzeit nicht möglich."
 
-#: ../../mod/settings.php:935
-msgid "May reduce spam activity"
-msgstr "Kann die Spam-Aktivität verringern"
+#: ../../mod/import.php:378
+msgid "File to Upload"
+msgstr "Hochzuladende Datei:"
 
-#: ../../mod/settings.php:936
-msgid "Default Post Permissions"
-msgstr "Beitragszugriffrechte Standardeinstellungen"
+#: ../../mod/import.php:379
+msgid "Or provide the old server/hub details"
+msgstr "Oder gib die Deteils deines alten Server/Hubs an"
 
-#: ../../mod/settings.php:948
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:"
+#: ../../mod/import.php:380
+msgid "Your old identity address (xyz@example.com)"
+msgstr "Die alte Adresse der Identität (xyz@example.com)"
 
-#: ../../mod/settings.php:948
-msgid "Useful to reduce spamming"
-msgstr "Nützlich um Spam zu verringern"
+#: ../../mod/import.php:381
+msgid "Your old login email address"
+msgstr "Ihre alte Login E-Mail Adresse"
 
-#: ../../mod/settings.php:951
-msgid "Notification Settings"
-msgstr "Benachrichtigungs-Einstellungen"
+#: ../../mod/import.php:382
+msgid "Your old login password"
+msgstr "Ihr altes Login Kennwort"
 
-#: ../../mod/settings.php:952
-msgid "By default post a status message when:"
-msgstr "Sende standardmäßig Status-Nachrichten wenn:"
+#: ../../mod/import.php:383
+msgid ""
+"For either option, please choose whether to make this hub your new primary "
+"address, or whether your old location should continue this role. You will be"
+" able to post from either location, but only one can be marked as the "
+"primary location for files, photos, and media."
+msgstr "Egal welche Option du wählst, bitte lege fest, ob dieser Hub deine neue primäre Adresse sein soll oder ob dein alter Hub diese Rolle weiterhin wahrnimmt. Du kannst von beiden Orten aus neue Dinge posten, aber nur einer kann die primäre Adresse deiner Dateien, Fotos und anderen Mediendaten sein."
 
-#: ../../mod/settings.php:953
-msgid "accepting a friend request"
-msgstr "einer Kontaktanfrage stattgegeben wurde"
+#: ../../mod/import.php:384
+msgid "Make this hub my primary location"
+msgstr "Dieser Hub ist mein primärer Server."
 
-#: ../../mod/settings.php:954
-msgid "joining a forum/community"
-msgstr "ein Forum beigetreten wurde"
+#: ../../mod/manage.php:63
+#, php-format
+msgid "You have created %1$.0f of %2$.0f allowed channels."
+msgstr "Du hast %1$.0f von %2$.0f erlaubten Kanälen eingerichtet."
 
-#: ../../mod/settings.php:955
-msgid "making an <em>interesting</em> profile change"
-msgstr "eine <em>interessante</em> Änderung am Profil vorgenommen wurde"
+#: ../../mod/manage.php:71
+msgid "Create a new channel"
+msgstr "Erzeuge neues Kanal"
 
-#: ../../mod/settings.php:956
-msgid "Send a notification email when:"
-msgstr "Eine Email Benachrichtigung senden wenn:"
+#: ../../mod/manage.php:76
+msgid "Channel Manager"
+msgstr "Kanal-Manager"
 
-#: ../../mod/settings.php:957
-msgid "You receive an introduction"
-msgstr "Du eine Vorstellung erhältst"
+#: ../../mod/manage.php:77
+msgid "Current Channel"
+msgstr "Aktueller Kanal"
 
-#: ../../mod/settings.php:958
-msgid "Your introductions are confirmed"
-msgstr "Deine Vorstellung bestätigt wurde."
+#: ../../mod/manage.php:79
+msgid "Attach to one of your channels by selecting it."
+msgstr "Wähle einen deiner Kanäle aus um ihn zu verwenden."
 
-#: ../../mod/settings.php:959
-msgid "Someone writes on your profile wall"
-msgstr "Jemand auf deine Pinnwand schreibt"
+#: ../../mod/manage.php:80
+msgid "Default Channel"
+msgstr "Standard Kanal"
 
-#: ../../mod/settings.php:960
-msgid "Someone writes a followup comment"
-msgstr "Jemand einen Beitrag kommentiert"
+#: ../../mod/manage.php:81
+msgid "Make Default"
+msgstr "Zum Standard machen"
 
-#: ../../mod/settings.php:961
-msgid "You receive a private message"
-msgstr "Du eine private Nachricht erhältst"
+#: ../../mod/vote.php:97
+msgid "Total votes"
+msgstr "Stimmen gesamt"
 
-#: ../../mod/settings.php:962
-msgid "You receive a friend suggestion"
-msgstr "Du einen Kontaktvorschlag erhältst"
+#: ../../mod/vote.php:98
+msgid "Average Rating"
+msgstr "durchschnittliche Bewertung"
 
-#: ../../mod/settings.php:963
-msgid "You are tagged in a post"
-msgstr "Du wurdest in einem Beitrag getaggt"
+#: ../../mod/match.php:16
+msgid "Profile Match"
+msgstr "Profil-Übereinstimmungen"
 
-#: ../../mod/settings.php:964
-msgid "You are poked/prodded/etc. in a post"
-msgstr "Du in einer Nachricht angestupst/geknufft/o.ä. wirst"
+#: ../../mod/match.php:24
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Keine Schlüsselbegriffe für den Abgleich gefunden. Bitte füge Schlüsselbegriffe zu deinem Standardprofil hinzu."
 
-#: ../../mod/settings.php:967
-msgid "Advanced Account/Page Type Settings"
-msgstr "Erweiterte Account / Seiten Arten Einstellungen"
+#: ../../mod/match.php:61
+msgid "is interested in:"
+msgstr "interessiert sich für:"
 
-#: ../../mod/settings.php:968
-msgid "Change the behaviour of this account for special situations"
-msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen"
+#: ../../mod/match.php:69
+msgid "No matches"
+msgstr "Keine Übereinstimmungen"
+
+#: ../../mod/zfinger.php:23
+msgid "invalid target signature"
+msgstr "Ungültige Signatur des Ziels"
 
 #: ../../mod/mail.php:33
 msgid "Unable to lookup recipient."
@@ -6434,11 +6368,6 @@ msgstr "Keine sichere Kommunikation verfügbar. <strong>Eventuell</strong> kanns
 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"
-
 #: ../../mod/editlayout.php:72
 msgid "Edit Layout"
 msgstr "Layout bearbeiten"
@@ -6447,21 +6376,6 @@ msgstr "Layout bearbeiten"
 msgid "Delete layout?"
 msgstr "Layout löschen?"
 
-#: ../../mod/editlayout.php:110 ../../mod/editpost.php:107
-#: ../../mod/editwebpage.php:148 ../../mod/editblock.php:124
-msgid "Insert YouTube video"
-msgstr "YouTube-Video einfügen"
-
-#: ../../mod/editlayout.php:111 ../../mod/editpost.php:108
-#: ../../mod/editwebpage.php:149 ../../mod/editblock.php:125
-msgid "Insert Vorbis [.ogg] video"
-msgstr "Vorbis [.ogg]-Video einfügen"
-
-#: ../../mod/editlayout.php:112 ../../mod/editpost.php:109
-#: ../../mod/editwebpage.php:150 ../../mod/editblock.php:126
-msgid "Insert Vorbis [.ogg] audio"
-msgstr "Vorbis [.ogg]-Audio einfügen"
-
 #: ../../mod/editlayout.php:147
 msgid "Delete Layout"
 msgstr "Layout löschen"
@@ -6542,13 +6456,78 @@ msgstr "Hochladen des Bilds fehlgeschlagen."
 msgid "Image size reduction [%s] failed."
 msgstr "Reduzierung der Bildgröße [%s] fehlgeschlagen."
 
-#: ../../mod/editpost.php:31
-msgid "Item is not editable"
-msgstr "Element kann nicht bearbeitet werden."
+#: ../../mod/connections.php:191 ../../mod/connections.php:263
+msgid "Blocked"
+msgstr "Blockiert"
 
-#: ../../mod/editpost.php:53
-msgid "Delete item?"
-msgstr "Eintrag löschen?"
+#: ../../mod/connections.php:196 ../../mod/connections.php:270
+msgid "Ignored"
+msgstr "Ignoriert"
+
+#: ../../mod/connections.php:201 ../../mod/connections.php:284
+msgid "Hidden"
+msgstr "Versteckt"
+
+#: ../../mod/connections.php:206 ../../mod/connections.php:277
+msgid "Archived"
+msgstr "Archiviert"
+
+#: ../../mod/connections.php:217
+msgid "All"
+msgstr "Alle"
+
+#: ../../mod/connections.php:241
+msgid "Suggest new connections"
+msgstr "Neue Verbindungen vorschlagen"
+
+#: ../../mod/connections.php:247
+msgid "Show pending (new) connections"
+msgstr "Zeige schwebende (neue) Verbindungen"
+
+#: ../../mod/connections.php:253
+msgid "Show all connections"
+msgstr "Zeige alle Verbindungen"
+
+#: ../../mod/connections.php:256
+msgid "Unblocked"
+msgstr "Freigegeben"
+
+#: ../../mod/connections.php:259
+msgid "Only show unblocked connections"
+msgstr "Zeige nur freigegebene Verbindungen"
+
+#: ../../mod/connections.php:266
+msgid "Only show blocked connections"
+msgstr "Zeige nur blockierte Verbindungen"
+
+#: ../../mod/connections.php:273
+msgid "Only show ignored connections"
+msgstr "Zeige nur ignorierte Verbindungen"
+
+#: ../../mod/connections.php:280
+msgid "Only show archived connections"
+msgstr "Zeige nur archivierte Verbindungen"
+
+#: ../../mod/connections.php:287
+msgid "Only show hidden connections"
+msgstr "Zeige nur versteckte Verbindungen"
+
+#: ../../mod/connections.php:331
+#, php-format
+msgid "%1$s [%2$s]"
+msgstr "%1$s [%2$s]"
+
+#: ../../mod/connections.php:332
+msgid "Edit contact"
+msgstr "Kontakt bearbeiten"
+
+#: ../../mod/connections.php:355
+msgid "Search your connections"
+msgstr "Verbindungen durchsuchen"
+
+#: ../../mod/connections.php:356
+msgid "Finding: "
+msgstr "Ergebnisse:"
 
 #: ../../mod/notifications.php:26
 msgid "Invalid request identifier."
@@ -6614,10 +6593,6 @@ 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:1075
-msgid "Wall Photos"
-msgstr "Wall Fotos"
-
 #: ../../mod/channel.php:85
 msgid "Insufficient permissions.  Request redirected to profile page."
 msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."
@@ -6663,21 +6638,78 @@ msgstr "Block löschen?"
 msgid "Delete Block"
 msgstr "Block löschen"
 
-#: ../../mod/profperm.php:29 ../../mod/profperm.php:58
-msgid "Invalid profile identifier."
-msgstr "Ungültiger Profil Identifikator"
+#: ../../mod/dirprofile.php:114
+msgid "Status: "
+msgstr "Status:"
 
-#: ../../mod/profperm.php:105
-msgid "Profile Visibility Editor"
-msgstr "Profil-Sichtbarkeits Editor"
+#: ../../mod/dirprofile.php:115
+msgid "Sexual Preference: "
+msgstr "Sexuelle Vorlieben:"
 
-#: ../../mod/profperm.php:109
-msgid "Click on a contact to add or remove."
-msgstr "Wähle einen Kontakt zum Hinzufügen oder Löschen aus."
+#: ../../mod/dirprofile.php:117
+msgid "Homepage: "
+msgstr "Webseite:"
 
-#: ../../mod/profperm.php:118
-msgid "Visible To"
-msgstr "Sichtbar für"
+#: ../../mod/dirprofile.php:118
+msgid "Hometown: "
+msgstr "Wohnort:"
+
+#: ../../mod/dirprofile.php:120
+msgid "About: "
+msgstr "Über:"
+
+#: ../../mod/dirprofile.php:168
+msgid "Keywords: "
+msgstr "Schlüsselbegriffe:"
+
+#: ../../mod/filestorage.php:68
+msgid "Permission Denied."
+msgstr "Zugriff verweigert."
+
+#: ../../mod/filestorage.php:85
+msgid "File not found."
+msgstr "Datei nicht gefunden"
+
+#: ../../mod/filestorage.php:119
+msgid "Edit file permissions"
+msgstr "Dateiberechtigungen bearbeiten"
+
+#: ../../mod/filestorage.php:124 ../../mod/photos.php:603
+#: ../../mod/photos.php:946
+msgid "Permissions"
+msgstr "Berechtigungen"
+
+#: ../../mod/filestorage.php:126
+msgid "Include all files and sub folders"
+msgstr "Alle Dateien und Unterverzeichnisse einbinden"
+
+#: ../../mod/filestorage.php:127
+msgid "Return to file list"
+msgstr "Zurück zur Dateiliste"
+
+#: ../../mod/filestorage.php:129
+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:130
+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:167
+msgid "Download"
+msgstr "Download"
+
+#: ../../mod/filestorage.php:173
+msgid "Used: "
+msgstr "Verwendet:"
+
+#: ../../mod/filestorage.php:174
+msgid "[directory]"
+msgstr "[Verzeichnis]"
+
+#: ../../mod/filestorage.php:176
+msgid "Limit: "
+msgstr "Limit:"
 
 #: ../../mod/suggest.php:35
 msgid ""
@@ -6829,31 +6861,133 @@ msgstr "Standartmäßig wird der Kanal nur auf diesem Knoten gelöscht, seine Kl
 msgid "Remove Channel"
 msgstr "Kanal entfernen"
 
-#: ../../mod/item.php:145
-msgid "Unable to locate original post."
-msgstr "Originalbeitrag kann nicht gefunden werden."
+#: ../../mod/photos.php:77
+msgid "Page owner information could not be retrieved."
+msgstr "Informationen über den Betreiber der Seite konnten nicht gefunden werden."
 
-#: ../../mod/item.php:346
-msgid "Empty post discarded."
-msgstr "Leerer Beitrag verworfen."
+#: ../../mod/photos.php:97
+msgid "Album not found."
+msgstr "Album nicht gefunden."
 
-#: ../../mod/item.php:388
-msgid "Executable content type not permitted to this channel."
-msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."
+#: ../../mod/photos.php:119 ../../mod/photos.php:668
+msgid "Delete Album"
+msgstr "Album löschen"
 
-#: ../../mod/item.php:819
-msgid "System error. Post not saved."
-msgstr "Systemfehler. Beitrag nicht gespeichert."
+#: ../../mod/photos.php:159 ../../mod/photos.php:951
+msgid "Delete Photo"
+msgstr "Foto löschen"
+
+#: ../../mod/photos.php:452
+msgid "No photos selected"
+msgstr "Keine Fotos ausgewählt"
+
+#: ../../mod/photos.php:499
+msgid "Access to this item is restricted."
+msgstr "Zugriff auf dieses Foto wurde eingeschränkt."
 
-#: ../../mod/item.php:1155
+#: ../../mod/photos.php:573
 #, php-format
-msgid "You have reached your limit of %1$.0f top level posts."
-msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."
+msgid "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/item.php:1161
+#: ../../mod/photos.php:576
 #, php-format
-msgid "You have reached your limit of %1$.0f webpages."
-msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."
+msgid "You have used %1$.2f Mbytes of photo storage."
+msgstr "Du verwendets %1$.2f MBytes deines Foto-Speichers."
+
+#: ../../mod/photos.php:595
+msgid "Upload Photos"
+msgstr "Fotos hochladen"
+
+#: ../../mod/photos.php:599 ../../mod/photos.php:663
+msgid "New album name: "
+msgstr "Name des neuen Albums:"
+
+#: ../../mod/photos.php:600
+msgid "or existing album name: "
+msgstr "oder bestehenden Album Namen:"
+
+#: ../../mod/photos.php:601
+msgid "Do not show a status post for this upload"
+msgstr "Keine Statusnachricht für diesen Upload senden"
+
+#: ../../mod/photos.php:652 ../../mod/photos.php:674 ../../mod/photos.php:1123
+#: ../../mod/photos.php:1138
+msgid "Contact Photos"
+msgstr "Kontakt Bilder"
+
+#: ../../mod/photos.php:678
+msgid "Edit Album"
+msgstr "Album bearbeiten"
+
+#: ../../mod/photos.php:684
+msgid "Show Newest First"
+msgstr "Zeige neueste zuerst"
+
+#: ../../mod/photos.php:686
+msgid "Show Oldest First"
+msgstr "Zeige älteste zuerst"
+
+#: ../../mod/photos.php:729 ../../mod/photos.php:1170
+msgid "View Photo"
+msgstr "Foto ansehen"
+
+#: ../../mod/photos.php:775
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."
+
+#: ../../mod/photos.php:777
+msgid "Photo not available"
+msgstr "Foto nicht verfügbar"
+
+#: ../../mod/photos.php:837
+msgid "Use as profile photo"
+msgstr "Als Profilfoto verwenden"
+
+#: ../../mod/photos.php:861
+msgid "View Full Size"
+msgstr "In voller Größe anzeigen"
+
+#: ../../mod/photos.php:935
+msgid "Edit photo"
+msgstr "Foto bearbeiten"
+
+#: ../../mod/photos.php:937
+msgid "Rotate CW (right)"
+msgstr "Drehen US (rechts)"
+
+#: ../../mod/photos.php:938
+msgid "Rotate CCW (left)"
+msgstr "Drehen EUS (links)"
+
+#: ../../mod/photos.php:940
+msgid "New album name"
+msgstr "Name des neuen Albums:"
+
+#: ../../mod/photos.php:943
+msgid "Caption"
+msgstr "Bildunterschrift"
+
+#: ../../mod/photos.php:945
+msgid "Add a Tag"
+msgstr "Schlagwort hinzufügen"
+
+#: ../../mod/photos.php:948
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+
+#: ../../mod/photos.php:1101
+msgid "In This Photo:"
+msgstr "Auf diesem Foto:"
+
+#: ../../mod/photos.php:1176
+msgid "View Album"
+msgstr "Album ansehen"
+
+#: ../../mod/photos.php:1185
+msgid "Recent Photos"
+msgstr "Neueste Fotos"
 
 #: ../../mod/mood.php:138
 msgid "Mood"
@@ -6863,144 +6997,116 @@ msgstr "Laune"
 msgid "Set your current mood and tell your friends"
 msgstr "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden"
 
-#: ../../mod/ping.php:186
+#: ../../mod/ping.php:192
 msgid "sent you a private message"
 msgstr "eine private Nachricht schicken"
 
-#: ../../mod/ping.php:244
+#: ../../mod/ping.php:250
 msgid "added your channel"
 msgstr "hat deinen Kanal hinzugefügt"
 
-#: ../../mod/ping.php:288
+#: ../../mod/ping.php:294
 msgid "posted an event"
 msgstr "hat eine Veranstaltung veröffentlicht"
 
-#: ../../mod/dirprofile.php:114
-msgid "Status: "
-msgstr "Status:"
-
-#: ../../mod/dirprofile.php:115
-msgid "Sexual Preference: "
-msgstr "Sexuelle Vorlieben:"
-
-#: ../../mod/dirprofile.php:117
-msgid "Homepage: "
-msgstr "Webseite:"
-
-#: ../../mod/dirprofile.php:118
-msgid "Hometown: "
-msgstr "Wohnort:"
-
-#: ../../mod/dirprofile.php:120
-msgid "About: "
-msgstr "Über:"
-
-#: ../../mod/dirprofile.php:168
-msgid "Keywords: "
-msgstr "Schlüsselbegriffe:"
-
-#: ../../view/theme/redbasic/php/config.php:74
+#: ../../view/theme/redbasic/php/config.php:76
 msgid "Scheme Default"
 msgstr "Standard-Schema"
 
-#: ../../view/theme/redbasic/php/config.php:75
-msgid "red"
-msgstr "Rot"
-
-#: ../../view/theme/redbasic/php/config.php:76
-msgid "black"
-msgstr "Schwarz"
-
-#: ../../view/theme/redbasic/php/config.php:77
+#: ../../view/theme/redbasic/php/config.php:87
 msgid "silver"
 msgstr "Silber"
 
-#: ../../view/theme/redbasic/php/config.php:88
+#: ../../view/theme/redbasic/php/config.php:98
 #: ../../view/theme/apw/php/config.php:234
 #: ../../view/theme/blogga/view/theme/blog/config.php:69
 #: ../../view/theme/blogga/php/config.php:69
 msgid "Theme settings"
 msgstr "Theme-Einstellungen"
 
-#: ../../view/theme/redbasic/php/config.php:89
+#: ../../view/theme/redbasic/php/config.php:99
 #: ../../view/theme/apw/php/config.php:235
 msgid "Set scheme"
 msgstr "Schema"
 
-#: ../../view/theme/redbasic/php/config.php:90
+#: ../../view/theme/redbasic/php/config.php:100
 msgid "Navigation bar colour"
 msgstr "Farbe der Navigationsleiste"
 
-#: ../../view/theme/redbasic/php/config.php:91
+#: ../../view/theme/redbasic/php/config.php:101
+msgid "link colour"
+msgstr "Farbe der Verweise"
+
+#: ../../view/theme/redbasic/php/config.php:102
 msgid "Set font-colour for banner"
 msgstr "Farbe des Banners"
 
-#: ../../view/theme/redbasic/php/config.php:92
+#: ../../view/theme/redbasic/php/config.php:103
 msgid "Set the background colour"
 msgstr "Hintergrundfarbe"
 
-#: ../../view/theme/redbasic/php/config.php:93
+#: ../../view/theme/redbasic/php/config.php:104
 msgid "Set the background image"
 msgstr "Hintergrundbild"
 
-#: ../../view/theme/redbasic/php/config.php:94
+#: ../../view/theme/redbasic/php/config.php:105
 msgid "Set the background colour of items"
 msgstr "Hintergrundfarbe von Beiträgen"
 
-#: ../../view/theme/redbasic/php/config.php:95
+#: ../../view/theme/redbasic/php/config.php:106
 msgid "Set the opacity of items"
 msgstr "Deckkraft von Beiträgen"
 
-#: ../../view/theme/redbasic/php/config.php:96
+#: ../../view/theme/redbasic/php/config.php:107
 msgid "Set the basic colour for item icons"
 msgstr "Basisfarbe der Beitrags-Icons"
 
-#: ../../view/theme/redbasic/php/config.php:97
+#: ../../view/theme/redbasic/php/config.php:108
 msgid "Set the hover colour for item icons"
 msgstr "Farbe für Beitrags-Icons unter dem Mauszeiger"
 
-#: ../../view/theme/redbasic/php/config.php:98
+#: ../../view/theme/redbasic/php/config.php:109
 msgid "Set font-size for the entire application"
 msgstr "Schriftgröße für die ganze Applikation"
 
-#: ../../view/theme/redbasic/php/config.php:99
+#: ../../view/theme/redbasic/php/config.php:110
 #: ../../view/theme/apw/php/config.php:236
 msgid "Set font-size for posts and comments"
 msgstr "Wähle die Schriftgröße für Beiträge und Kommentare"
 
-#: ../../view/theme/redbasic/php/config.php:100
+#: ../../view/theme/redbasic/php/config.php:111
 msgid "Set font-colour for posts and comments"
 msgstr "Schriftfarbe für Beiträge und Kommentare"
 
-#: ../../view/theme/redbasic/php/config.php:101
+#: ../../view/theme/redbasic/php/config.php:112
 msgid "Set radius of corners"
 msgstr "Ecken-Radius"
 
-#: ../../view/theme/redbasic/php/config.php:102
+#: ../../view/theme/redbasic/php/config.php:113
 msgid "Set shadow depth of photos"
 msgstr "Schattentiefe von Fotos"
 
-#: ../../view/theme/redbasic/php/config.php:103
+#: ../../view/theme/redbasic/php/config.php:114
 msgid "Set maximum width of conversation regions"
 msgstr "Maximalbreite der Konversationsbereiche"
 
-#: ../../view/theme/redbasic/php/config.php:104
+#: ../../view/theme/redbasic/php/config.php:115
 msgid "Set minimum opacity of nav bar - to hide it"
 msgstr "Mindest-Deckkraft der Navigationsleiste ( - versteckt sie)"
 
-#: ../../view/theme/redbasic/php/config.php:105
+#: ../../view/theme/redbasic/php/config.php:116
 msgid "Set size of conversation author photo"
 msgstr "Größe der Avatare von Themenstartern"
 
-#: ../../view/theme/redbasic/php/config.php:106
+#: ../../view/theme/redbasic/php/config.php:117
 msgid "Set size of followup author photos"
 msgstr "Größe der Avatare von Kommentatoren"
 
-#: ../../view/theme/redbasic/php/config.php:107
+#: ../../view/theme/redbasic/php/config.php:118
 msgid "Sloppy photo albums"
 msgstr "Schräge Fotoalben"
 
-#: ../../view/theme/redbasic/php/config.php:107
+#: ../../view/theme/redbasic/php/config.php:118
 msgid "Are you a clean desk or a messy desk person?"
 msgstr "Bist du jemand der einen aufgeräumten Schreibtisch hat, oder eher einen chaotischen?"
 
@@ -7144,41 +7250,41 @@ msgstr "Titelbild"
 msgid "Header image only on profile pages"
 msgstr "Titelbild nur auf Profil-Seiten anzeigen"
 
-#: ../../boot.php:1229
+#: ../../boot.php:1232
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen."
 
-#: ../../boot.php:1232
+#: ../../boot.php:1235
 #, php-format
 msgid "Update Error at %s"
 msgstr "Aktualisierungsfehler auf %s"
 
-#: ../../boot.php:1396
+#: ../../boot.php:1399
 msgid ""
 "Create an account to access services and applications within the Red Matrix"
 msgstr "Erstelle einen Account um Anwendungen und Dienste innerhalb der Red Matrix verwenden zu können."
 
-#: ../../boot.php:1424
+#: ../../boot.php:1427
 msgid "Password"
 msgstr "Kennwort"
 
-#: ../../boot.php:1425
+#: ../../boot.php:1428
 msgid "Remember me"
 msgstr "Angaben speichern"
 
-#: ../../boot.php:1430
+#: ../../boot.php:1433
 msgid "Forgot your password?"
 msgstr "Passwort vergessen?"
 
-#: ../../boot.php:1495
+#: ../../boot.php:1498
 msgid "permission denied"
 msgstr "Zugriff verweigert"
 
-#: ../../boot.php:1496
+#: ../../boot.php:1499
 msgid "Got Zot?"
 msgstr "Haste schon Zot?"
 
-#: ../../boot.php:1892
+#: ../../boot.php:1899
 msgid "toggle mobile"
 msgstr "auf/von Mobile Ansicht wechseln"
diff --git a/view/de/strings.php b/view/de/strings.php
index 3637c4bf5..00da85a02 100644
--- a/view/de/strings.php
+++ b/view/de/strings.php
@@ -19,9 +19,19 @@ $a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltunge
 $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["Manage/Edit profiles"] = "Profile verwalten";
 $a->strings["Photos"] = "Fotos";
 $a->strings["Your photos"] = "Deine Bilder";
+$a->strings["Files"] = "Dateien";
+$a->strings["Your files"] = "Deine Dateien";
+$a->strings["Chat"] = "Chat";
+$a->strings["Your chatrooms"] = "Deine Chat-Räume";
+$a->strings["Events"] = "Veranstaltungen";
+$a->strings["Your events"] = "Deine Veransctaltungen";
+$a->strings["Bookmarks"] = "Lesezeichen";
+$a->strings["Your bookmarks"] = "Deine Lesezeichen";
+$a->strings["Webpages"] = "Webseiten";
+$a->strings["Your webpages"] = "Deine Webseiten";
 $a->strings["Login"] = "Anmelden";
 $a->strings["Sign in"] = "Anmelden";
 $a->strings["%s - click to logout"] = "%s - Klick zum Abmelden";
@@ -56,7 +66,6 @@ $a->strings["Mark all private messages seen"] = "Markiere alle persönlichen Nac
 $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";
@@ -70,14 +79,179 @@ $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["Missing room name"] = "Der Chatraum hat keinen Namen";
-$a->strings["Duplicate room name"] = "Name des Chatraums bereits vergeben";
-$a->strings["Invalid room specifier."] = "Ungültiger Raumbezeichner.";
-$a->strings["Room not found."] = "Chatraum konnte nicht gefunden werden.";
-$a->strings["Permission denied."] = "Zugang verweigert";
+$a->strings["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["Save"] = "Speichern";
+$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["Categories"] = "Kategorien";
 $a->strings["Connect"] = "Verbinden";
+$a->strings["Ignore/Hide"] = "Ignorieren/Verstecken";
+$a->strings["Suggestions"] = "Vorschläge";
+$a->strings["See more..."] = "Mehr anzeigen...";
+$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von %2$.0f erlaubten Verbindungen eingegangen.";
+$a->strings["Add New Connection"] = "Neue Verbindung hinzufügen";
+$a->strings["Enter the channel address"] = "Adresse des Kanals eingeben";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@beispiel.com, http://beispiel.com/barbara";
+$a->strings["Notes"] = "Notizen";
+$a->strings["Remove term"] = "Eintrag löschen";
+$a->strings["Saved Searches"] = "Gesicherte Suchanfragen";
+$a->strings["add"] = "hinzufügen";
+$a->strings["Saved Folders"] = "Gesicherte Ordner";
+$a->strings["Everything"] = "Alles";
+$a->strings["Archives"] = "Archive";
+$a->strings["Refresh"] = "Aktualisieren";
+$a->strings["Me"] = "Ich";
+$a->strings["Best Friends"] = "Beste Freunde";
+$a->strings["Friends"] = "Freunde";
+$a->strings["Co-workers"] = "Kollegen";
+$a->strings["Former Friends"] = "ehem. Freunde";
+$a->strings["Acquaintances"] = "Bekanntschaften";
+$a->strings["Everybody"] = "Jeder";
+$a->strings["Account settings"] = "Konto-Einstellungen";
+$a->strings["Channel settings"] = "Kanal-Einstellungen";
+$a->strings["Additional features"] = "Zusätzliche Funktionen";
+$a->strings["Feature settings"] = "Funktions-Einstellungen";
+$a->strings["Display settings"] = "Anzeige-Einstellungen";
+$a->strings["Connected apps"] = "Verbundene Apps";
+$a->strings["Export channel"] = "Kanal exportieren";
+$a->strings["Automatic Permissions (Advanced)"] = "Automatische Berechtigungen (Erweitert)";
+$a->strings["Premium Channel Settings"] = "Prämium-Kanal Einstellungen";
+$a->strings["Channel Sources"] = "Kanal Quellen";
+$a->strings["Check Mail"] = "E-Mails abrufen";
+$a->strings["Chat Rooms"] = "Chaträume";
 $a->strings["New window"] = "Neues Fenster";
 $a->strings["Open the selected location in a different window or browser tab"] = "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab";
+$a->strings["General Features"] = "Allgemeine Funktionen";
+$a->strings["Content Expiration"] = "Verfall von Inhalten";
+$a->strings["Remove posts/comments and/or private messages at a future time"] = "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum.";
+$a->strings["Multiple Profiles"] = "Mehrfachprofile";
+$a->strings["Ability to create multiple profiles"] = "Mehrfachprofile anlegen können";
+$a->strings["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["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";
+$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Erlaubt es dir Einschränkungen für Kontakte und bestimmte Bedingungen an Kontakte zu diesem Kanal zu stellen";
+$a->strings["Post Composition Features"] = "Nachbearbeitungsfunktionen";
+$a->strings["Richtext Editor"] = "Formatierungseditor";
+$a->strings["Enable richtext editor"] = "Aktiviere Formatierungseditor";
+$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 optional encryption of content end-to-end with a shared secret key"] = "Erlaube optionale Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Sicherheitsschlüssel)";
+$a->strings["Network and Stream Filtering"] = "Netzwerk- und Stream-Filter";
+$a->strings["Search by Date"] = "Suche nach Datum";
+$a->strings["Ability to select posts by date ranges"] = "Möglichkeit, Beiträge nach Zeiträumen auszuwählen";
+$a->strings["Collections Filter"] = "Filter für Sammlung";
+$a->strings["Enable widget to display Network posts only from selected collections"] = "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen";
+$a->strings["Save search terms for re-use"] = "Gesicherte Suchbegriffe zur Wiederverwendung";
+$a->strings["Network Personal Tab"] = "Persönlicher Netzwerkreiter";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviere Reiter nur für die Netzwerk-Beiträge, mit denen Du interagiert hast";
+$a->strings["Network New Tab"] = "Netzwerkreiter Neu";
+$a->strings["Enable tab to display all new Network activity"] = "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen";
+$a->strings["Affinity Tool"] = "Beziehungs-Tool";
+$a->strings["Filter stream activity by depth of relationships"] = "Filter Aktivitätenstream nach Tiefe der Beziehung";
+$a->strings["Suggest Channels"] = "Kanäle Vorschlagen";
+$a->strings["Show channel suggestions"] = "Kanal-Vorschläge anzeigen";
+$a->strings["Post/Comment Tools"] = "Beitrag-/Kommentar-Tools";
+$a->strings["Edit Sent Posts"] = "Bearbeite gesendete Beiträge";
+$a->strings["Edit and correct posts and comments after sending"] = "Bearbeite und korrigiere Beiträge und Kommentare nach dem Senden";
+$a->strings["Tagging"] = "Verschlagworten";
+$a->strings["Ability to tag existing posts"] = "Möglichkeit, um existierende Beiträge zu verschlagworten";
+$a->strings["Post Categories"] = "Beitrags-Kategorien";
+$a->strings["Add categories to your posts"] = "Kategorien für Beiträge";
+$a->strings["Ability to file posts under folders"] = "Möglichkeit, Beiträge in Verzeichnissen zu sammeln";
+$a->strings["Dislike Posts"] = "Gefällt-mir-nicht Beiträge";
+$a->strings["Ability to dislike posts/comments"] = "Möglichkeit für Gefällt-mir-nicht für Beiträge/Kommentare";
+$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["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
 $a->strings["Block immediately"] = "Sofort blockieren";
 $a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
@@ -119,17 +293,18 @@ $a->strings["second"] = "Sekunde";
 $a->strings["seconds"] = "Sekunden";
 $a->strings["%1\$d %2\$s ago"] = "vor %1\$d %2\$s";
 $a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS-Info für den Datenbank-Server '%s' nicht finden";
-$a->strings["view full size"] = "In Vollbildansicht anschauen";
 $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["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:";
+$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";
+$a->strings["edit"] = "Bearbeiten";
+$a->strings["Collections"] = "Sammlungen";
+$a->strings["Edit collection"] = "Bearbeite Sammlungen";
+$a->strings["Create a new collection"] = "Neue Sammlung erzeugen";
+$a->strings["Channels not in any collection"] = "Kanäle, die nicht in einer Sammlung sind";
 $a->strings["Delete this item?"] = "Dieses Element löschen?";
 $a->strings["Comment"] = "Kommentar";
 $a->strings["show more"] = "mehr zeigen";
@@ -161,502 +336,45 @@ $a->strings["[no subject]"] = "[no subject]";
 $a->strings["Unable to determine sender."] = "Kann Absender nicht bestimmen.";
 $a->strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden.";
 $a->strings["Profile Photos"] = "Profilfotos";
-$a->strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen";
-$a->strings["Empty name"] = "Namensfeld leer";
-$a->strings["Name too long"] = "Name ist zu lang";
-$a->strings["No account identifier"] = "Keine Account-Kennung";
-$a->strings["Nickname is required."] = "Spitzname ist erforderlich.";
-$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt.";
-$a->strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen";
-$a->strings["Default Profile"] = "Standard-Profil";
-$a->strings["Friends"] = "Freunde";
-$a->strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar.";
-$a->strings[" Sorry, you don't have the permission to view this profile. "] = "Entschuldigung, aber du besitzt nicht die nötigen Rechte um dieses Profil ansehen zu dürfen.";
-$a->strings["Requested profile is not available."] = "Erwünschte Profil ist nicht verfügbar.";
-$a->strings["Change profile photo"] = "Ändere das Profilfoto";
-$a->strings["Profiles"] = "Profile";
-$a->strings["Manage/edit profiles"] = "Verwalte/Bearbeite Profile";
-$a->strings["Create New Profile"] = "Neues Profil erstellen";
-$a->strings["Edit Profile"] = "Profile bearbeiten";
-$a->strings["Profile Image"] = "Profilfoto:";
-$a->strings["visible to everybody"] = "sichtbar für jeden";
-$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
-$a->strings["Gender:"] = "Geschlecht:";
-$a->strings["Status:"] = "Status:";
-$a->strings["Homepage:"] = "Homepage:";
-$a->strings["Online Now"] = "gerade online";
-$a->strings["g A l F d"] = "l, d. F G \\\\U\\\\h\\\\r";
-$a->strings["F d"] = "d. F";
-$a->strings["[today]"] = "[Heute]";
-$a->strings["Birthday Reminders"] = "Geburtstags Erinnerungen";
-$a->strings["Birthdays this week:"] = "Geburtstage in dieser Woche:";
-$a->strings["[No description]"] = "[Keine Beschreibung]";
-$a->strings["Event Reminders"] = "Veranstaltungs- Erinnerungen";
-$a->strings["Events this week:"] = "Veranstaltungen in dieser Woche:";
-$a->strings["Profile"] = "Profil";
-$a->strings["Full Name:"] = "Voller Name:";
-$a->strings["j F, Y"] = "j F, Y";
-$a->strings["j F"] = "j F";
-$a->strings["Birthday:"] = "Geburtstag:";
-$a->strings["Age:"] = "Alter:";
-$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
-$a->strings["Sexual Preference:"] = "Sexuelle Orientierung:";
-$a->strings["Hometown:"] = "Heimatstadt:";
-$a->strings["Tags:"] = "Schlagworte:";
-$a->strings["Political Views:"] = "Politische Ansichten:";
-$a->strings["Religion:"] = "Religion:";
-$a->strings["About:"] = "Über:";
-$a->strings["Hobbies/Interests:"] = "Hobbys/Interessen:";
-$a->strings["Likes:"] = "Gefällt-mir:";
-$a->strings["Dislikes:"] = "Gefällt-mir-nicht:";
-$a->strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:";
-$a->strings["My other channels:"] = "Meine anderen Kanäle:";
-$a->strings["Musical interests:"] = "Musikalische Interessen:";
-$a->strings["Books, literature:"] = "Bücher, Literatur:";
-$a->strings["Television:"] = "Fernsehen:";
-$a->strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltung:";
-$a->strings["Love/Romance:"] = "Liebe/Romantik:";
-$a->strings["Work/employment:"] = "Arbeit/Anstellung:";
-$a->strings["School/education:"] = "Schule/Ausbildung:";
-$a->strings["Edit File properties"] = "Dateieigenschaften ändern";
-$a->strings["Embedded content"] = "Eingebetteter Inhalt";
-$a->strings["Embedding disabled"] = "Einbetten ausgeschaltet";
-$a->strings["General Features"] = "Allgemeine Funktionen";
-$a->strings["Content Expiration"] = "Verfall von Inhalten";
-$a->strings["Remove posts/comments and/or private messages at a future time"] = "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum.";
-$a->strings["Multiple Profiles"] = "Mehrfachprofile";
-$a->strings["Ability to create multiple profiles"] = "Mehrfachprofile anlegen können";
-$a->strings["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["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";
-$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Erlaubt es dir Einschränkungen für Kontakte und bestimmte Bedingungen an Kontakte zu diesem Kanal zu stellen";
-$a->strings["Post Composition Features"] = "Nachbearbeitungsfunktionen";
-$a->strings["Richtext Editor"] = "Formatierungseditor";
-$a->strings["Enable richtext editor"] = "Aktiviere Formatierungseditor";
-$a->strings["Post Preview"] = "Voransicht";
-$a->strings["Allow previewing posts and comments before publishing them"] = "Erlaube Voransicht von Beiträgen und Kommentaren vor Veröffentlichung";
-$a->strings["Channel Sources"] = "Kanal Quellen";
-$a->strings["Automatically import channel content from other channels or feeds"] = "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds.";
-$a->strings["Even More Encryption"] = "Noch mehr Verschlüsselung";
-$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Erlaube optionale Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Sicherheitsschlüssel)";
-$a->strings["Network and Stream Filtering"] = "Netzwerk- und Stream-Filter";
-$a->strings["Search by Date"] = "Suche nach Datum";
-$a->strings["Ability to select posts by date ranges"] = "Möglichkeit, Beiträge nach Zeiträumen auszuwählen";
-$a->strings["Collections Filter"] = "Filter für Sammlung";
-$a->strings["Enable widget to display Network posts only from selected collections"] = "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen";
-$a->strings["Saved Searches"] = "Gesicherte Suchanfragen";
-$a->strings["Save search terms for re-use"] = "Gesicherte Suchbegriffe zur Wiederverwendung";
-$a->strings["Network Personal Tab"] = "Persönlicher Netzwerkreiter";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviere Reiter nur für die Netzwerk-Beiträge, mit denen Du interagiert hast";
-$a->strings["Network New Tab"] = "Netzwerkreiter Neu";
-$a->strings["Enable tab to display all new Network activity"] = "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen";
-$a->strings["Affinity Tool"] = "Beziehungs-Tool";
-$a->strings["Filter stream activity by depth of relationships"] = "Filter Aktivitätenstream nach Tiefe der Beziehung";
-$a->strings["Suggest Channels"] = "Kanäle Vorschlagen";
-$a->strings["Show channel suggestions"] = "Kanal-Vorschläge anzeigen";
-$a->strings["Post/Comment Tools"] = "Beitrag-/Kommentar-Tools";
-$a->strings["Edit Sent Posts"] = "Bearbeite gesendete Beiträge";
-$a->strings["Edit and correct posts and comments after sending"] = "Bearbeite und korrigiere Beiträge und Kommentare nach dem Senden";
-$a->strings["Tagging"] = "Verschlagworten";
-$a->strings["Ability to tag existing posts"] = "Möglichkeit, um existierende Beiträge zu verschlagworten";
-$a->strings["Post Categories"] = "Beitrags-Kategorien";
-$a->strings["Add categories to your posts"] = "Kategorien für Beiträge";
-$a->strings["Saved Folders"] = "Gesicherte Ordner";
-$a->strings["Ability to file posts under folders"] = "Möglichkeit, Beiträge in Verzeichnissen zu sammeln";
-$a->strings["Dislike Posts"] = "Gefällt-mir-nicht Beiträge";
-$a->strings["Ability to dislike posts/comments"] = "Möglichkeit für Gefällt-mir-nicht für Beiträge/Kommentare";
-$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["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";
-$a->strings["edit"] = "Bearbeiten";
-$a->strings["Collections"] = "Sammlungen";
-$a->strings["Edit collection"] = "Bearbeite Sammlungen";
-$a->strings["Create a new collection"] = "Neue Sammlung erzeugen";
-$a->strings["Channels not in any collection"] = "Kanäle, die nicht in einer Sammlung sind";
-$a->strings["add"] = "hinzufügen";
-$a->strings["created a new post"] = "Neuer Beitrag wurde erzeugt";
-$a->strings["commented on %s's post"] = "hat %s's Beitrag kommentiert";
-$a->strings["Image exceeds website size limit of %lu bytes"] = "Bild überschreitet das Limit der Webseite von %lu bytes";
-$a->strings["Image file is empty."] = "Bilddatei ist leer.";
-$a->strings["Unable to process image"] = "Kann Bild nicht verarbeiten";
-$a->strings["Photo storage failed."] = "Foto speichern schlug fehl";
-$a->strings["Photo Albums"] = "Fotoalben";
-$a->strings["Upload New Photos"] = "Lade neue Fotos hoch";
-$a->strings["Male"] = "Männlich";
-$a->strings["Female"] = "Weiblich";
-$a->strings["Currently Male"] = "Momentan männlich";
-$a->strings["Currently Female"] = "Momentan weiblich";
-$a->strings["Mostly Male"] = "Größtenteils männlich";
-$a->strings["Mostly Female"] = "Größtenteils weiblich";
-$a->strings["Transgender"] = "Transsexuell";
-$a->strings["Intersex"] = "Zwischengeschlechtlich";
-$a->strings["Transsexual"] = "Transsexuell";
-$a->strings["Hermaphrodite"] = "Zwitter";
-$a->strings["Neuter"] = "Geschlechtslos";
-$a->strings["Non-specific"] = "unklar";
-$a->strings["Other"] = "Anders";
-$a->strings["Undecided"] = "Unentschieden";
-$a->strings["Males"] = "Männer";
-$a->strings["Females"] = "Frauen";
-$a->strings["Gay"] = "Schwul";
-$a->strings["Lesbian"] = "Lesbisch";
-$a->strings["No Preference"] = "Keine Bevorzugung";
-$a->strings["Bisexual"] = "Bisexuell";
-$a->strings["Autosexual"] = "Autosexuell";
-$a->strings["Abstinent"] = "Enthaltsam";
-$a->strings["Virgin"] = "Jungfräulich";
-$a->strings["Deviant"] = "Abweichend";
-$a->strings["Fetish"] = "Fetisch";
-$a->strings["Oodles"] = "Unmengen";
-$a->strings["Nonsexual"] = "Sexlos";
-$a->strings["Single"] = "Single";
-$a->strings["Lonely"] = "Einsam";
-$a->strings["Available"] = "Verfügbar";
-$a->strings["Unavailable"] = "Nicht verfügbar";
-$a->strings["Has crush"] = "Verguckt";
-$a->strings["Infatuated"] = "Verknallt";
-$a->strings["Dating"] = "Lerne gerade jemanden kennen";
-$a->strings["Unfaithful"] = "Treulos";
-$a->strings["Sex Addict"] = "Sexabhängig";
-$a->strings["Friends/Benefits"] = "Freunde/Begünstigte";
-$a->strings["Casual"] = "Lose";
-$a->strings["Engaged"] = "Verlobt";
-$a->strings["Married"] = "Verheiratet";
-$a->strings["Imaginarily married"] = "Gewissermaßen verheiratet";
-$a->strings["Partners"] = "Partner";
-$a->strings["Cohabiting"] = "Lebensgemeinschaft";
-$a->strings["Common law"] = "Informelle Ehe";
-$a->strings["Happy"] = "Glücklich";
-$a->strings["Not looking"] = "Nicht Ausschau haltend";
-$a->strings["Swinger"] = "Swinger";
-$a->strings["Betrayed"] = "Betrogen";
-$a->strings["Separated"] = "Getrennt";
-$a->strings["Unstable"] = "Labil";
-$a->strings["Divorced"] = "Geschieden";
-$a->strings["Imaginarily divorced"] = "Gewissermaßen geschieden";
-$a->strings["Widowed"] = "Verwitwet";
-$a->strings["Uncertain"] = "Ungewiss";
-$a->strings["It's complicated"] = "Es ist kompliziert";
-$a->strings["Don't care"] = "Interessiert mich nicht";
-$a->strings["Ask me"] = "Frag mich mal";
-$a->strings["Item was not found."] = "Beitrag wurde nicht gefunden.";
-$a->strings["No source file."] = "Keine Quelldatei.";
-$a->strings["Cannot locate file to replace"] = "Kann Datei zum Ersetzen nicht finden";
-$a->strings["Cannot locate file to revise/update"] = "Kann Datei zum Prüfen/Aktualisieren nicht finden";
-$a->strings["File exceeds size limit of %d"] = "Datei überschreitet das Größen-Limit von %d";
-$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Die Größe deiner Datei-Anhänge haben das Maximum von %1$.0f MByte erreicht.";
-$a->strings["File upload failed. Possible system limit or action terminated."] = "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess.";
-$a->strings["Stored file could not be verified. Upload failed."] = "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen.";
-$a->strings["Path not available."] = "Pfad nicht verfügbar.";
-$a->strings["Empty pathname"] = "leere Pfadangabe";
-$a->strings["duplicate filename or path"] = "doppelter Dateiname oder Pfad";
-$a->strings["Path not found."] = "Pfad nicht gefunden.";
-$a->strings["mkdir failed."] = "mkdir fehlgeschlagen.";
-$a->strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen.";
-$a->strings["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["Logged out."] = "Ausgeloggt.";
-$a->strings["Failed authentication"] = "Authentifizierung fehlgeschlagen";
-$a->strings["Login failed."] = "Login fehlgeschlagen.";
-$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";
-$a->strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert.";
-$a->strings["An invitation is required."] = "Eine Einladung wird benötigt";
-$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden";
-$a->strings["Please enter the required information."] = "Bitte gib die benötigten Informationen ein.";
-$a->strings["Failed to store account information."] = "Speichern der Account-Informationen fehlgeschlagen";
-$a->strings["Registration request at %s"] = "Registrierungsanfrage auf %s";
-$a->strings["Administrator"] = "Administrator";
-$a->strings["your registration password"] = "dein Registrierungspasswort";
-$a->strings["Registration details for %s"] = "Registrierungsdetails für %s";
-$a->strings["Account approved."] = "Account bestätigt.";
-$a->strings["Registration revoked for %s"] = "Registrierung für %s widerrufen";
-$a->strings["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:Benachrichtigung] Kommentar in Unterhaltung #%1\$d von %2\$s";
-$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s hat 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 getaggt";
-$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:Benachrichtigung] 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["Categories"] = "Kategorien";
-$a->strings["Ignore/Hide"] = "Ignorieren/Verstecken";
-$a->strings["Suggestions"] = "Vorschläge";
-$a->strings["See more..."] = "Mehr anzeigen...";
-$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von %2$.0f erlaubten Verbindungen eingegangen.";
-$a->strings["Add New Connection"] = "Neue Verbindung hinzufügen";
-$a->strings["Enter the channel address"] = "Adresse des Kanals eingeben";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@beispiel.com, http://beispiel.com/barbara";
-$a->strings["Notes"] = "Notizen";
-$a->strings["Save"] = "Speichern";
-$a->strings["Remove term"] = "Eintrag löschen";
-$a->strings["Everything"] = "Alles";
-$a->strings["Archives"] = "Archive";
-$a->strings["Refresh"] = "Aktualisieren";
-$a->strings["Me"] = "Ich";
-$a->strings["Best Friends"] = "Beste Freunde";
-$a->strings["Co-workers"] = "Kollegen";
-$a->strings["Former Friends"] = "ehem. Freunde";
-$a->strings["Acquaintances"] = "Bekanntschaften";
-$a->strings["Everybody"] = "Jeder";
-$a->strings["Account settings"] = "Konto-Einstellungen";
-$a->strings["Channel settings"] = "Kanal-Einstellungen";
-$a->strings["Additional features"] = "Zusätzliche Funktionen";
-$a->strings["Feature settings"] = "Funktions-Einstellungen";
-$a->strings["Display settings"] = "Anzeige-Einstellungen";
-$a->strings["Connected apps"] = "Verbundene Apps";
-$a->strings["Export channel"] = "Kanal exportieren";
-$a->strings["Automatic Permissions (Advanced)"] = "Automatische Berechtigungen (Erweitert)";
-$a->strings["Premium Channel Settings"] = "Prämium-Kanal Einstellungen";
-$a->strings["Check Mail"] = "E-Mails abrufen";
-$a->strings["Chat Rooms"] = "Chaträume";
-$a->strings["Public Timeline"] = "Öffentliche Zeitleiste";
-$a->strings["%d invitation available"] = array(
-	0 => "%d Einladung verfügbar",
-	1 => "%d Einladungen verfügbar",
-);
-$a->strings["Find Channels"] = "Finde Kanäle";
-$a->strings["Enter name or interest"] = "Name oder Interessen eingeben";
-$a->strings["Connect/Follow"] = "Verbinden/Folgen";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiele: Robert Morgenstein, Angeln";
-$a->strings["Find"] = "Finde";
-$a->strings["Channel Suggestions"] = "Kanal-Vorschläge";
-$a->strings["Random Profile"] = "Zufallsprofil";
-$a->strings["Invite Friends"] = "Lade Freunde ein";
-$a->strings["%d connection in common"] = array(
-	0 => "%d gemeinsame Verbindung",
-	1 => "%d gemeinsame Verbindungen",
-);
-$a->strings["New Page"] = "Neue Seite";
-$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.";
-$a->strings["Channel is blocked on this site."] = "Der Kanal ist auf dieser Seite blockiert ";
-$a->strings["Channel location missing."] = "Adresse des Kanals fehlt.";
-$a->strings["Channel discovery failed. Website may be down or misconfigured."] = "Auffinden des Kanals schlug fehl. Die Webseite könnte falsch konfiguriert oder abgeschaltet sein.";
-$a->strings["Response from remote channel was not understood."] = "Antwort des entfernten Kanals war unverständlich.";
-$a->strings["Response from remote channel was incomplete."] = "Antwort des entfernten Kanals war unvollständig.";
-$a->strings["local account not found."] = "Lokales Konto nicht gefunden.";
-$a->strings["Cannot connect to yourself."] = "Du kannst dich nicht mit dir selbst verbinden.";
-$a->strings["Can view my \"public\" stream and posts"] = "Kann meinen öffentlichen Stream und Beiträge sehen";
-$a->strings["Can view my \"public\" channel profile"] = "Kann meinen öffentliches Kanal-Profil sehen";
-$a->strings["Can view my \"public\" photo albums"] = "Kann meine öffentlichen Fotoalben sehen";
-$a->strings["Can view my \"public\" address book"] = "Kann mein öffentliches Adressbuch sehen";
-$a->strings["Can view my \"public\" file storage"] = "Kann meinen öffentlichen Dateiordner sehen";
-$a->strings["Can view my \"public\" pages"] = "Kann meine öffentlichen Seiten sehen";
-$a->strings["Can send me their channel stream and posts"] = "Können mir den Stream und die Beiträge aus ihrem Kanal schicken";
-$a->strings["Can post on my channel page (\"wall\")"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen";
-$a->strings["Can comment on my posts"] = "Kann meine Beiträge kommentieren";
-$a->strings["Can send me private mail messages"] = "Kann mir private Nachrichten schicken";
-$a->strings["Can post photos to my photo albums"] = "Kann Fotos in meinen Fotoalben veröffentlichen";
-$a->strings["Can forward to all my channel contacts via post @mentions"] = "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten";
-$a->strings["Advanced - useful for creating group forum channels"] = "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen";
-$a->strings["Can chat with me (when available)"] = "Kann mit mir chatten (wenn verfügbar)";
-$a->strings["Requires compatible chat plugin"] = "Benötigt ein kompatibles Chat-Plugin";
-$a->strings["Can write to my \"public\" file storage"] = "Kann in meinen öffentlichen Dateiordner schreiben";
-$a->strings["Can edit my \"public\" pages"] = "Kann meine öffentlichen Seiten bearbeiten";
-$a->strings["Can source my \"public\" posts in derived channels"] = "Kann meine \"öffentlichen\" Beiträge als Quellen von Kanälen verwenden";
-$a->strings["Somewhat advanced - very useful in open communities"] = "Etwas Fortgeschritten - sehr nützlich in offenen Gemeinschaften.";
-$a->strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren";
-$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite dies nur, wenn du genau weißt, was du machst";
-$a->strings["Default"] = "Standard";
-$a->strings["Permission denied"] = "Keine Berechtigung";
-$a->strings["Item not found."] = "Element nicht gefunden.";
-$a->strings["Collection not found."] = "Sammlung nicht gefunden";
-$a->strings["Collection is empty."] = "Sammlung ist leer.";
-$a->strings["Collection: %s"] = "Sammlung: %s";
-$a->strings["Connection: %s"] = "Verbindung: %s";
-$a->strings["Connection not found."] = "Die Verbindung wurde nicht gefunden.";
-$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde.";
-$a->strings["prev"] = "vorherige";
-$a->strings["first"] = "erste";
-$a->strings["last"] = "letzte";
-$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["Private Message"] = "Private Nachricht";
-$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["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[" from %s"] = "von %s";
-$a->strings["last edited: %s"] = "zuletzt bearbeitet: %s";
-$a->strings["Expires: %s"] = "Verfällt: %s";
-$a->strings["Please wait"] = "Bitte warten";
-$a->strings["%d comment"] = array(
-	0 => "%d Kommentar",
-	1 => "%d Kommentare",
-);
-$a->strings["This is you"] = "Das bist du";
-$a->strings["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["Permission denied."] = "Zugang verweigert";
+$a->strings["Item was not found."] = "Beitrag wurde nicht gefunden.";
+$a->strings["No source file."] = "Keine Quelldatei.";
+$a->strings["Cannot locate file to replace"] = "Kann Datei zum Ersetzen nicht finden";
+$a->strings["Cannot locate file to revise/update"] = "Kann Datei zum Prüfen/Aktualisieren nicht finden";
+$a->strings["File exceeds size limit of %d"] = "Datei überschreitet das Größen-Limit von %d";
+$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Die Größe deiner Datei-Anhänge haben das Maximum von %1$.0f MByte erreicht.";
+$a->strings["File upload failed. Possible system limit or action terminated."] = "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess.";
+$a->strings["Stored file could not be verified. Upload failed."] = "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen.";
+$a->strings["Path not available."] = "Pfad nicht verfügbar.";
+$a->strings["Empty pathname"] = "leere Pfadangabe";
+$a->strings["duplicate filename or path"] = "doppelter Dateiname oder Pfad";
+$a->strings["Path not found."] = "Pfad nicht gefunden.";
+$a->strings["mkdir failed."] = "mkdir fehlgeschlagen.";
+$a->strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen.";
+$a->strings["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:";
+$a->strings["%1\$s's bookmarks"] = "%1\$s's Lesezeichen";
 $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["Expires: %s"] = "Verfällt: %s";
 $a->strings["View in context"] = "Im Zusammenhang anschauen";
+$a->strings["Please wait"] = "Bitte warten";
 $a->strings["remove"] = "lösche";
 $a->strings["Loading..."] = "Lädt ...";
 $a->strings["Delete Selected Items"] = "Lösche die ausgewählten Elemente";
@@ -693,6 +411,7 @@ $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";
@@ -716,6 +435,7 @@ $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";
@@ -734,11 +454,303 @@ $a->strings["Channel"] = "Kanal";
 $a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
 $a->strings["About"] = "Über";
 $a->strings["Profile Details"] = "Profil-Details";
-$a->strings["Files"] = "Dateien";
+$a->strings["Photo Albums"] = "Fotoalben";
 $a->strings["Files and Storage"] = "Dateien und Speicher";
+$a->strings["Chatrooms"] = "Chat-Räume";
 $a->strings["Events and Calendar"] = "Veranstaltungen und Kalender";
-$a->strings["Webpages"] = "Webseiten";
+$a->strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen";
 $a->strings["Manage Webpages"] = "Webseiten verwalten";
+$a->strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen";
+$a->strings["Empty name"] = "Namensfeld leer";
+$a->strings["Name too long"] = "Name ist zu lang";
+$a->strings["No account identifier"] = "Keine Account-Kennung";
+$a->strings["Nickname is required."] = "Spitzname ist erforderlich.";
+$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt.";
+$a->strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen";
+$a->strings["Default Profile"] = "Standard-Profil";
+$a->strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar.";
+$a->strings[" Sorry, you don't have the permission to view this profile. "] = "Entschuldigung, aber du besitzt nicht die nötigen Rechte um dieses Profil ansehen zu dürfen.";
+$a->strings["Requested profile is not available."] = "Erwünschte Profil ist nicht verfügbar.";
+$a->strings["Change profile photo"] = "Ändere das Profilfoto";
+$a->strings["Profiles"] = "Profile";
+$a->strings["Manage/edit profiles"] = "Verwalte/Bearbeite Profile";
+$a->strings["Create New Profile"] = "Neues Profil erstellen";
+$a->strings["Edit Profile"] = "Profile bearbeiten";
+$a->strings["Profile Image"] = "Profilfoto:";
+$a->strings["visible to everybody"] = "sichtbar für jeden";
+$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
+$a->strings["Gender:"] = "Geschlecht:";
+$a->strings["Status:"] = "Status:";
+$a->strings["Homepage:"] = "Homepage:";
+$a->strings["Online Now"] = "gerade online";
+$a->strings["g A l F d"] = "l, d. F G \\\\U\\\\h\\\\r";
+$a->strings["F d"] = "d. F";
+$a->strings["[today]"] = "[Heute]";
+$a->strings["Birthday Reminders"] = "Geburtstags Erinnerungen";
+$a->strings["Birthdays this week:"] = "Geburtstage in dieser Woche:";
+$a->strings["[No description]"] = "[Keine Beschreibung]";
+$a->strings["Event Reminders"] = "Veranstaltungs- Erinnerungen";
+$a->strings["Events this week:"] = "Veranstaltungen in dieser Woche:";
+$a->strings["Profile"] = "Profil";
+$a->strings["Full Name:"] = "Voller Name:";
+$a->strings["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "Geburtstag:";
+$a->strings["Age:"] = "Alter:";
+$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
+$a->strings["Sexual Preference:"] = "Sexuelle Orientierung:";
+$a->strings["Hometown:"] = "Heimatstadt:";
+$a->strings["Tags:"] = "Schlagworte:";
+$a->strings["Political Views:"] = "Politische Ansichten:";
+$a->strings["Religion:"] = "Religion:";
+$a->strings["About:"] = "Über:";
+$a->strings["Hobbies/Interests:"] = "Hobbys/Interessen:";
+$a->strings["Likes:"] = "Gefällt-mir:";
+$a->strings["Dislikes:"] = "Gefällt-mir-nicht:";
+$a->strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:";
+$a->strings["My other channels:"] = "Meine anderen Kanäle:";
+$a->strings["Musical interests:"] = "Musikalische Interessen:";
+$a->strings["Books, literature:"] = "Bücher, Literatur:";
+$a->strings["Television:"] = "Fernsehen:";
+$a->strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltung:";
+$a->strings["Love/Romance:"] = "Liebe/Romantik:";
+$a->strings["Work/employment:"] = "Arbeit/Anstellung:";
+$a->strings["School/education:"] = "Schule/Ausbildung:";
+$a->strings["Private Message"] = "Private Nachricht";
+$a->strings["Edit"] = "Bearbeiten";
+$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["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["Bookmark Links"] = "Setze Lesezeichen für die Verweise";
+$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["Public Timeline"] = "Öffentliche Zeitleiste";
+$a->strings["view full size"] = "In Vollbildansicht anschauen";
+$a->strings["created a new post"] = "Neuer Beitrag wurde erzeugt";
+$a->strings["commented on %s's post"] = "hat %s's Beitrag kommentiert";
+$a->strings["Male"] = "Männlich";
+$a->strings["Female"] = "Weiblich";
+$a->strings["Currently Male"] = "Momentan männlich";
+$a->strings["Currently Female"] = "Momentan weiblich";
+$a->strings["Mostly Male"] = "Größtenteils männlich";
+$a->strings["Mostly Female"] = "Größtenteils weiblich";
+$a->strings["Transgender"] = "Transsexuell";
+$a->strings["Intersex"] = "Zwischengeschlechtlich";
+$a->strings["Transsexual"] = "Transsexuell";
+$a->strings["Hermaphrodite"] = "Zwitter";
+$a->strings["Neuter"] = "Geschlechtslos";
+$a->strings["Non-specific"] = "unklar";
+$a->strings["Other"] = "Anders";
+$a->strings["Undecided"] = "Unentschieden";
+$a->strings["Males"] = "Männer";
+$a->strings["Females"] = "Frauen";
+$a->strings["Gay"] = "Schwul";
+$a->strings["Lesbian"] = "Lesbisch";
+$a->strings["No Preference"] = "Keine Bevorzugung";
+$a->strings["Bisexual"] = "Bisexuell";
+$a->strings["Autosexual"] = "Autosexuell";
+$a->strings["Abstinent"] = "Enthaltsam";
+$a->strings["Virgin"] = "Jungfräulich";
+$a->strings["Deviant"] = "Abweichend";
+$a->strings["Fetish"] = "Fetisch";
+$a->strings["Oodles"] = "Unmengen";
+$a->strings["Nonsexual"] = "Sexlos";
+$a->strings["Single"] = "Single";
+$a->strings["Lonely"] = "Einsam";
+$a->strings["Available"] = "Verfügbar";
+$a->strings["Unavailable"] = "Nicht verfügbar";
+$a->strings["Has crush"] = "Verguckt";
+$a->strings["Infatuated"] = "Verknallt";
+$a->strings["Dating"] = "Lerne gerade jemanden kennen";
+$a->strings["Unfaithful"] = "Treulos";
+$a->strings["Sex Addict"] = "Sexabhängig";
+$a->strings["Friends/Benefits"] = "Freunde/Begünstigte";
+$a->strings["Casual"] = "Lose";
+$a->strings["Engaged"] = "Verlobt";
+$a->strings["Married"] = "Verheiratet";
+$a->strings["Imaginarily married"] = "Gewissermaßen verheiratet";
+$a->strings["Partners"] = "Partner";
+$a->strings["Cohabiting"] = "Lebensgemeinschaft";
+$a->strings["Common law"] = "Informelle Ehe";
+$a->strings["Happy"] = "Glücklich";
+$a->strings["Not looking"] = "Nicht Ausschau haltend";
+$a->strings["Swinger"] = "Swinger";
+$a->strings["Betrayed"] = "Betrogen";
+$a->strings["Separated"] = "Getrennt";
+$a->strings["Unstable"] = "Labil";
+$a->strings["Divorced"] = "Geschieden";
+$a->strings["Imaginarily divorced"] = "Gewissermaßen geschieden";
+$a->strings["Widowed"] = "Verwitwet";
+$a->strings["Uncertain"] = "Ungewiss";
+$a->strings["It's complicated"] = "Es ist kompliziert";
+$a->strings["Don't care"] = "Interessiert mich nicht";
+$a->strings["Ask me"] = "Frag mich mal";
+$a->strings["Missing room name"] = "Der Chatraum hat keinen Namen";
+$a->strings["Duplicate room name"] = "Name des Chatraums bereits vergeben";
+$a->strings["Invalid room specifier."] = "Ungültiger Raumbezeichner.";
+$a->strings["Room not found."] = "Chatraum konnte nicht gefunden werden.";
+$a->strings["Room is full"] = "Der Raum ist voll";
+$a->strings["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["likes"] = "Gefällt-mir";
+$a->strings["dislikes"] = "Gefällt-mir-nicht";
+$a->strings["Logged out."] = "Ausgeloggt.";
+$a->strings["Failed authentication"] = "Authentifizierung fehlgeschlagen";
+$a->strings["Login failed."] = "Login fehlgeschlagen.";
+$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";
+$a->strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert.";
+$a->strings["An invitation is required."] = "Eine Einladung wird benötigt";
+$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden";
+$a->strings["Please enter the required information."] = "Bitte gib die benötigten Informationen ein.";
+$a->strings["Failed to store account information."] = "Speichern der Account-Informationen fehlgeschlagen";
+$a->strings["Registration request at %s"] = "Registrierungsanfrage auf %s";
+$a->strings["Administrator"] = "Administrator";
+$a->strings["your registration password"] = "dein Registrierungspasswort";
+$a->strings["Registration details for %s"] = "Registrierungsdetails für %s";
+$a->strings["Account approved."] = "Account bestätigt.";
+$a->strings["Registration revoked for %s"] = "Registrierung für %s widerrufen";
+$a->strings["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:Benachrichtigung] Kommentar in Unterhaltung #%1\$d von %2\$s";
+$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s hat 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 getaggt";
+$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:Benachrichtigung] 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["Image exceeds website size limit of %lu bytes"] = "Bild überschreitet das Limit der Webseite von %lu bytes";
+$a->strings["Image file is empty."] = "Bilddatei ist leer.";
+$a->strings["Unable to process image"] = "Kann Bild nicht verarbeiten";
+$a->strings["Photo storage failed."] = "Foto speichern schlug fehl";
+$a->strings["Upload New Photos"] = "Lade neue Fotos hoch";
+$a->strings["Edit File properties"] = "Dateieigenschaften ändern";
+$a->strings["%d invitation available"] = array(
+	0 => "%d Einladung verfügbar",
+	1 => "%d Einladungen verfügbar",
+);
+$a->strings["Find Channels"] = "Finde Kanäle";
+$a->strings["Enter name or interest"] = "Name oder Interessen eingeben";
+$a->strings["Connect/Follow"] = "Verbinden/Folgen";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiele: Robert Morgenstein, Angeln";
+$a->strings["Find"] = "Finde";
+$a->strings["Channel Suggestions"] = "Kanal-Vorschläge";
+$a->strings["Random Profile"] = "Zufallsprofil";
+$a->strings["Invite Friends"] = "Lade Freunde ein";
+$a->strings["%d connection in common"] = array(
+	0 => "%d gemeinsame Verbindung",
+	1 => "%d gemeinsame Verbindungen",
+);
+$a->strings["New Page"] = "Neue Seite";
+$a->strings["Click here to upgrade."] = "Klicke hier, um das Upgrade durchzuführen.";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Grenzen Ihres Abonnements.";
+$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar.";
+$a->strings["Channel is blocked on this site."] = "Der Kanal ist auf dieser Seite blockiert ";
+$a->strings["Channel location missing."] = "Adresse des Kanals fehlt.";
+$a->strings["Channel discovery failed. Website may be down or misconfigured."] = "Auffinden des Kanals schlug fehl. Die Webseite könnte falsch konfiguriert oder abgeschaltet sein.";
+$a->strings["Response from remote channel was not understood."] = "Antwort des entfernten Kanals war unverständlich.";
+$a->strings["Response from remote channel was incomplete."] = "Antwort des entfernten Kanals war unvollständig.";
+$a->strings["local account not found."] = "Lokales Konto nicht gefunden.";
+$a->strings["Cannot connect to yourself."] = "Du kannst dich nicht mit dir selbst verbinden.";
+$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde.";
+$a->strings["Default"] = "Standard";
+$a->strings["Embedded content"] = "Eingebetteter Inhalt";
+$a->strings["Embedding disabled"] = "Einbetten ausgeschaltet";
+$a->strings["Can view my \"public\" stream and posts"] = "Kann meinen öffentlichen Stream und Beiträge sehen";
+$a->strings["Can view my \"public\" channel profile"] = "Kann meinen öffentliches Kanal-Profil sehen";
+$a->strings["Can view my \"public\" photo albums"] = "Kann meine öffentlichen Fotoalben sehen";
+$a->strings["Can view my \"public\" address book"] = "Kann mein öffentliches Adressbuch sehen";
+$a->strings["Can view my \"public\" file storage"] = "Kann meinen öffentlichen Dateiordner sehen";
+$a->strings["Can view my \"public\" pages"] = "Kann meine öffentlichen Seiten sehen";
+$a->strings["Can send me their channel stream and posts"] = "Können mir den Stream und die Beiträge aus ihrem Kanal schicken";
+$a->strings["Can post on my channel page (\"wall\")"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen";
+$a->strings["Can comment on my posts"] = "Kann meine Beiträge kommentieren";
+$a->strings["Can send me private mail messages"] = "Kann mir private Nachrichten schicken";
+$a->strings["Can post photos to my photo albums"] = "Kann Fotos in meinen Fotoalben veröffentlichen";
+$a->strings["Can forward to all my channel contacts via post @mentions"] = "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten";
+$a->strings["Advanced - useful for creating group forum channels"] = "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen";
+$a->strings["Can chat with me (when available)"] = "Kann mit mir chatten (wenn verfügbar)";
+$a->strings["Can write to my \"public\" file storage"] = "Kann in meinen öffentlichen Dateiordner schreiben";
+$a->strings["Can edit my \"public\" pages"] = "Kann meine öffentlichen Seiten bearbeiten";
+$a->strings["Can source my \"public\" posts in derived channels"] = "Kann meine \"öffentlichen\" Beiträge als Quellen von Kanälen verwenden";
+$a->strings["Somewhat advanced - very useful in open communities"] = "Etwas Fortgeschritten - sehr nützlich in offenen Gemeinschaften.";
+$a->strings["Can send me bookmarks"] = "Darf mir Lesezeichen senden";
+$a->strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren";
+$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite dies nur, wenn du genau weißt, was du machst";
+$a->strings["Permission denied"] = "Keine Berechtigung";
+$a->strings["Item not found."] = "Element nicht gefunden.";
+$a->strings["Collection not found."] = "Sammlung nicht gefunden";
+$a->strings["Collection is empty."] = "Sammlung ist leer.";
+$a->strings["Collection: %s"] = "Sammlung: %s";
+$a->strings["Connection: %s"] = "Verbindung: %s";
+$a->strings["Connection not found."] = "Die Verbindung wurde nicht gefunden.";
 $a->strings["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";
@@ -794,83 +806,38 @@ $a->strings["Please visit my channel at"] = "Bitte besuche meinen Kanal auf";
 $a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "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:";
 $a->strings["Click the [Register] link on the following page to join."] = "Klicke den [Registrieren]-Link auf der nächsten Seite, um dich anzumelden.";
 $a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "Für weitere Informationen über das Red Matrix Projekt und warum es das Potential hat das Internet wie wir es kennen grundlegend zu verändern schau dir bitte http://getzot.com an";
-$a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"] = "Red Matrix Gäste: Nutzername: {deine Email Adresse}; Passwort: +++";
-$a->strings["Could not access contact record."] = "Konnte auf den Kontakteintrag nicht zugreifen.";
-$a->strings["Could not locate selected profile."] = "Konnte das gewählte Profil nicht finden.";
-$a->strings["Connection updated."] = "Verbindung aktualisiert.";
-$a->strings["Failed to update connection record."] = "Konnte den Verbindungseintrag nicht aktualisieren.";
-$a->strings["Could not access address book record."] = "Konnte nicht auf den Eintrag im Adressbuch zugreifen.";
-$a->strings["Refresh failed - channel is currently unavailable."] = "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar.";
-$a->strings["Channel has been unblocked"] = "Kanal nicht mehr blockiert";
-$a->strings["Channel has been blocked"] = "Kanal blockiert";
-$a->strings["Unable to set address book parameters."] = "Konnte die Adressbuch Parameter nicht setzen.";
-$a->strings["Channel has been unignored"] = "Kanal wird nicht mehr ignoriert";
-$a->strings["Channel has been ignored"] = "Kanal wird ignoriert";
-$a->strings["Channel has been unarchived"] = "Kanal wurde aus dem Archiv zurück geholt";
-$a->strings["Channel has been archived"] = "Kanal wurde archiviert";
-$a->strings["Channel has been unhidden"] = "Kanal wird nicht mehr versteckt";
-$a->strings["Channel has been hidden"] = "Kanal wurde versteckt";
-$a->strings["Channel has been approved"] = "Kanal wurde zugelassen";
-$a->strings["Channel has been unapproved"] = "Zulassung des Kanals entfernt";
-$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
-$a->strings["View %s's profile"] = "%s's Profil ansehen";
-$a->strings["Refresh Permissions"] = "Zugriffsrechte auffrischen";
-$a->strings["Fetch updated permissions"] = "Aktualisierte Zugriffsrechte abfragen";
-$a->strings["Recent Activity"] = "Kürzliche Aktivitäten";
-$a->strings["View recent posts and comments"] = "Betrachte die neuesten Beiträge und Kommentare";
-$a->strings["Unblock"] = "Freigeben";
-$a->strings["Block"] = "Blockieren";
-$a->strings["Block or Unblock this connection"] = "Verbindung blockieren oder frei geben";
-$a->strings["Unignore"] = "Nicht ignorieren";
-$a->strings["Ignore"] = "Ignorieren";
-$a->strings["Ignore or Unignore this connection"] = "Verbindung ignorieren oder wieder beachten";
-$a->strings["Unarchive"] = "Aus Archiv zurückholen";
-$a->strings["Archive"] = "Archivieren";
-$a->strings["Archive or Unarchive this connection"] = "Archiviere diese Verbindung oder hole sie aus dem Archiv zurück";
-$a->strings["Unhide"] = "aufdecken";
-$a->strings["Hide"] = "Verbergen";
-$a->strings["Hide or Unhide this connection"] = "Diese Verbindung verstecken oder aufdecken";
-$a->strings["Delete this connection"] = "Verbindung löschen";
-$a->strings["Unknown"] = "Unbekannt";
-$a->strings["Approve this connection"] = "Verbindung genehmigen";
-$a->strings["Accept connection to allow communication"] = "Aktzeptiere die Verbindung um Kommunikation zu ermöglichen";
-$a->strings["Automatic Permissions Settings"] = "Automatische Berechtigungs-Einstellungen";
-$a->strings["Connections: settings for %s"] = "Verbindungseinstellungen für %s";
-$a->strings["When receiving a channel introduction, any permissions provided here will be applied to the new connection automatically and the introduction approved. Leave this page if you do not wish to use this feature."] = "Wenn eine Kanal-Vorstellung empfangen wird, werden die hier getroffenen Einstellungen automatisch angewandt und der Anfrage wird stattgegeben. Verlasse diese Seite, wenn du dieses Feature nicht verwanden möchtest.";
-$a->strings["Slide to adjust your degree of friendship"] = "Schieben um den Grad der Freundschaft zu wählen";
-$a->strings["inherited"] = "Geerbt";
-$a->strings["Connection has no individual permissions!"] = "Diese Verbindung hat keine individuellen Zugriffseinstellungen.";
-$a->strings["This may be appropriate based on your <a href=\"settings\">privacy settings</a>, though you may wish to review the \"Advanced Permissions\"."] = "Abhängig von deinen <a href=\"settings\">Privatsphären Einstellungen</a> könnte dies angebracht sein, eventuell solltest du aber die \"Erweiterte Zugriffsrechte\" überprüfen.";
-$a->strings["Profile Visibility"] = "Sichtbarkeit des Profils";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn deine Profilseite über eine verifizierte Verbindung aufgerufen wird.";
-$a->strings["Contact Information / Notes"] = "Kontaktinformationen / Notizen";
-$a->strings["Edit contact notes"] = "Kontaktnotizen editieren";
-$a->strings["Their Settings"] = "Deren Einstellungen";
-$a->strings["My Settings"] = "Meine Einstellungen";
-$a->strings["Forum Members"] = "Forum Mitglieder";
-$a->strings["Soapbox"] = "Marktschreier";
-$a->strings["Full Sharing"] = "Volles Teilen";
-$a->strings["Cautious Sharing"] = "Vorsichtiges Teilen";
-$a->strings["Follow Only"] = "Nur Folgen";
-$a->strings["Individual Permissions"] = "Individuelle Zugriffseinstellungen";
-$a->strings["Some permissions may be inherited from your channel <a href=\"settings\">privacy settings</a>, which have higher priority. Changing those inherited settings on this page will have no effect."] = "Einige Genehmigungen können von deinen <a href=\"settings\">Sicherheits- und Datenschutz-Einstellungen</a> geerbt sein (siehe Kennzeichnung), da diese eine höhere Priorität haben. Wenn du solche Genehmigungen hier änderst, hat das keine Auswirkungen.";
-$a->strings["Advanced Permissions"] = "Erweiterte Zugriffsrechte";
-$a->strings["Quick Links"] = "Quick Links";
-$a->strings["Visit %s's profile - %s"] = "%s's Profil besuchen - %s";
-$a->strings["Block/Unblock contact"] = "Geblockt Status ein- / ausschalten";
-$a->strings["Ignore contact"] = "Kontakt ignorieren";
-$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
-$a->strings["View conversations"] = "Unterhaltungen anzeigen";
-$a->strings["Delete contact"] = "Kontakt löschen";
-$a->strings["Last update:"] = "Letzte Aktualisierung:";
-$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
-$a->strings["Update now"] = "Jetzt aktualisieren";
-$a->strings["Currently blocked"] = "Derzeit blockiert";
-$a->strings["Currently ignored"] = "Derzeit ignoriert";
-$a->strings["Currently archived"] = "Derzeit archiviert";
-$a->strings["Currently pending"] = "Derzeit anstehend";
-$a->strings["Hide this contact from others"] = "Diese Verbindung vor den anderen verbergen.";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>können</strong> immer noch sichtbar 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["Wall Photos"] = "Wall Fotos";
+$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["Menu updated."] = "Menü aktualisiert.";
+$a->strings["Unable to update menu."] = "Kann Menü nicht aktualisieren.";
+$a->strings["Menu created."] = "Menü erstellt.";
+$a->strings["Unable to create menu."] = "Kann Menü nicht erstellen.";
+$a->strings["Manage Menus"] = "Menüs verwalten";
+$a->strings["Drop"] = "Löschen";
+$a->strings["Create a new menu"] = "Neues Menü erstellen";
+$a->strings["Delete this menu"] = "Lösche dieses Menü";
+$a->strings["Edit menu contents"] = "Bearbeite Menü Inhalte";
+$a->strings["Edit this menu"] = "Dieses Menü bearbeiten";
+$a->strings["New Menu"] = "Neues Menü";
+$a->strings["Menu name"] = "Menü Name";
+$a->strings["Must be unique, only seen by you"] = "Muss unverwechselbar sein, nur für dich sichtbar";
+$a->strings["Menu title"] = "Menü Titel";
+$a->strings["Menu title as seen by others"] = "Menü Titel wie er von anderen gesehen wird";
+$a->strings["Allow bookmarks"] = "Erlaube Lesezeichen";
+$a->strings["Menu may be used to store saved bookmarks"] = "Im Menü können gespeicherte Lesezeichen abgelegt werden";
+$a->strings["Create"] = "Erstelle";
+$a->strings["Menu not found."] = "Menü nicht gefunden";
+$a->strings["Menu deleted."] = "Menü gelöscht.";
+$a->strings["Menu could not be deleted."] = "Menü konnte nicht gelöscht werden.";
+$a->strings["Edit Menu"] = "Menü bearbeiten";
+$a->strings["Add or remove entries to this menu"] = "Einträge zu diesem Menü hinzufügen oder entfernen";
+$a->strings["Modify"] = "Ändern";
+$a->strings["Not found."] = "Nicht gefunden.";
 $a->strings["View"] = "Ansicht";
 $a->strings["Authorize application connection"] = "Zugriff der Anwendung authorizieren";
 $a->strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode bei der Anwendung ein:";
@@ -880,88 +847,120 @@ $a->strings["Yes"] = "Ja";
 $a->strings["No"] = "Nein";
 $a->strings["No installed applications."] = "Keine installierten Applikationen";
 $a->strings["Applications"] = "Anwendungen";
-$a->strings["Invalid item."] = "Ungültiges Element.";
-$a->strings["Channel not found."] = "Kanal nicht gefunden.";
-$a->strings["Page not found."] = "Seite nicht gefunden.";
-$a->strings["Item not available."] = "Element nicht verfügbar.";
-$a->strings["Red Matrix Server - Setup"] = "Red Matrix Server - Installation";
-$a->strings["Could not connect to database."] = "Kann nicht mit der Datenbank verbinden.";
-$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Konnte die angegebene Webseiten URL nicht erreichen. Möglicherweise ein Problem mit dem SSL Zertifikat oder dem DNS.";
-$a->strings["Could not create table."] = "Kann Tabelle nicht erstellen.";
-$a->strings["Your site database has been installed."] = "Die Datenbank deiner Seite wurde installiert.";
-$a->strings["You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql."] = "Eventuell musst du die Datei \"install/database.sql\" händisch mit phpmyadmin oder mysql importieren.";
-$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Lies die Datei \"install/INSTALL.txt\".";
-$a->strings["System check"] = "Systemprüfung";
-$a->strings["Check again"] = "Bitte nochmal prüfen";
-$a->strings["Database connection"] = "Datenbank Verbindung";
-$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "Um die Red Matrix installieren zu können, müssen wir wissen wie wir deine Datenbank kontaktieren können.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere deinen Hosting Provider oder den Administrator der Seite wenn du Fragen zu diesen Einstellungen haben solltest.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor du fortfährst.";
-$a->strings["Database Server Name"] = "Datenbank-Servername";
-$a->strings["Default is localhost"] = "Standard ist localhost";
-$a->strings["Database Port"] = "Datenbank-Port";
-$a->strings["Communication port number - use 0 for default"] = "Port Nummer zur Kommunikation - verwende 0 für die Standardeinstellung:";
-$a->strings["Database Login Name"] = "Datenbank-Benutzername";
-$a->strings["Database Login Password"] = "Datenbank-Kennwort";
-$a->strings["Database Name"] = "Datenbank-Name";
-$a->strings["Site administrator email address"] = "E-Mail Adresse des Seiten-Administrators";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die Email-Adresse deines Accounts muss dieser Adresse entsprechen, damit du Zugriff zum Admin Panel erhältst.";
-$a->strings["Website URL"] = "Webseiten URL";
-$a->strings["Please use SSL (https) URL if available."] = "Nutze wenn möglich eine SSL-URL (https).";
-$a->strings["Please select a default timezone for your website"] = "Standard-Zeitzone für deine Website";
-$a->strings["Site settings"] = "Seiteneinstellungen";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte die Kommandozeilen Version von PHP nicht im PATH des Servers finden.";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Solltest du keine Kommandozeilen Version von PHP auf dem Server installiert haben wirst du nicht in der Lage sein Hintergrundprozesse via cron auszuführen.";
-$a->strings["PHP executable path"] = "PHP Pfad zu ausführbarer Datei";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den vollen Pfad zum PHP Interpreter an. Du kannst dieses Felds frei lassen und mit der Installation fortfahren.";
-$a->strings["Command line PHP"] = "PHP Befehlszeile";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilen Version von PHP auf deinem System hat \"register_argc_argv\" nicht aktiviert.";
-$a->strings["This is required for message delivery to work."] = "Dies wird benötigt, damit die Auslieferung von Nachrichten funktioniert.";
-$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die \"openssl_pkey_new\" Funktion auf diesem System ist nicht in der Lage Schlüssel für die Verschlüsselung zu erzeugen.";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn du Windows verwendest, siehe  http://www.php.net/manual/en/openssl.installation.php für eine Installationsanleitung.";
-$a->strings["Generate encryption keys"] = "Verschlüsselungsschlüssel  generieren";
-$a->strings["libCurl PHP module"] = "libCurl PHP Modul";
-$a->strings["GD graphics PHP module"] = "GD Graphik PHP Modul";
-$a->strings["OpenSSL PHP module"] = "OpenSSL PHP Modul";
-$a->strings["mysqli PHP module"] = "mysqli PHP Modul";
-$a->strings["mb_string PHP module"] = "mb_string PHP Modul";
-$a->strings["mcrypt PHP module"] = "mcrypt PHP Modul";
-$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite Modul";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache Modul mod-rewrite wird benötigt ist aber nicht installiert.";
-$a->strings["proc_open"] = "proc_open";
-$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Fehler: proc_open wird benötigt ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: das PHP Modul libCURL wird benütigt ist aber nicht installiert.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: das PHP Modul GD Grafik mit JPEG Unterstützung wird benötigt ist aber nicht installiert.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: das OpenSSL PHP Modul wird benötigt ist aber nicht installiert.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: das PHP Modul mysqli wird benötigt ist aber nicht installiert.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: das PHP Modul mb_string wird benötigt ist aber nicht installiert.";
-$a->strings["Error: mcrypt PHP module required but not installed."] = "Fehler: das PHP Modul mcrypt wird benötigt ist aber nicht installiert.";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\ in the top folder of your web server and it is unable to do so."] = "Der Installations-Assistent muss in der Lage sein die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist es aber nicht.";
-$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Meist liegt 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.";
-$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Am Schluss des Vorgangs wird ein Text generiert, den du unter dem Dateinamen .htconfig.php im Stammverzeichnis deiner Red Installation speichern.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Alternativ kannst du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt.";
-$a->strings[".htconfig.php is writable"] = ".htconfig.php ist beschreibbar";
-$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP um die Darstellung zu beschleunigen.";
-$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/tpl/smarty3/ under the Red top level folder."] = "Um die übersetzten Vorlagen speichern zu können muss der Webserver schreib Zugriff auf das Verzeichnis view/tpl/smarty3/ unterhalb des Red Stammverzeichnisses haben.";
-$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.";
-$a->strings["Url rewrite is working"] = "Url rewrite funktioniert";
-$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Datenbank Konfigurationsdatei \".htconfig.php\" konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen.";
-$a->strings["Errors encountered creating database tables."] = "Fehler während des Anlegens der Datenbank Tabellen aufgetreten.";
-$a->strings["<h1>What next</h1>"] = "<h1>Was als Nächstes</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst die geplanten Aufgaben für den Poller [manuell] einrichten.";
 $a->strings["Edit post"] = "Bearbeite Beitrag";
+$a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"] = "Red Matrix Gäste: Nutzername: {deine Email Adresse}; Passwort: +++";
+$a->strings["Bookmark added"] = "Lesezeichen hinzugefügt";
+$a->strings["My Bookmarks"] = "Meine Lesezeichen";
+$a->strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte";
+$a->strings["Name is required"] = "Name wird benötigt";
+$a->strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt";
+$a->strings["Update"] = "Update";
+$a->strings["Passwords do not match. Password unchanged."] = "Kennwörter stimmen nicht überein. Kennwort nicht verändert.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert.";
+$a->strings["Password changed."] = "Kennwort geändert.";
+$a->strings["Password update failed. Please try again."] = "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal.";
+$a->strings["Not valid email."] = "Keine gültige E-Mail Adresse.";
+$a->strings["Protected email address. Cannot change to that email."] = "Geschützte E-Mail Adresse. Diese kann nicht verändert werden.";
+$a->strings["System failure storing new email. Please try again."] = "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal.";
+$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
+$a->strings["Add application"] = "Anwendung hinzufügen";
+$a->strings["Name"] = "Name";
+$a->strings["Name of application"] = "Name der Anwendung";
+$a->strings["Consumer Key"] = "Consumer Key";
+$a->strings["Automatically generated - change if desired. Max length 20"] = "Automatisch erzeugt - ändern falls erwünscht. Maximale Länge 20";
+$a->strings["Consumer Secret"] = "Consumer Secret";
+$a->strings["Redirect"] = "Umleitung";
+$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "Umleitungs-URl - lasse dies frei außer deine Anwendung erfordert dies explizit";
+$a->strings["Icon url"] = "Symbol-URL";
+$a->strings["Optional"] = "Optional";
+$a->strings["You can't edit this application."] = "Diese Anwendung kann nicht bearbeitet werden.";
+$a->strings["Connected Apps"] = "Verbundene Apps";
+$a->strings["Client key starts with"] = "Client key beginnt mit";
+$a->strings["No name"] = "Kein Name";
+$a->strings["Remove authorization"] = "Authorisierung aufheben";
+$a->strings["No feature settings configured"] = "Keine Funktions-Einstellungen konfiguriert";
+$a->strings["Feature Settings"] = "Funktions-Einstellungen";
+$a->strings["Account Settings"] = "Konto-Einstellungen";
+$a->strings["Password Settings"] = "Kennwort-Einstellungen";
+$a->strings["New Password:"] = "Neues Passwort:";
+$a->strings["Confirm:"] = "Bestätigen:";
+$a->strings["Leave password fields blank unless changing"] = "Lasse die Passwort -Felder leer außer du möchtest das Passwort ändern";
+$a->strings["Email Address:"] = "Email Adresse:";
+$a->strings["Remove Account"] = "Konto entfernen";
+$a->strings["Warning: This action is permanent and cannot be reversed."] = "Achtung: Diese Aktion ist permanent und kann nicht rückgänging gemacht werden.";
+$a->strings["Off"] = "Aus";
+$a->strings["On"] = "An";
+$a->strings["Additional Features"] = "Zusätzliche Funktionen";
+$a->strings["Connector Settings"] = "Connector-Einstellungen";
+$a->strings["No special theme for mobile devices"] = "Keine spezielle Theme für mobile Geräte";
+$a->strings["Display Settings"] = "Anzeige-Einstellungen";
+$a->strings["Display Theme:"] = "Anzeige Theme:";
+$a->strings["Mobile Theme:"] = "Mobile Theme:";
+$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren";
+$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum von 10 Sekunden, kein Maximum";
+$a->strings["Maximum number of conversations to load at any time:"] = "Maximale Anzahl von Unterhaltungen die gleichzeitig geladen werden sollen:";
+$a->strings["Maximum of 100 items"] = "Maximum von 100 Beiträgen";
+$a->strings["Don't show emoticons"] = "Emoticons nicht zeigen";
+$a->strings["Nobody except yourself"] = "Niemand außer du selbst";
+$a->strings["Only those you specifically allow"] = "Nur die, denen du es explizit erlaubst";
+$a->strings["Anybody in your address book"] = "Jeder aus Ihrem Adressbuch";
+$a->strings["Anybody on this website"] = "Jeder auf dieser Website";
+$a->strings["Anybody in this network"] = "Jeder in diesem Netzwerk";
+$a->strings["Anybody on the internet"] = "Jeder im Internet";
+$a->strings["Publish your default profile in the network directory"] = "Veröffentliche dein Standard-Profil im Netzwerk-Verzeichnis";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?";
+$a->strings["or"] = "oder";
+$a->strings["Your channel address is"] = "Deine Kanal-Adresse lautet";
+$a->strings["Channel Settings"] = "Kanal-Einstellungen";
+$a->strings["Basic Settings"] = "Grundeinstellungen";
+$a->strings["Your Timezone:"] = "Ihre Zeitzone:";
+$a->strings["Default Post Location:"] = "Standardstandort:";
+$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:";
+$a->strings["Adult Content"] = "Nicht Jugendfreie-Inhalte";
+$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dieser Kanal veröffentlicht regelmäßig Inhalte die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)";
+$a->strings["Security and Privacy Settings"] = "Sicherheits- und Datenschutz-Einstellungen";
+$a->strings["Hide my online presence"] = "Meine Online-Präsenz verbergen";
+$a->strings["Prevents displaying in your profile that you are online"] = "Verhindert die Anzeige deines Online-Status in deinem Profil";
+$a->strings["Simple Privacy Settings:"] = "Einfache Privatsphären-Einstellungen";
+$a->strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "";
+$a->strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "";
+$a->strings["Private - <em>default private, never open or public</em>"] = "";
+$a->strings["Blocked - <em>default blocked to/from everybody</em>"] = "";
+$a->strings["Advanced Privacy Settings"] = "";
+$a->strings["Maximum Friend Requests/Day:"] = "Maximale Kontaktanfragen pro Tag:";
+$a->strings["May reduce spam activity"] = "Kann die Spam-Aktivität verringern";
+$a->strings["Default Post Permissions"] = "Beitragszugriffrechte Standardeinstellungen";
+$a->strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)";
+$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:";
+$a->strings["Useful to reduce spamming"] = "Nützlich um Spam zu verringern";
+$a->strings["Notification Settings"] = "Benachrichtigungs-Einstellungen";
+$a->strings["By default post a status message when:"] = "Sende standardmäßig Status-Nachrichten wenn:";
+$a->strings["accepting a friend request"] = "einer Kontaktanfrage stattgegeben wurde";
+$a->strings["joining a forum/community"] = "ein Forum beigetreten wurde";
+$a->strings["making an <em>interesting</em> profile change"] = "eine <em>interessante</em> Änderung am Profil vorgenommen wurde";
+$a->strings["Send a notification email when:"] = "Eine Email Benachrichtigung senden wenn:";
+$a->strings["You receive an introduction"] = "Du eine Vorstellung erhältst";
+$a->strings["Your introductions are confirmed"] = "Deine Vorstellung bestätigt wurde.";
+$a->strings["Someone writes on your profile wall"] = "Jemand auf deine Pinnwand schreibt";
+$a->strings["Someone writes a followup comment"] = "Jemand einen Beitrag kommentiert";
+$a->strings["You receive a private message"] = "Du eine private Nachricht erhältst";
+$a->strings["You receive a friend suggestion"] = "Du einen Kontaktvorschlag erhältst";
+$a->strings["You are tagged in a post"] = "Du 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["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$s's %3\$s";
 $a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalte - bitte lade die Seite zur Anzeige neu]";
+$a->strings["Channel not found."] = "Kanal nicht gefunden.";
 $a->strings["toggle full screen mode"] = "auf Vollbildmodus umschalten";
 $a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$s's %3\$s mit %4\$s getaggt";
+$a->strings["You must be logged in to see this page."] = "Du musst angemeldet sein um diese Seite betrachten zu können.";
+$a->strings["Leave Room"] = "Raum verlassen";
+$a->strings["I am away right now"] = "Ich bin gerade nicht da";
+$a->strings["I am online"] = "Ich bin online";
+$a->strings["New Chatroom"] = "Neuen Chatraum";
+$a->strings["Chatroom Name"] = "Chatraum Name";
+$a->strings["%1\$s's Chatrooms"] = "%1\$s's Chat-Räume";
 $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]";
@@ -987,20 +986,51 @@ $a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die S
 $a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
 $a->strings["Add"] = "Hinzufügen";
 $a->strings["No entries."] = "Keine Einträge.";
-$a->strings["Failed to create source. No channel selected."] = "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt.";
-$a->strings["Source created."] = "Quelle erstellt.";
-$a->strings["Source updated."] = "Quelle aktualisiert.";
-$a->strings["Manage remote sources of content for your channel."] = "Entfernte Quellen von Inhalten deines Kanals verwalten.";
-$a->strings["New Source"] = "Neue Quelle";
-$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals.";
-$a->strings["Only import content with these words (one per line)"] = "Importiere ausschließlich Beiträge, die folgende Wörter (eines pro Zeile) enthalten";
-$a->strings["Leave blank to import all public content"] = "Leer lassen um alle öffentlichen Beiträge zu importieren";
-$a->strings["Channel Name"] = "Name des Kanals";
-$a->strings["Source not found."] = "Quelle nicht gefunden.";
-$a->strings["Edit Source"] = "Quelle bearbeiten";
-$a->strings["Delete Source"] = "Quelle löschen";
-$a->strings["Source removed"] = "Quelle gelöscht";
-$a->strings["Unable to remove source."] = "Konnte die Quelle nicht löschen.";
+$a->strings["Away"] = "Abwesend";
+$a->strings["Online"] = "Online";
+$a->strings["Item not available."] = "Element nicht verfügbar.";
+$a->strings["Menu element updated."] = "Menü-Element aktualisiert.";
+$a->strings["Unable to update menu element."] = "Kann Menü-Element nicht aktualisieren.";
+$a->strings["Menu element added."] = "Menü-Bestandteil hinzugefügt.";
+$a->strings["Unable to add menu element."] = "Kann Menü-Bestandteil nicht hinzufügen.";
+$a->strings["Manage Menu Elements"] = "Menü-Bestandteile verwalten";
+$a->strings["Edit menu"] = "Menü bearbeiten";
+$a->strings["Edit element"] = "Bestandteil bearbeiten";
+$a->strings["Drop element"] = "Bestandteil löschen";
+$a->strings["New element"] = "Neues Bestandteil";
+$a->strings["Edit this menu container"] = "Diesen Menü-Container bearbeiten";
+$a->strings["Add menu element"] = "Menüelement hinzufügen";
+$a->strings["Delete this menu item"] = "Lösche dieses Menü-Bestandteil";
+$a->strings["Edit this menu item"] = "Bearbeite dieses Menü-Bestandteil";
+$a->strings["New Menu Element"] = "Neues Menü-Bestandteil";
+$a->strings["Menu Item Permissions"] = "Menü-Element Zugriffsrechte";
+$a->strings["Link text"] = "Link Text";
+$a->strings["URL of link"] = "URL des Links";
+$a->strings["Use Red magic-auth if available"] = "Verwende Red Magic-Auth wenn verfügbar";
+$a->strings["Open link in new window"] = "Öffne Link in neuem Fenster";
+$a->strings["Order in list"] = "Reihenfolge in der Liste";
+$a->strings["Higher numbers will sink to bottom of listing"] = "Größere Nummern werden weiter unten in der Auflistung einsortiert";
+$a->strings["Menu item not found."] = "Menü-Bestandteil nicht gefunden.";
+$a->strings["Menu item deleted."] = "Menü-Bestandteil gelöscht.";
+$a->strings["Menu item could not be deleted."] = "Menü-Bestandteil kann nicht gelöscht werden.";
+$a->strings["Edit Menu Element"] = "Bearbeite Menü-Bestandteil";
+$a->strings["Collection created."] = "Sammlung erstellt.";
+$a->strings["Could not create collection."] = "Sammlung kann nicht erstellt werden.";
+$a->strings["Collection updated."] = "Sammlung aktualisiert.";
+$a->strings["Create a collection of channels."] = "Erstelle eine Sammlung von Kanälen.";
+$a->strings["Collection Name: "] = "Name der Sammlung:";
+$a->strings["Members are visible to other channels"] = "Mitglieder sind sichtbar für andere Kanäle";
+$a->strings["Collection removed."] = "Sammlung gelöscht.";
+$a->strings["Unable to remove collection."] = "Löschen der Sammlung nicht möglich.";
+$a->strings["Collection Editor"] = "Sammlung-Editor";
+$a->strings["Members"] = "Mitglieder";
+$a->strings["All Connected Channels"] = "Alle verbundenen Kanäle";
+$a->strings["Click on a channel to add or remove."] = "Wähle einen Kanal zum hinzufügen oder entfernen aus.";
+$a->strings["Invalid profile identifier."] = "Ungültiger Profil Identifikator";
+$a->strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits Editor";
+$a->strings["Click on a contact to add or remove."] = "Wähle einen Kontakt zum Hinzufügen oder Löschen aus.";
+$a->strings["Visible To"] = "Sichtbar für";
+$a->strings["All Connections"] = "Alle Verbindungen";
 $a->strings["Theme settings updated."] = "Theme-Einstellungen aktualisiert.";
 $a->strings["Site"] = "Seite";
 $a->strings["Users"] = "Benutzer";
@@ -1019,7 +1049,6 @@ $a->strings["Pending registrations"] = "Ausstehende Registrierungen";
 $a->strings["Version"] = "Version";
 $a->strings["Active plugins"] = "Aktive Plug-Ins";
 $a->strings["Site settings updated."] = "Site-Einstellungen aktualisiert.";
-$a->strings["No special theme for mobile devices"] = "Keine spezielle Theme für mobile Geräte";
 $a->strings["No special theme for accessibility"] = "Kein spezielles Accessibility Theme vorhanden";
 $a->strings["Closed"] = "Geschlossen";
 $a->strings["Requires approval"] = "Genehmigung erforderlich";
@@ -1105,6 +1134,8 @@ $a->strings["Request date"] = "Antragsdatum";
 $a->strings["No registrations."] = "Keine Registrierungen.";
 $a->strings["Approve"] = "Genehmigen";
 $a->strings["Deny"] = "Verweigern";
+$a->strings["Block"] = "Blockieren";
+$a->strings["Unblock"] = "Freigeben";
 $a->strings["Register date"] = "Registrierungs-Datum";
 $a->strings["Last login"] = "Letzte Anmeldung";
 $a->strings["Expires"] = "Verfällt";
@@ -1116,158 +1147,278 @@ $a->strings["Plugin %s enabled."] = "Plug-In %s aktiviert.";
 $a->strings["Disable"] = "Deaktivieren";
 $a->strings["Enable"] = "Aktivieren";
 $a->strings["Toggle"] = "Umschalten";
-$a->strings["Author: "] = "Autor: ";
-$a->strings["Maintainer: "] = "Betreuer:";
-$a->strings["No themes found."] = "Keine Theme gefunden.";
-$a->strings["Screenshot"] = "Bildschirmfoto";
-$a->strings["[Experimental]"] = "[Experimentell]";
-$a->strings["[Unsupported]"] = "[Nicht unterstützt]";
-$a->strings["Log settings updated."] = "Protokoll-Einstellungen aktualisiert.";
-$a->strings["Clear"] = "Leeren";
-$a->strings["Debugging"] = "Debugging";
-$a->strings["Log file"] = "Protokolldatei";
-$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Muss für den Web-Server schreibbar sein. Relativ zum Red Stammverzeichnis.";
-$a->strings["Log level"] = "Protokollstufe";
-$a->strings["Menu not found."] = "Menü nicht gefunden";
-$a->strings["Menu element updated."] = "Menü-Element aktualisiert.";
-$a->strings["Unable to update menu element."] = "Kann Menü-Element nicht aktualisieren.";
-$a->strings["Menu element added."] = "Menü-Bestandteil hinzugefügt.";
-$a->strings["Unable to add menu element."] = "Kann Menü-Bestandteil nicht hinzufügen.";
-$a->strings["Not found."] = "Nicht gefunden.";
-$a->strings["Manage Menu Elements"] = "Menü-Bestandteile verwalten";
-$a->strings["Edit menu"] = "Menü bearbeiten";
-$a->strings["Edit element"] = "Bestandteil bearbeiten";
-$a->strings["Drop element"] = "Bestandteil löschen";
-$a->strings["New element"] = "Neues Bestandteil";
-$a->strings["Edit this menu container"] = "Diesen Menü-Container bearbeiten";
-$a->strings["Add menu element"] = "Menüelement hinzufügen";
-$a->strings["Delete this menu item"] = "Lösche dieses Menü-Bestandteil";
-$a->strings["Edit this menu item"] = "Bearbeite dieses Menü-Bestandteil";
-$a->strings["New Menu Element"] = "Neues Menü-Bestandteil";
-$a->strings["Menu Item Permissions"] = "Menü-Element Zugriffsrechte";
-$a->strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)";
-$a->strings["Link text"] = "Link Text";
-$a->strings["URL of link"] = "URL des Links";
-$a->strings["Use Red magic-auth if available"] = "Verwende Red Magic-Auth wenn verfügbar";
-$a->strings["Open link in new window"] = "Öffne Link in neuem Fenster";
-$a->strings["Order in list"] = "Reihenfolge in der Liste";
-$a->strings["Higher numbers will sink to bottom of listing"] = "Größere Nummern werden weiter unten in der Auflistung einsortiert";
-$a->strings["Create"] = "Erstelle";
-$a->strings["Menu item not found."] = "Menü-Bestandteil nicht gefunden.";
-$a->strings["Menu item deleted."] = "Menü-Bestandteil gelöscht.";
-$a->strings["Menu item could not be deleted."] = "Menü-Bestandteil kann nicht gelöscht werden.";
-$a->strings["Edit Menu Element"] = "Bearbeite Menü-Bestandteil";
-$a->strings["Modify"] = "Ändern";
-$a->strings["Collection created."] = "Sammlung erstellt.";
-$a->strings["Could not create collection."] = "Sammlung kann nicht erstellt werden.";
-$a->strings["Collection updated."] = "Sammlung aktualisiert.";
-$a->strings["Create a collection of channels."] = "Erstelle eine Sammlung von Kanälen.";
-$a->strings["Collection Name: "] = "Name der Sammlung:";
-$a->strings["Members are visible to other channels"] = "Mitglieder sind sichtbar für andere Kanäle";
-$a->strings["Collection removed."] = "Sammlung gelöscht.";
-$a->strings["Unable to remove collection."] = "Löschen der Sammlung nicht möglich.";
-$a->strings["Collection Editor"] = "Sammlung-Editor";
-$a->strings["Members"] = "Mitglieder";
-$a->strings["All Connected Channels"] = "Alle verbundenen Kanäle";
-$a->strings["Click on a channel to add or remove."] = "Wähle einen Kanal zum hinzufügen oder entfernen aus.";
-$a->strings["Page owner information could not be retrieved."] = "Informationen über den Betreiber der Seite konnten nicht gefunden werden.";
-$a->strings["Album not found."] = "Album nicht gefunden.";
-$a->strings["Delete Album"] = "Album löschen";
-$a->strings["Delete Photo"] = "Foto löschen";
-$a->strings["No photos selected"] = "Keine Fotos ausgewählt";
-$a->strings["Access to this item is restricted."] = "Zugriff auf dieses Foto wurde eingeschränkt.";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du benutzt %1$.2f MBytes deines %2$.2f MBytes großen Bilder-Speichers.";
-$a->strings["You have used %1$.2f Mbytes of photo storage."] = "Du verwendets %1$.2f MBytes deines Foto-Speichers.";
-$a->strings["Upload Photos"] = "Fotos hochladen";
-$a->strings["New album name: "] = "Name des neuen Albums:";
-$a->strings["or existing album name: "] = "oder bestehenden Album Namen:";
-$a->strings["Do not show a status post for this upload"] = "Keine Statusnachricht für diesen Upload senden";
-$a->strings["Permissions"] = "Berechtigungen";
-$a->strings["Contact Photos"] = "Kontakt Bilder";
-$a->strings["Edit Album"] = "Album bearbeiten";
-$a->strings["Show Newest First"] = "Zeige neueste zuerst";
-$a->strings["Show Oldest First"] = "Zeige älteste zuerst";
-$a->strings["View Photo"] = "Foto ansehen";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden.";
-$a->strings["Photo not available"] = "Foto nicht verfügbar";
-$a->strings["Use as profile photo"] = "Als Profilfoto verwenden";
-$a->strings["View Full Size"] = "In voller Größe anzeigen";
-$a->strings["Edit photo"] = "Foto bearbeiten";
-$a->strings["Rotate CW (right)"] = "Drehen US (rechts)";
-$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)";
-$a->strings["New album name"] = "Name des neuen Albums:";
-$a->strings["Caption"] = "Bildunterschrift";
-$a->strings["Add a Tag"] = "Schlagwort hinzufügen";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
-$a->strings["View Album"] = "Album ansehen";
-$a->strings["Recent Photos"] = "Neueste Fotos";
-$a->strings["You must be logged in to see this page."] = "Du musst angemeldet sein um diese Seite betrachten zu können.";
-$a->strings["New Chatroom"] = "Neuen Chatraum";
-$a->strings["Chatroom Name"] = "Chatraum Name";
-$a->strings["- select -"] = "-auswählen-";
-$a->strings["Menu updated."] = "Menü aktualisiert.";
-$a->strings["Unable to update menu."] = "Kann Menü nicht aktualisieren.";
-$a->strings["Menu created."] = "Menü erstellt.";
-$a->strings["Unable to create menu."] = "Kann Menü nicht erstellen.";
-$a->strings["Manage Menus"] = "Menüs verwalten";
-$a->strings["Drop"] = "Löschen";
-$a->strings["Create a new menu"] = "Neues Menü erstellen";
-$a->strings["Delete this menu"] = "Lösche dieses Menü";
-$a->strings["Edit menu contents"] = "Bearbeite Menü Inhalte";
-$a->strings["Edit this menu"] = "Dieses Menü bearbeiten";
-$a->strings["New Menu"] = "Neues Menü";
-$a->strings["Menu name"] = "Menü Name";
-$a->strings["Must be unique, only seen by you"] = "Muss unverwechselbar sein, nur für dich sichtbar";
-$a->strings["Menu title"] = "Menü Titel";
-$a->strings["Menu title as seen by others"] = "Menü Titel wie er von anderen gesehen wird";
-$a->strings["Menu deleted."] = "Menü gelöscht.";
-$a->strings["Menu could not be deleted."] = "Menü konnte nicht gelöscht werden.";
-$a->strings["Edit Menu"] = "Menü bearbeiten";
-$a->strings["Add or remove entries to this menu"] = "Einträge zu diesem Menü hinzufügen oder entfernen";
+$a->strings["Author: "] = "Autor: ";
+$a->strings["Maintainer: "] = "Betreuer:";
+$a->strings["No themes found."] = "Keine Theme gefunden.";
+$a->strings["Screenshot"] = "Bildschirmfoto";
+$a->strings["[Experimental]"] = "[Experimentell]";
+$a->strings["[Unsupported]"] = "[Nicht unterstützt]";
+$a->strings["Log settings updated."] = "Protokoll-Einstellungen aktualisiert.";
+$a->strings["Clear"] = "Leeren";
+$a->strings["Debugging"] = "Debugging";
+$a->strings["Log file"] = "Protokolldatei";
+$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Muss für den Web-Server schreibbar sein. Relativ zum Red Stammverzeichnis.";
+$a->strings["Log level"] = "Protokollstufe";
+$a->strings["- select -"] = "-auswählen-";
 $a->strings["Welcome to %s"] = "Willkommen auf %s";
+$a->strings["Item not found"] = "Element nicht gefunden";
+$a->strings["Item is not editable"] = "Element kann nicht bearbeitet werden.";
+$a->strings["Delete item?"] = "Eintrag löschen?";
+$a->strings["Insert YouTube video"] = "YouTube-Video einfügen";
+$a->strings["Insert Vorbis [.ogg] video"] = "Vorbis [.ogg]-Video einfügen";
+$a->strings["Insert Vorbis [.ogg] audio"] = "Vorbis [.ogg]-Audio einfügen";
 $a->strings["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";
-$a->strings["Archived"] = "Archiviert";
-$a->strings["All"] = "Alle";
-$a->strings["Suggest new connections"] = "Neue Verbindungen vorschlagen";
-$a->strings["Show pending (new) connections"] = "Zeige schwebende (neue) Verbindungen";
-$a->strings["All Connections"] = "Alle Verbindungen";
-$a->strings["Show all connections"] = "Zeige alle Verbindungen";
-$a->strings["Unblocked"] = "Freigegeben";
-$a->strings["Only show unblocked connections"] = "Zeige nur freigegebene Verbindungen";
-$a->strings["Only show blocked connections"] = "Zeige nur blockierte Verbindungen";
-$a->strings["Only show ignored connections"] = "Zeige nur ignorierte Verbindungen";
-$a->strings["Only show archived connections"] = "Zeige nur archivierte Verbindungen";
-$a->strings["Only show hidden connections"] = "Zeige nur versteckte Verbindungen";
-$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]";
-$a->strings["Edit contact"] = "Kontakt bearbeiten";
-$a->strings["Search your connections"] = "Verbindungen durchsuchen";
-$a->strings["Finding: "] = "Ergebnisse:";
+$a->strings["Could not access contact record."] = "Konnte auf den Kontakteintrag nicht zugreifen.";
+$a->strings["Could not locate selected profile."] = "Konnte das gewählte Profil nicht finden.";
+$a->strings["Connection updated."] = "Verbindung aktualisiert.";
+$a->strings["Failed to update connection record."] = "Konnte den Verbindungseintrag nicht aktualisieren.";
+$a->strings["Could not access address book record."] = "Konnte nicht auf den Eintrag im Adressbuch zugreifen.";
+$a->strings["Refresh failed - channel is currently unavailable."] = "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar.";
+$a->strings["Channel has been unblocked"] = "Kanal nicht mehr blockiert";
+$a->strings["Channel has been blocked"] = "Kanal blockiert";
+$a->strings["Unable to set address book parameters."] = "Konnte die Adressbuch Parameter nicht setzen.";
+$a->strings["Channel has been unignored"] = "Kanal wird nicht mehr ignoriert";
+$a->strings["Channel has been ignored"] = "Kanal wird ignoriert";
+$a->strings["Channel has been unarchived"] = "Kanal wurde aus dem Archiv zurück geholt";
+$a->strings["Channel has been archived"] = "Kanal wurde archiviert";
+$a->strings["Channel has been unhidden"] = "Kanal wird nicht mehr versteckt";
+$a->strings["Channel has been hidden"] = "Kanal wurde versteckt";
+$a->strings["Channel has been approved"] = "Kanal wurde zugelassen";
+$a->strings["Channel has been unapproved"] = "Zulassung des Kanals entfernt";
+$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
+$a->strings["View %s's profile"] = "%s's Profil ansehen";
+$a->strings["Refresh Permissions"] = "Zugriffsrechte auffrischen";
+$a->strings["Fetch updated permissions"] = "Aktualisierte Zugriffsrechte abfragen";
+$a->strings["Recent Activity"] = "Kürzliche Aktivitäten";
+$a->strings["View recent posts and comments"] = "Betrachte die neuesten Beiträge und Kommentare";
+$a->strings["Block or Unblock this connection"] = "Verbindung blockieren oder frei geben";
+$a->strings["Unignore"] = "Nicht ignorieren";
+$a->strings["Ignore"] = "Ignorieren";
+$a->strings["Ignore or Unignore this connection"] = "Verbindung ignorieren oder wieder beachten";
+$a->strings["Unarchive"] = "Aus Archiv zurückholen";
+$a->strings["Archive"] = "Archivieren";
+$a->strings["Archive or Unarchive this connection"] = "Archiviere diese Verbindung oder hole sie aus dem Archiv zurück";
+$a->strings["Unhide"] = "aufdecken";
+$a->strings["Hide"] = "Verbergen";
+$a->strings["Hide or Unhide this connection"] = "Diese Verbindung verstecken oder aufdecken";
+$a->strings["Delete this connection"] = "Verbindung löschen";
+$a->strings["Unknown"] = "Unbekannt";
+$a->strings["Approve this connection"] = "Verbindung genehmigen";
+$a->strings["Accept connection to allow communication"] = "Aktzeptiere die Verbindung um Kommunikation zu ermöglichen";
+$a->strings["Automatic Permissions Settings"] = "Automatische Berechtigungs-Einstellungen";
+$a->strings["Connections: settings for %s"] = "Verbindungseinstellungen für %s";
+$a->strings["When receiving a channel introduction, any permissions provided here will be applied to the new connection automatically and the introduction approved. Leave this page if you do not wish to use this feature."] = "Wenn eine Kanal-Vorstellung empfangen wird, werden die hier getroffenen Einstellungen automatisch angewandt und der Anfrage wird stattgegeben. Verlasse diese Seite, wenn du dieses Feature nicht verwanden möchtest.";
+$a->strings["Slide to adjust your degree of friendship"] = "Schieben um den Grad der Freundschaft zu wählen";
+$a->strings["inherited"] = "Geerbt";
+$a->strings["Connection has no individual permissions!"] = "Diese Verbindung hat keine individuellen Zugriffseinstellungen.";
+$a->strings["This may be appropriate based on your <a href=\"settings\">privacy settings</a>, though you may wish to review the \"Advanced Permissions\"."] = "Abhängig von deinen <a href=\"settings\">Privatsphären Einstellungen</a> könnte dies angebracht sein, eventuell solltest du aber die \"Erweiterte Zugriffsrechte\" überprüfen.";
+$a->strings["Profile Visibility"] = "Sichtbarkeit des Profils";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn deine Profilseite über eine verifizierte Verbindung aufgerufen wird.";
+$a->strings["Contact Information / Notes"] = "Kontaktinformationen / Notizen";
+$a->strings["Edit contact notes"] = "Kontaktnotizen editieren";
+$a->strings["Their Settings"] = "Deren Einstellungen";
+$a->strings["My Settings"] = "Meine Einstellungen";
+$a->strings["Forum Members"] = "Forum Mitglieder";
+$a->strings["Soapbox"] = "Marktschreier";
+$a->strings["Full Sharing (typical social network permissions)"] = "";
+$a->strings["Cautious Sharing "] = "";
+$a->strings["Follow Only"] = "Nur Folgen";
+$a->strings["Individual Permissions"] = "Individuelle Zugriffseinstellungen";
+$a->strings["Some permissions may be inherited from your channel <a href=\"settings\">privacy settings</a>, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = "";
+$a->strings["Advanced Permissions"] = "Erweiterte Zugriffsrechte";
+$a->strings["Simple Permissions (select one and submit)"] = "";
+$a->strings["Visit %s's profile - %s"] = "%s's Profil besuchen - %s";
+$a->strings["Block/Unblock contact"] = "Geblockt Status ein- / ausschalten";
+$a->strings["Ignore contact"] = "Kontakt ignorieren";
+$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
+$a->strings["View conversations"] = "Unterhaltungen anzeigen";
+$a->strings["Delete contact"] = "Kontakt löschen";
+$a->strings["Last update:"] = "Letzte Aktualisierung:";
+$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
+$a->strings["Update now"] = "Jetzt aktualisieren";
+$a->strings["Currently blocked"] = "Derzeit blockiert";
+$a->strings["Currently ignored"] = "Derzeit ignoriert";
+$a->strings["Currently archived"] = "Derzeit archiviert";
+$a->strings["Currently pending"] = "Derzeit anstehend";
+$a->strings["Hide this contact from others"] = "Diese Verbindung vor den anderen verbergen.";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>können</strong> immer noch sichtbar sein";
 $a->strings["Layout Help"] = "Layout Hilfe";
 $a->strings["Help with this feature"] = "Hilfe zu diesem Feature";
 $a->strings["Layout Name"] = "Layout Name";
 $a->strings["Help:"] = "Hilfe:";
 $a->strings["Not Found"] = "Nicht gefunden";
+$a->strings["Page not found."] = "Seite nicht gefunden.";
 $a->strings["Remote Authentication"] = "Entfernte Authentifizierung";
 $a->strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z. B. channel@example.com)";
 $a->strings["Authenticate"] = "Authentifizieren";
+$a->strings["Invalid item."] = "Ungültiges Element.";
 $a->strings["No such group"] = "Gruppe existiert nicht";
 $a->strings["Search Results For:"] = "Suchergebnisse für:";
 $a->strings["Collection is empty"] = "Sammlung ist leer";
 $a->strings["Collection: "] = "Sammlung:";
 $a->strings["Connection: "] = "Verbindung:";
 $a->strings["Invalid connection."] = "Ungültige Verbindung.";
+$a->strings["Profile not found."] = "Profil nicht gefunden.";
+$a->strings["Profile deleted."] = "Profil gelöscht.";
+$a->strings["Profile-"] = "Profil-";
+$a->strings["New profile created."] = "Neues Profil erstellt.";
+$a->strings["Profile unavailable to clone."] = "Profil kann nicht geklont werden.";
+$a->strings["Profile Name is required."] = "Profil-Name erforderlich.";
+$a->strings["Marital Status"] = "Familienstand";
+$a->strings["Romantic Partner"] = "Romantische Partner";
+$a->strings["Likes"] = "Gefällt-mir";
+$a->strings["Dislikes"] = "Gefällt-mir-nicht";
+$a->strings["Work/Employment"] = "Arbeit/Anstellung";
+$a->strings["Religion"] = "Religion";
+$a->strings["Political Views"] = "Politische Anscihten";
+$a->strings["Gender"] = "Geschlecht";
+$a->strings["Sexual Preference"] = "Sexuelle Orientierung";
+$a->strings["Homepage"] = "Webseite";
+$a->strings["Interests"] = "Hobbys/Interessen";
+$a->strings["Address"] = "Adresse";
+$a->strings["Location"] = "Ort";
+$a->strings["Profile updated."] = "Profil aktualisiert.";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Verberge die Liste deiner Kontakte vor Betrachtern dieses Profils";
+$a->strings["Edit Profile Details"] = "Bearbeite Profil-Details";
+$a->strings["View this profile"] = "Dieses Profil ansehen";
+$a->strings["Change Profile Photo"] = "Profilfoto ändern";
+$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen übernehmen";
+$a->strings["Clone this profile"] = "Dieses Profil klonen";
+$a->strings["Delete this profile"] = "Dieses Profil löschen";
+$a->strings["Profile Name:"] = "Profilname:";
+$a->strings["Your Full Name:"] = "Dein voller Name:";
+$a->strings["Title/Description:"] = "Titel/Beschreibung:";
+$a->strings["Your Gender:"] = "Dein Geschlecht:";
+$a->strings["Birthday (%s):"] = "Geburtstag (%s):";
+$a->strings["Street Address:"] = "Straße und Hausnummer:";
+$a->strings["Locality/City:"] = "Wohnort:";
+$a->strings["Postal/Zip Code:"] = "Postleitzahl:";
+$a->strings["Country:"] = "Land:";
+$a->strings["Region/State:"] = "Region/Bundesstaat";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Beziehungsstatus:";
+$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com";
+$a->strings["Since [date]:"] = "Seit [Datum]:";
+$a->strings["Homepage URL:"] = "Homepage URL:";
+$a->strings["Religious Views:"] = "Religiöse Ansichten:";
+$a->strings["Keywords:"] = "Schlüsselwörter:";
+$a->strings["Example: fishing photography software"] = "Beispiel: fischen Fotografie Software";
+$a->strings["Used in directory listings"] = "Wird in Verzeichnis Auflistungen verwendet";
+$a->strings["Tell us about yourself..."] = "Erzähl uns ein wenig von Dir...";
+$a->strings["Hobbies/Interests"] = "Hobbys/Interessen";
+$a->strings["Contact information and Social Networks"] = "Kontaktinformation und soziale Netzwerke";
+$a->strings["My other channels"] = "Meine anderen Kanäle";
+$a->strings["Musical interests"] = "Musikalische Interessen";
+$a->strings["Books, literature"] = "Bücher, Literatur";
+$a->strings["Television"] = "Fernsehen";
+$a->strings["Film/dance/culture/entertainment"] = "Film/Tanz/Kultur/Unterhaltung";
+$a->strings["Love/romance"] = "Liebe/Romantik";
+$a->strings["Work/employment"] = "Arbeit/Anstellung";
+$a->strings["School/education"] = "Schule/Ausbildung";
+$a->strings["This is your <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["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["Channel added."] = "Kanal hinzugefügt.";
 $a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Entfernte Authentifizierung blockiert. Du bist lokal auf dieser Seite angemeldet. Bitte melde dich ab und versuche es erneut.";
 $a->strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich.";
 $a->strings["This site is not a directory server"] = "Diese Website ist kein Verzeichnis-Server";
+$a->strings["Failed to create source. No channel selected."] = "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt.";
+$a->strings["Source created."] = "Quelle erstellt.";
+$a->strings["Source updated."] = "Quelle aktualisiert.";
+$a->strings["*"] = "*";
+$a->strings["Manage remote sources of content for your channel."] = "Entfernte Quellen von Inhalten deines Kanals verwalten.";
+$a->strings["New Source"] = "Neue Quelle";
+$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals.";
+$a->strings["Only import content with these words (one per line)"] = "Importiere ausschließlich Beiträge, die folgende Wörter (eines pro Zeile) enthalten";
+$a->strings["Leave blank to import all public content"] = "Leer lassen um alle öffentlichen Beiträge zu importieren";
+$a->strings["Channel Name"] = "Name des Kanals";
+$a->strings["Source not found."] = "Quelle nicht gefunden.";
+$a->strings["Edit Source"] = "Quelle bearbeiten";
+$a->strings["Delete Source"] = "Quelle löschen";
+$a->strings["Source removed"] = "Quelle gelöscht";
+$a->strings["Unable to remove source."] = "Konnte die Quelle nicht löschen.";
+$a->strings["Remote privacy information not available."] = "Entfernte Privatsphären Einstellungen sind nicht verfügbar.";
+$a->strings["Visible to:"] = "Sichtbar für:";
+$a->strings["Hub not found."] = "Server nicht gefunden.";
+$a->strings["Red Matrix Server - Setup"] = "Red Matrix Server - Installation";
+$a->strings["Could not connect to database."] = "Kann nicht mit der Datenbank verbinden.";
+$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Konnte die angegebene Webseiten URL nicht erreichen. Möglicherweise ein Problem mit dem SSL Zertifikat oder dem DNS.";
+$a->strings["Could not create table."] = "Kann Tabelle nicht erstellen.";
+$a->strings["Your site database has been installed."] = "Die Datenbank deiner Seite wurde installiert.";
+$a->strings["You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql."] = "Eventuell musst du die Datei \"install/database.sql\" händisch mit phpmyadmin oder mysql importieren.";
+$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Lies die Datei \"install/INSTALL.txt\".";
+$a->strings["System check"] = "Systemprüfung";
+$a->strings["Check again"] = "Bitte nochmal prüfen";
+$a->strings["Database connection"] = "Datenbank Verbindung";
+$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "Um die Red Matrix installieren zu können, müssen wir wissen wie wir deine Datenbank kontaktieren können.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere deinen Hosting Provider oder den Administrator der Seite wenn du Fragen zu diesen Einstellungen haben solltest.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor du fortfährst.";
+$a->strings["Database Server Name"] = "Datenbank-Servername";
+$a->strings["Default is localhost"] = "Standard ist localhost";
+$a->strings["Database Port"] = "Datenbank-Port";
+$a->strings["Communication port number - use 0 for default"] = "Port Nummer zur Kommunikation - verwende 0 für die Standardeinstellung:";
+$a->strings["Database Login Name"] = "Datenbank-Benutzername";
+$a->strings["Database Login Password"] = "Datenbank-Kennwort";
+$a->strings["Database Name"] = "Datenbank-Name";
+$a->strings["Site administrator email address"] = "E-Mail Adresse des Seiten-Administrators";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die Email-Adresse deines Accounts muss dieser Adresse entsprechen, damit du Zugriff zum Admin Panel erhältst.";
+$a->strings["Website URL"] = "Webseiten URL";
+$a->strings["Please use SSL (https) URL if available."] = "Nutze wenn möglich eine SSL-URL (https).";
+$a->strings["Please select a default timezone for your website"] = "Standard-Zeitzone für deine Website";
+$a->strings["Site settings"] = "Seiteneinstellungen";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte die Kommandozeilen Version von PHP nicht im PATH des Servers finden.";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Solltest du keine Kommandozeilen Version von PHP auf dem Server installiert haben wirst du nicht in der Lage sein Hintergrundprozesse via cron auszuführen.";
+$a->strings["PHP executable path"] = "PHP Pfad zu ausführbarer Datei";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den vollen Pfad zum PHP Interpreter an. Du kannst dieses Felds frei lassen und mit der Installation fortfahren.";
+$a->strings["Command line PHP"] = "PHP Befehlszeile";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilen Version von PHP auf deinem System hat \"register_argc_argv\" nicht aktiviert.";
+$a->strings["This is required for message delivery to work."] = "Dies wird benötigt, damit die Auslieferung von Nachrichten funktioniert.";
+$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die \"openssl_pkey_new\" Funktion auf diesem System ist nicht in der Lage Schlüssel für die Verschlüsselung zu erzeugen.";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn du Windows verwendest, siehe  http://www.php.net/manual/en/openssl.installation.php für eine Installationsanleitung.";
+$a->strings["Generate encryption keys"] = "Verschlüsselungsschlüssel  generieren";
+$a->strings["libCurl PHP module"] = "libCurl PHP Modul";
+$a->strings["GD graphics PHP module"] = "GD Graphik PHP Modul";
+$a->strings["OpenSSL PHP module"] = "OpenSSL PHP Modul";
+$a->strings["mysqli PHP module"] = "mysqli PHP Modul";
+$a->strings["mb_string PHP module"] = "mb_string PHP Modul";
+$a->strings["mcrypt PHP module"] = "mcrypt PHP Modul";
+$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite Modul";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache Modul mod-rewrite wird benötigt ist aber nicht installiert.";
+$a->strings["proc_open"] = "proc_open";
+$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Fehler: proc_open wird benötigt ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: das PHP Modul libCURL wird benütigt ist aber nicht installiert.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: das PHP Modul GD Grafik mit JPEG Unterstützung wird benötigt ist aber nicht installiert.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: das OpenSSL PHP Modul wird benötigt ist aber nicht installiert.";
+$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: das PHP Modul mysqli wird benötigt ist aber nicht installiert.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: das PHP Modul mb_string wird benötigt ist aber nicht installiert.";
+$a->strings["Error: mcrypt PHP module required but not installed."] = "Fehler: das PHP Modul mcrypt wird benötigt ist aber nicht installiert.";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\ in the top folder of your web server and it is unable to do so."] = "Der Installations-Assistent muss in der Lage sein die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist es aber nicht.";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Meist liegt 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.";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Am Schluss des Vorgangs wird ein Text generiert, den du unter dem Dateinamen .htconfig.php im Stammverzeichnis deiner Red Installation speichern.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Alternativ kannst du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt.";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php ist beschreibbar";
+$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP um die Darstellung zu beschleunigen.";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/tpl/smarty3/ under the Red top level folder."] = "Um die übersetzten Vorlagen speichern zu können muss der Webserver schreib Zugriff auf das Verzeichnis view/tpl/smarty3/ unterhalb des Red Stammverzeichnisses haben.";
+$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.";
+$a->strings["Url rewrite is working"] = "Url rewrite funktioniert";
+$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Datenbank Konfigurationsdatei \".htconfig.php\" konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen.";
+$a->strings["Errors encountered creating database tables."] = "Fehler während des Anlegens der Datenbank Tabellen aufgetreten.";
+$a->strings["<h1>What next</h1>"] = "<h1>Was als Nächstes</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst die geplanten Aufgaben für den Poller [manuell] einrichten.";
 $a->strings["Version %s"] = "Version %s";
 $a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps";
 $a->strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps";
@@ -1276,89 +1427,14 @@ $a->strings["This is a hub of the Red Matrix - a global cooperative network of d
 $a->strings["Running at web location"] = "Erreichbar unter der Web-Adresse";
 $a->strings["Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more about the Red Matrix."] = "Besuche <a href=\"http://getzot.com\">GetZot.com</a> um mehr über die Red Matrix zu erfahren.";
 $a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
-$a->strings["Suggestions, praise, donations, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an 'redmatrix' at librelist - dot - com";
+$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com";
 $a->strings["Site Administrators"] = "Administratoren";
-$a->strings["Remote privacy information not available."] = "Entfernte Privatsphären Einstellungen sind nicht verfügbar.";
-$a->strings["Visible to:"] = "Sichtbar für:";
-$a->strings["Hub not found."] = "Server nicht gefunden.";
-$a->strings["Profile not found."] = "Profil nicht gefunden.";
-$a->strings["Profile deleted."] = "Profil gelöscht.";
-$a->strings["Profile-"] = "Profil-";
-$a->strings["New profile created."] = "Neues Profil erstellt.";
-$a->strings["Profile unavailable to clone."] = "Profil kann nicht geklont werden.";
-$a->strings["Profile Name is required."] = "Profil-Name erforderlich.";
-$a->strings["Marital Status"] = "Familienstand";
-$a->strings["Romantic Partner"] = "Romantische Partner";
-$a->strings["Likes"] = "Gefällt-mir";
-$a->strings["Dislikes"] = "Gefällt-mir-nicht";
-$a->strings["Work/Employment"] = "Arbeit/Anstellung";
-$a->strings["Religion"] = "Religion";
-$a->strings["Political Views"] = "Politische Anscihten";
-$a->strings["Gender"] = "Geschlecht";
-$a->strings["Sexual Preference"] = "Sexuelle Orientierung";
-$a->strings["Homepage"] = "Webseite";
-$a->strings["Interests"] = "Hobbys/Interessen";
-$a->strings["Address"] = "Adresse";
-$a->strings["Location"] = "Ort";
-$a->strings["Profile updated."] = "Profil aktualisiert.";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Verberge die Liste deiner Kontakte vor Betrachtern dieses Profils";
-$a->strings["Edit Profile Details"] = "Bearbeite Profil-Details";
-$a->strings["View this profile"] = "Dieses Profil ansehen";
-$a->strings["Change Profile Photo"] = "Profilfoto ändern";
-$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen übernehmen";
-$a->strings["Clone this profile"] = "Dieses Profil klonen";
-$a->strings["Delete this profile"] = "Dieses Profil löschen";
-$a->strings["Profile Name:"] = "Profilname:";
-$a->strings["Your Full Name:"] = "Dein voller Name:";
-$a->strings["Title/Description:"] = "Titel/Beschreibung:";
-$a->strings["Your Gender:"] = "Dein Geschlecht:";
-$a->strings["Birthday (%s):"] = "Geburtstag (%s):";
-$a->strings["Street Address:"] = "Straße und Hausnummer:";
-$a->strings["Locality/City:"] = "Wohnort:";
-$a->strings["Postal/Zip Code:"] = "Postleitzahl:";
-$a->strings["Country:"] = "Land:";
-$a->strings["Region/State:"] = "Region/Bundesstaat";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Beziehungsstatus:";
-$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com";
-$a->strings["Since [date]:"] = "Seit [Datum]:";
-$a->strings["Homepage URL:"] = "Homepage URL:";
-$a->strings["Religious Views:"] = "Religiöse Ansichten:";
-$a->strings["Keywords:"] = "Schlüsselwörter:";
-$a->strings["Example: fishing photography software"] = "Beispiel: fischen Fotografie Software";
-$a->strings["Used in directory listings"] = "Wird in Verzeichnis Auflistungen verwendet";
-$a->strings["Tell us about yourself..."] = "Erzähl uns ein wenig von Dir...";
-$a->strings["Hobbies/Interests"] = "Hobbys/Interessen";
-$a->strings["Contact information and Social Networks"] = "Kontaktinformation und soziale Netzwerke";
-$a->strings["My other channels"] = "Meine anderen Kanäle";
-$a->strings["Musical interests"] = "Musikalische Interessen";
-$a->strings["Books, literature"] = "Bücher, Literatur";
-$a->strings["Television"] = "Fernsehen";
-$a->strings["Film/dance/culture/entertainment"] = "Film/Tanz/Kultur/Unterhaltung";
-$a->strings["Love/romance"] = "Liebe/Romantik";
-$a->strings["Work/employment"] = "Arbeit/Anstellung";
-$a->strings["School/education"] = "Schule/Ausbildung";
-$a->strings["This is your <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["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"] = "Kanal hinzufügen";
 $a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Ein Kanal ist deine eigene Sammlung von verbundenen Webseiten. Ein Kanal kann genutzt werden, um 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\" ";
 $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["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.";
 $a->strings["Site Member (%s)"] = "Seiten Mitglied (%s)";
@@ -1406,100 +1482,6 @@ $a->strings["No keywords to match. Please add keywords to your default profile."
 $a->strings["is interested in:"] = "interessiert sich für:";
 $a->strings["No matches"] = "Keine Übereinstimmungen";
 $a->strings["invalid target signature"] = "Ungültige Signatur des Ziels";
-$a->strings["Name is required"] = "Name wird benötigt";
-$a->strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt";
-$a->strings["Update"] = "Update";
-$a->strings["Passwords do not match. Password unchanged."] = "Kennwörter stimmen nicht überein. Kennwort nicht verändert.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert.";
-$a->strings["Password changed."] = "Kennwort geändert.";
-$a->strings["Password update failed. Please try again."] = "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal.";
-$a->strings["Not valid email."] = "Keine gültige E-Mail Adresse.";
-$a->strings["Protected email address. Cannot change to that email."] = "Geschützte E-Mail Adresse. Diese kann nicht verändert werden.";
-$a->strings["System failure storing new email. Please try again."] = "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal.";
-$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
-$a->strings["Add application"] = "Anwendung hinzufügen";
-$a->strings["Name"] = "Name";
-$a->strings["Name of application"] = "Name der Anwendung";
-$a->strings["Consumer Key"] = "Consumer Key";
-$a->strings["Automatically generated - change if desired. Max length 20"] = "Automatisch erzeugt - ändern falls erwünscht. Maximale Länge 20";
-$a->strings["Consumer Secret"] = "Consumer Secret";
-$a->strings["Redirect"] = "Umleitung";
-$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "Umleitungs-URl - lasse dies frei außer deine Anwendung erfordert dies explizit";
-$a->strings["Icon url"] = "Symbol-URL";
-$a->strings["Optional"] = "Optional";
-$a->strings["You can't edit this application."] = "Diese Anwendung kann nicht bearbeitet werden.";
-$a->strings["Connected Apps"] = "Verbundene Apps";
-$a->strings["Client key starts with"] = "Client key beginnt mit";
-$a->strings["No name"] = "Kein Name";
-$a->strings["Remove authorization"] = "Authorisierung aufheben";
-$a->strings["No feature settings configured"] = "Keine Funktions-Einstellungen konfiguriert";
-$a->strings["Feature Settings"] = "Funktions-Einstellungen";
-$a->strings["Account Settings"] = "Konto-Einstellungen";
-$a->strings["Password Settings"] = "Kennwort-Einstellungen";
-$a->strings["New Password:"] = "Neues Passwort:";
-$a->strings["Confirm:"] = "Bestätigen:";
-$a->strings["Leave password fields blank unless changing"] = "Lasse die Passwort -Felder leer außer du möchtest das Passwort ändern";
-$a->strings["Email Address:"] = "Email Adresse:";
-$a->strings["Remove Account"] = "Konto entfernen";
-$a->strings["Warning: This action is permanent and cannot be reversed."] = "Achtung: Diese Aktion ist permanent und kann nicht rückgänging gemacht werden.";
-$a->strings["Off"] = "Aus";
-$a->strings["On"] = "An";
-$a->strings["Additional Features"] = "Zusätzliche Funktionen";
-$a->strings["Connector Settings"] = "Connector-Einstellungen";
-$a->strings["Display Settings"] = "Anzeige-Einstellungen";
-$a->strings["Display Theme:"] = "Anzeige Theme:";
-$a->strings["Mobile Theme:"] = "Mobile Theme:";
-$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren";
-$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum von 10 Sekunden, kein Maximum";
-$a->strings["Maximum number of conversations to load at any time:"] = "Maximale Anzahl von Unterhaltungen die gleichzeitig geladen werden sollen:";
-$a->strings["Maximum of 100 items"] = "Maximum von 100 Beiträgen";
-$a->strings["Don't show emoticons"] = "Emoticons nicht zeigen";
-$a->strings["Nobody except yourself"] = "Niemand außer du selbst";
-$a->strings["Only those you specifically allow"] = "Nur die, denen du es explizit erlaubst";
-$a->strings["Anybody in your address book"] = "Jeder aus Ihrem Adressbuch";
-$a->strings["Anybody on this website"] = "Jeder auf dieser Website";
-$a->strings["Anybody in this network"] = "Jeder in diesem Netzwerk";
-$a->strings["Anybody on the internet"] = "Jeder im Internet";
-$a->strings["Publish your default profile in the network directory"] = "Veröffentliche dein Standard-Profil im Netzwerk-Verzeichnis";
-$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?";
-$a->strings["or"] = "oder";
-$a->strings["Your channel address is"] = "Deine Kanal-Adresse lautet";
-$a->strings["Channel Settings"] = "Kanal-Einstellungen";
-$a->strings["Basic Settings"] = "Grundeinstellungen";
-$a->strings["Your Timezone:"] = "Ihre Zeitzone:";
-$a->strings["Default Post Location:"] = "Standardstandort:";
-$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:";
-$a->strings["Adult Content"] = "Nicht Jugendfreie-Inhalte";
-$a->strings["This channel publishes adult content."] = "Dieser Kanal veröffentlicht nicht Jugendfreie-Inhalte";
-$a->strings["Security and Privacy Settings"] = "Sicherheits- und Datenschutz-Einstellungen";
-$a->strings["Hide my online presence"] = "Meine Online-Präsenz verbergen";
-$a->strings["Prevents showing if you are available for chat"] = "Verhindert es als für Chats verfügbar angezeigt zu werden";
-$a->strings["Quick Privacy Settings:"] = "Schnelle Datenschutz-Einstellungen:";
-$a->strings["Very Public - extremely permissive"] = "Sehr offen - extrem freizügig";
-$a->strings["Typical - default public, privacy when desired"] = "Typisch - Standard öffentlich, Privatheit wenn gewünscht";
-$a->strings["Private - default private, rarely open or public"] = "Privat - Standard privat, selten offen oder öffentlich";
-$a->strings["Blocked - default blocked to/from everybody"] = "Geschlossen - Standard zu und von jedem geblockt";
-$a->strings["Maximum Friend Requests/Day:"] = "Maximale Kontaktanfragen pro Tag:";
-$a->strings["May reduce spam activity"] = "Kann die Spam-Aktivität verringern";
-$a->strings["Default Post Permissions"] = "Beitragszugriffrechte Standardeinstellungen";
-$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:";
-$a->strings["Useful to reduce spamming"] = "Nützlich um Spam zu verringern";
-$a->strings["Notification Settings"] = "Benachrichtigungs-Einstellungen";
-$a->strings["By default post a status message when:"] = "Sende standardmäßig Status-Nachrichten wenn:";
-$a->strings["accepting a friend request"] = "einer Kontaktanfrage stattgegeben wurde";
-$a->strings["joining a forum/community"] = "ein Forum beigetreten wurde";
-$a->strings["making an <em>interesting</em> profile change"] = "eine <em>interessante</em> Änderung am Profil vorgenommen wurde";
-$a->strings["Send a notification email when:"] = "Eine Email Benachrichtigung senden wenn:";
-$a->strings["You receive an introduction"] = "Du eine Vorstellung erhältst";
-$a->strings["Your introductions are confirmed"] = "Deine Vorstellung bestätigt wurde.";
-$a->strings["Someone writes on your profile wall"] = "Jemand auf deine Pinnwand schreibt";
-$a->strings["Someone writes a followup comment"] = "Jemand einen Beitrag kommentiert";
-$a->strings["You receive a private message"] = "Du eine private Nachricht erhältst";
-$a->strings["You receive a friend suggestion"] = "Du einen Kontaktvorschlag erhältst";
-$a->strings["You are tagged in a post"] = "Du 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.";
@@ -1518,12 +1500,8 @@ $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["Delete layout?"] = "Layout löschen?";
-$a->strings["Insert YouTube video"] = "YouTube-Video einfügen";
-$a->strings["Insert Vorbis [.ogg] video"] = "Vorbis [.ogg]-Video einfügen";
-$a->strings["Insert Vorbis [.ogg] audio"] = "Vorbis [.ogg]-Audio einfügen";
 $a->strings["Delete Layout"] = "Layout löschen";
 $a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das zurecht schneiden schlug fehl.";
 $a->strings["Image resize failed."] = "Bild-Anpassung fehlgeschlagen.";
@@ -1543,8 +1521,24 @@ $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["Item is not editable"] = "Element kann nicht bearbeitet werden.";
-$a->strings["Delete item?"] = "Eintrag löschen?";
+$a->strings["Blocked"] = "Blockiert";
+$a->strings["Ignored"] = "Ignoriert";
+$a->strings["Hidden"] = "Versteckt";
+$a->strings["Archived"] = "Archiviert";
+$a->strings["All"] = "Alle";
+$a->strings["Suggest new connections"] = "Neue Verbindungen vorschlagen";
+$a->strings["Show pending (new) connections"] = "Zeige schwebende (neue) Verbindungen";
+$a->strings["Show all connections"] = "Zeige alle Verbindungen";
+$a->strings["Unblocked"] = "Freigegeben";
+$a->strings["Only show unblocked connections"] = "Zeige nur freigegebene Verbindungen";
+$a->strings["Only show blocked connections"] = "Zeige nur blockierte Verbindungen";
+$a->strings["Only show ignored connections"] = "Zeige nur ignorierte Verbindungen";
+$a->strings["Only show archived connections"] = "Zeige nur archivierte Verbindungen";
+$a->strings["Only show hidden connections"] = "Zeige nur versteckte Verbindungen";
+$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]";
+$a->strings["Edit contact"] = "Kontakt bearbeiten";
+$a->strings["Search your connections"] = "Verbindungen durchsuchen";
+$a->strings["Finding: "] = "Ergebnisse:";
 $a->strings["Invalid request identifier."] = "Ungültige Anfrage Identifikator.";
 $a->strings["Discard"] = "Verwerfen";
 $a->strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr.";
@@ -1561,7 +1555,6 @@ $a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder
 $a->strings["Recipient"] = "Empfänger";
 $a->strings["Choose what you wish to do to recipient"] = "Wähle was du mit dem/r Empfänger/in tun willst";
 $a->strings["Make this post private"] = "Diesen Beitrag privat machen";
-$a->strings["Wall Photos"] = "Wall Fotos";
 $a->strings["Insufficient permissions.  Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet.";
 $a->strings["Not available."] = "Nicht verfügbar.";
 $a->strings["Community"] = "Gemeinschaft";
@@ -1573,10 +1566,24 @@ $a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
 $a->strings["Edit Block"] = "Block bearbeiten";
 $a->strings["Delete block?"] = "Block löschen?";
 $a->strings["Delete Block"] = "Block löschen";
-$a->strings["Invalid profile identifier."] = "Ungültiger Profil Identifikator";
-$a->strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits Editor";
-$a->strings["Click on a contact to add or remove."] = "Wähle einen Kontakt zum Hinzufügen oder Löschen aus.";
-$a->strings["Visible To"] = "Sichtbar für";
+$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["Permission Denied."] = "Zugriff verweigert.";
+$a->strings["File not found."] = "Datei nicht gefunden";
+$a->strings["Edit file permissions"] = "Dateiberechtigungen bearbeiten";
+$a->strings["Permissions"] = "Berechtigungen";
+$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 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.";
@@ -1610,30 +1617,48 @@ $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 Channel"] = "Kanal entfernen";
-$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["Page owner information could not be retrieved."] = "Informationen über den Betreiber der Seite konnten nicht gefunden werden.";
+$a->strings["Album not found."] = "Album nicht gefunden.";
+$a->strings["Delete Album"] = "Album löschen";
+$a->strings["Delete Photo"] = "Foto löschen";
+$a->strings["No photos selected"] = "Keine Fotos ausgewählt";
+$a->strings["Access to this item is restricted."] = "Zugriff auf dieses Foto wurde eingeschränkt.";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du benutzt %1$.2f MBytes deines %2$.2f MBytes großen Bilder-Speichers.";
+$a->strings["You have used %1$.2f Mbytes of photo storage."] = "Du verwendets %1$.2f MBytes deines Foto-Speichers.";
+$a->strings["Upload Photos"] = "Fotos hochladen";
+$a->strings["New album name: "] = "Name des neuen Albums:";
+$a->strings["or existing album name: "] = "oder bestehenden Album Namen:";
+$a->strings["Do not show a status post for this upload"] = "Keine Statusnachricht für diesen Upload senden";
+$a->strings["Contact Photos"] = "Kontakt Bilder";
+$a->strings["Edit Album"] = "Album bearbeiten";
+$a->strings["Show Newest First"] = "Zeige neueste zuerst";
+$a->strings["Show Oldest First"] = "Zeige älteste zuerst";
+$a->strings["View Photo"] = "Foto ansehen";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden.";
+$a->strings["Photo not available"] = "Foto nicht verfügbar";
+$a->strings["Use as profile photo"] = "Als Profilfoto verwenden";
+$a->strings["View Full Size"] = "In voller Größe anzeigen";
+$a->strings["Edit photo"] = "Foto bearbeiten";
+$a->strings["Rotate CW (right)"] = "Drehen US (rechts)";
+$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)";
+$a->strings["New album name"] = "Name des neuen Albums:";
+$a->strings["Caption"] = "Bildunterschrift";
+$a->strings["Add a Tag"] = "Schlagwort hinzufügen";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
+$a->strings["In This Photo:"] = "Auf diesem Foto:";
+$a->strings["View Album"] = "Album ansehen";
+$a->strings["Recent Photos"] = "Neueste Fotos";
 $a->strings["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";
 $a->strings["silver"] = "Silber";
 $a->strings["Theme settings"] = "Theme-Einstellungen";
 $a->strings["Set scheme"] = "Schema";
 $a->strings["Navigation bar colour"] = "Farbe der Navigationsleiste";
+$a->strings["link colour"] = "Farbe der Verweise";
 $a->strings["Set font-colour for banner"] = "Farbe des Banners";
 $a->strings["Set the background colour"] = "Hintergrundfarbe";
 $a->strings["Set the background image"] = "Hintergrundbild";
-- 
cgit v1.2.3


From ba360b434714311baacf9b692f838e1d9490925c Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Wed, 12 Feb 2014 03:05:55 -0800
Subject: ui improvements on the manage page

---
 view/css/mod_manage.css | 17 ++++++++++++-----
 view/tpl/channel.tpl    |  4 ++--
 view/tpl/channels.tpl   |  5 +++--
 3 files changed, 17 insertions(+), 9 deletions(-)

(limited to 'view')

diff --git a/view/css/mod_manage.css b/view/css/mod_manage.css
index 58f9d3159..4780820ba 100644
--- a/view/css/mod_manage.css
+++ b/view/css/mod_manage.css
@@ -1,8 +1,7 @@
 #channels-selected {
 	color: #666666;
-	font-size: 1.2em;
-	width: 120px;
-	margin: 20px auto 10px auto;
+	font-size: 0.8em;
+
 }
 
 #channels-desc {
@@ -12,9 +11,16 @@
 	margin-bottom: 20px;
 }
 
+.channels-break {
+	margin-bottom: 15px;
+}
 #selected-channel {
-	width: 200px;
-	margin: 0px auto 0px auto;
+	float: left;
+	margin-left: 0;
+}
+
+.channels-end.selected {
+	clear: both;
 }
 
 #selected-channel .channel-selection {
@@ -31,6 +37,7 @@
 #all-channels .channel-selection {
 	width: 120px;
 	float: left;
+	margin-bottom: 15px;
 }
 .channels-end {
 	clear: both;
diff --git a/view/tpl/channel.tpl b/view/tpl/channel.tpl
index d6462d1e4..1ed2fbd2c 100755
--- a/view/tpl/channel.tpl
+++ b/view/tpl/channel.tpl
@@ -1,9 +1,9 @@
 <div class="channel-selection">
 {{if $channel.default_links}}
 {{if $channel.default}}
-<div class="channel-selection-default default">{{$msg_default}}</div>
+<div class="channel-selection-default default"><i class="icon-check"></i> {{$msg_default}}</div>
 {{else}}
-<div class="channel-selection-default"><a href="manage/{{$channel.channel_id}}/default">{{$msg_make_default}}</a></div>
+<div class="channel-selection-default"><a href="manage/{{$channel.channel_id}}/default"><i class="icon-check-empty" title="{{$msg_make_default}}"></i></a></div>
 {{/if}}
 {{/if}}
 <a href="{{$channel.link}}" class="channel-selection-photo-link" title="{{$channel.channel_name}}"><img class="channel-photo" src="{{$channel.xchan_photo_m}}" alt="{{$channel.channel_name}}" /></a>
diff --git a/view/tpl/channels.tpl b/view/tpl/channels.tpl
index af6b36b1d..2c31cb498 100755
--- a/view/tpl/channels.tpl
+++ b/view/tpl/channels.tpl
@@ -6,6 +6,7 @@
 <a class="channels-links" href="{{$l.0}}" title="{{$l.1}}">{{$l.2}}</a>
 {{/foreach}}
 {{/if}} 
+<div class="channels-break"></div>
 
 {{if $channel_usage_message}}
 <div id="channel-usage-message" class="usage-message">
@@ -16,10 +17,10 @@
 <div id="selected-channel">
 <div id="channels-selected">{{$msg_selected}}</div>
 {{include file="channel.tpl" channel=$selected}}
-<div class="channels-end selected"></div>
 </div>
+<div class="channels-end selected"></div>
 {{/if}}
-
+<br />
 <div id="channels-desc" class="descriptive-text">{{$desc}}</div>
 
 <div id="all-channels">
-- 
cgit v1.2.3


From 2c1b366fdf18929e255a223bc88474b446eaafa8 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Wed, 12 Feb 2014 14:44:27 -0800
Subject: make activities optional for profile things, clean up the forms

---
 view/css/mod_thing.css   | 14 ++++----------
 view/tpl/thing_edit.tpl  |  4 ++++
 view/tpl/thing_input.tpl |  5 +++++
 3 files changed, 13 insertions(+), 10 deletions(-)

(limited to 'view')

diff --git a/view/css/mod_thing.css b/view/css/mod_thing.css
index 2a2ba7c92..125230b38 100644
--- a/view/css/mod_thing.css
+++ b/view/css/mod_thing.css
@@ -4,22 +4,16 @@
 	margin-left: 0;
 }
 
-.thing-verb-label {
-	margin-top: 15px;
-}
-
-.thing-verb {
-	margin-bottom: 15px;
-}
 
-.thing-label {
+.thing-label, .field label, .thing-verb-label, .thing-profile-label{
 	float: left;
-	width: 250px;
+	width: 350px;
 }
 
-.thing-input {
+.thing-input, .thing-verb, .thing-profile{
 	float: left;
 	margin-bottom: 15px;
+	width: 400px;
 }
 
 .thing-field-end {
diff --git a/view/tpl/thing_edit.tpl b/view/tpl/thing_edit.tpl
index 8379c15ae..b170f152c 100644
--- a/view/tpl/thing_edit.tpl
+++ b/view/tpl/thing_edit.tpl
@@ -6,11 +6,13 @@
 <div class="thing-profile-label">{{$profile_lbl}}</div>
 
 <div class="thing-profile">{{$profile_select}}</div>
+<div class="thing-field-end"></div>
 {{/if}}
 
 <div class="thing-verb-label">{{$verb_lbl}}</div>
 
 <div class="thing-verb">{{$verb_select}}</div>
+<div class="thing-field-end"></div>
 
 
 <label class="thing-label" for="thing-term">{{$thing_lbl}}</label>
@@ -23,6 +25,8 @@
 <input type="text" class="thing-input" id="thing-img" name="img" value="{{$imgurl}}" />
 <div class="thing-field-end"></div>
 
+{{include file="field_checkbox.tpl" field=$activity}}
+
 <div class="thing-end"></div> 
 
 <input type="submit" class="thing-submit" name="submit" value="{{$submit}}" />
diff --git a/view/tpl/thing_input.tpl b/view/tpl/thing_input.tpl
index 06cbfe917..e93a1aa65 100644
--- a/view/tpl/thing_input.tpl
+++ b/view/tpl/thing_input.tpl
@@ -5,11 +5,14 @@
 <div class="thing-profile-label">{{$profile_lbl}}</div>
 
 <div class="thing-profile">{{$profile_select}}</div>
+<div class="thing-field-end"></div>
 {{/if}}
 
+
 <div class="thing-verb-label">{{$verb_lbl}}</div>
 
 <div class="thing-verb">{{$verb_select}}</div>
+<div class="thing-field-end"></div>
 
 
 <label class="thing-label" for="thing-term">{{$thing_lbl}}</label>
@@ -22,6 +25,8 @@
 <input type="text" class="thing-input" id="thing-img" name="img" />
 <div class="thing-field-end"></div>
 
+{{include file="field_checkbox.tpl" field=$activity}}
+
 <div class="thing-end"></div> 
 
 <input type="submit" class="thing-submit" name="submit" value="{{$submit}}" />
-- 
cgit v1.2.3


From ec99cac9e8abdb85c1a8355b7617556f238d4c91 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Thu, 13 Feb 2014 00:52:54 -0800
Subject: very simple scheme

---
 view/theme/redbasic/schema/notred.php | 5 +++++
 1 file changed, 5 insertions(+)
 create mode 100644 view/theme/redbasic/schema/notred.php

(limited to 'view')

diff --git a/view/theme/redbasic/schema/notred.php b/view/theme/redbasic/schema/notred.php
new file mode 100644
index 000000000..5a6dda336
--- /dev/null
+++ b/view/theme/redbasic/schema/notred.php
@@ -0,0 +1,5 @@
+<?php
+
+	if (! $nav_colour)
+		$nav_colour = "black";
+
-- 
cgit v1.2.3


From 99c19b307e71eccccdcacef4e94c3d4fd015d2a1 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Thu, 13 Feb 2014 02:55:16 -0800
Subject: don't fix the height of the archive widget - fix the maximum height

---
 view/css/widgets.css | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/css/widgets.css b/view/css/widgets.css
index a34508961..7ad6d79e5 100644
--- a/view/css/widgets.css
+++ b/view/css/widgets.css
@@ -68,7 +68,7 @@
 #datebrowse-sidebar select {
 	width: 190px;
 	max-width: 190px;
-	height: 150px;
+	max-height: 150px;
 }
 
 /* categories */
-- 
cgit v1.2.3


From d7546c7a638214f53219d342300ef659668a4975 Mon Sep 17 00:00:00 2001
From: marijus <mario@localhost.localdomain>
Date: Thu, 13 Feb 2014 19:29:06 +0100
Subject: This makes advanced privacy settings adjustable in expert mode only.
 Also they are hidden behind a button. This is a design hotfix should probably
 come up with something better someday...

---
 view/css/mod_settings.css          | 15 ++++++---------
 view/tpl/field_select_disabled.tpl |  7 +++++++
 view/tpl/settings.tpl              | 34 +++++++++++++++++++++++-----------
 3 files changed, 36 insertions(+), 20 deletions(-)
 create mode 100644 view/tpl/field_select_disabled.tpl

(limited to 'view')

diff --git a/view/css/mod_settings.css b/view/css/mod_settings.css
index 2049d9bc6..0d3dd36fe 100644
--- a/view/css/mod_settings.css
+++ b/view/css/mod_settings.css
@@ -1,20 +1,19 @@
-#settings-permissions-wrapper, #settings-perm-advanced {
-	opacity: 0.3;
-	filter:alpha(opacity=30);
+#settings-permissions-wrapper {
+	margin-top: 15px;
 }
 
-#settings-permissions-wrapper:hover, #settings-perm-advanced:hover {
-	opacity: 1.0;
-	filter:alpha(opacity=100);
+#settings-perm-advanced {
+	margin-top: 15px;
 }
 
-#settings-perm-advanced {
+.settings-common-perms {
 	margin-top: 15px;
 }
 
 #settings-permissions-wrapper .field {
 	margin-bottom: 10px;
 }
+
 #settings-permissions-wrapper .field label{
 	width: 350px;
 }
@@ -28,8 +27,6 @@
 	margin-bottom: 45px;
 }
 
-
-
 #settings-notifications label {
 	margin-left: 20px;
 }
diff --git a/view/tpl/field_select_disabled.tpl b/view/tpl/field_select_disabled.tpl
new file mode 100644
index 000000000..f0090cf98
--- /dev/null
+++ b/view/tpl/field_select_disabled.tpl
@@ -0,0 +1,7 @@
+	<div class='field select'>
+		<label style="font-weight: normal;" for='id_{{$field.0}}'>{{$field.1}}</label>
+		<select disabled="true" name='{{$field.0}}' id='id_{{$field.0}}'>
+			{{foreach $field.4 as $opt=>$val}}<option value="{{$opt}}" {{if $opt==$field.2}}selected="selected"{{/if}}>{{$val}}</option>{{/foreach}}
+		</select>
+		<span class='field_help'>{{$field.3}}</span>
+	</div>
diff --git a/view/tpl/settings.tpl b/view/tpl/settings.tpl
index c4b89a543..808078413 100755
--- a/view/tpl/settings.tpl
+++ b/view/tpl/settings.tpl
@@ -16,7 +16,7 @@
 {{include file="field_checkbox.tpl" field=$adult}}
 
 <div class="settings-submit-wrapper" >
-<input type="submit" name="submit" class="settings-submit" value="{{$submit}}" />
+<input type="submit" name="submit" class="settings-submit" value="{{$submit}}"{{if !$expert}} onclick="$('select').prop('disabled', false);"{{/if}} />
 </div>
 
 
@@ -34,20 +34,31 @@
 </ul>
 
 
-<h3 id="settings-perm-advanced">{{$lbl_p2macro}}</h3>
+<button type="button" class="btn btn-xs btn-warning" data-toggle="collapse" data-target="#settings-permissions-wrapper">{{$lbl_p2macro}}</button>
+
+
+
+<div class="collapse well" id="settings-permissions-wrapper">
+{{if !$expert}}
+	<div class="alert alert-info">{{$hint}}</div>
+{{/if}}
 
-<div id="settings-permissions-wrapper">
 {{foreach $permiss_arr as $permit}}
-{{include file="field_select.tpl" field=$permit}}
+	{{if $expert}}
+		{{include file="field_select.tpl" field=$permit}}
+	{{else}}
+		{{include file="field_select_disabled.tpl" field=$permit}}
+	{{/if}}
 {{/foreach}}
-</div>
 
+{{if $expert}}
+	<div class="settings-submit-wrapper" >
+	<input type="submit" name="submit" class="settings-submit" value="{{$submit}}" />
+	</div>
+{{/if}}
 
-<div class="settings-submit-wrapper" >
-<input type="submit" name="submit" class="settings-submit" value="{{$submit}}" />
 </div>
-
-
+<div class="settings-common-perms">
 {{$profile_in_dir}}
 
 {{$suggestme}}
@@ -55,6 +66,7 @@
 {{include file="field_input.tpl" field=$maxreq}}
 
 {{include file="field_input.tpl" field=$cntunkmail}}
+</div>
 
 <div id="settings-default-perms" class="settings-default-perms" >
 	<a href="#profile-jot-acl-wrapper" id="settings-default-perms-menu" >{{$permissions}} {{$permdesc}}</a>
@@ -77,7 +89,7 @@
 
 
 <div class="settings-submit-wrapper" >
-<input type="submit" name="submit" class="settings-submit" value="{{$submit}}" />
+<input type="submit" name="submit" class="settings-submit" value="{{$submit}}"{{if !$expert}} onclick="$('select').prop('disabled', false);"{{/if}} />
 </div>
 
 
@@ -108,7 +120,7 @@
 </div>
 
 <div class="settings-submit-wrapper" >
-<input type="submit" name="submit" class="settings-submit" value="{{$submit}}" />
+<input type="submit" name="submit" class="settings-submit" value="{{$submit}}"{{if !$expert}} onclick="$('select').prop('disabled', false);"{{/if}} />
 </div>
 
 </div>
-- 
cgit v1.2.3


From 06680e504a0cf43da43b50cc14b752f11101a8c2 Mon Sep 17 00:00:00 2001
From: Tobias Diekershoff <tobias.diekershoff@gmx.net>
Date: Sun, 16 Feb 2014 08:18:43 +0100
Subject: DE: update to the strings

---
 view/de/messages.po | 4995 ++++++++++++++++++++++++++-------------------------
 view/de/strings.php |  941 +++++-----
 2 files changed, 2992 insertions(+), 2944 deletions(-)

(limited to 'view')

diff --git a/view/de/messages.po b/view/de/messages.po
index 9116932b7..7acbdcdd2 100644
--- a/view/de/messages.po
+++ b/view/de/messages.po
@@ -19,8 +19,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Red Matrix\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-02-07 00:03-0800\n"
-"PO-Revision-Date: 2014-02-12 07:57+0000\n"
+"POT-Creation-Date: 2014-02-14 00:02-0800\n"
+"PO-Revision-Date: 2014-02-16 07:16+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"
@@ -29,6 +29,172 @@ msgstr ""
 "Language: de\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
+#: ../../include/widgets.php:29 ../../include/contact_widgets.php:87
+msgid "Categories"
+msgstr "Kategorien"
+
+#: ../../include/widgets.php:115 ../../include/widgets.php:155
+#: ../../include/Contact.php:104 ../../include/identity.php:628
+#: ../../mod/directory.php:184 ../../mod/match.php:62
+#: ../../mod/dirprofile.php:170 ../../mod/suggest.php:51
+msgid "Connect"
+msgstr "Verbinden"
+
+#: ../../include/widgets.php:117 ../../mod/suggest.php:53
+msgid "Ignore/Hide"
+msgstr "Ignorieren/Verstecken"
+
+#: ../../include/widgets.php:123 ../../mod/connections.php:238
+msgid "Suggestions"
+msgstr "Vorschläge"
+
+#: ../../include/widgets.php:124
+msgid "See more..."
+msgstr "Mehr anzeigen …"
+
+#: ../../include/widgets.php:146
+#, php-format
+msgid "You have %1$.0f of %2$.0f allowed connections."
+msgstr "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen."
+
+#: ../../include/widgets.php:152
+msgid "Add New Connection"
+msgstr "Neue Verbindung hinzufügen"
+
+#: ../../include/widgets.php:153
+msgid "Enter the channel address"
+msgstr "Adresse des Kanals eingeben"
+
+#: ../../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:171
+msgid "Notes"
+msgstr "Notizen"
+
+#: ../../include/widgets.php:173 ../../include/text.php:754
+#: ../../include/text.php:768 ../../mod/filer.php:36
+msgid "Save"
+msgstr "Speichern"
+
+#: ../../include/widgets.php:243
+msgid "Remove term"
+msgstr "Eintrag löschen"
+
+#: ../../include/widgets.php:252 ../../include/features.php:52
+msgid "Saved Searches"
+msgstr "Gesicherte Suchanfragen"
+
+#: ../../include/widgets.php:253 ../../include/group.php:290
+msgid "add"
+msgstr "hinzufügen"
+
+#: ../../include/widgets.php:283 ../../include/features.php:66
+#: ../../include/contact_widgets.php:53
+msgid "Saved Folders"
+msgstr "Gesicherte Ordner"
+
+#: ../../include/widgets.php:286 ../../include/contact_widgets.php:56
+#: ../../include/contact_widgets.php:90
+msgid "Everything"
+msgstr "Alles"
+
+#: ../../include/widgets.php:318 ../../include/items.php:3636
+msgid "Archives"
+msgstr "Archive"
+
+#: ../../include/widgets.php:370
+msgid "Refresh"
+msgstr "Aktualisieren"
+
+#: ../../include/widgets.php:371 ../../mod/connedit.php:389
+msgid "Me"
+msgstr "Ich"
+
+#: ../../include/widgets.php:372 ../../mod/connedit.php:391
+msgid "Best Friends"
+msgstr "Beste Freunde"
+
+#: ../../include/widgets.php:373 ../../include/identity.php:310
+#: ../../include/profile_selectors.php:42 ../../mod/connedit.php:392
+msgid "Friends"
+msgstr "Freunde"
+
+#: ../../include/widgets.php:374
+msgid "Co-workers"
+msgstr "Kollegen"
+
+#: ../../include/widgets.php:375 ../../mod/connedit.php:393
+msgid "Former Friends"
+msgstr "ehem. Freunde"
+
+#: ../../include/widgets.php:376 ../../mod/connedit.php:394
+msgid "Acquaintances"
+msgstr "Bekannte"
+
+#: ../../include/widgets.php:377
+msgid "Everybody"
+msgstr "Jeder"
+
+#: ../../include/widgets.php:409
+msgid "Account settings"
+msgstr "Konto-Einstellungen"
+
+#: ../../include/widgets.php:415
+msgid "Channel settings"
+msgstr "Kanal-Einstellungen"
+
+#: ../../include/widgets.php:421
+msgid "Additional features"
+msgstr "Zusätzliche Funktionen"
+
+#: ../../include/widgets.php:427
+msgid "Feature settings"
+msgstr "Funktions-Einstellungen"
+
+#: ../../include/widgets.php:433
+msgid "Display settings"
+msgstr "Anzeige-Einstellungen"
+
+#: ../../include/widgets.php:439
+msgid "Connected apps"
+msgstr "Verbundene Apps"
+
+#: ../../include/widgets.php:445
+msgid "Export channel"
+msgstr "Kanal exportieren"
+
+#: ../../include/widgets.php:457
+msgid "Automatic Permissions (Advanced)"
+msgstr "Automatische Berechtigungen (Erweitert)"
+
+#: ../../include/widgets.php:467
+msgid "Premium Channel Settings"
+msgstr "Premium-Kanal-Einstellungen"
+
+#: ../../include/widgets.php:476 ../../include/features.php:43
+#: ../../mod/sources.php:88
+msgid "Channel Sources"
+msgstr "Kanal-Quellen"
+
+#: ../../include/widgets.php:487 ../../include/nav.php:181
+#: ../../mod/admin.php:837 ../../mod/admin.php:1042
+msgid "Settings"
+msgstr "Einstellungen"
+
+#: ../../include/widgets.php:504
+msgid "Check Mail"
+msgstr "E-Mails abrufen"
+
+#: ../../include/widgets.php:509 ../../include/nav.php:172
+msgid "New Message"
+msgstr "Neue Nachricht"
+
+#: ../../include/widgets.php:585
+msgid "Chat Rooms"
+msgstr "Chaträume"
+
 #: ../../include/acl_selectors.php:235
 msgid "Visible to everybody"
 msgstr "Für jeden sichtbar"
@@ -121,7 +287,7 @@ msgstr "Chat"
 
 #: ../../include/nav.php:81
 msgid "Your chatrooms"
-msgstr "Deine Chat-Räume"
+msgstr "Deine Chaträume"
 
 #: ../../include/nav.php:82 ../../include/nav.php:175
 #: ../../include/conversation.php:1506 ../../mod/events.php:354
@@ -130,7 +296,7 @@ msgstr "Veranstaltungen"
 
 #: ../../include/nav.php:82
 msgid "Your events"
-msgstr "Deine Veransctaltungen"
+msgstr "Deine Veranstaltungen"
 
 #: ../../include/nav.php:83 ../../include/conversation.php:1514
 msgid "Bookmarks"
@@ -163,7 +329,7 @@ msgstr "%s - Klick zum Abmelden"
 
 #: ../../include/nav.php:111
 msgid "Click to authenticate to your home hub"
-msgstr "Klick zum Authentifizieren bei Deinem Heimat-Hub"
+msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren"
 
 #: ../../include/nav.php:125
 msgid "Home Page"
@@ -202,7 +368,7 @@ msgstr "Suche"
 msgid "Search site content"
 msgstr "Durchsuche Seiten-Inhalt"
 
-#: ../../include/nav.php:142 ../../mod/directory.php:210
+#: ../../include/nav.php:142 ../../mod/directory.php:211
 msgid "Directory"
 msgstr "Verzeichnis"
 
@@ -282,10 +448,6 @@ msgstr "Eingang"
 msgid "Outbox"
 msgstr "Ausgang"
 
-#: ../../include/nav.php:172 ../../include/widgets.php:509
-msgid "New Message"
-msgstr "Neue Nachricht"
-
 #: ../../include/nav.php:175
 msgid "Event Calendar"
 msgstr "Veranstaltungskalender"
@@ -306,11 +468,6 @@ msgstr "Kanal-Auswahl"
 msgid "Manage Your Channels"
 msgstr "Verwalte Deine Kanäle"
 
-#: ../../include/nav.php:181 ../../include/widgets.php:487
-#: ../../mod/admin.php:837 ../../mod/admin.php:1042
-msgid "Settings"
-msgstr "Einstellungen"
-
 #: ../../include/nav.php:181
 msgid "Account/Channel Settings"
 msgstr "Konto-/Kanal-Einstellungen"
@@ -321,7 +478,7 @@ msgstr "Verbindungen"
 
 #: ../../include/nav.php:183
 msgid "Manage/Edit Friends and Connections"
-msgstr "Verwalte/Bearbeite Freunde und Verbindungen"
+msgstr "Freunde und Verbindungen verwalten"
 
 #: ../../include/nav.php:190 ../../mod/admin.php:112
 msgid "Admin"
@@ -376,12 +533,7 @@ msgstr[1] "%d Verbindungen"
 
 #: ../../include/text.php:693
 msgid "View Connections"
-msgstr "Zeige Verbindungen"
-
-#: ../../include/text.php:754 ../../include/text.php:768
-#: ../../include/widgets.php:173 ../../mod/filer.php:36
-msgid "Save"
-msgstr "Speichern"
+msgstr "Verbindungen anzeigen"
 
 #: ../../include/text.php:834
 msgid "poke"
@@ -613,7 +765,7 @@ msgstr "Link zum Originalbeitrag"
 
 #: ../../include/text.php:1436
 msgid "Select a page layout: "
-msgstr "Ein Seiten-Layout auswählen"
+msgstr "Ein Seiten-Layout auswählen:"
 
 #: ../../include/text.php:1439 ../../include/text.php:1504
 msgid "default"
@@ -621,7 +773,7 @@ msgstr "Standard"
 
 #: ../../include/text.php:1475
 msgid "Page content type: "
-msgstr "Content-Typ der Seite"
+msgstr "Content-Typ der Seite:"
 
 #: ../../include/text.php:1516
 msgid "Select an alternate language"
@@ -671,189 +823,68 @@ msgstr "Layouts"
 msgid "Pages"
 msgstr "Seiten"
 
-#: ../../include/widgets.php:29 ../../include/contact_widgets.php:87
-msgid "Categories"
-msgstr "Kategorien"
-
-#: ../../include/widgets.php:115 ../../include/widgets.php:155
-#: ../../include/Contact.php:104 ../../include/identity.php:628
-#: ../../mod/directory.php:183 ../../mod/match.php:62
-#: ../../mod/dirprofile.php:170 ../../mod/suggest.php:51
-msgid "Connect"
-msgstr "Verbinden"
-
-#: ../../include/widgets.php:117 ../../mod/suggest.php:53
-msgid "Ignore/Hide"
-msgstr "Ignorieren/Verstecken"
+#: ../../include/bbcode.php:128 ../../include/bbcode.php:594
+#: ../../include/bbcode.php:597 ../../include/bbcode.php:602
+#: ../../include/bbcode.php:605 ../../include/bbcode.php:608
+#: ../../include/bbcode.php:611 ../../include/bbcode.php:616
+#: ../../include/bbcode.php:619 ../../include/bbcode.php:624
+#: ../../include/bbcode.php:627 ../../include/bbcode.php:630
+#: ../../include/bbcode.php:633
+msgid "Image/photo"
+msgstr "Bild/Foto"
 
-#: ../../include/widgets.php:123 ../../mod/connections.php:238
-msgid "Suggestions"
-msgstr "Vorschläge"
+#: ../../include/bbcode.php:163 ../../include/bbcode.php:644
+msgid "Encrypted content"
+msgstr "Verschlüsselter Inhalt"
 
-#: ../../include/widgets.php:124
-msgid "See more..."
-msgstr "Mehr anzeigen..."
+#: ../../include/bbcode.php:170
+msgid "QR code"
+msgstr "QR-Code"
 
-#: ../../include/widgets.php:146
+#: ../../include/bbcode.php:213
 #, php-format
-msgid "You have %1$.0f of %2$.0f allowed connections."
-msgstr "Du bist %1$.0f von %2$.0f erlaubten Verbindungen eingegangen."
+msgid "%1$s wrote the following %2$s %3$s"
+msgstr "%1$s schrieb den folgenden %2$s %3$s"
 
-#: ../../include/widgets.php:152
-msgid "Add New Connection"
-msgstr "Neue Verbindung hinzufügen"
+#: ../../include/bbcode.php:215
+msgid "post"
+msgstr "Beitrag"
 
-#: ../../include/widgets.php:153
-msgid "Enter the channel address"
-msgstr "Adresse des Kanals eingeben"
+#: ../../include/bbcode.php:562 ../../include/bbcode.php:582
+msgid "$1 wrote:"
+msgstr "$1 schrieb:"
 
-#: ../../include/widgets.php:154
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara"
+#: ../../include/Contact.php:120
+msgid "New window"
+msgstr "Neues Fenster"
 
-#: ../../include/widgets.php:171
-msgid "Notes"
-msgstr "Notizen"
+#: ../../include/Contact.php:121
+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:243
-msgid "Remove term"
-msgstr "Eintrag löschen"
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Allgemeine Funktionen"
 
-#: ../../include/widgets.php:252 ../../include/features.php:52
-msgid "Saved Searches"
-msgstr "Gesicherte Suchanfragen"
+#: ../../include/features.php:25
+msgid "Content Expiration"
+msgstr "Verfall von Inhalten"
 
-#: ../../include/widgets.php:253 ../../include/group.php:290
-msgid "add"
-msgstr "hinzufügen"
+#: ../../include/features.php:25
+msgid "Remove posts/comments and/or private messages at a future time"
+msgstr "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum."
 
-#: ../../include/widgets.php:283 ../../include/features.php:66
-#: ../../include/contact_widgets.php:53
-msgid "Saved Folders"
-msgstr "Gesicherte Ordner"
+#: ../../include/features.php:26
+msgid "Multiple Profiles"
+msgstr "Mehrfachprofile"
 
-#: ../../include/widgets.php:286 ../../include/contact_widgets.php:56
-#: ../../include/contact_widgets.php:90
-msgid "Everything"
-msgstr "Alles"
+#: ../../include/features.php:26
+msgid "Ability to create multiple profiles"
+msgstr "Mehrfachprofile anlegen können"
 
-#: ../../include/widgets.php:318 ../../include/items.php:3613
-msgid "Archives"
-msgstr "Archive"
-
-#: ../../include/widgets.php:370
-msgid "Refresh"
-msgstr "Aktualisieren"
-
-#: ../../include/widgets.php:371 ../../mod/connedit.php:389
-msgid "Me"
-msgstr "Ich"
-
-#: ../../include/widgets.php:372 ../../mod/connedit.php:391
-msgid "Best Friends"
-msgstr "Beste Freunde"
-
-#: ../../include/widgets.php:373 ../../include/identity.php:310
-#: ../../include/profile_selectors.php:42 ../../mod/connedit.php:392
-msgid "Friends"
-msgstr "Freunde"
-
-#: ../../include/widgets.php:374
-msgid "Co-workers"
-msgstr "Kollegen"
-
-#: ../../include/widgets.php:375 ../../mod/connedit.php:393
-msgid "Former Friends"
-msgstr "ehem. Freunde"
-
-#: ../../include/widgets.php:376 ../../mod/connedit.php:394
-msgid "Acquaintances"
-msgstr "Bekanntschaften"
-
-#: ../../include/widgets.php:377
-msgid "Everybody"
-msgstr "Jeder"
-
-#: ../../include/widgets.php:409
-msgid "Account settings"
-msgstr "Konto-Einstellungen"
-
-#: ../../include/widgets.php:415
-msgid "Channel settings"
-msgstr "Kanal-Einstellungen"
-
-#: ../../include/widgets.php:421
-msgid "Additional features"
-msgstr "Zusätzliche Funktionen"
-
-#: ../../include/widgets.php:427
-msgid "Feature settings"
-msgstr "Funktions-Einstellungen"
-
-#: ../../include/widgets.php:433
-msgid "Display settings"
-msgstr "Anzeige-Einstellungen"
-
-#: ../../include/widgets.php:439
-msgid "Connected apps"
-msgstr "Verbundene Apps"
-
-#: ../../include/widgets.php:445
-msgid "Export channel"
-msgstr "Kanal exportieren"
-
-#: ../../include/widgets.php:457
-msgid "Automatic Permissions (Advanced)"
-msgstr "Automatische Berechtigungen (Erweitert)"
-
-#: ../../include/widgets.php:467
-msgid "Premium Channel Settings"
-msgstr "Prämium-Kanal Einstellungen"
-
-#: ../../include/widgets.php:476 ../../include/features.php:43
-#: ../../mod/sources.php:88
-msgid "Channel Sources"
-msgstr "Kanal Quellen"
-
-#: ../../include/widgets.php:504
-msgid "Check Mail"
-msgstr "E-Mails abrufen"
-
-#: ../../include/widgets.php:585
-msgid "Chat Rooms"
-msgstr "Chaträume"
-
-#: ../../include/Contact.php:120
-msgid "New window"
-msgstr "Neues Fenster"
-
-#: ../../include/Contact.php:121
-msgid "Open the selected location in a different window or browser tab"
-msgstr "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab"
-
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "Allgemeine Funktionen"
-
-#: ../../include/features.php:25
-msgid "Content Expiration"
-msgstr "Verfall von Inhalten"
-
-#: ../../include/features.php:25
-msgid "Remove posts/comments and/or private messages at a future time"
-msgstr "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum."
-
-#: ../../include/features.php:26
-msgid "Multiple Profiles"
-msgstr "Mehrfachprofile"
-
-#: ../../include/features.php:26
-msgid "Ability to create multiple profiles"
-msgstr "Mehrfachprofile anlegen können"
-
-#: ../../include/features.php:27
-msgid "Web Pages"
-msgstr "Webseiten"
+#: ../../include/features.php:27
+msgid "Web Pages"
+msgstr "Webseiten"
 
 #: ../../include/features.php:27
 msgid "Provide managed web pages on your channel"
@@ -861,7 +892,7 @@ msgstr "Stelle verwaltete Webseiten in Deinem Kanal zur Verfügung"
 
 #: ../../include/features.php:28
 msgid "Private Notes"
-msgstr "private Notizen"
+msgstr "Private Notizen"
 
 #: ../../include/features.php:28
 msgid "Enables a tool to store notes and reminders"
@@ -875,7 +906,7 @@ msgstr "Erweitertes Teilen von Identitäten"
 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."
+msgstr "Teile Deine Identität mit allen Webseiten im Internet. Ist dies deaktiviert, wird Deine Identität nur mit Red-Servern geteilt."
 
 #: ../../include/features.php:34
 msgid "Expert Mode"
@@ -883,7 +914,7 @@ msgstr "Expertenmodus"
 
 #: ../../include/features.php:34
 msgid "Enable Expert Mode to provide advanced configuration options"
-msgstr "Aktiviere Expertenmodus, um fortgeschrittene Konfiguration zur Verfügung zu stellen"
+msgstr "Aktiviere den Expertenmodus, um fortgeschrittene Konfigurationsoptionen zu aktivieren"
 
 #: ../../include/features.php:35
 msgid "Premium Channel"
@@ -893,7 +924,7 @@ msgstr "Premium-Kanal"
 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"
+msgstr "Ermöglicht Einschränkungen und Bedingungen für Kontakte dieses Kanals"
 
 #: ../../include/features.php:40
 msgid "Post Composition Features"
@@ -917,7 +948,7 @@ msgstr "Erlaube Voransicht von Beiträgen und Kommentaren vor Veröffentlichung"
 
 #: ../../include/features.php:43
 msgid "Automatically import channel content from other channels or feeds"
-msgstr "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds."
+msgstr "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds"
 
 #: ../../include/features.php:44
 msgid "Even More Encryption"
@@ -978,7 +1009,7 @@ msgstr "Filter Aktivitätenstream nach Tiefe der Beziehung"
 
 #: ../../include/features.php:56
 msgid "Suggest Channels"
-msgstr "Kanäle Vorschlagen"
+msgstr "Kanäle vorschlagen"
 
 #: ../../include/features.php:56
 msgid "Show channel suggestions"
@@ -1022,7 +1053,7 @@ msgstr "Gefällt-mir-nicht Beiträge"
 
 #: ../../include/features.php:67
 msgid "Ability to dislike posts/comments"
-msgstr "Möglichkeit für Gefällt-mir-nicht für Beiträge/Kommentare"
+msgstr "„Gefällt mir nicht“ ermöglichen"
 
 #: ../../include/features.php:68
 msgid "Star Posts"
@@ -1034,11 +1065,11 @@ msgstr "Möglichkeit, spezielle Beiträge mit Sternchen-Symbol zu markieren"
 
 #: ../../include/features.php:69
 msgid "Tag Cloud"
-msgstr "Tag Wolke"
+msgstr "Schlagwort-Wolke"
 
 #: ../../include/features.php:69
 msgid "Provide a personal tag cloud on your channel page"
-msgstr "Persönliche Schlagwort-Wolke für deine Kanal-Seite anlegen"
+msgstr "Persönliche Schlagwort-Wolke auf Deiner Kanal-Seite anzeigen"
 
 #: ../../include/contact_selectors.php:30
 msgid "Unknown | Not categorised"
@@ -1205,7 +1236,7 @@ msgstr "vor %1$d %2$s"
 #: ../../include/dba/dba_driver.php:50
 #, php-format
 msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Kann die DNS-Info für den Datenbank-Server '%s' nicht finden"
+msgstr "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden"
 
 #: ../../include/event.php:11 ../../include/bb2diaspora.php:433
 msgid "l F d, Y \\@ g:i A"
@@ -1221,7 +1252,7 @@ msgstr "Endet:"
 
 #: ../../include/event.php:40 ../../include/identity.php:679
 #: ../../include/bb2diaspora.php:455 ../../mod/events.php:462
-#: ../../mod/directory.php:156 ../../mod/dirprofile.php:111
+#: ../../mod/directory.php:157 ../../mod/dirprofile.php:111
 msgid "Location:"
 msgstr "Ort:"
 
@@ -1264,12 +1295,12 @@ 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:546
-#: ../../mod/photos.php:989 ../../mod/photos.php:1076
+#: ../../include/js_strings.php:6 ../../include/ItemObject.php:547
+#: ../../mod/photos.php:993 ../../mod/photos.php:1080
 msgid "Comment"
 msgstr "Kommentar"
 
-#: ../../include/js_strings.php:7 ../../include/ItemObject.php:280
+#: ../../include/js_strings.php:7 ../../include/ItemObject.php:281
 #: ../../include/contact_widgets.php:125
 msgid "show more"
 msgstr "mehr zeigen"
@@ -1292,11 +1323,11 @@ msgstr "alle"
 
 #: ../../include/js_strings.php:12
 msgid "Secret Passphrase"
-msgstr "geheime Passwort-Phrase"
+msgstr "geheime Passphrase"
 
 #: ../../include/js_strings.php:13
 msgid "Passphrase hint"
-msgstr "Hinweis zur Phrase"
+msgstr "Hinweis zur Passphrase"
 
 #: ../../include/js_strings.php:15
 msgid "timeago.prefixAgo"
@@ -1390,7 +1421,7 @@ msgstr "Gespeicherter Beitrag konnten nicht überprüft werden."
 #: ../../include/photo/photo_driver.php:637 ../../include/photos.php:51
 #: ../../mod/profile_photo.php:78 ../../mod/profile_photo.php:225
 #: ../../mod/profile_photo.php:336 ../../mod/photos.php:91
-#: ../../mod/photos.php:652 ../../mod/photos.php:674
+#: ../../mod/photos.php:656 ../../mod/photos.php:678
 msgid "Profile Photos"
 msgstr "Profilfotos"
 
@@ -1399,34 +1430,33 @@ msgstr "Profilfotos"
 #: ../../include/attach.php:233 ../../include/attach.php:247
 #: ../../include/attach.php:268 ../../include/attach.php:463
 #: ../../include/attach.php:541 ../../include/chat.php:113
-#: ../../include/photos.php:15 ../../include/items.php:3492
-#: ../../mod/common.php:35 ../../mod/events.php:140 ../../mod/thing.php:241
-#: ../../mod/thing.php:257 ../../mod/thing.php:291 ../../mod/invite.php:13
+#: ../../include/photos.php:15 ../../include/items.php:3515
+#: ../../mod/common.php:35 ../../mod/events.php:140 ../../mod/thing.php:247
+#: ../../mod/thing.php:263 ../../mod/thing.php:298 ../../mod/invite.php:13
 #: ../../mod/invite.php:104 ../../mod/item.php:182 ../../mod/item.php:190
 #: ../../mod/menu.php:44 ../../mod/webpages.php:40 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/bookmarks.php:46 ../../mod/settings.php:490
-#: ../../mod/chat.php:87 ../../mod/chat.php:92
-#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27
-#: ../../mod/delegate.php:6 ../../mod/mitem.php:73 ../../mod/group.php:9
-#: ../../mod/viewsrc.php:12 ../../mod/editpost.php:13
-#: ../../mod/connedit.php:182 ../../mod/layouts.php:27
-#: ../../mod/layouts.php:42 ../../mod/page.php:30 ../../mod/page.php:80
-#: ../../mod/network.php:12 ../../mod/profiles.php:152
+#: ../../mod/api.php:31 ../../mod/bookmarks.php:46 ../../mod/chat.php:87
+#: ../../mod/chat.php:92 ../../mod/viewconnections.php:22
+#: ../../mod/viewconnections.php:27 ../../mod/delegate.php:6
+#: ../../mod/mitem.php:73 ../../mod/group.php:9 ../../mod/viewsrc.php:12
+#: ../../mod/editpost.php:13 ../../mod/connedit.php:182
+#: ../../mod/layouts.php:27 ../../mod/layouts.php:42 ../../mod/page.php:30
+#: ../../mod/page.php:80 ../../mod/network.php:12 ../../mod/profiles.php:152
 #: ../../mod/profiles.php:453 ../../mod/sources.php:66 ../../mod/setup.php:200
 #: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97
-#: ../../mod/achievements.php:27 ../../mod/manage.php:6 ../../mod/mail.php:108
-#: ../../mod/editlayout.php:48 ../../mod/profile_photo.php:187
-#: ../../mod/profile_photo.php:200 ../../mod/connections.php:169
-#: ../../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:188
+#: ../../mod/achievements.php:27 ../../mod/settings.php:493
+#: ../../mod/manage.php:6 ../../mod/mail.php:108 ../../mod/editlayout.php:48
+#: ../../mod/profile_photo.php:187 ../../mod/profile_photo.php:200
+#: ../../mod/connections.php:169 ../../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:188
 #: ../../mod/channel.php:231 ../../mod/fsuggest.php:78
 #: ../../mod/editblock.php:48 ../../mod/filestorage.php:10
 #: ../../mod/filestorage.php:59 ../../mod/filestorage.php:75
 #: ../../mod/filestorage.php:98 ../../mod/suggest.php:26
 #: ../../mod/message.php:16 ../../mod/register.php:68 ../../mod/regmod.php:18
-#: ../../mod/authtest.php:13 ../../mod/photos.php:68 ../../mod/photos.php:522
+#: ../../mod/authtest.php:13 ../../mod/photos.php:68 ../../mod/photos.php:526
 #: ../../mod/mood.php:119 ../../index.php:176 ../../index.php:351
 msgid "Permission denied."
 msgstr "Zugang verweigert"
@@ -1455,7 +1485,7 @@ msgstr "Datei überschreitet das Größen-Limit von %d"
 #: ../../include/attach.php:339
 #, 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."
+msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht."
 
 #: ../../include/attach.php:423
 msgid "File upload failed. Possible system limit or action terminated."
@@ -1471,7 +1501,7 @@ msgstr "Pfad nicht verfügbar."
 
 #: ../../include/attach.php:546
 msgid "Empty pathname"
-msgstr "leere Pfadangabe"
+msgstr "Leere Pfadangabe"
 
 #: ../../include/attach.php:564
 msgid "duplicate filename or path"
@@ -1489,41 +1519,10 @@ msgstr "mkdir fehlgeschlagen."
 msgid "database storage failed."
 msgstr "Speichern in der Datenbank fehlgeschlagen."
 
-#: ../../include/bbcode.php:128 ../../include/bbcode.php:587
-#: ../../include/bbcode.php:590 ../../include/bbcode.php:595
-#: ../../include/bbcode.php:598 ../../include/bbcode.php:601
-#: ../../include/bbcode.php:604 ../../include/bbcode.php:609
-#: ../../include/bbcode.php:612 ../../include/bbcode.php:617
-#: ../../include/bbcode.php:620 ../../include/bbcode.php:623
-#: ../../include/bbcode.php:626
-msgid "Image/photo"
-msgstr "Bild/Foto"
-
-#: ../../include/bbcode.php:163 ../../include/bbcode.php:637
-msgid "Encrypted content"
-msgstr "Verschlüsselter Inhalt"
-
-#: ../../include/bbcode.php:170
-msgid "QR code"
-msgstr "QR Code"
-
-#: ../../include/bbcode.php:213
-#, 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:215
-msgid "post"
-msgstr "Beitrag"
-
-#: ../../include/bbcode.php:555 ../../include/bbcode.php:575
-msgid "$1 wrote:"
-msgstr "$1 schrieb:"
-
 #: ../../include/bookmarks.php:31
 #, php-format
 msgid "%1$s's bookmarks"
-msgstr "%1$s's Lesezeichen"
+msgstr "%1$ss Lesezeichen"
 
 #: ../../include/conversation.php:123
 msgid "channel"
@@ -1532,12 +1531,12 @@ 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"
+msgstr "%1$s gefällt %2$ss %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"
+msgstr "%1$s gefällt %2$ss %3$s nicht"
 
 #: ../../include/conversation.php:201
 #, php-format
@@ -1547,7 +1546,7 @@ 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"
+msgstr "%1$s stupste %2$s an"
 
 #: ../../include/conversation.php:258 ../../mod/mood.php:63
 #, php-format
@@ -1559,9 +1558,9 @@ msgid "Select"
 msgstr "Auswählen"
 
 #: ../../include/conversation.php:632 ../../include/ItemObject.php:108
-#: ../../mod/thing.php:230 ../../mod/settings.php:576 ../../mod/group.php:176
-#: ../../mod/admin.php:745 ../../mod/connedit.php:359
-#: ../../mod/filestorage.php:171 ../../mod/photos.php:1040
+#: ../../mod/thing.php:236 ../../mod/group.php:176 ../../mod/admin.php:745
+#: ../../mod/connedit.php:359 ../../mod/settings.php:579
+#: ../../mod/filestorage.php:171 ../../mod/photos.php:1044
 msgid "Delete"
 msgstr "Löschen"
 
@@ -1572,7 +1571,7 @@ 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."
+msgstr "%ss Profil auf %s ansehen"
 
 #: ../../include/conversation.php:676
 msgid "Categories:"
@@ -1602,10 +1601,10 @@ msgid "View in context"
 msgstr "Im Zusammenhang anschauen"
 
 #: ../../include/conversation.php:707 ../../include/conversation.php:1120
-#: ../../include/ItemObject.php:258 ../../mod/editpost.php:112
+#: ../../include/ItemObject.php:259 ../../mod/editpost.php:112
 #: ../../mod/mail.php:222 ../../mod/mail.php:336 ../../mod/editlayout.php:115
 #: ../../mod/editwebpage.php:153 ../../mod/editblock.php:129
-#: ../../mod/photos.php:971
+#: ../../mod/photos.php:975
 msgid "Please wait"
 msgstr "Bitte warten"
 
@@ -1639,7 +1638,7 @@ msgstr "Fotos ansehen"
 
 #: ../../include/conversation.php:935
 msgid "Matrix Activity"
-msgstr "Matrix Aktivität"
+msgstr "Matrix-Aktivität"
 
 #: ../../include/conversation.php:936
 msgid "Edit Contact"
@@ -1725,21 +1724,21 @@ msgstr "Speichern in Ordner:"
 
 #: ../../include/conversation.php:1072
 msgid "Where are you right now?"
-msgstr "Wo bist du jetzt grade?"
+msgstr "Wo bist Du jetzt grade?"
 
 #: ../../include/conversation.php:1073 ../../mod/editpost.php:52
 #: ../../mod/mail.php:172 ../../mod/mail.php:270
 msgid "Expires YYYY-MM-DD HH:MM"
 msgstr "Verfällt YYYY-MM-DD HH;MM"
 
-#: ../../include/conversation.php:1083 ../../include/ItemObject.php:556
+#: ../../include/conversation.php:1083 ../../include/ItemObject.php:557
 #: ../../mod/webpages.php:122 ../../mod/editpost.php:132
 #: ../../mod/editlayout.php:136 ../../mod/editwebpage.php:177
-#: ../../mod/editblock.php:151 ../../mod/photos.php:991
+#: ../../mod/editblock.php:151 ../../mod/photos.php:995
 msgid "Preview"
 msgstr "Vorschau"
 
-#: ../../include/conversation.php:1097 ../../mod/photos.php:970
+#: ../../include/conversation.php:1097 ../../mod/photos.php:974
 msgid "Share"
 msgstr "Teilen"
 
@@ -1853,19 +1852,19 @@ msgstr "Beispiel: bob@example.com, mary@example.com"
 msgid "Set expiration date"
 msgstr "Verfallsdatum"
 
-#: ../../include/conversation.php:1147 ../../include/ItemObject.php:559
+#: ../../include/conversation.php:1147 ../../include/ItemObject.php:560
 #: ../../mod/editpost.php:140 ../../mod/mail.php:228 ../../mod/mail.php:341
 msgid "Encrypt text"
 msgstr "Text verschlüsseln"
 
 #: ../../include/conversation.php:1149 ../../mod/editpost.php:142
 msgid "OK"
-msgstr "OK"
+msgstr "Ok"
 
-#: ../../include/conversation.php:1150 ../../mod/settings.php:514
-#: ../../mod/settings.php:540 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
-#: ../../mod/editpost.php:143 ../../mod/fbrowser.php:82
-#: ../../mod/fbrowser.php:117
+#: ../../include/conversation.php:1150 ../../mod/tagrm.php:11
+#: ../../mod/tagrm.php:94 ../../mod/editpost.php:143
+#: ../../mod/settings.php:517 ../../mod/settings.php:543
+#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117
 msgid "Cancel"
 msgstr "Abbrechen"
 
@@ -1891,7 +1890,7 @@ msgstr "Persönlich"
 
 #: ../../include/conversation.php:1397
 msgid "Posts that mention or involve you"
-msgstr "Beiträge mit Beteiligung deinerseits"
+msgstr "Beiträge mit Beteiligung Deinerseits"
 
 #: ../../include/conversation.php:1400 ../../mod/menu.php:61
 #: ../../mod/connections.php:211
@@ -1900,7 +1899,7 @@ msgstr "Neu"
 
 #: ../../include/conversation.php:1403
 msgid "Activity Stream - by date"
-msgstr "Activity Stream - nach Datum sortiert"
+msgstr "Activity Stream – nach Datum sortiert"
 
 #: ../../include/conversation.php:1410
 msgid "Starred"
@@ -1908,7 +1907,7 @@ msgstr "Markiert"
 
 #: ../../include/conversation.php:1413
 msgid "Favourite Posts"
-msgstr "Beiträge mit Sternchen"
+msgstr "Markierte Beiträge"
 
 #: ../../include/conversation.php:1420
 msgid "Spam"
@@ -1916,7 +1915,7 @@ msgstr "Spam"
 
 #: ../../include/conversation.php:1423
 msgid "Posts flagged as SPAM"
-msgstr "Nachrichten die als SPAM markiert wurden"
+msgstr "Nachrichten, die als SPAM markiert wurden"
 
 #: ../../include/conversation.php:1454
 msgid "Channel"
@@ -1944,7 +1943,7 @@ msgstr "Dateien und Speicher"
 
 #: ../../include/conversation.php:1496 ../../include/conversation.php:1499
 msgid "Chatrooms"
-msgstr "Chat-Räume"
+msgstr "Chaträume"
 
 #: ../../include/conversation.php:1509
 msgid "Events and Calendar"
@@ -1958,7 +1957,7 @@ msgstr "Gespeicherte Lesezeichen"
 msgid "Manage Webpages"
 msgstr "Webseiten verwalten"
 
-#: ../../include/identity.php:29 ../../mod/item.php:1161
+#: ../../include/identity.php:29 ../../mod/item.php:1177
 msgid "Unable to obtain identity information from database"
 msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen"
 
@@ -1997,7 +1996,7 @@ msgstr "Angeforderte Kanal nicht verfügbar."
 
 #: ../../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."
+msgstr "Entschuldigung, Du besitzt nicht die nötigen Rechte, um dieses Profil zu betrachten."
 
 #: ../../include/identity.php:524 ../../mod/webpages.php:8
 #: ../../mod/connect.php:13 ../../mod/layouts.php:8
@@ -2008,7 +2007,7 @@ msgstr "Erwünschte Profil ist nicht verfügbar."
 
 #: ../../include/identity.php:642 ../../mod/profiles.php:603
 msgid "Change profile photo"
-msgstr "Ändere das Profilfoto"
+msgstr "Profilfoto ändern"
 
 #: ../../include/identity.php:648
 msgid "Profiles"
@@ -2039,17 +2038,17 @@ msgid "Edit visibility"
 msgstr "Sichtbarkeit bearbeiten"
 
 #: ../../include/identity.php:681 ../../include/identity.php:908
-#: ../../mod/directory.php:158
+#: ../../mod/directory.php:159
 msgid "Gender:"
 msgstr "Geschlecht:"
 
 #: ../../include/identity.php:682 ../../include/identity.php:928
-#: ../../mod/directory.php:160
+#: ../../mod/directory.php:161
 msgid "Status:"
 msgstr "Status:"
 
 #: ../../include/identity.php:683 ../../include/identity.php:939
-#: ../../mod/directory.php:162
+#: ../../mod/directory.php:163
 msgid "Homepage:"
 msgstr "Homepage:"
 
@@ -2096,7 +2095,7 @@ msgstr "Veranstaltungen in dieser Woche:"
 msgid "Profile"
 msgstr "Profil"
 
-#: ../../include/identity.php:906 ../../mod/settings.php:920
+#: ../../include/identity.php:906 ../../mod/settings.php:924
 msgid "Full Name:"
 msgstr "Voller Name:"
 
@@ -2119,7 +2118,7 @@ msgstr "Alter:"
 #: ../../include/identity.php:934
 #, php-format
 msgid "for %1$d %2$s"
-msgstr "für %1$d %2$s"
+msgstr "seit %1$d %2$s"
 
 #: ../../include/identity.php:937 ../../mod/profiles.php:526
 msgid "Sexual Preference:"
@@ -2141,7 +2140,7 @@ msgstr "Politische Ansichten:"
 msgid "Religion:"
 msgstr "Religion:"
 
-#: ../../include/identity.php:949 ../../mod/directory.php:164
+#: ../../include/identity.php:949 ../../mod/directory.php:165
 msgid "About:"
 msgstr "Über:"
 
@@ -2151,11 +2150,11 @@ msgstr "Hobbys/Interessen:"
 
 #: ../../include/identity.php:953 ../../mod/profiles.php:532
 msgid "Likes:"
-msgstr "Gefällt-mir:"
+msgstr "Gefällt:"
 
 #: ../../include/identity.php:955 ../../mod/profiles.php:533
 msgid "Dislikes:"
-msgstr "Gefällt-mir-nicht:"
+msgstr "Gefällt nicht:"
 
 #: ../../include/identity.php:958
 msgid "Contact information and Social Networks:"
@@ -2193,14 +2192,14 @@ msgstr "Arbeit/Anstellung:"
 msgid "School/education:"
 msgstr "Schule/Ausbildung:"
 
-#: ../../include/ItemObject.php:89 ../../mod/photos.php:843
+#: ../../include/ItemObject.php:89 ../../mod/photos.php:847
 msgid "Private Message"
 msgstr "Private Nachricht"
 
 #: ../../include/ItemObject.php:96 ../../include/page_widgets.php:8
-#: ../../mod/thing.php:229 ../../mod/menu.php:59 ../../mod/webpages.php:118
-#: ../../mod/settings.php:575 ../../mod/editpost.php:103
-#: ../../mod/layouts.php:102 ../../mod/editlayout.php:106
+#: ../../mod/thing.php:235 ../../mod/menu.php:59 ../../mod/webpages.php:118
+#: ../../mod/editpost.php:103 ../../mod/layouts.php:102
+#: ../../mod/settings.php:578 ../../mod/editlayout.php:106
 #: ../../mod/blocks.php:93 ../../mod/editwebpage.php:144
 #: ../../mod/editblock.php:120 ../../mod/filestorage.php:170
 msgid "Edit"
@@ -2220,7 +2219,7 @@ msgstr "Markierung entfernen"
 
 #: ../../include/ItemObject.php:148
 msgid "toggle star status"
-msgstr "Stern-Status umschalten"
+msgstr "Markierung umschalten"
 
 #: ../../include/ItemObject.php:152
 msgid "starred"
@@ -2230,21 +2229,21 @@ msgstr "markiert"
 msgid "add tag"
 msgstr "Schlagwort hinzufügen"
 
-#: ../../include/ItemObject.php:184 ../../mod/photos.php:968
+#: ../../include/ItemObject.php:184 ../../mod/photos.php:972
 msgid "I like this (toggle)"
-msgstr "Ich mag das (Umschalter)"
+msgstr "Mir gefällt das (Umschalter)"
 
 #: ../../include/ItemObject.php:184 ../../include/taxonomy.php:254
 msgid "like"
-msgstr "Gefällt-mir"
+msgstr "mag"
 
-#: ../../include/ItemObject.php:185 ../../mod/photos.php:969
+#: ../../include/ItemObject.php:185 ../../mod/photos.php:973
 msgid "I don't like this (toggle)"
-msgstr "Ich mag das nicht (Umschalter)"
+msgstr "Mir gefällt das nicht (Umschalter)"
 
 #: ../../include/ItemObject.php:185 ../../include/taxonomy.php:255
 msgid "dislike"
-msgstr "Gefällt-mir-nicht"
+msgstr "verurteile"
 
 #: ../../include/ItemObject.php:187
 msgid "Share this"
@@ -2257,11 +2256,11 @@ msgstr "Teilen"
 #: ../../include/ItemObject.php:211 ../../include/ItemObject.php:212
 #, php-format
 msgid "View %s's profile - %s"
-msgstr "Schaue dir %s's Profil an - %s"
+msgstr "Schaue Dir %ss Profil an – %s"
 
 #: ../../include/ItemObject.php:213
 msgid "to"
-msgstr "zu"
+msgstr "an"
 
 #: ../../include/ItemObject.php:214
 msgid "via"
@@ -2275,37 +2274,37 @@ msgstr "Wall-to-Wall"
 msgid "via Wall-To-Wall:"
 msgstr "via Wall-To-Wall:"
 
-#: ../../include/ItemObject.php:249
+#: ../../include/ItemObject.php:250
 msgid "Bookmark Links"
-msgstr "Setze Lesezeichen für die Verweise"
+msgstr "Setze Lesezeichen für die Links"
 
-#: ../../include/ItemObject.php:279
+#: ../../include/ItemObject.php:280
 #, php-format
 msgid "%d comment"
 msgid_plural "%d comments"
 msgstr[0] "%d Kommentar"
 msgstr[1] "%d Kommentare"
 
-#: ../../include/ItemObject.php:544 ../../mod/photos.php:987
-#: ../../mod/photos.php:1074
+#: ../../include/ItemObject.php:545 ../../mod/photos.php:991
+#: ../../mod/photos.php:1078
 msgid "This is you"
-msgstr "Das bist du"
-
-#: ../../include/ItemObject.php:547 ../../mod/events.php:469
-#: ../../mod/thing.php:276 ../../mod/thing.php:318 ../../mod/invite.php:156
-#: ../../mod/settings.php:513 ../../mod/settings.php:625
-#: ../../mod/settings.php:653 ../../mod/settings.php:677
-#: ../../mod/settings.php:748 ../../mod/settings.php:912
-#: ../../mod/chat.php:119 ../../mod/chat.php:149 ../../mod/connect.php:92
+msgstr "Das bist Du"
+
+#: ../../include/ItemObject.php:548 ../../mod/events.php:469
+#: ../../mod/thing.php:283 ../../mod/thing.php:326 ../../mod/invite.php:156
+#: ../../mod/chat.php:162 ../../mod/chat.php:192 ../../mod/connect.php:92
 #: ../../mod/group.php:81 ../../mod/admin.php:431 ../../mod/admin.php:738
 #: ../../mod/admin.php:878 ../../mod/admin.php:1077 ../../mod/admin.php:1164
 #: ../../mod/connedit.php:437 ../../mod/profiles.php:506
 #: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/setup.php:304
-#: ../../mod/setup.php:347 ../../mod/import.php:387 ../../mod/mail.php:223
+#: ../../mod/setup.php:347 ../../mod/settings.php:516
+#: ../../mod/settings.php:628 ../../mod/settings.php:656
+#: ../../mod/settings.php:680 ../../mod/settings.php:752
+#: ../../mod/settings.php:916 ../../mod/import.php:387 ../../mod/mail.php:223
 #: ../../mod/mail.php:335 ../../mod/poke.php:166 ../../mod/fsuggest.php:108
-#: ../../mod/filestorage.php:131 ../../mod/photos.php:562
-#: ../../mod/photos.php:667 ../../mod/photos.php:950 ../../mod/photos.php:990
-#: ../../mod/photos.php:1077 ../../mod/mood.php:142
+#: ../../mod/filestorage.php:131 ../../mod/photos.php:566
+#: ../../mod/photos.php:671 ../../mod/photos.php:954 ../../mod/photos.php:994
+#: ../../mod/photos.php:1081 ../../mod/mood.php:142
 #: ../../view/theme/redbasic/php/config.php:95
 #: ../../view/theme/apw/php/config.php:231
 #: ../../view/theme/blogga/view/theme/blog/config.php:67
@@ -2313,35 +2312,35 @@ msgstr "Das bist du"
 msgid "Submit"
 msgstr "Bestätigen"
 
-#: ../../include/ItemObject.php:548
+#: ../../include/ItemObject.php:549
 msgid "Bold"
 msgstr "Fett"
 
-#: ../../include/ItemObject.php:549
+#: ../../include/ItemObject.php:550
 msgid "Italic"
 msgstr "Kursiv"
 
-#: ../../include/ItemObject.php:550
+#: ../../include/ItemObject.php:551
 msgid "Underline"
 msgstr "Unterstrichen"
 
-#: ../../include/ItemObject.php:551
+#: ../../include/ItemObject.php:552
 msgid "Quote"
 msgstr "Zitat"
 
-#: ../../include/ItemObject.php:552
+#: ../../include/ItemObject.php:553
 msgid "Code"
 msgstr "Code"
 
-#: ../../include/ItemObject.php:553
+#: ../../include/ItemObject.php:554
 msgid "Image"
 msgstr "Bild"
 
-#: ../../include/ItemObject.php:554
+#: ../../include/ItemObject.php:555
 msgid "Link"
 msgstr "Link"
 
-#: ../../include/ItemObject.php:555
+#: ../../include/ItemObject.php:556
 msgid "Video"
 msgstr "Video"
 
@@ -2612,11 +2611,11 @@ msgstr "Der Raum ist voll"
 
 #: ../../include/taxonomy.php:210
 msgid "Tags"
-msgstr "Tags"
+msgstr "Schlagwörter"
 
 #: ../../include/taxonomy.php:227
 msgid "Keywords"
-msgstr "Schlüsselbegriffe"
+msgstr "Schlüsselwörter"
 
 #: ../../include/taxonomy.php:252
 msgid "have"
@@ -2636,11 +2635,11 @@ msgstr "will"
 
 #: ../../include/taxonomy.php:254
 msgid "likes"
-msgstr "Gefällt-mir"
+msgstr "gefällt"
 
 #: ../../include/taxonomy.php:255
 msgid "dislikes"
-msgstr "Gefällt-mir-nicht"
+msgstr "missfällt"
 
 #: ../../include/auth.php:76
 msgid "Logged out."
@@ -2660,7 +2659,7 @@ msgstr "Ungültige E-Mail-Adresse"
 
 #: ../../include/account.php:25
 msgid "Your email domain is not among those allowed on this site"
-msgstr "Deine E-Mail-Adresse ist nicht unter denen, die auf dieser Seite erlaubt sind"
+msgstr "Deine E-Mail-Adresse ist dieser Seite nicht erlaubt"
 
 #: ../../include/account.php:31
 msgid "Your email address is already registered at this site."
@@ -2694,7 +2693,7 @@ msgstr "Administrator"
 
 #: ../../include/account.php:297
 msgid "your registration password"
-msgstr "dein Registrierungspasswort"
+msgstr "Dein Registrierungspasswort"
 
 #: ../../include/account.php:300 ../../include/account.php:357
 #, php-format
@@ -2768,12 +2767,12 @@ 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."
+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."
+msgstr "%1$s hat Dir %2$s geschickt."
 
 #: ../../include/enotify.php:87
 msgid "a private message"
@@ -2797,7 +2796,7 @@ msgstr "%1$s, %2$s hat [zrl=%3$s]%4$ss %5$s[/zrl] kommentiert"
 #: ../../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 hat [zrl=%3$s]deinen %4$s[/zrl] kommentiert"
+msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen %4$s[/zrl] kommentiert"
 
 #: ../../include/enotify.php:170
 #, php-format
@@ -2807,14 +2806,14 @@ msgstr "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1$d von %2$s"
 #: ../../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 hat ein Thema kommentiert, dem du folgst."
+msgstr "%1$s, %2$s hat eine Unterhaltung kommentiert, der Du folgst."
 
 #: ../../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 "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
+msgstr "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren."
 
 #: ../../include/enotify.php:180
 #, php-format
@@ -2824,57 +2823,57 @@ msgstr "[Red:Hinweis] %s schrieb auf Deine Pinnwand"
 #: ../../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"
+msgstr "%1$s, %2$s hat auf Deine Pinnwand auf %3$s geschrieben"
 
 #: ../../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"
+msgstr "%1$s, %2$s hat auf [zrl=%3$s]Deine Pinnwand[/zrl] geschrieben"
 
 #: ../../include/enotify.php:208
 #, php-format
 msgid "[Red:Notify] %s tagged you"
-msgstr "[Red Notify] %s hat dich getaggt"
+msgstr "[Red Notify] %s hat Dich erwähnt"
 
 #: ../../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"
+msgstr "%1$s, %2$s hat Dich auf %3$s erwähnt"
 
 #: ../../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]."
+msgstr "%1$s, %2$s [zrl=%3$s]hat Dich erwähnt[/zrl]."
 
 #: ../../include/enotify.php:223
 #, php-format
 msgid "[Red:Notify] %1$s poked you"
-msgstr "[Red Notify] %1$s hat dich angestupst"
+msgstr "[Red Notify] %1$s hat Dich angestupst"
 
 #: ../../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"
+msgstr "%1$s, %2$s hat Dich auf %3$s angestupst"
 
 #: ../../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]."
+msgstr "%1$s, %2$s [zrl=%2$s]hat Dich angestupst[/zrl]."
 
 #: ../../include/enotify.php:241
 #, php-format
 msgid "[Red:Notify] %s tagged your post"
-msgstr "[Red:Hinweis] %s hat Dich getaggt"
+msgstr "[Red:Hinweis] %s hat Deinen Beitrag verschlagwortet"
 
 #: ../../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"
+msgstr "%1$s, %2$s hat Deinen Beitrag auf %3$s verschlagwortet"
 
 #: ../../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"
+msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen Beitrag[/zrl] verschlagwortet"
 
 #: ../../include/enotify.php:255
 msgid "[Red:Notify] Introduction received"
@@ -2883,12 +2882,12 @@ msgstr "[Red:Notify] Vorstellung erhalten"
 #: ../../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"
+msgstr "%1$s, Du hast eine Vorstellung von „%2$s“ auf %3$s erhalten"
 
 #: ../../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."
+msgstr "%1$s, Du hast [zrl=%2$s]eine Vorstellung[/zrl] von %3$s erhalten."
 
 #: ../../include/enotify.php:261 ../../include/enotify.php:280
 #, php-format
@@ -2907,14 +2906,14 @@ msgstr "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten"
 #: ../../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"
+msgstr "%1$s, Du hast einen Kontaktvorschlag von „%2$s“ auf %3$s erhalten"
 
 #: ../../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."
+msgstr "%1$s, Du hast [zrl=%2$s]einen Kontaktvorschlag[/zrl] für %3$s von %4$s erhalten."
 
 #: ../../include/enotify.php:278
 msgid "Name:"
@@ -2946,12 +2945,12 @@ msgstr "Kann Bild nicht verarbeiten"
 msgid "Photo storage failed."
 msgstr "Foto speichern schlug fehl"
 
-#: ../../include/photos.php:306 ../../mod/photos.php:690
-#: ../../mod/photos.php:1187
+#: ../../include/photos.php:306 ../../mod/photos.php:694
+#: ../../mod/photos.php:1191
 msgid "Upload New Photos"
 msgstr "Lade neue Fotos hoch"
 
-#: ../../include/reddav.php:1018
+#: ../../include/reddav.php:1061
 msgid "Edit File properties"
 msgstr "Dateieigenschaften ändern"
 
@@ -2978,8 +2977,8 @@ msgstr "Verbinden/Folgen"
 msgid "Examples: Robert Morgenstein, Fishing"
 msgstr "Beispiele: Robert Morgenstein, Angeln"
 
-#: ../../include/contact_widgets.php:24 ../../mod/directory.php:206
-#: ../../mod/directory.php:211 ../../mod/connections.php:357
+#: ../../include/contact_widgets.php:24 ../../mod/directory.php:207
+#: ../../mod/directory.php:212 ../../mod/connections.php:357
 msgid "Find"
 msgstr "Finde"
 
@@ -3044,7 +3043,7 @@ msgstr "Lokales Konto nicht gefunden."
 
 #: ../../include/follow.php:138
 msgid "Cannot connect to yourself."
-msgstr "Du kannst dich nicht mit dir selbst verbinden."
+msgstr "Du kannst Dich nicht mit Dir selbst verbinden."
 
 #: ../../include/security.php:280
 msgid ""
@@ -3131,11 +3130,11 @@ msgstr "Kann meine öffentlichen Seiten bearbeiten"
 
 #: ../../include/permissions.php:31
 msgid "Can source my \"public\" posts in derived channels"
-msgstr "Kann meine \"öffentlichen\" Beiträge als Quellen von Kanälen verwenden"
+msgstr "Kann meine „öffentlichen“ Beiträge als Quellen für andere Kanäle verwenden"
 
 #: ../../include/permissions.php:31
 msgid "Somewhat advanced - very useful in open communities"
-msgstr "Etwas Fortgeschritten - sehr nützlich in offenen Gemeinschaften."
+msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften"
 
 #: ../../include/permissions.php:32
 msgid "Can send me bookmarks"
@@ -3148,50 +3147,50 @@ msgstr "Kann meine Kanäle administrieren"
 #: ../../include/permissions.php:33
 msgid ""
 "Extremely advanced. Leave this alone unless you know what you are doing"
-msgstr "Sehr fortgeschritten. Bearbeite dies nur, wenn du genau weißt, was du machst"
+msgstr "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust"
 
-#: ../../include/items.php:208 ../../mod/like.php:55 ../../mod/group.php:68
-#: ../../mod/profperm.php:23 ../../index.php:350
+#: ../../include/items.php:231 ../../mod/like.php:55 ../../mod/profperm.php:23
+#: ../../mod/group.php:68 ../../index.php:350
 msgid "Permission denied"
 msgstr "Keine Berechtigung"
 
-#: ../../include/items.php:3430 ../../mod/thing.php:74 ../../mod/admin.php:151
+#: ../../include/items.php:3453 ../../mod/thing.php:78 ../../mod/admin.php:151
 #: ../../mod/admin.php:782 ../../mod/admin.php:985 ../../mod/viewsrc.php:18
 #: ../../mod/home.php:63 ../../mod/display.php:32 ../../mod/filestorage.php:18
 msgid "Item not found."
 msgstr "Element nicht gefunden."
 
-#: ../../include/items.php:3786 ../../mod/group.php:38 ../../mod/group.php:140
+#: ../../include/items.php:3809 ../../mod/group.php:38 ../../mod/group.php:140
 msgid "Collection not found."
 msgstr "Sammlung nicht gefunden"
 
-#: ../../include/items.php:3801
+#: ../../include/items.php:3824
 msgid "Collection is empty."
 msgstr "Sammlung ist leer."
 
-#: ../../include/items.php:3808
+#: ../../include/items.php:3831
 #, php-format
 msgid "Collection: %s"
 msgstr "Sammlung: %s"
 
-#: ../../include/items.php:3819
+#: ../../include/items.php:3842
 #, php-format
 msgid "Connection: %s"
 msgstr "Verbindung: %s"
 
-#: ../../include/items.php:3822
+#: ../../include/items.php:3845
 msgid "Connection not found."
 msgstr "Die Verbindung wurde nicht gefunden."
 
-#: ../../include/zot.php:545
+#: ../../include/zot.php:548
 msgid "Invalid data packet"
 msgstr "Ungültiges Datenpaket"
 
-#: ../../include/zot.php:555
+#: ../../include/zot.php:558
 msgid "Unable to verify channel signature"
 msgstr "Konnte die Signatur des Kanals nicht verifizieren"
 
-#: ../../include/zot.php:732
+#: ../../include/zot.php:735
 #, php-format
 msgid "Unable to verify site signature for %s"
 msgstr "Kann die Signatur der Seite von %s nicht verifizieren"
@@ -3277,62 +3276,70 @@ msgstr "Titel:"
 msgid "Share this event"
 msgstr "Die Veranstaltung teilen"
 
-#: ../../mod/thing.php:94
+#: ../../mod/thing.php:98
 msgid "Thing updated"
 msgstr "Ding aktualisiert"
 
-#: ../../mod/thing.php:153
+#: ../../mod/thing.php:158
 msgid "Object store: failed"
 msgstr "Speichern des Objekts fehlgeschlagen"
 
-#: ../../mod/thing.php:157
+#: ../../mod/thing.php:162
 msgid "Thing added"
 msgstr "Ding hinzugefügt"
 
-#: ../../mod/thing.php:175
+#: ../../mod/thing.php:182
 #, php-format
 msgid "OBJ: %1$s %2$s %3$s"
 msgstr "OBJ: %1$s %2$s %3$s"
 
-#: ../../mod/thing.php:228
+#: ../../mod/thing.php:234
 msgid "Show Thing"
 msgstr "Ding anzeigen"
 
-#: ../../mod/thing.php:235
+#: ../../mod/thing.php:241
 msgid "item not found."
 msgstr "Eintrag nicht gefunden"
 
-#: ../../mod/thing.php:263
+#: ../../mod/thing.php:269
 msgid "Edit Thing"
 msgstr "Ding bearbeiten"
 
-#: ../../mod/thing.php:265 ../../mod/thing.php:311
+#: ../../mod/thing.php:271 ../../mod/thing.php:318
 msgid "Select a profile"
 msgstr "Wähle ein Profil"
 
-#: ../../mod/thing.php:267 ../../mod/thing.php:313
+#: ../../mod/thing.php:273 ../../mod/thing.php:320
 msgid "Select a category of stuff. e.g. I ______ something"
-msgstr "Wähle eine Kategorie für das Zeugs, z.B. Ich ______ etwas"
+msgstr "Wähle eine Kategorie/Art, z.B. Ich ______ etwas"
+
+#: ../../mod/thing.php:275 ../../mod/thing.php:321
+msgid "Post an activity"
+msgstr "Aktivitätsnachricht senden"
 
-#: ../../mod/thing.php:270 ../../mod/thing.php:315
+#: ../../mod/thing.php:275 ../../mod/thing.php:321
+msgid "Only sends to viewers of the applicable profile"
+msgstr "Nur an Betrachter des ausgewählten Profils senden"
+
+#: ../../mod/thing.php:277 ../../mod/thing.php:323
 msgid "Name of thing e.g. something"
 msgstr "Name des Dings, z.B. Etwas"
 
-#: ../../mod/thing.php:272 ../../mod/thing.php:316
+#: ../../mod/thing.php:279 ../../mod/thing.php:324
 msgid "URL of thing (optional)"
 msgstr "URL des Dings (optional)"
 
-#: ../../mod/thing.php:274 ../../mod/thing.php:317
+#: ../../mod/thing.php:281 ../../mod/thing.php:325
 msgid "URL for photo of thing (optional)"
 msgstr "URL eines Fotos von dem Ding (optional)"
 
-#: ../../mod/thing.php:309
+#: ../../mod/thing.php:316
 msgid "Add Thing to your Profile"
-msgstr "Das Ding deinem Profil hinzufügen"
+msgstr "Das Ding Deinem Profil hinzufügen"
 
 #: ../../mod/invite.php:25
 msgid "Total invitation limit exceeded."
-msgstr "Limit der maximalen Einladungen überschritten."
+msgstr "Einladungslimit überschritten."
 
 #: ../../mod/invite.php:49
 #, php-format
@@ -3345,7 +3352,7 @@ msgstr "Schließe Dich uns an und werde Teil der Red-Matrix"
 
 #: ../../mod/invite.php:87
 msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator deiner Seite."
+msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines Red-Servers."
 
 #: ../../mod/invite.php:92
 #, php-format
@@ -3380,7 +3387,7 @@ 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."
+msgstr "Du bist herzlich eingeladen, mir und einigen anderen guten Freunden in die Red-Matrix zu folgen – einem revolutionär neuen, dezentralen Kommunikations- und Informationsnetzwerk."
 
 #: ../../mod/invite.php:146
 msgid "You will need to supply this invitation code: $invite_code"
@@ -3394,7 +3401,7 @@ msgstr "Bitte besuche meinen Kanal auf"
 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:"
+msgstr "Wenn Du Dich registriert hast (egal auf welchem Server in der Red-Matrix, sie sind alle miteinander verbunden) verbinde Dich bitte mit meinem Kanal in der Matrix. Adresse:"
 
 #: ../../mod/invite.php:153
 msgid "Click the [Register] link on the following page to join."
@@ -3405,34 +3412,34 @@ msgid ""
 "For more information about the Red Matrix Project and why it has the "
 "potential to change the internet as we know it, please visit "
 "http://getzot.com"
-msgstr "Für weitere Informationen über das Red Matrix Projekt und warum es das Potential hat das Internet wie wir es kennen grundlegend zu verändern schau dir bitte http://getzot.com an"
+msgstr "Für weitere Informationen über das Red-Matrix-Projekt und warum es das Potential hat, das Internet, wie wir es kennen, grundlegend zu verändern, besuche http://getzot.com"
 
 #: ../../mod/item.php:145
 msgid "Unable to locate original post."
-msgstr "Originalbeitrag kann nicht gefunden werden."
+msgstr "Originalbeitrag nicht gefunden."
 
 #: ../../mod/item.php:346
 msgid "Empty post discarded."
-msgstr "Leerer Beitrag verworfen."
+msgstr "Leeren Beitrag verworfen."
 
 #: ../../mod/item.php:388
 msgid "Executable content type not permitted to this channel."
 msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."
 
-#: ../../mod/item.php:819
+#: ../../mod/item.php:835
 msgid "System error. Post not saved."
 msgstr "Systemfehler. Beitrag nicht gespeichert."
 
-#: ../../mod/item.php:1086 ../../mod/wall_upload.php:41
+#: ../../mod/item.php:1102 ../../mod/wall_upload.php:41
 msgid "Wall Photos"
 msgstr "Wall Fotos"
 
-#: ../../mod/item.php:1166
+#: ../../mod/item.php:1182
 #, 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:1172
+#: ../../mod/item.php:1188
 #, php-format
 msgid "You have reached your limit of %1$.0f webpages."
 msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."
@@ -3487,7 +3494,7 @@ msgstr "Menü Name"
 
 #: ../../mod/menu.php:81 ../../mod/menu.php:110
 msgid "Must be unique, only seen by you"
-msgstr "Muss unverwechselbar sein, nur für dich sichtbar"
+msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar"
 
 #: ../../mod/menu.php:82 ../../mod/menu.php:111
 msgid "Menu title"
@@ -3545,11 +3552,11 @@ msgstr "Ansicht"
 
 #: ../../mod/api.php:76 ../../mod/api.php:102
 msgid "Authorize application connection"
-msgstr "Zugriff der Anwendung authorizieren"
+msgstr "Zugriff für die Anwendung autorisieren"
 
 #: ../../mod/api.php:77
 msgid "Return to your app and insert this Securty Code:"
-msgstr "Trage folgenden Sicherheitscode bei der Anwendung ein:"
+msgstr "Trage folgenden Sicherheitscode in der Anwendung ein:"
 
 #: ../../mod/api.php:89
 msgid "Please login to continue."
@@ -3559,21 +3566,21 @@ msgstr "Zum Weitermachen, bitte einloggen."
 msgid ""
 "Do you want to authorize this application to access your posts and contacts,"
 " and/or create new posts for you?"
-msgstr "Möchtest du der Anwendung erlauben, deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für dich zu erstellen?"
+msgstr "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?"
 
-#: ../../mod/api.php:105 ../../mod/settings.php:874 ../../mod/settings.php:879
-#: ../../mod/profiles.php:483
+#: ../../mod/api.php:105 ../../mod/profiles.php:483 ../../mod/settings.php:878
+#: ../../mod/settings.php:883
 msgid "Yes"
 msgstr "Ja"
 
-#: ../../mod/api.php:106 ../../mod/settings.php:874 ../../mod/settings.php:879
-#: ../../mod/profiles.php:484
+#: ../../mod/api.php:106 ../../mod/profiles.php:484 ../../mod/settings.php:878
+#: ../../mod/settings.php:883
 msgid "No"
 msgstr "Nein"
 
 #: ../../mod/apps.php:8
 msgid "No installed applications."
-msgstr "Keine installierten Applikationen"
+msgstr "Keine installierten Anwendungen."
 
 #: ../../mod/apps.php:13
 msgid "Applications"
@@ -3585,7 +3592,7 @@ msgstr "Bearbeite Beitrag"
 
 #: ../../mod/cloud.php:112
 msgid "Red Matrix - Guests: Username: {your email address}, Password: +++"
-msgstr "Red Matrix Gäste: Nutzername: {deine Email Adresse}; Passwort: +++"
+msgstr "Red-Matrix-Gäste: Nutzername: {Deine E-Mail-Adresse}; Passwort: +++"
 
 #: ../../mod/bookmarks.php:38
 msgid "Bookmark added"
@@ -3599,2566 +3606,2598 @@ msgstr "Meine Lesezeichen"
 msgid "My Connections Bookmarks"
 msgstr "Lesezeichen meiner Kontakte"
 
-#: ../../mod/settings.php:71
-msgid "Name is required"
-msgstr "Name wird benötigt"
+#: ../../mod/subthread.php:105
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s folgt nun %2$ss %3$s"
 
-#: ../../mod/settings.php:75
-msgid "Key and Secret are required"
-msgstr "Schlüssel und Geheimnis werden benötigt"
+#: ../../mod/update_network.php:23 ../../mod/update_channel.php:43
+#: ../../mod/update_search.php:46 ../../mod/update_display.php:25
+#: ../../mod/update_community.php:18
+msgid "[Embedded content - reload page to view]"
+msgstr "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]"
 
-#: ../../mod/settings.php:79 ../../mod/settings.php:539
-msgid "Update"
-msgstr "Update"
+#: ../../mod/chanview.php:77 ../../mod/home.php:50 ../../mod/page.php:47
+#: ../../mod/wall_upload.php:35
+msgid "Channel not found."
+msgstr "Kanal nicht gefunden."
 
-#: ../../mod/settings.php:192
-msgid "Passwords do not match. Password unchanged."
-msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert."
+#: ../../mod/chanview.php:93
+msgid "toggle full screen mode"
+msgstr "auf Vollbildmodus umschalten"
 
-#: ../../mod/settings.php:196
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert."
+#: ../../mod/tagger.php:98
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s hat %2$ss %3$s mit %4$s verschlagwortet"
 
-#: ../../mod/settings.php:209
-msgid "Password changed."
-msgstr "Kennwort geändert."
+#: ../../mod/chat.php:18 ../../mod/channel.php:25
+msgid "You must be logged in to see this page."
+msgstr "Du musst angemeldet sein, um diese Seite betrachten zu können."
 
-#: ../../mod/settings.php:211
-msgid "Password update failed. Please try again."
-msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal."
+#: ../../mod/chat.php:163
+msgid "Leave Room"
+msgstr "Raum verlassen"
 
-#: ../../mod/settings.php:225
-msgid "Not valid email."
-msgstr "Keine gültige E-Mail Adresse."
+#: ../../mod/chat.php:164
+msgid "I am away right now"
+msgstr "Ich bin gerade nicht da"
 
-#: ../../mod/settings.php:228
-msgid "Protected email address. Cannot change to that email."
-msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden."
+#: ../../mod/chat.php:165
+msgid "I am online"
+msgstr "Ich bin online"
 
-#: ../../mod/settings.php:237
-msgid "System failure storing new email. Please try again."
-msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal."
+#: ../../mod/chat.php:189 ../../mod/chat.php:209
+msgid "New Chatroom"
+msgstr "Neuer Chatraum"
 
-#: ../../mod/settings.php:441
-msgid "Settings updated."
-msgstr "Einstellungen aktualisiert."
+#: ../../mod/chat.php:190
+msgid "Chatroom Name"
+msgstr "Name des Chatraums"
 
-#: ../../mod/settings.php:512 ../../mod/settings.php:538
-#: ../../mod/settings.php:574
-msgid "Add application"
-msgstr "Anwendung hinzufügen"
+#: ../../mod/chat.php:205
+#, php-format
+msgid "%1$s's Chatrooms"
+msgstr "%1$ss Chaträume"
 
-#: ../../mod/settings.php:515 ../../mod/settings.php:541
-msgid "Name"
-msgstr "Name"
+#: ../../mod/viewconnections.php:17 ../../mod/search.php:13
+#: ../../mod/directory.php:15 ../../mod/display.php:9
+#: ../../mod/community.php:18 ../../mod/dirprofile.php:9
+#: ../../mod/photos.php:443
+msgid "Public access denied."
+msgstr "Öffentlicher Zugang verweigert."
 
-#: ../../mod/settings.php:515
-msgid "Name of application"
-msgstr "Name der Anwendung"
+#: ../../mod/viewconnections.php:43
+msgid "No connections."
+msgstr "Keine Verbindungen."
 
-#: ../../mod/settings.php:516 ../../mod/settings.php:542
-msgid "Consumer Key"
-msgstr "Consumer Key"
+#: ../../mod/viewconnections.php:55
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "%ss Profil [%s] besuchen"
 
-#: ../../mod/settings.php:516 ../../mod/settings.php:517
-msgid "Automatically generated - change if desired. Max length 20"
-msgstr "Automatisch erzeugt - ändern falls erwünscht. Maximale Länge 20"
+#: ../../mod/viewconnections.php:70
+msgid "View Connnections"
+msgstr "Zeige Verbindungen"
 
-#: ../../mod/settings.php:517 ../../mod/settings.php:543
-msgid "Consumer Secret"
-msgstr "Consumer Secret"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Schlagwort entfernt"
 
-#: ../../mod/settings.php:518 ../../mod/settings.php:544
-msgid "Redirect"
-msgstr "Umleitung"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Schlagwort entfernen"
 
-#: ../../mod/settings.php:518
-msgid ""
-"Redirect URI - leave blank unless your application specifically requires "
-"this"
-msgstr "Umleitungs-URl - lasse dies frei außer deine Anwendung erfordert dies explizit"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Schlagwort zum Entfernen auswählen:"
 
-#: ../../mod/settings.php:519 ../../mod/settings.php:545
-msgid "Icon url"
-msgstr "Symbol-URL"
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 ../../mod/photos.php:909
+msgid "Remove"
+msgstr "Entferne"
 
-#: ../../mod/settings.php:519
-msgid "Optional"
-msgstr "Optional"
+#: ../../mod/connect.php:55 ../../mod/connect.php:103
+msgid "Continue"
+msgstr "Fortfahren"
 
-#: ../../mod/settings.php:530
-msgid "You can't edit this application."
-msgstr "Diese Anwendung kann nicht bearbeitet werden."
+#: ../../mod/connect.php:84
+msgid "Premium Channel Setup"
+msgstr "Premium-Kanal-Einrichtung"
 
-#: ../../mod/settings.php:573
-msgid "Connected Apps"
-msgstr "Verbundene Apps"
+#: ../../mod/connect.php:86
+msgid "Enable premium channel connection restrictions"
+msgstr "Einschränkungen für einen Premium-Kanal aktivieren"
 
-#: ../../mod/settings.php:577
-msgid "Client key starts with"
-msgstr "Client key beginnt mit"
+#: ../../mod/connect.php:87
+msgid ""
+"Please enter your restrictions or conditions, such as paypal receipt, usage "
+"guidelines, etc."
+msgstr "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc."
 
-#: ../../mod/settings.php:578
-msgid "No name"
-msgstr "Kein Name"
+#: ../../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/settings.php:579
-msgid "Remove authorization"
-msgstr "Authorisierung aufheben"
+#: ../../mod/connect.php:90
+msgid ""
+"Potential connections will then see the following text before proceeding:"
+msgstr "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:"
 
-#: ../../mod/settings.php:590
-msgid "No feature settings configured"
-msgstr "Keine Funktions-Einstellungen konfiguriert"
+#: ../../mod/connect.php:91 ../../mod/connect.php:112
+msgid ""
+"By continuing, I certify that I have complied with any instructions provided"
+" on this page."
+msgstr "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen aus dieser Seite."
 
-#: ../../mod/settings.php:598
-msgid "Feature Settings"
-msgstr "Funktions-Einstellungen"
+#: ../../mod/connect.php:100
+msgid "(No specific instructions have been provided by the channel owner.)"
+msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)"
 
-#: ../../mod/settings.php:621
-msgid "Account Settings"
-msgstr "Konto-Einstellungen"
+#: ../../mod/connect.php:108
+msgid "Restricted or Premium Channel"
+msgstr "Eingeschränkter oder Premium-Kanal"
 
-#: ../../mod/settings.php:622
-msgid "Password Settings"
-msgstr "Kennwort-Einstellungen"
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
 
-#: ../../mod/settings.php:623
-msgid "New Password:"
-msgstr "Neues Passwort:"
+#: ../../mod/delegate.php:121
+msgid "Delegate Page Management"
+msgstr "Delegiere das Management für diese Seite"
 
-#: ../../mod/settings.php:624
-msgid "Confirm:"
-msgstr "Bestätigen:"
+#: ../../mod/delegate.php:123
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"
 
-#: ../../mod/settings.php:624
-msgid "Leave password fields blank unless changing"
-msgstr "Lasse die Passwort -Felder leer außer du möchtest das Passwort ändern"
+#: ../../mod/delegate.php:124
+msgid "Existing Page Managers"
+msgstr "Vorhandene Seitenmanager"
 
-#: ../../mod/settings.php:626 ../../mod/settings.php:921
-msgid "Email Address:"
-msgstr "Email Adresse:"
+#: ../../mod/delegate.php:126
+msgid "Existing Page Delegates"
+msgstr "Vorhandene Bevollmächtigte für die Seite"
 
-#: ../../mod/settings.php:627
-msgid "Remove Account"
-msgstr "Konto entfernen"
+#: ../../mod/delegate.php:128
+msgid "Potential Delegates"
+msgstr "Potentielle Bevollmächtigte"
 
-#: ../../mod/settings.php:628
-msgid "Warning: This action is permanent and cannot be reversed."
-msgstr "Achtung: Diese Aktion ist permanent und kann nicht rückgänging gemacht werden."
+#: ../../mod/delegate.php:131
+msgid "Add"
+msgstr "Hinzufügen"
 
-#: ../../mod/settings.php:644
-msgid "Off"
-msgstr "Aus"
+#: ../../mod/delegate.php:132
+msgid "No entries."
+msgstr "Keine Einträge."
 
-#: ../../mod/settings.php:644
-msgid "On"
-msgstr "An"
+#: ../../mod/chatsvc.php:102
+msgid "Away"
+msgstr "Abwesend"
 
-#: ../../mod/settings.php:651
-msgid "Additional Features"
-msgstr "Zusätzliche Funktionen"
+#: ../../mod/chatsvc.php:106
+msgid "Online"
+msgstr "Online"
 
-#: ../../mod/settings.php:676
-msgid "Connector Settings"
-msgstr "Connector-Einstellungen"
+#: ../../mod/attach.php:9
+msgid "Item not available."
+msgstr "Element nicht verfügbar."
 
-#: ../../mod/settings.php:706 ../../mod/admin.php:379
-msgid "No special theme for mobile devices"
-msgstr "Keine spezielle Theme für mobile Geräte"
+#: ../../mod/mitem.php:47
+msgid "Menu element updated."
+msgstr "Menü-Element aktualisiert."
 
-#: ../../mod/settings.php:746
-msgid "Display Settings"
-msgstr "Anzeige-Einstellungen"
+#: ../../mod/mitem.php:51
+msgid "Unable to update menu element."
+msgstr "Kann Menü-Element nicht aktualisieren."
 
-#: ../../mod/settings.php:752
-msgid "Display Theme:"
-msgstr "Anzeige Theme:"
+#: ../../mod/mitem.php:57
+msgid "Menu element added."
+msgstr "Menü-Bestandteil hinzugefügt."
 
-#: ../../mod/settings.php:753
-msgid "Mobile Theme:"
-msgstr "Mobile Theme:"
+#: ../../mod/mitem.php:61
+msgid "Unable to add menu element."
+msgstr "Kann Menü-Bestandteil nicht hinzufügen."
 
-#: ../../mod/settings.php:754
-msgid "Update browser every xx seconds"
-msgstr "Browser alle xx Sekunden aktualisieren"
+#: ../../mod/mitem.php:96
+msgid "Manage Menu Elements"
+msgstr "Menü-Bestandteile verwalten"
 
-#: ../../mod/settings.php:754
-msgid "Minimum of 10 seconds, no maximum"
-msgstr "Minimum von 10 Sekunden, kein Maximum"
+#: ../../mod/mitem.php:99
+msgid "Edit menu"
+msgstr "Menü bearbeiten"
 
-#: ../../mod/settings.php:755
-msgid "Maximum number of conversations to load at any time:"
-msgstr "Maximale Anzahl von Unterhaltungen die gleichzeitig geladen werden sollen:"
+#: ../../mod/mitem.php:102
+msgid "Edit element"
+msgstr "Bestandteil bearbeiten"
 
-#: ../../mod/settings.php:755
-msgid "Maximum of 100 items"
-msgstr "Maximum von 100 Beiträgen"
+#: ../../mod/mitem.php:103
+msgid "Drop element"
+msgstr "Bestandteil löschen"
 
-#: ../../mod/settings.php:756
-msgid "Don't show emoticons"
-msgstr "Emoticons nicht zeigen"
+#: ../../mod/mitem.php:104
+msgid "New element"
+msgstr "Neues Bestandteil"
 
-#: ../../mod/settings.php:792
-msgid "Nobody except yourself"
-msgstr "Niemand außer du selbst"
+#: ../../mod/mitem.php:105
+msgid "Edit this menu container"
+msgstr "Diesen Menü-Container bearbeiten"
 
-#: ../../mod/settings.php:793
-msgid "Only those you specifically allow"
-msgstr "Nur die, denen du es explizit erlaubst"
+#: ../../mod/mitem.php:106
+msgid "Add menu element"
+msgstr "Menüelement hinzufügen"
 
-#: ../../mod/settings.php:794
-msgid "Anybody in your address book"
-msgstr "Jeder aus Ihrem Adressbuch"
+#: ../../mod/mitem.php:107
+msgid "Delete this menu item"
+msgstr "Lösche dieses Menü-Bestandteil"
 
-#: ../../mod/settings.php:795
-msgid "Anybody on this website"
-msgstr "Jeder auf dieser Website"
+#: ../../mod/mitem.php:108
+msgid "Edit this menu item"
+msgstr "Bearbeite dieses Menü-Bestandteil"
 
-#: ../../mod/settings.php:796
-msgid "Anybody in this network"
-msgstr "Jeder in diesem Netzwerk"
+#: ../../mod/mitem.php:131
+msgid "New Menu Element"
+msgstr "Neues Menü-Bestandteil"
 
-#: ../../mod/settings.php:797
-msgid "Anybody on the internet"
-msgstr "Jeder im Internet"
+#: ../../mod/mitem.php:133 ../../mod/mitem.php:176
+msgid "Menu Item Permissions"
+msgstr "Zugriffsrechte des Menü-Elements"
 
-#: ../../mod/settings.php:874
-msgid "Publish your default profile in the network directory"
-msgstr "Veröffentliche dein Standard-Profil im Netzwerk-Verzeichnis"
+#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:947
+msgid "(click to open/close)"
+msgstr "(zum öffnen/schließen anklicken)"
 
-#: ../../mod/settings.php:879
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
+#: ../../mod/mitem.php:136 ../../mod/mitem.php:180
+msgid "Link text"
+msgstr "Link Text"
 
-#: ../../mod/settings.php:883 ../../mod/profile_photo.php:288
-msgid "or"
-msgstr "oder"
+#: ../../mod/mitem.php:137 ../../mod/mitem.php:181
+msgid "URL of link"
+msgstr "URL des Links"
 
-#: ../../mod/settings.php:888
-msgid "Your channel address is"
-msgstr "Deine Kanal-Adresse lautet"
+#: ../../mod/mitem.php:138 ../../mod/mitem.php:182
+msgid "Use Red magic-auth if available"
+msgstr "Verwende Red Magic-Auth wenn verfügbar"
 
-#: ../../mod/settings.php:910
-msgid "Channel Settings"
-msgstr "Kanal-Einstellungen"
+#: ../../mod/mitem.php:139 ../../mod/mitem.php:183
+msgid "Open link in new window"
+msgstr "Öffne Link in neuem Fenster"
 
-#: ../../mod/settings.php:919
-msgid "Basic Settings"
-msgstr "Grundeinstellungen"
+#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
+msgid "Order in list"
+msgstr "Reihenfolge in der Liste"
 
-#: ../../mod/settings.php:922
-msgid "Your Timezone:"
-msgstr "Ihre Zeitzone:"
+#: ../../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/settings.php:923
-msgid "Default Post Location:"
-msgstr "Standardstandort:"
+#: ../../mod/mitem.php:154
+msgid "Menu item not found."
+msgstr "Menü-Bestandteil nicht gefunden."
 
-#: ../../mod/settings.php:924
-msgid "Use Browser Location:"
-msgstr "Standort des Browsers verwenden:"
+#: ../../mod/mitem.php:163
+msgid "Menu item deleted."
+msgstr "Menü-Bestandteil gelöscht."
 
-#: ../../mod/settings.php:926
-msgid "Adult Content"
-msgstr "Nicht Jugendfreie-Inhalte"
+#: ../../mod/mitem.php:165
+msgid "Menu item could not be deleted."
+msgstr "Menü-Bestandteil kann nicht gelöscht werden."
 
-#: ../../mod/settings.php:926
-msgid ""
-"This channel frequently or regularly publishes adult content. (Please tag "
-"any adult material and/or nudity with #NSFW)"
-msgstr "Dieser Kanal veröffentlicht regelmäßig Inhalte die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)"
+#: ../../mod/mitem.php:174
+msgid "Edit Menu Element"
+msgstr "Bearbeite Menü-Bestandteil"
 
-#: ../../mod/settings.php:928
-msgid "Security and Privacy Settings"
-msgstr "Sicherheits- und Datenschutz-Einstellungen"
+#: ../../mod/profperm.php:29 ../../mod/profperm.php:58
+msgid "Invalid profile identifier."
+msgstr "Ungültiger Profil-Identifikator"
 
-#: ../../mod/settings.php:930
-msgid "Hide my online presence"
-msgstr "Meine Online-Präsenz verbergen"
+#: ../../mod/profperm.php:105
+msgid "Profile Visibility Editor"
+msgstr "Profil-Sichtbarkeits-Editor"
 
-#: ../../mod/settings.php:930
-msgid "Prevents displaying in your profile that you are online"
-msgstr "Verhindert die Anzeige deines Online-Status in deinem Profil"
+#: ../../mod/profperm.php:109
+msgid "Click on a contact to add or remove."
+msgstr "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen."
 
-#: ../../mod/settings.php:932
-msgid "Simple Privacy Settings:"
-msgstr "Einfache Privatsphären-Einstellungen"
+#: ../../mod/profperm.php:118
+msgid "Visible To"
+msgstr "Sichtbar für"
 
-#: ../../mod/settings.php:933
-msgid ""
-"Very Public - <em>extremely permissive (should be used with caution)</em>"
-msgstr ""
+#: ../../mod/profperm.php:134 ../../mod/connections.php:250
+msgid "All Connections"
+msgstr "Alle Verbindungen"
 
-#: ../../mod/settings.php:934
-msgid ""
-"Typical - <em>default public, privacy when desired (similar to social "
-"network permissions but with improved privacy)</em>"
-msgstr ""
+#: ../../mod/group.php:20
+msgid "Collection created."
+msgstr "Sammlung erstellt."
 
-#: ../../mod/settings.php:935
-msgid "Private - <em>default private, never open or public</em>"
-msgstr ""
+#: ../../mod/group.php:26
+msgid "Could not create collection."
+msgstr "Sammlung kann nicht erstellt werden."
 
-#: ../../mod/settings.php:936
-msgid "Blocked - <em>default blocked to/from everybody</em>"
-msgstr ""
+#: ../../mod/group.php:54
+msgid "Collection updated."
+msgstr "Sammlung aktualisiert."
 
-#: ../../mod/settings.php:939
-msgid "Advanced Privacy Settings"
-msgstr ""
+#: ../../mod/group.php:86
+msgid "Create a collection of channels."
+msgstr "Erstelle eine Sammlung von Kanälen."
 
-#: ../../mod/settings.php:941
-msgid "Maximum Friend Requests/Day:"
-msgstr "Maximale Kontaktanfragen pro Tag:"
+#: ../../mod/group.php:87 ../../mod/group.php:183
+msgid "Collection Name: "
+msgstr "Name der Sammlung:"
 
-#: ../../mod/settings.php:941
-msgid "May reduce spam activity"
-msgstr "Kann die Spam-Aktivität verringern"
+#: ../../mod/group.php:89 ../../mod/group.php:186
+msgid "Members are visible to other channels"
+msgstr "Mitglieder sind sichtbar für andere Kanäle"
 
-#: ../../mod/settings.php:942
-msgid "Default Post Permissions"
-msgstr "Beitragszugriffrechte Standardeinstellungen"
+#: ../../mod/group.php:107
+msgid "Collection removed."
+msgstr "Sammlung gelöscht."
 
-#: ../../mod/settings.php:943 ../../mod/mitem.php:134 ../../mod/mitem.php:177
-msgid "(click to open/close)"
-msgstr "(zum öffnen/schließen anklicken)"
+#: ../../mod/group.php:109
+msgid "Unable to remove collection."
+msgstr "Löschen der Sammlung nicht möglich."
 
-#: ../../mod/settings.php:954
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:"
+#: ../../mod/group.php:182
+msgid "Collection Editor"
+msgstr "Sammlung-Editor"
 
-#: ../../mod/settings.php:954
-msgid "Useful to reduce spamming"
-msgstr "Nützlich um Spam zu verringern"
+#: ../../mod/group.php:196
+msgid "Members"
+msgstr "Mitglieder"
 
-#: ../../mod/settings.php:957
-msgid "Notification Settings"
-msgstr "Benachrichtigungs-Einstellungen"
+#: ../../mod/group.php:198
+msgid "All Connected Channels"
+msgstr "Alle verbundenen Kanäle"
 
-#: ../../mod/settings.php:958
-msgid "By default post a status message when:"
-msgstr "Sende standardmäßig Status-Nachrichten wenn:"
+#: ../../mod/group.php:231
+msgid "Click on a channel to add or remove."
+msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus."
 
-#: ../../mod/settings.php:959
-msgid "accepting a friend request"
-msgstr "einer Kontaktanfrage stattgegeben wurde"
+#: ../../mod/admin.php:48
+msgid "Theme settings updated."
+msgstr "Theme-Einstellungen aktualisiert."
 
-#: ../../mod/settings.php:960
-msgid "joining a forum/community"
-msgstr "ein Forum beigetreten wurde"
+#: ../../mod/admin.php:88 ../../mod/admin.php:430
+msgid "Site"
+msgstr "Seite"
 
-#: ../../mod/settings.php:961
-msgid "making an <em>interesting</em> profile change"
-msgstr "eine <em>interessante</em> Änderung am Profil vorgenommen wurde"
+#: ../../mod/admin.php:89 ../../mod/admin.php:737 ../../mod/admin.php:749
+msgid "Users"
+msgstr "Benutzer"
 
-#: ../../mod/settings.php:962
-msgid "Send a notification email when:"
-msgstr "Eine Email Benachrichtigung senden wenn:"
+#: ../../mod/admin.php:90 ../../mod/admin.php:835 ../../mod/admin.php:877
+msgid "Plugins"
+msgstr "Plug-Ins"
 
-#: ../../mod/settings.php:963
-msgid "You receive an introduction"
-msgstr "Du eine Vorstellung erhältst"
+#: ../../mod/admin.php:91 ../../mod/admin.php:1040 ../../mod/admin.php:1076
+msgid "Themes"
+msgstr "Themes"
 
-#: ../../mod/settings.php:964
-msgid "Your introductions are confirmed"
-msgstr "Deine Vorstellung bestätigt wurde."
+#: ../../mod/admin.php:92 ../../mod/admin.php:529
+msgid "Server"
+msgstr "Server"
 
-#: ../../mod/settings.php:965
-msgid "Someone writes on your profile wall"
-msgstr "Jemand auf deine Pinnwand schreibt"
+#: ../../mod/admin.php:93
+msgid "DB updates"
+msgstr "DB-Aktualisierungen"
 
-#: ../../mod/settings.php:966
-msgid "Someone writes a followup comment"
-msgstr "Jemand einen Beitrag kommentiert"
+#: ../../mod/admin.php:107 ../../mod/admin.php:114 ../../mod/admin.php:1163
+msgid "Logs"
+msgstr "Protokolle"
 
-#: ../../mod/settings.php:967
-msgid "You receive a private message"
-msgstr "Du eine private Nachricht erhältst"
+#: ../../mod/admin.php:113
+msgid "Plugin Features"
+msgstr "Plug-In Funktionen"
 
-#: ../../mod/settings.php:968
-msgid "You receive a friend suggestion"
-msgstr "Du einen Kontaktvorschlag erhältst"
+#: ../../mod/admin.php:115
+msgid "User registrations waiting for confirmation"
+msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten"
 
-#: ../../mod/settings.php:969
-msgid "You are tagged in a post"
-msgstr "Du wurdest in einem Beitrag getaggt"
+#: ../../mod/admin.php:189
+msgid "Message queues"
+msgstr "Nachrichten-Warteschlangen"
 
-#: ../../mod/settings.php:970
-msgid "You are poked/prodded/etc. in a post"
-msgstr "Du in einer Nachricht angestupst/geknufft/o.ä. wirst"
+#: ../../mod/admin.php:194 ../../mod/admin.php:429 ../../mod/admin.php:528
+#: ../../mod/admin.php:736 ../../mod/admin.php:834 ../../mod/admin.php:876
+#: ../../mod/admin.php:1039 ../../mod/admin.php:1075 ../../mod/admin.php:1162
+msgid "Administration"
+msgstr "Administration"
 
-#: ../../mod/settings.php:973
-msgid "Advanced Account/Page Type Settings"
-msgstr "Erweiterte Account / Seiten Arten Einstellungen"
+#: ../../mod/admin.php:195
+msgid "Summary"
+msgstr "Zusammenfassung"
 
-#: ../../mod/settings.php:974
-msgid "Change the behaviour of this account for special situations"
-msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen"
+#: ../../mod/admin.php:197
+msgid "Registered users"
+msgstr "Registrierte Benutzer"
 
-#: ../../mod/subthread.php:105
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s folgt nun %2$s's %3$s"
+#: ../../mod/admin.php:199 ../../mod/admin.php:532
+msgid "Pending registrations"
+msgstr "Ausstehende Registrierungen"
 
-#: ../../mod/update_network.php:23 ../../mod/update_channel.php:43
-#: ../../mod/update_search.php:46 ../../mod/update_display.php:25
-#: ../../mod/update_community.php:18
-msgid "[Embedded content - reload page to view]"
-msgstr "[Eingebetteter Inhalte - bitte lade die Seite zur Anzeige neu]"
+#: ../../mod/admin.php:200
+msgid "Version"
+msgstr "Version"
 
-#: ../../mod/chanview.php:77 ../../mod/home.php:50 ../../mod/page.php:47
-#: ../../mod/wall_upload.php:35
-msgid "Channel not found."
-msgstr "Kanal nicht gefunden."
+#: ../../mod/admin.php:202 ../../mod/admin.php:533
+msgid "Active plugins"
+msgstr "Aktive Plug-Ins"
 
-#: ../../mod/chanview.php:93
-msgid "toggle full screen mode"
-msgstr "auf Vollbildmodus umschalten"
+#: ../../mod/admin.php:350
+msgid "Site settings updated."
+msgstr "Site-Einstellungen aktualisiert."
 
-#: ../../mod/tagger.php:98
-#, php-format
-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/admin.php:379 ../../mod/settings.php:709
+msgid "No special theme for mobile devices"
+msgstr "Keine spezielle Theme für mobile Geräte"
 
-#: ../../mod/chat.php:18 ../../mod/channel.php:25
-msgid "You must be logged in to see this page."
-msgstr "Du musst angemeldet sein um diese Seite betrachten zu können."
+#: ../../mod/admin.php:381
+msgid "No special theme for accessibility"
+msgstr "Kein spezielles Accessibility-Theme vorhanden"
 
-#: ../../mod/chat.php:120
-msgid "Leave Room"
-msgstr "Raum verlassen"
+#: ../../mod/admin.php:409
+msgid "Closed"
+msgstr "Geschlossen"
 
-#: ../../mod/chat.php:121
-msgid "I am away right now"
-msgstr "Ich bin gerade nicht da"
+#: ../../mod/admin.php:410
+msgid "Requires approval"
+msgstr "Genehmigung erforderlich"
 
-#: ../../mod/chat.php:122
-msgid "I am online"
-msgstr "Ich bin online"
+#: ../../mod/admin.php:411
+msgid "Open"
+msgstr "Offen"
 
-#: ../../mod/chat.php:146 ../../mod/chat.php:166
-msgid "New Chatroom"
-msgstr "Neuen Chatraum"
+#: ../../mod/admin.php:416
+msgid "Private"
+msgstr "Privat"
 
-#: ../../mod/chat.php:147
-msgid "Chatroom Name"
-msgstr "Chatraum Name"
+#: ../../mod/admin.php:417
+msgid "Paid Access"
+msgstr "Kostenpflichtiger Zugang"
 
-#: ../../mod/chat.php:162
-#, php-format
-msgid "%1$s's Chatrooms"
-msgstr "%1$s's Chat-Räume"
+#: ../../mod/admin.php:418
+msgid "Free Access"
+msgstr "Kostenloser Zugang"
 
-#: ../../mod/viewconnections.php:17 ../../mod/search.php:13
-#: ../../mod/directory.php:15 ../../mod/display.php:9
-#: ../../mod/community.php:18 ../../mod/dirprofile.php:9
-#: ../../mod/photos.php:442
-msgid "Public access denied."
-msgstr "Öffentlicher Zugang verweigert."
+#: ../../mod/admin.php:419
+msgid "Tiered Access"
+msgstr "Abgestufter Zugang"
 
-#: ../../mod/viewconnections.php:43
-msgid "No connections."
-msgstr "Keine Verbindungen."
+#: ../../mod/admin.php:432 ../../mod/register.php:189
+msgid "Registration"
+msgstr "Registrierung"
 
-#: ../../mod/viewconnections.php:55
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Besuche %s's Profil [%s]"
+#: ../../mod/admin.php:433
+msgid "File upload"
+msgstr "Dateiupload"
 
-#: ../../mod/viewconnections.php:70
-msgid "View Connnections"
-msgstr "Zeige Verbindungen"
+#: ../../mod/admin.php:434
+msgid "Policies"
+msgstr "Richtlinien"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Schlagwort entfernt"
+#: ../../mod/admin.php:435
+msgid "Advanced"
+msgstr "Fortgeschritten"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Schlagwort des Beitrags entfernen"
+#: ../../mod/admin.php:439
+msgid "Site name"
+msgstr "Seitenname"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Schlagwort zum entfernen auswählen:"
+#: ../../mod/admin.php:440
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 ../../mod/photos.php:905
-msgid "Remove"
-msgstr "Entferne"
+#: ../../mod/admin.php:441
+msgid "Administrator Information"
+msgstr "Administrator-Informationen"
 
-#: ../../mod/connect.php:55 ../../mod/connect.php:103
-msgid "Continue"
-msgstr "Fortfahren"
+#: ../../mod/admin.php:441
+msgid ""
+"Contact information for site administrators.  Displayed on siteinfo page.  "
+"BBCode can be used here"
+msgstr "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden."
 
-#: ../../mod/connect.php:84
-msgid "Premium Channel Setup"
-msgstr "Prämium-Kanal Einrichtung"
+#: ../../mod/admin.php:442
+msgid "System language"
+msgstr "System-Sprache"
 
-#: ../../mod/connect.php:86
-msgid "Enable premium channel connection restrictions"
-msgstr "Einschränkungen für den Prämium-Kanal aktivieren"
+#: ../../mod/admin.php:443
+msgid "System theme"
+msgstr "System-Theme"
 
-#: ../../mod/connect.php:87
+#: ../../mod/admin.php:443
 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."
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>"
 
-#: ../../mod/connect.php:89 ../../mod/connect.php:109
-msgid ""
-"This channel may require additional steps or acknowledgement of the "
-"following conditions prior to connecting:"
-msgstr "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen, vor dem Verbinden mit diesem Kanal nötig."
+#: ../../mod/admin.php:444
+msgid "Mobile system theme"
+msgstr "Mobile System-Theme:"
 
-#: ../../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/admin.php:444
+msgid "Theme for mobile devices"
+msgstr "Theme für mobile Geräte"
 
-#: ../../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/admin.php:445
+msgid "Accessibility system theme"
+msgstr "Accessibility-System-Theme"
 
-#: ../../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/admin.php:445
+msgid "Accessibility theme"
+msgstr "Accessibility-Theme"
 
-#: ../../mod/connect.php:108
-msgid "Restricted or Premium Channel"
-msgstr "Eingeschränkter oder Prämium-Kanal"
+#: ../../mod/admin.php:446
+msgid "Channel to use for this website's static pages"
+msgstr "Kanal für die statischen Seiten dieser Webseite verwenden"
 
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
+#: ../../mod/admin.php:446
+msgid "Site Channel"
+msgstr "Seiten Kanal"
 
-#: ../../mod/delegate.php:121
-msgid "Delegate Page Management"
-msgstr "Delegiere das Management für die Seite"
+#: ../../mod/admin.php:448
+msgid "Maximum image size"
+msgstr "Maximale Bildgröße"
 
-#: ../../mod/delegate.php:123
+#: ../../mod/admin.php:448
 msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!"
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)."
 
-#: ../../mod/delegate.php:124
-msgid "Existing Page Managers"
-msgstr "Vorhandene Seitenmanager"
+#: ../../mod/admin.php:449
+msgid "Register policy"
+msgstr "Registrierungsrichtlinie"
 
-#: ../../mod/delegate.php:126
-msgid "Existing Page Delegates"
-msgstr "Vorhandene Bevollmächtigte für die Seite"
+#: ../../mod/admin.php:450
+msgid "Access policy"
+msgstr "Zugangsrichtlinien"
 
-#: ../../mod/delegate.php:128
-msgid "Potential Delegates"
-msgstr "Potentielle Bevollmächtigte"
+#: ../../mod/admin.php:451
+msgid "Register text"
+msgstr "Registrierungstext"
 
-#: ../../mod/delegate.php:131
-msgid "Add"
-msgstr "Hinzufügen"
+#: ../../mod/admin.php:451
+msgid "Will be displayed prominently on the registration page."
+msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt."
 
-#: ../../mod/delegate.php:132
-msgid "No entries."
-msgstr "Keine Einträge."
+#: ../../mod/admin.php:452
+msgid "Accounts abandoned after x days"
+msgstr "Konten gelten nach X Tagen als unbenutzt"
 
-#: ../../mod/chatsvc.php:102
-msgid "Away"
-msgstr "Abwesend"
+#: ../../mod/admin.php:452
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit."
 
-#: ../../mod/chatsvc.php:106
-msgid "Online"
-msgstr "Online"
+#: ../../mod/admin.php:453
+msgid "Allowed friend domains"
+msgstr "Erlaubte Domains für Kontakte"
 
-#: ../../mod/attach.php:9
-msgid "Item not available."
-msgstr "Element nicht verfügbar."
+#: ../../mod/admin.php:453
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
 
-#: ../../mod/mitem.php:47
-msgid "Menu element updated."
-msgstr "Menü-Element aktualisiert."
+#: ../../mod/admin.php:454
+msgid "Allowed email domains"
+msgstr "Erlaubte Domains für E-Mails"
 
-#: ../../mod/mitem.php:51
-msgid "Unable to update menu element."
-msgstr "Kann Menü-Element nicht aktualisieren."
+#: ../../mod/admin.php:454
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
 
-#: ../../mod/mitem.php:57
-msgid "Menu element added."
-msgstr "Menü-Bestandteil hinzugefügt."
+#: ../../mod/admin.php:455
+msgid "Block public"
+msgstr "Öffentlichen Zugriff blockieren"
 
-#: ../../mod/mitem.php:61
-msgid "Unable to add menu element."
-msgstr "Kann Menü-Bestandteil nicht hinzufügen."
+#: ../../mod/admin.php:455
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Zugriff auf sonst öffentliche persönliche Seiten blockieren, wenn man nicht eingeloggt ist."
 
-#: ../../mod/mitem.php:96
-msgid "Manage Menu Elements"
-msgstr "Menü-Bestandteile verwalten"
+#: ../../mod/admin.php:456
+msgid "Force publish"
+msgstr "Veröffentlichung erzwingen"
 
-#: ../../mod/mitem.php:99
-msgid "Edit menu"
-msgstr "Menü bearbeiten"
+#: ../../mod/admin.php:456
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen."
 
-#: ../../mod/mitem.php:102
-msgid "Edit element"
-msgstr "Bestandteil bearbeiten"
+#: ../../mod/admin.php:457
+msgid "No login on Homepage"
+msgstr "Kein Login auf der Homepage"
 
-#: ../../mod/mitem.php:103
-msgid "Drop element"
-msgstr "Bestandteil löschen"
+#: ../../mod/admin.php:457
+msgid ""
+"Check to hide the login form from your sites homepage when visitors arrive "
+"who are not logged in (e.g. when you put the content of the homepage in via "
+"the site channel)."
+msgstr "Ktivieren, um das Login-Formular auf der Startseite der Seite zu verbergen, z.B. weil es das Layout der Homepage des Seiten-Kanals stört."
 
-#: ../../mod/mitem.php:104
-msgid "New element"
-msgstr "Neues Bestandteil"
+#: ../../mod/admin.php:459
+msgid "Proxy user"
+msgstr "Proxy Benutzer"
 
-#: ../../mod/mitem.php:105
-msgid "Edit this menu container"
-msgstr "Diesen Menü-Container bearbeiten"
+#: ../../mod/admin.php:460
+msgid "Proxy URL"
+msgstr "Proxy URL"
 
-#: ../../mod/mitem.php:106
-msgid "Add menu element"
-msgstr "Menüelement hinzufügen"
+#: ../../mod/admin.php:461
+msgid "Network timeout"
+msgstr "Netzwerk-Timeout"
 
-#: ../../mod/mitem.php:107
-msgid "Delete this menu item"
-msgstr "Lösche dieses Menü-Bestandteil"
+#: ../../mod/admin.php:461
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)."
 
-#: ../../mod/mitem.php:108
-msgid "Edit this menu item"
-msgstr "Bearbeite dieses Menü-Bestandteil"
+#: ../../mod/admin.php:462
+msgid "Delivery interval"
+msgstr "Auslieferung Intervall"
 
-#: ../../mod/mitem.php:131
-msgid "New Menu Element"
-msgstr "Neues Menü-Bestandteil"
+#: ../../mod/admin.php:462
+msgid ""
+"Delay background delivery processes by this many seconds to reduce system "
+"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
+"for large dedicated servers."
+msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."
 
-#: ../../mod/mitem.php:133 ../../mod/mitem.php:176
-msgid "Menu Item Permissions"
-msgstr "Menü-Element Zugriffsrechte"
+#: ../../mod/admin.php:463
+msgid "Poll interval"
+msgstr "Abfrageintervall"
 
-#: ../../mod/mitem.php:136 ../../mod/mitem.php:180
-msgid "Link text"
-msgstr "Link Text"
+#: ../../mod/admin.php:463
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet."
 
-#: ../../mod/mitem.php:137 ../../mod/mitem.php:181
-msgid "URL of link"
-msgstr "URL des Links"
+#: ../../mod/admin.php:464
+msgid "Maximum Load Average"
+msgstr "Maximales Load Average"
 
-#: ../../mod/mitem.php:138 ../../mod/mitem.php:182
-msgid "Use Red magic-auth if available"
-msgstr "Verwende Red Magic-Auth wenn verfügbar"
+#: ../../mod/admin.php:464
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50"
 
-#: ../../mod/mitem.php:139 ../../mod/mitem.php:183
-msgid "Open link in new window"
-msgstr "Öffne Link in neuem Fenster"
+#: ../../mod/admin.php:520
+msgid "No server found"
+msgstr "Kein Server gefunden"
 
-#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
-msgid "Order in list"
-msgstr "Reihenfolge in der Liste"
+#: ../../mod/admin.php:527 ../../mod/admin.php:750
+msgid "ID"
+msgstr "ID"
 
-#: ../../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/admin.php:527
+msgid "for channel"
+msgstr "für Kanal"
 
-#: ../../mod/mitem.php:154
-msgid "Menu item not found."
-msgstr "Menü-Bestandteil nicht gefunden."
+#: ../../mod/admin.php:527
+msgid "on server"
+msgstr "auf Server"
 
-#: ../../mod/mitem.php:163
-msgid "Menu item deleted."
-msgstr "Menü-Bestandteil gelöscht."
+#: ../../mod/admin.php:527
+msgid "Status"
+msgstr "Status"
 
-#: ../../mod/mitem.php:165
-msgid "Menu item could not be deleted."
-msgstr "Menü-Bestandteil kann nicht gelöscht werden."
+#: ../../mod/admin.php:548
+msgid "Update has been marked successful"
+msgstr "Update wurde als erfolgreich markiert"
 
-#: ../../mod/mitem.php:174
-msgid "Edit Menu Element"
-msgstr "Bearbeite Menü-Bestandteil"
+#: ../../mod/admin.php:558
+#, php-format
+msgid "Executing %s failed. Check system logs."
+msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle."
 
-#: ../../mod/group.php:20
-msgid "Collection created."
-msgstr "Sammlung erstellt."
-
-#: ../../mod/group.php:26
-msgid "Could not create collection."
-msgstr "Sammlung kann nicht erstellt werden."
-
-#: ../../mod/group.php:54
-msgid "Collection updated."
-msgstr "Sammlung aktualisiert."
-
-#: ../../mod/group.php:86
-msgid "Create a collection of channels."
-msgstr "Erstelle eine Sammlung von Kanälen."
-
-#: ../../mod/group.php:87 ../../mod/group.php:183
-msgid "Collection Name: "
-msgstr "Name der Sammlung:"
-
-#: ../../mod/group.php:89 ../../mod/group.php:186
-msgid "Members are visible to other channels"
-msgstr "Mitglieder sind sichtbar für andere Kanäle"
-
-#: ../../mod/group.php:107
-msgid "Collection removed."
-msgstr "Sammlung gelöscht."
-
-#: ../../mod/group.php:109
-msgid "Unable to remove collection."
-msgstr "Löschen der Sammlung nicht möglich."
-
-#: ../../mod/group.php:182
-msgid "Collection Editor"
-msgstr "Sammlung-Editor"
+#: ../../mod/admin.php:561
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Update %s wurde erfolgreich ausgeführt."
 
-#: ../../mod/group.php:196
-msgid "Members"
-msgstr "Mitglieder"
+#: ../../mod/admin.php:565
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt."
 
-#: ../../mod/group.php:198
-msgid "All Connected Channels"
-msgstr "Alle verbundenen Kanäle"
+#: ../../mod/admin.php:568
+#, php-format
+msgid "Update function %s could not be found."
+msgstr "Update-Funktion %s konnte nicht gefunden werden."
 
-#: ../../mod/group.php:231
-msgid "Click on a channel to add or remove."
-msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus."
+#: ../../mod/admin.php:583
+msgid "No failed updates."
+msgstr "Keine fehlgeschlagenen Aktualisierungen."
 
-#: ../../mod/profperm.php:29 ../../mod/profperm.php:58
-msgid "Invalid profile identifier."
-msgstr "Ungültiger Profil Identifikator"
+#: ../../mod/admin.php:587
+msgid "Failed Updates"
+msgstr "Fehlgeschlagene Aktualisierungen"
 
-#: ../../mod/profperm.php:105
-msgid "Profile Visibility Editor"
-msgstr "Profil-Sichtbarkeits Editor"
+#: ../../mod/admin.php:589
+msgid "Mark success (if update was manually applied)"
+msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)"
 
-#: ../../mod/profperm.php:109
-msgid "Click on a contact to add or remove."
-msgstr "Wähle einen Kontakt zum Hinzufügen oder Löschen aus."
+#: ../../mod/admin.php:590
+msgid "Attempt to execute this update step automatically"
+msgstr "Versuche, diesen Updateschritt automatisch auszuführen"
 
-#: ../../mod/profperm.php:118
-msgid "Visible To"
-msgstr "Sichtbar für"
+#: ../../mod/admin.php:616
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s Nutzer blockiert/freigegeben"
+msgstr[1] "%s Nutzer blockiert/freigegeben"
 
-#: ../../mod/profperm.php:134 ../../mod/connections.php:250
-msgid "All Connections"
-msgstr "Alle Verbindungen"
+#: ../../mod/admin.php:623
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s Nutzer gelöscht"
+msgstr[1] "%s Nutzer gelöscht"
 
-#: ../../mod/admin.php:48
-msgid "Theme settings updated."
-msgstr "Theme-Einstellungen aktualisiert."
+#: ../../mod/admin.php:654
+msgid "Account not found"
+msgstr "Konto nicht gefunden"
 
-#: ../../mod/admin.php:88 ../../mod/admin.php:430
-msgid "Site"
-msgstr "Seite"
+#: ../../mod/admin.php:665
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Benutzer '%s' gelöscht"
 
-#: ../../mod/admin.php:89 ../../mod/admin.php:737 ../../mod/admin.php:749
-msgid "Users"
-msgstr "Benutzer"
+#: ../../mod/admin.php:674
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Benutzer '%s' freigegeben"
 
-#: ../../mod/admin.php:90 ../../mod/admin.php:835 ../../mod/admin.php:877
-msgid "Plugins"
-msgstr "Plug-Ins"
+#: ../../mod/admin.php:674
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Benutzer '%s' blockiert"
 
-#: ../../mod/admin.php:91 ../../mod/admin.php:1040 ../../mod/admin.php:1076
-msgid "Themes"
-msgstr "Themes"
+#: ../../mod/admin.php:739
+msgid "select all"
+msgstr "Alle auswählen"
 
-#: ../../mod/admin.php:92 ../../mod/admin.php:529
-msgid "Server"
-msgstr "Server"
+#: ../../mod/admin.php:740
+msgid "User registrations waiting for confirm"
+msgstr "Neuanmeldungen, die auf Deine Bestätigung warten"
 
-#: ../../mod/admin.php:93
-msgid "DB updates"
-msgstr "DB-Aktualisierungen"
+#: ../../mod/admin.php:741
+msgid "Request date"
+msgstr "Antragsdatum"
 
-#: ../../mod/admin.php:107 ../../mod/admin.php:114 ../../mod/admin.php:1163
-msgid "Logs"
-msgstr "Protokolle"
+#: ../../mod/admin.php:742
+msgid "No registrations."
+msgstr "Keine Registrierungen."
 
-#: ../../mod/admin.php:113
-msgid "Plugin Features"
-msgstr "Plug-In Funktionen"
+#: ../../mod/admin.php:743
+msgid "Approve"
+msgstr "Genehmigen"
 
-#: ../../mod/admin.php:115
-msgid "User registrations waiting for confirmation"
-msgstr "Nutzer Anmeldungen die auf Bestätigung warten"
+#: ../../mod/admin.php:744
+msgid "Deny"
+msgstr "Verweigern"
 
-#: ../../mod/admin.php:189
-msgid "Message queues"
-msgstr "Nachrichten Warteschlange"
+#: ../../mod/admin.php:746 ../../mod/connedit.php:333
+#: ../../mod/connedit.php:475
+msgid "Block"
+msgstr "Blockieren"
 
-#: ../../mod/admin.php:194 ../../mod/admin.php:429 ../../mod/admin.php:528
-#: ../../mod/admin.php:736 ../../mod/admin.php:834 ../../mod/admin.php:876
-#: ../../mod/admin.php:1039 ../../mod/admin.php:1075 ../../mod/admin.php:1162
-msgid "Administration"
-msgstr "Administration"
+#: ../../mod/admin.php:747 ../../mod/connedit.php:333
+#: ../../mod/connedit.php:475
+msgid "Unblock"
+msgstr "Freigeben"
 
-#: ../../mod/admin.php:195
-msgid "Summary"
-msgstr "Zusammenfassung"
+#: ../../mod/admin.php:750
+msgid "Register date"
+msgstr "Registrierungs-Datum"
 
-#: ../../mod/admin.php:197
-msgid "Registered users"
-msgstr "Registrierte Benutzer"
+#: ../../mod/admin.php:750
+msgid "Last login"
+msgstr "Letzte Anmeldung"
 
-#: ../../mod/admin.php:199 ../../mod/admin.php:532
-msgid "Pending registrations"
-msgstr "Ausstehende Registrierungen"
+#: ../../mod/admin.php:750
+msgid "Expires"
+msgstr "Verfällt"
 
-#: ../../mod/admin.php:200
-msgid "Version"
-msgstr "Version"
+#: ../../mod/admin.php:750
+msgid "Service Class"
+msgstr "Service-Klasse"
 
-#: ../../mod/admin.php:202 ../../mod/admin.php:533
-msgid "Active plugins"
-msgstr "Aktive Plug-Ins"
+#: ../../mod/admin.php:752
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlles, was diese Nutzer auf dieser Seite veröffentlicht haben, wird endgültig gelöscht!\\n\\nBist Du sicher?"
 
-#: ../../mod/admin.php:350
-msgid "Site settings updated."
-msgstr "Site-Einstellungen aktualisiert."
+#: ../../mod/admin.php:753
+msgid ""
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles, was dieser Nutzer auf dieser Seite veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?"
 
-#: ../../mod/admin.php:381
-msgid "No special theme for accessibility"
-msgstr "Kein spezielles Accessibility Theme vorhanden"
+#: ../../mod/admin.php:794
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Plug-In %s deaktiviert."
 
-#: ../../mod/admin.php:409
-msgid "Closed"
-msgstr "Geschlossen"
+#: ../../mod/admin.php:798
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Plug-In %s aktiviert."
 
-#: ../../mod/admin.php:410
-msgid "Requires approval"
-msgstr "Genehmigung erforderlich"
+#: ../../mod/admin.php:808 ../../mod/admin.php:1010
+msgid "Disable"
+msgstr "Deaktivieren"
 
-#: ../../mod/admin.php:411
-msgid "Open"
-msgstr "Offen"
+#: ../../mod/admin.php:810 ../../mod/admin.php:1012
+msgid "Enable"
+msgstr "Aktivieren"
 
-#: ../../mod/admin.php:416
-msgid "Private"
-msgstr "Privat"
+#: ../../mod/admin.php:836 ../../mod/admin.php:1041
+msgid "Toggle"
+msgstr "Umschalten"
 
-#: ../../mod/admin.php:417
-msgid "Paid Access"
-msgstr "Kostenpflichtiger Zugang"
+#: ../../mod/admin.php:844 ../../mod/admin.php:1051
+msgid "Author: "
+msgstr "Autor: "
 
-#: ../../mod/admin.php:418
-msgid "Free Access"
-msgstr "Kostenloser Zugang"
+#: ../../mod/admin.php:845 ../../mod/admin.php:1052
+msgid "Maintainer: "
+msgstr "Betreuer:"
 
-#: ../../mod/admin.php:419
-msgid "Tiered Access"
-msgstr "Abgestufter Zugang"
+#: ../../mod/admin.php:974
+msgid "No themes found."
+msgstr "Keine Theme gefunden."
 
-#: ../../mod/admin.php:432 ../../mod/register.php:189
-msgid "Registration"
-msgstr "Registrierung"
+#: ../../mod/admin.php:1033
+msgid "Screenshot"
+msgstr "Bildschirmfoto"
 
-#: ../../mod/admin.php:433
-msgid "File upload"
-msgstr "Dateiupload"
+#: ../../mod/admin.php:1081
+msgid "[Experimental]"
+msgstr "[Experimentell]"
 
-#: ../../mod/admin.php:434
-msgid "Policies"
-msgstr "Richtlinien"
+#: ../../mod/admin.php:1082
+msgid "[Unsupported]"
+msgstr "[Nicht unterstützt]"
 
-#: ../../mod/admin.php:435
-msgid "Advanced"
-msgstr "Fortgeschritten"
+#: ../../mod/admin.php:1109
+msgid "Log settings updated."
+msgstr "Protokoll-Einstellungen aktualisiert."
 
-#: ../../mod/admin.php:439
-msgid "Site name"
-msgstr "Seitenname"
+#: ../../mod/admin.php:1165
+msgid "Clear"
+msgstr "Leeren"
 
-#: ../../mod/admin.php:440
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: ../../mod/admin.php:1171
+msgid "Debugging"
+msgstr "Debugging"
 
-#: ../../mod/admin.php:441
-msgid "Administrator Information"
-msgstr "Administrator Informationen"
+#: ../../mod/admin.php:1172
+msgid "Log file"
+msgstr "Protokolldatei"
 
-#: ../../mod/admin.php:441
+#: ../../mod/admin.php:1172
 msgid ""
-"Contact information for site administrators.  Displayed on siteinfo page.  "
-"BBCode can be used here"
-msgstr "Kontaktinformationen für Administratoren der Seite. Wird auf der siteinfo Seite angezeigt. BBCode kann verwendet werden."
+"Must be writable by web server. Relative to your Red top-level directory."
+msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Red-Stammverzeichnis."
 
-#: ../../mod/admin.php:442
-msgid "System language"
-msgstr "System-Sprache"
+#: ../../mod/admin.php:1173
+msgid "Log level"
+msgstr "Protokollstufe"
 
-#: ../../mod/admin.php:443
-msgid "System theme"
-msgstr "System-Theme"
+#: ../../mod/filer.php:35
+msgid "- select -"
+msgstr "– auswählen –"
 
-#: ../../mod/admin.php:443
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Standard System-Theme - kann durch Nutzerprofile überschieben werden - <a href='#' id='cnftheme'>Theme.Einstellungen ändern</a>"
+#: ../../mod/home.php:89
+#, php-format
+msgid "Welcome to %s"
+msgstr "Willkommen auf %s"
 
-#: ../../mod/admin.php:444
-msgid "Mobile system theme"
-msgstr "Mobile System-Theme:"
+#: ../../mod/editpost.php:20 ../../mod/editlayout.php:36
+#: ../../mod/editwebpage.php:32 ../../mod/editblock.php:36
+msgid "Item not found"
+msgstr "Element nicht gefunden"
 
-#: ../../mod/admin.php:444
-msgid "Theme for mobile devices"
-msgstr "Theme für mobile Geräte"
+#: ../../mod/editpost.php:31
+msgid "Item is not editable"
+msgstr "Element kann nicht bearbeitet werden."
 
-#: ../../mod/admin.php:445
-msgid "Accessibility system theme"
-msgstr "Accessibility System-Theme"
+#: ../../mod/editpost.php:53
+msgid "Delete item?"
+msgstr "Eintrag löschen?"
 
-#: ../../mod/admin.php:445
-msgid "Accessibility theme"
-msgstr "Accessibility Theme"
+#: ../../mod/editpost.php:107 ../../mod/editlayout.php:110
+#: ../../mod/editwebpage.php:148 ../../mod/editblock.php:124
+msgid "Insert YouTube video"
+msgstr "YouTube-Video einfügen"
 
-#: ../../mod/admin.php:446
-msgid "Channel to use for this website's static pages"
-msgstr "Kanal für die statischen Seiten dieser Webseite verwenden"
+#: ../../mod/editpost.php:108 ../../mod/editlayout.php:111
+#: ../../mod/editwebpage.php:149 ../../mod/editblock.php:125
+msgid "Insert Vorbis [.ogg] video"
+msgstr "Vorbis [.ogg]-Video einfügen"
 
-#: ../../mod/admin.php:446
-msgid "Site Channel"
-msgstr "Seiten Kanal"
+#: ../../mod/editpost.php:109 ../../mod/editlayout.php:112
+#: ../../mod/editwebpage.php:150 ../../mod/editblock.php:126
+msgid "Insert Vorbis [.ogg] audio"
+msgstr "Vorbis [.ogg]-Audio einfügen"
 
-#: ../../mod/admin.php:448
-msgid "Maximum image size"
-msgstr "Maximale Bildgröße"
+#: ../../mod/directory.php:144 ../../mod/profiles.php:561
+#: ../../mod/dirprofile.php:98
+msgid "Age: "
+msgstr "Alter:"
 
-#: ../../mod/admin.php:448
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Maximale Größe in Bytes von hochgeladenen Bildern. Standard ist 0, was keine Einschränkung bedeutet."
+#: ../../mod/directory.php:147 ../../mod/dirprofile.php:101
+msgid "Gender: "
+msgstr "Geschlecht:"
 
-#: ../../mod/admin.php:449
-msgid "Register policy"
-msgstr "Registrierungsmethode"
+#: ../../mod/directory.php:208
+msgid "Finding:"
+msgstr "Ergebnisse:"
 
-#: ../../mod/admin.php:450
-msgid "Access policy"
-msgstr "Zugangsrichtlinien"
+#: ../../mod/directory.php:216
+msgid "next page"
+msgstr "nächste Seite"
 
-#: ../../mod/admin.php:451
-msgid "Register text"
-msgstr "Registrierungstext"
+#: ../../mod/directory.php:216
+msgid "previous page"
+msgstr "vorige Seite"
 
-#: ../../mod/admin.php:451
-msgid "Will be displayed prominently on the registration page."
-msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
+#: ../../mod/directory.php:223
+msgid "No entries (some entries may be hidden)."
+msgstr "Keine Einträge gefunden (einige könnten versteckt sein)."
 
-#: ../../mod/admin.php:452
-msgid "Accounts abandoned after x days"
-msgstr "Accounts gelten nach X Tagen als unbenutzt"
+#: ../../mod/connedit.php:49 ../../mod/connections.php:37
+msgid "Could not access contact record."
+msgstr "Konnte nicht auf den Kontakteintrag zugreifen."
 
-#: ../../mod/admin.php:452
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Verschwende keine Systemressourchen auf das Pollen von externen Seiten wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit."
+#: ../../mod/connedit.php:63 ../../mod/connections.php:51
+msgid "Could not locate selected profile."
+msgstr "Gewähltes Profil nicht gefunden."
 
-#: ../../mod/admin.php:453
-msgid "Allowed friend domains"
-msgstr "Erlaubte Domains für Kontakte"
+#: ../../mod/connedit.php:107 ../../mod/connections.php:94
+msgid "Connection updated."
+msgstr "Verbindung aktualisiert."
 
-#: ../../mod/admin.php:453
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
+#: ../../mod/connedit.php:109 ../../mod/connections.php:96
+msgid "Failed to update connection record."
+msgstr "Konnte den Verbindungseintrag nicht aktualisieren."
 
-#: ../../mod/admin.php:454
-msgid "Allowed email domains"
-msgstr "Erlaubte Domains für E-Mails"
+#: ../../mod/connedit.php:204
+msgid "Could not access address book record."
+msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen."
 
-#: ../../mod/admin.php:454
-msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
-msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
+#: ../../mod/connedit.php:218
+msgid "Refresh failed - channel is currently unavailable."
+msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar."
 
-#: ../../mod/admin.php:455
-msgid "Block public"
-msgstr "Öffentlichen Zugriff blockieren"
+#: ../../mod/connedit.php:225
+msgid "Channel has been unblocked"
+msgstr "Kanal nicht mehr blockiert"
 
-#: ../../mod/admin.php:455
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist."
+#: ../../mod/connedit.php:226
+msgid "Channel has been blocked"
+msgstr "Kanal blockiert"
 
-#: ../../mod/admin.php:456
-msgid "Force publish"
-msgstr "Veröffentlichung erzwingen"
+#: ../../mod/connedit.php:230 ../../mod/connedit.php:242
+#: ../../mod/connedit.php:254 ../../mod/connedit.php:266
+#: ../../mod/connedit.php:281
+msgid "Unable to set address book parameters."
+msgstr "Konnte die Adressbuch-Parameter nicht setzen."
 
-#: ../../mod/admin.php:456
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen."
+#: ../../mod/connedit.php:237
+msgid "Channel has been unignored"
+msgstr "Kanal wird nicht mehr ignoriert"
 
-#: ../../mod/admin.php:457
-msgid "No login on Homepage"
-msgstr "Kein Login auf der Homepage"
+#: ../../mod/connedit.php:238
+msgid "Channel has been ignored"
+msgstr "Kanal wird ignoriert"
 
-#: ../../mod/admin.php:457
-msgid ""
-"Check to hide the login form from your sites homepage when visitors arrive "
-"who are not logged in (e.g. when you put the content of the homepage in via "
-"the site channel)."
-msgstr "Wählen um das Login Formular auf der Startseite der Seite zu verbergen, z.B. weil es das Layout der Homepage des Seiten-Kanals stört."
+#: ../../mod/connedit.php:249
+msgid "Channel has been unarchived"
+msgstr "Kanal wurde aus dem Archiv zurück geholt"
 
-#: ../../mod/admin.php:459
-msgid "Proxy user"
-msgstr "Proxy Benutzer"
+#: ../../mod/connedit.php:250
+msgid "Channel has been archived"
+msgstr "Kanal wurde archiviert"
 
-#: ../../mod/admin.php:460
-msgid "Proxy URL"
-msgstr "Proxy URL"
+#: ../../mod/connedit.php:261
+msgid "Channel has been unhidden"
+msgstr "Kanal wird nicht mehr versteckt"
+
+#: ../../mod/connedit.php:262
+msgid "Channel has been hidden"
+msgstr "Kanal wurde versteckt"
 
-#: ../../mod/admin.php:461
-msgid "Network timeout"
-msgstr "Netzwerk-Timeout"
+#: ../../mod/connedit.php:276
+msgid "Channel has been approved"
+msgstr "Kanal wurde zugelassen"
 
-#: ../../mod/admin.php:461
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)."
+#: ../../mod/connedit.php:277
+msgid "Channel has been unapproved"
+msgstr "Zulassung des Kanals entfernt"
 
-#: ../../mod/admin.php:462
-msgid "Delivery interval"
-msgstr "Auslieferung Intervall"
+#: ../../mod/connedit.php:295
+msgid "Contact has been removed."
+msgstr "Kontakt wurde entfernt."
 
-#: ../../mod/admin.php:462
-msgid ""
-"Delay background delivery processes by this many seconds to reduce system "
-"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
-"for large dedicated servers."
-msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."
+#: ../../mod/connedit.php:315
+#, php-format
+msgid "View %s's profile"
+msgstr "%ss Profil ansehen"
 
-#: ../../mod/admin.php:463
-msgid "Poll interval"
-msgstr "Abfrageintervall"
+#: ../../mod/connedit.php:319
+msgid "Refresh Permissions"
+msgstr "Zugriffsrechte neu laden"
 
-#: ../../mod/admin.php:463
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "Verzögere Hintergrundprozesse, um diese Anzahl an Sekunden um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet."
+#: ../../mod/connedit.php:322
+msgid "Fetch updated permissions"
+msgstr "Aktualisierte Zugriffsrechte abfragen"
 
-#: ../../mod/admin.php:464
-msgid "Maximum Load Average"
-msgstr "Maximum Load Average"
+#: ../../mod/connedit.php:326
+msgid "Recent Activity"
+msgstr "Kürzliche Aktivitäten"
 
-#: ../../mod/admin.php:464
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
+#: ../../mod/connedit.php:329
+msgid "View recent posts and comments"
+msgstr "Betrachte die neuesten Beiträge und Kommentare"
 
-#: ../../mod/admin.php:520
-msgid "No server found"
-msgstr "Kein Server gefunden"
+#: ../../mod/connedit.php:336
+msgid "Block or Unblock this connection"
+msgstr "Verbindung blockieren oder freigeben"
 
-#: ../../mod/admin.php:527 ../../mod/admin.php:750
-msgid "ID"
-msgstr "ID"
+#: ../../mod/connedit.php:340 ../../mod/connedit.php:476
+msgid "Unignore"
+msgstr "Nicht ignorieren"
 
-#: ../../mod/admin.php:527
-msgid "for channel"
-msgstr "für Kanal"
+#: ../../mod/connedit.php:340 ../../mod/connedit.php:476
+#: ../../mod/notifications.php:51
+msgid "Ignore"
+msgstr "Ignorieren"
 
-#: ../../mod/admin.php:527
-msgid "on server"
-msgstr "auf Server"
+#: ../../mod/connedit.php:343
+msgid "Ignore or Unignore this connection"
+msgstr "Verbindung ignorieren oder wieder beachten"
 
-#: ../../mod/admin.php:527
-msgid "Status"
-msgstr "Status"
+#: ../../mod/connedit.php:346
+msgid "Unarchive"
+msgstr "Aus Archiv zurückholen"
 
-#: ../../mod/admin.php:548
-msgid "Update has been marked successful"
-msgstr "Update wurde als erfolgreich markiert"
+#: ../../mod/connedit.php:346
+msgid "Archive"
+msgstr "Archivieren"
 
-#: ../../mod/admin.php:558
-#, php-format
-msgid "Executing %s failed. Check system logs."
-msgstr "Aufrufen von %s fehlgeschlagen. Überprüfe die Systemlogs."
+#: ../../mod/connedit.php:349
+msgid "Archive or Unarchive this connection"
+msgstr "Verbindung archivieren oder aus dem Archiv zurückholen"
 
-#: ../../mod/admin.php:561
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Update %s wurde erfolgreich angewandt."
+#: ../../mod/connedit.php:352
+msgid "Unhide"
+msgstr "Wieder sichtbar machen"
 
-#: ../../mod/admin.php:565
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "Update %s liefert keinen Rückgabewert. Unbekannt ob es erfolgreich war."
+#: ../../mod/connedit.php:352
+msgid "Hide"
+msgstr "Verstecken"
 
-#: ../../mod/admin.php:568
-#, php-format
-msgid "Update function %s could not be found."
-msgstr "Update Funktion %s konnte nicht gefunden werden."
+#: ../../mod/connedit.php:355
+msgid "Hide or Unhide this connection"
+msgstr "Diese Verbindung verstecken oder wieder sichtbar machen"
 
-#: ../../mod/admin.php:583
-msgid "No failed updates."
-msgstr "Keine fehlgeschlagenen Aktualisierungen."
+#: ../../mod/connedit.php:362
+msgid "Delete this connection"
+msgstr "Verbindung löschen"
 
-#: ../../mod/admin.php:587
-msgid "Failed Updates"
-msgstr "Fehlgeschlagene Aktualisierungen"
+#: ../../mod/connedit.php:395
+msgid "Unknown"
+msgstr "Unbekannt"
 
-#: ../../mod/admin.php:589
-msgid "Mark success (if update was manually applied)"
-msgstr "Als erfolgreich markieren (wenn das Update manuell angewandt wurde)"
+#: ../../mod/connedit.php:405 ../../mod/connedit.php:434
+msgid "Approve this connection"
+msgstr "Verbindung genehmigen"
 
-#: ../../mod/admin.php:590
-msgid "Attempt to execute this update step automatically"
-msgstr "Versuche diesen Updateschritt automatisch anzuwenden"
+#: ../../mod/connedit.php:405
+msgid "Accept connection to allow communication"
+msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen"
 
-#: ../../mod/admin.php:616
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s Nutzer blockiert/freigegeben"
-msgstr[1] "%s Nutzer blockiert/freigegeben"
+#: ../../mod/connedit.php:421
+msgid "Automatic Permissions Settings"
+msgstr "Automatische Berechtigungs-Einstellungen"
 
-#: ../../mod/admin.php:623
+#: ../../mod/connedit.php:421
 #, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s Nutzer gelöscht"
-msgstr[1] "%s Nutzer gelöscht"
+msgid "Connections: settings for %s"
+msgstr "Verbindungseinstellungen für %s"
 
-#: ../../mod/admin.php:654
-msgid "Account not found"
-msgstr "Konto nicht gefunden"
+#: ../../mod/connedit.php:425
+msgid ""
+"When receiving a channel introduction, any permissions provided here will be"
+" applied to the new connection automatically and the introduction approved. "
+"Leave this page if you do not wish to use this feature."
+msgstr "Wenn eine Verbindungsanfrage empfangen wird, werden die hier getroffenen Einstellungen automatisch angewandt, und die Anfrage wird genehmigt. Verlasse diese Seite, wenn Du diese Funktion nicht verwenden möchtest."
 
-#: ../../mod/admin.php:665
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Benutzer '%s' gelöscht"
+#: ../../mod/connedit.php:427
+msgid "Slide to adjust your degree of friendship"
+msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen"
 
-#: ../../mod/admin.php:674
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Benutzer '%s' freigegeben"
+#: ../../mod/connedit.php:433
+msgid "inherited"
+msgstr "geerbt"
 
-#: ../../mod/admin.php:674
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Benutzer '%s' blockiert"
+#: ../../mod/connedit.php:435
+msgid "Connection has no individual permissions!"
+msgstr "Diese Verbindung hat keine individuellen Zugriffsrechte!"
 
-#: ../../mod/admin.php:739
-msgid "select all"
-msgstr "Alle auswählen"
+#: ../../mod/connedit.php:436
+msgid ""
+"This may be appropriate based on your <a href=\"settings\">privacy "
+"settings</a>, though you may wish to review the \"Advanced Permissions\"."
+msgstr "Abhängig von Deinen <a href=\"settings\">Privatsphäre-Einstellungen</a> könnte das passen, eventuell solltest Du aber die „Zugriffsrechte für Fortgeschrittene“ überprüfen."
 
-#: ../../mod/admin.php:740
-msgid "User registrations waiting for confirm"
-msgstr "Neuanmeldungen, die auf deine Bestätigung warten"
+#: ../../mod/connedit.php:438
+msgid "Profile Visibility"
+msgstr "Sichtbarkeit des Profils"
 
-#: ../../mod/admin.php:741
-msgid "Request date"
-msgstr "Antragsdatum"
+#: ../../mod/connedit.php:439
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird."
 
-#: ../../mod/admin.php:742
-msgid "No registrations."
-msgstr "Keine Registrierungen."
+#: ../../mod/connedit.php:440
+msgid "Contact Information / Notes"
+msgstr "Kontaktinformationen / Notizen"
 
-#: ../../mod/admin.php:743
-msgid "Approve"
-msgstr "Genehmigen"
+#: ../../mod/connedit.php:441
+msgid "Edit contact notes"
+msgstr "Kontaktnotizen bearbeiten"
 
-#: ../../mod/admin.php:744
-msgid "Deny"
-msgstr "Verweigern"
+#: ../../mod/connedit.php:443
+msgid "Their Settings"
+msgstr "Deren Einstellungen"
 
-#: ../../mod/admin.php:746 ../../mod/connedit.php:333
-#: ../../mod/connedit.php:475
-msgid "Block"
-msgstr "Blockieren"
+#: ../../mod/connedit.php:444
+msgid "My Settings"
+msgstr "Meine Einstellungen"
 
-#: ../../mod/admin.php:747 ../../mod/connedit.php:333
-#: ../../mod/connedit.php:475
-msgid "Unblock"
-msgstr "Freigeben"
+#: ../../mod/connedit.php:446
+msgid "Forum Members"
+msgstr "Forum Mitglieder"
 
-#: ../../mod/admin.php:750
-msgid "Register date"
-msgstr "Registrierungs-Datum"
+#: ../../mod/connedit.php:447
+msgid "Soapbox"
+msgstr "Marktschreier"
 
-#: ../../mod/admin.php:750
-msgid "Last login"
-msgstr "Letzte Anmeldung"
+#: ../../mod/connedit.php:448
+msgid "Full Sharing (typical social network permissions)"
+msgstr "Vollumfängliches Teilen (übliche Berechtigungen in sozialen Netzwerken)"
 
-#: ../../mod/admin.php:750
-msgid "Expires"
-msgstr "Verfällt"
+#: ../../mod/connedit.php:449
+msgid "Cautious Sharing "
+msgstr "Vorsichtiges Teilen"
 
-#: ../../mod/admin.php:750
-msgid "Service Class"
-msgstr "Service-Klasse"
+#: ../../mod/connedit.php:450
+msgid "Follow Only"
+msgstr "Nur folgen"
 
-#: ../../mod/admin.php:752
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Markierte Nutzer werden gelöscht\\n\\nAlles was diese Nutzer auf dieser Seite veröffentlicht haben wird permanent gelöscht\\n\\nBist du sicher?"
+#: ../../mod/connedit.php:451
+msgid "Individual Permissions"
+msgstr "Individuelle Zugriffsrechte"
 
-#: ../../mod/admin.php:753
+#: ../../mod/connedit.php:452
 msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Der Nutzer {0} wird gelöscht\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat wird permanent gelöscht werden\\n\\nBist du sicher?"
+"Some permissions may be inherited from your channel <a "
+"href=\"settings\">privacy settings</a>, which have higher priority than "
+"individual settings. Changing those inherited settings on this page will "
+"have no effect."
+msgstr "Einige Berechtigungen werden von den <a href=\"settings\">Sicherheits- und Privatsphäre-Einstellungen</a> dieses Kanals geerbt, die eine höhere Priorität haben als die Einstellungen bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat das keine Auswirkungen."
+
+#: ../../mod/connedit.php:453
+msgid "Advanced Permissions"
+msgstr "Zugriffsrechte für Fortgeschrittene"
 
-#: ../../mod/admin.php:794
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plug-In %s deaktiviert."
+#: ../../mod/connedit.php:454
+msgid "Simple Permissions (select one and submit)"
+msgstr "Einfache Berechtigungs-Einstellungen (wähle eine aus und klicke auf Senden)"
 
-#: ../../mod/admin.php:798
+#: ../../mod/connedit.php:458
 #, php-format
-msgid "Plugin %s enabled."
-msgstr "Plug-In %s aktiviert."
+msgid "Visit %s's profile - %s"
+msgstr "%ss Profil besuchen - %s"
 
-#: ../../mod/admin.php:808 ../../mod/admin.php:1010
-msgid "Disable"
-msgstr "Deaktivieren"
+#: ../../mod/connedit.php:459
+msgid "Block/Unblock contact"
+msgstr "Kontakt blockieren/freigeben"
 
-#: ../../mod/admin.php:810 ../../mod/admin.php:1012
-msgid "Enable"
-msgstr "Aktivieren"
+#: ../../mod/connedit.php:460
+msgid "Ignore contact"
+msgstr "Kontakt ignorieren"
 
-#: ../../mod/admin.php:836 ../../mod/admin.php:1041
-msgid "Toggle"
-msgstr "Umschalten"
+#: ../../mod/connedit.php:461
+msgid "Repair URL settings"
+msgstr "URL-Einstellungen reparieren"
 
-#: ../../mod/admin.php:844 ../../mod/admin.php:1051
-msgid "Author: "
-msgstr "Autor: "
+#: ../../mod/connedit.php:462
+msgid "View conversations"
+msgstr "Unterhaltungen anzeigen"
 
-#: ../../mod/admin.php:845 ../../mod/admin.php:1052
-msgid "Maintainer: "
-msgstr "Betreuer:"
+#: ../../mod/connedit.php:464
+msgid "Delete contact"
+msgstr "Kontakt löschen"
 
-#: ../../mod/admin.php:974
-msgid "No themes found."
-msgstr "Keine Theme gefunden."
+#: ../../mod/connedit.php:467
+msgid "Last update:"
+msgstr "Letzte Aktualisierung:"
 
-#: ../../mod/admin.php:1033
-msgid "Screenshot"
-msgstr "Bildschirmfoto"
+#: ../../mod/connedit.php:469
+msgid "Update public posts"
+msgstr "Öffentliche Beiträge aktualisieren"
 
-#: ../../mod/admin.php:1081
-msgid "[Experimental]"
-msgstr "[Experimentell]"
+#: ../../mod/connedit.php:471
+msgid "Update now"
+msgstr "Jetzt aktualisieren"
 
-#: ../../mod/admin.php:1082
-msgid "[Unsupported]"
-msgstr "[Nicht unterstützt]"
+#: ../../mod/connedit.php:477
+msgid "Currently blocked"
+msgstr "Derzeit blockiert"
 
-#: ../../mod/admin.php:1109
-msgid "Log settings updated."
-msgstr "Protokoll-Einstellungen aktualisiert."
+#: ../../mod/connedit.php:478
+msgid "Currently ignored"
+msgstr "Derzeit ignoriert"
 
-#: ../../mod/admin.php:1165
-msgid "Clear"
-msgstr "Leeren"
+#: ../../mod/connedit.php:479
+msgid "Currently archived"
+msgstr "Derzeit archiviert"
 
-#: ../../mod/admin.php:1171
-msgid "Debugging"
-msgstr "Debugging"
+#: ../../mod/connedit.php:480
+msgid "Currently pending"
+msgstr "Derzeit anstehend"
 
-#: ../../mod/admin.php:1172
-msgid "Log file"
-msgstr "Protokolldatei"
+#: ../../mod/connedit.php:481
+msgid "Hide this contact from others"
+msgstr "Diese Verbindung vor den anderen verbergen."
 
-#: ../../mod/admin.php:1172
+#: ../../mod/connedit.php:481
 msgid ""
-"Must be writable by web server. Relative to your Red top-level directory."
-msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Red Stammverzeichnis."
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>können</strong> immer noch sichtbar sein"
 
-#: ../../mod/admin.php:1173
-msgid "Log level"
-msgstr "Protokollstufe"
+#: ../../mod/layouts.php:52
+msgid "Layout Help"
+msgstr "Layout-Hilfe"
 
-#: ../../mod/filer.php:35
-msgid "- select -"
-msgstr "-auswählen-"
+#: ../../mod/layouts.php:55
+msgid "Help with this feature"
+msgstr "Hilfe zu dieser Funktion"
 
-#: ../../mod/home.php:89
-#, php-format
-msgid "Welcome to %s"
-msgstr "Willkommen auf %s"
+#: ../../mod/layouts.php:74
+msgid "Layout Name"
+msgstr "Layout-Name"
 
-#: ../../mod/editpost.php:20 ../../mod/editlayout.php:36
-#: ../../mod/editwebpage.php:32 ../../mod/editblock.php:36
-msgid "Item not found"
-msgstr "Element nicht gefunden"
+#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55
+msgid "Help:"
+msgstr "Hilfe:"
 
-#: ../../mod/editpost.php:31
-msgid "Item is not editable"
-msgstr "Element kann nicht bearbeitet werden."
+#: ../../mod/help.php:68 ../../index.php:223
+msgid "Not Found"
+msgstr "Nicht gefunden"
 
-#: ../../mod/editpost.php:53
-msgid "Delete item?"
-msgstr "Eintrag löschen?"
+#: ../../mod/help.php:71 ../../mod/page.php:83 ../../mod/display.php:100
+#: ../../index.php:226
+msgid "Page not found."
+msgstr "Seite nicht gefunden."
 
-#: ../../mod/editpost.php:107 ../../mod/editlayout.php:110
-#: ../../mod/editwebpage.php:148 ../../mod/editblock.php:124
-msgid "Insert YouTube video"
-msgstr "YouTube-Video einfügen"
+#: ../../mod/rmagic.php:56
+msgid "Remote Authentication"
+msgstr "Entfernte Authentifizierung"
 
-#: ../../mod/editpost.php:108 ../../mod/editlayout.php:111
-#: ../../mod/editwebpage.php:149 ../../mod/editblock.php:125
-msgid "Insert Vorbis [.ogg] video"
-msgstr "Vorbis [.ogg]-Video einfügen"
+#: ../../mod/rmagic.php:57
+msgid "Enter your channel address (e.g. channel@example.com)"
+msgstr "Deine Kanal-Adresse (z. B. channel@example.com)"
 
-#: ../../mod/editpost.php:109 ../../mod/editlayout.php:112
-#: ../../mod/editwebpage.php:150 ../../mod/editblock.php:126
-msgid "Insert Vorbis [.ogg] audio"
-msgstr "Vorbis [.ogg]-Audio einfügen"
+#: ../../mod/rmagic.php:58
+msgid "Authenticate"
+msgstr "Authentifizieren"
 
-#: ../../mod/directory.php:143 ../../mod/profiles.php:561
-#: ../../mod/dirprofile.php:98
-msgid "Age: "
-msgstr "Alter:"
+#: ../../mod/page.php:35
+msgid "Invalid item."
+msgstr "Ungültiges Element."
 
-#: ../../mod/directory.php:146 ../../mod/dirprofile.php:101
-msgid "Gender: "
-msgstr "Geschlecht:"
+#: ../../mod/network.php:79
+msgid "No such group"
+msgstr "Gruppe existiert nicht"
 
-#: ../../mod/directory.php:207
-msgid "Finding:"
-msgstr "Ergebnisse:"
+#: ../../mod/network.php:118
+msgid "Search Results For:"
+msgstr "Suchergebnisse für:"
 
-#: ../../mod/directory.php:215
-msgid "next page"
-msgstr "nächste Seite"
+#: ../../mod/network.php:172
+msgid "Collection is empty"
+msgstr "Sammlung ist leer"
 
-#: ../../mod/directory.php:215
-msgid "previous page"
-msgstr "vorige Seite"
+#: ../../mod/network.php:180
+msgid "Collection: "
+msgstr "Sammlung:"
 
-#: ../../mod/directory.php:222
-msgid "No entries (some entries may be hidden)."
-msgstr "Keine Einträge gefunden (einige könnten versteckt sein)."
+#: ../../mod/network.php:193
+msgid "Connection: "
+msgstr "Verbindung:"
 
-#: ../../mod/connedit.php:49 ../../mod/connections.php:37
-msgid "Could not access contact record."
-msgstr "Konnte auf den Kontakteintrag nicht zugreifen."
+#: ../../mod/network.php:196
+msgid "Invalid connection."
+msgstr "Ungültige Verbindung."
 
-#: ../../mod/connedit.php:63 ../../mod/connections.php:51
-msgid "Could not locate selected profile."
-msgstr "Konnte das gewählte Profil nicht finden."
+#: ../../mod/profiles.php:18 ../../mod/profiles.php:138
+#: ../../mod/profiles.php:168 ../../mod/profiles.php:463
+msgid "Profile not found."
+msgstr "Profil nicht gefunden."
 
-#: ../../mod/connedit.php:107 ../../mod/connections.php:94
-msgid "Connection updated."
-msgstr "Verbindung aktualisiert."
+#: ../../mod/profiles.php:38
+msgid "Profile deleted."
+msgstr "Profil gelöscht."
 
-#: ../../mod/connedit.php:109 ../../mod/connections.php:96
-msgid "Failed to update connection record."
-msgstr "Konnte den Verbindungseintrag nicht aktualisieren."
+#: ../../mod/profiles.php:56 ../../mod/profiles.php:92
+msgid "Profile-"
+msgstr "Profil-"
 
-#: ../../mod/connedit.php:204
-msgid "Could not access address book record."
-msgstr "Konnte nicht auf den Eintrag im Adressbuch zugreifen."
+#: ../../mod/profiles.php:77 ../../mod/profiles.php:120
+msgid "New profile created."
+msgstr "Neues Profil erstellt."
 
-#: ../../mod/connedit.php:218
-msgid "Refresh failed - channel is currently unavailable."
-msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar."
+#: ../../mod/profiles.php:98
+msgid "Profile unavailable to clone."
+msgstr "Profil kann nicht geklont werden."
 
-#: ../../mod/connedit.php:225
-msgid "Channel has been unblocked"
-msgstr "Kanal nicht mehr blockiert"
+#: ../../mod/profiles.php:178
+msgid "Profile Name is required."
+msgstr "Profil-Name erforderlich."
 
-#: ../../mod/connedit.php:226
-msgid "Channel has been blocked"
-msgstr "Kanal blockiert"
+#: ../../mod/profiles.php:294
+msgid "Marital Status"
+msgstr "Familienstand"
 
-#: ../../mod/connedit.php:230 ../../mod/connedit.php:242
-#: ../../mod/connedit.php:254 ../../mod/connedit.php:266
-#: ../../mod/connedit.php:281
-msgid "Unable to set address book parameters."
-msgstr "Konnte die Adressbuch Parameter nicht setzen."
+#: ../../mod/profiles.php:298
+msgid "Romantic Partner"
+msgstr "Romantische Partner"
 
-#: ../../mod/connedit.php:237
-msgid "Channel has been unignored"
-msgstr "Kanal wird nicht mehr ignoriert"
+#: ../../mod/profiles.php:302
+msgid "Likes"
+msgstr "Gefällt"
+
+#: ../../mod/profiles.php:306
+msgid "Dislikes"
+msgstr "Gefällt nicht"
+
+#: ../../mod/profiles.php:310
+msgid "Work/Employment"
+msgstr "Arbeit/Anstellung"
+
+#: ../../mod/profiles.php:313
+msgid "Religion"
+msgstr "Religion"
+
+#: ../../mod/profiles.php:317
+msgid "Political Views"
+msgstr "Politische Ansichten"
+
+#: ../../mod/profiles.php:321
+msgid "Gender"
+msgstr "Geschlecht"
 
-#: ../../mod/connedit.php:238
-msgid "Channel has been ignored"
-msgstr "Kanal wird ignoriert"
+#: ../../mod/profiles.php:325
+msgid "Sexual Preference"
+msgstr "Sexuelle Orientierung"
 
-#: ../../mod/connedit.php:249
-msgid "Channel has been unarchived"
-msgstr "Kanal wurde aus dem Archiv zurück geholt"
+#: ../../mod/profiles.php:329
+msgid "Homepage"
+msgstr "Webseite"
 
-#: ../../mod/connedit.php:250
-msgid "Channel has been archived"
-msgstr "Kanal wurde archiviert"
+#: ../../mod/profiles.php:333
+msgid "Interests"
+msgstr "Hobbys/Interessen"
 
-#: ../../mod/connedit.php:261
-msgid "Channel has been unhidden"
-msgstr "Kanal wird nicht mehr versteckt"
+#: ../../mod/profiles.php:337
+msgid "Address"
+msgstr "Adresse"
 
-#: ../../mod/connedit.php:262
-msgid "Channel has been hidden"
-msgstr "Kanal wurde versteckt"
+#: ../../mod/profiles.php:344 ../../mod/pubsites.php:31
+msgid "Location"
+msgstr "Ort"
 
-#: ../../mod/connedit.php:276
-msgid "Channel has been approved"
-msgstr "Kanal wurde zugelassen"
+#: ../../mod/profiles.php:427
+msgid "Profile updated."
+msgstr "Profil aktualisiert."
 
-#: ../../mod/connedit.php:277
-msgid "Channel has been unapproved"
-msgstr "Zulassung des Kanals entfernt"
+#: ../../mod/profiles.php:482
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Deine Kontaktliste vor Betrachtern dieses Profils verbergen?"
 
-#: ../../mod/connedit.php:295
-msgid "Contact has been removed."
-msgstr "Kontakt wurde entfernt."
+#: ../../mod/profiles.php:505
+msgid "Edit Profile Details"
+msgstr "Bearbeite Profil-Details"
 
-#: ../../mod/connedit.php:315
-#, php-format
-msgid "View %s's profile"
-msgstr "%s's Profil ansehen"
+#: ../../mod/profiles.php:507
+msgid "View this profile"
+msgstr "Dieses Profil ansehen"
 
-#: ../../mod/connedit.php:319
-msgid "Refresh Permissions"
-msgstr "Zugriffsrechte auffrischen"
+#: ../../mod/profiles.php:508
+msgid "Change Profile Photo"
+msgstr "Profilfoto ändern"
 
-#: ../../mod/connedit.php:322
-msgid "Fetch updated permissions"
-msgstr "Aktualisierte Zugriffsrechte abfragen"
+#: ../../mod/profiles.php:509
+msgid "Create a new profile using these settings"
+msgstr "Neues Profil anlegen und diese Einstellungen übernehmen"
 
-#: ../../mod/connedit.php:326
-msgid "Recent Activity"
-msgstr "Kürzliche Aktivitäten"
+#: ../../mod/profiles.php:510
+msgid "Clone this profile"
+msgstr "Dieses Profil klonen"
 
-#: ../../mod/connedit.php:329
-msgid "View recent posts and comments"
-msgstr "Betrachte die neuesten Beiträge und Kommentare"
+#: ../../mod/profiles.php:511
+msgid "Delete this profile"
+msgstr "Dieses Profil löschen"
 
-#: ../../mod/connedit.php:336
-msgid "Block or Unblock this connection"
-msgstr "Verbindung blockieren oder frei geben"
+#: ../../mod/profiles.php:512
+msgid "Profile Name:"
+msgstr "Profilname:"
 
-#: ../../mod/connedit.php:340 ../../mod/connedit.php:476
-msgid "Unignore"
-msgstr "Nicht ignorieren"
+#: ../../mod/profiles.php:513
+msgid "Your Full Name:"
+msgstr "Dein voller Name:"
 
-#: ../../mod/connedit.php:340 ../../mod/connedit.php:476
-#: ../../mod/notifications.php:51
-msgid "Ignore"
-msgstr "Ignorieren"
+#: ../../mod/profiles.php:514
+msgid "Title/Description:"
+msgstr "Titel/Stellenbeschreibung:"
 
-#: ../../mod/connedit.php:343
-msgid "Ignore or Unignore this connection"
-msgstr "Verbindung ignorieren oder wieder beachten"
+#: ../../mod/profiles.php:515
+msgid "Your Gender:"
+msgstr "Dein Geschlecht:"
 
-#: ../../mod/connedit.php:346
-msgid "Unarchive"
-msgstr "Aus Archiv zurückholen"
+#: ../../mod/profiles.php:516
+#, php-format
+msgid "Birthday (%s):"
+msgstr "Geburtstag (%s):"
 
-#: ../../mod/connedit.php:346
-msgid "Archive"
-msgstr "Archivieren"
+#: ../../mod/profiles.php:517
+msgid "Street Address:"
+msgstr "Straße und Hausnummer:"
 
-#: ../../mod/connedit.php:349
-msgid "Archive or Unarchive this connection"
-msgstr "Archiviere diese Verbindung oder hole sie aus dem Archiv zurück"
+#: ../../mod/profiles.php:518
+msgid "Locality/City:"
+msgstr "Wohnort:"
 
-#: ../../mod/connedit.php:352
-msgid "Unhide"
-msgstr "aufdecken"
+#: ../../mod/profiles.php:519
+msgid "Postal/Zip Code:"
+msgstr "Postleitzahl:"
 
-#: ../../mod/connedit.php:352
-msgid "Hide"
-msgstr "Verbergen"
+#: ../../mod/profiles.php:520
+msgid "Country:"
+msgstr "Land:"
 
-#: ../../mod/connedit.php:355
-msgid "Hide or Unhide this connection"
-msgstr "Diese Verbindung verstecken oder aufdecken"
+#: ../../mod/profiles.php:521
+msgid "Region/State:"
+msgstr "Region/Bundesstaat:"
 
-#: ../../mod/connedit.php:362
-msgid "Delete this connection"
-msgstr "Verbindung löschen"
+#: ../../mod/profiles.php:522
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
 
-#: ../../mod/connedit.php:395
-msgid "Unknown"
-msgstr "Unbekannt"
+#: ../../mod/profiles.php:523
+msgid "Who: (if applicable)"
+msgstr "Wer: (falls anwendbar)"
 
-#: ../../mod/connedit.php:405 ../../mod/connedit.php:434
-msgid "Approve this connection"
-msgstr "Verbindung genehmigen"
+#: ../../mod/profiles.php:524
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
 
-#: ../../mod/connedit.php:405
-msgid "Accept connection to allow communication"
-msgstr "Aktzeptiere die Verbindung um Kommunikation zu ermöglichen"
+#: ../../mod/profiles.php:525
+msgid "Since [date]:"
+msgstr "Seit [Datum]:"
 
-#: ../../mod/connedit.php:421
-msgid "Automatic Permissions Settings"
-msgstr "Automatische Berechtigungs-Einstellungen"
+#: ../../mod/profiles.php:527
+msgid "Homepage URL:"
+msgstr "Homepage URL:"
 
-#: ../../mod/connedit.php:421
-#, php-format
-msgid "Connections: settings for %s"
-msgstr "Verbindungseinstellungen für %s"
+#: ../../mod/profiles.php:530
+msgid "Religious Views:"
+msgstr "Religiöse Ansichten:"
 
-#: ../../mod/connedit.php:425
-msgid ""
-"When receiving a channel introduction, any permissions provided here will be"
-" applied to the new connection automatically and the introduction approved. "
-"Leave this page if you do not wish to use this feature."
-msgstr "Wenn eine Kanal-Vorstellung empfangen wird, werden die hier getroffenen Einstellungen automatisch angewandt und der Anfrage wird stattgegeben. Verlasse diese Seite, wenn du dieses Feature nicht verwanden möchtest."
+#: ../../mod/profiles.php:531
+msgid "Keywords:"
+msgstr "Schlüsselwörter:"
 
-#: ../../mod/connedit.php:427
-msgid "Slide to adjust your degree of friendship"
-msgstr "Schieben um den Grad der Freundschaft zu wählen"
+#: ../../mod/profiles.php:534
+msgid "Example: fishing photography software"
+msgstr "Beispiel: Angeln Fotografie Software"
 
-#: ../../mod/connedit.php:433
-msgid "inherited"
-msgstr "Geerbt"
+#: ../../mod/profiles.php:535
+msgid "Used in directory listings"
+msgstr "Wird in Verzeichnis-Auflistungen verwendet"
 
-#: ../../mod/connedit.php:435
-msgid "Connection has no individual permissions!"
-msgstr "Diese Verbindung hat keine individuellen Zugriffseinstellungen."
+#: ../../mod/profiles.php:536
+msgid "Tell us about yourself..."
+msgstr "Erzähle uns ein wenig von Dir …"
 
-#: ../../mod/connedit.php:436
-msgid ""
-"This may be appropriate based on your <a href=\"settings\">privacy "
-"settings</a>, though you may wish to review the \"Advanced Permissions\"."
-msgstr "Abhängig von deinen <a href=\"settings\">Privatsphären Einstellungen</a> könnte dies angebracht sein, eventuell solltest du aber die \"Erweiterte Zugriffsrechte\" überprüfen."
+#: ../../mod/profiles.php:537
+msgid "Hobbies/Interests"
+msgstr "Hobbys/Interessen"
 
-#: ../../mod/connedit.php:438
-msgid "Profile Visibility"
-msgstr "Sichtbarkeit des Profils"
+#: ../../mod/profiles.php:538
+msgid "Contact information and Social Networks"
+msgstr "Kontaktinformation und soziale Netzwerke"
 
-#: ../../mod/connedit.php:439
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn deine Profilseite über eine verifizierte Verbindung aufgerufen wird."
+#: ../../mod/profiles.php:539
+msgid "My other channels"
+msgstr "Meine anderen Kanäle"
 
-#: ../../mod/connedit.php:440
-msgid "Contact Information / Notes"
-msgstr "Kontaktinformationen / Notizen"
+#: ../../mod/profiles.php:540
+msgid "Musical interests"
+msgstr "Musikalische Interessen"
 
-#: ../../mod/connedit.php:441
-msgid "Edit contact notes"
-msgstr "Kontaktnotizen editieren"
+#: ../../mod/profiles.php:541
+msgid "Books, literature"
+msgstr "Bücher, Literatur"
 
-#: ../../mod/connedit.php:443
-msgid "Their Settings"
-msgstr "Deren Einstellungen"
+#: ../../mod/profiles.php:542
+msgid "Television"
+msgstr "Fernsehen"
 
-#: ../../mod/connedit.php:444
-msgid "My Settings"
-msgstr "Meine Einstellungen"
+#: ../../mod/profiles.php:543
+msgid "Film/dance/culture/entertainment"
+msgstr "Film/Tanz/Kultur/Unterhaltung"
 
-#: ../../mod/connedit.php:446
-msgid "Forum Members"
-msgstr "Forum Mitglieder"
+#: ../../mod/profiles.php:544
+msgid "Love/romance"
+msgstr "Liebe/Romantik"
 
-#: ../../mod/connedit.php:447
-msgid "Soapbox"
-msgstr "Marktschreier"
+#: ../../mod/profiles.php:545
+msgid "Work/employment"
+msgstr "Arbeit/Anstellung"
 
-#: ../../mod/connedit.php:448
-msgid "Full Sharing (typical social network permissions)"
-msgstr ""
+#: ../../mod/profiles.php:546
+msgid "School/education"
+msgstr "Schule/Ausbildung"
+
+#: ../../mod/profiles.php:551
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Das ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden im Internet sichtbar sein."
 
-#: ../../mod/connedit.php:449
-msgid "Cautious Sharing "
-msgstr ""
+#: ../../mod/profiles.php:600
+msgid "Edit/Manage Profiles"
+msgstr "Bearbeite/Verwalte Profile"
 
-#: ../../mod/connedit.php:450
-msgid "Follow Only"
-msgstr "Nur Folgen"
+#: ../../mod/profiles.php:601
+msgid "Add profile things"
+msgstr "Profil-Dinge hinzufügen"
 
-#: ../../mod/connedit.php:451
-msgid "Individual Permissions"
-msgstr "Individuelle Zugriffseinstellungen"
+#: ../../mod/profiles.php:602
+msgid "Include desirable objects in your profile"
+msgstr "Binde begehrenswerte Dinge in Dein Profil ein"
 
-#: ../../mod/connedit.php:452
+#: ../../mod/follow.php:25
+msgid "Channel added."
+msgstr "Kanal hinzugefügt."
+
+#: ../../mod/post.php:226
 msgid ""
-"Some permissions may be inherited from your channel <a "
-"href=\"settings\">privacy settings</a>, which have higher priority than "
-"individual settings. Changing those inherited settings on this page will "
-"have no effect."
-msgstr ""
+"Remote authentication blocked. You are logged into this site locally. Please"
+" logout and retry."
+msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut."
 
-#: ../../mod/connedit.php:453
-msgid "Advanced Permissions"
-msgstr "Erweiterte Zugriffsrechte"
+#: ../../mod/post.php:256
+#, php-format
+msgid "Welcome %s. Remote authentication successful."
+msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich."
 
-#: ../../mod/connedit.php:454
-msgid "Simple Permissions (select one and submit)"
-msgstr ""
+#: ../../mod/dirsearch.php:21
+msgid "This site is not a directory server"
+msgstr "Diese Website ist kein Verzeichnis-Server"
 
-#: ../../mod/connedit.php:458
-#, php-format
-msgid "Visit %s's profile - %s"
-msgstr "%s's Profil besuchen - %s"
+#: ../../mod/sources.php:32
+msgid "Failed to create source. No channel selected."
+msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt."
 
-#: ../../mod/connedit.php:459
-msgid "Block/Unblock contact"
-msgstr "Geblockt Status ein- / ausschalten"
+#: ../../mod/sources.php:45
+msgid "Source created."
+msgstr "Quelle erstellt."
 
-#: ../../mod/connedit.php:460
-msgid "Ignore contact"
-msgstr "Kontakt ignorieren"
+#: ../../mod/sources.php:57
+msgid "Source updated."
+msgstr "Quelle aktualisiert."
 
-#: ../../mod/connedit.php:461
-msgid "Repair URL settings"
-msgstr "URL Einstellungen reparieren"
+#: ../../mod/sources.php:82
+msgid "*"
+msgstr "*"
 
-#: ../../mod/connedit.php:462
-msgid "View conversations"
-msgstr "Unterhaltungen anzeigen"
+#: ../../mod/sources.php:89
+msgid "Manage remote sources of content for your channel."
+msgstr "Quellen von Inhalten Deines Kanals verwalten."
 
-#: ../../mod/connedit.php:464
-msgid "Delete contact"
-msgstr "Kontakt löschen"
+#: ../../mod/sources.php:90 ../../mod/sources.php:100
+msgid "New Source"
+msgstr "Neue Quelle"
 
-#: ../../mod/connedit.php:467
-msgid "Last update:"
-msgstr "Letzte Aktualisierung:"
+#: ../../mod/sources.php:101 ../../mod/sources.php:133
+msgid ""
+"Import all or selected content from the following channel into this channel "
+"and distribute it according to your channel settings."
+msgstr "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals."
 
-#: ../../mod/connedit.php:469
-msgid "Update public posts"
-msgstr "Öffentliche Beiträge aktualisieren"
+#: ../../mod/sources.php:102 ../../mod/sources.php:134
+msgid "Only import content with these words (one per line)"
+msgstr "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten"
 
-#: ../../mod/connedit.php:471
-msgid "Update now"
-msgstr "Jetzt aktualisieren"
+#: ../../mod/sources.php:102 ../../mod/sources.php:134
+msgid "Leave blank to import all public content"
+msgstr "Leer lassen, um alle öffentlichen Beiträge zu importieren"
 
-#: ../../mod/connedit.php:477
-msgid "Currently blocked"
-msgstr "Derzeit blockiert"
+#: ../../mod/sources.php:103 ../../mod/sources.php:137
+#: ../../mod/new_channel.php:110
+msgid "Channel Name"
+msgstr "Name des Kanals"
 
-#: ../../mod/connedit.php:478
-msgid "Currently ignored"
-msgstr "Derzeit ignoriert"
+#: ../../mod/sources.php:123 ../../mod/sources.php:150
+msgid "Source not found."
+msgstr "Quelle nicht gefunden."
 
-#: ../../mod/connedit.php:479
-msgid "Currently archived"
-msgstr "Derzeit archiviert"
+#: ../../mod/sources.php:130
+msgid "Edit Source"
+msgstr "Quelle bearbeiten"
 
-#: ../../mod/connedit.php:480
-msgid "Currently pending"
-msgstr "Derzeit anstehend"
+#: ../../mod/sources.php:131
+msgid "Delete Source"
+msgstr "Quelle löschen"
 
-#: ../../mod/connedit.php:481
-msgid "Hide this contact from others"
-msgstr "Diese Verbindung vor den anderen verbergen."
+#: ../../mod/sources.php:158
+msgid "Source removed"
+msgstr "Quelle gelöscht"
 
-#: ../../mod/connedit.php:481
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>können</strong> immer noch sichtbar sein"
+#: ../../mod/sources.php:160
+msgid "Unable to remove source."
+msgstr "Konnte die Quelle nicht löschen."
 
-#: ../../mod/layouts.php:52
-msgid "Layout Help"
-msgstr "Layout Hilfe"
+#: ../../mod/lockview.php:34
+msgid "Remote privacy information not available."
+msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar."
 
-#: ../../mod/layouts.php:55
-msgid "Help with this feature"
-msgstr "Hilfe zu diesem Feature"
+#: ../../mod/lockview.php:43
+msgid "Visible to:"
+msgstr "Sichtbar für:"
 
-#: ../../mod/layouts.php:74
-msgid "Layout Name"
-msgstr "Layout Name"
+#: ../../mod/magic.php:70
+msgid "Hub not found."
+msgstr "Server nicht gefunden."
 
-#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55
-msgid "Help:"
-msgstr "Hilfe:"
+#: ../../mod/setup.php:161
+msgid "Red Matrix Server - Setup"
+msgstr "Red Matrix Server - Installation"
 
-#: ../../mod/help.php:68 ../../index.php:223
-msgid "Not Found"
-msgstr "Nicht gefunden"
+#: ../../mod/setup.php:167
+msgid "Could not connect to database."
+msgstr "Kann nicht mit der Datenbank verbinden."
 
-#: ../../mod/help.php:71 ../../mod/page.php:83 ../../mod/display.php:100
-#: ../../index.php:226
-msgid "Page not found."
-msgstr "Seite nicht gefunden."
+#: ../../mod/setup.php:171
+msgid ""
+"Could not connect to specified site URL. Possible SSL certificate or DNS "
+"issue."
+msgstr "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS."
 
-#: ../../mod/rmagic.php:56
-msgid "Remote Authentication"
-msgstr "Entfernte Authentifizierung"
+#: ../../mod/setup.php:176
+msgid "Could not create table."
+msgstr "Kann Tabelle nicht erstellen."
 
-#: ../../mod/rmagic.php:57
-msgid "Enter your channel address (e.g. channel@example.com)"
-msgstr "Deine Kanal-Adresse (z. B. channel@example.com)"
+#: ../../mod/setup.php:182
+msgid "Your site database has been installed."
+msgstr "Die Datenbank Deines Servers wurde installiert."
 
-#: ../../mod/rmagic.php:58
-msgid "Authenticate"
-msgstr "Authentifizieren"
+#: ../../mod/setup.php:187
+msgid ""
+"You may need to import the file \"install/database.sql\" manually using "
+"phpmyadmin or mysql."
+msgstr "Eventuell musst Du die Datei \"install/database.sql\" per Hand mit phpmyadmin oder mysql importieren."
 
-#: ../../mod/page.php:35
-msgid "Invalid item."
-msgstr "Ungültiges Element."
+#: ../../mod/setup.php:188 ../../mod/setup.php:257 ../../mod/setup.php:609
+msgid "Please see the file \"install/INSTALL.txt\"."
+msgstr "Lies die Datei \"install/INSTALL.txt\"."
 
-#: ../../mod/network.php:79
-msgid "No such group"
-msgstr "Gruppe existiert nicht"
+#: ../../mod/setup.php:254
+msgid "System check"
+msgstr "Systemprüfung"
 
-#: ../../mod/network.php:118
-msgid "Search Results For:"
-msgstr "Suchergebnisse für:"
+#: ../../mod/setup.php:259
+msgid "Check again"
+msgstr "Bitte nochmal prüfen"
 
-#: ../../mod/network.php:172
-msgid "Collection is empty"
-msgstr "Sammlung ist leer"
+#: ../../mod/setup.php:281
+msgid "Database connection"
+msgstr "Datenbank Verbindung"
 
-#: ../../mod/network.php:180
-msgid "Collection: "
-msgstr "Sammlung:"
+#: ../../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 eine Verbindung zu Deiner Datenbank aufbauen können."
 
-#: ../../mod/network.php:193
-msgid "Connection: "
-msgstr "Verbindung:"
+#: ../../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 Administrator, falls Du Fragen zu diesen Einstellungen hast."
 
-#: ../../mod/network.php:196
-msgid "Invalid connection."
-msgstr "Ungültige Verbindung."
+#: ../../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/profiles.php:18 ../../mod/profiles.php:138
-#: ../../mod/profiles.php:168 ../../mod/profiles.php:463
-msgid "Profile not found."
-msgstr "Profil nicht gefunden."
+#: ../../mod/setup.php:288
+msgid "Database Server Name"
+msgstr "Datenbank-Servername"
 
-#: ../../mod/profiles.php:38
-msgid "Profile deleted."
-msgstr "Profil gelöscht."
+#: ../../mod/setup.php:288
+msgid "Default is localhost"
+msgstr "Standard ist localhost"
 
-#: ../../mod/profiles.php:56 ../../mod/profiles.php:92
-msgid "Profile-"
-msgstr "Profil-"
+#: ../../mod/setup.php:289
+msgid "Database Port"
+msgstr "Datenbank-Port"
 
-#: ../../mod/profiles.php:77 ../../mod/profiles.php:120
-msgid "New profile created."
-msgstr "Neues Profil erstellt."
+#: ../../mod/setup.php:289
+msgid "Communication port number - use 0 for default"
+msgstr "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung"
+
+#: ../../mod/setup.php:290
+msgid "Database Login Name"
+msgstr "Datenbank-Benutzername"
+
+#: ../../mod/setup.php:291
+msgid "Database Login Password"
+msgstr "Datenbank-Kennwort"
 
-#: ../../mod/profiles.php:98
-msgid "Profile unavailable to clone."
-msgstr "Profil kann nicht geklont werden."
+#: ../../mod/setup.php:292
+msgid "Database Name"
+msgstr "Datenbank-Name"
 
-#: ../../mod/profiles.php:178
-msgid "Profile Name is required."
-msgstr "Profil-Name erforderlich."
+#: ../../mod/setup.php:294 ../../mod/setup.php:336
+msgid "Site administrator email address"
+msgstr "E-Mail Adresse des Seiten-Administrators"
 
-#: ../../mod/profiles.php:294
-msgid "Marital Status"
-msgstr "Familienstand"
+#: ../../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 E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst."
 
-#: ../../mod/profiles.php:298
-msgid "Romantic Partner"
-msgstr "Romantische Partner"
+#: ../../mod/setup.php:295 ../../mod/setup.php:338
+msgid "Website URL"
+msgstr "Server-URL"
 
-#: ../../mod/profiles.php:302
-msgid "Likes"
-msgstr "Gefällt-mir"
+#: ../../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/profiles.php:306
-msgid "Dislikes"
-msgstr "Gefällt-mir-nicht"
+#: ../../mod/setup.php:298 ../../mod/setup.php:341
+msgid "Please select a default timezone for your website"
+msgstr "Standard-Zeitzone für Deinen Server"
 
-#: ../../mod/profiles.php:310
-msgid "Work/Employment"
-msgstr "Arbeit/Anstellung"
+#: ../../mod/setup.php:325
+msgid "Site settings"
+msgstr "Seiteneinstellungen"
 
-#: ../../mod/profiles.php:313
-msgid "Religion"
-msgstr "Religion"
+#: ../../mod/setup.php:384
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden."
 
-#: ../../mod/profiles.php:317
-msgid "Political Views"
-msgstr "Politische Anscihten"
+#: ../../mod/setup.php:385
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run background polling via cron."
+msgstr "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen."
 
-#: ../../mod/profiles.php:321
-msgid "Gender"
-msgstr "Geschlecht"
+#: ../../mod/setup.php:389
+msgid "PHP executable path"
+msgstr "PHP Pfad zu ausführbarer Datei"
 
-#: ../../mod/profiles.php:325
-msgid "Sexual Preference"
-msgstr "Sexuelle Orientierung"
+#: ../../mod/setup.php:389
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren."
 
-#: ../../mod/profiles.php:329
-msgid "Homepage"
-msgstr "Webseite"
+#: ../../mod/setup.php:394
+msgid "Command line PHP"
+msgstr "PHP Befehlszeile"
 
-#: ../../mod/profiles.php:333
-msgid "Interests"
-msgstr "Hobbys/Interessen"
+#: ../../mod/setup.php:403
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert."
 
-#: ../../mod/profiles.php:337
-msgid "Address"
-msgstr "Adresse"
+#: ../../mod/setup.php:404
+msgid "This is required for message delivery to work."
+msgstr "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert."
 
-#: ../../mod/profiles.php:344 ../../mod/pubsites.php:31
-msgid "Location"
-msgstr "Ort"
+#: ../../mod/setup.php:406
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../mod/profiles.php:427
-msgid "Profile updated."
-msgstr "Profil aktualisiert."
+#: ../../mod/setup.php:427
+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/profiles.php:482
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Verberge die Liste deiner Kontakte vor Betrachtern dieses Profils"
+#: ../../mod/setup.php:428
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung."
 
-#: ../../mod/profiles.php:505
-msgid "Edit Profile Details"
-msgstr "Bearbeite Profil-Details"
+#: ../../mod/setup.php:430
+msgid "Generate encryption keys"
+msgstr "Verschlüsselungsschlüssel  generieren"
 
-#: ../../mod/profiles.php:507
-msgid "View this profile"
-msgstr "Dieses Profil ansehen"
+#: ../../mod/setup.php:437
+msgid "libCurl PHP module"
+msgstr "libCurl-PHP-Modul"
 
-#: ../../mod/profiles.php:508
-msgid "Change Profile Photo"
-msgstr "Profilfoto ändern"
+#: ../../mod/setup.php:438
+msgid "GD graphics PHP module"
+msgstr "GD-Grafik-PHP-Modul"
 
-#: ../../mod/profiles.php:509
-msgid "Create a new profile using these settings"
-msgstr "Neues Profil anlegen und diese Einstellungen übernehmen"
+#: ../../mod/setup.php:439
+msgid "OpenSSL PHP module"
+msgstr "OpenSSL-PHP-Modul"
 
-#: ../../mod/profiles.php:510
-msgid "Clone this profile"
-msgstr "Dieses Profil klonen"
+#: ../../mod/setup.php:440
+msgid "mysqli PHP module"
+msgstr "mysqli-PHP-Modul"
 
-#: ../../mod/profiles.php:511
-msgid "Delete this profile"
-msgstr "Dieses Profil löschen"
+#: ../../mod/setup.php:441
+msgid "mb_string PHP module"
+msgstr "mb_string-PHP-Modul"
 
-#: ../../mod/profiles.php:512
-msgid "Profile Name:"
-msgstr "Profilname:"
+#: ../../mod/setup.php:442
+msgid "mcrypt PHP module"
+msgstr "mcrypt-PHP-Modul"
 
-#: ../../mod/profiles.php:513
-msgid "Your Full Name:"
-msgstr "Dein voller Name:"
+#: ../../mod/setup.php:447 ../../mod/setup.php:449
+msgid "Apache mod_rewrite module"
+msgstr "Apache-mod_rewrite-Modul"
 
-#: ../../mod/profiles.php:514
-msgid "Title/Description:"
-msgstr "Titel/Beschreibung:"
+#: ../../mod/setup.php:447
+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/profiles.php:515
-msgid "Your Gender:"
-msgstr "Dein Geschlecht:"
+#: ../../mod/setup.php:453 ../../mod/setup.php:456
+msgid "proc_open"
+msgstr "proc_open"
 
-#: ../../mod/profiles.php:516
-#, php-format
-msgid "Birthday (%s):"
-msgstr "Geburtstag (%s):"
+#: ../../mod/setup.php:453
+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/profiles.php:517
-msgid "Street Address:"
-msgstr "Straße und Hausnummer:"
+#: ../../mod/setup.php:461
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert."
 
-#: ../../mod/profiles.php:518
-msgid "Locality/City:"
-msgstr "Wohnort:"
+#: ../../mod/setup.php:465
+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/profiles.php:519
-msgid "Postal/Zip Code:"
-msgstr "Postleitzahl:"
+#: ../../mod/setup.php:469
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert."
 
-#: ../../mod/profiles.php:520
-msgid "Country:"
-msgstr "Land:"
+#: ../../mod/setup.php:473
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Fehler: Das PHP-Modul mysqli wird benötigt, ist aber nicht installiert."
 
-#: ../../mod/profiles.php:521
-msgid "Region/State:"
-msgstr "Region/Bundesstaat"
+#: ../../mod/setup.php:477
+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/profiles.php:522
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
+#: ../../mod/setup.php:481
+msgid "Error: mcrypt PHP module required but not installed."
+msgstr "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert."
 
-#: ../../mod/profiles.php:523
-msgid "Who: (if applicable)"
-msgstr "Wer: (falls anwendbar)"
+#: ../../mod/setup.php:497
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\""
+" in the top folder of your web server and it is unable to do so."
+msgstr "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht."
 
-#: ../../mod/profiles.php:524
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
+#: ../../mod/setup.php:498
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Rechte Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst."
 
-#: ../../mod/profiles.php:525
-msgid "Since [date]:"
-msgstr "Seit [Datum]:"
+#: ../../mod/setup.php:499
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Red top folder."
+msgstr "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Red-Installation speichern musst."
 
-#: ../../mod/profiles.php:527
-msgid "Homepage URL:"
-msgstr "Homepage URL:"
+#: ../../mod/setup.php:500
+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/profiles.php:530
-msgid "Religious Views:"
-msgstr "Religiöse Ansichten:"
+#: ../../mod/setup.php:503
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php ist beschreibbar"
 
-#: ../../mod/profiles.php:531
-msgid "Keywords:"
-msgstr "Schlüsselwörter:"
+#: ../../mod/setup.php:513
+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/profiles.php:534
-msgid "Example: fishing photography software"
-msgstr "Beispiel: fischen Fotografie Software"
+#: ../../mod/setup.php:514
+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 Schreibzugriff auf das Verzeichnis view/tpl/smarty3/ unterhalb des Red-Stammverzeichnisses haben."
 
-#: ../../mod/profiles.php:535
-msgid "Used in directory listings"
-msgstr "Wird in Verzeichnis Auflistungen verwendet"
+#: ../../mod/setup.php:515 ../../mod/setup.php:533
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Bitte stelle sicher, dass der Nutzer, unter dem der Webserver läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat."
 
-#: ../../mod/profiles.php:536
-msgid "Tell us about yourself..."
-msgstr "Erzähl uns ein wenig von Dir..."
+#: ../../mod/setup.php:516
+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 auf die Vorlagen (.tpl-Dateien) in view/tpl/ ."
 
-#: ../../mod/profiles.php:537
-msgid "Hobbies/Interests"
-msgstr "Hobbys/Interessen"
+#: ../../mod/setup.php:519
+msgid "view/tpl/smarty3 is writable"
+msgstr "view/tpl/smarty3 ist beschreibbar"
 
-#: ../../mod/profiles.php:538
-msgid "Contact information and Social Networks"
-msgstr "Kontaktinformation und soziale Netzwerke"
+#: ../../mod/setup.php:532
+msgid ""
+"Red uses the store directory to save uploaded files. The web server needs to"
+" have write access to the store directory under the Red top level folder"
+msgstr "Red benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses"
 
-#: ../../mod/profiles.php:539
-msgid "My other channels"
-msgstr "Meine anderen Kanäle"
+#: ../../mod/setup.php:536
+msgid "store is writable"
+msgstr "store ist schreibbar"
 
-#: ../../mod/profiles.php:540
-msgid "Musical interests"
-msgstr "Musikalische Interessen"
+#: ../../mod/setup.php:551
+msgid "SSL certificate validation"
+msgstr "SSL Zertifikatverifizierung"
 
-#: ../../mod/profiles.php:541
-msgid "Books, literature"
-msgstr "Bücher, Literatur"
+#: ../../mod/setup.php:551
+msgid ""
+"SSL certificate cannot be validated. Fix certificate or disable https access"
+" to this site."
+msgstr "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server."
 
-#: ../../mod/profiles.php:542
-msgid "Television"
-msgstr "Fernsehen"
+#: ../../mod/setup.php:558
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "URL rewrite via .htaccess funktioniert nicht. Überprüfe Deine Server-Konfiguration."
 
-#: ../../mod/profiles.php:543
-msgid "Film/dance/culture/entertainment"
-msgstr "Film/Tanz/Kultur/Unterhaltung"
+#: ../../mod/setup.php:560
+msgid "Url rewrite is working"
+msgstr "Url rewrite funktioniert"
 
-#: ../../mod/profiles.php:544
-msgid "Love/romance"
-msgstr "Liebe/Romantik"
+#: ../../mod/setup.php:570
+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/profiles.php:545
-msgid "Work/employment"
-msgstr "Arbeit/Anstellung"
+#: ../../mod/setup.php:594
+msgid "Errors encountered creating database tables."
+msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten."
 
-#: ../../mod/profiles.php:546
-msgid "School/education"
-msgstr "Schule/Ausbildung"
+#: ../../mod/setup.php:607
+msgid "<h1>What next</h1>"
+msgstr "<h1>Was als Nächstes</h1>"
 
-#: ../../mod/profiles.php:551
+#: ../../mod/setup.php:608
 msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"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."
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten."
 
-#: ../../mod/profiles.php:600
-msgid "Edit/Manage Profiles"
-msgstr "Bearbeite/Verwalte Profile"
+#: ../../mod/siteinfo.php:57
+#, php-format
+msgid "Version %s"
+msgstr "Version %s"
 
-#: ../../mod/profiles.php:601
-msgid "Add profile things"
-msgstr "Profil-Dinge hinzufügen"
+#: ../../mod/siteinfo.php:76
+msgid "Installed plugins/addons/apps:"
+msgstr "Installierte Plugins/Addons/Apps"
 
-#: ../../mod/profiles.php:602
-msgid "Include desirable objects in your profile"
-msgstr "binde begehrenswerte Dinge in dein Profil ein"
+#: ../../mod/siteinfo.php:89
+msgid "No installed plugins/addons/apps"
+msgstr "Keine installierten Plugins/Addons/Apps"
 
-#: ../../mod/follow.php:25
-msgid "Channel added."
-msgstr "Kanal hinzugefügt."
+#: ../../mod/siteinfo.php:93
+msgid "Project Donations"
+msgstr "Projekt Spenden"
 
-#: ../../mod/post.php:226
+#: ../../mod/siteinfo.php:94
 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."
+"<p>The Red Matrix is provided for you by volunteers working in their spare "
+"time. Your support will help us to build a better web. Select the following "
+"option for a one-time donation of your choosing</p>"
+msgstr ""
 
-#: ../../mod/post.php:256
-#, php-format
-msgid "Welcome %s. Remote authentication successful."
-msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich."
+#: ../../mod/siteinfo.php:95
+msgid "<p>or</p>"
+msgstr "<p>oder</p>"
 
-#: ../../mod/dirsearch.php:21
-msgid "This site is not a directory server"
-msgstr "Diese Website ist kein Verzeichnis-Server"
+#: ../../mod/siteinfo.php:96
+msgid "Recurring Donation Options"
+msgstr ""
 
-#: ../../mod/sources.php:32
-msgid "Failed to create source. No channel selected."
-msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt."
+#: ../../mod/siteinfo.php:115
+msgid "Red"
+msgstr "Red"
 
-#: ../../mod/sources.php:45
-msgid "Source created."
-msgstr "Quelle erstellt."
+#: ../../mod/siteinfo.php:116
+msgid ""
+"This is a hub of the Red Matrix - a global cooperative network of "
+"decentralised privacy enhanced websites."
+msgstr "Dieser Server ist Teil der Red-Matrix – einem global vernetzten Verbund aus dezentralen Websites mit Rücksicht auf die Privatsphäre."
 
-#: ../../mod/sources.php:57
-msgid "Source updated."
-msgstr "Quelle aktualisiert."
+#: ../../mod/siteinfo.php:119
+msgid "Running at web location"
+msgstr "Erreichbar unter der Web-Adresse"
 
-#: ../../mod/sources.php:82
-msgid "*"
-msgstr "*"
+#: ../../mod/siteinfo.php:120
+msgid ""
+"Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more "
+"about the Red Matrix."
+msgstr "Besuche <a href=\"http://getzot.com\">GetZot.com</a>, um mehr über die Red-Matrix zu erfahren."
 
-#: ../../mod/sources.php:89
-msgid "Manage remote sources of content for your channel."
-msgstr "Entfernte Quellen von Inhalten deines Kanals verwalten."
+#: ../../mod/siteinfo.php:121
+msgid "Bug reports and issues: please visit"
+msgstr "Probleme oder Fehler gefunden? Bitte besuche"
 
-#: ../../mod/sources.php:90 ../../mod/sources.php:100
-msgid "New Source"
-msgstr "Neue Quelle"
+#: ../../mod/siteinfo.php:124
+msgid ""
+"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot "
+"com"
+msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"
 
-#: ../../mod/sources.php:101 ../../mod/sources.php:133
+#: ../../mod/siteinfo.php:126
+msgid "Site Administrators"
+msgstr "Administratoren"
+
+#: ../../mod/new_channel.php:107
+msgid "Add a Channel"
+msgstr "Kanal hinzufügen"
+
+#: ../../mod/new_channel.php:108
 msgid ""
-"Import all or selected content from the following channel into this channel "
-"and distribute it according to your channel settings."
-msgstr "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals."
+"A channel is your own collection of related web pages. A channel can be used"
+" to hold social network profiles, blogs, conversation groups and forums, "
+"celebrity pages, and much more. You may create as many channels as your "
+"service provider allows."
+msgstr "Ein Kanal ist Deine eigene Sammlung von verbundenen Webseiten. Ein Kanal kann genutzt werden, um ein Social-Network-Profil, ein Blog, eine Gesprächsgruppe oder ein Forum, Promi-Seiten und vieles mehr zu erstellen. Du kannst so viele Kanäle erstellen, wie es der Betreiber Deiner Seite zulässt."
 
-#: ../../mod/sources.php:102 ../../mod/sources.php:134
-msgid "Only import content with these words (one per line)"
-msgstr "Importiere ausschließlich Beiträge, die folgende Wörter (eines pro Zeile) enthalten"
+#: ../../mod/new_channel.php:111
+msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "
+msgstr "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ "
 
-#: ../../mod/sources.php:102 ../../mod/sources.php:134
-msgid "Leave blank to import all public content"
-msgstr "Leer lassen um alle öffentlichen Beiträge zu importieren"
+#: ../../mod/new_channel.php:112
+msgid "Choose a short nickname"
+msgstr "Wähle einen kurzen Spitznamen"
 
-#: ../../mod/sources.php:103 ../../mod/sources.php:137
-#: ../../mod/new_channel.php:110
-msgid "Channel Name"
-msgstr "Name des Kanals"
+#: ../../mod/new_channel.php:113
+msgid ""
+"Your nickname will be used to create an easily remembered channel address "
+"(like an email address) which you can share with others."
+msgstr "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst."
 
-#: ../../mod/sources.php:123 ../../mod/sources.php:150
-msgid "Source not found."
-msgstr "Quelle nicht gefunden."
+#: ../../mod/new_channel.php:114
+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 Server"
 
-#: ../../mod/sources.php:130
-msgid "Edit Source"
-msgstr "Quelle bearbeiten"
+#: ../../mod/lostpass.php:15
+msgid "No valid account found."
+msgstr "Kein gültiges Konto gefunden."
 
-#: ../../mod/sources.php:131
-msgid "Delete Source"
-msgstr "Quelle löschen"
+#: ../../mod/lostpass.php:29
+msgid "Password reset request issued. Check your email."
+msgstr "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails."
 
-#: ../../mod/sources.php:158
-msgid "Source removed"
-msgstr "Quelle gelöscht"
+#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102
+#, php-format
+msgid "Site Member (%s)"
+msgstr "Nutzer (%s)"
 
-#: ../../mod/sources.php:160
-msgid "Unable to remove source."
-msgstr "Konnte die Quelle nicht löschen."
+#: ../../mod/lostpass.php:40
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Passwort-Rücksetzung auf %s angefordert"
 
-#: ../../mod/lockview.php:34
-msgid "Remote privacy information not available."
-msgstr "Entfernte Privatsphären Einstellungen sind nicht verfügbar."
+#: ../../mod/lostpass.php:63
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen."
 
-#: ../../mod/lockview.php:43
-msgid "Visible to:"
-msgstr "Sichtbar für:"
+#: ../../mod/lostpass.php:85 ../../boot.php:1434
+msgid "Password Reset"
+msgstr "Zurücksetzen des Kennworts"
 
-#: ../../mod/magic.php:70
-msgid "Hub not found."
-msgstr "Server nicht gefunden."
+#: ../../mod/lostpass.php:86
+msgid "Your password has been reset as requested."
+msgstr "Dein Passwort wurde wie angefordert neu erstellt."
 
-#: ../../mod/setup.php:161
-msgid "Red Matrix Server - Setup"
-msgstr "Red Matrix Server - Installation"
+#: ../../mod/lostpass.php:87
+msgid "Your new password is"
+msgstr "Dein neues Passwort lautet"
 
-#: ../../mod/setup.php:167
-msgid "Could not connect to database."
-msgstr "Kann nicht mit der Datenbank verbinden."
+#: ../../mod/lostpass.php:88
+msgid "Save or copy your new password - and then"
+msgstr "Speichere oder kopiere Dein neues Passwort – und dann"
 
-#: ../../mod/setup.php:171
+#: ../../mod/lostpass.php:89
+msgid "click here to login"
+msgstr "Klicke hier, um dich anzumelden"
+
+#: ../../mod/lostpass.php:90
 msgid ""
-"Could not connect to specified site URL. Possible SSL certificate or DNS "
-"issue."
-msgstr "Konnte die angegebene Webseiten URL nicht erreichen. Möglicherweise ein Problem mit dem SSL Zertifikat oder dem DNS."
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Dein Passwort kann unter <em>Einstellungen</em> nach einer erfolgreichen Anmeldung geändert werden."
 
-#: ../../mod/setup.php:176
-msgid "Could not create table."
-msgstr "Kann Tabelle nicht erstellen."
+#: ../../mod/lostpass.php:107
+#, php-format
+msgid "Your password has changed at %s"
+msgstr "Auf %s wurde Dein Passwort geändert"
 
-#: ../../mod/setup.php:182
-msgid "Your site database has been installed."
-msgstr "Die Datenbank deiner Seite wurde installiert."
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
+msgstr "Kennwort vergessen?"
 
-#: ../../mod/setup.php:187
+#: ../../mod/lostpass.php:123
 msgid ""
-"You may need to import the file \"install/database.sql\" manually using "
-"phpmyadmin or mysql."
-msgstr "Eventuell musst du die Datei \"install/database.sql\" händisch mit phpmyadmin oder mysql importieren."
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail."
+
+#: ../../mod/lostpass.php:124
+msgid "Email Address"
+msgstr "E-Mail Adresse"
+
+#: ../../mod/lostpass.php:125
+msgid "Reset"
+msgstr "Zurücksetzen"
 
-#: ../../mod/setup.php:188 ../../mod/setup.php:257 ../../mod/setup.php:609
-msgid "Please see the file \"install/INSTALL.txt\"."
-msgstr "Lies die Datei \"install/INSTALL.txt\"."
+#: ../../mod/settings.php:71
+msgid "Name is required"
+msgstr "Name ist erforderlich"
 
-#: ../../mod/setup.php:254
-msgid "System check"
-msgstr "Systemprüfung"
+#: ../../mod/settings.php:75
+msgid "Key and Secret are required"
+msgstr "Schlüssel und Geheimnis werden benötigt"
 
-#: ../../mod/setup.php:259
-msgid "Check again"
-msgstr "Bitte nochmal prüfen"
+#: ../../mod/settings.php:79 ../../mod/settings.php:542
+msgid "Update"
+msgstr "Aktualisieren"
 
-#: ../../mod/setup.php:281
-msgid "Database connection"
-msgstr "Datenbank Verbindung"
+#: ../../mod/settings.php:195
+msgid "Passwords do not match. Password unchanged."
+msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert."
 
-#: ../../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/settings.php:199
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert."
 
-#: ../../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/settings.php:212
+msgid "Password changed."
+msgstr "Kennwort geändert."
 
-#: ../../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/settings.php:214
+msgid "Password update failed. Please try again."
+msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal."
 
-#: ../../mod/setup.php:288
-msgid "Database Server Name"
-msgstr "Datenbank-Servername"
+#: ../../mod/settings.php:228
+msgid "Not valid email."
+msgstr "Keine gültige E-Mail Adresse."
 
-#: ../../mod/setup.php:288
-msgid "Default is localhost"
-msgstr "Standard ist localhost"
+#: ../../mod/settings.php:231
+msgid "Protected email address. Cannot change to that email."
+msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden."
 
-#: ../../mod/setup.php:289
-msgid "Database Port"
-msgstr "Datenbank-Port"
+#: ../../mod/settings.php:240
+msgid "System failure storing new email. Please try again."
+msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal."
 
-#: ../../mod/setup.php:289
-msgid "Communication port number - use 0 for default"
-msgstr "Port Nummer zur Kommunikation - verwende 0 für die Standardeinstellung:"
+#: ../../mod/settings.php:444
+msgid "Settings updated."
+msgstr "Einstellungen aktualisiert."
 
-#: ../../mod/setup.php:290
-msgid "Database Login Name"
-msgstr "Datenbank-Benutzername"
+#: ../../mod/settings.php:515 ../../mod/settings.php:541
+#: ../../mod/settings.php:577
+msgid "Add application"
+msgstr "Anwendung hinzufügen"
 
-#: ../../mod/setup.php:291
-msgid "Database Login Password"
-msgstr "Datenbank-Kennwort"
+#: ../../mod/settings.php:518 ../../mod/settings.php:544
+msgid "Name"
+msgstr "Name"
 
-#: ../../mod/setup.php:292
-msgid "Database Name"
-msgstr "Datenbank-Name"
+#: ../../mod/settings.php:518
+msgid "Name of application"
+msgstr "Name der Anwendung"
 
-#: ../../mod/setup.php:294 ../../mod/setup.php:336
-msgid "Site administrator email address"
-msgstr "E-Mail Adresse des Seiten-Administrators"
+#: ../../mod/settings.php:519 ../../mod/settings.php:545
+msgid "Consumer Key"
+msgstr "Consumer Key"
 
-#: ../../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/settings.php:519 ../../mod/settings.php:520
+msgid "Automatically generated - change if desired. Max length 20"
+msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20"
 
-#: ../../mod/setup.php:295 ../../mod/setup.php:338
-msgid "Website URL"
-msgstr "Webseiten URL"
+#: ../../mod/settings.php:520 ../../mod/settings.php:546
+msgid "Consumer Secret"
+msgstr "Consumer Secret"
 
-#: ../../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/settings.php:521 ../../mod/settings.php:547
+msgid "Redirect"
+msgstr "Umleitung"
 
-#: ../../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/settings.php:521
+msgid ""
+"Redirect URI - leave blank unless your application specifically requires "
+"this"
+msgstr "Umleitungs-URl – lasse das leer, wenn Deine Anwendung es nicht explizit erfordert"
 
-#: ../../mod/setup.php:325
-msgid "Site settings"
-msgstr "Seiteneinstellungen"
+#: ../../mod/settings.php:522 ../../mod/settings.php:548
+msgid "Icon url"
+msgstr "Symbol-URL"
 
-#: ../../mod/setup.php:384
-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/settings.php:522
+msgid "Optional"
+msgstr "Optional"
 
-#: ../../mod/setup.php:385
-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/settings.php:533
+msgid "You can't edit this application."
+msgstr "Diese Anwendung kann nicht bearbeitet werden."
 
-#: ../../mod/setup.php:389
-msgid "PHP executable path"
-msgstr "PHP Pfad zu ausführbarer Datei"
+#: ../../mod/settings.php:576
+msgid "Connected Apps"
+msgstr "Verbundene Apps"
 
-#: ../../mod/setup.php:389
-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/settings.php:580
+msgid "Client key starts with"
+msgstr "Client key beginnt mit"
 
-#: ../../mod/setup.php:394
-msgid "Command line PHP"
-msgstr "PHP Befehlszeile"
+#: ../../mod/settings.php:581
+msgid "No name"
+msgstr "Kein Name"
 
-#: ../../mod/setup.php:403
-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/settings.php:582
+msgid "Remove authorization"
+msgstr "Authorisierung aufheben"
 
-#: ../../mod/setup.php:404
-msgid "This is required for message delivery to work."
-msgstr "Dies wird benötigt, damit die Auslieferung von Nachrichten funktioniert."
+#: ../../mod/settings.php:593
+msgid "No feature settings configured"
+msgstr "Keine Funktions-Einstellungen konfiguriert"
 
-#: ../../mod/setup.php:406
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../mod/settings.php:601
+msgid "Feature Settings"
+msgstr "Funktions-Einstellungen"
 
-#: ../../mod/setup.php:427
-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/settings.php:624
+msgid "Account Settings"
+msgstr "Konto-Einstellungen"
 
-#: ../../mod/setup.php:428
-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/settings.php:625
+msgid "Password Settings"
+msgstr "Kennwort-Einstellungen"
 
-#: ../../mod/setup.php:430
-msgid "Generate encryption keys"
-msgstr "Verschlüsselungsschlüssel  generieren"
+#: ../../mod/settings.php:626
+msgid "New Password:"
+msgstr "Neues Passwort:"
 
-#: ../../mod/setup.php:437
-msgid "libCurl PHP module"
-msgstr "libCurl PHP Modul"
+#: ../../mod/settings.php:627
+msgid "Confirm:"
+msgstr "Bestätigen:"
 
-#: ../../mod/setup.php:438
-msgid "GD graphics PHP module"
-msgstr "GD Graphik PHP Modul"
+#: ../../mod/settings.php:627
+msgid "Leave password fields blank unless changing"
+msgstr "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern"
 
-#: ../../mod/setup.php:439
-msgid "OpenSSL PHP module"
-msgstr "OpenSSL PHP Modul"
+#: ../../mod/settings.php:629 ../../mod/settings.php:925
+msgid "Email Address:"
+msgstr "Email Adresse:"
 
-#: ../../mod/setup.php:440
-msgid "mysqli PHP module"
-msgstr "mysqli PHP Modul"
+#: ../../mod/settings.php:630
+msgid "Remove Account"
+msgstr "Konto entfernen"
 
-#: ../../mod/setup.php:441
-msgid "mb_string PHP module"
-msgstr "mb_string PHP Modul"
+#: ../../mod/settings.php:631
+msgid "Warning: This action is permanent and cannot be reversed."
+msgstr "Achtung: Diese Aktion ist endgültig und kann nicht rückgängig gemacht werden."
 
-#: ../../mod/setup.php:442
-msgid "mcrypt PHP module"
-msgstr "mcrypt PHP Modul"
+#: ../../mod/settings.php:647
+msgid "Off"
+msgstr "Aus"
 
-#: ../../mod/setup.php:447 ../../mod/setup.php:449
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite Modul"
+#: ../../mod/settings.php:647
+msgid "On"
+msgstr "An"
 
-#: ../../mod/setup.php:447
-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/settings.php:654
+msgid "Additional Features"
+msgstr "Zusätzliche Funktionen"
 
-#: ../../mod/setup.php:453 ../../mod/setup.php:456
-msgid "proc_open"
-msgstr "proc_open"
+#: ../../mod/settings.php:679
+msgid "Connector Settings"
+msgstr "Connector-Einstellungen"
 
-#: ../../mod/setup.php:453
-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/settings.php:750
+msgid "Display Settings"
+msgstr "Anzeige-Einstellungen"
 
-#: ../../mod/setup.php:461
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Fehler: das PHP Modul libCURL wird benütigt ist aber nicht installiert."
+#: ../../mod/settings.php:756
+msgid "Display Theme:"
+msgstr "Anzeige-Theme:"
 
-#: ../../mod/setup.php:465
-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/settings.php:757
+msgid "Mobile Theme:"
+msgstr "Mobile Theme:"
 
-#: ../../mod/setup.php:469
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Fehler: das OpenSSL PHP Modul wird benötigt ist aber nicht installiert."
+#: ../../mod/settings.php:758
+msgid "Update browser every xx seconds"
+msgstr "Browser alle xx Sekunden aktualisieren"
 
-#: ../../mod/setup.php:473
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Fehler: das PHP Modul mysqli wird benötigt ist aber nicht installiert."
+#: ../../mod/settings.php:758
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Minimum 10 Sekunden, kein Maximum"
 
-#: ../../mod/setup.php:477
-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/settings.php:759
+msgid "Maximum number of conversations to load at any time:"
+msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:"
 
-#: ../../mod/setup.php:481
-msgid "Error: mcrypt PHP module required but not installed."
-msgstr "Fehler: das PHP Modul mcrypt wird benötigt ist aber nicht installiert."
+#: ../../mod/settings.php:759
+msgid "Maximum of 100 items"
+msgstr "Maximum: 100 Beiträge"
 
-#: ../../mod/setup.php:497
-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/settings.php:760
+msgid "Don't show emoticons"
+msgstr "Emoticons nicht zeigen"
 
-#: ../../mod/setup.php:498
-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/settings.php:761
+msgid "View remote profiles as webpages"
+msgstr ""
 
-#: ../../mod/setup.php:499
-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/settings.php:761
+msgid "By default open in a sub-window of your own site"
+msgstr ""
 
-#: ../../mod/setup.php:500
-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/settings.php:796
+msgid "Nobody except yourself"
+msgstr "Niemand außer Dir selbst"
 
-#: ../../mod/setup.php:503
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php ist beschreibbar"
+#: ../../mod/settings.php:797
+msgid "Only those you specifically allow"
+msgstr "Nur die, denen Du es explizit erlaubst"
 
-#: ../../mod/setup.php:513
-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/settings.php:798
+msgid "Anybody in your address book"
+msgstr "Jeder aus Ihrem Adressbuch"
 
-#: ../../mod/setup.php:514
-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/settings.php:799
+msgid "Anybody on this website"
+msgstr "Jeder auf dieser Website"
 
-#: ../../mod/setup.php:515 ../../mod/setup.php:533
-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/settings.php:800
+msgid "Anybody in this network"
+msgstr "Jeder in diesem Netzwerk"
 
-#: ../../mod/setup.php:516
-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/settings.php:801
+msgid "Anybody on the internet"
+msgstr "Jeder im Internet"
 
-#: ../../mod/setup.php:519
-msgid "view/tpl/smarty3 is writable"
-msgstr "view/tpl/smarty3 ist beschreibbar"
+#: ../../mod/settings.php:878
+msgid "Publish your default profile in the network directory"
+msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen"
 
-#: ../../mod/setup.php:532
-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/settings.php:883
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
 
-#: ../../mod/setup.php:536
-msgid "store is writable"
-msgstr "store ist schreibbar"
+#: ../../mod/settings.php:887 ../../mod/profile_photo.php:288
+msgid "or"
+msgstr "oder"
 
-#: ../../mod/setup.php:551
-msgid "SSL certificate validation"
-msgstr "SSL Zertifikatverifizierung"
+#: ../../mod/settings.php:892
+msgid "Your channel address is"
+msgstr "Deine Kanal-Adresse lautet"
 
-#: ../../mod/setup.php:551
-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/settings.php:914
+msgid "Channel Settings"
+msgstr "Kanal-Einstellungen"
 
-#: ../../mod/setup.php:558
-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/settings.php:923
+msgid "Basic Settings"
+msgstr "Grundeinstellungen"
 
-#: ../../mod/setup.php:560
-msgid "Url rewrite is working"
-msgstr "Url rewrite funktioniert"
+#: ../../mod/settings.php:926
+msgid "Your Timezone:"
+msgstr "Ihre Zeitzone:"
 
-#: ../../mod/setup.php:570
-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/settings.php:927
+msgid "Default Post Location:"
+msgstr "Standardstandort:"
 
-#: ../../mod/setup.php:594
-msgid "Errors encountered creating database tables."
-msgstr "Fehler während des Anlegens der Datenbank Tabellen aufgetreten."
+#: ../../mod/settings.php:928
+msgid "Use Browser Location:"
+msgstr "Standort des Browsers verwenden:"
 
-#: ../../mod/setup.php:607
-msgid "<h1>What next</h1>"
-msgstr "<h1>Was als Nächstes</h1>"
+#: ../../mod/settings.php:930
+msgid "Adult Content"
+msgstr "Nicht jugendfreie Inhalte"
 
-#: ../../mod/setup.php:608
+#: ../../mod/settings.php:930
 msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "WICHTIG: Du musst die geplanten Aufgaben für den Poller [manuell] einrichten."
+"This channel frequently or regularly publishes adult content. (Please tag "
+"any adult material and/or nudity with #NSFW)"
+msgstr "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)"
 
-#: ../../mod/siteinfo.php:57
-#, php-format
-msgid "Version %s"
-msgstr "Version %s"
+#: ../../mod/settings.php:932
+msgid "Security and Privacy Settings"
+msgstr "Sicherheits- und Datenschutz-Einstellungen"
 
-#: ../../mod/siteinfo.php:76
-msgid "Installed plugins/addons/apps:"
-msgstr "Installierte Plugins/Addons/Apps"
+#: ../../mod/settings.php:934
+msgid "Hide my online presence"
+msgstr "Meine Online-Präsenz verbergen"
 
-#: ../../mod/siteinfo.php:89
-msgid "No installed plugins/addons/apps"
-msgstr "Keine installierten Plugins/Addons/Apps"
+#: ../../mod/settings.php:934
+msgid "Prevents displaying in your profile that you are online"
+msgstr "Verhindert die Anzeige Deines Online-Status in deinem Profil"
 
-#: ../../mod/siteinfo.php:109
-msgid "Red"
-msgstr "Red"
+#: ../../mod/settings.php:936
+msgid "Simple Privacy Settings:"
+msgstr "Einfache Privatsphäre-Einstellungen"
 
-#: ../../mod/siteinfo.php:110
+#: ../../mod/settings.php:937
 msgid ""
-"This is a hub of the Red Matrix - a global cooperative network of "
-"decentralised privacy enhanced websites."
-msgstr "Dieser Server ist Teil der Red-Matrix – einem global vernetzten Verbund aus dezentralen Websites mit Rücksicht auf die Privatsphäre."
-
-#: ../../mod/siteinfo.php:113
-msgid "Running at web location"
-msgstr "Erreichbar unter der Web-Adresse"
+"Very Public - <em>extremely permissive (should be used with caution)</em>"
+msgstr "Komplett offen – <em>extrem ungeschützt (mit großer Vorsicht verwenden!)</em>"
 
-#: ../../mod/siteinfo.php:114
+#: ../../mod/settings.php:938
 msgid ""
-"Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more "
-"about the Red Matrix."
-msgstr "Besuche <a href=\"http://getzot.com\">GetZot.com</a> um mehr über die Red Matrix zu erfahren."
+"Typical - <em>default public, privacy when desired (similar to social "
+"network permissions but with improved privacy)</em>"
+msgstr "Typisch – <em>Default öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)</em>"
 
-#: ../../mod/siteinfo.php:115
-msgid "Bug reports and issues: please visit"
-msgstr "Probleme oder Fehler gefunden? Bitte besuche"
+#: ../../mod/settings.php:939
+msgid "Private - <em>default private, never open or public</em>"
+msgstr "Private – <em>Default privat, nie offen oder öffentlich</em>"
 
-#: ../../mod/siteinfo.php:118
-msgid ""
-"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot "
-"com"
-msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"
+#: ../../mod/settings.php:940
+msgid "Blocked - <em>default blocked to/from everybody</em>"
+msgstr "Blockiert – <em>Alle per Default blockiert</em>"
 
-#: ../../mod/siteinfo.php:120
-msgid "Site Administrators"
-msgstr "Administratoren"
+#: ../../mod/settings.php:943
+msgid "Advanced Privacy Settings"
+msgstr "Fortgeschrittene Privatsphäre-Einstellungen"
 
-#: ../../mod/new_channel.php:107
-msgid "Add a Channel"
-msgstr "Kanal hinzufügen"
+#: ../../mod/settings.php:945
+msgid "Maximum Friend Requests/Day:"
+msgstr "Maximale Kontaktanfragen pro Tag:"
 
-#: ../../mod/new_channel.php:108
-msgid ""
-"A channel is your own collection of related web pages. A channel can be used"
-" to hold social network profiles, blogs, conversation groups and forums, "
-"celebrity pages, and much more. You may create as many channels as your "
-"service provider allows."
-msgstr "Ein Kanal ist deine eigene Sammlung von verbundenen Webseiten. Ein Kanal kann genutzt werden, um 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."
+#: ../../mod/settings.php:945
+msgid "May reduce spam activity"
+msgstr "Kann die Spam-Aktivität verringern"
 
-#: ../../mod/new_channel.php:111
-msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "
-msgstr "Beispiele: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "
+#: ../../mod/settings.php:946
+msgid "Default Post Permissions"
+msgstr "Standardeinstellungen für Beitrags-Zugriffsrechte"
 
-#: ../../mod/new_channel.php:112
-msgid "Choose a short nickname"
-msgstr "Wähle einen kurzen Spitznahmen"
+#: ../../mod/settings.php:958
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:"
 
-#: ../../mod/new_channel.php:113
-msgid ""
-"Your nickname will be used to create an easily remembered channel address "
-"(like an email address) which you can share with others."
-msgstr "Dein Spitzname wird verwendet, um eine einfach zu erinnernde Kanal-Adresse (ähnlich einer E-Mail Adresse) zu erzeugen, die Du mit anderen austauschen kannst."
+#: ../../mod/settings.php:958
+msgid "Useful to reduce spamming"
+msgstr "Nützlich, um Spam zu verringern"
 
-#: ../../mod/new_channel.php:114
-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/settings.php:961
+msgid "Notification Settings"
+msgstr "Benachrichtigungs-Einstellungen"
 
-#: ../../mod/lostpass.php:15
-msgid "No valid account found."
-msgstr "Kein gültiges Konto gefunden."
+#: ../../mod/settings.php:962
+msgid "By default post a status message when:"
+msgstr "Sende standardmäßig Status-Nachrichten, wenn:"
 
-#: ../../mod/lostpass.php:29
-msgid "Password reset request issued. Check your email."
-msgstr "Zurücksetzen des Passworts veranlasst. Rufe bitte Deine E-Mails ab."
+#: ../../mod/settings.php:963
+msgid "accepting a friend request"
+msgstr "Du eine Kontaktanfrage annimmst"
 
-#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102
-#, php-format
-msgid "Site Member (%s)"
-msgstr "Seiten Mitglied (%s)"
+#: ../../mod/settings.php:964
+msgid "joining a forum/community"
+msgstr "Du einem Forum beitrittst"
 
-#: ../../mod/lostpass.php:40
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Passwort Rücksetzung auf %s angefordert"
+#: ../../mod/settings.php:965
+msgid "making an <em>interesting</em> profile change"
+msgstr "Du eine <em>interessante</em> Änderung an Deinem Profil vornimmst"
 
-#: ../../mod/lostpass.php:63
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Die Anfrage konnte nicht verifiziert werden. (Es könnte sein, dass du vorher bereits eine Anfrage eingereicht hast.) Passwort Anforderung fehlgeschlagen."
+#: ../../mod/settings.php:966
+msgid "Send a notification email when:"
+msgstr "Eine E-Mail-Benachrichtigung senden, wenn:"
 
-#: ../../mod/lostpass.php:85 ../../boot.php:1434
-msgid "Password Reset"
-msgstr "Zurücksetzen des Kennworts"
+#: ../../mod/settings.php:967
+msgid "You receive an introduction"
+msgstr "Du eine Vorstellung erhältst"
 
-#: ../../mod/lostpass.php:86
-msgid "Your password has been reset as requested."
-msgstr "Dein Passwort wurde wie angefordert neu erstellt."
+#: ../../mod/settings.php:968
+msgid "Your introductions are confirmed"
+msgstr "Deine Vorstellung bestätigt wurde."
 
-#: ../../mod/lostpass.php:87
-msgid "Your new password is"
-msgstr "Dein neues Passwort lautet"
+#: ../../mod/settings.php:969
+msgid "Someone writes on your profile wall"
+msgstr "Jemand auf Deine Pinnwand schreibt"
 
-#: ../../mod/lostpass.php:88
-msgid "Save or copy your new password - and then"
-msgstr "Speichere oder kopiere dein neues Passwort - und dann"
+#: ../../mod/settings.php:970
+msgid "Someone writes a followup comment"
+msgstr "Jemand einen Beitrag kommentiert"
 
-#: ../../mod/lostpass.php:89
-msgid "click here to login"
-msgstr "Klicke hier, um dich anzumelden"
+#: ../../mod/settings.php:971
+msgid "You receive a private message"
+msgstr "Du eine private Nachricht erhältst"
 
-#: ../../mod/lostpass.php:90
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Dein Passwort kann unter <em>Einstellungen</em> nach einer erfolgreichen Anmeldung geändert werden."
+#: ../../mod/settings.php:972
+msgid "You receive a friend suggestion"
+msgstr "Du einen Kontaktvorschlag erhältst"
 
-#: ../../mod/lostpass.php:107
-#, php-format
-msgid "Your password has changed at %s"
-msgstr "Auf %s wurde dein Passwort geändert"
+#: ../../mod/settings.php:973
+msgid "You are tagged in a post"
+msgstr "Du in einem Beitrag erwähnt wurdest"
 
-#: ../../mod/lostpass.php:122
-msgid "Forgot your Password?"
-msgstr "Kennwort vergessen?"
+#: ../../mod/settings.php:974
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest"
 
-#: ../../mod/lostpass.php:123
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet."
+#: ../../mod/settings.php:977
+msgid "Advanced Account/Page Type Settings"
+msgstr "Erweiterte Account- und Seitenart-Einstellungen"
 
-#: ../../mod/lostpass.php:124
-msgid "Email Address"
-msgstr "E-Mail Adresse"
+#: ../../mod/settings.php:978
+msgid "Change the behaviour of this account for special situations"
+msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen"
 
-#: ../../mod/lostpass.php:125
-msgid "Reset"
-msgstr "Zurücksetzen"
+#: ../../mod/settings.php:981
+msgid ""
+"Please enable expert mode (in Settings > Additional features) to adjust!"
+msgstr ""
 
 #: ../../mod/import.php:36
 msgid "Nothing to import."
@@ -6175,7 +6214,7 @@ msgstr "Die importierte Datei ist leer."
 #: ../../mod/import.php:88
 msgid ""
 "Cannot create a duplicate channel identifier on this system. Import failed."
-msgstr "Kann auf diesem System keinen duplizierten Kanal-Identifikator erzeugen. Import fehlgeschlagen."
+msgstr "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen."
 
 #: ../../mod/import.php:106
 msgid "Channel clone failed. Import failed."
@@ -6203,7 +6242,7 @@ msgid ""
 " may retrieve the channel identity from the old server/hub via the network "
 "or provide an export file. Only identity and connections/relationships will "
 "be imported. Importation of content is not yet available."
-msgstr "Verwende dieses Formular um einen existierenden Kanal von einem anderen Server/Hub zu importieren. Du kannst die Kanal-Identität vom alten Server/Hub über das Netzwerk erhalten oder über eine exportierte Sicherungskopie. Es werden ausschließlich die Identität und die Verbindungen/Beziehungen importiert. Das Importieren von Inhalten ist derzeit nicht möglich."
+msgstr "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Red-Server zu importieren. Du kannst den Kanal direkt vom bisherigen Red-Server über das Netzwerk importieren oder eine exportierte Sicherheitskopie benutzen. Es werden ausschließlich die Identität und die Verbindungen/Beziehungen importiert. Das Importieren von Inhalten ist derzeit nicht möglich."
 
 #: ../../mod/import.php:378
 msgid "File to Upload"
@@ -6211,11 +6250,11 @@ msgstr "Hochzuladende Datei:"
 
 #: ../../mod/import.php:379
 msgid "Or provide the old server/hub details"
-msgstr "Oder gib die Deteils deines alten Server/Hubs an"
+msgstr "Oder gib die Details Deines bisherigen Red-Servers ein"
 
 #: ../../mod/import.php:380
 msgid "Your old identity address (xyz@example.com)"
-msgstr "Die alte Adresse der Identität (xyz@example.com)"
+msgstr "Bisherige Kanal-Adresse (xyz@example.com)"
 
 #: ../../mod/import.php:381
 msgid "Your old login email address"
@@ -6231,16 +6270,16 @@ msgid ""
 "address, or whether your old location should continue this role. You will be"
 " able to post from either location, but only one can be marked as the "
 "primary location for files, photos, and media."
-msgstr "Egal welche Option du wählst, bitte lege fest, ob dieser Hub deine neue primäre Adresse sein soll oder ob dein alter Hub diese Rolle weiterhin wahrnimmt. Du kannst von beiden Orten aus neue Dinge posten, aber nur einer kann die primäre Adresse deiner Dateien, Fotos und anderen Mediendaten sein."
+msgstr "Egal welche Option Du wählst, bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige Red-Server diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein."
 
 #: ../../mod/import.php:384
 msgid "Make this hub my primary location"
-msgstr "Dieser Hub ist mein primärer Server."
+msgstr "Dieser Red-Server ist mein primärer Server."
 
 #: ../../mod/manage.php:63
 #, php-format
 msgid "You have created %1$.0f of %2$.0f allowed channels."
-msgstr "Du hast %1$.0f von %2$.0f erlaubten Kanälen eingerichtet."
+msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet."
 
 #: ../../mod/manage.php:71
 msgid "Create a new channel"
@@ -6256,7 +6295,7 @@ msgstr "Aktueller Kanal"
 
 #: ../../mod/manage.php:79
 msgid "Attach to one of your channels by selecting it."
-msgstr "Wähle einen deiner Kanäle aus um ihn zu verwenden."
+msgstr "Wähle einen Deiner Kanäle aus, um ihn zu verwenden."
 
 #: ../../mod/manage.php:80
 msgid "Default Channel"
@@ -6272,7 +6311,7 @@ msgstr "Stimmen gesamt"
 
 #: ../../mod/vote.php:98
 msgid "Average Rating"
-msgstr "durchschnittliche Bewertung"
+msgstr "Durchschnittliche Bewertung"
 
 #: ../../mod/match.php:16
 msgid "Profile Match"
@@ -6280,7 +6319,7 @@ msgstr "Profil-Übereinstimmungen"
 
 #: ../../mod/match.php:24
 msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Keine Schlüsselbegriffe für den Abgleich gefunden. Bitte füge Schlüsselbegriffe zu deinem Standardprofil hinzu."
+msgstr "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu."
 
 #: ../../mod/match.php:61
 msgid "is interested in:"
@@ -6344,7 +6383,7 @@ msgstr "Nachricht löschen"
 
 #: ../../mod/mail.php:293
 msgid "Recall message"
-msgstr "Widerrufe die Nachricht"
+msgstr "Nachricht widerrufen"
 
 #: ../../mod/mail.php:295
 msgid "Message has been recalled."
@@ -6362,7 +6401,7 @@ msgstr "Unterhaltung löschen"
 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."
+msgstr "Keine sichere Kommunikation verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten."
 
 #: ../../mod/mail.php:322
 msgid "Send Reply"
@@ -6382,7 +6421,7 @@ msgstr "Layout löschen"
 
 #: ../../mod/profile_photo.php:44
 msgid "Image uploaded but image cropping failed."
-msgstr "Bild hochgeladen, aber das zurecht schneiden schlug fehl."
+msgstr "Bild hochgeladen, aber das Zurechtschneiden schlug fehl."
 
 #: ../../mod/profile_photo.php:97
 msgid "Image resize failed."
@@ -6392,7 +6431,7 @@ msgstr "Bild-Anpassung fehlgeschlagen."
 msgid ""
 "Shift-reload the page or clear browser cache if the new photo does not "
 "display immediately."
-msgstr "Leere den Browser Cache oder nutze Umschalten-Neu Laden sollte das neue Foto nicht sofort angezeigt werden."
+msgstr "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird."
 
 #: ../../mod/profile_photo.php:163
 #, php-format
@@ -6437,7 +6476,7 @@ msgstr "Bild zuschneiden"
 
 #: ../../mod/profile_photo.php:303
 msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Bitte passe das Bild zur optimalen Anzeige an."
+msgstr "Bitte schneide das Bild für eine optimale Anzeige passend zu."
 
 #: ../../mod/profile_photo.php:305
 msgid "Done Editing"
@@ -6482,7 +6521,7 @@ msgstr "Neue Verbindungen vorschlagen"
 
 #: ../../mod/connections.php:247
 msgid "Show pending (new) connections"
-msgstr "Zeige schwebende (neue) Verbindungen"
+msgstr "Zeige ausstehende (neue) Verbindungsanfragen"
 
 #: ../../mod/connections.php:253
 msgid "Show all connections"
@@ -6531,7 +6570,7 @@ msgstr "Ergebnisse:"
 
 #: ../../mod/notifications.php:26
 msgid "Invalid request identifier."
-msgstr "Ungültige Anfrage Identifikator."
+msgstr "Ungültiger Anfrage-Identifikator."
 
 #: ../../mod/notifications.php:35
 msgid "Discard"
@@ -6547,11 +6586,11 @@ msgstr "System-Benachrichtigungen"
 
 #: ../../mod/blocks.php:65
 msgid "Block Name"
-msgstr "Block Name"
+msgstr "Block-Name"
 
 #: ../../mod/oexchange.php:23
 msgid "Unable to find your hub."
-msgstr "Konnte den Hub nicht finden."
+msgstr "Konnte Deinen Server nicht finden."
 
 #: ../../mod/oexchange.php:37
 msgid "Post successful."
@@ -6575,7 +6614,7 @@ msgstr "Der Zugang zu diesem Profil ist begrenzt."
 
 #: ../../mod/poke.php:159
 msgid "Poke/Prod"
-msgstr "Anstupsen/Kuffen"
+msgstr "Anstupsen/Knuffen"
 
 #: ../../mod/poke.php:160
 msgid "poke, prod or do other things to somebody"
@@ -6587,7 +6626,7 @@ msgstr "Empfänger"
 
 #: ../../mod/poke.php:162
 msgid "Choose what you wish to do to recipient"
-msgstr "Wähle was du mit dem/r Empfänger/in tun willst"
+msgstr "Wähle, was Du mit dem/r Empfänger/in tun willst"
 
 #: ../../mod/poke.php:165
 msgid "Make this post private"
@@ -6619,7 +6658,7 @@ msgstr "Freundschaftsempfehlung senden."
 
 #: ../../mod/fsuggest.php:97
 msgid "Suggest Friends"
-msgstr "Kontakte Vorschlagen"
+msgstr "Kontakte vorschlagen"
 
 #: ../../mod/fsuggest.php:99
 #, php-format
@@ -6644,7 +6683,7 @@ msgstr "Status:"
 
 #: ../../mod/dirprofile.php:115
 msgid "Sexual Preference: "
-msgstr "Sexuelle Vorlieben:"
+msgstr "Sexuelle Ausrichtung:"
 
 #: ../../mod/dirprofile.php:117
 msgid "Homepage: "
@@ -6660,7 +6699,7 @@ msgstr "Über:"
 
 #: ../../mod/dirprofile.php:168
 msgid "Keywords: "
-msgstr "Schlüsselbegriffe:"
+msgstr "Schlüsselwörter:"
 
 #: ../../mod/filestorage.php:68
 msgid "Permission Denied."
@@ -6668,14 +6707,14 @@ msgstr "Zugriff verweigert."
 
 #: ../../mod/filestorage.php:85
 msgid "File not found."
-msgstr "Datei nicht gefunden"
+msgstr "Datei nicht gefunden."
 
 #: ../../mod/filestorage.php:119
 msgid "Edit file permissions"
 msgstr "Dateiberechtigungen bearbeiten"
 
-#: ../../mod/filestorage.php:124 ../../mod/photos.php:603
-#: ../../mod/photos.php:946
+#: ../../mod/filestorage.php:124 ../../mod/photos.php:607
+#: ../../mod/photos.php:950
 msgid "Permissions"
 msgstr "Berechtigungen"
 
@@ -6689,11 +6728,11 @@ msgstr "Zurück zur Dateiliste"
 
 #: ../../mod/filestorage.php:129
 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"
+msgstr "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen"
 
 #: ../../mod/filestorage.php:130
 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"
+msgstr "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken"
 
 #: ../../mod/filestorage.php:167
 msgid "Download"
@@ -6715,7 +6754,7 @@ msgstr "Limit:"
 msgid ""
 "No suggestions available. If this is a new site, please try again in 24 "
 "hours."
-msgstr "Keine Vorschläge vorhanden. Wenn dies eine neue Seite ist versuche es bitte in 24 Stunden erneut."
+msgstr "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal."
 
 #: ../../mod/message.php:41
 msgid "Conversation removed."
@@ -6731,7 +6770,7 @@ msgstr "D, d. M Y - g:i A"
 
 #: ../../mod/pubsites.php:22
 msgid "Public Sites"
-msgstr "Öffentliche Seiten"
+msgstr "Öffentliche Server"
 
 #: ../../mod/pubsites.php:25
 msgid ""
@@ -6740,15 +6779,15 @@ msgid ""
 "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."
-msgstr "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."
+msgstr "Die hier aufgeführten Server erlauben Dir, einen Account in der Red-Matrix anzulegen. Alle Server der Matrix sind miteinander verbunden, so dass die Mitgliedschaft auf einem Server eine Verbindung zu beliebigen anderen Servern der Matrix ermöglicht. Es könnte sein, dass einige dieser Server kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den jeweiligen Seiten <strong>könnten</strong> nähere Details dazu stehen."
 
 #: ../../mod/pubsites.php:31
 msgid "Site URL"
-msgstr "URL der Seite"
+msgstr "Server-URL"
 
 #: ../../mod/pubsites.php:31
 msgid "Access Type"
-msgstr "Zugangs Typ"
+msgstr "Zugangstyp"
 
 #: ../../mod/pubsites.php:31
 msgid "Registration Policy"
@@ -6756,12 +6795,12 @@ msgstr "Registrierungsrichtlinien"
 
 #: ../../mod/register.php:43
 msgid "Maximum daily site registrations exceeded. Please try again tomorrow."
-msgstr "Maximale Anzahl von Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal."
+msgstr "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal."
 
 #: ../../mod/register.php:49
 msgid ""
 "Please indicate acceptance of the Terms of Service. Registration failed."
-msgstr "Bitte stimme den Nutzungsbedingungen zu. Anmeldung fehlgeschlagen."
+msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen."
 
 #: ../../mod/register.php:77
 msgid "Passwords do not match."
@@ -6771,7 +6810,7 @@ msgstr "Passwörter stimmen nicht überein."
 msgid ""
 "Registration successful. Please check your email for validation "
 "instructions."
-msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet."
+msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."
 
 #: ../../mod/register.php:111
 msgid "Your registration is pending approval by the site owner."
@@ -6783,17 +6822,17 @@ msgstr "Deine Registrierung konnte nicht verarbeitet werden."
 
 #: ../../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"
+msgstr "Anmeldungen auf diesem Server erfordern 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>"
+msgstr "<a href=\"pubsites\">Registrierung auf einem anderen, angeschlossenen Server</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."
+msgstr "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal."
 
 #: ../../mod/register.php:167
 msgid "Terms of Service"
@@ -6815,7 +6854,7 @@ msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung mögli
 
 #: ../../mod/register.php:195
 msgid "Please enter your invitation code"
-msgstr "Bitte trage deinen Einladungs-Code ein"
+msgstr "Bitte trage Deinen Einladungs-Code ein"
 
 #: ../../mod/register.php:198
 msgid "Your email address"
@@ -6827,7 +6866,7 @@ msgstr "Passwort"
 
 #: ../../mod/register.php:200
 msgid "Please re-enter your password"
-msgstr "Bitte gib dein Passwort noch einmal ein"
+msgstr "Bitte gib Dein Passwort noch einmal ein"
 
 #: ../../mod/regmod.php:12
 msgid "Please login."
@@ -6835,17 +6874,17 @@ msgstr "Bitte melde dich an."
 
 #: ../../mod/removeme.php:49
 msgid "Remove This Channel"
-msgstr "Diesen Kanal löschen!"
+msgstr "Diesen Kanal löschen"
 
 #: ../../mod/removeme.php:50
 msgid ""
 "This will completely remove this channel from the network. Once this has "
 "been done it is not recoverable."
-msgstr "Hiermit wird dieser Kanal komplett aus dem Netzwerk gelöscht. Einmal eingeleitet ist dieser Prozess nicht widerrufbar."
+msgstr "Hiermit wird dieser Kanal komplett aus dem Netzwerk gelöscht. Einmal eingeleitet kann dieser Prozess nicht rückgängig gemacht werden."
 
 #: ../../mod/removeme.php:51
 msgid "Please enter your password for verification:"
-msgstr "Bitte gib zur Bestätigung dein Passwort ein:"
+msgstr "Bitte gib zur Bestätigung Dein Passwort ein:"
 
 #: ../../mod/removeme.php:52
 msgid "Remove this channel and all its clones from the network"
@@ -6855,137 +6894,137 @@ msgstr "Lösche diesen Kanal und all seine Klone aus dem Netzwerk"
 msgid ""
 "By default only the instance of the channel located on this hub will be "
 "removed from the network"
-msgstr "Standartmäßig wird der Kanal nur auf diesem Knoten gelöscht, seine Klone verbleiben im Netzwerk"
+msgstr "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk"
 
 #: ../../mod/removeme.php:53
 msgid "Remove Channel"
-msgstr "Kanal entfernen"
+msgstr "Kanal löschen"
 
 #: ../../mod/photos.php:77
 msgid "Page owner information could not be retrieved."
-msgstr "Informationen über den Betreiber der Seite konnten nicht gefunden werden."
+msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden."
 
 #: ../../mod/photos.php:97
 msgid "Album not found."
 msgstr "Album nicht gefunden."
 
-#: ../../mod/photos.php:119 ../../mod/photos.php:668
+#: ../../mod/photos.php:119 ../../mod/photos.php:672
 msgid "Delete Album"
 msgstr "Album löschen"
 
-#: ../../mod/photos.php:159 ../../mod/photos.php:951
+#: ../../mod/photos.php:159 ../../mod/photos.php:955
 msgid "Delete Photo"
 msgstr "Foto löschen"
 
-#: ../../mod/photos.php:452
+#: ../../mod/photos.php:453
 msgid "No photos selected"
 msgstr "Keine Fotos ausgewählt"
 
-#: ../../mod/photos.php:499
+#: ../../mod/photos.php:500
 msgid "Access to this item is restricted."
-msgstr "Zugriff auf dieses Foto wurde eingeschränkt."
+msgstr "Der Zugriff auf dieses Foto ist eingeschränkt."
 
-#: ../../mod/photos.php:573
+#: ../../mod/photos.php:577
 #, 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."
+msgstr "Du benutzt %1$.2f MBytes Deines %2$.2f MBytes großen Bilder-Speichers."
 
-#: ../../mod/photos.php:576
+#: ../../mod/photos.php:580
 #, php-format
 msgid "You have used %1$.2f Mbytes of photo storage."
-msgstr "Du verwendets %1$.2f MBytes deines Foto-Speichers."
+msgstr "Du verwendest %1$.2f MBytes Deines Foto-Speichers."
 
-#: ../../mod/photos.php:595
+#: ../../mod/photos.php:599
 msgid "Upload Photos"
 msgstr "Fotos hochladen"
 
-#: ../../mod/photos.php:599 ../../mod/photos.php:663
+#: ../../mod/photos.php:603 ../../mod/photos.php:667
 msgid "New album name: "
 msgstr "Name des neuen Albums:"
 
-#: ../../mod/photos.php:600
+#: ../../mod/photos.php:604
 msgid "or existing album name: "
-msgstr "oder bestehenden Album Namen:"
+msgstr "Oder bestehender Album-Name:"
 
-#: ../../mod/photos.php:601
+#: ../../mod/photos.php:605
 msgid "Do not show a status post for this upload"
 msgstr "Keine Statusnachricht für diesen Upload senden"
 
-#: ../../mod/photos.php:652 ../../mod/photos.php:674 ../../mod/photos.php:1123
-#: ../../mod/photos.php:1138
+#: ../../mod/photos.php:656 ../../mod/photos.php:678 ../../mod/photos.php:1127
+#: ../../mod/photos.php:1142
 msgid "Contact Photos"
-msgstr "Kontakt Bilder"
+msgstr "Kontakt-Bilder"
 
-#: ../../mod/photos.php:678
+#: ../../mod/photos.php:682
 msgid "Edit Album"
 msgstr "Album bearbeiten"
 
-#: ../../mod/photos.php:684
+#: ../../mod/photos.php:688
 msgid "Show Newest First"
-msgstr "Zeige neueste zuerst"
+msgstr "Zeige Neueste zuerst"
 
-#: ../../mod/photos.php:686
+#: ../../mod/photos.php:690
 msgid "Show Oldest First"
-msgstr "Zeige älteste zuerst"
+msgstr "Zeige Älteste zuerst"
 
-#: ../../mod/photos.php:729 ../../mod/photos.php:1170
+#: ../../mod/photos.php:733 ../../mod/photos.php:1174
 msgid "View Photo"
 msgstr "Foto ansehen"
 
-#: ../../mod/photos.php:775
+#: ../../mod/photos.php:779
 msgid "Permission denied. Access to this item may be restricted."
 msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."
 
-#: ../../mod/photos.php:777
+#: ../../mod/photos.php:781
 msgid "Photo not available"
 msgstr "Foto nicht verfügbar"
 
-#: ../../mod/photos.php:837
+#: ../../mod/photos.php:841
 msgid "Use as profile photo"
 msgstr "Als Profilfoto verwenden"
 
-#: ../../mod/photos.php:861
+#: ../../mod/photos.php:865
 msgid "View Full Size"
 msgstr "In voller Größe anzeigen"
 
-#: ../../mod/photos.php:935
+#: ../../mod/photos.php:939
 msgid "Edit photo"
 msgstr "Foto bearbeiten"
 
-#: ../../mod/photos.php:937
+#: ../../mod/photos.php:941
 msgid "Rotate CW (right)"
-msgstr "Drehen US (rechts)"
+msgstr "Drehen im UZS (rechts)"
 
-#: ../../mod/photos.php:938
+#: ../../mod/photos.php:942
 msgid "Rotate CCW (left)"
-msgstr "Drehen EUS (links)"
+msgstr "Drehen gegen UZS (links)"
 
-#: ../../mod/photos.php:940
+#: ../../mod/photos.php:944
 msgid "New album name"
 msgstr "Name des neuen Albums:"
 
-#: ../../mod/photos.php:943
+#: ../../mod/photos.php:947
 msgid "Caption"
 msgstr "Bildunterschrift"
 
-#: ../../mod/photos.php:945
+#: ../../mod/photos.php:949
 msgid "Add a Tag"
 msgstr "Schlagwort hinzufügen"
 
-#: ../../mod/photos.php:948
+#: ../../mod/photos.php:952
 msgid ""
 "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: ../../mod/photos.php:1101
+#: ../../mod/photos.php:1105
 msgid "In This Photo:"
 msgstr "Auf diesem Foto:"
 
-#: ../../mod/photos.php:1176
+#: ../../mod/photos.php:1180
 msgid "View Album"
 msgstr "Album ansehen"
 
-#: ../../mod/photos.php:1185
+#: ../../mod/photos.php:1189
 msgid "Recent Photos"
 msgstr "Neueste Fotos"
 
@@ -6995,7 +7034,7 @@ msgstr "Laune"
 
 #: ../../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"
+msgstr "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden"
 
 #: ../../mod/ping.php:192
 msgid "sent you a private message"
@@ -7015,7 +7054,7 @@ msgstr "Standard-Schema"
 
 #: ../../view/theme/redbasic/php/config.php:87
 msgid "silver"
-msgstr "Silber"
+msgstr "silbern"
 
 #: ../../view/theme/redbasic/php/config.php:98
 #: ../../view/theme/apw/php/config.php:234
@@ -7035,7 +7074,7 @@ msgstr "Farbe der Navigationsleiste"
 
 #: ../../view/theme/redbasic/php/config.php:101
 msgid "link colour"
-msgstr "Farbe der Verweise"
+msgstr "Farbe der Links"
 
 #: ../../view/theme/redbasic/php/config.php:102
 msgid "Set font-colour for banner"
@@ -7072,7 +7111,7 @@ msgstr "Schriftgröße für die ganze Applikation"
 #: ../../view/theme/redbasic/php/config.php:110
 #: ../../view/theme/apw/php/config.php:236
 msgid "Set font-size for posts and comments"
-msgstr "Wähle die Schriftgröße für Beiträge und Kommentare"
+msgstr "Schriftgröße für Beiträge und Kommentare"
 
 #: ../../view/theme/redbasic/php/config.php:111
 msgid "Set font-colour for posts and comments"
@@ -7088,7 +7127,7 @@ msgstr "Schattentiefe von Fotos"
 
 #: ../../view/theme/redbasic/php/config.php:114
 msgid "Set maximum width of conversation regions"
-msgstr "Maximalbreite der Konversationsbereiche"
+msgstr "Maximalbreite der Unterhaltungsbereiche"
 
 #: ../../view/theme/redbasic/php/config.php:115
 msgid "Set minimum opacity of nav bar - to hide it"
@@ -7108,7 +7147,7 @@ msgstr "Schräge Fotoalben"
 
 #: ../../view/theme/redbasic/php/config.php:118
 msgid "Are you a clean desk or a messy desk person?"
-msgstr "Bist du jemand der einen aufgeräumten Schreibtisch hat, oder eher einen chaotischen?"
+msgstr "Bist Du jemand, der einen aufgeräumten Schreibtisch hat, oder eher einen chaotischen?"
 
 #: ../../view/theme/apw/php/config.php:193
 #: ../../view/theme/apw/php/config.php:211
@@ -7129,7 +7168,7 @@ msgstr "Schriftart"
 
 #: ../../view/theme/apw/php/config.php:238
 msgid "Set iconset"
-msgstr "Iconset"
+msgstr "Icon-Set"
 
 #: ../../view/theme/apw/php/config.php:239
 msgid "Set big shadow size, default 15px 15px 15px"
@@ -7149,7 +7188,7 @@ msgstr "Ecken-Radius (Default 5px)"
 
 #: ../../view/theme/apw/php/config.php:243
 msgid "Set line-height for posts and comments"
-msgstr "Wähle die Zeilenhöhe in Beiträgen und Kommentaren"
+msgstr "Zeilenhöhe für Beiträge und Kommentare"
 
 #: ../../view/theme/apw/php/config.php:244
 msgid "Set background image"
@@ -7197,7 +7236,7 @@ msgstr "Größe des Hintergrund-Elements"
 
 #: ../../view/theme/apw/php/config.php:255
 msgid "Item opacity"
-msgstr "Opazität von Beiträgen"
+msgstr "Deckkraft von Beiträgen (z.B. 0.8)"
 
 #: ../../view/theme/apw/php/config.php:256
 msgid "Display post previews only"
@@ -7263,7 +7302,7 @@ msgstr "Aktualisierungsfehler auf %s"
 #: ../../boot.php:1399
 msgid ""
 "Create an account to access services and applications within the Red Matrix"
-msgstr "Erstelle einen Account um Anwendungen und Dienste innerhalb der Red Matrix verwenden zu können."
+msgstr "Erstelle einen Account, um Anwendungen und Dienste innerhalb der Red-Matrix verwenden zu können."
 
 #: ../../boot.php:1427
 msgid "Password"
@@ -7287,4 +7326,4 @@ msgstr "Haste schon Zot?"
 
 #: ../../boot.php:1899
 msgid "toggle mobile"
-msgstr "auf/von Mobile Ansicht wechseln"
+msgstr "auf/von mobile Ansicht wechseln"
diff --git a/view/de/strings.php b/view/de/strings.php
index 00da85a02..ac1abc8f7 100644
--- a/view/de/strings.php
+++ b/view/de/strings.php
@@ -4,6 +4,45 @@ function string_plural_select_de($n){
 	return ($n != 1);;
 }
 ;
+$a->strings["Categories"] = "Kategorien";
+$a->strings["Connect"] = "Verbinden";
+$a->strings["Ignore/Hide"] = "Ignorieren/Verstecken";
+$a->strings["Suggestions"] = "Vorschläge";
+$a->strings["See more..."] = "Mehr anzeigen …";
+$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen.";
+$a->strings["Add New Connection"] = "Neue Verbindung hinzufügen";
+$a->strings["Enter the channel address"] = "Adresse des Kanals eingeben";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@beispiel.com, http://beispiel.com/barbara";
+$a->strings["Notes"] = "Notizen";
+$a->strings["Save"] = "Speichern";
+$a->strings["Remove term"] = "Eintrag löschen";
+$a->strings["Saved Searches"] = "Gesicherte Suchanfragen";
+$a->strings["add"] = "hinzufügen";
+$a->strings["Saved Folders"] = "Gesicherte Ordner";
+$a->strings["Everything"] = "Alles";
+$a->strings["Archives"] = "Archive";
+$a->strings["Refresh"] = "Aktualisieren";
+$a->strings["Me"] = "Ich";
+$a->strings["Best Friends"] = "Beste Freunde";
+$a->strings["Friends"] = "Freunde";
+$a->strings["Co-workers"] = "Kollegen";
+$a->strings["Former Friends"] = "ehem. Freunde";
+$a->strings["Acquaintances"] = "Bekannte";
+$a->strings["Everybody"] = "Jeder";
+$a->strings["Account settings"] = "Konto-Einstellungen";
+$a->strings["Channel settings"] = "Kanal-Einstellungen";
+$a->strings["Additional features"] = "Zusätzliche Funktionen";
+$a->strings["Feature settings"] = "Funktions-Einstellungen";
+$a->strings["Display settings"] = "Anzeige-Einstellungen";
+$a->strings["Connected apps"] = "Verbundene Apps";
+$a->strings["Export channel"] = "Kanal exportieren";
+$a->strings["Automatic Permissions (Advanced)"] = "Automatische Berechtigungen (Erweitert)";
+$a->strings["Premium Channel Settings"] = "Premium-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["Chat Rooms"] = "Chaträume";
 $a->strings["Visible to everybody"] = "Für jeden sichtbar";
 $a->strings["show"] = "zeigen";
 $a->strings["don't show"] = "Verbergen";
@@ -25,9 +64,9 @@ $a->strings["Your photos"] = "Deine Bilder";
 $a->strings["Files"] = "Dateien";
 $a->strings["Your files"] = "Deine Dateien";
 $a->strings["Chat"] = "Chat";
-$a->strings["Your chatrooms"] = "Deine Chat-Räume";
+$a->strings["Your chatrooms"] = "Deine Chaträume";
 $a->strings["Events"] = "Veranstaltungen";
-$a->strings["Your events"] = "Deine Veransctaltungen";
+$a->strings["Your events"] = "Deine Veranstaltungen";
 $a->strings["Bookmarks"] = "Lesezeichen";
 $a->strings["Your bookmarks"] = "Deine Lesezeichen";
 $a->strings["Webpages"] = "Webseiten";
@@ -35,7 +74,7 @@ $a->strings["Your webpages"] = "Deine Webseiten";
 $a->strings["Login"] = "Anmelden";
 $a->strings["Sign in"] = "Anmelden";
 $a->strings["%s - click to logout"] = "%s - Klick zum Abmelden";
-$a->strings["Click to authenticate to your home hub"] = "Klick zum Authentifizieren bei Deinem Heimat-Hub";
+$a->strings["Click to authenticate to your home hub"] = "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren";
 $a->strings["Home Page"] = "Homepage";
 $a->strings["Register"] = "Registrieren";
 $a->strings["Create an account"] = "Erzeuge ein Konto";
@@ -65,16 +104,14 @@ $a->strings["See all private messages"] = "Alle persönlichen Nachrichten ansehe
 $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["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["Manage/Edit Friends and Connections"] = "Freunde und Verbindungen verwalten";
 $a->strings["Admin"] = "Admin";
 $a->strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration";
 $a->strings["Nothing new here"] = "Nichts Neues hier";
@@ -90,8 +127,7 @@ $a->strings["%d Connection"] = array(
 	0 => "%d Verbindung",
 	1 => "%d Verbindungen",
 );
-$a->strings["View Connections"] = "Zeige Verbindungen";
-$a->strings["Save"] = "Speichern";
+$a->strings["View Connections"] = "Verbindungen anzeigen";
 $a->strings["poke"] = "anstupsen";
 $a->strings["poked"] = "stupste";
 $a->strings["ping"] = "anpingen";
@@ -149,9 +185,9 @@ $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["Select a page layout: "] = "Ein Seiten-Layout auswählen:";
 $a->strings["default"] = "Standard";
-$a->strings["Page content type: "] = "Content-Typ der Seite";
+$a->strings["Page 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";
@@ -163,42 +199,12 @@ $a->strings["Blocks"] = "Blöcke";
 $a->strings["Menus"] = "Menüs";
 $a->strings["Layouts"] = "Layouts";
 $a->strings["Pages"] = "Seiten";
-$a->strings["Categories"] = "Kategorien";
-$a->strings["Connect"] = "Verbinden";
-$a->strings["Ignore/Hide"] = "Ignorieren/Verstecken";
-$a->strings["Suggestions"] = "Vorschläge";
-$a->strings["See more..."] = "Mehr anzeigen...";
-$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von %2$.0f erlaubten Verbindungen eingegangen.";
-$a->strings["Add New Connection"] = "Neue Verbindung hinzufügen";
-$a->strings["Enter the channel address"] = "Adresse des Kanals eingeben";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@beispiel.com, http://beispiel.com/barbara";
-$a->strings["Notes"] = "Notizen";
-$a->strings["Remove term"] = "Eintrag löschen";
-$a->strings["Saved Searches"] = "Gesicherte Suchanfragen";
-$a->strings["add"] = "hinzufügen";
-$a->strings["Saved Folders"] = "Gesicherte Ordner";
-$a->strings["Everything"] = "Alles";
-$a->strings["Archives"] = "Archive";
-$a->strings["Refresh"] = "Aktualisieren";
-$a->strings["Me"] = "Ich";
-$a->strings["Best Friends"] = "Beste Freunde";
-$a->strings["Friends"] = "Freunde";
-$a->strings["Co-workers"] = "Kollegen";
-$a->strings["Former Friends"] = "ehem. Freunde";
-$a->strings["Acquaintances"] = "Bekanntschaften";
-$a->strings["Everybody"] = "Jeder";
-$a->strings["Account settings"] = "Konto-Einstellungen";
-$a->strings["Channel settings"] = "Kanal-Einstellungen";
-$a->strings["Additional features"] = "Zusätzliche Funktionen";
-$a->strings["Feature settings"] = "Funktions-Einstellungen";
-$a->strings["Display settings"] = "Anzeige-Einstellungen";
-$a->strings["Connected apps"] = "Verbundene Apps";
-$a->strings["Export channel"] = "Kanal exportieren";
-$a->strings["Automatic Permissions (Advanced)"] = "Automatische Berechtigungen (Erweitert)";
-$a->strings["Premium Channel Settings"] = "Prämium-Kanal Einstellungen";
-$a->strings["Channel Sources"] = "Kanal Quellen";
-$a->strings["Check Mail"] = "E-Mails abrufen";
-$a->strings["Chat Rooms"] = "Chaträume";
+$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:";
 $a->strings["New window"] = "Neues Fenster";
 $a->strings["Open the selected location in a different window or browser tab"] = "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab";
 $a->strings["General Features"] = "Allgemeine Funktionen";
@@ -208,20 +214,20 @@ $a->strings["Multiple Profiles"] = "Mehrfachprofile";
 $a->strings["Ability to create multiple profiles"] = "Mehrfachprofile anlegen können";
 $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["Private Notes"] = "Private Notizen";
 $a->strings["Enables a tool to store notes and reminders"] = "Werkzeug zum Speichern von Notizen und Erinnerungen aktivieren";
 $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["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "Teile Deine Identität mit allen Webseiten im Internet. Ist dies deaktiviert, wird Deine Identität nur mit Red-Servern geteilt.";
 $a->strings["Expert Mode"] = "Expertenmodus";
-$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Aktiviere Expertenmodus, um fortgeschrittene Konfiguration zur Verfügung zu stellen";
+$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Aktiviere den Expertenmodus, um fortgeschrittene Konfigurationsoptionen zu aktivieren";
 $a->strings["Premium Channel"] = "Premium-Kanal";
-$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Erlaubt es dir Einschränkungen für Kontakte und bestimmte Bedingungen an Kontakte zu diesem Kanal zu stellen";
+$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ermöglicht Einschränkungen und Bedingungen für Kontakte dieses Kanals";
 $a->strings["Post Composition Features"] = "Nachbearbeitungsfunktionen";
 $a->strings["Richtext Editor"] = "Formatierungseditor";
 $a->strings["Enable richtext editor"] = "Aktiviere Formatierungseditor";
 $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["Automatically import channel content from other channels or feeds"] = "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds";
 $a->strings["Even More Encryption"] = "Noch mehr Verschlüsselung";
 $a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Erlaube optionale Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Sicherheitsschlüssel)";
 $a->strings["Network and Stream Filtering"] = "Netzwerk- und Stream-Filter";
@@ -236,7 +242,7 @@ $a->strings["Network New Tab"] = "Netzwerkreiter Neu";
 $a->strings["Enable tab to display all new Network activity"] = "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen";
 $a->strings["Affinity Tool"] = "Beziehungs-Tool";
 $a->strings["Filter stream activity by depth of relationships"] = "Filter Aktivitätenstream nach Tiefe der Beziehung";
-$a->strings["Suggest Channels"] = "Kanäle Vorschlagen";
+$a->strings["Suggest Channels"] = "Kanäle vorschlagen";
 $a->strings["Show channel suggestions"] = "Kanal-Vorschläge anzeigen";
 $a->strings["Post/Comment Tools"] = "Beitrag-/Kommentar-Tools";
 $a->strings["Edit Sent Posts"] = "Bearbeite gesendete Beiträge";
@@ -247,11 +253,11 @@ $a->strings["Post Categories"] = "Beitrags-Kategorien";
 $a->strings["Add categories to your posts"] = "Kategorien für Beiträge";
 $a->strings["Ability to file posts under folders"] = "Möglichkeit, Beiträge in Verzeichnissen zu sammeln";
 $a->strings["Dislike Posts"] = "Gefällt-mir-nicht Beiträge";
-$a->strings["Ability to dislike posts/comments"] = "Möglichkeit für Gefällt-mir-nicht für Beiträge/Kommentare";
+$a->strings["Ability to dislike posts/comments"] = "„Gefällt mir nicht“ ermöglichen";
 $a->strings["Star Posts"] = "Beiträge mit Sternchen versehen";
 $a->strings["Ability to mark special posts with a star indicator"] = "Möglichkeit, spezielle Beiträge mit Sternchen-Symbol zu markieren";
-$a->strings["Tag Cloud"] = "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["Tag Cloud"] = "Schlagwort-Wolke";
+$a->strings["Provide a personal tag cloud on your channel page"] = "Persönliche Schlagwort-Wolke auf Deiner Kanal-Seite anzeigen";
 $a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
 $a->strings["Block immediately"] = "Sofort blockieren";
 $a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
@@ -292,7 +298,7 @@ $a->strings["minutes"] = "Minuten";
 $a->strings["second"] = "Sekunde";
 $a->strings["seconds"] = "Sekunden";
 $a->strings["%1\$d %2\$s ago"] = "vor %1\$d %2\$s";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS-Info für den Datenbank-Server '%s' nicht finden";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden";
 $a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\\\, H:i";
 $a->strings["Starts:"] = "Beginnt:";
 $a->strings["Finishes:"] = "Endet:";
@@ -312,8 +318,8 @@ $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";
 $a->strings["everybody"] = "alle";
-$a->strings["Secret Passphrase"] = "geheime Passwort-Phrase";
-$a->strings["Passphrase hint"] = "Hinweis zur Phrase";
+$a->strings["Secret Passphrase"] = "geheime Passphrase";
+$a->strings["Passphrase hint"] = "Hinweis zur Passphrase";
 $a->strings["timeago.prefixAgo"] = "timeago.prefixAgo";
 $a->strings["timeago.suffixAgo"] = "timeago.suffixAgo";
 $a->strings["ago"] = "her";
@@ -342,32 +348,26 @@ $a->strings["No source file."] = "Keine Quelldatei.";
 $a->strings["Cannot locate file to replace"] = "Kann Datei zum Ersetzen nicht finden";
 $a->strings["Cannot locate file to revise/update"] = "Kann Datei zum Prüfen/Aktualisieren nicht finden";
 $a->strings["File exceeds size limit of %d"] = "Datei überschreitet das Größen-Limit von %d";
-$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Die Größe deiner Datei-Anhänge haben das Maximum von %1$.0f MByte erreicht.";
+$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht.";
 $a->strings["File upload failed. Possible system limit or action terminated."] = "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess.";
 $a->strings["Stored file could not be verified. Upload failed."] = "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen.";
 $a->strings["Path not available."] = "Pfad nicht verfügbar.";
-$a->strings["Empty pathname"] = "leere Pfadangabe";
+$a->strings["Empty pathname"] = "Leere Pfadangabe";
 $a->strings["duplicate filename or path"] = "doppelter Dateiname oder Pfad";
 $a->strings["Path not found."] = "Pfad nicht gefunden.";
 $a->strings["mkdir failed."] = "mkdir fehlgeschlagen.";
 $a->strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen.";
-$a->strings["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:";
-$a->strings["%1\$s's bookmarks"] = "%1\$s's Lesezeichen";
+$a->strings["%1\$s's bookmarks"] = "%1\$ss Lesezeichen";
 $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 likes %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s nicht";
 $a->strings["%1\$s is now connected with %2\$s"] = "%1\$s ist jetzt mit %2\$s verbunden";
-$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s an";
 $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["View %s's profile @ %s"] = "%ss Profil auf %s ansehen";
 $a->strings["Categories:"] = "Kategorien:";
 $a->strings["Filed under:"] = "Gespeichert unter:";
 $a->strings[" from %s"] = "von %s";
@@ -382,7 +382,7 @@ $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["Matrix Activity"] = "Matrix-Aktivität";
 $a->strings["Edit Contact"] = "Kontakt bearbeiten";
 $a->strings["Send PM"] = "Sende PN";
 $a->strings["Poke"] = "Anstupsen";
@@ -409,7 +409,7 @@ $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["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";
@@ -436,27 +436,27 @@ $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["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 mit Beteiligung deinerseits";
+$a->strings["Posts that mention or involve you"] = "Beiträge mit Beteiligung Deinerseits";
 $a->strings["New"] = "Neu";
-$a->strings["Activity Stream - by date"] = "Activity Stream - nach Datum sortiert";
+$a->strings["Activity Stream - by date"] = "Activity Stream – nach Datum sortiert";
 $a->strings["Starred"] = "Markiert";
-$a->strings["Favourite Posts"] = "Beiträge mit Sternchen";
+$a->strings["Favourite Posts"] = "Markierte Beiträge";
 $a->strings["Spam"] = "Spam";
-$a->strings["Posts flagged as SPAM"] = "Nachrichten die als SPAM markiert wurden";
+$a->strings["Posts flagged as SPAM"] = "Nachrichten, die als SPAM markiert wurden";
 $a->strings["Channel"] = "Kanal";
 $a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
 $a->strings["About"] = "Über";
 $a->strings["Profile Details"] = "Profil-Details";
 $a->strings["Photo Albums"] = "Fotoalben";
 $a->strings["Files and Storage"] = "Dateien und Speicher";
-$a->strings["Chatrooms"] = "Chat-Räume";
+$a->strings["Chatrooms"] = "Chaträume";
 $a->strings["Events and Calendar"] = "Veranstaltungen und Kalender";
 $a->strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen";
 $a->strings["Manage Webpages"] = "Webseiten verwalten";
@@ -469,9 +469,9 @@ $a->strings["Nickname has unsupported characters or is already being used on thi
 $a->strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen";
 $a->strings["Default Profile"] = "Standard-Profil";
 $a->strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar.";
-$a->strings[" Sorry, you don't have the permission to view this profile. "] = "Entschuldigung, aber du besitzt nicht die nötigen Rechte um dieses Profil ansehen zu dürfen.";
+$a->strings[" Sorry, you don't have the permission to view this profile. "] = "Entschuldigung, Du besitzt nicht die nötigen Rechte, um dieses Profil zu betrachten.";
 $a->strings["Requested profile is not available."] = "Erwünschte Profil ist nicht verfügbar.";
-$a->strings["Change profile photo"] = "Ändere das Profilfoto";
+$a->strings["Change profile photo"] = "Profilfoto ändern";
 $a->strings["Profiles"] = "Profile";
 $a->strings["Manage/edit profiles"] = "Verwalte/Bearbeite Profile";
 $a->strings["Create New Profile"] = "Neues Profil erstellen";
@@ -497,7 +497,7 @@ $a->strings["j F, Y"] = "j F, Y";
 $a->strings["j F"] = "j F";
 $a->strings["Birthday:"] = "Geburtstag:";
 $a->strings["Age:"] = "Alter:";
-$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
+$a->strings["for %1\$d %2\$s"] = "seit %1\$d %2\$s";
 $a->strings["Sexual Preference:"] = "Sexuelle Orientierung:";
 $a->strings["Hometown:"] = "Heimatstadt:";
 $a->strings["Tags:"] = "Schlagworte:";
@@ -505,8 +505,8 @@ $a->strings["Political Views:"] = "Politische Ansichten:";
 $a->strings["Religion:"] = "Religion:";
 $a->strings["About:"] = "Über:";
 $a->strings["Hobbies/Interests:"] = "Hobbys/Interessen:";
-$a->strings["Likes:"] = "Gefällt-mir:";
-$a->strings["Dislikes:"] = "Gefällt-mir-nicht:";
+$a->strings["Likes:"] = "Gefällt:";
+$a->strings["Dislikes:"] = "Gefällt nicht:";
 $a->strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:";
 $a->strings["My other channels:"] = "Meine anderen Kanäle:";
 $a->strings["Musical interests:"] = "Musikalische Interessen:";
@@ -521,26 +521,26 @@ $a->strings["Edit"] = "Bearbeiten";
 $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["toggle star status"] = "Markierung umschalten";
 $a->strings["starred"] = "markiert";
 $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["I like this (toggle)"] = "Mir gefällt das (Umschalter)";
+$a->strings["like"] = "mag";
+$a->strings["I don't like this (toggle)"] = "Mir gefällt das nicht (Umschalter)";
+$a->strings["dislike"] = "verurteile";
 $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["View %s's profile - %s"] = "Schaue Dir %ss Profil an – %s";
+$a->strings["to"] = "an";
 $a->strings["via"] = "via";
 $a->strings["Wall-to-Wall"] = "Wall-to-Wall";
 $a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
-$a->strings["Bookmark Links"] = "Setze Lesezeichen für die Verweise";
+$a->strings["Bookmark Links"] = "Setze Lesezeichen für die Links";
 $a->strings["%d comment"] = array(
 	0 => "%d Kommentar",
 	1 => "%d Kommentare",
 );
-$a->strings["This is you"] = "Das bist du";
+$a->strings["This is you"] = "Das bist Du";
 $a->strings["Submit"] = "Bestätigen";
 $a->strings["Bold"] = "Fett";
 $a->strings["Italic"] = "Kursiv";
@@ -616,19 +616,19 @@ $a->strings["Duplicate room name"] = "Name des Chatraums bereits vergeben";
 $a->strings["Invalid room specifier."] = "Ungültiger Raumbezeichner.";
 $a->strings["Room not found."] = "Chatraum konnte nicht gefunden werden.";
 $a->strings["Room is full"] = "Der Raum ist voll";
-$a->strings["Tags"] = "Tags";
-$a->strings["Keywords"] = "Schlüsselbegriffe";
+$a->strings["Tags"] = "Schlagwörter";
+$a->strings["Keywords"] = "Schlüsselwörter";
 $a->strings["have"] = "habe";
 $a->strings["has"] = "hat";
 $a->strings["want"] = "will";
 $a->strings["wants"] = "will";
-$a->strings["likes"] = "Gefällt-mir";
-$a->strings["dislikes"] = "Gefällt-mir-nicht";
+$a->strings["likes"] = "gefällt";
+$a->strings["dislikes"] = "missfällt";
 $a->strings["Logged out."] = "Ausgeloggt.";
 $a->strings["Failed authentication"] = "Authentifizierung fehlgeschlagen";
 $a->strings["Login failed."] = "Login fehlgeschlagen.";
 $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";
+$a->strings["Your email domain is not among those allowed on this site"] = "Deine E-Mail-Adresse ist dieser Seite nicht erlaubt";
 $a->strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert.";
 $a->strings["An invitation is required."] = "Eine Einladung wird benötigt";
 $a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden";
@@ -636,7 +636,7 @@ $a->strings["Please enter the required information."] = "Bitte gib die benötigt
 $a->strings["Failed to store account information."] = "Speichern der Account-Informationen fehlgeschlagen";
 $a->strings["Registration request at %s"] = "Registrierungsanfrage auf %s";
 $a->strings["Administrator"] = "Administrator";
-$a->strings["your registration password"] = "dein Registrierungspasswort";
+$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";
@@ -653,36 +653,36 @@ $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["%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["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]Deinen %4\$s[/zrl] kommentiert";
 $a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1\$d von %2\$s";
-$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s hat 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["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s hat eine Unterhaltung kommentiert, der Du folgst.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren.";
 $a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Hinweis] %s schrieb auf Deine Pinnwand";
-$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s hat auf deine Pinnwand auf %3\$s geschrieben";
-$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s hat auf [zrl=%3\$s]deine Pinnwand[/zrl] geschrieben";
-$a->strings["[Red:Notify] %s tagged you"] = "[Red 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 getaggt";
-$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["%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 erwähnt";
+$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s hat Dich auf %3\$s erwähnt";
+$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]hat Dich erwähnt[/zrl].";
+$a->strings["[Red:Notify] %1\$s poked you"] = "[Red Notify] %1\$s hat Dich angestupst";
+$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s hat Dich auf %3\$s angestupst";
+$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]hat Dich angestupst[/zrl].";
+$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Hinweis] %s hat Deinen Beitrag verschlagwortet";
+$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s hat Deinen Beitrag auf %3\$s verschlagwortet";
+$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]Deinen Beitrag[/zrl] verschlagwortet";
 $a->strings["[Red:Notify] Introduction received"] = "[Red: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["%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:Benachrichtigung] 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["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, Du hast einen Kontaktvorschlag von „%2\$s“ auf %3\$s erhalten";
+$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, Du hast [zrl=%2\$s]einen Kontaktvorschlag[/zrl] für %3\$s von %4\$s erhalten.";
 $a->strings["Name:"] = "Name:";
 $a->strings["Photo:"] = "Foto:";
 $a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen.";
@@ -718,7 +718,7 @@ $a->strings["Channel discovery failed. Website may be down or misconfigured."] =
 $a->strings["Response from remote channel was not understood."] = "Antwort des entfernten Kanals war unverständlich.";
 $a->strings["Response from remote channel was incomplete."] = "Antwort des entfernten Kanals war unvollständig.";
 $a->strings["local account not found."] = "Lokales Konto nicht gefunden.";
-$a->strings["Cannot connect to yourself."] = "Du kannst dich nicht mit dir selbst verbinden.";
+$a->strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden.";
 $a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde.";
 $a->strings["Default"] = "Standard";
 $a->strings["Embedded content"] = "Eingebetteter Inhalt";
@@ -739,11 +739,11 @@ $a->strings["Advanced - useful for creating group forum channels"] = "Fortgeschr
 $a->strings["Can chat with me (when available)"] = "Kann mit mir chatten (wenn verfügbar)";
 $a->strings["Can write to my \"public\" file storage"] = "Kann in meinen öffentlichen Dateiordner schreiben";
 $a->strings["Can edit my \"public\" pages"] = "Kann meine öffentlichen Seiten bearbeiten";
-$a->strings["Can source my \"public\" posts in derived channels"] = "Kann meine \"öffentlichen\" Beiträge als Quellen von Kanälen verwenden";
-$a->strings["Somewhat advanced - very useful in open communities"] = "Etwas Fortgeschritten - sehr nützlich in offenen Gemeinschaften.";
+$a->strings["Can source my \"public\" posts in derived channels"] = "Kann meine „öffentlichen“ Beiträge als Quellen für andere Kanäle verwenden";
+$a->strings["Somewhat advanced - very useful in open communities"] = "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften";
 $a->strings["Can send me bookmarks"] = "Darf mir Lesezeichen senden";
 $a->strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren";
-$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite dies nur, wenn du genau weißt, was du machst";
+$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust";
 $a->strings["Permission denied"] = "Keine Berechtigung";
 $a->strings["Item not found."] = "Element nicht gefunden.";
 $a->strings["Collection not found."] = "Sammlung nicht gefunden";
@@ -782,15 +782,17 @@ $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["Select a category of stuff. e.g. I ______ something"] = "Wähle eine Kategorie/Art, z.B. Ich ______ etwas";
+$a->strings["Post an activity"] = "Aktivitätsnachricht senden";
+$a->strings["Only sends to viewers of the applicable profile"] = "Nur an Betrachter des ausgewählten Profils senden";
 $a->strings["Name of thing e.g. something"] = "Name 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["Add Thing to your Profile"] = "Das Ding Deinem Profil hinzufügen";
+$a->strings["Total invitation limit exceeded."] = "Einladungslimit überschritten.";
 $a->strings["%s : Not a valid email address."] = "%s : Keine gültige Email Adresse.";
 $a->strings["Please join us on Red"] = "Schließe Dich uns an und werde Teil der Red-Matrix";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Einladungslimit überschritten. Bitte kontaktiere den Administrator deiner Seite.";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines Red-Servers.";
 $a->strings["%s : Message delivery failed."] = "%s : Nachricht konnte nicht zugestellt werden.";
 $a->strings["%d message sent."] = array(
 	0 => "%d Nachricht gesendet.",
@@ -800,14 +802,14 @@ $a->strings["You have no more invitations available"] = "Du hast keine weiteren
 $a->strings["Send invitations"] = "Einladungen senden";
 $a->strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:";
 $a->strings["Your message:"] = "Deine Nachricht:";
-$a->strings["You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralised communication and information tool."] = "Du bist herzlich eingeladen, mir und einigen anderen guten Freunden in die Red-Matrix zu folgen – einem revolutionär neuen, dezentralisierten Kommunikations- und Informationsnetzwerk.";
+$a->strings["You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralised communication and information tool."] = "Du bist herzlich eingeladen, mir und einigen anderen guten Freunden in die Red-Matrix zu folgen – einem revolutionär neuen, dezentralen Kommunikations- und Informationsnetzwerk.";
 $a->strings["You will need to supply this invitation code: \$invite_code"] = "Du musst dann den folgenden Einladungs-Code angeben: \$invite_code";
 $a->strings["Please visit my channel at"] = "Bitte besuche meinen Kanal auf";
-$a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "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:";
+$a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "Wenn Du Dich registriert hast (egal auf welchem Server in der Red-Matrix, sie sind alle miteinander verbunden) verbinde Dich bitte mit meinem Kanal in der Matrix. Adresse:";
 $a->strings["Click the [Register] link on the following page to join."] = "Klicke den [Registrieren]-Link auf der nächsten Seite, um dich anzumelden.";
-$a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "Für weitere Informationen über das Red Matrix Projekt und warum es das Potential hat das Internet wie wir es kennen grundlegend zu verändern schau dir bitte http://getzot.com an";
-$a->strings["Unable to locate original post."] = "Originalbeitrag kann nicht gefunden werden.";
-$a->strings["Empty post discarded."] = "Leerer Beitrag verworfen.";
+$a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "Für weitere Informationen über das Red-Matrix-Projekt und warum es das Potential hat, das Internet, wie wir es kennen, grundlegend zu verändern, besuche http://getzot.com";
+$a->strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden.";
+$a->strings["Empty post discarded."] = "Leeren Beitrag verworfen.";
 $a->strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben.";
 $a->strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert.";
 $a->strings["Wall Photos"] = "Wall Fotos";
@@ -825,7 +827,7 @@ $a->strings["Edit menu contents"] = "Bearbeite Menü Inhalte";
 $a->strings["Edit this menu"] = "Dieses Menü bearbeiten";
 $a->strings["New Menu"] = "Neues Menü";
 $a->strings["Menu name"] = "Menü Name";
-$a->strings["Must be unique, only seen by you"] = "Muss unverwechselbar sein, nur für dich sichtbar";
+$a->strings["Must be unique, only seen by you"] = "Muss eindeutig sein, ist aber nur für Dich sichtbar";
 $a->strings["Menu title"] = "Menü Titel";
 $a->strings["Menu title as seen by others"] = "Menü Titel wie er von anderen gesehen wird";
 $a->strings["Allow bookmarks"] = "Erlaube Lesezeichen";
@@ -839,148 +841,51 @@ $a->strings["Add or remove entries to this menu"] = "Einträge zu diesem Menü h
 $a->strings["Modify"] = "Ändern";
 $a->strings["Not found."] = "Nicht gefunden.";
 $a->strings["View"] = "Ansicht";
-$a->strings["Authorize application connection"] = "Zugriff der Anwendung authorizieren";
-$a->strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode bei der Anwendung ein:";
+$a->strings["Authorize application connection"] = "Zugriff für die Anwendung autorisieren";
+$a->strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode in der Anwendung ein:";
 $a->strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest du der Anwendung erlauben, deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für dich zu erstellen?";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?";
 $a->strings["Yes"] = "Ja";
 $a->strings["No"] = "Nein";
-$a->strings["No installed applications."] = "Keine installierten Applikationen";
+$a->strings["No installed applications."] = "Keine installierten Anwendungen.";
 $a->strings["Applications"] = "Anwendungen";
 $a->strings["Edit post"] = "Bearbeite Beitrag";
-$a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"] = "Red Matrix Gäste: Nutzername: {deine Email Adresse}; Passwort: +++";
+$a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"] = "Red-Matrix-Gäste: Nutzername: {Deine E-Mail-Adresse}; Passwort: +++";
 $a->strings["Bookmark added"] = "Lesezeichen hinzugefügt";
 $a->strings["My Bookmarks"] = "Meine Lesezeichen";
 $a->strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte";
-$a->strings["Name is required"] = "Name wird benötigt";
-$a->strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt";
-$a->strings["Update"] = "Update";
-$a->strings["Passwords do not match. Password unchanged."] = "Kennwörter stimmen nicht überein. Kennwort nicht verändert.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert.";
-$a->strings["Password changed."] = "Kennwort geändert.";
-$a->strings["Password update failed. Please try again."] = "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal.";
-$a->strings["Not valid email."] = "Keine gültige E-Mail Adresse.";
-$a->strings["Protected email address. Cannot change to that email."] = "Geschützte E-Mail Adresse. Diese kann nicht verändert werden.";
-$a->strings["System failure storing new email. Please try again."] = "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal.";
-$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
-$a->strings["Add application"] = "Anwendung hinzufügen";
-$a->strings["Name"] = "Name";
-$a->strings["Name of application"] = "Name der Anwendung";
-$a->strings["Consumer Key"] = "Consumer Key";
-$a->strings["Automatically generated - change if desired. Max length 20"] = "Automatisch erzeugt - ändern falls erwünscht. Maximale Länge 20";
-$a->strings["Consumer Secret"] = "Consumer Secret";
-$a->strings["Redirect"] = "Umleitung";
-$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "Umleitungs-URl - lasse dies frei außer deine Anwendung erfordert dies explizit";
-$a->strings["Icon url"] = "Symbol-URL";
-$a->strings["Optional"] = "Optional";
-$a->strings["You can't edit this application."] = "Diese Anwendung kann nicht bearbeitet werden.";
-$a->strings["Connected Apps"] = "Verbundene Apps";
-$a->strings["Client key starts with"] = "Client key beginnt mit";
-$a->strings["No name"] = "Kein Name";
-$a->strings["Remove authorization"] = "Authorisierung aufheben";
-$a->strings["No feature settings configured"] = "Keine Funktions-Einstellungen konfiguriert";
-$a->strings["Feature Settings"] = "Funktions-Einstellungen";
-$a->strings["Account Settings"] = "Konto-Einstellungen";
-$a->strings["Password Settings"] = "Kennwort-Einstellungen";
-$a->strings["New Password:"] = "Neues Passwort:";
-$a->strings["Confirm:"] = "Bestätigen:";
-$a->strings["Leave password fields blank unless changing"] = "Lasse die Passwort -Felder leer außer du möchtest das Passwort ändern";
-$a->strings["Email Address:"] = "Email Adresse:";
-$a->strings["Remove Account"] = "Konto entfernen";
-$a->strings["Warning: This action is permanent and cannot be reversed."] = "Achtung: Diese Aktion ist permanent und kann nicht rückgänging gemacht werden.";
-$a->strings["Off"] = "Aus";
-$a->strings["On"] = "An";
-$a->strings["Additional Features"] = "Zusätzliche Funktionen";
-$a->strings["Connector Settings"] = "Connector-Einstellungen";
-$a->strings["No special theme for mobile devices"] = "Keine spezielle Theme für mobile Geräte";
-$a->strings["Display Settings"] = "Anzeige-Einstellungen";
-$a->strings["Display Theme:"] = "Anzeige Theme:";
-$a->strings["Mobile Theme:"] = "Mobile Theme:";
-$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren";
-$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum von 10 Sekunden, kein Maximum";
-$a->strings["Maximum number of conversations to load at any time:"] = "Maximale Anzahl von Unterhaltungen die gleichzeitig geladen werden sollen:";
-$a->strings["Maximum of 100 items"] = "Maximum von 100 Beiträgen";
-$a->strings["Don't show emoticons"] = "Emoticons nicht zeigen";
-$a->strings["Nobody except yourself"] = "Niemand außer du selbst";
-$a->strings["Only those you specifically allow"] = "Nur die, denen du es explizit erlaubst";
-$a->strings["Anybody in your address book"] = "Jeder aus Ihrem Adressbuch";
-$a->strings["Anybody on this website"] = "Jeder auf dieser Website";
-$a->strings["Anybody in this network"] = "Jeder in diesem Netzwerk";
-$a->strings["Anybody on the internet"] = "Jeder im Internet";
-$a->strings["Publish your default profile in the network directory"] = "Veröffentliche dein Standard-Profil im Netzwerk-Verzeichnis";
-$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?";
-$a->strings["or"] = "oder";
-$a->strings["Your channel address is"] = "Deine Kanal-Adresse lautet";
-$a->strings["Channel Settings"] = "Kanal-Einstellungen";
-$a->strings["Basic Settings"] = "Grundeinstellungen";
-$a->strings["Your Timezone:"] = "Ihre Zeitzone:";
-$a->strings["Default Post Location:"] = "Standardstandort:";
-$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:";
-$a->strings["Adult Content"] = "Nicht Jugendfreie-Inhalte";
-$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dieser Kanal veröffentlicht regelmäßig Inhalte die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)";
-$a->strings["Security and Privacy Settings"] = "Sicherheits- und Datenschutz-Einstellungen";
-$a->strings["Hide my online presence"] = "Meine Online-Präsenz verbergen";
-$a->strings["Prevents displaying in your profile that you are online"] = "Verhindert die Anzeige deines Online-Status in deinem Profil";
-$a->strings["Simple Privacy Settings:"] = "Einfache Privatsphären-Einstellungen";
-$a->strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "";
-$a->strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "";
-$a->strings["Private - <em>default private, never open or public</em>"] = "";
-$a->strings["Blocked - <em>default blocked to/from everybody</em>"] = "";
-$a->strings["Advanced Privacy Settings"] = "";
-$a->strings["Maximum Friend Requests/Day:"] = "Maximale Kontaktanfragen pro Tag:";
-$a->strings["May reduce spam activity"] = "Kann die Spam-Aktivität verringern";
-$a->strings["Default Post Permissions"] = "Beitragszugriffrechte Standardeinstellungen";
-$a->strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)";
-$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:";
-$a->strings["Useful to reduce spamming"] = "Nützlich um Spam zu verringern";
-$a->strings["Notification Settings"] = "Benachrichtigungs-Einstellungen";
-$a->strings["By default post a status message when:"] = "Sende standardmäßig Status-Nachrichten wenn:";
-$a->strings["accepting a friend request"] = "einer Kontaktanfrage stattgegeben wurde";
-$a->strings["joining a forum/community"] = "ein Forum beigetreten wurde";
-$a->strings["making an <em>interesting</em> profile change"] = "eine <em>interessante</em> Änderung am Profil vorgenommen wurde";
-$a->strings["Send a notification email when:"] = "Eine Email Benachrichtigung senden wenn:";
-$a->strings["You receive an introduction"] = "Du eine Vorstellung erhältst";
-$a->strings["Your introductions are confirmed"] = "Deine Vorstellung bestätigt wurde.";
-$a->strings["Someone writes on your profile wall"] = "Jemand auf deine Pinnwand schreibt";
-$a->strings["Someone writes a followup comment"] = "Jemand einen Beitrag kommentiert";
-$a->strings["You receive a private message"] = "Du eine private Nachricht erhältst";
-$a->strings["You receive a friend suggestion"] = "Du einen Kontaktvorschlag erhältst";
-$a->strings["You are tagged in a post"] = "Du 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["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$s's %3\$s";
-$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalte - bitte lade die Seite zur Anzeige neu]";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$ss %3\$s";
+$a->strings["[Embedded content - reload page to view]"] = "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]";
 $a->strings["Channel not found."] = "Kanal nicht gefunden.";
 $a->strings["toggle full screen mode"] = "auf Vollbildmodus umschalten";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$s's %3\$s mit %4\$s getaggt";
-$a->strings["You must be logged in to see this page."] = "Du musst angemeldet sein um diese Seite betrachten zu können.";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s verschlagwortet";
+$a->strings["You must be logged in to see this page."] = "Du musst angemeldet sein, um diese Seite betrachten zu können.";
 $a->strings["Leave Room"] = "Raum verlassen";
 $a->strings["I am away right now"] = "Ich bin gerade nicht da";
 $a->strings["I am online"] = "Ich bin online";
-$a->strings["New Chatroom"] = "Neuen Chatraum";
-$a->strings["Chatroom Name"] = "Chatraum Name";
-$a->strings["%1\$s's Chatrooms"] = "%1\$s's Chat-Räume";
+$a->strings["New Chatroom"] = "Neuer Chatraum";
+$a->strings["Chatroom Name"] = "Name des Chatraums";
+$a->strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume";
 $a->strings["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["Visit %s's profile [%s]"] = "%ss Profil [%s] besuchen";
 $a->strings["View Connnections"] = "Zeige Verbindungen";
 $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:";
+$a->strings["Remove Item Tag"] = "Schlagwort entfernen";
+$a->strings["Select a tag to remove: "] = "Schlagwort zum Entfernen auswählen:";
 $a->strings["Remove"] = "Entferne";
 $a->strings["Continue"] = "Fortfahren";
-$a->strings["Premium Channel Setup"] = "Prämium-Kanal Einrichtung";
-$a->strings["Enable premium channel connection restrictions"] = "Einschränkungen für den Prämium-Kanal aktivieren";
-$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Bitte gib deine Nutzungseinschränkungen ein, z.B. Paypal Quittung, Nutzungsbestimmungen etc.";
-$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen, vor dem Verbinden mit diesem Kanal nötig.";
-$a->strings["Potential connections will then see the following text before proceeding:"] = "Potentielle Verbindungen werden den folgenden Text sehen bevor fortgefahren wird:";
-$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Mit dem fortfahren bestätige ich die Erfüllung aller Anweisungen die vom Seitenbetreiber erteilt wurden.";
-$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Der Seitenbetreiber hat keine speziellen Anweisungen für Kanal-Betreiber hinterlegt.)";
-$a->strings["Restricted or Premium Channel"] = "Eingeschränkter oder Prämium-Kanal";
+$a->strings["Premium Channel Setup"] = "Premium-Kanal-Einrichtung";
+$a->strings["Enable premium channel connection restrictions"] = "Einschränkungen für einen Premium-Kanal aktivieren";
+$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc.";
+$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig.";
+$a->strings["Potential connections will then see the following text before proceeding:"] = "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:";
+$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen aus dieser Seite.";
+$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)";
+$a->strings["Restricted or Premium Channel"] = "Eingeschränkter oder Premium-Kanal";
 $a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
-$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite";
-$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!";
+$a->strings["Delegate Page Management"] = "Delegiere das Management für diese Seite";
+$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!";
 $a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager";
 $a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
 $a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
@@ -1003,7 +908,8 @@ $a->strings["Add menu element"] = "Menüelement hinzufügen";
 $a->strings["Delete this menu item"] = "Lösche dieses Menü-Bestandteil";
 $a->strings["Edit this menu item"] = "Bearbeite dieses Menü-Bestandteil";
 $a->strings["New Menu Element"] = "Neues Menü-Bestandteil";
-$a->strings["Menu Item Permissions"] = "Menü-Element Zugriffsrechte";
+$a->strings["Menu Item Permissions"] = "Zugriffsrechte des Menü-Elements";
+$a->strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)";
 $a->strings["Link text"] = "Link Text";
 $a->strings["URL of link"] = "URL des Links";
 $a->strings["Use Red magic-auth if available"] = "Verwende Red Magic-Auth wenn verfügbar";
@@ -1014,6 +920,11 @@ $a->strings["Menu item not found."] = "Menü-Bestandteil nicht gefunden.";
 $a->strings["Menu item deleted."] = "Menü-Bestandteil gelöscht.";
 $a->strings["Menu item could not be deleted."] = "Menü-Bestandteil kann nicht gelöscht werden.";
 $a->strings["Edit Menu Element"] = "Bearbeite Menü-Bestandteil";
+$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Identifikator";
+$a->strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits-Editor";
+$a->strings["Click on a contact to add or remove."] = "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen.";
+$a->strings["Visible To"] = "Sichtbar für";
+$a->strings["All Connections"] = "Alle Verbindungen";
 $a->strings["Collection created."] = "Sammlung erstellt.";
 $a->strings["Could not create collection."] = "Sammlung kann nicht erstellt werden.";
 $a->strings["Collection updated."] = "Sammlung aktualisiert.";
@@ -1026,11 +937,6 @@ $a->strings["Collection Editor"] = "Sammlung-Editor";
 $a->strings["Members"] = "Mitglieder";
 $a->strings["All Connected Channels"] = "Alle verbundenen Kanäle";
 $a->strings["Click on a channel to add or remove."] = "Wähle einen Kanal zum hinzufügen oder entfernen aus.";
-$a->strings["Invalid profile identifier."] = "Ungültiger Profil Identifikator";
-$a->strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits Editor";
-$a->strings["Click on a contact to add or remove."] = "Wähle einen Kontakt zum Hinzufügen oder Löschen aus.";
-$a->strings["Visible To"] = "Sichtbar für";
-$a->strings["All Connections"] = "Alle Verbindungen";
 $a->strings["Theme settings updated."] = "Theme-Einstellungen aktualisiert.";
 $a->strings["Site"] = "Seite";
 $a->strings["Users"] = "Benutzer";
@@ -1040,8 +946,8 @@ $a->strings["Server"] = "Server";
 $a->strings["DB updates"] = "DB-Aktualisierungen";
 $a->strings["Logs"] = "Protokolle";
 $a->strings["Plugin Features"] = "Plug-In Funktionen";
-$a->strings["User registrations waiting for confirmation"] = "Nutzer Anmeldungen die auf Bestätigung warten";
-$a->strings["Message queues"] = "Nachrichten Warteschlange";
+$a->strings["User registrations waiting for confirmation"] = "Nutzer-Anmeldungen, die auf Bestätigung warten";
+$a->strings["Message queues"] = "Nachrichten-Warteschlangen";
 $a->strings["Administration"] = "Administration";
 $a->strings["Summary"] = "Zusammenfassung";
 $a->strings["Registered users"] = "Registrierte Benutzer";
@@ -1049,7 +955,8 @@ $a->strings["Pending registrations"] = "Ausstehende Registrierungen";
 $a->strings["Version"] = "Version";
 $a->strings["Active plugins"] = "Aktive Plug-Ins";
 $a->strings["Site settings updated."] = "Site-Einstellungen aktualisiert.";
-$a->strings["No special theme for accessibility"] = "Kein spezielles Accessibility Theme vorhanden";
+$a->strings["No special theme for mobile devices"] = "Keine spezielle Theme für mobile Geräte";
+$a->strings["No special theme for accessibility"] = "Kein spezielles Accessibility-Theme vorhanden";
 $a->strings["Closed"] = "Geschlossen";
 $a->strings["Requires approval"] = "Genehmigung erforderlich";
 $a->strings["Open"] = "Offen";
@@ -1063,59 +970,59 @@ $a->strings["Policies"] = "Richtlinien";
 $a->strings["Advanced"] = "Fortgeschritten";
 $a->strings["Site name"] = "Seitenname";
 $a->strings["Banner/Logo"] = "Banner/Logo";
-$a->strings["Administrator Information"] = "Administrator Informationen";
-$a->strings["Contact information for site administrators.  Displayed on siteinfo page.  BBCode can be used here"] = "Kontaktinformationen für Administratoren der Seite. Wird auf der siteinfo Seite angezeigt. BBCode kann verwendet werden.";
+$a->strings["Administrator Information"] = "Administrator-Informationen";
+$a->strings["Contact information for site administrators.  Displayed on siteinfo page.  BBCode can be used here"] = "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden.";
 $a->strings["System language"] = "System-Sprache";
 $a->strings["System theme"] = "System-Theme";
-$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Standard System-Theme - kann durch Nutzerprofile überschieben werden - <a href='#' id='cnftheme'>Theme.Einstellungen ändern</a>";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>";
 $a->strings["Mobile system theme"] = "Mobile System-Theme:";
 $a->strings["Theme for mobile devices"] = "Theme für mobile Geräte";
-$a->strings["Accessibility system theme"] = "Accessibility System-Theme";
-$a->strings["Accessibility theme"] = "Accessibility Theme";
+$a->strings["Accessibility system theme"] = "Accessibility-System-Theme";
+$a->strings["Accessibility theme"] = "Accessibility-Theme";
 $a->strings["Channel to use for this website's static pages"] = "Kanal für die statischen Seiten dieser Webseite verwenden";
 $a->strings["Site Channel"] = "Seiten Kanal";
 $a->strings["Maximum image size"] = "Maximale Bildgröße";
-$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Größe in Bytes von hochgeladenen Bildern. Standard ist 0, was keine Einschränkung bedeutet.";
-$a->strings["Register policy"] = "Registrierungsmethode";
+$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung).";
+$a->strings["Register policy"] = "Registrierungsrichtlinie";
 $a->strings["Access policy"] = "Zugangsrichtlinien";
 $a->strings["Register text"] = "Registrierungstext";
-$a->strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungsseite angezeigt.";
-$a->strings["Accounts abandoned after x days"] = "Accounts gelten nach X Tagen als unbenutzt";
-$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine Systemressourchen auf das Pollen von externen Seiten wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit.";
+$a->strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungs-Seite angezeigt.";
+$a->strings["Accounts abandoned after x days"] = "Konten gelten nach X Tagen als unbenutzt";
+$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit.";
 $a->strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte";
 $a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben.";
 $a->strings["Allowed email domains"] = "Erlaubte Domains für E-Mails";
 $a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben.";
 $a->strings["Block public"] = "Öffentlichen Zugriff blockieren";
-$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist.";
+$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Zugriff auf sonst öffentliche persönliche Seiten blockieren, wenn man nicht eingeloggt ist.";
 $a->strings["Force publish"] = "Veröffentlichung erzwingen";
-$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen.";
+$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen.";
 $a->strings["No login on Homepage"] = "Kein Login auf der Homepage";
-$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Wählen um das Login Formular auf der Startseite der Seite zu verbergen, z.B. weil es das Layout der Homepage des Seiten-Kanals stört.";
+$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Ktivieren, um das Login-Formular auf der Startseite der Seite zu verbergen, z.B. weil es das Layout der Homepage des Seiten-Kanals stört.";
 $a->strings["Proxy user"] = "Proxy Benutzer";
 $a->strings["Proxy URL"] = "Proxy URL";
 $a->strings["Network timeout"] = "Netzwerk-Timeout";
-$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen).";
+$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen).";
 $a->strings["Delivery interval"] = "Auslieferung Intervall";
-$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server.";
+$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server.";
 $a->strings["Poll interval"] = "Abfrageintervall";
-$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Verzögere Hintergrundprozesse, um diese Anzahl an Sekunden um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet.";
-$a->strings["Maximum Load Average"] = "Maximum Load Average";
-$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50";
+$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet.";
+$a->strings["Maximum Load Average"] = "Maximales Load Average";
+$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50";
 $a->strings["No server found"] = "Kein Server gefunden";
 $a->strings["ID"] = "ID";
 $a->strings["for channel"] = "für Kanal";
 $a->strings["on server"] = "auf Server";
 $a->strings["Status"] = "Status";
 $a->strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert";
-$a->strings["Executing %s failed. Check system logs."] = "Aufrufen von %s fehlgeschlagen. Überprüfe die Systemlogs.";
-$a->strings["Update %s was successfully applied."] = "Update %s wurde erfolgreich angewandt.";
-$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s liefert keinen Rückgabewert. Unbekannt ob es erfolgreich war.";
-$a->strings["Update function %s could not be found."] = "Update Funktion %s konnte nicht gefunden werden.";
+$a->strings["Executing %s failed. Check system logs."] = "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle.";
+$a->strings["Update %s was successfully applied."] = "Update %s wurde erfolgreich ausgeführt.";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt.";
+$a->strings["Update function %s could not be found."] = "Update-Funktion %s konnte nicht gefunden werden.";
 $a->strings["No failed updates."] = "Keine fehlgeschlagenen Aktualisierungen.";
 $a->strings["Failed Updates"] = "Fehlgeschlagene Aktualisierungen";
-$a->strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (wenn das Update manuell angewandt wurde)";
-$a->strings["Attempt to execute this update step automatically"] = "Versuche diesen Updateschritt automatisch anzuwenden";
+$a->strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)";
+$a->strings["Attempt to execute this update step automatically"] = "Versuche, diesen Updateschritt automatisch auszuführen";
 $a->strings["%s user blocked/unblocked"] = array(
 	0 => "%s Nutzer blockiert/freigegeben",
 	1 => "%s Nutzer blockiert/freigegeben",
@@ -1129,7 +1036,7 @@ $a->strings["User '%s' deleted"] = "Benutzer '%s' gelöscht";
 $a->strings["User '%s' unblocked"] = "Benutzer '%s' freigegeben";
 $a->strings["User '%s' blocked"] = "Benutzer '%s' blockiert";
 $a->strings["select all"] = "Alle auswählen";
-$a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf deine Bestätigung warten";
+$a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten";
 $a->strings["Request date"] = "Antragsdatum";
 $a->strings["No registrations."] = "Keine Registrierungen.";
 $a->strings["Approve"] = "Genehmigen";
@@ -1140,8 +1047,8 @@ $a->strings["Register date"] = "Registrierungs-Datum";
 $a->strings["Last login"] = "Letzte Anmeldung";
 $a->strings["Expires"] = "Verfällt";
 $a->strings["Service Class"] = "Service-Klasse";
-$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Markierte Nutzer werden gelöscht\\n\\nAlles was diese Nutzer auf dieser Seite veröffentlicht haben wird permanent gelöscht\\n\\nBist du sicher?";
-$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Der Nutzer {0} wird gelöscht\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat wird permanent gelöscht werden\\n\\nBist du sicher?";
+$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Die markierten Nutzer werden gelöscht!\\n\\nAlles, was diese Nutzer auf dieser Seite veröffentlicht haben, wird endgültig gelöscht!\\n\\nBist Du sicher?";
+$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Der Nutzer {0} wird gelöscht!\\n\\nAlles, was dieser Nutzer auf dieser Seite veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?";
 $a->strings["Plugin %s disabled."] = "Plug-In %s deaktiviert.";
 $a->strings["Plugin %s enabled."] = "Plug-In %s aktiviert.";
 $a->strings["Disable"] = "Deaktivieren";
@@ -1157,9 +1064,9 @@ $a->strings["Log settings updated."] = "Protokoll-Einstellungen aktualisiert.";
 $a->strings["Clear"] = "Leeren";
 $a->strings["Debugging"] = "Debugging";
 $a->strings["Log file"] = "Protokolldatei";
-$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Muss für den Web-Server schreibbar sein. Relativ zum Red Stammverzeichnis.";
+$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Muss für den Web-Server schreibbar sein. Relativ zum Red-Stammverzeichnis.";
 $a->strings["Log level"] = "Protokollstufe";
-$a->strings["- select -"] = "-auswählen-";
+$a->strings["- select -"] = "– auswählen –";
 $a->strings["Welcome to %s"] = "Willkommen auf %s";
 $a->strings["Item not found"] = "Element nicht gefunden";
 $a->strings["Item is not editable"] = "Element kann nicht bearbeitet werden.";
@@ -1173,15 +1080,15 @@ $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["Could not access contact record."] = "Konnte auf den Kontakteintrag nicht zugreifen.";
-$a->strings["Could not locate selected profile."] = "Konnte das gewählte Profil nicht finden.";
+$a->strings["Could not access contact record."] = "Konnte nicht auf den Kontakteintrag zugreifen.";
+$a->strings["Could not locate selected profile."] = "Gewähltes Profil nicht gefunden.";
 $a->strings["Connection updated."] = "Verbindung aktualisiert.";
 $a->strings["Failed to update connection record."] = "Konnte den Verbindungseintrag nicht aktualisieren.";
-$a->strings["Could not access address book record."] = "Konnte nicht auf den Eintrag im Adressbuch zugreifen.";
+$a->strings["Could not access address book record."] = "Konnte nicht auf den Adressbuch-Eintrag zugreifen.";
 $a->strings["Refresh failed - channel is currently unavailable."] = "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar.";
 $a->strings["Channel has been unblocked"] = "Kanal nicht mehr blockiert";
 $a->strings["Channel has been blocked"] = "Kanal blockiert";
-$a->strings["Unable to set address book parameters."] = "Konnte die Adressbuch Parameter nicht setzen.";
+$a->strings["Unable to set address book parameters."] = "Konnte die Adressbuch-Parameter nicht setzen.";
 $a->strings["Channel has been unignored"] = "Kanal wird nicht mehr ignoriert";
 $a->strings["Channel has been ignored"] = "Kanal wird ignoriert";
 $a->strings["Channel has been unarchived"] = "Kanal wurde aus dem Archiv zurück geholt";
@@ -1191,51 +1098,51 @@ $a->strings["Channel has been hidden"] = "Kanal wurde versteckt";
 $a->strings["Channel has been approved"] = "Kanal wurde zugelassen";
 $a->strings["Channel has been unapproved"] = "Zulassung des Kanals entfernt";
 $a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
-$a->strings["View %s's profile"] = "%s's Profil ansehen";
-$a->strings["Refresh Permissions"] = "Zugriffsrechte auffrischen";
+$a->strings["View %s's profile"] = "%ss Profil ansehen";
+$a->strings["Refresh Permissions"] = "Zugriffsrechte neu laden";
 $a->strings["Fetch updated permissions"] = "Aktualisierte Zugriffsrechte abfragen";
 $a->strings["Recent Activity"] = "Kürzliche Aktivitäten";
 $a->strings["View recent posts and comments"] = "Betrachte die neuesten Beiträge und Kommentare";
-$a->strings["Block or Unblock this connection"] = "Verbindung blockieren oder frei geben";
+$a->strings["Block or Unblock this connection"] = "Verbindung blockieren oder freigeben";
 $a->strings["Unignore"] = "Nicht ignorieren";
 $a->strings["Ignore"] = "Ignorieren";
 $a->strings["Ignore or Unignore this connection"] = "Verbindung ignorieren oder wieder beachten";
 $a->strings["Unarchive"] = "Aus Archiv zurückholen";
 $a->strings["Archive"] = "Archivieren";
-$a->strings["Archive or Unarchive this connection"] = "Archiviere diese Verbindung oder hole sie aus dem Archiv zurück";
-$a->strings["Unhide"] = "aufdecken";
-$a->strings["Hide"] = "Verbergen";
-$a->strings["Hide or Unhide this connection"] = "Diese Verbindung verstecken oder aufdecken";
+$a->strings["Archive or Unarchive this connection"] = "Verbindung archivieren oder aus dem Archiv zurückholen";
+$a->strings["Unhide"] = "Wieder sichtbar machen";
+$a->strings["Hide"] = "Verstecken";
+$a->strings["Hide or Unhide this connection"] = "Diese Verbindung verstecken oder wieder sichtbar machen";
 $a->strings["Delete this connection"] = "Verbindung löschen";
 $a->strings["Unknown"] = "Unbekannt";
 $a->strings["Approve this connection"] = "Verbindung genehmigen";
-$a->strings["Accept connection to allow communication"] = "Aktzeptiere die Verbindung um Kommunikation zu ermöglichen";
+$a->strings["Accept connection to allow communication"] = "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen";
 $a->strings["Automatic Permissions Settings"] = "Automatische Berechtigungs-Einstellungen";
 $a->strings["Connections: settings for %s"] = "Verbindungseinstellungen für %s";
-$a->strings["When receiving a channel introduction, any permissions provided here will be applied to the new connection automatically and the introduction approved. Leave this page if you do not wish to use this feature."] = "Wenn eine Kanal-Vorstellung empfangen wird, werden die hier getroffenen Einstellungen automatisch angewandt und der Anfrage wird stattgegeben. Verlasse diese Seite, wenn du dieses Feature nicht verwanden möchtest.";
-$a->strings["Slide to adjust your degree of friendship"] = "Schieben um den Grad der Freundschaft zu wählen";
-$a->strings["inherited"] = "Geerbt";
-$a->strings["Connection has no individual permissions!"] = "Diese Verbindung hat keine individuellen Zugriffseinstellungen.";
-$a->strings["This may be appropriate based on your <a href=\"settings\">privacy settings</a>, though you may wish to review the \"Advanced Permissions\"."] = "Abhängig von deinen <a href=\"settings\">Privatsphären Einstellungen</a> könnte dies angebracht sein, eventuell solltest du aber die \"Erweiterte Zugriffsrechte\" überprüfen.";
+$a->strings["When receiving a channel introduction, any permissions provided here will be applied to the new connection automatically and the introduction approved. Leave this page if you do not wish to use this feature."] = "Wenn eine Verbindungsanfrage empfangen wird, werden die hier getroffenen Einstellungen automatisch angewandt, und die Anfrage wird genehmigt. Verlasse diese Seite, wenn Du diese Funktion nicht verwenden möchtest.";
+$a->strings["Slide to adjust your degree of friendship"] = "Verschieben, um den Grad der Freundschaft zu einzustellen";
+$a->strings["inherited"] = "geerbt";
+$a->strings["Connection has no individual permissions!"] = "Diese Verbindung hat keine individuellen Zugriffsrechte!";
+$a->strings["This may be appropriate based on your <a href=\"settings\">privacy settings</a>, though you may wish to review the \"Advanced Permissions\"."] = "Abhängig von Deinen <a href=\"settings\">Privatsphäre-Einstellungen</a> könnte das passen, eventuell solltest Du aber die „Zugriffsrechte für Fortgeschrittene“ überprüfen.";
 $a->strings["Profile Visibility"] = "Sichtbarkeit des Profils";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn deine Profilseite über eine verifizierte Verbindung aufgerufen wird.";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird.";
 $a->strings["Contact Information / Notes"] = "Kontaktinformationen / Notizen";
-$a->strings["Edit contact notes"] = "Kontaktnotizen editieren";
+$a->strings["Edit contact notes"] = "Kontaktnotizen bearbeiten";
 $a->strings["Their Settings"] = "Deren Einstellungen";
 $a->strings["My Settings"] = "Meine Einstellungen";
 $a->strings["Forum Members"] = "Forum Mitglieder";
 $a->strings["Soapbox"] = "Marktschreier";
-$a->strings["Full Sharing (typical social network permissions)"] = "";
-$a->strings["Cautious Sharing "] = "";
-$a->strings["Follow Only"] = "Nur Folgen";
-$a->strings["Individual Permissions"] = "Individuelle Zugriffseinstellungen";
-$a->strings["Some permissions may be inherited from your channel <a href=\"settings\">privacy settings</a>, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = "";
-$a->strings["Advanced Permissions"] = "Erweiterte Zugriffsrechte";
-$a->strings["Simple Permissions (select one and submit)"] = "";
-$a->strings["Visit %s's profile - %s"] = "%s's Profil besuchen - %s";
-$a->strings["Block/Unblock contact"] = "Geblockt Status ein- / ausschalten";
+$a->strings["Full Sharing (typical social network permissions)"] = "Vollumfängliches Teilen (übliche Berechtigungen in sozialen Netzwerken)";
+$a->strings["Cautious Sharing "] = "Vorsichtiges Teilen";
+$a->strings["Follow Only"] = "Nur folgen";
+$a->strings["Individual Permissions"] = "Individuelle Zugriffsrechte";
+$a->strings["Some permissions may be inherited from your channel <a href=\"settings\">privacy settings</a>, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = "Einige Berechtigungen werden von den <a href=\"settings\">Sicherheits- und Privatsphäre-Einstellungen</a> dieses Kanals geerbt, die eine höhere Priorität haben als die Einstellungen bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat das keine Auswirkungen.";
+$a->strings["Advanced Permissions"] = "Zugriffsrechte für Fortgeschrittene";
+$a->strings["Simple Permissions (select one and submit)"] = "Einfache Berechtigungs-Einstellungen (wähle eine aus und klicke auf Senden)";
+$a->strings["Visit %s's profile - %s"] = "%ss Profil besuchen - %s";
+$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freigeben";
 $a->strings["Ignore contact"] = "Kontakt ignorieren";
-$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
+$a->strings["Repair URL settings"] = "URL-Einstellungen reparieren";
 $a->strings["View conversations"] = "Unterhaltungen anzeigen";
 $a->strings["Delete contact"] = "Kontakt löschen";
 $a->strings["Last update:"] = "Letzte Aktualisierung:";
@@ -1247,9 +1154,9 @@ $a->strings["Currently archived"] = "Derzeit archiviert";
 $a->strings["Currently pending"] = "Derzeit anstehend";
 $a->strings["Hide this contact from others"] = "Diese Verbindung vor den anderen verbergen.";
 $a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>können</strong> immer noch sichtbar sein";
-$a->strings["Layout Help"] = "Layout Hilfe";
-$a->strings["Help with this feature"] = "Hilfe zu diesem Feature";
-$a->strings["Layout Name"] = "Layout Name";
+$a->strings["Layout Help"] = "Layout-Hilfe";
+$a->strings["Help with this feature"] = "Hilfe zu dieser Funktion";
+$a->strings["Layout Name"] = "Layout-Name";
 $a->strings["Help:"] = "Hilfe:";
 $a->strings["Not Found"] = "Nicht gefunden";
 $a->strings["Page not found."] = "Seite nicht gefunden.";
@@ -1271,11 +1178,11 @@ $a->strings["Profile unavailable to clone."] = "Profil kann nicht geklont werden
 $a->strings["Profile Name is required."] = "Profil-Name erforderlich.";
 $a->strings["Marital Status"] = "Familienstand";
 $a->strings["Romantic Partner"] = "Romantische Partner";
-$a->strings["Likes"] = "Gefällt-mir";
-$a->strings["Dislikes"] = "Gefällt-mir-nicht";
+$a->strings["Likes"] = "Gefällt";
+$a->strings["Dislikes"] = "Gefällt nicht";
 $a->strings["Work/Employment"] = "Arbeit/Anstellung";
 $a->strings["Religion"] = "Religion";
-$a->strings["Political Views"] = "Politische Anscihten";
+$a->strings["Political Views"] = "Politische Ansichten";
 $a->strings["Gender"] = "Geschlecht";
 $a->strings["Sexual Preference"] = "Sexuelle Orientierung";
 $a->strings["Homepage"] = "Webseite";
@@ -1283,7 +1190,7 @@ $a->strings["Interests"] = "Hobbys/Interessen";
 $a->strings["Address"] = "Adresse";
 $a->strings["Location"] = "Ort";
 $a->strings["Profile updated."] = "Profil aktualisiert.";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Verberge die Liste deiner Kontakte vor Betrachtern dieses Profils";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Deine Kontaktliste vor Betrachtern dieses Profils verbergen?";
 $a->strings["Edit Profile Details"] = "Bearbeite Profil-Details";
 $a->strings["View this profile"] = "Dieses Profil ansehen";
 $a->strings["Change Profile Photo"] = "Profilfoto ändern";
@@ -1292,14 +1199,14 @@ $a->strings["Clone this profile"] = "Dieses Profil klonen";
 $a->strings["Delete this profile"] = "Dieses Profil löschen";
 $a->strings["Profile Name:"] = "Profilname:";
 $a->strings["Your Full Name:"] = "Dein voller Name:";
-$a->strings["Title/Description:"] = "Titel/Beschreibung:";
+$a->strings["Title/Description:"] = "Titel/Stellenbeschreibung:";
 $a->strings["Your Gender:"] = "Dein Geschlecht:";
 $a->strings["Birthday (%s):"] = "Geburtstag (%s):";
 $a->strings["Street Address:"] = "Straße und Hausnummer:";
 $a->strings["Locality/City:"] = "Wohnort:";
 $a->strings["Postal/Zip Code:"] = "Postleitzahl:";
 $a->strings["Country:"] = "Land:";
-$a->strings["Region/State:"] = "Region/Bundesstaat";
+$a->strings["Region/State:"] = "Region/Bundesstaat:";
 $a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Beziehungsstatus:";
 $a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)";
 $a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com";
@@ -1307,9 +1214,9 @@ $a->strings["Since [date]:"] = "Seit [Datum]:";
 $a->strings["Homepage URL:"] = "Homepage URL:";
 $a->strings["Religious Views:"] = "Religiöse Ansichten:";
 $a->strings["Keywords:"] = "Schlüsselwörter:";
-$a->strings["Example: fishing photography software"] = "Beispiel: fischen Fotografie Software";
-$a->strings["Used in directory listings"] = "Wird in Verzeichnis Auflistungen verwendet";
-$a->strings["Tell us about yourself..."] = "Erzähl uns ein wenig von Dir...";
+$a->strings["Example: fishing photography software"] = "Beispiel: Angeln Fotografie Software";
+$a->strings["Used in directory listings"] = "Wird in Verzeichnis-Auflistungen verwendet";
+$a->strings["Tell us about yourself..."] = "Erzähle uns ein wenig von Dir …";
 $a->strings["Hobbies/Interests"] = "Hobbys/Interessen";
 $a->strings["Contact information and Social Networks"] = "Kontaktinformation und soziale Netzwerke";
 $a->strings["My other channels"] = "Meine anderen Kanäle";
@@ -1320,165 +1227,267 @@ $a->strings["Film/dance/culture/entertainment"] = "Film/Tanz/Kultur/Unterhaltung
 $a->strings["Love/romance"] = "Liebe/Romantik";
 $a->strings["Work/employment"] = "Arbeit/Anstellung";
 $a->strings["School/education"] = "Schule/Ausbildung";
-$a->strings["This is your <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["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Das ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden im Internet sichtbar sein.";
 $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["Include desirable objects in your profile"] = "Binde begehrenswerte Dinge in Dein Profil ein";
 $a->strings["Channel added."] = "Kanal hinzugefügt.";
-$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Entfernte Authentifizierung blockiert. Du bist lokal auf dieser Seite angemeldet. Bitte melde dich ab und versuche es erneut.";
+$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut.";
 $a->strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich.";
 $a->strings["This site is not a directory server"] = "Diese Website ist kein Verzeichnis-Server";
 $a->strings["Failed to create source. No channel selected."] = "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt.";
 $a->strings["Source created."] = "Quelle erstellt.";
 $a->strings["Source updated."] = "Quelle aktualisiert.";
 $a->strings["*"] = "*";
-$a->strings["Manage remote sources of content for your channel."] = "Entfernte Quellen von Inhalten deines Kanals verwalten.";
+$a->strings["Manage remote sources of content for your channel."] = "Quellen von Inhalten Deines Kanals verwalten.";
 $a->strings["New Source"] = "Neue Quelle";
 $a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals.";
-$a->strings["Only import content with these words (one per line)"] = "Importiere ausschließlich Beiträge, die folgende Wörter (eines pro Zeile) enthalten";
-$a->strings["Leave blank to import all public content"] = "Leer lassen um alle öffentlichen Beiträge zu importieren";
+$a->strings["Only import content with these words (one per line)"] = "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten";
+$a->strings["Leave blank to import all public content"] = "Leer lassen, um alle öffentlichen Beiträge zu importieren";
 $a->strings["Channel Name"] = "Name des Kanals";
 $a->strings["Source not found."] = "Quelle nicht gefunden.";
 $a->strings["Edit Source"] = "Quelle bearbeiten";
 $a->strings["Delete Source"] = "Quelle löschen";
 $a->strings["Source removed"] = "Quelle gelöscht";
 $a->strings["Unable to remove source."] = "Konnte die Quelle nicht löschen.";
-$a->strings["Remote privacy information not available."] = "Entfernte Privatsphären Einstellungen sind nicht verfügbar.";
+$a->strings["Remote privacy information not available."] = "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar.";
 $a->strings["Visible to:"] = "Sichtbar für:";
 $a->strings["Hub not found."] = "Server nicht gefunden.";
 $a->strings["Red Matrix Server - Setup"] = "Red Matrix Server - Installation";
 $a->strings["Could not connect to database."] = "Kann nicht mit der Datenbank verbinden.";
-$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Konnte die angegebene Webseiten URL nicht erreichen. Möglicherweise ein Problem mit dem SSL Zertifikat oder dem DNS.";
+$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS.";
 $a->strings["Could not create table."] = "Kann Tabelle nicht erstellen.";
-$a->strings["Your site database has been installed."] = "Die Datenbank deiner Seite wurde installiert.";
-$a->strings["You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql."] = "Eventuell musst du die Datei \"install/database.sql\" händisch mit phpmyadmin oder mysql importieren.";
+$a->strings["Your site database has been installed."] = "Die Datenbank Deines Servers wurde installiert.";
+$a->strings["You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql."] = "Eventuell musst Du die Datei \"install/database.sql\" per Hand mit phpmyadmin oder mysql importieren.";
 $a->strings["Please see the file \"install/INSTALL.txt\"."] = "Lies die Datei \"install/INSTALL.txt\".";
 $a->strings["System check"] = "Systemprüfung";
 $a->strings["Check again"] = "Bitte nochmal prüfen";
 $a->strings["Database connection"] = "Datenbank Verbindung";
-$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "Um die Red Matrix installieren zu können, müssen wir wissen wie wir deine Datenbank kontaktieren können.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere deinen Hosting Provider oder den Administrator der Seite wenn du Fragen zu diesen Einstellungen haben solltest.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor du fortfährst.";
+$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "Um die Red-Matrix installieren zu können, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst.";
 $a->strings["Database Server Name"] = "Datenbank-Servername";
 $a->strings["Default is localhost"] = "Standard ist localhost";
 $a->strings["Database Port"] = "Datenbank-Port";
-$a->strings["Communication port number - use 0 for default"] = "Port Nummer zur Kommunikation - verwende 0 für die Standardeinstellung:";
+$a->strings["Communication port number - use 0 for default"] = "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung";
 $a->strings["Database Login Name"] = "Datenbank-Benutzername";
 $a->strings["Database Login Password"] = "Datenbank-Kennwort";
 $a->strings["Database Name"] = "Datenbank-Name";
 $a->strings["Site administrator email address"] = "E-Mail Adresse des Seiten-Administrators";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die Email-Adresse deines Accounts muss dieser Adresse entsprechen, damit du Zugriff zum Admin Panel erhältst.";
-$a->strings["Website URL"] = "Webseiten URL";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst.";
+$a->strings["Website URL"] = "Server-URL";
 $a->strings["Please use SSL (https) URL if available."] = "Nutze wenn möglich eine SSL-URL (https).";
-$a->strings["Please select a default timezone for your website"] = "Standard-Zeitzone für deine Website";
+$a->strings["Please select a default timezone for your website"] = "Standard-Zeitzone für Deinen Server";
 $a->strings["Site settings"] = "Seiteneinstellungen";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte die Kommandozeilen Version von PHP nicht im PATH des Servers finden.";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Solltest du keine Kommandozeilen Version von PHP auf dem Server installiert haben wirst du nicht in der Lage sein Hintergrundprozesse via cron auszuführen.";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden.";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen.";
 $a->strings["PHP executable path"] = "PHP Pfad zu ausführbarer Datei";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den vollen Pfad zum PHP Interpreter an. Du kannst dieses Felds frei lassen und mit der Installation fortfahren.";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren.";
 $a->strings["Command line PHP"] = "PHP Befehlszeile";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilen Version von PHP auf deinem System hat \"register_argc_argv\" nicht aktiviert.";
-$a->strings["This is required for message delivery to work."] = "Dies wird benötigt, damit die Auslieferung von Nachrichten funktioniert.";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert.";
+$a->strings["This is required for message delivery to work."] = "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert.";
 $a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die \"openssl_pkey_new\" Funktion auf diesem System ist nicht in der Lage Schlüssel für die Verschlüsselung zu erzeugen.";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn du Windows verwendest, siehe  http://www.php.net/manual/en/openssl.installation.php für eine Installationsanleitung.";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen.";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung.";
 $a->strings["Generate encryption keys"] = "Verschlüsselungsschlüssel  generieren";
-$a->strings["libCurl PHP module"] = "libCurl PHP Modul";
-$a->strings["GD graphics PHP module"] = "GD Graphik PHP Modul";
-$a->strings["OpenSSL PHP module"] = "OpenSSL PHP Modul";
-$a->strings["mysqli PHP module"] = "mysqli PHP Modul";
-$a->strings["mb_string PHP module"] = "mb_string PHP Modul";
-$a->strings["mcrypt PHP module"] = "mcrypt PHP Modul";
-$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite Modul";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache Modul mod-rewrite wird benötigt ist aber nicht installiert.";
+$a->strings["libCurl PHP module"] = "libCurl-PHP-Modul";
+$a->strings["GD graphics PHP module"] = "GD-Grafik-PHP-Modul";
+$a->strings["OpenSSL PHP module"] = "OpenSSL-PHP-Modul";
+$a->strings["mysqli PHP module"] = "mysqli-PHP-Modul";
+$a->strings["mb_string PHP module"] = "mb_string-PHP-Modul";
+$a->strings["mcrypt PHP module"] = "mcrypt-PHP-Modul";
+$a->strings["Apache mod_rewrite module"] = "Apache-mod_rewrite-Modul";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert.";
 $a->strings["proc_open"] = "proc_open";
-$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Fehler: proc_open wird benötigt ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: das PHP Modul libCURL wird benütigt ist aber nicht installiert.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: das PHP Modul GD Grafik mit JPEG Unterstützung wird benötigt ist aber nicht installiert.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: das OpenSSL PHP Modul wird benötigt ist aber nicht installiert.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: das PHP Modul mysqli wird benötigt ist aber nicht installiert.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: das PHP Modul mb_string wird benötigt ist aber nicht installiert.";
-$a->strings["Error: mcrypt PHP module required but not installed."] = "Fehler: das PHP Modul mcrypt wird benötigt ist aber nicht installiert.";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\ in the top folder of your web server and it is unable to do so."] = "Der Installations-Assistent muss in der Lage sein die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist es aber nicht.";
-$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Meist liegt 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.";
-$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Am Schluss des Vorgangs wird ein Text generiert, den du unter dem Dateinamen .htconfig.php im Stammverzeichnis deiner Red Installation speichern.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Alternativ kannst du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt.";
+$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert.";
+$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das PHP-Modul mysqli wird benötigt, ist aber nicht installiert.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert.";
+$a->strings["Error: mcrypt PHP module required but not installed."] = "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert.";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\ in the top folder of your web server and it is unable to do so."] = "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht.";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Rechte Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst.";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Red-Installation speichern musst.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt.";
 $a->strings[".htconfig.php is writable"] = ".htconfig.php ist beschreibbar";
-$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP um die Darstellung zu beschleunigen.";
-$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/tpl/smarty3/ under the Red top level folder."] = "Um die übersetzten Vorlagen speichern zu können muss der Webserver schreib Zugriff auf das Verzeichnis view/tpl/smarty3/ unterhalb des Red Stammverzeichnisses haben.";
-$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["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen.";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/tpl/smarty3/ under the Red top level folder."] = "Um die übersetzten Vorlagen speichern zu können muss der Webserver Schreibzugriff auf das Verzeichnis view/tpl/smarty3/ unterhalb des Red-Stammverzeichnisses haben.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer, unter dem der Webserver läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat.";
+$a->strings["Note: as a security measure, you should give the web server write access to 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 auf die Vorlagen (.tpl-Dateien) in view/tpl/ .";
 $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["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Red benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses";
 $a->strings["store is writable"] = "store ist schreibbar";
 $a->strings["SSL certificate 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.";
+$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server.";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL rewrite via .htaccess funktioniert nicht. Überprüfe Deine Server-Konfiguration.";
 $a->strings["Url rewrite is working"] = "Url rewrite funktioniert";
-$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Datenbank Konfigurationsdatei \".htconfig.php\" konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen.";
-$a->strings["Errors encountered creating database tables."] = "Fehler während des Anlegens der Datenbank Tabellen aufgetreten.";
+$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen.";
+$a->strings["Errors encountered creating database tables."] = "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten.";
 $a->strings["<h1>What next</h1>"] = "<h1>Was als Nächstes</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst die geplanten Aufgaben für den Poller [manuell] einrichten.";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten.";
 $a->strings["Version %s"] = "Version %s";
 $a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps";
 $a->strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps";
+$a->strings["Project Donations"] = "Projekt Spenden";
+$a->strings["<p>The Red Matrix is provided for you by volunteers working in their spare time. Your support will help us to build a better web. Select the following option for a one-time donation of your choosing</p>"] = "";
+$a->strings["<p>or</p>"] = "<p>oder</p>";
+$a->strings["Recurring Donation Options"] = "";
 $a->strings["Red"] = "Red";
 $a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralised privacy enhanced websites."] = "Dieser Server ist Teil der Red-Matrix – einem global vernetzten Verbund aus dezentralen Websites mit Rücksicht auf die Privatsphäre.";
 $a->strings["Running at web location"] = "Erreichbar unter der Web-Adresse";
-$a->strings["Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more about the Red Matrix."] = "Besuche <a href=\"http://getzot.com\">GetZot.com</a> um mehr über die Red Matrix zu erfahren.";
+$a->strings["Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more about the Red Matrix."] = "Besuche <a href=\"http://getzot.com\">GetZot.com</a>, um mehr über die Red-Matrix zu erfahren.";
 $a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
 $a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com";
 $a->strings["Site Administrators"] = "Administratoren";
 $a->strings["Add a Channel"] = "Kanal hinzufügen";
-$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Ein Kanal ist deine eigene Sammlung von verbundenen Webseiten. Ein Kanal kann genutzt werden, um 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\" ";
-$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["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Ein Kanal ist Deine eigene Sammlung von verbundenen Webseiten. Ein Kanal kann genutzt werden, um ein Social-Network-Profil, ein Blog, eine Gesprächsgruppe oder ein Forum, Promi-Seiten und vieles mehr zu erstellen. Du kannst so viele Kanäle erstellen, wie es der Betreiber Deiner Seite zulässt.";
+$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ ";
+$a->strings["Choose a short nickname"] = "Wähle einen kurzen Spitznamen";
+$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst.";
+$a->strings["Or <a href=\"import\">import an existing channel</a> from another location"] = "Oder <a href=\"import\">importiere einen bestehenden Kanal</a> von einem anderen Server";
 $a->strings["No valid account found."] = "Kein gültiges Konto gefunden.";
-$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts veranlasst. Rufe bitte Deine E-Mails ab.";
-$a->strings["Site Member (%s)"] = "Seiten Mitglied (%s)";
-$a->strings["Password reset requested at %s"] = "Passwort Rücksetzung auf %s angefordert";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Die Anfrage konnte nicht verifiziert werden. (Es könnte sein, dass du vorher bereits eine Anfrage eingereicht hast.) Passwort Anforderung fehlgeschlagen.";
+$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails.";
+$a->strings["Site Member (%s)"] = "Nutzer (%s)";
+$a->strings["Password reset requested at %s"] = "Passwort-Rücksetzung auf %s angefordert";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen.";
 $a->strings["Password Reset"] = "Zurücksetzen des Kennworts";
 $a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie angefordert neu erstellt.";
 $a->strings["Your new password is"] = "Dein neues Passwort lautet";
-$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere dein neues Passwort - und dann";
+$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort – und dann";
 $a->strings["click here to login"] = "Klicke hier, um dich anzumelden";
 $a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Dein Passwort kann unter <em>Einstellungen</em> nach einer erfolgreichen Anmeldung geändert werden.";
-$a->strings["Your password has changed at %s"] = "Auf %s wurde dein Passwort geändert";
+$a->strings["Your password has changed at %s"] = "Auf %s wurde Dein Passwort geändert";
 $a->strings["Forgot your Password?"] = "Kennwort vergessen?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet.";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail.";
 $a->strings["Email Address"] = "E-Mail Adresse";
 $a->strings["Reset"] = "Zurücksetzen";
+$a->strings["Name is required"] = "Name ist erforderlich";
+$a->strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt";
+$a->strings["Update"] = "Aktualisieren";
+$a->strings["Passwords do not match. Password unchanged."] = "Kennwörter stimmen nicht überein. Kennwort nicht verändert.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert.";
+$a->strings["Password changed."] = "Kennwort geändert.";
+$a->strings["Password update failed. Please try again."] = "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal.";
+$a->strings["Not valid email."] = "Keine gültige E-Mail Adresse.";
+$a->strings["Protected email address. Cannot change to that email."] = "Geschützte E-Mail Adresse. Diese kann nicht verändert werden.";
+$a->strings["System failure storing new email. Please try again."] = "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal.";
+$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
+$a->strings["Add application"] = "Anwendung hinzufügen";
+$a->strings["Name"] = "Name";
+$a->strings["Name of application"] = "Name der Anwendung";
+$a->strings["Consumer Key"] = "Consumer Key";
+$a->strings["Automatically generated - change if desired. Max length 20"] = "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20";
+$a->strings["Consumer Secret"] = "Consumer Secret";
+$a->strings["Redirect"] = "Umleitung";
+$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "Umleitungs-URl – lasse das leer, wenn Deine Anwendung es nicht explizit erfordert";
+$a->strings["Icon url"] = "Symbol-URL";
+$a->strings["Optional"] = "Optional";
+$a->strings["You can't edit this application."] = "Diese Anwendung kann nicht bearbeitet werden.";
+$a->strings["Connected Apps"] = "Verbundene Apps";
+$a->strings["Client key starts with"] = "Client key beginnt mit";
+$a->strings["No name"] = "Kein Name";
+$a->strings["Remove authorization"] = "Authorisierung aufheben";
+$a->strings["No feature settings configured"] = "Keine Funktions-Einstellungen konfiguriert";
+$a->strings["Feature Settings"] = "Funktions-Einstellungen";
+$a->strings["Account Settings"] = "Konto-Einstellungen";
+$a->strings["Password Settings"] = "Kennwort-Einstellungen";
+$a->strings["New Password:"] = "Neues Passwort:";
+$a->strings["Confirm:"] = "Bestätigen:";
+$a->strings["Leave password fields blank unless changing"] = "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern";
+$a->strings["Email Address:"] = "Email Adresse:";
+$a->strings["Remove Account"] = "Konto entfernen";
+$a->strings["Warning: This action is permanent and cannot be reversed."] = "Achtung: Diese Aktion ist endgültig und kann nicht rückgängig gemacht werden.";
+$a->strings["Off"] = "Aus";
+$a->strings["On"] = "An";
+$a->strings["Additional Features"] = "Zusätzliche Funktionen";
+$a->strings["Connector Settings"] = "Connector-Einstellungen";
+$a->strings["Display Settings"] = "Anzeige-Einstellungen";
+$a->strings["Display Theme:"] = "Anzeige-Theme:";
+$a->strings["Mobile Theme:"] = "Mobile Theme:";
+$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren";
+$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 Sekunden, kein Maximum";
+$a->strings["Maximum number of conversations to load at any time:"] = "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:";
+$a->strings["Maximum of 100 items"] = "Maximum: 100 Beiträge";
+$a->strings["Don't show emoticons"] = "Emoticons nicht zeigen";
+$a->strings["View remote profiles as webpages"] = "";
+$a->strings["By default open in a sub-window of your own site"] = "";
+$a->strings["Nobody except yourself"] = "Niemand außer Dir selbst";
+$a->strings["Only those you specifically allow"] = "Nur die, denen Du es explizit erlaubst";
+$a->strings["Anybody in your address book"] = "Jeder aus Ihrem Adressbuch";
+$a->strings["Anybody on this website"] = "Jeder auf dieser Website";
+$a->strings["Anybody in this network"] = "Jeder in diesem Netzwerk";
+$a->strings["Anybody on the internet"] = "Jeder im Internet";
+$a->strings["Publish your default profile in the network directory"] = "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?";
+$a->strings["or"] = "oder";
+$a->strings["Your channel address is"] = "Deine Kanal-Adresse lautet";
+$a->strings["Channel Settings"] = "Kanal-Einstellungen";
+$a->strings["Basic Settings"] = "Grundeinstellungen";
+$a->strings["Your Timezone:"] = "Ihre Zeitzone:";
+$a->strings["Default Post Location:"] = "Standardstandort:";
+$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:";
+$a->strings["Adult Content"] = "Nicht jugendfreie Inhalte";
+$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)";
+$a->strings["Security and Privacy Settings"] = "Sicherheits- und Datenschutz-Einstellungen";
+$a->strings["Hide my online presence"] = "Meine Online-Präsenz verbergen";
+$a->strings["Prevents displaying in your profile that you are online"] = "Verhindert die Anzeige Deines Online-Status in deinem Profil";
+$a->strings["Simple Privacy Settings:"] = "Einfache Privatsphäre-Einstellungen";
+$a->strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "Komplett offen – <em>extrem ungeschützt (mit großer Vorsicht verwenden!)</em>";
+$a->strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "Typisch – <em>Default öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)</em>";
+$a->strings["Private - <em>default private, never open or public</em>"] = "Private – <em>Default privat, nie offen oder öffentlich</em>";
+$a->strings["Blocked - <em>default blocked to/from everybody</em>"] = "Blockiert – <em>Alle per Default blockiert</em>";
+$a->strings["Advanced Privacy Settings"] = "Fortgeschrittene Privatsphäre-Einstellungen";
+$a->strings["Maximum Friend Requests/Day:"] = "Maximale Kontaktanfragen pro Tag:";
+$a->strings["May reduce spam activity"] = "Kann die Spam-Aktivität verringern";
+$a->strings["Default Post Permissions"] = "Standardeinstellungen für Beitrags-Zugriffsrechte";
+$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:";
+$a->strings["Useful to reduce spamming"] = "Nützlich, um Spam zu verringern";
+$a->strings["Notification Settings"] = "Benachrichtigungs-Einstellungen";
+$a->strings["By default post a status message when:"] = "Sende standardmäßig Status-Nachrichten, wenn:";
+$a->strings["accepting a friend request"] = "Du eine Kontaktanfrage annimmst";
+$a->strings["joining a forum/community"] = "Du einem Forum beitrittst";
+$a->strings["making an <em>interesting</em> profile change"] = "Du eine <em>interessante</em> Änderung an Deinem Profil vornimmst";
+$a->strings["Send a notification email when:"] = "Eine E-Mail-Benachrichtigung senden, wenn:";
+$a->strings["You receive an introduction"] = "Du eine Vorstellung erhältst";
+$a->strings["Your introductions are confirmed"] = "Deine Vorstellung bestätigt wurde.";
+$a->strings["Someone writes on your profile wall"] = "Jemand auf Deine Pinnwand schreibt";
+$a->strings["Someone writes a followup comment"] = "Jemand einen Beitrag kommentiert";
+$a->strings["You receive a private message"] = "Du eine private Nachricht erhältst";
+$a->strings["You receive a friend suggestion"] = "Du einen Kontaktvorschlag erhältst";
+$a->strings["You are tagged in a post"] = "Du in einem Beitrag erwähnt wurdest";
+$a->strings["You are poked/prodded/etc. in a post"] = "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest";
+$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Account- und Seitenart-Einstellungen";
+$a->strings["Change the behaviour of this account for special situations"] = "Ändere das Verhalten dieses Accounts unter speziellen Umständen";
+$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "";
 $a->strings["Nothing to import."] = "Nichts zu importieren.";
 $a->strings["Unable to download data from old server"] = "Daten können vom alten Server nicht heruntergeladen werden";
 $a->strings["Imported file is empty."] = "Die importierte Datei ist leer.";
-$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kann auf diesem System keinen duplizierten Kanal-Identifikator erzeugen. Import fehlgeschlagen.";
+$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen.";
 $a->strings["Channel clone failed. Import failed."] = "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen.";
 $a->strings["Cloned channel not found. Import failed."] = "Geklonter Kanal nicht gefunden. Import fehlgeschlagen.";
 $a->strings["Import completed."] = "Import abgeschlossen.";
 $a->strings["You must be logged in to use this feature."] = "Du musst angemeldet sein um diese Funktion zu nutzen.";
 $a->strings["Import Channel"] = "Kanal importieren";
-$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = "Verwende dieses Formular um einen existierenden Kanal von einem anderen Server/Hub zu importieren. Du kannst die Kanal-Identität vom alten Server/Hub über das Netzwerk erhalten oder über eine exportierte Sicherungskopie. Es werden ausschließlich die Identität und die Verbindungen/Beziehungen importiert. Das Importieren von Inhalten ist derzeit nicht möglich.";
+$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Red-Server zu importieren. Du kannst den Kanal direkt vom bisherigen Red-Server über das Netzwerk importieren oder eine exportierte Sicherheitskopie benutzen. Es werden ausschließlich die Identität und die Verbindungen/Beziehungen importiert. Das Importieren von Inhalten ist derzeit nicht möglich.";
 $a->strings["File to Upload"] = "Hochzuladende Datei:";
-$a->strings["Or provide the old server/hub details"] = "Oder gib die Deteils deines alten Server/Hubs an";
-$a->strings["Your old identity address (xyz@example.com)"] = "Die alte Adresse der Identität (xyz@example.com)";
+$a->strings["Or provide the old server/hub details"] = "Oder gib die Details Deines bisherigen Red-Servers ein";
+$a->strings["Your old identity address (xyz@example.com)"] = "Bisherige Kanal-Adresse (xyz@example.com)";
 $a->strings["Your old login email address"] = "Ihre alte Login E-Mail Adresse";
 $a->strings["Your old login password"] = "Ihr altes Login Kennwort";
-$a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Egal welche Option du wählst, bitte lege fest, ob dieser Hub deine neue primäre Adresse sein soll oder ob dein alter Hub diese Rolle weiterhin wahrnimmt. Du kannst von beiden Orten aus neue Dinge posten, aber nur einer kann die primäre Adresse deiner Dateien, Fotos und anderen Mediendaten sein.";
-$a->strings["Make this hub my primary location"] = "Dieser Hub ist mein primärer Server.";
-$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du hast %1$.0f von %2$.0f erlaubten Kanälen eingerichtet.";
+$a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Egal welche Option Du wählst, bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige Red-Server diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein.";
+$a->strings["Make this hub my primary location"] = "Dieser Red-Server ist mein primärer Server.";
+$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet.";
 $a->strings["Create a new channel"] = "Erzeuge neues Kanal";
 $a->strings["Channel Manager"] = "Kanal-Manager";
 $a->strings["Current Channel"] = "Aktueller Kanal";
-$a->strings["Attach to one of your channels by selecting it."] = "Wähle einen deiner Kanäle aus um ihn zu verwenden.";
+$a->strings["Attach to one of your channels by selecting it."] = "Wähle einen Deiner Kanäle aus, um ihn zu verwenden.";
 $a->strings["Default Channel"] = "Standard Kanal";
 $a->strings["Make Default"] = "Zum Standard machen";
 $a->strings["Total votes"] = "Stimmen gesamt";
-$a->strings["Average Rating"] = "durchschnittliche Bewertung";
+$a->strings["Average Rating"] = "Durchschnittliche Bewertung";
 $a->strings["Profile Match"] = "Profil-Übereinstimmungen";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselbegriffe für den Abgleich gefunden. Bitte füge Schlüsselbegriffe zu deinem Standardprofil hinzu.";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu.";
 $a->strings["is interested in:"] = "interessiert sich für:";
 $a->strings["No matches"] = "Keine Übereinstimmungen";
 $a->strings["invalid target signature"] = "Ungültige Signatur des Ziels";
@@ -1494,18 +1503,18 @@ $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["Recall message"] = "Nachricht widerrufen";
 $a->strings["Message has been recalled."] = "Die Nachricht wurde widerrufen.";
 $a->strings["Private Conversation"] = "Private Unterhaltung";
 $a->strings["Delete conversation"] = "Unterhaltung löschen";
-$a->strings["No secure communications available. You <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["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 auf der Profilseite des Absenders antworten.";
 $a->strings["Send Reply"] = "Antwort senden";
 $a->strings["Edit Layout"] = "Layout bearbeiten";
 $a->strings["Delete layout?"] = "Layout löschen?";
 $a->strings["Delete Layout"] = "Layout löschen";
-$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das zurecht schneiden schlug fehl.";
+$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zurechtschneiden schlug fehl.";
 $a->strings["Image resize failed."] = "Bild-Anpassung fehlgeschlagen.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Leere den Browser Cache oder nutze Umschalten-Neu Laden sollte das neue Foto nicht sofort angezeigt werden.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird.";
 $a->strings["Image exceeds size limit of %d"] = "Bild ist größer als das Limit von %d";
 $a->strings["Unable to process image."] = "Kann Bild nicht verarbeiten.";
 $a->strings["Photo not available."] = "Foto nicht verfügbar.";
@@ -1516,7 +1525,7 @@ $a->strings["Upload"] = "Hochladen";
 $a->strings["skip this step"] = "diesen Schritt überspringen";
 $a->strings["select a photo from your photo albums"] = "ein Foto aus meinen Fotoalben";
 $a->strings["Crop Image"] = "Bild zuschneiden";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Bitte passe das Bild zur optimalen Anzeige an.";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Bitte schneide das Bild für eine optimale Anzeige passend zu.";
 $a->strings["Done Editing"] = "Bearbeitung fertigstellen";
 $a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen.";
 $a->strings["Image upload failed."] = "Hochladen des Bilds fehlgeschlagen.";
@@ -1527,7 +1536,7 @@ $a->strings["Hidden"] = "Versteckt";
 $a->strings["Archived"] = "Archiviert";
 $a->strings["All"] = "Alle";
 $a->strings["Suggest new connections"] = "Neue Verbindungen vorschlagen";
-$a->strings["Show pending (new) connections"] = "Zeige schwebende (neue) Verbindungen";
+$a->strings["Show pending (new) connections"] = "Zeige ausstehende (neue) Verbindungsanfragen";
 $a->strings["Show all connections"] = "Zeige alle Verbindungen";
 $a->strings["Unblocked"] = "Freigegeben";
 $a->strings["Only show unblocked connections"] = "Zeige nur freigegebene Verbindungen";
@@ -1539,21 +1548,21 @@ $a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]";
 $a->strings["Edit contact"] = "Kontakt bearbeiten";
 $a->strings["Search your connections"] = "Verbindungen durchsuchen";
 $a->strings["Finding: "] = "Ergebnisse:";
-$a->strings["Invalid request identifier."] = "Ungültige Anfrage Identifikator.";
+$a->strings["Invalid request identifier."] = "Ungültiger Anfrage-Identifikator.";
 $a->strings["Discard"] = "Verwerfen";
 $a->strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr.";
 $a->strings["System Notifications"] = "System-Benachrichtigungen";
-$a->strings["Block Name"] = "Block Name";
-$a->strings["Unable to find your hub."] = "Konnte den Hub nicht finden.";
+$a->strings["Block Name"] = "Block-Name";
+$a->strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden.";
 $a->strings["Post successful."] = "Veröffentlichung erfolgreich.";
 $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"] = "Anstupsen/Knuffen";
 $a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen";
 $a->strings["Recipient"] = "Empfänger";
-$a->strings["Choose what you wish to do to recipient"] = "Wähle was du mit dem/r Empfänger/in tun willst";
+$a->strings["Choose what you wish to do to recipient"] = "Wähle, was Du mit dem/r Empfänger/in tun willst";
 $a->strings["Make this post private"] = "Diesen Beitrag privat machen";
 $a->strings["Insufficient permissions.  Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet.";
 $a->strings["Not available."] = "Nicht verfügbar.";
@@ -1561,86 +1570,86 @@ $a->strings["Community"] = "Gemeinschaft";
 $a->strings["No results."] = "Keine Ergebnisse.";
 $a->strings["Contact not found."] = "Kontakt nicht gefunden";
 $a->strings["Friend suggestion sent."] = "Freundschaftsempfehlung senden.";
-$a->strings["Suggest Friends"] = "Kontakte Vorschlagen";
+$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
 $a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
 $a->strings["Edit Block"] = "Block bearbeiten";
 $a->strings["Delete block?"] = "Block löschen?";
 $a->strings["Delete Block"] = "Block löschen";
 $a->strings["Status: "] = "Status:";
-$a->strings["Sexual Preference: "] = "Sexuelle Vorlieben:";
+$a->strings["Sexual Preference: "] = "Sexuelle Ausrichtung:";
 $a->strings["Homepage: "] = "Webseite:";
 $a->strings["Hometown: "] = "Wohnort:";
 $a->strings["About: "] = "Über:";
-$a->strings["Keywords: "] = "Schlüsselbegriffe:";
+$a->strings["Keywords: "] = "Schlüsselwörter:";
 $a->strings["Permission Denied."] = "Zugriff verweigert.";
-$a->strings["File not found."] = "Datei nicht gefunden";
+$a->strings["File not found."] = "Datei nicht gefunden.";
 $a->strings["Edit file permissions"] = "Dateiberechtigungen bearbeiten";
 $a->strings["Permissions"] = "Berechtigungen";
 $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["Copy/paste this code to attach file to a post"] = "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen";
+$a->strings["Copy/paste this URL to link file from a web page"] = "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken";
 $a->strings["Download"] = "Download";
 $a->strings["Used: "] = "Verwendet:";
 $a->strings["[directory]"] = "[Verzeichnis]";
 $a->strings["Limit: "] = "Limit:";
-$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["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal.";
 $a->strings["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";
-$a->strings["Access Type"] = "Zugangs Typ";
+$a->strings["Public Sites"] = "Öffentliche Server";
+$a->strings["The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links <strong>may</strong> provide additional details."] = "Die hier aufgeführten Server erlauben Dir, einen Account in der Red-Matrix anzulegen. Alle Server der Matrix sind miteinander verbunden, so dass die Mitgliedschaft auf einem Server eine Verbindung zu beliebigen anderen Servern der Matrix ermöglicht. Es könnte sein, dass einige dieser Server kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den jeweiligen Seiten <strong>könnten</strong> nähere Details dazu stehen.";
+$a->strings["Site URL"] = "Server-URL";
+$a->strings["Access Type"] = "Zugangstyp";
 $a->strings["Registration Policy"] = "Registrierungsrichtlinien";
-$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximale Anzahl von Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal.";
-$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Bitte stimme den Nutzungsbedingungen zu. Anmeldung fehlgeschlagen.";
+$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal.";
+$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen.";
 $a->strings["Passwords do not match."] = "Passwörter stimmen nicht überein.";
-$a->strings["Registration successful. Please check your email for validation instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet.";
+$a->strings["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["Registration on this site/hub is by approval only."] = "Anmeldungen auf diesem Server erfordern Zustimmung durch den Administrator";
+$a->strings["<a href=\"pubsites\">Register at another affiliated site/hub</a>"] = "<a href=\"pubsites\">Registrierung auf einem anderen, angeschlossenen Server</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 diesem Server wurde überschritten. Bitte versuche es morgen noch einmal.";
 $a->strings["Terms of Service"] = "Nutzungsbedingungen";
 $a->strings["I accept the %s for this website"] = "Ich akzeptiere die %s für diese Webseite";
 $a->strings["I am over 13 years of age and accept the %s for this website"] = "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite";
 $a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich.";
-$a->strings["Please enter your invitation code"] = "Bitte trage deinen Einladungs-Code ein";
+$a->strings["Please enter your invitation code"] = "Bitte trage Deinen Einladungs-Code ein";
 $a->strings["Your email address"] = "Ihre E-Mail Adresse";
 $a->strings["Choose a password"] = "Passwort";
-$a->strings["Please re-enter your password"] = "Bitte gib dein Passwort noch einmal ein";
+$a->strings["Please re-enter your password"] = "Bitte gib Dein Passwort noch einmal ein";
 $a->strings["Please login."] = "Bitte melde dich an.";
-$a->strings["Remove This Channel"] = "Diesen Kanal löschen!";
-$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Hiermit wird dieser Kanal komplett aus dem Netzwerk gelöscht. Einmal eingeleitet ist dieser Prozess nicht widerrufbar.";
-$a->strings["Please enter your password for verification:"] = "Bitte gib zur Bestätigung dein Passwort ein:";
+$a->strings["Remove This Channel"] = "Diesen Kanal löschen";
+$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Hiermit wird dieser Kanal komplett aus dem Netzwerk gelöscht. Einmal eingeleitet kann dieser Prozess nicht rückgängig gemacht werden.";
+$a->strings["Please enter your password for verification:"] = "Bitte gib zur Bestätigung Dein Passwort ein:";
 $a->strings["Remove this channel and all its clones from the network"] = "Lösche diesen Kanal und all seine Klone aus dem Netzwerk";
-$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standartmäßig wird der Kanal nur auf diesem Knoten gelöscht, seine Klone verbleiben im Netzwerk";
-$a->strings["Remove Channel"] = "Kanal entfernen";
-$a->strings["Page owner information could not be retrieved."] = "Informationen über den Betreiber der Seite konnten nicht gefunden werden.";
+$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk";
+$a->strings["Remove Channel"] = "Kanal löschen";
+$a->strings["Page owner information could not be retrieved."] = "Informationen über den Besitzer der Seite konnten nicht gefunden werden.";
 $a->strings["Album not found."] = "Album nicht gefunden.";
 $a->strings["Delete Album"] = "Album löschen";
 $a->strings["Delete Photo"] = "Foto löschen";
 $a->strings["No photos selected"] = "Keine Fotos ausgewählt";
-$a->strings["Access to this item is restricted."] = "Zugriff auf dieses Foto wurde eingeschränkt.";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du benutzt %1$.2f MBytes deines %2$.2f MBytes großen Bilder-Speichers.";
-$a->strings["You have used %1$.2f Mbytes of photo storage."] = "Du verwendets %1$.2f MBytes deines Foto-Speichers.";
+$a->strings["Access to this item is restricted."] = "Der Zugriff auf dieses Foto ist eingeschränkt.";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du benutzt %1$.2f MBytes Deines %2$.2f MBytes großen Bilder-Speichers.";
+$a->strings["You have used %1$.2f Mbytes of photo storage."] = "Du verwendest %1$.2f MBytes Deines Foto-Speichers.";
 $a->strings["Upload Photos"] = "Fotos hochladen";
 $a->strings["New album name: "] = "Name des neuen Albums:";
-$a->strings["or existing album name: "] = "oder bestehenden Album Namen:";
+$a->strings["or existing album name: "] = "Oder bestehender Album-Name:";
 $a->strings["Do not show a status post for this upload"] = "Keine Statusnachricht für diesen Upload senden";
-$a->strings["Contact Photos"] = "Kontakt Bilder";
+$a->strings["Contact Photos"] = "Kontakt-Bilder";
 $a->strings["Edit Album"] = "Album bearbeiten";
-$a->strings["Show Newest First"] = "Zeige neueste zuerst";
-$a->strings["Show Oldest First"] = "Zeige älteste zuerst";
+$a->strings["Show Newest First"] = "Zeige Neueste zuerst";
+$a->strings["Show Oldest First"] = "Zeige Älteste zuerst";
 $a->strings["View Photo"] = "Foto ansehen";
 $a->strings["Permission denied. Access to this item may be restricted."] = "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden.";
 $a->strings["Photo not available"] = "Foto nicht verfügbar";
 $a->strings["Use as profile photo"] = "Als Profilfoto verwenden";
 $a->strings["View Full Size"] = "In voller Größe anzeigen";
 $a->strings["Edit photo"] = "Foto bearbeiten";
-$a->strings["Rotate CW (right)"] = "Drehen US (rechts)";
-$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)";
+$a->strings["Rotate CW (right)"] = "Drehen im UZS (rechts)";
+$a->strings["Rotate CCW (left)"] = "Drehen gegen UZS (links)";
 $a->strings["New album name"] = "Name des neuen Albums:";
 $a->strings["Caption"] = "Bildunterschrift";
 $a->strings["Add a Tag"] = "Schlagwort hinzufügen";
@@ -1649,16 +1658,16 @@ $a->strings["In This Photo:"] = "Auf diesem Foto:";
 $a->strings["View Album"] = "Album ansehen";
 $a->strings["Recent Photos"] = "Neueste Fotos";
 $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["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und teile sie mit 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["Scheme Default"] = "Standard-Schema";
-$a->strings["silver"] = "Silber";
+$a->strings["silver"] = "silbern";
 $a->strings["Theme settings"] = "Theme-Einstellungen";
 $a->strings["Set scheme"] = "Schema";
 $a->strings["Navigation bar colour"] = "Farbe der Navigationsleiste";
-$a->strings["link colour"] = "Farbe der Verweise";
+$a->strings["link colour"] = "Farbe der Links";
 $a->strings["Set font-colour for banner"] = "Farbe des Banners";
 $a->strings["Set the background colour"] = "Hintergrundfarbe";
 $a->strings["Set the background image"] = "Hintergrundbild";
@@ -1667,26 +1676,26 @@ $a->strings["Set the opacity of items"] = "Deckkraft von Beiträgen";
 $a->strings["Set the basic colour for item icons"] = "Basisfarbe der Beitrags-Icons";
 $a->strings["Set the hover colour for item icons"] = "Farbe für Beitrags-Icons unter dem Mauszeiger";
 $a->strings["Set font-size for the entire application"] = "Schriftgröße für die ganze Applikation";
-$a->strings["Set font-size for posts and comments"] = "Wähle die Schriftgröße für Beiträge und Kommentare";
+$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare";
 $a->strings["Set font-colour for posts and comments"] = "Schriftfarbe für Beiträge und Kommentare";
 $a->strings["Set radius of corners"] = "Ecken-Radius";
 $a->strings["Set shadow depth of photos"] = "Schattentiefe von Fotos";
-$a->strings["Set maximum width of conversation regions"] = "Maximalbreite der Konversationsbereiche";
+$a->strings["Set maximum width of conversation regions"] = "Maximalbreite der Unterhaltungsbereiche";
 $a->strings["Set minimum opacity of nav bar - to hide it"] = "Mindest-Deckkraft der Navigationsleiste ( - versteckt sie)";
 $a->strings["Set size of conversation author photo"] = "Größe der Avatare von Themenstartern";
 $a->strings["Set size of followup author photos"] = "Größe der Avatare von Kommentatoren";
 $a->strings["Sloppy photo albums"] = "Schräge Fotoalben";
-$a->strings["Are you a clean desk or a messy desk person?"] = "Bist du jemand der einen aufgeräumten Schreibtisch hat, oder eher einen chaotischen?";
+$a->strings["Are you a clean desk or a messy desk person?"] = "Bist Du jemand, der einen aufgeräumten Schreibtisch hat, oder eher einen chaotischen?";
 $a->strings["Schema Default"] = "Standard-Schema";
 $a->strings["Sans-Serif"] = "Sans-Serif";
 $a->strings["Monospace"] = "Monospace";
 $a->strings["Set font face"] = "Schriftart";
-$a->strings["Set iconset"] = "Iconset";
+$a->strings["Set iconset"] = "Icon-Set";
 $a->strings["Set big shadow size, default 15px 15px 15px"] = "Ausmaß der großen Schatten (Default 15px 15px 15px)";
 $a->strings["Set small shadow size, default 5px 5px 5px"] = "Ausmaß der kleinen Schatten (Default 5px 5px 5px)";
 $a->strings["Set shadow colour, default #000"] = "Farbe der Schatten (Default #000)";
 $a->strings["Set radius size, default 5px"] = "Ecken-Radius (Default 5px)";
-$a->strings["Set line-height for posts and comments"] = "Wähle die Zeilenhöhe in Beiträgen und Kommentaren";
+$a->strings["Set line-height for posts and comments"] = "Zeilenhöhe für Beiträge und Kommentare";
 $a->strings["Set background image"] = "Hintergrundbild";
 $a->strings["Set background colour"] = "Hintergrundfarbe";
 $a->strings["Set section background image"] = "Hintergrundbild des mittleren Bereichs";
@@ -1698,7 +1707,7 @@ $a->strings["Set min-width for items.  Default 240px"] = "Minimalbreite von Beit
 $a->strings["Set the generic content wrapper width.  Default 48%"] = "Breite des „generic content wrapper“ (Default 48%)";
 $a->strings["Set colour of fonts - use hex"] = "Schriftfarbe (HEX)";
 $a->strings["Set background-size element"] = "Größe des Hintergrund-Elements";
-$a->strings["Item opacity"] = "Opazität von Beiträgen";
+$a->strings["Item opacity"] = "Deckkraft von Beiträgen (z.B. 0.8)";
 $a->strings["Display post previews only"] = "Nur Beitragsvorschau anzeigen";
 $a->strings["Display side bar on channel page"] = "Zeige die Seitenleiste auf der Kanal-Seite";
 $a->strings["Colour of the navigation bar"] = "Farbe der Navigationsleiste";
@@ -1713,10 +1722,10 @@ $a->strings["Header image"] = "Titelbild";
 $a->strings["Header image only on profile pages"] = "Titelbild nur auf Profil-Seiten anzeigen";
 $a->strings["Update %s failed. See error logs."] = "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen.";
 $a->strings["Update Error at %s"] = "Aktualisierungsfehler auf %s";
-$a->strings["Create an account to access services and applications within the Red Matrix"] = "Erstelle einen Account um Anwendungen und Dienste innerhalb der Red Matrix verwenden zu können.";
+$a->strings["Create an account to access services and applications within the Red Matrix"] = "Erstelle einen Account, um Anwendungen und Dienste innerhalb der Red-Matrix verwenden zu können.";
 $a->strings["Password"] = "Kennwort";
 $a->strings["Remember me"] = "Angaben speichern";
 $a->strings["Forgot your password?"] = "Passwort vergessen?";
 $a->strings["permission denied"] = "Zugriff verweigert";
 $a->strings["Got Zot?"] = "Haste schon Zot?";
-$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln";
+$a->strings["toggle mobile"] = "auf/von mobile Ansicht wechseln";
-- 
cgit v1.2.3


From 70526915c87b57e4d91f0ab9a518d34a6dc04c82 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Sun, 16 Feb 2014 16:04:46 -0800
Subject: several things were not working correctly w/r/t community tagging.
 The preference vanished from settings at some point, and we also weren't
 updating the original post timestamp so that the changed taxonomy would
 propagate correctly as an edit.

---
 view/tpl/settings.tpl | 4 ++++
 1 file changed, 4 insertions(+)

(limited to 'view')

diff --git a/view/tpl/settings.tpl b/view/tpl/settings.tpl
index 808078413..f5f2206bc 100755
--- a/view/tpl/settings.tpl
+++ b/view/tpl/settings.tpl
@@ -59,10 +59,14 @@
 
 </div>
 <div class="settings-common-perms">
+
+
 {{$profile_in_dir}}
 
 {{$suggestme}}
 
+{{include file="field_yesno.tpl" field=$blocktags}}
+
 {{include file="field_input.tpl" field=$maxreq}}
 
 {{include file="field_input.tpl" field=$cntunkmail}}
-- 
cgit v1.2.3


From aa44d3abab07205a747874b244e71181e4e7a1b0 Mon Sep 17 00:00:00 2001
From: Klaus <Klaus.Weidenbach@gmx.net>
Date: Tue, 18 Feb 2014 17:41:59 +0100
Subject: Let user cancel the red_encrypt dialogue

If the user press cancel on the prompt also cancel the encryption. Maybe should also add this to passhint promt.
---
 view/js/crypto.js | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

(limited to 'view')

diff --git a/view/js/crypto.js b/view/js/crypto.js
index 2e6402c62..c3a37d177 100644
--- a/view/js/crypto.js
+++ b/view/js/crypto.js
@@ -1,5 +1,4 @@
 
-
 function str_rot13 (str) {
   // http://kevin.vanzonneveld.net
   // +   original by: Jonas Raoni Soares Silva (http://www.jsfromhell.com)
@@ -43,7 +42,11 @@ function red_encrypt(alg, elem,text) {
 
 	// key and hint need to be localised
 
-	var enc_key = bin2hex(prompt(aStr['passphrase']));
+        var passphrase = prompt(aStr['passphrase']);
+        // let the user cancel this dialogue
+        if (passphrase == null)
+                return false;
+        var enc_key = bin2hex(passphrase);
 
 	// If you don't provide a key you get rot13, which doesn't need a key
 	// but consequently isn't secure.  
-- 
cgit v1.2.3


From 9a51f8ce650d295e7bc2322b9f2f10b340d8e076 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Tue, 18 Feb 2014 14:26:23 -0800
Subject: edit bookmarks

---
 view/css/mod_mitem.css | 7 +++++++
 view/tpl/mitemlist.tpl | 5 +++--
 view/tpl/usermenu.tpl  | 3 +++
 3 files changed, 13 insertions(+), 2 deletions(-)
 create mode 100644 view/css/mod_mitem.css

(limited to 'view')

diff --git a/view/css/mod_mitem.css b/view/css/mod_mitem.css
new file mode 100644
index 000000000..377d164fe
--- /dev/null
+++ b/view/css/mod_mitem.css
@@ -0,0 +1,7 @@
+.menu-item-list {
+	list-style-type: none;
+}
+
+.mitem-edit {
+	margin-right: 15px;
+}
\ No newline at end of file
diff --git a/view/tpl/mitemlist.tpl b/view/tpl/mitemlist.tpl
index 057665d49..421b610f1 100644
--- a/view/tpl/mitemlist.tpl
+++ b/view/tpl/mitemlist.tpl
@@ -4,12 +4,13 @@
 <a href="menu/{{$menu_id}}" title="{{$hintmenu}}">{{$edmenu}}</a><br />
 <a href="mitem/{{$menu_id}}/new" title="{{$hintnew}}">{{$hintnew}}</a>
 
+<br />
 <br />
 
 {{if $mlist }}
-<ul id="mitemlist">
+<ul id="mitemlist" class="menu-item-list">
 {{foreach $mlist as $m }}
-<li><a href="mitem/{{$menu_id}}/{{$m.mitem_id}}" title="{{$hintedit}}">{{$edit}}</a> | <a href="mitem/{{$menu_id}}/{{$m.mitem_id}}/drop" title={{$hintdrop}}>{{$drop}}</a>&nbsp;&nbsp;&nbsp;&nbsp;<a href="mitem/{{$menu_id}}/{{$m.mitem_id}}" title="{{$hintcontent}}">{{$m.mitem_desc}}</a> ({{$m.mitem_link}})</li>
+<li><a href="mitem/{{$menu_id}}/{{$m.mitem_id}}" title="{{$hintedit}}"><i class="icon-pencil mitem-edit"></i></a><a href="mitem/{{$menu_id}}/{{$m.mitem_id}}/drop" title={{$hintdrop}}><i class="icon-remove"></i></a>&nbsp;&nbsp;&nbsp;&nbsp;<a href="mitem/{{$menu_id}}/{{$m.mitem_id}}" title="{{$hintcontent}}">{{$m.mitem_desc}}</a> ({{$m.mitem_link}})</li>
 {{/foreach}}
 </ul>
 {{/if}}
diff --git a/view/tpl/usermenu.tpl b/view/tpl/usermenu.tpl
index 3904f4696..80e160fdf 100644
--- a/view/tpl/usermenu.tpl
+++ b/view/tpl/usermenu.tpl
@@ -2,6 +2,9 @@
 {{if $menu.menu_desc}}
   <h3 class="pmenu-title">{{$menu.menu_desc}}</h3>
 {{/if}}
+{{if $edit}}
+<a href="mitem/{{$menu.menu_id}}" title="{{$edit}}"><i class="icon-pencil fakelink" title="{{$edit}}"></i></a>
+{{/if}}
 {{if $items }}
 <ul class="pmenu-body">
 {{foreach $items as $mitem }}
-- 
cgit v1.2.3


From 87bb568d678c88efacc5d849af7a474e8efc9359 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Tue, 18 Feb 2014 19:17:11 -0800
Subject: change edit/delete to icons on filestorage page

---
 view/tpl/filestorage.tpl | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

(limited to 'view')

diff --git a/view/tpl/filestorage.tpl b/view/tpl/filestorage.tpl
index 7b88c6440..1995b95e1 100644
--- a/view/tpl/filestorage.tpl
+++ b/view/tpl/filestorage.tpl
@@ -2,13 +2,14 @@
 
 	   <div class="generic-content-wrapper">
 		{{if $limit}}{{$limitlabel}}{{$limit}}{{/if}} {{if $used}} {{$usedlabel}}{{$used}}{{/if}}
-
+		<br />
+		<br />
 
 		{{foreach $files as $key => $items}} 
 				{{foreach $items as $item}}
 					<div class="files-list-item">
-					<a href="{{$baseurl}}/{{$item.id}}/edit">{{$edit}}</a>&nbsp;&nbsp;&nbsp;|
-					<a href="{{$baseurl}}/{{$item.id}}/delete">{{$delete}}</a> |&nbsp;&nbsp;&nbsp;
+					<a href="{{$baseurl}}/{{$item.id}}/edit" title="{{$edit}}"><i class="icon-pencil"></i></a>&nbsp;&nbsp;&nbsp;&nbsp;
+					<a href="{{$baseurl}}/{{$item.id}}/delete" title="{{$delete}}"><i class="icon-remove drop-icons"></i></a>&nbsp;&nbsp;&nbsp;&nbsp;
 					{{if ! $item.dir}}<a href="attach/{{$item.download}}">{{/if}}{{$item.title}}{{if ! $item.dir}}</a>{{/if}}
 					{{if ! $item.dir}} | {{$item.size}} bytes{{else}}{{$directory}}{{/if}}
 
-- 
cgit v1.2.3


From 24d119b8c4e94ed130577e4e4a8d17ea13c406ac Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Tue, 18 Feb 2014 20:59:25 -0800
Subject: introduce a new privacy level "PERMS_AUTHED" to indicate somebody
 that is able to successfully authenticate (but is not necessarily in this
 network).

---
 view/js/mod_settings.js | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

(limited to 'view')

diff --git a/view/js/mod_settings.js b/view/js/mod_settings.js
index 16101db57..8cd062f43 100644
--- a/view/js/mod_settings.js
+++ b/view/js/mod_settings.js
@@ -72,12 +72,12 @@ function channel_privacy_macro(n) {
 		$('#id_profile_in_directory').val(0);
 	}
     if(n == 2) {
-        $('#id_view_stream option').eq(5).attr('selected','selected');
-        $('#id_view_profile option').eq(5).attr('selected','selected');
-        $('#id_view_photos option').eq(5).attr('selected','selected');
-        $('#id_view_contacts option').eq(5).attr('selected','selected');
-        $('#id_view_storage option').eq(5).attr('selected','selected');
-        $('#id_view_pages option').eq(5).attr('selected','selected');
+        $('#id_view_stream option').eq(6).attr('selected','selected');
+        $('#id_view_profile option').eq(6).attr('selected','selected');
+        $('#id_view_photos option').eq(6).attr('selected','selected');
+        $('#id_view_contacts option').eq(6).attr('selected','selected');
+        $('#id_view_storage option').eq(6).attr('selected','selected');
+        $('#id_view_pages option').eq(6).attr('selected','selected');
         $('#id_send_stream option').eq(2).attr('selected','selected');
         $('#id_post_wall option').eq(1).attr('selected','selected');
         $('#id_post_comments option').eq(2).attr('selected','selected');
@@ -95,12 +95,12 @@ function channel_privacy_macro(n) {
 		$('#id_profile_in_directory').val(1);
 	}
     if(n == 3) {
-        $('#id_view_stream option').eq(5).attr('selected','selected');
-        $('#id_view_profile option').eq(5).attr('selected','selected');
-        $('#id_view_photos option').eq(5).attr('selected','selected');
-        $('#id_view_contacts option').eq(5).attr('selected','selected');
-        $('#id_view_storage option').eq(5).attr('selected','selected');
-        $('#id_view_pages option').eq(5).attr('selected','selected');
+        $('#id_view_stream option').eq(6).attr('selected','selected');
+        $('#id_view_profile option').eq(6).attr('selected','selected');
+        $('#id_view_photos option').eq(6).attr('selected','selected');
+        $('#id_view_contacts option').eq(6).attr('selected','selected');
+        $('#id_view_storage option').eq(6).attr('selected','selected');
+        $('#id_view_pages option').eq(6).attr('selected','selected');
         $('#id_send_stream option').eq(4).attr('selected','selected');
         $('#id_post_wall option').eq(4).attr('selected','selected');
         $('#id_post_comments option').eq(4).attr('selected','selected');
-- 
cgit v1.2.3


From c09087262c29c093762e91b280fa452c7b935ce9 Mon Sep 17 00:00:00 2001
From: marijus <mario@mariovavti.com>
Date: Wed, 19 Feb 2014 18:42:37 +0100
Subject: bootstrapify the nav

---
 view/css/bootstrap-red.css                 |  48 +++++
 view/css/default.css                       |  14 +-
 view/css/widgets.css                       |   3 +
 view/js/main.js                            |  89 +++------
 view/theme/redbasic/css/style.css          |  88 ++++----
 view/theme/redbasic/tpl/theme_settings.tpl |   4 +-
 view/tpl/head.tpl                          |   1 +
 view/tpl/nav.tpl                           | 311 ++++++++++++++++-------------
 8 files changed, 308 insertions(+), 250 deletions(-)

(limited to 'view')

diff --git a/view/css/bootstrap-red.css b/view/css/bootstrap-red.css
index 73c06fd4b..89117ac1c 100644
--- a/view/css/bootstrap-red.css
+++ b/view/css/bootstrap-red.css
@@ -65,3 +65,51 @@ margin-left: 0px;
 float:none;
 margin-left:0px;
 }
+
+/* nav overrides */
+
+nav .badge {
+	position: relative;
+	top: -48px;
+	float: left;
+	font-size: 10px;
+	padding: 2px 6px;
+	cursor: pointer;
+}
+
+nav .dropdown-menu {
+	top: 51px;
+	max-height: 450px;
+	max-width: 300px;
+	overflow-y: auto;
+	margin-top: 0px;
+}
+
+nav .dropdown-menu .contactname {
+	padding-top: 2px;
+	font-weight: bold;
+	display: block;
+}
+
+nav .dropdown-menu img {
+	float: left;
+	margin-right: 5px;
+	width: 32px;
+	height: 32px;
+}
+
+nav .dropdown-menu li a {
+	overflow: hidden;
+	text-overflow: ellipsis;
+	line-height: 1em;
+	padding: 5px 10px;
+}
+
+nav .navbar-collapse {
+	max-height: 450px;
+}
+
+nav .navbar-right li:last-child {
+	padding-right: 20px;
+}
+/* nav overrides end */
diff --git a/view/css/default.css b/view/css/default.css
index 27df38dee..4afcbf1d5 100644
--- a/view/css/default.css
+++ b/view/css/default.css
@@ -1,18 +1,8 @@
-
-nav {
-	height: 24px;
-	display: block;
-	position: fixed;
-	width: 100%;
-	z-index: 100;
-	background-color: #ff0000;
-}
-
 aside#region_1 {
 	display: block;
 	width: 210px;
 	position: absolute;
-	top: 48px;
+	top: 65px;
 	left: 0;
 	margin-left: 10px;
 }
@@ -24,7 +14,7 @@ aside input[type='text'] {
 
 section {
 	position: absolute;
-	top: 48px;
+	top: 65px;
 	left: 250px;
 	display: block;
 	right: 15px;
diff --git a/view/css/widgets.css b/view/css/widgets.css
index 7ad6d79e5..dcda66b81 100644
--- a/view/css/widgets.css
+++ b/view/css/widgets.css
@@ -109,6 +109,9 @@
 	opacity: 0;
 }
 
+li:hover .group-edit-icon {
+	opacity: 1;
+}
 /* affinity - slider */
 
 #main-slider {
diff --git a/view/js/main.js b/view/js/main.js
index 44cb79949..fa96596f4 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -197,58 +197,34 @@
 		/* setup field_richtext */
 		setupFieldRichtext();
 
-		/* popup menus */
-		function close_last_popup_menu() {
- 			if(last_popup_menu) {
- 				last_popup_menu.hide();
-/* 				last_popup_button.removeClass("selected"); */
-	 			last_popup_menu = null;
- 				last_popup_button = null;
- 			}	
-		}
 
 		/* Turn elements with one of our special rel tags into popup menus */
+		/* CHANGES: let bootstrap handle popups and only do the loading here */
 	
 		$('a[rel^=#]').click(function(e){
 				manage_popup_menu(this,e);
-				return false;
+				return;
 		});
 
 		$('span[rel^=#]').click(function(e){
 				manage_popup_menu(this,e);
-				return false;
+				return;
 		});
 
 
 		function manage_popup_menu(w,e) {
-			close_last_popup_menu();
 			menu = $( $(w).attr('rel') );
-			e.preventDefault();
-			e.stopPropagation();
-			if (menu.attr('popup')=="false") return false;
-/*			$(w).parent().toggleClass("selected"); */
+
 			/* notification menus are loaded dynamically 
 			 * - here we find a rel tag to figure out what type of notification to load */
+
 			var loader_source = $(menu).attr('rel');
 		
 			if(typeof(loader_source) != 'undefined' && loader_source.length) {	
 				notify_popup_loader(loader_source);
 			}
-			menu.toggle();
-			if (menu.css("display") == "none") {
-				last_popup_menu = null;
-				last_popup_button = null;
-			} else {
-				last_popup_menu = menu;
-				last_popup_button = $(w).parent();
-			}
-			return false;
 		}
-	
-		$('html').click(function() {
-			close_last_popup_menu();
-		});
-		
+
 		// fancyboxes
 		$("a.popupbox").fancybox({
 			'transitionIn' : 'elastic',
@@ -324,46 +300,46 @@
 
 				if(data.network == 0) { 
 					data.network = ''; 
-					$('#net-update').removeClass('show') 
+					$('.net-update').removeClass('show')
 				} 
 				else { 
-					$('#net-update').addClass('show') 
+					$('.net-update').addClass('show')
 				}
-				$('#net-update').html(data.network);
+				$('.net-update').html(data.network);
 
-				if(data.home == 0) { data.home = ''; $('#home-update').removeClass('show') } else { $('#home-update').addClass('show') }
-				$('#home-update').html(data.home);
+				if(data.home == 0) { data.home = ''; $('.home-update').removeClass('show') } else { $('.home-update').addClass('show') }
+				$('.home-update').html(data.home);
 			
 
-				if(data.intros == 0) { data.intros = ''; $('#intro-update').removeClass('show') } else { $('#intro-update').addClass('show') }
-				$('#intro-update').html(data.intros);
+				if(data.intros == 0) { data.intros = ''; $('.intro-update').removeClass('show') } else { $('.intro-update').addClass('show') }
+				$('.intro-update').html(data.intros);
 
-				if(data.mail == 0) { data.mail = ''; $('#mail-update').removeClass('show') } else { $('#mail-update').addClass('show') }
-				$('#mail-update').html(data.mail);
+				if(data.mail == 0) { data.mail = ''; $('.mail-update').removeClass('show') } else { $('.mail-update').addClass('show') }
+				$('.mail-update').html(data.mail);
 			
 
-				if(data.notify == 0) { data.notify = ''; $('#notify-update').removeClass('show') } else { $('#notify-update').addClass('show') }
-				$('#notify-update').html(data.notify);
+				if(data.notify == 0) { data.notify = ''; $('.notify-update').removeClass('show') } else { $('.notify-update').addClass('show') }
+				$('.notify-update').html(data.notify);
 
-				if(data.register == 0) { data.register = ''; $('#register-update').removeClass('show') } else { $('#register-update').addClass('show') }
-				$('#register-update').html(data.register);
+				if(data.register == 0) { data.register = ''; $('.register-update').removeClass('show') } else { $('.register-update').addClass('show') }
+				$('.register-update').html(data.register);
 
-				if(data.events == 0) { data.events = ''; $('#events-update').removeClass('show') } else { $('#events-update').addClass('show') }
-				$('#events-update').html(data.events);
+				if(data.events == 0) { data.events = ''; $('.events-update').removeClass('show') } else { $('.events-update').addClass('show') }
+				$('.events-update').html(data.events);
 
-				if(data.events_today == 0) { data.events_today = ''; $('#events-today-update').removeClass('show') } else { $('#events-today-update').addClass('show') }
-				$('#events-today-update').html(data.events_today);
+				if(data.events_today == 0) { data.events_today = ''; $('.events-today-update').removeClass('show') } else { $('.events-today-update').addClass('show') }
+				$('.events-today-update').html(data.events_today);
 
-				if(data.birthdays == 0) { data.birthdays = ''; $('#birthdays-update').removeClass('show') } else { $('#birthdays-update').addClass('show') }
-				$('#birthdays-update').html(data.birthdays);
+				if(data.birthdays == 0) { data.birthdays = ''; $('.birthdays-update').removeClass('show') } else { $('.birthdays-update').addClass('show') }
+				$('.birthdays-update').html(data.birthdays);
 
-				if(data.birthdays_today == 0) { data.birthdays_today = ''; $('#birthdays-today-update').removeClass('show') } else { $('#birthdays-today-update').addClass('show') }
-				$('#birthdays-today-update').html(data.birthdays_today);
+				if(data.birthdays_today == 0) { data.birthdays_today = ''; $('.birthdays-today-update').removeClass('show') } else { $('.birthdays-today-update').addClass('show') }
+				$('.birthdays-today-update').html(data.birthdays_today);
 
-				if(data.all_events == 0) { data.all_events = ''; $('#all_events-update').removeClass('show') } else { $('#all_events-update').addClass('show') }
-				$('#all_events-update').html(data.all_events);
-				if(data.all_events_today == 0) { data.all_events_today = ''; $('#all_events-today-update').removeClass('show') } else { $('#all_events-today-update').addClass('show') }
-				$('#all_events-today-update').html(data.all_events_today);
+				if(data.all_events == 0) { data.all_events = ''; $('.all_events-update').removeClass('show') } else { $('.all_events-update').addClass('show') }
+				$('.all_events-update').html(data.all_events);
+				if(data.all_events_today == 0) { data.all_events_today = ''; $('.all_events-today-update').removeClass('show') } else { $('.all_events-today-update').addClass('show') }
+				$('.all_events-today-update').html(data.all_events_today);
 
 
 				$(data.notice).each(function() {
@@ -671,8 +647,7 @@ function updateConvItems(mode,data) {
 
 
 				$(data.notify).each(function() {
-					text = "<span class='contactname'>"+this.name+"</span>" + ' ' + this.message + '<br />';
-					html = notifications_tpl.format(this.notify_link,this.photo,text,this.when,this.class);
+					html = notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.class);
 					$("#nav-" + notifyType + "-menu").append(html);
 				});
 
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 78fdac0cd..127f09683 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -140,6 +140,8 @@ blockquote {
 	filter:alpha(opacity=100);
 }
 
+/* this is not yet supported
+
 nav {
 	background-image: linear-gradient(bottom, $nav_bg_1 26%, $nav_bg_2 82%);
 	background-image: -o-linear-gradient(bottom, $nav_bg_1 26%, $nav_bg_2 82%);
@@ -151,8 +153,6 @@ nav {
 
 }
 
-
-
 nav:hover {
 	background-image: linear-gradient(bottom, $nav_bg_3 26%, $nav_bg_4 82%);
 	background-image: -o-linear-gradient(bottom, $nav_bg_3 26%, $nav_bg_4 82%);
@@ -163,7 +163,7 @@ nav:hover {
 	filter:alpha(opacity=100);
 
 }
-
+*/
 
 nav #site-location {
 	color: #888a85;
@@ -204,15 +204,15 @@ header #site-location {
 }
 
 header #banner {
-
   overflow: hidden;
   text-align: center;
-  font-size: 1.4em;
+  font-size: 14px;
   font-family: tahoma, "Lucida Sans", sans;
   color: $banner_colour;
   font-weight: bold;
-  margin-top: 1px;
+  margin: 14px;
 }
+
 header #banner a,
 header #banner a:active,
 header #banner a:visited,
@@ -879,8 +879,8 @@ footer {
 }
 
 #nav-search-spinner {
-	float: right;
-	margin: 12px 12px 0px 0px;
+	float: left;
+	margin: 25px 0px 0px 25px;
 	color: #fff;
 }
 
@@ -892,6 +892,7 @@ footer {
 
 #nav-search-text {
 	height: 20px;
+	margin: 15px;
 	padding: 0px 5px 0px 5px;
 	border-radius: 10px;
 	border: none;
@@ -919,11 +920,6 @@ footer {
 	font-family: FontAwesome;
 }
 
-#nav-user-linkmenu img {
-	border-radius: $radiuspx;
-	margin-top: -4px;
-}
-
 .nav-dropdown-indicator {
     opacity: 0.8;
     filter:alpha(opacity=80);
@@ -1548,8 +1544,8 @@ div.jGrowl div.info {
 
 #nav-search-text-ac .autocomplete {
 	position: fixed;
-	top: 24px;
-	border: 1px solid $nav_bg_1;
+	top: 51px;
+	border: 1px solid #222;
 	border-top: none;
 }
 
@@ -1628,26 +1624,6 @@ nav .fakelink:hover { text-decoration: none; }
 	color: #000000;
 }
 
-nav ul {
-  margin: 0px;
-  padding: 0px 20px;
-}
-nav ul li {
-  list-style: none;
-  margin: 0px;
-  padding: 0px;
-  float: left;
-}
-nav ul li .menu-popup {
-  left: 0px;
-  right: auto;
-  top: 33px;
-}
-
-#nav-user-linkmenu {
-	margin-left: 5px;
-}
-
 nav .nav-menu-icon {
   position: relative;
   height: 22px;
@@ -1785,13 +1761,10 @@ header {
   position: fixed;
   left: 43%;
   right: 43%;
-  top: 0px;
   margin: 0px;
   padding: 0px;
-  /*width: 100%; height: 12px; */
-
-  z-index: 110;
-  color: #ffffff;
+  z-index: 1400;
+  color: #fff;
 }
 
 
@@ -2469,3 +2442,38 @@ img.mail-list-sender-photo {
 	border-radius: $radiuspx;
 	background-color: #eee;
 }
+
+/* nav bootstrap */
+nav i {
+	font-size: 14px;
+}
+
+nav img {
+	height: 47px;
+	width: 47px;
+	margin: 2px 0px 1px 10px;
+	border-radius: $radiuspx;
+}
+
+nav ul li {
+	max-height: 50px
+}
+
+nav a,
+nav a:active,
+nav a:visited,
+nav a:link {
+  color: #333;
+}
+
+nav .badge {
+	border-radius: $radiuspx;
+}
+
+nav .dropdown-menu {
+	font-size: $body_font_size;
+	border-top-right-radius: 0px;
+	border-top-left-radius: 0px;
+	border-bottom-right-radius: $radiuspx;
+	border-bottom-left-radius: $radiuspx;
+}
diff --git a/view/theme/redbasic/tpl/theme_settings.tpl b/view/theme/redbasic/tpl/theme_settings.tpl
index ca05986a2..cc573d99e 100644
--- a/view/theme/redbasic/tpl/theme_settings.tpl
+++ b/view/theme/redbasic/tpl/theme_settings.tpl
@@ -4,7 +4,7 @@
 </div>
 
 {{if $expert}}
-{{include file="field_select.tpl" field=$nav_colour}}
+{{* include file="field_select.tpl" field=$nav_colour *}}
 {{include file="field_input.tpl" field=$banner_colour}}
 {{include file="field_input.tpl" field=$link_colour}}
 {{include file="field_input.tpl" field=$bgcolour}}
@@ -19,7 +19,7 @@
 {{include file="field_input.tpl" field=$radius}}
 {{include file="field_input.tpl" field=$shadow}}
 {{include file="field_input.tpl" field=$converse_width}}
-{{include file="field_input.tpl" field=$nav_min_opacity}}
+{{* include file="field_input.tpl" field=$nav_min_opacity *}}
 {{include file="field_input.tpl" field=$top_photo}}
 {{include file="field_input.tpl" field=$reply_photo}}
 {{include file="field_checkbox.tpl" field=$sloppy_photos}}
diff --git a/view/tpl/head.tpl b/view/tpl/head.tpl
index eb4c6c2ad..b96c46dd7 100755
--- a/view/tpl/head.tpl
+++ b/view/tpl/head.tpl
@@ -1,5 +1,6 @@
 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
 <base href="{{$baseurl}}/" />
+<meta name="viewport" content="width=device-width, initial-scale=0">
 <meta name="generator" content="{{$generator}}" />
 
 <!--[if IE]>
diff --git a/view/tpl/nav.tpl b/view/tpl/nav.tpl
index 048f53743..ba8d68b13 100755
--- a/view/tpl/nav.tpl
+++ b/view/tpl/nav.tpl
@@ -1,151 +1,184 @@
 <header>
-	<div id="site-location">{{$sitelocation}}</div>
-	<div id="banner">{{$banner}}</div>
+<!--	<div id="site-location">{{$sitelocation}}</div> -->
+	<div id="banner" class="hidden-sm hidden-xs">{{$banner}}</div>
 </header>
-<nav>
-	<ul>
 
-	{{if $userinfo}}
-	      <li id="nav-user-linkmenu" class="nav-menu-icon"><a href="#" rel="#nav-user-menu" title="{{$userinfo.name}}"><img src="{{$userinfo.icon}}" alt="{{$userinfo.name}}"><span class="nav-dropdown-indicator">&#x25BC;</span></a>
-		{{if $localuser}}
-			<ul id="nav-user-menu" class="menu-popup">
-				{{foreach $nav.usermenu as $usermenu}}
-					<li><a class="{{$usermenu.2}}" href="{{$usermenu.0}}" title="{{$usermenu.3}}">{{$usermenu.1}}</a></li>
-				{{/foreach}}
-				{{if $nav.profiles}}<li><a class="{{$nav.profiles.2}}" href="{{$nav.profiles.0}}" title="{{$nav.profiles.3}}">{{$nav.profiles.1}}</a></li>{{/if}}
-				{{if $nav.manage}}<li><a class="{{$nav.manage.2}}" href="{{$nav.manage.0}}" title="{{$nav.manage.3}}">{{$nav.manage.1}}</a></li>{{/if}}	
-				{{if $nav.contacts}}<li><a class="{{$nav.contacts.2}}" href="{{$nav.contacts.0}}" title="{{$nav.contacts.3}}" >{{$nav.contacts.1}}</a></li>{{/if}}
-				{{if $nav.settings}}<li><a class="{{$nav.settings.2}}" href="{{$nav.settings.0}}" title="{{$nav.settings.3}}">{{$nav.settings.1}}</a></li>{{/if}}
-
-				{{if $nav.admin}}<li><a class="{{$nav.admin.2}}" href="{{$nav.admin.0}}" title="{{$nav.admin.3}}" >{{$nav.admin.1}}</a></li>{{/if}}
-
-				{{if $nav.logout}}<li><a class="menu-sep {{$nav.logout.2}}" href="{{$nav.logout.0}}" title="{{$nav.logout.3}}" >{{$nav.logout.1}}</a></li>{{/if}}
-
-			</ul>
-		{{/if}}
-		</li>
-	{{/if}}
-
-
-	{{if $nav.lock}}
-		<li id="nav-rmagic-link" class="nav-menu-icon" >
-			<i class="{{if $nav.locked}}icon-lock{{else}}icon-unlock{{/if}} fakelink nav-icon" onclick="window.location.href='{{$nav.lock.0}}'; return false;"  title="{{$nav.lock.3}}" ></i>
-		</li>
-	{{/if}}
-
-		
-	{{if $nav.network}}
-		<li id="nav-network-link" class="nav-menu {{$sel.network}}">
-			<a class="{{$nav.network.2}}" href="{{$nav.network.0}}" title="{{$nav.network.3}}" ><i class="icon-th nav-icon"></i></a>
-			<span id="net-update" class="nav-notify fakelink" rel="#nav-network-menu"></span>
-			<ul id="nav-network-menu" class="menu-popup notify-menus" rel="network">
-				{{* <li id="nav-network-see-all"><a href="{{$nav.network.all.0}}">{{$nav.network.all.1}}</a></li> *}}
-				<li id="nav-network-mark-all"><a href="#" onclick="markRead('network'); return false;">{{$nav.network.mark.1}}</a></li>
-				<li class="empty">{{$emptynotifications}}</li>
-			</ul>
-			</li>
-	{{/if}}
-
-	{{if $nav.home}}
-		<li id="nav-home-link" class="nav-menu {{$sel.home}}">
-			<a class="{{$nav.home.2}}" href="{{$nav.home.0}}" title="{{$nav.home.3}}" ><i class="icon-home nav-icon"></i></a>
-			<span id="home-update" class="nav-notify fakelink" rel="#nav-home-menu"></span>
-			<ul id="nav-home-menu" class="menu-popup notify-menus" rel="home">
-				{{* <li id="nav-home-see-all"><a href="{{$nav.home.all.0}}">{{$nav.home.all.1}}</a></li> *}}
-				<li id="nav-home-mark-all"><a href="#" onclick="markRead('home'); return false;">{{$nav.home.mark.1}}</a></li>
-				<li class="empty">{{$emptynotifications}}</li>
-			</ul>
-		</li>
-	{{/if}}
-
-   {{if $nav.register}}<li id="nav-register-link" class="nav-menu {{$nav.register.2}}"><a href="{{$nav.register.0}}" title="{{$nav.register.3}}" >{{$nav.register.1}}</a><li>{{/if}}
-
-
-	{{if $nav.messages}}
-		<li id="nav-mail-link" class="nav-menu {{$sel.messages}}">
-			<a class="{{$nav.messages.2}}" href="{{$nav.messages.0}}" title="{{$nav.messages.3}}" ><i class="icon-envelope nav-icon"></i></a>
-			<span id="mail-update" class="nav-notify fakelink" rel="#nav-messages-menu"></span>
-			<ul id="nav-messages-menu" class="menu-popup notify-menus" rel="messages">
-				<li id="nav-messages-see-all"><a href="{{$nav.messages.all.0}}">{{$nav.messages.all.1}}</a></li>
-				<li id="nav-messages-mark-all"><a href="#" onclick="markRead('messages'); return false;">{{$nav.messages.mark.1}}</a></li>
-				<li class="empty">{{$emptynotifications}}</li>
-			</ul>
-		</li>
-	{{/if}}
-
-	{{if $nav.all_events}}
-		<li id="nav-all_events-link" class="nav-menu {{$sel.all_events}}">
-			<a class="{{$nav.all_events.2}}" href="{{$nav.all_events.0}}" title="{{$nav.all_events.3}}" ><i class="icon-calendar nav-icon"></i></a>
-			<span id="all_events-update" class="nav-notify fakelink" rel="#nav-all_events-menu"></span>
-			<ul id="nav-all_events-menu" class="menu-popup notify-menus" rel="all_events">
-				<li id="nav-all_events-see-all"><a href="{{$nav.all_events.all.0}}">{{$nav.all_events.all.1}}</a></li>
-				<li id="nav-all_events-mark-all"><a href="#" onclick="markRead('all_events'); return false;">{{$nav.all_events.mark.1}}</a></li>
-				<li class="empty">{{$emptynotifications}}</li>
-			</ul>
-		</li>
-	{{/if}}
-
-	{{if $nav.intros}}
-		<li id="nav-intros-link" class="nav-menu {{$sel.intros}}">
-			<a class="{{$nav.intros.2}}" href="{{$nav.intros.0}}" title="{{$nav.intros.3}}" ><i class="icon-user nav-icon"></i></a>
-			<span id="intro-update" class="nav-notify fakelink" rel="#nav-intros-menu"></span>
-			<ul id="nav-intros-menu" class="menu-popup notify-menus" rel="intros">
-				<li id="nav-intros-see-all"><a href="{{$nav.intros.all.0}}">{{$nav.intros.all.1}}</a></li>
-				<li class="empty">{{$emptynotifications}}</li>
-			</ul>
-		</li>
-	{{/if}}
+<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
+	<div class="container-fluid">
+		<div class="navbar-header">
+			<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-collapse-1">
+				<span class="icon-bar"></span>
+				<span class="icon-bar"></span>
+				<span class="icon-bar"></span>
+			</button>
+			{{if $userinfo}}
+			<img class="dropdown-toggle fakelink" data-toggle="dropdown" id="avatar" src="{{$userinfo.icon}}" alt="{{$userinfo.name}}"><span class="caret"></span>
+				{{if $localuser}}
+				<ul class="dropdown-menu" role="menu" aria-labelledby="avatar">
+					{{foreach $nav.usermenu as $usermenu}}
+					<li role="presentation"><a href="{{$usermenu.0}}" title="{{$usermenu.3}}" role="menuitem">{{$usermenu.1}}</a></li>
+					{{/foreach}}
+					{{if $nav.profiles}}<li role="presentation"><a href="{{$nav.profiles.0}}" title="{{$nav.profiles.3}}" role="menuitem">{{$nav.profiles.1}}</a></li>{{/if}}
+					{{if $nav.manage}}<li role="presentation"><a href="{{$nav.manage.0}}" title="{{$nav.manage.3}}" role="menuitem">{{$nav.manage.1}}</a></li>{{/if}}	
+					{{if $nav.contacts}}<li role="presentation"><a href="{{$nav.contacts.0}}" title="{{$nav.contacts.3}}" role="menuitem">{{$nav.contacts.1}}</a></li>{{/if}}
+					{{if $nav.settings}}<li role="presentation"><a href="{{$nav.settings.0}}" title="{{$nav.settings.3}}" role="menuitem">{{$nav.settings.1}}</a></li>{{/if}}
+					{{if $nav.admin}}<li role="presentation"><a href="{{$nav.admin.0}}" title="{{$nav.admin.3}}" role="menuitem">{{$nav.admin.1}}</a></li>{{/if}}
+					{{if $nav.logout}}
+					<li role="presentation" class="divider"></li>
+					<li role="presentation"><a href="{{$nav.logout.0}}" title="{{$nav.logout.3}}" role="menuitem">{{$nav.logout.1}}</a></li>
+					{{/if}}
+				</ul>
+				{{/if}}
+			{{/if}}
+		</div>
+		<div class="collapse navbar-collapse" id="navbar-collapse-1">
+			<ul class="nav navbar-nav navbar-left">
+			{{if $nav.lock}}
+				<li>
+					<a class="fakelink" title="{{$nav.lock.3}}" onclick="window.location.href='{{$nav.lock.0}}'; return false;"><i class="{{if $nav.locked}}icon-lock{{else}}icon-unlock{{/if}}"></i></a>
+				</li>
+			{{/if}}
+
+			{{if $nav.network}}
+				<li class="{{$sel.network}} hidden-xs">
+					<a href="{{$nav.network.0}}" title="{{$nav.network.3}}" ><i class="icon-th"></i></a>
+					<span class="net-update badge dropdown-toggle" data-toggle="dropdown" rel="#nav-network-menu"></span>
+					<ul id="nav-network-menu" role="menu" class="dropdown-menu" rel="network">
+						{{* <li id="nav-network-see-all"><a href="{{$nav.network.all.0}}">{{$nav.network.all.1}}</a></li> *}}
+						<li id="nav-network-mark-all"><a href="#" onclick="markRead('network'); return false;">{{$nav.network.mark.1}}</a></li>
+						<li class="empty">{{$emptynotifications}}</li>
+					</ul>
+				</li>
+				<li class="{{$sel.network}} visible-xs">
+					<a href="{{$nav.network.0}}" title="{{$nav.network.3}}" ><i class="icon-th"></i></a>
+					<span class="net-update badge" rel="#nav-network-menu"></span>
+				</li>
+			{{/if}}
+
+			{{if $nav.home}}
+				<li class="{{$sel.home}} hidden-xs">
+					<a class="{{$nav.home.2}}" href="{{$nav.home.0}}" title="{{$nav.home.3}}" ><i class="icon-home"></i></a>
+					<span class="home-update badge dropdown-toggle" data-toggle="dropdown" rel="#nav-home-menu"></span>
+					<ul id="nav-home-menu" class="dropdown-menu" rel="home">
+						{{* <li id="nav-home-see-all"><a href="{{$nav.home.all.0}}">{{$nav.home.all.1}}</a></li> *}}
+						<li id="nav-home-mark-all"><a href="#" onclick="markRead('home'); return false;">{{$nav.home.mark.1}}</a></li>
+						<li class="empty">{{$emptynotifications}}</li>
+					</ul>
+				</li>
+				<li class="{{$sel.home}} visible-xs">
+					<a class="{{$nav.home.2}}" href="{{$nav.home.0}}" title="{{$nav.home.3}}" ><i class="icon-home"></i></a>
+					<span class="home-update badge"rel="#nav-home-menu"></span>
+				</li>
+			{{/if}}
+
+			{{if $nav.register}}<li class="{{$nav.register.2}}"><a href="{{$nav.register.0}}" title="{{$nav.register.3}}" >{{$nav.register.1}}</a><li>{{/if}}
+
+			{{if $nav.messages}}
+				<li class="{{$sel.messages}} hidden-xs">
+					<a class="{{$nav.messages.2}}" href="{{$nav.messages.0}}" title="{{$nav.messages.3}}" ><i class="icon-envelope"></i></a>
+					<span class="mail-update badge dropdown-toggle" data-toggle="dropdown" rel="#nav-messages-menu"></span>
+					<ul id="nav-messages-menu" class="dropdown-menu" rel="messages">
+						<li id="nav-messages-see-all"><a href="{{$nav.messages.all.0}}">{{$nav.messages.all.1}}</a></li>
+						<li id="nav-messages-mark-all"><a href="#" onclick="markRead('messages'); return false;">{{$nav.messages.mark.1}}</a></li>
+						<li class="empty">{{$emptynotifications}}</li>
+					</ul>
+				</li>
+				<li class="{{$sel.messages}} visible-xs">
+					<a class="{{$nav.messages.2}}" href="{{$nav.messages.0}}" title="{{$nav.messages.3}}" ><i class="icon-envelope"></i></a>
+					<span class="mail-update badge" rel="#nav-messages-menu"></span>
+				</li>
+			{{/if}}
+
+			{{if $nav.all_events}}
+				<li class="{{$sel.all_events}} hidden-xs">
+					<a class="{{$nav.all_events.2}}" href="{{$nav.all_events.0}}" title="{{$nav.all_events.3}}" ><i class="icon-calendar"></i></a>
+					<span class="all_events-update badge dropdown-toggle" data-toggle="dropdown" rel="#nav-all_events-menu"></span>
+					<ul id="nav-all_events-menu" class="dropdown-menu" rel="all_events">
+						<li id="nav-all_events-see-all"><a href="{{$nav.all_events.all.0}}">{{$nav.all_events.all.1}}</a></li>
+						<li id="nav-all_events-mark-all"><a href="#" onclick="markRead('all_events'); return false;">{{$nav.all_events.mark.1}}</a></li>
+						<li class="empty">{{$emptynotifications}}</li>
+					</ul>
+				</li>
+				<li class="{{$sel.all_events}} visible-xs">
+					<a class="{{$nav.all_events.2}}" href="{{$nav.all_events.0}}" title="{{$nav.all_events.3}}" ><i class="icon-calendar"></i></a>
+					<span class="all_events-update badge" rel="#nav-all_events-menu"></span>
+				</li>
+			{{/if}}
+
+			{{if $nav.intros}}
+				<li class="{{$sel.intros}} hidden-xs">
+					<a class="{{$nav.intros.2}}" href="{{$nav.intros.0}}" title="{{$nav.intros.3}}" ><i class="icon-user"></i></a>
+					<span class="intro-update badge dropdown-toggle" data-toggle="dropdown" rel="#nav-intros-menu"></span>
+					<ul id="nav-intros-menu" class="dropdown-menu" rel="intros">
+						<li id="nav-intros-see-all"><a href="{{$nav.intros.all.0}}">{{$nav.intros.all.1}}</a></li>
+						<li class="empty">{{$emptynotifications}}</li>
+					</ul>
+				</li>
+				<li class="{{$sel.intros}} visible-xs">
+					<a class="{{$nav.intros.2}}" href="{{$nav.intros.0}}" title="{{$nav.intros.3}}" ><i class="icon-user"></i></a>
+					<span class="intro-update badge" rel="#nav-intros-menu"></span>
+				</li>
+			{{/if}}
 		
-	{{if $nav.notifications}}
-		<li id="nav-notify-linkmenu" class="nav-menu fakelink {{$sel.notifications}}">
-			<a href="{{$nav.notifications.0}}" title="{{$nav.notifications.1}}"><i class="icon-exclamation nav-icon"></i></a>
-			<span id="notify-update" class="nav-notify fakelink" rel="#nav-notify-menu"></span>
-			<ul id="nav-notify-menu" class="menu-popup notify-menus" rel="notify">
-				<li id="nav-notify-see-all"><a href="{{$nav.notifications.all.0}}">{{$nav.notifications.all.1}}</a></li>
-				<li id="nav-notify-mark-all"><a href="#" onclick="markRead('notify'); return false;">{{$nav.notifications.mark.1}}</a></li>
-				<li class="empty">{{$emptynotifications}}</li>
+			{{if $nav.notifications}}
+				<li class="{{$sel.notifications}} hidden-xs">
+					<a href="{{$nav.notifications.0}}" title="{{$nav.notifications.1}}"><i class="icon-exclamation"></i></a>
+					<span class="notify-update badge dropdown-toggle" data-toggle="dropdown" rel="#nav-notify-menu"></span>
+					<ul id="nav-notify-menu" class="dropdown-menu" rel="notify">
+						<li id="nav-notify-see-all"><a href="{{$nav.notifications.all.0}}">{{$nav.notifications.all.1}}</a></li>
+						<li id="nav-notify-mark-all"><a href="#" onclick="markRead('notify'); return false;">{{$nav.notifications.mark.1}}</a></li>
+						<li class="empty">{{$emptynotifications}}</li>
+					</ul>
+				</li>
+				<li class="{{$sel.notifications}} visible-xs">
+					<a href="{{$nav.notifications.0}}" title="{{$nav.notifications.1}}"><i class="icon-exclamation"></i></a>
+					<span class="notify-update badge" rel="#nav-notify-menu"></span>
+				</li>
+			{{/if}}
 			</ul>
-		</li>
-	{{/if}}		
-	
-	{{if $nav.login}}<li id="nav-login-link" class="nav-menu {{$nav.login.2}}"><a href="{{$nav.login.0}}" title="{{$nav.login.3}}" >{{$nav.login.1}}</a><li>{{/if}}
-	{{if $nav.alogout}}<li id=nav-alogout-link" class="nav-menu {{$nav}}-alogout.2"><a href="{{$nav.alogout.0}}" title="{{$nav.alogout.3}}" >{{$nav.alogout.1}}</a></li>{{/if}}
-
-	{{if $nav.directory}}
-		<li id="nav-directory-link" class="nav-menu {{$sel.directory}}">
-			<a class="{{$nav.directory.2}}" href="{{$nav.directory.0}}" title="{{$nav.directory.3}}"><i class="icon-sitemap nav-icon"></i></a>
-		</li>
-	{{/if}}
-
-	{{if $nav.help}} 
-		<li id="nav-help-link" class="nav-menu {{$sel.help}}">
-			<a class="{{$nav.help.2}}" target="friendika-help" href="{{$nav.help.0}}" title="{{$nav.help.3}}" ><i class="icon-question nav-icon"></i></a>
-		</li>
-	{{/if}}
-
-	{{if $nav.apps}}
-		<li id="nav-apps-link" class="nav-menu {{$sel.apps}}">
-			<a class=" {{$nav.apps.2}}" href="#" rel="#nav-apps-menu" title="{{$nav.apps.3}}" ><i class="icon-cogs nav-icon"></i></a>
-			<ul id="nav-apps-menu" class="menu-popup">
-			{{foreach $apps as $ap}}
-				<li>{{$ap}}</li>
-				{{/foreach}}
+			<ul class="nav navbar-nav navbar-right">
+				<li class="hidden-xs">
+					<form method="get" action="search" role="search">
+						<div id="nav-search-spinner"></div><input class="icon-search" id="nav-search-text" type="text" value="" placeholder="&#xf002;" name="search" title="{{$nav.search.3}}" onclick="this.submit();" />
+					</form>
+				</li>
+				<li class="visible-xs">
+					<a href="/search" title="Search"><i class="icon-search"></i></a>
+				</li>
+
+			{{if $nav.login}}<li class="{{$nav.login.2}}"><a href="{{$nav.login.0}}" title="{{$nav.login.3}}" >{{$nav.login.1}}</a><li>{{/if}}
+
+			{{if $nav.alogout}}<li class="{{$nav}}-alogout.2"><a href="{{$nav.alogout.0}}" title="{{$nav.alogout.3}}" >{{$nav.alogout.1}}</a></li>{{/if}}
+
+			{{if $nav.directory}}
+				<li class="{{$sel.directory}}">
+					<a class="{{$nav.directory.2}}" href="{{$nav.directory.0}}" title="{{$nav.directory.3}}"><i class="icon-sitemap"></i></a>
+				</li>
+			{{/if}}
+
+			{{if $nav.apps}}
+				<li class="{{$sel.apps}} hidden-xs">
+					<a class="{{$nav.apps.2}} dropdown-toggle" data-toggle="dropdown" href="#" rel="#nav-apps-menu" title="{{$nav.apps.3}}" ><i class="icon-cogs"></i></a>
+					<ul id="nav-apps-menu" class="dropdown-menu">
+					{{foreach $apps as $ap}}
+						<li>{{$ap}}</li>
+					{{/foreach}}
+					</ul>
+				</li>
+			{{/if}}
+
+			{{if $nav.help}}
+				<li class="{{$sel.help}}">
+					<a class="{{$nav.help.2}}" target="friendika-help" href="{{$nav.help.0}}" title="{{$nav.help.3}}" ><i class="icon-question"></i></a>
+				</li>
+			{{/if}}
 			</ul>
-		</li>
-	{{/if}}
-
-		<li id="nav-searchbar">		
-			<form method="get" action="search">
-				<input class="icon-search" id="nav-search-text" type="text" value="" placeholder="&#xf002;" name="search" title="{{$nav.search.3}}" onclick="this.submit();" />
-			</form>
-		</li>
-		<div id="nav-search-spinner"></div>
-
-	</ul>
+		</div>
+	</div>
 </nav>
 
 <ul id="nav-notifications-template" style="display:none;" rel="template">
-	<li class="{4}"><a href="{0}"><img src="{1}">{2} <span class="notif-when">{3}</span></a></li>
+	<li class="{5}"><a href="{0}" title="{2} {3}"><img src="{1}"><span class='contactname'>{2}</span>{3}<br><span class="notif-when">{4}</span></a></li>
 </ul>
 
 {{if $langselector}}<div id="langselector" >{{$langselector}}</div>{{/if}}
-- 
cgit v1.2.3


From 3a6760f6d1236905474bb13805e4ebb54561841f Mon Sep 17 00:00:00 2001
From: marijus <mario@mariovavti.com>
Date: Wed, 19 Feb 2014 18:55:24 +0100
Subject: one pixel to much...

---
 view/css/bootstrap-red.css | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/css/bootstrap-red.css b/view/css/bootstrap-red.css
index 89117ac1c..b180bea61 100644
--- a/view/css/bootstrap-red.css
+++ b/view/css/bootstrap-red.css
@@ -78,7 +78,7 @@ nav .badge {
 }
 
 nav .dropdown-menu {
-	top: 51px;
+	top: 50px;
 	max-height: 450px;
 	max-width: 300px;
 	overflow-y: auto;
-- 
cgit v1.2.3


From 82b028173c89f559b97bc819d232b4b0fa0330e0 Mon Sep 17 00:00:00 2001
From: marijus <mario@mariovavti.com>
Date: Wed, 19 Feb 2014 20:08:02 +0100
Subject: another correction

---
 view/theme/redbasic/css/style.css | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 127f09683..5d603c810 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -210,7 +210,7 @@ header #banner {
   font-family: tahoma, "Lucida Sans", sans;
   color: $banner_colour;
   font-weight: bold;
-  margin: 14px;
+  margin-top: 14px;
 }
 
 header #banner a,
-- 
cgit v1.2.3


From 9715176a56c0b8127e9c5045d26d13402c072ff8 Mon Sep 17 00:00:00 2001
From: tony baldwin <tony@tonybaldwin.org>
Date: Wed, 19 Feb 2014 22:56:52 -0500
Subject: s/View remote profiles as webpages/Do not view remote profiles in
 frames/g

---
 view/de/messages.po | 2 +-
 view/de/strings.php | 2 +-
 view/it/messages.po | 2 +-
 view/it/strings.php | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

(limited to 'view')

diff --git a/view/de/messages.po b/view/de/messages.po
index 7acbdcdd2..f98726f4d 100644
--- a/view/de/messages.po
+++ b/view/de/messages.po
@@ -5994,7 +5994,7 @@ msgid "Don't show emoticons"
 msgstr "Emoticons nicht zeigen"
 
 #: ../../mod/settings.php:761
-msgid "View remote profiles as webpages"
+msgid "Do not view remote profiles in frames"
 msgstr ""
 
 #: ../../mod/settings.php:761
diff --git a/view/de/strings.php b/view/de/strings.php
index ac1abc8f7..4001d78be 100644
--- a/view/de/strings.php
+++ b/view/de/strings.php
@@ -1410,7 +1410,7 @@ $a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 Sekunden, kein Ma
 $a->strings["Maximum number of conversations to load at any time:"] = "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:";
 $a->strings["Maximum of 100 items"] = "Maximum: 100 Beiträge";
 $a->strings["Don't show emoticons"] = "Emoticons nicht zeigen";
-$a->strings["View remote profiles as webpages"] = "";
+$a->strings["Do not view remote profiles in frames"] = "";
 $a->strings["By default open in a sub-window of your own site"] = "";
 $a->strings["Nobody except yourself"] = "Niemand außer Dir selbst";
 $a->strings["Only those you specifically allow"] = "Nur die, denen Du es explizit erlaubst";
diff --git a/view/it/messages.po b/view/it/messages.po
index 6d05e46dd..98d531562 100644
--- a/view/it/messages.po
+++ b/view/it/messages.po
@@ -5988,7 +5988,7 @@ msgid "Don't show emoticons"
 msgstr "Non mostrare le emoticons"
 
 #: ../../mod/settings.php:761
-msgid "View remote profiles as webpages"
+msgid "Do not view remote profiles in frames"
 msgstr "Visualizza gli altri profili come normali pagine web"
 
 #: ../../mod/settings.php:761
diff --git a/view/it/strings.php b/view/it/strings.php
index 060273ef2..42b91f2fa 100644
--- a/view/it/strings.php
+++ b/view/it/strings.php
@@ -1410,7 +1410,7 @@ $a->strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun li
 $a->strings["Maximum number of conversations to load at any time:"] = "Massimo numero di conversazioni da mostrare ogni volta:";
 $a->strings["Maximum of 100 items"] = "Massimo 100";
 $a->strings["Don't show emoticons"] = "Non mostrare le emoticons";
-$a->strings["View remote profiles as webpages"] = "Visualizza gli altri profili come normali pagine web";
+$a->strings["Do not view remote profiles in frames"] = "Visualizza gli altri profili come normali pagine web";
 $a->strings["By default open in a sub-window of your own site"] = "Se non selezionato, i profili degli altri utenti sono mostrati dentro un riquadro nella pagina";
 $a->strings["Nobody except yourself"] = "Nessuno tranne te";
 $a->strings["Only those you specifically allow"] = "Solo chi riceve il mio permesso";
-- 
cgit v1.2.3


From a29b71547a1ceb12d77617d9b06ba074c1793755 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Wed, 19 Feb 2014 20:19:56 -0800
Subject: use a "fullscreen" icon for chanview full screen mode; add
 channel_menu selection and setting to the settings page.

---
 view/css/mod_settings.css | 14 ++++++++++++++
 view/js/icon_translate.js |  1 +
 view/tpl/chanview.tpl     |  2 +-
 view/tpl/settings.tpl     | 19 +++++++++++++++++++
 4 files changed, 35 insertions(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/css/mod_settings.css b/view/css/mod_settings.css
index 0d3dd36fe..5b0105204 100644
--- a/view/css/mod_settings.css
+++ b/view/css/mod_settings.css
@@ -35,3 +35,17 @@
 	margin-bottom: 15px;
 }
 
+#settings-menu-desc {
+	font-weight: bold;
+	float: left;
+	width: 350px;
+}
+
+#settings-channel-menu-div select {
+	float: left;
+}
+
+#settings-channel-menu-end {
+	clear: both;
+	margin-bottom: 15px;
+}
\ No newline at end of file
diff --git a/view/js/icon_translate.js b/view/js/icon_translate.js
index 737164cb8..45deef05b 100644
--- a/view/js/icon_translate.js
+++ b/view/js/icon_translate.js
@@ -52,4 +52,5 @@ $(document).ready(function() {
 		$('.icon-circle-blank').addClass('');
 		$('.icon-circle').addClass('');
 		$('.icon-bookmark').addClass('');
+		$('.icon-fullscreen').addClass('');
 });
\ No newline at end of file
diff --git a/view/tpl/chanview.tpl b/view/tpl/chanview.tpl
index 4df327bf9..a43ea1b5d 100755
--- a/view/tpl/chanview.tpl
+++ b/view/tpl/chanview.tpl
@@ -1,2 +1,2 @@
-<div id="chanview-iframe-border" class="fakelink" onclick="chanviewFull(); return true;" title="{{$full}}" >&#x2610;</div>
+<div id="chanview-iframe-border" class="fakelink" onclick="chanviewFull(); return true;" title="{{$full}}" ><i class="icon-fullscreen"></i></div>
 <iframe id="remote-channel" width="100%" src="{{$url}}" onload="resize_iframe()"></iframe>
diff --git a/view/tpl/settings.tpl b/view/tpl/settings.tpl
index f5f2206bc..49dff4822 100755
--- a/view/tpl/settings.tpl
+++ b/view/tpl/settings.tpl
@@ -127,4 +127,23 @@
 <input type="submit" name="submit" class="settings-submit" value="{{$submit}}"{{if !$expert}} onclick="$('select').prop('disabled', false);"{{/if}} />
 </div>
 
+
+{{if $menus}}
+<h3 class="settings-heading">{{$lbl_misc}}</h3>
+
+<div id="settings-menu-desc">{{$menu_desc}}</div>
+<div class="settings-channel-menu-div">
+<select name="channel_menu" class="settings-channel-menu-sel">
+{{foreach $menus as $menu }}
+<option value="{{$menu.name}}" {{$menu.selected}} >{{$menu.name}} </option>
+{{/foreach}}
+</select>
+</div>
+<div class="settings-submit-wrapper" >
+<input type="submit" name="submit" class="settings-submit" value="{{$submit}}"{{if !$expert}} onclick="$('select').prop('disabled', false);"{{/if}} />
+</div>
+<div id="settings-channel-menu-end"></div>
+{{/if}}
+
+
 </div>
-- 
cgit v1.2.3


From a3191996e72012c2c4e0b50003755e4984ad1e99 Mon Sep 17 00:00:00 2001
From: marijus <mario@mariovavti.com>
Date: Thu, 20 Feb 2014 19:54:16 +0100
Subject: fixes issue #326 initial scale to big

---
 view/tpl/head.tpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/tpl/head.tpl b/view/tpl/head.tpl
index b96c46dd7..c676cd773 100755
--- a/view/tpl/head.tpl
+++ b/view/tpl/head.tpl
@@ -1,6 +1,6 @@
 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
 <base href="{{$baseurl}}/" />
-<meta name="viewport" content="width=device-width, initial-scale=0">
+<meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="generator" content="{{$generator}}" />
 
 <!--[if IE]>
-- 
cgit v1.2.3


From e56abd17822a6f5bfba9756239d613eb6240c4c4 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Thu, 20 Feb 2014 14:15:57 -0800
Subject: updated fr translation

---
 view/fr/messages.po | 4723 ++++++++++++++++++++++++++-------------------------
 view/fr/strings.php |  361 ++--
 2 files changed, 2566 insertions(+), 2518 deletions(-)

(limited to 'view')

diff --git a/view/fr/messages.po b/view/fr/messages.po
index 9df80657e..8eecf1ddd 100644
--- a/view/fr/messages.po
+++ b/view/fr/messages.po
@@ -8,9 +8,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Red Matrix\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-02-07 00:03-0800\n"
-"PO-Revision-Date: 2014-02-07 20:34+0000\n"
-"Last-Translator: Olivier <olivier+transifex@migeot.org>\n"
+"POT-Creation-Date: 2014-02-14 00:02-0800\n"
+"PO-Revision-Date: 2014-02-20 09:28+0000\n"
+"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
 "Language-Team: French (http://www.transifex.com/projects/p/red-matrix/language/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -18,6 +18,172 @@ msgstr ""
 "Language: fr\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
+#: ../../include/widgets.php:29 ../../include/contact_widgets.php:87
+msgid "Categories"
+msgstr "Catégories"
+
+#: ../../include/widgets.php:115 ../../include/widgets.php:155
+#: ../../include/Contact.php:104 ../../include/identity.php:628
+#: ../../mod/directory.php:184 ../../mod/match.php:62
+#: ../../mod/dirprofile.php:170 ../../mod/suggest.php:51
+msgid "Connect"
+msgstr "Relier"
+
+#: ../../include/widgets.php:117 ../../mod/suggest.php:53
+msgid "Ignore/Hide"
+msgstr "Ignorer/Cacher"
+
+#: ../../include/widgets.php:123 ../../mod/connections.php:238
+msgid "Suggestions"
+msgstr "Suggestion"
+
+#: ../../include/widgets.php:124
+msgid "See more..."
+msgstr "Voir plus..."
+
+#: ../../include/widgets.php:146
+#, php-format
+msgid "You have %1$.0f of %2$.0f allowed connections."
+msgstr "Vous avez %1$.0f des %2$.0f relations autorisées."
+
+#: ../../include/widgets.php:152
+msgid "Add New Connection"
+msgstr "Ajouter une nouvelle relation"
+
+#: ../../include/widgets.php:153
+msgid "Enter the channel address"
+msgstr "Adresse du canal"
+
+#: ../../include/widgets.php:154
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Exemple&nbsp;: bob@exemple.com, http://exemple.com/barbara"
+
+#: ../../include/widgets.php:171
+msgid "Notes"
+msgstr "Notes"
+
+#: ../../include/widgets.php:173 ../../include/text.php:754
+#: ../../include/text.php:768 ../../mod/filer.php:36
+msgid "Save"
+msgstr "Sauver"
+
+#: ../../include/widgets.php:243
+msgid "Remove term"
+msgstr "Retirer le terme"
+
+#: ../../include/widgets.php:252 ../../include/features.php:52
+msgid "Saved Searches"
+msgstr "Recherches sauvées"
+
+#: ../../include/widgets.php:253 ../../include/group.php:290
+msgid "add"
+msgstr "ajouter"
+
+#: ../../include/widgets.php:283 ../../include/features.php:66
+#: ../../include/contact_widgets.php:53
+msgid "Saved Folders"
+msgstr "Dossiers sauvegardés"
+
+#: ../../include/widgets.php:286 ../../include/contact_widgets.php:56
+#: ../../include/contact_widgets.php:90
+msgid "Everything"
+msgstr "Tout"
+
+#: ../../include/widgets.php:318 ../../include/items.php:3636
+msgid "Archives"
+msgstr "Archives"
+
+#: ../../include/widgets.php:370
+msgid "Refresh"
+msgstr "Actualiser"
+
+#: ../../include/widgets.php:371 ../../mod/connedit.php:389
+msgid "Me"
+msgstr "Moi"
+
+#: ../../include/widgets.php:372 ../../mod/connedit.php:391
+msgid "Best Friends"
+msgstr "Mes meilleurs amis"
+
+#: ../../include/widgets.php:373 ../../include/identity.php:310
+#: ../../include/profile_selectors.php:42 ../../mod/connedit.php:392
+msgid "Friends"
+msgstr "Amis"
+
+#: ../../include/widgets.php:374
+msgid "Co-workers"
+msgstr "Mes collègues"
+
+#: ../../include/widgets.php:375 ../../mod/connedit.php:393
+msgid "Former Friends"
+msgstr "Mes anciens amis"
+
+#: ../../include/widgets.php:376 ../../mod/connedit.php:394
+msgid "Acquaintances"
+msgstr "Mes accointances"
+
+#: ../../include/widgets.php:377
+msgid "Everybody"
+msgstr "Tout le monde"
+
+#: ../../include/widgets.php:409
+msgid "Account settings"
+msgstr "Compte"
+
+#: ../../include/widgets.php:415
+msgid "Channel settings"
+msgstr "Canal"
+
+#: ../../include/widgets.php:421
+msgid "Additional features"
+msgstr "Fonc. supplémentaires"
+
+#: ../../include/widgets.php:427
+msgid "Feature settings"
+msgstr "Fonctionnalités"
+
+#: ../../include/widgets.php:433
+msgid "Display settings"
+msgstr "Affichage"
+
+#: ../../include/widgets.php:439
+msgid "Connected apps"
+msgstr "Applications"
+
+#: ../../include/widgets.php:445
+msgid "Export channel"
+msgstr "Exporter canal"
+
+#: ../../include/widgets.php:457
+msgid "Automatic Permissions (Advanced)"
+msgstr "Permissions automatiques (avancé)"
+
+#: ../../include/widgets.php:467
+msgid "Premium Channel Settings"
+msgstr "Canal Premium"
+
+#: ../../include/widgets.php:476 ../../include/features.php:43
+#: ../../mod/sources.php:88
+msgid "Channel Sources"
+msgstr "Canaux sources"
+
+#: ../../include/widgets.php:487 ../../include/nav.php:181
+#: ../../mod/admin.php:837 ../../mod/admin.php:1042
+msgid "Settings"
+msgstr "Réglages"
+
+#: ../../include/widgets.php:504
+msgid "Check Mail"
+msgstr "Vérifier courriel"
+
+#: ../../include/widgets.php:509 ../../include/nav.php:172
+msgid "New Message"
+msgstr "Nouveau message"
+
+#: ../../include/widgets.php:585
+msgid "Chat Rooms"
+msgstr "Salons"
+
 #: ../../include/acl_selectors.php:235
 msgid "Visible to everybody"
 msgstr "Visible par tous"
@@ -191,7 +357,7 @@ msgstr "Recherche"
 msgid "Search site content"
 msgstr "Recherche parmi le contenu du site"
 
-#: ../../include/nav.php:142 ../../mod/directory.php:210
+#: ../../include/nav.php:142 ../../mod/directory.php:211
 msgid "Directory"
 msgstr "Annuaire"
 
@@ -271,10 +437,6 @@ msgstr "Boîte de réception"
 msgid "Outbox"
 msgstr "Boîte d'envoi"
 
-#: ../../include/nav.php:172 ../../include/widgets.php:509
-msgid "New Message"
-msgstr "Nouveau message"
-
 #: ../../include/nav.php:175
 msgid "Event Calendar"
 msgstr "Calendrier des événements"
@@ -295,11 +457,6 @@ msgstr "Changer de canal"
 msgid "Manage Your Channels"
 msgstr "Gérer vos canaux"
 
-#: ../../include/nav.php:181 ../../include/widgets.php:487
-#: ../../mod/admin.php:837 ../../mod/admin.php:1042
-msgid "Settings"
-msgstr "Réglages"
-
 #: ../../include/nav.php:181
 msgid "Account/Channel Settings"
 msgstr "Compte/Canal"
@@ -367,11 +524,6 @@ msgstr[1] "%d relations"
 msgid "View Connections"
 msgstr "Voir les relations"
 
-#: ../../include/text.php:754 ../../include/text.php:768
-#: ../../include/widgets.php:173 ../../mod/filer.php:36
-msgid "Save"
-msgstr "Sauver"
-
 #: ../../include/text.php:834
 msgid "poke"
 msgstr "tapoter"
@@ -629,7 +781,7 @@ msgstr "événement"
 #: ../../include/text.php:1643 ../../include/conversation.php:145
 #: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:53
 msgid "status"
-msgstr "statut"
+msgstr "le statut"
 
 #: ../../include/text.php:1645 ../../include/conversation.php:147
 #: ../../mod/tagger.php:55
@@ -660,185 +812,64 @@ msgstr "Mises-en-page"
 msgid "Pages"
 msgstr "Pages"
 
-#: ../../include/widgets.php:29 ../../include/contact_widgets.php:87
-msgid "Categories"
-msgstr "Catégories"
-
-#: ../../include/widgets.php:115 ../../include/widgets.php:155
-#: ../../include/Contact.php:104 ../../include/identity.php:628
-#: ../../mod/directory.php:183 ../../mod/match.php:62
-#: ../../mod/dirprofile.php:170 ../../mod/suggest.php:51
-msgid "Connect"
-msgstr "Relier"
-
-#: ../../include/widgets.php:117 ../../mod/suggest.php:53
-msgid "Ignore/Hide"
-msgstr "Ignorer/Cacher"
+#: ../../include/bbcode.php:128 ../../include/bbcode.php:594
+#: ../../include/bbcode.php:597 ../../include/bbcode.php:602
+#: ../../include/bbcode.php:605 ../../include/bbcode.php:608
+#: ../../include/bbcode.php:611 ../../include/bbcode.php:616
+#: ../../include/bbcode.php:619 ../../include/bbcode.php:624
+#: ../../include/bbcode.php:627 ../../include/bbcode.php:630
+#: ../../include/bbcode.php:633
+msgid "Image/photo"
+msgstr "Image/photo"
 
-#: ../../include/widgets.php:123 ../../mod/connections.php:238
-msgid "Suggestions"
-msgstr "Suggestion"
+#: ../../include/bbcode.php:163 ../../include/bbcode.php:644
+msgid "Encrypted content"
+msgstr "Contenu chiffré"
 
-#: ../../include/widgets.php:124
-msgid "See more..."
-msgstr "Voir plus..."
+#: ../../include/bbcode.php:170
+msgid "QR code"
+msgstr "QR code"
 
-#: ../../include/widgets.php:146
+#: ../../include/bbcode.php:213
 #, php-format
-msgid "You have %1$.0f of %2$.0f allowed connections."
-msgstr "Vous avez %1$.0f des %2$.0f relations autorisées."
+msgid "%1$s wrote the following %2$s %3$s"
+msgstr "%1$s a écrit %2$s qui suit %3$s"
 
-#: ../../include/widgets.php:152
-msgid "Add New Connection"
-msgstr "Ajouter une nouvelle relation"
+#: ../../include/bbcode.php:215
+msgid "post"
+msgstr "l'article"
 
-#: ../../include/widgets.php:153
-msgid "Enter the channel address"
-msgstr "Adresse du canal"
+#: ../../include/bbcode.php:562 ../../include/bbcode.php:582
+msgid "$1 wrote:"
+msgstr "$1 a écrit&nbsp;:"
 
-#: ../../include/widgets.php:154
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Exemple&nbsp;: bob@exemple.com, http://exemple.com/barbara"
+#: ../../include/Contact.php:120
+msgid "New window"
+msgstr "Nouvelle fenêtre"
 
-#: ../../include/widgets.php:171
-msgid "Notes"
-msgstr "Notes"
+#: ../../include/Contact.php:121
+msgid "Open the selected location in a different window or browser tab"
+msgstr "Ouvrir l'emplacement dans une fenêtre (ou un onglet) différent"
 
-#: ../../include/widgets.php:243
-msgid "Remove term"
-msgstr "Retirer le terme"
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Fonctionnalités générales"
 
-#: ../../include/widgets.php:252 ../../include/features.php:52
-msgid "Saved Searches"
-msgstr "Recherches sauvées"
+#: ../../include/features.php:25
+msgid "Content Expiration"
+msgstr "Expiration de contenu"
 
-#: ../../include/widgets.php:253 ../../include/group.php:290
-msgid "add"
-msgstr "ajouter"
+#: ../../include/features.php:25
+msgid "Remove posts/comments and/or private messages at a future time"
+msgstr "Supprimer les contributions/commentaires et/ou messages privés à un moment futur"
 
-#: ../../include/widgets.php:283 ../../include/features.php:66
-#: ../../include/contact_widgets.php:53
-msgid "Saved Folders"
-msgstr "Dossiers sauvegardés"
+#: ../../include/features.php:26
+msgid "Multiple Profiles"
+msgstr "Profils multiples"
 
-#: ../../include/widgets.php:286 ../../include/contact_widgets.php:56
-#: ../../include/contact_widgets.php:90
-msgid "Everything"
-msgstr "Tout"
-
-#: ../../include/widgets.php:318 ../../include/items.php:3613
-msgid "Archives"
-msgstr "Archives"
-
-#: ../../include/widgets.php:370
-msgid "Refresh"
-msgstr "Actualiser"
-
-#: ../../include/widgets.php:371 ../../mod/connedit.php:389
-msgid "Me"
-msgstr "Moi"
-
-#: ../../include/widgets.php:372 ../../mod/connedit.php:391
-msgid "Best Friends"
-msgstr "Mes meilleurs amis"
-
-#: ../../include/widgets.php:373 ../../include/identity.php:310
-#: ../../include/profile_selectors.php:42 ../../mod/connedit.php:392
-msgid "Friends"
-msgstr "Amis"
-
-#: ../../include/widgets.php:374
-msgid "Co-workers"
-msgstr "Mes collègues"
-
-#: ../../include/widgets.php:375 ../../mod/connedit.php:393
-msgid "Former Friends"
-msgstr "Mes anciens amis"
-
-#: ../../include/widgets.php:376 ../../mod/connedit.php:394
-msgid "Acquaintances"
-msgstr "Mes accointances"
-
-#: ../../include/widgets.php:377
-msgid "Everybody"
-msgstr "Tout le monde"
-
-#: ../../include/widgets.php:409
-msgid "Account settings"
-msgstr "Compte"
-
-#: ../../include/widgets.php:415
-msgid "Channel settings"
-msgstr "Canal"
-
-#: ../../include/widgets.php:421
-msgid "Additional features"
-msgstr "Fonc. supplémentaires"
-
-#: ../../include/widgets.php:427
-msgid "Feature settings"
-msgstr "Fonctionnalités"
-
-#: ../../include/widgets.php:433
-msgid "Display settings"
-msgstr "Affichage"
-
-#: ../../include/widgets.php:439
-msgid "Connected apps"
-msgstr "Applications"
-
-#: ../../include/widgets.php:445
-msgid "Export channel"
-msgstr "Exporter canal"
-
-#: ../../include/widgets.php:457
-msgid "Automatic Permissions (Advanced)"
-msgstr "Permissions automatiques (avancé)"
-
-#: ../../include/widgets.php:467
-msgid "Premium Channel Settings"
-msgstr "Canal Premium"
-
-#: ../../include/widgets.php:476 ../../include/features.php:43
-#: ../../mod/sources.php:88
-msgid "Channel Sources"
-msgstr "Canaux sources"
-
-#: ../../include/widgets.php:504
-msgid "Check Mail"
-msgstr "Vérifier courriel"
-
-#: ../../include/widgets.php:585
-msgid "Chat Rooms"
-msgstr "Salons"
-
-#: ../../include/Contact.php:120
-msgid "New window"
-msgstr "Nouvelle fenêtre"
-
-#: ../../include/Contact.php:121
-msgid "Open the selected location in a different window or browser tab"
-msgstr "Ouvrir l'emplacement dans une fenêtre (ou un onglet) différent"
-
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "Fonctionnalités générales"
-
-#: ../../include/features.php:25
-msgid "Content Expiration"
-msgstr "Expiration de contenu"
-
-#: ../../include/features.php:25
-msgid "Remove posts/comments and/or private messages at a future time"
-msgstr "Supprimer les contributions/commentaires et/ou messages privés à un moment futur"
-
-#: ../../include/features.php:26
-msgid "Multiple Profiles"
-msgstr "Profils multiples"
-
-#: ../../include/features.php:26
-msgid "Ability to create multiple profiles"
-msgstr "Possibilité de créer plusieurs profils"
+#: ../../include/features.php:26
+msgid "Ability to create multiple profiles"
+msgstr "Possibilité de créer plusieurs profils"
 
 #: ../../include/features.php:27
 msgid "Web Pages"
@@ -1210,7 +1241,7 @@ msgstr "Fin&nbsp;:"
 
 #: ../../include/event.php:40 ../../include/identity.php:679
 #: ../../include/bb2diaspora.php:455 ../../mod/events.php:462
-#: ../../mod/directory.php:156 ../../mod/dirprofile.php:111
+#: ../../mod/directory.php:157 ../../mod/dirprofile.php:111
 msgid "Location:"
 msgstr "Localisation&nbsp;:"
 
@@ -1253,12 +1284,12 @@ msgstr "Canaux dans aucune collection"
 msgid "Delete this item?"
 msgstr "Supprimer cet élément?"
 
-#: ../../include/js_strings.php:6 ../../include/ItemObject.php:546
-#: ../../mod/photos.php:989 ../../mod/photos.php:1076
+#: ../../include/js_strings.php:6 ../../include/ItemObject.php:547
+#: ../../mod/photos.php:993 ../../mod/photos.php:1080
 msgid "Comment"
 msgstr "Commenter"
 
-#: ../../include/js_strings.php:7 ../../include/ItemObject.php:280
+#: ../../include/js_strings.php:7 ../../include/ItemObject.php:281
 #: ../../include/contact_widgets.php:125
 msgid "show more"
 msgstr "montrer plus"
@@ -1354,7 +1385,7 @@ msgstr "%d années"
 
 #: ../../include/js_strings.php:30
 msgid " "
-msgstr ""
+msgstr " "
 
 #: ../../include/js_strings.php:31
 msgid "timeago.numbers"
@@ -1379,7 +1410,7 @@ msgstr "Le message stocké n'a pas pu être vérifié."
 #: ../../include/photo/photo_driver.php:637 ../../include/photos.php:51
 #: ../../mod/profile_photo.php:78 ../../mod/profile_photo.php:225
 #: ../../mod/profile_photo.php:336 ../../mod/photos.php:91
-#: ../../mod/photos.php:652 ../../mod/photos.php:674
+#: ../../mod/photos.php:656 ../../mod/photos.php:678
 msgid "Profile Photos"
 msgstr "Photos du profil"
 
@@ -1388,34 +1419,33 @@ msgstr "Photos du profil"
 #: ../../include/attach.php:233 ../../include/attach.php:247
 #: ../../include/attach.php:268 ../../include/attach.php:463
 #: ../../include/attach.php:541 ../../include/chat.php:113
-#: ../../include/photos.php:15 ../../include/items.php:3492
-#: ../../mod/common.php:35 ../../mod/events.php:140 ../../mod/thing.php:241
-#: ../../mod/thing.php:257 ../../mod/thing.php:291 ../../mod/invite.php:13
+#: ../../include/photos.php:15 ../../include/items.php:3515
+#: ../../mod/common.php:35 ../../mod/events.php:140 ../../mod/thing.php:247
+#: ../../mod/thing.php:263 ../../mod/thing.php:298 ../../mod/invite.php:13
 #: ../../mod/invite.php:104 ../../mod/item.php:182 ../../mod/item.php:190
 #: ../../mod/menu.php:44 ../../mod/webpages.php:40 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/bookmarks.php:46 ../../mod/settings.php:490
-#: ../../mod/chat.php:87 ../../mod/chat.php:92
-#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27
-#: ../../mod/delegate.php:6 ../../mod/mitem.php:73 ../../mod/group.php:9
-#: ../../mod/viewsrc.php:12 ../../mod/editpost.php:13
-#: ../../mod/connedit.php:182 ../../mod/layouts.php:27
-#: ../../mod/layouts.php:42 ../../mod/page.php:30 ../../mod/page.php:80
-#: ../../mod/network.php:12 ../../mod/profiles.php:152
+#: ../../mod/api.php:31 ../../mod/bookmarks.php:46 ../../mod/chat.php:87
+#: ../../mod/chat.php:92 ../../mod/viewconnections.php:22
+#: ../../mod/viewconnections.php:27 ../../mod/delegate.php:6
+#: ../../mod/mitem.php:73 ../../mod/group.php:9 ../../mod/viewsrc.php:12
+#: ../../mod/editpost.php:13 ../../mod/connedit.php:182
+#: ../../mod/layouts.php:27 ../../mod/layouts.php:42 ../../mod/page.php:30
+#: ../../mod/page.php:80 ../../mod/network.php:12 ../../mod/profiles.php:152
 #: ../../mod/profiles.php:453 ../../mod/sources.php:66 ../../mod/setup.php:200
 #: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97
-#: ../../mod/achievements.php:27 ../../mod/manage.php:6 ../../mod/mail.php:108
-#: ../../mod/editlayout.php:48 ../../mod/profile_photo.php:187
-#: ../../mod/profile_photo.php:200 ../../mod/connections.php:169
-#: ../../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:188
+#: ../../mod/achievements.php:27 ../../mod/settings.php:493
+#: ../../mod/manage.php:6 ../../mod/mail.php:108 ../../mod/editlayout.php:48
+#: ../../mod/profile_photo.php:187 ../../mod/profile_photo.php:200
+#: ../../mod/connections.php:169 ../../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:188
 #: ../../mod/channel.php:231 ../../mod/fsuggest.php:78
 #: ../../mod/editblock.php:48 ../../mod/filestorage.php:10
 #: ../../mod/filestorage.php:59 ../../mod/filestorage.php:75
 #: ../../mod/filestorage.php:98 ../../mod/suggest.php:26
 #: ../../mod/message.php:16 ../../mod/register.php:68 ../../mod/regmod.php:18
-#: ../../mod/authtest.php:13 ../../mod/photos.php:68 ../../mod/photos.php:522
+#: ../../mod/authtest.php:13 ../../mod/photos.php:68 ../../mod/photos.php:526
 #: ../../mod/mood.php:119 ../../index.php:176 ../../index.php:351
 msgid "Permission denied."
 msgstr "Permission refusée."
@@ -1478,37 +1508,6 @@ msgstr "mkdir a échoué."
 msgid "database storage failed."
 msgstr "le stockage en BD a échoué"
 
-#: ../../include/bbcode.php:128 ../../include/bbcode.php:587
-#: ../../include/bbcode.php:590 ../../include/bbcode.php:595
-#: ../../include/bbcode.php:598 ../../include/bbcode.php:601
-#: ../../include/bbcode.php:604 ../../include/bbcode.php:609
-#: ../../include/bbcode.php:612 ../../include/bbcode.php:617
-#: ../../include/bbcode.php:620 ../../include/bbcode.php:623
-#: ../../include/bbcode.php:626
-msgid "Image/photo"
-msgstr "Image/photo"
-
-#: ../../include/bbcode.php:163 ../../include/bbcode.php:637
-msgid "Encrypted content"
-msgstr "Contenu chiffré"
-
-#: ../../include/bbcode.php:170
-msgid "QR code"
-msgstr "QR code"
-
-#: ../../include/bbcode.php:213
-#, php-format
-msgid "%1$s wrote the following %2$s %3$s"
-msgstr "%1$s a écrit le %2$s suivant %3$s"
-
-#: ../../include/bbcode.php:215
-msgid "post"
-msgstr "article"
-
-#: ../../include/bbcode.php:555 ../../include/bbcode.php:575
-msgid "$1 wrote:"
-msgstr "$1 a écrit&nbsp;:"
-
 #: ../../include/bookmarks.php:31
 #, php-format
 msgid "%1$s's bookmarks"
@@ -1548,9 +1547,9 @@ msgid "Select"
 msgstr "Sélectionner"
 
 #: ../../include/conversation.php:632 ../../include/ItemObject.php:108
-#: ../../mod/thing.php:230 ../../mod/settings.php:576 ../../mod/group.php:176
-#: ../../mod/admin.php:745 ../../mod/connedit.php:359
-#: ../../mod/filestorage.php:171 ../../mod/photos.php:1040
+#: ../../mod/thing.php:236 ../../mod/group.php:176 ../../mod/admin.php:745
+#: ../../mod/connedit.php:359 ../../mod/settings.php:579
+#: ../../mod/filestorage.php:171 ../../mod/photos.php:1044
 msgid "Delete"
 msgstr "Supprimer"
 
@@ -1591,10 +1590,10 @@ msgid "View in context"
 msgstr "Voir en contexte"
 
 #: ../../include/conversation.php:707 ../../include/conversation.php:1120
-#: ../../include/ItemObject.php:258 ../../mod/editpost.php:112
+#: ../../include/ItemObject.php:259 ../../mod/editpost.php:112
 #: ../../mod/mail.php:222 ../../mod/mail.php:336 ../../mod/editlayout.php:115
 #: ../../mod/editwebpage.php:153 ../../mod/editblock.php:129
-#: ../../mod/photos.php:971
+#: ../../mod/photos.php:975
 msgid "Please wait"
 msgstr "Merci de patienter"
 
@@ -1721,14 +1720,14 @@ msgstr "Où êtes-vous présentement?"
 msgid "Expires YYYY-MM-DD HH:MM"
 msgstr "Expire YYYY-MM-DD HH:MM"
 
-#: ../../include/conversation.php:1083 ../../include/ItemObject.php:556
+#: ../../include/conversation.php:1083 ../../include/ItemObject.php:557
 #: ../../mod/webpages.php:122 ../../mod/editpost.php:132
 #: ../../mod/editlayout.php:136 ../../mod/editwebpage.php:177
-#: ../../mod/editblock.php:151 ../../mod/photos.php:991
+#: ../../mod/editblock.php:151 ../../mod/photos.php:995
 msgid "Preview"
 msgstr "Aperçu"
 
-#: ../../include/conversation.php:1097 ../../mod/photos.php:970
+#: ../../include/conversation.php:1097 ../../mod/photos.php:974
 msgid "Share"
 msgstr "Partager"
 
@@ -1842,7 +1841,7 @@ msgstr "Exemple: robert@exemple.com, marie@exemple.com"
 msgid "Set expiration date"
 msgstr "Définir la date d'expiration"
 
-#: ../../include/conversation.php:1147 ../../include/ItemObject.php:559
+#: ../../include/conversation.php:1147 ../../include/ItemObject.php:560
 #: ../../mod/editpost.php:140 ../../mod/mail.php:228 ../../mod/mail.php:341
 msgid "Encrypt text"
 msgstr "Chiffrer le texte"
@@ -1851,10 +1850,10 @@ msgstr "Chiffrer le texte"
 msgid "OK"
 msgstr "Ok"
 
-#: ../../include/conversation.php:1150 ../../mod/settings.php:514
-#: ../../mod/settings.php:540 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
-#: ../../mod/editpost.php:143 ../../mod/fbrowser.php:82
-#: ../../mod/fbrowser.php:117
+#: ../../include/conversation.php:1150 ../../mod/tagrm.php:11
+#: ../../mod/tagrm.php:94 ../../mod/editpost.php:143
+#: ../../mod/settings.php:517 ../../mod/settings.php:543
+#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117
 msgid "Cancel"
 msgstr "Annuler"
 
@@ -1947,7 +1946,7 @@ msgstr "Marque-pages sauvegardés"
 msgid "Manage Webpages"
 msgstr "Gérer les pages web"
 
-#: ../../include/identity.php:29 ../../mod/item.php:1161
+#: ../../include/identity.php:29 ../../mod/item.php:1177
 msgid "Unable to obtain identity information from database"
 msgstr "Impossible d'obtenir les données d'identité depuis la base de données"
 
@@ -2028,17 +2027,17 @@ msgid "Edit visibility"
 msgstr "Éditer la visibilité"
 
 #: ../../include/identity.php:681 ../../include/identity.php:908
-#: ../../mod/directory.php:158
+#: ../../mod/directory.php:159
 msgid "Gender:"
 msgstr "Sexe&nbsp;:"
 
 #: ../../include/identity.php:682 ../../include/identity.php:928
-#: ../../mod/directory.php:160
+#: ../../mod/directory.php:161
 msgid "Status:"
 msgstr "État&nbsp;:"
 
 #: ../../include/identity.php:683 ../../include/identity.php:939
-#: ../../mod/directory.php:162
+#: ../../mod/directory.php:163
 msgid "Homepage:"
 msgstr "Site web&nbsp;:"
 
@@ -2085,7 +2084,7 @@ msgstr "Événements cette semaine&nbsp;:"
 msgid "Profile"
 msgstr "Profil"
 
-#: ../../include/identity.php:906 ../../mod/settings.php:920
+#: ../../include/identity.php:906 ../../mod/settings.php:924
 msgid "Full Name:"
 msgstr "Nom complet&nbsp;:"
 
@@ -2130,7 +2129,7 @@ msgstr "Opinions politiques&nbsp;:"
 msgid "Religion:"
 msgstr "Religion&nbsp;:"
 
-#: ../../include/identity.php:949 ../../mod/directory.php:164
+#: ../../include/identity.php:949 ../../mod/directory.php:165
 msgid "About:"
 msgstr "À propos&nbsp;:"
 
@@ -2182,14 +2181,14 @@ msgstr "Travail&nbsp;:"
 msgid "School/education:"
 msgstr "Cursus&nbsp;:"
 
-#: ../../include/ItemObject.php:89 ../../mod/photos.php:843
+#: ../../include/ItemObject.php:89 ../../mod/photos.php:847
 msgid "Private Message"
 msgstr "Message Privé"
 
 #: ../../include/ItemObject.php:96 ../../include/page_widgets.php:8
-#: ../../mod/thing.php:229 ../../mod/menu.php:59 ../../mod/webpages.php:118
-#: ../../mod/settings.php:575 ../../mod/editpost.php:103
-#: ../../mod/layouts.php:102 ../../mod/editlayout.php:106
+#: ../../mod/thing.php:235 ../../mod/menu.php:59 ../../mod/webpages.php:118
+#: ../../mod/editpost.php:103 ../../mod/layouts.php:102
+#: ../../mod/settings.php:578 ../../mod/editlayout.php:106
 #: ../../mod/blocks.php:93 ../../mod/editwebpage.php:144
 #: ../../mod/editblock.php:120 ../../mod/filestorage.php:170
 msgid "Edit"
@@ -2219,7 +2218,7 @@ msgstr "mis en avant"
 msgid "add tag"
 msgstr "étiquetter"
 
-#: ../../include/ItemObject.php:184 ../../mod/photos.php:968
+#: ../../include/ItemObject.php:184 ../../mod/photos.php:972
 msgid "I like this (toggle)"
 msgstr "J'aime (oui/non)"
 
@@ -2227,7 +2226,7 @@ msgstr "J'aime (oui/non)"
 msgid "like"
 msgstr "aime"
 
-#: ../../include/ItemObject.php:185 ../../mod/photos.php:969
+#: ../../include/ItemObject.php:185 ../../mod/photos.php:973
 msgid "I don't like this (toggle)"
 msgstr "Je déteste (oui/non)"
 
@@ -2264,37 +2263,37 @@ msgstr "Mur-mur"
 msgid "via Wall-To-Wall:"
 msgstr "par Mur-mur&nbsp;:"
 
-#: ../../include/ItemObject.php:249
+#: ../../include/ItemObject.php:250
 msgid "Bookmark Links"
-msgstr ""
+msgstr "Transformer les liens en marque-pages"
 
-#: ../../include/ItemObject.php:279
+#: ../../include/ItemObject.php:280
 #, php-format
 msgid "%d comment"
 msgid_plural "%d comments"
 msgstr[0] "%d commentaire"
 msgstr[1] "%d commentaires"
 
-#: ../../include/ItemObject.php:544 ../../mod/photos.php:987
-#: ../../mod/photos.php:1074
+#: ../../include/ItemObject.php:545 ../../mod/photos.php:991
+#: ../../mod/photos.php:1078
 msgid "This is you"
 msgstr "C'est vous"
 
-#: ../../include/ItemObject.php:547 ../../mod/events.php:469
-#: ../../mod/thing.php:276 ../../mod/thing.php:318 ../../mod/invite.php:156
-#: ../../mod/settings.php:513 ../../mod/settings.php:625
-#: ../../mod/settings.php:653 ../../mod/settings.php:677
-#: ../../mod/settings.php:748 ../../mod/settings.php:912
-#: ../../mod/chat.php:119 ../../mod/chat.php:149 ../../mod/connect.php:92
+#: ../../include/ItemObject.php:548 ../../mod/events.php:469
+#: ../../mod/thing.php:283 ../../mod/thing.php:326 ../../mod/invite.php:156
+#: ../../mod/chat.php:162 ../../mod/chat.php:192 ../../mod/connect.php:92
 #: ../../mod/group.php:81 ../../mod/admin.php:431 ../../mod/admin.php:738
 #: ../../mod/admin.php:878 ../../mod/admin.php:1077 ../../mod/admin.php:1164
 #: ../../mod/connedit.php:437 ../../mod/profiles.php:506
 #: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/setup.php:304
-#: ../../mod/setup.php:347 ../../mod/import.php:387 ../../mod/mail.php:223
+#: ../../mod/setup.php:347 ../../mod/settings.php:516
+#: ../../mod/settings.php:628 ../../mod/settings.php:656
+#: ../../mod/settings.php:680 ../../mod/settings.php:752
+#: ../../mod/settings.php:916 ../../mod/import.php:387 ../../mod/mail.php:223
 #: ../../mod/mail.php:335 ../../mod/poke.php:166 ../../mod/fsuggest.php:108
-#: ../../mod/filestorage.php:131 ../../mod/photos.php:562
-#: ../../mod/photos.php:667 ../../mod/photos.php:950 ../../mod/photos.php:990
-#: ../../mod/photos.php:1077 ../../mod/mood.php:142
+#: ../../mod/filestorage.php:131 ../../mod/photos.php:566
+#: ../../mod/photos.php:671 ../../mod/photos.php:954 ../../mod/photos.php:994
+#: ../../mod/photos.php:1081 ../../mod/mood.php:142
 #: ../../view/theme/redbasic/php/config.php:95
 #: ../../view/theme/apw/php/config.php:231
 #: ../../view/theme/blogga/view/theme/blog/config.php:67
@@ -2302,35 +2301,35 @@ msgstr "C'est vous"
 msgid "Submit"
 msgstr "Envoyer"
 
-#: ../../include/ItemObject.php:548
+#: ../../include/ItemObject.php:549
 msgid "Bold"
 msgstr "Gras"
 
-#: ../../include/ItemObject.php:549
+#: ../../include/ItemObject.php:550
 msgid "Italic"
 msgstr "Italique"
 
-#: ../../include/ItemObject.php:550
+#: ../../include/ItemObject.php:551
 msgid "Underline"
 msgstr "Souligné"
 
-#: ../../include/ItemObject.php:551
+#: ../../include/ItemObject.php:552
 msgid "Quote"
 msgstr "Citation"
 
-#: ../../include/ItemObject.php:552
+#: ../../include/ItemObject.php:553
 msgid "Code"
 msgstr "Code"
 
-#: ../../include/ItemObject.php:553
+#: ../../include/ItemObject.php:554
 msgid "Image"
 msgstr "Image"
 
-#: ../../include/ItemObject.php:554
+#: ../../include/ItemObject.php:555
 msgid "Link"
 msgstr "Lien/URL"
 
-#: ../../include/ItemObject.php:555
+#: ../../include/ItemObject.php:556
 msgid "Video"
 msgstr "Vidéo"
 
@@ -2353,27 +2352,27 @@ msgstr "a commenté la publication de %s"
 
 #: ../../include/profile_selectors.php:6
 msgid "Male"
-msgstr "Mâle"
+msgstr "Masculin"
 
 #: ../../include/profile_selectors.php:6
 msgid "Female"
-msgstr "Femelle"
+msgstr "Féminin"
 
 #: ../../include/profile_selectors.php:6
 msgid "Currently Male"
-msgstr "Actuellement mâle"
+msgstr "Actuellement masculin"
 
 #: ../../include/profile_selectors.php:6
 msgid "Currently Female"
-msgstr "Actuellement femelle"
+msgstr "Actuellement féminin"
 
 #: ../../include/profile_selectors.php:6
 msgid "Mostly Male"
-msgstr "Surtout mâle"
+msgstr "Surtout masculin"
 
 #: ../../include/profile_selectors.php:6
 msgid "Mostly Female"
-msgstr "Surtotu femelle"
+msgstr "Surtout féminin"
 
 #: ../../include/profile_selectors.php:6
 msgid "Transgender"
@@ -2509,7 +2508,7 @@ msgstr "Fiancé(e)"
 
 #: ../../include/profile_selectors.php:42
 msgid "Married"
-msgstr "Marrié(e)"
+msgstr "Marié(e)"
 
 #: ../../include/profile_selectors.php:42
 msgid "Imaginarily married"
@@ -2776,17 +2775,17 @@ msgstr "Merci de visiter %s pour voir et/ou répondre à vos messages privés."
 #: ../../include/enotify.php:142
 #, php-format
 msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]"
-msgstr ""
+msgstr "%1$s, %2$s a commenté [zrl=%3$s]%4$s[/zrl]"
 
 #: ../../include/enotify.php:150
 #, php-format
 msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]"
-msgstr ""
+msgstr "%1$s, %2$s a commenté [zrl=%3$s]%5$s de %4$s[/zrl]"
 
 #: ../../include/enotify.php:159
 #, php-format
 msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]"
-msgstr ""
+msgstr "%1$s, %2$s a commenté [zrl=%3$s]votre %4$s[/zrl]"
 
 #: ../../include/enotify.php:170
 #, php-format
@@ -2796,7 +2795,7 @@ msgstr "[Red:Notification] Commentaire de %2$s sur conversation #%1$d"
 #: ../../include/enotify.php:171
 #, php-format
 msgid "%1$s, %2$s commented on an item/conversation you have been following."
-msgstr ""
+msgstr "%1$s, %2$s a commenté un élément de conversation que vous suivez."
 
 #: ../../include/enotify.php:174 ../../include/enotify.php:189
 #: ../../include/enotify.php:215 ../../include/enotify.php:234
@@ -2813,12 +2812,12 @@ msgstr "[Red:Notification] %s a publié sur votre profil"
 #: ../../include/enotify.php:182
 #, php-format
 msgid "%1$s, %2$s posted to your profile wall at %3$s"
-msgstr ""
+msgstr "%1$s, %2$s a posté sur votre profil à %3$s"
 
 #: ../../include/enotify.php:184
 #, php-format
 msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]"
-msgstr ""
+msgstr "%1$s, %2$s a posté sur [zrl=%3$s]votre profil[/zrl]"
 
 #: ../../include/enotify.php:208
 #, php-format
@@ -2833,7 +2832,7 @@ msgstr "%1$s, vous avez été étiqueté sur %3$s par %2$s"
 #: ../../include/enotify.php:210
 #, php-format
 msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]."
-msgstr ""
+msgstr "%1$s, %2$s [zrl=%3$s]vous a tagué[/zrl]."
 
 #: ../../include/enotify.php:223
 #, php-format
@@ -2848,7 +2847,7 @@ msgstr "%1$s, vous avez été tapoté/pointé/sollicité par %2$s sur %3$s"
 #: ../../include/enotify.php:225
 #, php-format
 msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]."
-msgstr ""
+msgstr "%1$s, %2$s [zrl=%2$s]vous a tapoté[/zrl]."
 
 #: ../../include/enotify.php:241
 #, php-format
@@ -2858,12 +2857,12 @@ msgstr "[Red:Notification] %s a marqué votre publication"
 #: ../../include/enotify.php:242
 #, php-format
 msgid "%1$s, %2$s tagged your post at %3$s"
-msgstr ""
+msgstr "%1$s, %2$s a tagué votre publication sur %3$s"
 
 #: ../../include/enotify.php:243
 #, php-format
 msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]"
-msgstr ""
+msgstr "%1$s, %2$s a tagué [zrl=%3$s]votre publication[/zrl]"
 
 #: ../../include/enotify.php:255
 msgid "[Red:Notify] Introduction received"
@@ -2872,12 +2871,12 @@ msgstr "[Red:Notification] Nouvelle introduction"
 #: ../../include/enotify.php:256
 #, php-format
 msgid "%1$s, you've received an introduction from '%2$s' at %3$s"
-msgstr ""
+msgstr "%1$s, vous avez reçu une introduction de '%2$s' sur %3$s"
 
 #: ../../include/enotify.php:257
 #, php-format
 msgid "%1$s, you've received [zrl=%2$s]an introduction[/zrl] from %3$s."
-msgstr ""
+msgstr "%1$s, vous avez reçu [zrl=%2$s]une introduction[/zrl] de %3$s."
 
 #: ../../include/enotify.php:261 ../../include/enotify.php:280
 #, php-format
@@ -2896,14 +2895,14 @@ msgstr "[Red:Notification] Nouvelle suggestion d'amitié"
 #: ../../include/enotify.php:271
 #, php-format
 msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s"
-msgstr ""
+msgstr "%1$s, vous avez reçu une suggestion de relation de '%2$s' à %3$s"
 
 #: ../../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 ""
+msgstr "%1$s, avez reçu %3$s comme [zrl=%2$s]une suggestion de relation[/zrl] de %4$s."
 
 #: ../../include/enotify.php:278
 msgid "Name:"
@@ -2935,12 +2934,12 @@ msgstr "Impossible de traiter l'image"
 msgid "Photo storage failed."
 msgstr "Le stockage de l'image a échoué."
 
-#: ../../include/photos.php:306 ../../mod/photos.php:690
-#: ../../mod/photos.php:1187
+#: ../../include/photos.php:306 ../../mod/photos.php:694
+#: ../../mod/photos.php:1191
 msgid "Upload New Photos"
 msgstr "Ajouter des photos"
 
-#: ../../include/reddav.php:1018
+#: ../../include/reddav.php:1061
 msgid "Edit File properties"
 msgstr "Éditer les propriétés du fichier"
 
@@ -2967,8 +2966,8 @@ msgstr "Relier/Suivre"
 msgid "Examples: Robert Morgenstein, Fishing"
 msgstr "Exemples: Robert Morgenstein, Course à pieds"
 
-#: ../../include/contact_widgets.php:24 ../../mod/directory.php:206
-#: ../../mod/directory.php:211 ../../mod/connections.php:357
+#: ../../include/contact_widgets.php:24 ../../mod/directory.php:207
+#: ../../mod/directory.php:212 ../../mod/connections.php:357
 msgid "Find"
 msgstr "Trouver"
 
@@ -3139,48 +3138,48 @@ msgid ""
 "Extremely advanced. Leave this alone unless you know what you are doing"
 msgstr "Très avancé. Ne pas toucher, sauf si vous savez VRAIMENT ce que vous faites"
 
-#: ../../include/items.php:208 ../../mod/like.php:55 ../../mod/group.php:68
-#: ../../mod/profperm.php:23 ../../index.php:350
+#: ../../include/items.php:231 ../../mod/like.php:55 ../../mod/profperm.php:23
+#: ../../mod/group.php:68 ../../index.php:350
 msgid "Permission denied"
 msgstr "Accès refusé"
 
-#: ../../include/items.php:3430 ../../mod/thing.php:74 ../../mod/admin.php:151
+#: ../../include/items.php:3453 ../../mod/thing.php:78 ../../mod/admin.php:151
 #: ../../mod/admin.php:782 ../../mod/admin.php:985 ../../mod/viewsrc.php:18
 #: ../../mod/home.php:63 ../../mod/display.php:32 ../../mod/filestorage.php:18
 msgid "Item not found."
 msgstr "Élément introuvable."
 
-#: ../../include/items.php:3786 ../../mod/group.php:38 ../../mod/group.php:140
+#: ../../include/items.php:3809 ../../mod/group.php:38 ../../mod/group.php:140
 msgid "Collection not found."
 msgstr "Collection introuvable."
 
-#: ../../include/items.php:3801
+#: ../../include/items.php:3824
 msgid "Collection is empty."
 msgstr "Collection vide."
 
-#: ../../include/items.php:3808
+#: ../../include/items.php:3831
 #, php-format
 msgid "Collection: %s"
 msgstr "Collection&nbsp;: %s"
 
-#: ../../include/items.php:3819
+#: ../../include/items.php:3842
 #, php-format
 msgid "Connection: %s"
 msgstr "Relation&nbsp;: %s"
 
-#: ../../include/items.php:3822
+#: ../../include/items.php:3845
 msgid "Connection not found."
 msgstr "Relation introuvable."
 
-#: ../../include/zot.php:545
+#: ../../include/zot.php:548
 msgid "Invalid data packet"
 msgstr "Paquet de données invalide"
 
-#: ../../include/zot.php:555
+#: ../../include/zot.php:558
 msgid "Unable to verify channel signature"
 msgstr "Impossible de vérifier la signature du canal"
 
-#: ../../include/zot.php:732
+#: ../../include/zot.php:735
 #, php-format
 msgid "Unable to verify site signature for %s"
 msgstr "Impossible de vérifier la signature de site pour %s"
@@ -3266,56 +3265,64 @@ msgstr "Titre:"
 msgid "Share this event"
 msgstr "Partager cet événement"
 
-#: ../../mod/thing.php:94
+#: ../../mod/thing.php:98
 msgid "Thing updated"
 msgstr "Chose mise-à-jour"
 
-#: ../../mod/thing.php:153
+#: ../../mod/thing.php:158
 msgid "Object store: failed"
 msgstr "Stockage de l'objet&nbsp;: échec"
 
-#: ../../mod/thing.php:157
+#: ../../mod/thing.php:162
 msgid "Thing added"
 msgstr "Chose ajoutée"
 
-#: ../../mod/thing.php:175
+#: ../../mod/thing.php:182
 #, php-format
 msgid "OBJ: %1$s %2$s %3$s"
 msgstr "OBJ: %1$s %2$s %3$s"
 
-#: ../../mod/thing.php:228
+#: ../../mod/thing.php:234
 msgid "Show Thing"
 msgstr "Montrer chose"
 
-#: ../../mod/thing.php:235
+#: ../../mod/thing.php:241
 msgid "item not found."
 msgstr "élément introuvable."
 
-#: ../../mod/thing.php:263
+#: ../../mod/thing.php:269
 msgid "Edit Thing"
 msgstr "Éditer chose"
 
-#: ../../mod/thing.php:265 ../../mod/thing.php:311
+#: ../../mod/thing.php:271 ../../mod/thing.php:318
 msgid "Select a profile"
 msgstr "Choisissez un profil"
 
-#: ../../mod/thing.php:267 ../../mod/thing.php:313
+#: ../../mod/thing.php:273 ../../mod/thing.php:320
 msgid "Select a category of stuff. e.g. I ______ something"
 msgstr "Choisissez une catégorie de choses. p.ex. Je ______ quelque-chose"
 
-#: ../../mod/thing.php:270 ../../mod/thing.php:315
+#: ../../mod/thing.php:275 ../../mod/thing.php:321
+msgid "Post an activity"
+msgstr "Publier une activité"
+
+#: ../../mod/thing.php:275 ../../mod/thing.php:321
+msgid "Only sends to viewers of the applicable profile"
+msgstr ""
+
+#: ../../mod/thing.php:277 ../../mod/thing.php:323
 msgid "Name of thing e.g. something"
 msgstr "Nom de la chose, p.ex. quelque-chose"
 
-#: ../../mod/thing.php:272 ../../mod/thing.php:316
+#: ../../mod/thing.php:279 ../../mod/thing.php:324
 msgid "URL of thing (optional)"
 msgstr "URL de la chose (optionnel)"
 
-#: ../../mod/thing.php:274 ../../mod/thing.php:317
+#: ../../mod/thing.php:281 ../../mod/thing.php:325
 msgid "URL for photo of thing (optional)"
 msgstr "URL de l'image de la chose (optionnel)"
 
-#: ../../mod/thing.php:309
+#: ../../mod/thing.php:316
 msgid "Add Thing to your Profile"
 msgstr "Ajouter la chose à votre profil"
 
@@ -3408,20 +3415,20 @@ msgstr "Publication vide défaussée."
 msgid "Executable content type not permitted to this channel."
 msgstr "Les contenus de type 'exécutable' ne sont pas autorisés sur ce canal."
 
-#: ../../mod/item.php:819
+#: ../../mod/item.php:835
 msgid "System error. Post not saved."
 msgstr "Erreur système. Publication non sauvegardée."
 
-#: ../../mod/item.php:1086 ../../mod/wall_upload.php:41
+#: ../../mod/item.php:1102 ../../mod/wall_upload.php:41
 msgid "Wall Photos"
 msgstr "Photos du mur"
 
-#: ../../mod/item.php:1166
+#: ../../mod/item.php:1182
 #, php-format
 msgid "You have reached your limit of %1$.0f top level posts."
 msgstr "Vous avez atteint votre limite de %1$.0f contributions \"racine\"."
 
-#: ../../mod/item.php:1172
+#: ../../mod/item.php:1188
 #, php-format
 msgid "You have reached your limit of %1$.0f webpages."
 msgstr "Vous avez atteint votre limite de %1$.0f pages web."
@@ -3550,13 +3557,13 @@ msgid ""
 " and/or create new posts for you?"
 msgstr "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à publier en votre nom?"
 
-#: ../../mod/api.php:105 ../../mod/settings.php:874 ../../mod/settings.php:879
-#: ../../mod/profiles.php:483
+#: ../../mod/api.php:105 ../../mod/profiles.php:483 ../../mod/settings.php:878
+#: ../../mod/settings.php:883
 msgid "Yes"
 msgstr "Oui"
 
-#: ../../mod/api.php:106 ../../mod/settings.php:874 ../../mod/settings.php:879
-#: ../../mod/profiles.php:484
+#: ../../mod/api.php:106 ../../mod/profiles.php:484 ../../mod/settings.php:878
+#: ../../mod/settings.php:883
 msgid "No"
 msgstr "Non"
 
@@ -3588,2566 +3595,2598 @@ msgstr "Mes marque-pages"
 msgid "My Connections Bookmarks"
 msgstr "Marque-pages de mes relations"
 
-#: ../../mod/settings.php:71
-msgid "Name is required"
-msgstr "Le nom est requis"
+#: ../../mod/subthread.php:105
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s suit %3$s de %2$s"
 
-#: ../../mod/settings.php:75
-msgid "Key and Secret are required"
-msgstr "Clef et secret sont requis"
+#: ../../mod/update_network.php:23 ../../mod/update_channel.php:43
+#: ../../mod/update_search.php:46 ../../mod/update_display.php:25
+#: ../../mod/update_community.php:18
+msgid "[Embedded content - reload page to view]"
+msgstr "[Contenu embarqué - rechargez la page pour le voir]"
 
-#: ../../mod/settings.php:79 ../../mod/settings.php:539
-msgid "Update"
-msgstr "Mise-à-jour"
+#: ../../mod/chanview.php:77 ../../mod/home.php:50 ../../mod/page.php:47
+#: ../../mod/wall_upload.php:35
+msgid "Channel not found."
+msgstr "Canal introuvable."
 
-#: ../../mod/settings.php:192
-msgid "Passwords do not match. Password unchanged."
-msgstr "Les deux saisies du mot de passe ne correspondent pas. Il n'a donc pas été changé."
+#: ../../mod/chanview.php:93
+msgid "toggle full screen mode"
+msgstr "(dés)activer le mode plein-écran"
 
-#: ../../mod/settings.php:196
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Le mot de passe ne peut pas être vide. Il n'a donc pas été changé."
+#: ../../mod/tagger.php:98
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s a étiqueté le %3$s de %2$s par %4$s"
 
-#: ../../mod/settings.php:209
-msgid "Password changed."
-msgstr "Le mot de passe a été changé."
+#: ../../mod/chat.php:18 ../../mod/channel.php:25
+msgid "You must be logged in to see this page."
+msgstr "Vous devez vous connecter pour voir cette page."
 
-#: ../../mod/settings.php:211
-msgid "Password update failed. Please try again."
-msgstr "La mise-à-jour du mot de passe a échoué. Merci de recommencer."
+#: ../../mod/chat.php:163
+msgid "Leave Room"
+msgstr "Quitter le salon"
 
-#: ../../mod/settings.php:225
-msgid "Not valid email."
-msgstr "Adresse de courriel non-valide."
+#: ../../mod/chat.php:164
+msgid "I am away right now"
+msgstr "Je suis momentanément absent"
 
-#: ../../mod/settings.php:228
-msgid "Protected email address. Cannot change to that email."
-msgstr "Adresse de courriel protégée. Impossible de l'utiliser."
+#: ../../mod/chat.php:165
+msgid "I am online"
+msgstr "Je suis en ligne"
 
-#: ../../mod/settings.php:237
-msgid "System failure storing new email. Please try again."
-msgstr "Défaillance système lors du stockage de la nouvelle adresse de courriel. Merci de ré-essayer."
+#: ../../mod/chat.php:189 ../../mod/chat.php:209
+msgid "New Chatroom"
+msgstr "Nouveau salon"
 
-#: ../../mod/settings.php:441
-msgid "Settings updated."
-msgstr "Réglages sauvegardés."
+#: ../../mod/chat.php:190
+msgid "Chatroom Name"
+msgstr "Nom du salon"
 
-#: ../../mod/settings.php:512 ../../mod/settings.php:538
-#: ../../mod/settings.php:574
-msgid "Add application"
-msgstr "Ajouter une application"
+#: ../../mod/chat.php:205
+#, php-format
+msgid "%1$s's Chatrooms"
+msgstr "Salons de %1$s"
 
-#: ../../mod/settings.php:515 ../../mod/settings.php:541
-msgid "Name"
-msgstr "Nom"
+#: ../../mod/viewconnections.php:17 ../../mod/search.php:13
+#: ../../mod/directory.php:15 ../../mod/display.php:9
+#: ../../mod/community.php:18 ../../mod/dirprofile.php:9
+#: ../../mod/photos.php:443
+msgid "Public access denied."
+msgstr "Accès public refusé."
 
-#: ../../mod/settings.php:515
-msgid "Name of application"
-msgstr "Nom de l'application"
+#: ../../mod/viewconnections.php:43
+msgid "No connections."
+msgstr "Pas de relations."
 
-#: ../../mod/settings.php:516 ../../mod/settings.php:542
-msgid "Consumer Key"
-msgstr "Clef de consommateur"
+#: ../../mod/viewconnections.php:55
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Visiter le profil de %s [%s]"
 
-#: ../../mod/settings.php:516 ../../mod/settings.php:517
-msgid "Automatically generated - change if desired. Max length 20"
-msgstr "Généré automatiquement - à changer si besoin. Longueur maximale 20 caractères."
+#: ../../mod/viewconnections.php:70
+msgid "View Connnections"
+msgstr "Voir les relations"
 
-#: ../../mod/settings.php:517 ../../mod/settings.php:543
-msgid "Consumer Secret"
-msgstr "Secret de consommateur"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Étiquette retirée"
 
-#: ../../mod/settings.php:518 ../../mod/settings.php:544
-msgid "Redirect"
-msgstr "Redirection"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Retirer une étiquette à l'élément"
 
-#: ../../mod/settings.php:518
-msgid ""
-"Redirect URI - leave blank unless your application specifically requires "
-"this"
-msgstr "URI de redirection - laissez blanc, sauf si l'application a demandé autrement"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Étiquette à retirer&nbsp;:"
 
-#: ../../mod/settings.php:519 ../../mod/settings.php:545
-msgid "Icon url"
-msgstr "URL de l'icône"
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 ../../mod/photos.php:909
+msgid "Remove"
+msgstr "Retirer"
 
-#: ../../mod/settings.php:519
-msgid "Optional"
-msgstr "Facultatif"
+#: ../../mod/connect.php:55 ../../mod/connect.php:103
+msgid "Continue"
+msgstr "Continuer"
 
-#: ../../mod/settings.php:530
-msgid "You can't edit this application."
-msgstr "Vous ne pouvez pas éditer cette application."
+#: ../../mod/connect.php:84
+msgid "Premium Channel Setup"
+msgstr "Configuration du canal Premium"
 
-#: ../../mod/settings.php:573
-msgid "Connected Apps"
-msgstr "Applications connectées"
+#: ../../mod/connect.php:86
+msgid "Enable premium channel connection restrictions"
+msgstr "Activer les restrictions liées au canal premium"
 
-#: ../../mod/settings.php:577
-msgid "Client key starts with"
-msgstr "La clef cliente commence par"
+#: ../../mod/connect.php:87
+msgid ""
+"Please enter your restrictions or conditions, such as paypal receipt, usage "
+"guidelines, etc."
+msgstr "Merci de saisir les restrictions et/ou conditions - reçu Paypal, transaction Bitcoin, ligne de conduite, ..."
 
-#: ../../mod/settings.php:578
-msgid "No name"
-msgstr "Sans nom"
+#: ../../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 "Avant d'autoriser la mise en relation, ce canal attire votre attention sur les conditions suivantes&nbsp;:"
 
-#: ../../mod/settings.php:579
-msgid "Remove authorization"
-msgstr "Révoquer l'autorisation"
+#: ../../mod/connect.php:90
+msgid ""
+"Potential connections will then see the following text before proceeding:"
+msgstr "Les relations potentielles verront ce qui suit avant de pouvoir continuer&nbsp;:"
 
-#: ../../mod/settings.php:590
-msgid "No feature settings configured"
-msgstr "Pas de fonctionnalité à configurer"
+#: ../../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 "En continuant, je certifie que je me suis acquitté de toutes les instructions indiquées sur cette page."
 
-#: ../../mod/settings.php:598
-msgid "Feature Settings"
-msgstr "Fonctionnalités"
+#: ../../mod/connect.php:100
+msgid "(No specific instructions have been provided by the channel owner.)"
+msgstr "(Aucune instruction spécifique n'a été établie par le propriétaire du canal.)"
 
-#: ../../mod/settings.php:621
-msgid "Account Settings"
-msgstr "Compte"
+#: ../../mod/connect.php:108
+msgid "Restricted or Premium Channel"
+msgstr "Canal Premium ou restreint"
 
-#: ../../mod/settings.php:622
-msgid "Password Settings"
-msgstr "Mot de passe"
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr "Aucun délégué potentiel n'a été trouvé pour cette page."
 
-#: ../../mod/settings.php:623
-msgid "New Password:"
-msgstr "Nouveau mot de passe&nbsp;:"
+#: ../../mod/delegate.php:121
+msgid "Delegate Page Management"
+msgstr "Gestion des délégués de la page"
 
-#: ../../mod/settings.php:624
-msgid "Confirm:"
-msgstr "Confirmation&nbsp;:"
+#: ../../mod/delegate.php:123
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Les délégués sont capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages basiques du compte. Merci de ne déléguer votre compte personnel qu'à quelqu'un en qui vous avez une confiance aveugle."
 
-#: ../../mod/settings.php:624
-msgid "Leave password fields blank unless changing"
-msgstr "Laissez les mots de passe vides si vous ne voulez pas les modifier"
+#: ../../mod/delegate.php:124
+msgid "Existing Page Managers"
+msgstr "Actuels gestionnaires de pages"
 
-#: ../../mod/settings.php:626 ../../mod/settings.php:921
-msgid "Email Address:"
-msgstr "Adresse de courriel&nbsp;:"
+#: ../../mod/delegate.php:126
+msgid "Existing Page Delegates"
+msgstr "Actuels délégués"
 
-#: ../../mod/settings.php:627
-msgid "Remove Account"
-msgstr "Supprimer le compte"
+#: ../../mod/delegate.php:128
+msgid "Potential Delegates"
+msgstr "Délégués potentiels"
 
-#: ../../mod/settings.php:628
-msgid "Warning: This action is permanent and cannot be reversed."
-msgstr "Attention&nbsp;: cette action est permanente et irréversible."
+#: ../../mod/delegate.php:131
+msgid "Add"
+msgstr "Ajouter"
 
-#: ../../mod/settings.php:644
-msgid "Off"
-msgstr "Inactif"
+#: ../../mod/delegate.php:132
+msgid "No entries."
+msgstr "Aucune entrée."
 
-#: ../../mod/settings.php:644
-msgid "On"
-msgstr "Actif"
+#: ../../mod/chatsvc.php:102
+msgid "Away"
+msgstr "Absent"
 
-#: ../../mod/settings.php:651
-msgid "Additional Features"
-msgstr "Fonctionnalités additionnelles"
+#: ../../mod/chatsvc.php:106
+msgid "Online"
+msgstr "En ligne"
 
-#: ../../mod/settings.php:676
-msgid "Connector Settings"
-msgstr "Connecteurs"
+#: ../../mod/attach.php:9
+msgid "Item not available."
+msgstr "Élément indisponible."
 
-#: ../../mod/settings.php:706 ../../mod/admin.php:379
-msgid "No special theme for mobile devices"
-msgstr "Pas de thème spécifique aux périphériques mobiles"
+#: ../../mod/mitem.php:47
+msgid "Menu element updated."
+msgstr "Entrée de menu mis-à-jour."
 
-#: ../../mod/settings.php:746
-msgid "Display Settings"
-msgstr "Affichage"
+#: ../../mod/mitem.php:51
+msgid "Unable to update menu element."
+msgstr "Impossible de mettre l'entrée de menu à jour."
 
-#: ../../mod/settings.php:752
-msgid "Display Theme:"
-msgstr "Thème&nbsp;:"
+#: ../../mod/mitem.php:57
+msgid "Menu element added."
+msgstr "Entrée de menu ajouté."
 
-#: ../../mod/settings.php:753
-msgid "Mobile Theme:"
-msgstr "Thème mobile&nbsp;:"
+#: ../../mod/mitem.php:61
+msgid "Unable to add menu element."
+msgstr "Impossible d'ajouter l'entrée de menu."
 
-#: ../../mod/settings.php:754
-msgid "Update browser every xx seconds"
-msgstr "Rafraîchir le navigateur toutes les xx secondes"
+#: ../../mod/mitem.php:96
+msgid "Manage Menu Elements"
+msgstr "Gérer les entrées de menu"
 
-#: ../../mod/settings.php:754
-msgid "Minimum of 10 seconds, no maximum"
-msgstr "Minimum 10 secondes, pas de maximum"
+#: ../../mod/mitem.php:99
+msgid "Edit menu"
+msgstr "Éditer le menu"
 
-#: ../../mod/settings.php:755
-msgid "Maximum number of conversations to load at any time:"
-msgstr "Nombre maximal de conversations pouvant être chargées en même temps&nbsp;:"
+#: ../../mod/mitem.php:102
+msgid "Edit element"
+msgstr "Éditer l'entrée"
 
-#: ../../mod/settings.php:755
-msgid "Maximum of 100 items"
-msgstr "100 éléments au maximum"
+#: ../../mod/mitem.php:103
+msgid "Drop element"
+msgstr "Supprimer l'entrée"
 
-#: ../../mod/settings.php:756
-msgid "Don't show emoticons"
-msgstr "Ne pas montrer les frimousses/émoticones"
+#: ../../mod/mitem.php:104
+msgid "New element"
+msgstr "Nouvelle entrée"
 
-#: ../../mod/settings.php:792
-msgid "Nobody except yourself"
-msgstr "Personne sauf vous"
+#: ../../mod/mitem.php:105
+msgid "Edit this menu container"
+msgstr "Éditer ce bloc de menu"
 
-#: ../../mod/settings.php:793
-msgid "Only those you specifically allow"
-msgstr "Seulement ceux que vous autorisez spécifiquement"
+#: ../../mod/mitem.php:106
+msgid "Add menu element"
+msgstr "Ajouter une entrée au menu"
 
-#: ../../mod/settings.php:794
-msgid "Anybody in your address book"
-msgstr "Tous vos contacts"
+#: ../../mod/mitem.php:107
+msgid "Delete this menu item"
+msgstr "Supprimer cet entrée du menu"
 
-#: ../../mod/settings.php:795
-msgid "Anybody on this website"
-msgstr "Tous les utilisateurs du site"
+#: ../../mod/mitem.php:108
+msgid "Edit this menu item"
+msgstr "Éditer cette entrée du menu"
 
-#: ../../mod/settings.php:796
-msgid "Anybody in this network"
-msgstr "Tous les utilisateurs du réseau"
+#: ../../mod/mitem.php:131
+msgid "New Menu Element"
+msgstr "Nouvelle entrée de menu"
 
-#: ../../mod/settings.php:797
-msgid "Anybody on the internet"
-msgstr "Tout les utilisateurs d'Internet"
+#: ../../mod/mitem.php:133 ../../mod/mitem.php:176
+msgid "Menu Item Permissions"
+msgstr "Permissions de l'entrée de menu"
 
-#: ../../mod/settings.php:874
-msgid "Publish your default profile in the network directory"
-msgstr "Publier votre profil par défaut dans l'annuaire du réseau"
+#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:947
+msgid "(click to open/close)"
+msgstr "(cliquer pour ouvrir/fermer)"
 
-#: ../../mod/settings.php:879
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "Nous autoriser à vous suggérer comme relation potentielle aux nouveaux arrivants?"
+#: ../../mod/mitem.php:136 ../../mod/mitem.php:180
+msgid "Link text"
+msgstr "Texte du lien"
 
-#: ../../mod/settings.php:883 ../../mod/profile_photo.php:288
-msgid "or"
-msgstr "ou"
+#: ../../mod/mitem.php:137 ../../mod/mitem.php:181
+msgid "URL of link"
+msgstr "URL du lien"
 
-#: ../../mod/settings.php:888
-msgid "Your channel address is"
-msgstr "Votre canal a pour adresse"
+#: ../../mod/mitem.php:138 ../../mod/mitem.php:182
+msgid "Use Red magic-auth if available"
+msgstr "Utiliser l'authentification automagique de Red, si possible"
 
-#: ../../mod/settings.php:910
-msgid "Channel Settings"
-msgstr "Canal"
+#: ../../mod/mitem.php:139 ../../mod/mitem.php:183
+msgid "Open link in new window"
+msgstr "Ouvrir le lien dans une nouvelle fenêtre"
 
-#: ../../mod/settings.php:919
-msgid "Basic Settings"
-msgstr "Basique"
+#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
+msgid "Order in list"
+msgstr "Ordre dans la liste"
 
-#: ../../mod/settings.php:922
-msgid "Your Timezone:"
-msgstr "Zone de temps&nbsp;:"
+#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
+msgid "Higher numbers will sink to bottom of listing"
+msgstr "Les nombres les plus élevés seront descendus au bas de la liste"
 
-#: ../../mod/settings.php:923
-msgid "Default Post Location:"
-msgstr "Localisation par défaut&nbsp;:"
+#: ../../mod/mitem.php:154
+msgid "Menu item not found."
+msgstr "Entrée de menu introuvable."
 
-#: ../../mod/settings.php:924
-msgid "Use Browser Location:"
-msgstr "Utiliser la localisation fournie par le navigateur&nbsp;:"
-
-#: ../../mod/settings.php:926
-msgid "Adult Content"
-msgstr "Contenu \"adulte\""
+#: ../../mod/mitem.php:163
+msgid "Menu item deleted."
+msgstr "Entrée de menu supprimée."
 
-#: ../../mod/settings.php:926
-msgid ""
-"This channel frequently or regularly publishes adult content. (Please tag "
-"any adult material and/or nudity with #NSFW)"
-msgstr "Ce canal publie plus ou moins fréquemment du contenu pour adultes. (Merci d'indiquer tout contenu pour adulte ou potentiellement choquant avec le tag <em>#NSFW</em> - Not Safe For Work)"
+#: ../../mod/mitem.php:165
+msgid "Menu item could not be deleted."
+msgstr "Impossible de supprimer l'entrée de menu."
 
-#: ../../mod/settings.php:928
-msgid "Security and Privacy Settings"
-msgstr "Sécurité et vie privée"
+#: ../../mod/mitem.php:174
+msgid "Edit Menu Element"
+msgstr "Éditer l'entrée de menu"
 
-#: ../../mod/settings.php:930
-msgid "Hide my online presence"
-msgstr "Cacher ma présence en ligne"
+#: ../../mod/profperm.php:29 ../../mod/profperm.php:58
+msgid "Invalid profile identifier."
+msgstr "Identifiant de profil invalide."
 
-#: ../../mod/settings.php:930
-msgid "Prevents displaying in your profile that you are online"
-msgstr "Cacher votre statut (en ligne/hors ligne) sur votre profil"
+#: ../../mod/profperm.php:105
+msgid "Profile Visibility Editor"
+msgstr "Éditeur de visibilité de profil"
 
-#: ../../mod/settings.php:932
-msgid "Simple Privacy Settings:"
-msgstr "Réglages simples&nbsp;:"
+#: ../../mod/profperm.php:109
+msgid "Click on a contact to add or remove."
+msgstr "Cliquez sur un contact pour l'ajouter ou le retirer."
 
-#: ../../mod/settings.php:933
-msgid ""
-"Very Public - <em>extremely permissive (should be used with caution)</em>"
-msgstr "Très public - <em>extrèmement permissif (à n'utiliser qu'en connaissance de cause)</em>"
+#: ../../mod/profperm.php:118
+msgid "Visible To"
+msgstr "Visible par"
 
-#: ../../mod/settings.php:934
-msgid ""
-"Typical - <em>default public, privacy when desired (similar to social "
-"network permissions but with improved privacy)</em>"
-msgstr "Classique - <em>public par défaut, privé en cas de besoin (comparable dans le principe aux réseaux sociaux centralisés, avec un mode privé plus efficace)</em>"
+#: ../../mod/profperm.php:134 ../../mod/connections.php:250
+msgid "All Connections"
+msgstr "Toutes les relations"
 
-#: ../../mod/settings.php:935
-msgid "Private - <em>default private, never open or public</em>"
-msgstr "Privé - <em>privé par défaut, jamais ouvert ni public</em>"
+#: ../../mod/group.php:20
+msgid "Collection created."
+msgstr "Collection créée."
 
-#: ../../mod/settings.php:936
-msgid "Blocked - <em>default blocked to/from everybody</em>"
-msgstr "Bloqué - <em>par défaut, bloqué de/vers tout le monde</em>"
+#: ../../mod/group.php:26
+msgid "Could not create collection."
+msgstr "Impossible de créer la collection."
 
-#: ../../mod/settings.php:939
-msgid "Advanced Privacy Settings"
-msgstr "Réglages avancés"
+#: ../../mod/group.php:54
+msgid "Collection updated."
+msgstr "Collection mise-à-jour."
 
-#: ../../mod/settings.php:941
-msgid "Maximum Friend Requests/Day:"
-msgstr "Nombre maximum de mises en relation par jour&nbsp;:"
+#: ../../mod/group.php:86
+msgid "Create a collection of channels."
+msgstr "Créez une collection de canaux."
 
-#: ../../mod/settings.php:941
-msgid "May reduce spam activity"
-msgstr "Contribue à réduire l'impact du spam"
+#: ../../mod/group.php:87 ../../mod/group.php:183
+msgid "Collection Name: "
+msgstr "Nom de la collection&nbsp;:"
 
-#: ../../mod/settings.php:942
-msgid "Default Post Permissions"
-msgstr "Permissions par défaut des publications"
+#: ../../mod/group.php:89 ../../mod/group.php:186
+msgid "Members are visible to other channels"
+msgstr "Les membres sont visibles par les autres canaux"
 
-#: ../../mod/settings.php:943 ../../mod/mitem.php:134 ../../mod/mitem.php:177
-msgid "(click to open/close)"
-msgstr "(cliquer pour ouvrir/fermer)"
+#: ../../mod/group.php:107
+msgid "Collection removed."
+msgstr "Collection supprimée."
 
-#: ../../mod/settings.php:954
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Nombre maximum de messages privés émanant d'inconnus, par jour&nbsp;:"
+#: ../../mod/group.php:109
+msgid "Unable to remove collection."
+msgstr "Impossible de supprimer la collection."
 
-#: ../../mod/settings.php:954
-msgid "Useful to reduce spamming"
-msgstr "Utile pour réduire le spam"
+#: ../../mod/group.php:182
+msgid "Collection Editor"
+msgstr "Éditeur de collection"
 
-#: ../../mod/settings.php:957
-msgid "Notification Settings"
-msgstr "Notifications"
+#: ../../mod/group.php:196
+msgid "Members"
+msgstr "Membres"
 
-#: ../../mod/settings.php:958
-msgid "By default post a status message when:"
-msgstr "Par défaut, publier un statut quand:"
+#: ../../mod/group.php:198
+msgid "All Connected Channels"
+msgstr "Tous canaux connectés"
 
-#: ../../mod/settings.php:959
-msgid "accepting a friend request"
-msgstr "acceptez une mise en relation"
+#: ../../mod/group.php:231
+msgid "Click on a channel to add or remove."
+msgstr "Cliquer sur un canal pour ajouter ou supprimer"
 
-#: ../../mod/settings.php:960
-msgid "joining a forum/community"
-msgstr "joignez un forum ou à une communauté"
+#: ../../mod/admin.php:48
+msgid "Theme settings updated."
+msgstr "Réglages du thème sauvegardés."
 
-#: ../../mod/settings.php:961
-msgid "making an <em>interesting</em> profile change"
-msgstr "faites une modification <em>intéressante</em> de votre profil"
+#: ../../mod/admin.php:88 ../../mod/admin.php:430
+msgid "Site"
+msgstr "Site"
 
-#: ../../mod/settings.php:962
-msgid "Send a notification email when:"
-msgstr "Envoyer un courriel de notification quand&nbsp;:"
+#: ../../mod/admin.php:89 ../../mod/admin.php:737 ../../mod/admin.php:749
+msgid "Users"
+msgstr "Utilisateurs"
 
-#: ../../mod/settings.php:963
-msgid "You receive an introduction"
-msgstr "Vous recevez une introduction"
+#: ../../mod/admin.php:90 ../../mod/admin.php:835 ../../mod/admin.php:877
+msgid "Plugins"
+msgstr "Extensions"
 
-#: ../../mod/settings.php:964
-msgid "Your introductions are confirmed"
-msgstr "Vos introductions sont acceptées/confirmées"
+#: ../../mod/admin.php:91 ../../mod/admin.php:1040 ../../mod/admin.php:1076
+msgid "Themes"
+msgstr "Thèmes"
 
-#: ../../mod/settings.php:965
-msgid "Someone writes on your profile wall"
-msgstr "Quelqu'un écrit sur votre mur"
+#: ../../mod/admin.php:92 ../../mod/admin.php:529
+msgid "Server"
+msgstr "Serveur"
 
-#: ../../mod/settings.php:966
-msgid "Someone writes a followup comment"
-msgstr "Quelqu'un commente sur vos publications"
+#: ../../mod/admin.php:93
+msgid "DB updates"
+msgstr "MàJ BD"
 
-#: ../../mod/settings.php:967
-msgid "You receive a private message"
-msgstr "Vous recevez un Message Privé"
+#: ../../mod/admin.php:107 ../../mod/admin.php:114 ../../mod/admin.php:1163
+msgid "Logs"
+msgstr "Journaux"
 
-#: ../../mod/settings.php:968
-msgid "You receive a friend suggestion"
-msgstr "Vous recevez une suggestion d'amitié/relation"
+#: ../../mod/admin.php:113
+msgid "Plugin Features"
+msgstr "Fonctionnalités liées aux extensions"
 
-#: ../../mod/settings.php:969
-msgid "You are tagged in a post"
-msgstr "Vous êtes étiqueté dans une publication"
+#: ../../mod/admin.php:115
+msgid "User registrations waiting for confirmation"
+msgstr "Inscriptions en attente"
 
-#: ../../mod/settings.php:970
-msgid "You are poked/prodded/etc. in a post"
-msgstr "Vous êtes tapoté/pointé/etc. dans une publication"
+#: ../../mod/admin.php:189
+msgid "Message queues"
+msgstr "File des messages"
 
-#: ../../mod/settings.php:973
-msgid "Advanced Account/Page Type Settings"
-msgstr "Type de page/Compte (avancé)"
+#: ../../mod/admin.php:194 ../../mod/admin.php:429 ../../mod/admin.php:528
+#: ../../mod/admin.php:736 ../../mod/admin.php:834 ../../mod/admin.php:876
+#: ../../mod/admin.php:1039 ../../mod/admin.php:1075 ../../mod/admin.php:1162
+msgid "Administration"
+msgstr "Administration"
 
-#: ../../mod/settings.php:974
-msgid "Change the behaviour of this account for special situations"
-msgstr "Modifie le comportement de ce compte pour certains cas particuliers"
+#: ../../mod/admin.php:195
+msgid "Summary"
+msgstr "Résumé"
 
-#: ../../mod/subthread.php:105
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s suit %3$s de %2$s"
+#: ../../mod/admin.php:197
+msgid "Registered users"
+msgstr "Utilisateurs inscrits"
 
-#: ../../mod/update_network.php:23 ../../mod/update_channel.php:43
-#: ../../mod/update_search.php:46 ../../mod/update_display.php:25
-#: ../../mod/update_community.php:18
-msgid "[Embedded content - reload page to view]"
-msgstr "[Contenu embarqué - rechargez la page pour le voir]"
+#: ../../mod/admin.php:199 ../../mod/admin.php:532
+msgid "Pending registrations"
+msgstr "Inscriptions en attente"
 
-#: ../../mod/chanview.php:77 ../../mod/home.php:50 ../../mod/page.php:47
-#: ../../mod/wall_upload.php:35
-msgid "Channel not found."
-msgstr "Canal introuvable."
+#: ../../mod/admin.php:200
+msgid "Version"
+msgstr "Version"
 
-#: ../../mod/chanview.php:93
-msgid "toggle full screen mode"
-msgstr "(dés)activer le mode plein-écran"
+#: ../../mod/admin.php:202 ../../mod/admin.php:533
+msgid "Active plugins"
+msgstr "Extensions actives"
 
-#: ../../mod/tagger.php:98
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s a étiqueté le %3$s de %2$s par %4$s"
+#: ../../mod/admin.php:350
+msgid "Site settings updated."
+msgstr "Réglages du site sauvegardés."
 
-#: ../../mod/chat.php:18 ../../mod/channel.php:25
-msgid "You must be logged in to see this page."
-msgstr "Vous devez vous connecter pour voir cette page."
+#: ../../mod/admin.php:379 ../../mod/settings.php:709
+msgid "No special theme for mobile devices"
+msgstr "Pas de thème spécifique aux périphériques mobiles"
 
-#: ../../mod/chat.php:120
-msgid "Leave Room"
-msgstr "Quitter le salon"
+#: ../../mod/admin.php:381
+msgid "No special theme for accessibility"
+msgstr "Pas de thème spécifique pour l'accessibilité"
 
-#: ../../mod/chat.php:121
-msgid "I am away right now"
-msgstr "Je suis momentanément absent"
+#: ../../mod/admin.php:409
+msgid "Closed"
+msgstr "Fermé"
 
-#: ../../mod/chat.php:122
-msgid "I am online"
-msgstr "Je suis en ligne"
+#: ../../mod/admin.php:410
+msgid "Requires approval"
+msgstr "Après approbation"
 
-#: ../../mod/chat.php:146 ../../mod/chat.php:166
-msgid "New Chatroom"
-msgstr "Nouveau salon"
+#: ../../mod/admin.php:411
+msgid "Open"
+msgstr "Ouvert"
 
-#: ../../mod/chat.php:147
-msgid "Chatroom Name"
-msgstr "Nom du salon"
+#: ../../mod/admin.php:416
+msgid "Private"
+msgstr "Privé"
 
-#: ../../mod/chat.php:162
-#, php-format
-msgid "%1$s's Chatrooms"
-msgstr "Salons de %1$s"
+#: ../../mod/admin.php:417
+msgid "Paid Access"
+msgstr "Accès payant"
 
-#: ../../mod/viewconnections.php:17 ../../mod/search.php:13
-#: ../../mod/directory.php:15 ../../mod/display.php:9
-#: ../../mod/community.php:18 ../../mod/dirprofile.php:9
-#: ../../mod/photos.php:442
-msgid "Public access denied."
-msgstr "Accès public refusé."
+#: ../../mod/admin.php:418
+msgid "Free Access"
+msgstr "Accès gratuit"
 
-#: ../../mod/viewconnections.php:43
-msgid "No connections."
-msgstr "Pas de relations."
+#: ../../mod/admin.php:419
+msgid "Tiered Access"
+msgstr "Accès par paliers"
 
-#: ../../mod/viewconnections.php:55
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Visiter le profil de %s [%s]"
+#: ../../mod/admin.php:432 ../../mod/register.php:189
+msgid "Registration"
+msgstr "Inscription"
 
-#: ../../mod/viewconnections.php:70
-msgid "View Connnections"
-msgstr "Voir les relations"
+#: ../../mod/admin.php:433
+msgid "File upload"
+msgstr "Envoi de fichier"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Étiquette retirée"
+#: ../../mod/admin.php:434
+msgid "Policies"
+msgstr "Stratégies"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Retirer une étiquette à l'élément"
+#: ../../mod/admin.php:435
+msgid "Advanced"
+msgstr "Avancé"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Étiquette à retirer&nbsp;:"
+#: ../../mod/admin.php:439
+msgid "Site name"
+msgstr "Nom du site"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 ../../mod/photos.php:905
-msgid "Remove"
-msgstr "Retirer"
+#: ../../mod/admin.php:440
+msgid "Banner/Logo"
+msgstr "Bannière/logo"
 
-#: ../../mod/connect.php:55 ../../mod/connect.php:103
-msgid "Continue"
-msgstr "Continuer"
+#: ../../mod/admin.php:441
+msgid "Administrator Information"
+msgstr "Information sur l'administration"
 
-#: ../../mod/connect.php:84
-msgid "Premium Channel Setup"
-msgstr "Configuration du canal Premium"
+#: ../../mod/admin.php:441
+msgid ""
+"Contact information for site administrators.  Displayed on siteinfo page.  "
+"BBCode can be used here"
+msgstr "Coordonnées de l'administration du site. Affichée sur la page 'siteinfo'. Vous pouvez utiliser du BBCode ici"
 
-#: ../../mod/connect.php:86
-msgid "Enable premium channel connection restrictions"
-msgstr "Activer les restrictions liées au canal premium"
+#: ../../mod/admin.php:442
+msgid "System language"
+msgstr "Langue du système"
 
-#: ../../mod/connect.php:87
-msgid ""
-"Please enter your restrictions or conditions, such as paypal receipt, usage "
-"guidelines, etc."
-msgstr "Merci de saisir les restrictions et/ou conditions - reçu Paypal, transaction Bitcoin, ligne de conduite, ..."
+#: ../../mod/admin.php:443
+msgid "System theme"
+msgstr "Thème du système"
 
-#: ../../mod/connect.php:89 ../../mod/connect.php:109
+#: ../../mod/admin.php:443
 msgid ""
-"This channel may require additional steps or acknowledgement of the "
-"following conditions prior to connecting:"
-msgstr "Avant d'autoriser la mise en relation, ce canal attire votre attention sur les conditions suivantes&nbsp;:"
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Thème par défaut - il peut être changé pour chaque profil utilisateur - <a href='#' id='cnftheme'>modifier le thème</a>"
 
-#: ../../mod/connect.php:90
-msgid ""
-"Potential connections will then see the following text before proceeding:"
-msgstr "Les relations potentielles verront ce qui suit avant de pouvoir continuer&nbsp;:"
+#: ../../mod/admin.php:444
+msgid "Mobile system theme"
+msgstr "Thème système pour mobile"
 
-#: ../../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 "En continuant, je certifie que je me suis acquitté de toutes les instructions indiquées sur cette page."
+#: ../../mod/admin.php:444
+msgid "Theme for mobile devices"
+msgstr "Thème dédié aux périphériques mobiles"
 
-#: ../../mod/connect.php:100
-msgid "(No specific instructions have been provided by the channel owner.)"
-msgstr "(Aucune instruction spécifique n'a été établie par le propriétaire du canal.)"
+#: ../../mod/admin.php:445
+msgid "Accessibility system theme"
+msgstr "Thème système pour l'accessibilité"
 
-#: ../../mod/connect.php:108
-msgid "Restricted or Premium Channel"
-msgstr "Canal Premium ou restreint"
+#: ../../mod/admin.php:445
+msgid "Accessibility theme"
+msgstr "Thème pour l'accessibilité"
 
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr "Aucun délégué potentiel n'a été trouvé pour cette page."
+#: ../../mod/admin.php:446
+msgid "Channel to use for this website's static pages"
+msgstr "Canal à utiliser pour les pages statiques de ce site"
 
-#: ../../mod/delegate.php:121
-msgid "Delegate Page Management"
-msgstr "Gestion des délégués de la page"
+#: ../../mod/admin.php:446
+msgid "Site Channel"
+msgstr "Canal du site"
 
-#: ../../mod/delegate.php:123
+#: ../../mod/admin.php:448
+msgid "Maximum image size"
+msgstr "Taille maximale des images"
+
+#: ../../mod/admin.php:448
 msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr "Les délégués sont capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages basiques du compte. Merci de ne déléguer votre compte personnel qu'à quelqu'un en qui vous avez une confiance aveugle."
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Taille maximum, en octets, des images envoyées. Par défaut 0, soit sans limite."
 
-#: ../../mod/delegate.php:124
-msgid "Existing Page Managers"
-msgstr "Actuels gestionnaires de pages"
+#: ../../mod/admin.php:449
+msgid "Register policy"
+msgstr "Politique d'inscription"
 
-#: ../../mod/delegate.php:126
-msgid "Existing Page Delegates"
-msgstr "Actuels délégués"
+#: ../../mod/admin.php:450
+msgid "Access policy"
+msgstr "Politique d'accès"
 
-#: ../../mod/delegate.php:128
-msgid "Potential Delegates"
-msgstr "Délégués potentiels"
+#: ../../mod/admin.php:451
+msgid "Register text"
+msgstr "Texte d'inscription"
 
-#: ../../mod/delegate.php:131
-msgid "Add"
-msgstr "Ajouter"
+#: ../../mod/admin.php:451
+msgid "Will be displayed prominently on the registration page."
+msgstr "Sera affiché de manière bien visible sur le formulaire d'inscription."
 
-#: ../../mod/delegate.php:132
-msgid "No entries."
-msgstr "Aucune entrée."
+#: ../../mod/admin.php:452
+msgid "Accounts abandoned after x days"
+msgstr "Les comptes sont abandonnés après x jours"
 
-#: ../../mod/chatsvc.php:102
-msgid "Away"
-msgstr "Absent"
+#: ../../mod/admin.php:452
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Pour éviter de gaspiller les ressources du système en essayer de mettre à jour des comptes abandonnés. Mettez 0 pour ne pas avoir de limite de temps."
 
-#: ../../mod/chatsvc.php:106
-msgid "Online"
-msgstr "En ligne"
+#: ../../mod/admin.php:453
+msgid "Allowed friend domains"
+msgstr "Domaines amicaux"
 
-#: ../../mod/attach.php:9
-msgid "Item not available."
-msgstr "Élément indisponible."
+#: ../../mod/admin.php:453
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Liste de noms de domaines - séparés par des virgules - pour lesquels ce site acceptera les demandes d'amitié ou de mise en relation. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines."
 
-#: ../../mod/mitem.php:47
-msgid "Menu element updated."
-msgstr "Entrée de menu mis-à-jour."
+#: ../../mod/admin.php:454
+msgid "Allowed email domains"
+msgstr "Domaines de courriels amicaux"
 
-#: ../../mod/mitem.php:51
-msgid "Unable to update menu element."
-msgstr "Impossible de mettre l'entrée de menu à jour."
+#: ../../mod/admin.php:454
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr "Liste de noms de domaines - séparés par des virgules - dont les adresses de courriel seront autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines."
 
-#: ../../mod/mitem.php:57
-msgid "Menu element added."
-msgstr "Entrée de menu ajouté."
+#: ../../mod/admin.php:455
+msgid "Block public"
+msgstr "Bloquer public"
 
-#: ../../mod/mitem.php:61
-msgid "Unable to add menu element."
-msgstr "Impossible d'ajouter l'entrée de menu."
+#: ../../mod/admin.php:455
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Cocher pour interdire tout accès public, y compris aux pages marquées comme publiques, aux visiteurs anonymes."
 
-#: ../../mod/mitem.php:96
-msgid "Manage Menu Elements"
-msgstr "Gérer les entrées de menu"
+#: ../../mod/admin.php:456
+msgid "Force publish"
+msgstr "Forcer publication"
 
-#: ../../mod/mitem.php:99
-msgid "Edit menu"
-msgstr "Éditer le menu"
+#: ../../mod/admin.php:456
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Cocher pour forcer la publication de tous les profils du site dans l'annuaire."
 
-#: ../../mod/mitem.php:102
-msgid "Edit element"
-msgstr "Éditer l'entrée"
+#: ../../mod/admin.php:457
+msgid "No login on Homepage"
+msgstr "Pas de connexion depuis la page d'accueil"
 
-#: ../../mod/mitem.php:103
-msgid "Drop element"
-msgstr "Supprimer l'entrée"
+#: ../../mod/admin.php:457
+msgid ""
+"Check to hide the login form from your sites homepage when visitors arrive "
+"who are not logged in (e.g. when you put the content of the homepage in via "
+"the site channel)."
+msgstr "Cocher pour ne pas montrer le formulaire de connexion sur la page d'accueil (typiquement, pour quand vous utilisez la page d'accueil pour afficher du contenu via le canal du site)."
 
-#: ../../mod/mitem.php:104
-msgid "New element"
-msgstr "Nouvelle entrée"
+#: ../../mod/admin.php:459
+msgid "Proxy user"
+msgstr "Utilisateurs du proxy"
 
-#: ../../mod/mitem.php:105
-msgid "Edit this menu container"
-msgstr "Éditer ce bloc de menu"
+#: ../../mod/admin.php:460
+msgid "Proxy URL"
+msgstr "URL du proxy"
 
-#: ../../mod/mitem.php:106
-msgid "Add menu element"
-msgstr "Ajouter une entrée au menu"
+#: ../../mod/admin.php:461
+msgid "Network timeout"
+msgstr "Délai maximal du réseau"
 
-#: ../../mod/mitem.php:107
-msgid "Delete this menu item"
-msgstr "Supprimer cet entrée du menu"
+#: ../../mod/admin.php:461
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "En secondes. Mettre à 0 pour ne pas avoir de délai maximal (pas recommandé)."
 
-#: ../../mod/mitem.php:108
-msgid "Edit this menu item"
-msgstr "Éditer cette entrée du menu"
+#: ../../mod/admin.php:462
+msgid "Delivery interval"
+msgstr "Intervalle de distribution"
 
-#: ../../mod/mitem.php:131
-msgid "New Menu Element"
-msgstr "Nouvelle entrée de menu"
+#: ../../mod/admin.php:462
+msgid ""
+"Delay background delivery processes by this many seconds to reduce system "
+"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
+"for large dedicated servers."
+msgstr "Temporise le processus de distribution de tant de secondes pour réduire la charge sur le système. Valeurs recommandées&nbsp;: 4-5 pour les serveurs mutualisés, 2-3 pour les VPS. 0-1 pour les gros serveurs dédiés."
 
-#: ../../mod/mitem.php:133 ../../mod/mitem.php:176
-msgid "Menu Item Permissions"
-msgstr "Permissions de l'entrée de menu"
+#: ../../mod/admin.php:463
+msgid "Poll interval"
+msgstr "Intervalle de scrutation"
 
-#: ../../mod/mitem.php:136 ../../mod/mitem.php:180
-msgid "Link text"
-msgstr "Texte du lien"
+#: ../../mod/admin.php:463
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Temporise le processus de scrutation en tâche de fond de tant de secondes, pour réduire la charge. Si 0, utilise l'intervalle de distribution."
 
-#: ../../mod/mitem.php:137 ../../mod/mitem.php:181
-msgid "URL of link"
-msgstr "URL du lien"
+#: ../../mod/admin.php:464
+msgid "Maximum Load Average"
+msgstr "Charge moyenne maximale"
 
-#: ../../mod/mitem.php:138 ../../mod/mitem.php:182
-msgid "Use Red magic-auth if available"
-msgstr "Utiliser l'authentification automagique de Red, si possible"
+#: ../../mod/admin.php:464
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Charge système maximale au-delà de laquelle distribution et scrutation sont mis en pause - par défaut 50."
 
-#: ../../mod/mitem.php:139 ../../mod/mitem.php:183
-msgid "Open link in new window"
-msgstr "Ouvrir le lien dans une nouvelle fenêtre"
+#: ../../mod/admin.php:520
+msgid "No server found"
+msgstr "Serveur introuvable"
 
-#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
-msgid "Order in list"
-msgstr "Ordre dans la liste"
+#: ../../mod/admin.php:527 ../../mod/admin.php:750
+msgid "ID"
+msgstr "ID"
 
-#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
-msgid "Higher numbers will sink to bottom of listing"
-msgstr "Les nombres les plus élevés seront descendus au bas de la liste"
+#: ../../mod/admin.php:527
+msgid "for channel"
+msgstr "pour le canal"
 
-#: ../../mod/mitem.php:154
-msgid "Menu item not found."
-msgstr "Entrée de menu introuvable."
+#: ../../mod/admin.php:527
+msgid "on server"
+msgstr "sur le serveur"
 
-#: ../../mod/mitem.php:163
-msgid "Menu item deleted."
-msgstr "Entrée de menu supprimée."
+#: ../../mod/admin.php:527
+msgid "Status"
+msgstr "État"
 
-#: ../../mod/mitem.php:165
-msgid "Menu item could not be deleted."
-msgstr "Impossible de supprimer l'entrée de menu."
+#: ../../mod/admin.php:548
+msgid "Update has been marked successful"
+msgstr "La mise à jour a été marquée comme réussie"
 
-#: ../../mod/mitem.php:174
-msgid "Edit Menu Element"
-msgstr "Éditer l'entrée de menu"
+#: ../../mod/admin.php:558
+#, php-format
+msgid "Executing %s failed. Check system logs."
+msgstr "L'éxecution de %s a échoué. Merci de vérifier les journaux du système."
 
-#: ../../mod/group.php:20
-msgid "Collection created."
-msgstr "Collection créée."
+#: ../../mod/admin.php:561
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "La mise à jour %s a été appliquée avec succès."
 
-#: ../../mod/group.php:26
-msgid "Could not create collection."
-msgstr "Impossible de créer la collection."
+#: ../../mod/admin.php:565
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "La mise à jour %s n'a pas retourné d'information. Impossible de savoir si elle a réussi ou non."
 
-#: ../../mod/group.php:54
-msgid "Collection updated."
-msgstr "Collection mise-à-jour."
+#: ../../mod/admin.php:568
+#, php-format
+msgid "Update function %s could not be found."
+msgstr "La fonction de mise à jour %s est introuvable."
 
-#: ../../mod/group.php:86
-msgid "Create a collection of channels."
-msgstr "Créez une collection de canaux."
+#: ../../mod/admin.php:583
+msgid "No failed updates."
+msgstr "Aucune mise à jour défaillante."
 
-#: ../../mod/group.php:87 ../../mod/group.php:183
-msgid "Collection Name: "
-msgstr "Nom de la collection&nbsp;:"
+#: ../../mod/admin.php:587
+msgid "Failed Updates"
+msgstr "Mises à jour défaillantes"
 
-#: ../../mod/group.php:89 ../../mod/group.php:186
-msgid "Members are visible to other channels"
-msgstr "Les membres sont visibles par les autres canaux"
+#: ../../mod/admin.php:589
+msgid "Mark success (if update was manually applied)"
+msgstr "Marquer comme réussie (si la mise à jour a été réalisée manuellement)"
 
-#: ../../mod/group.php:107
-msgid "Collection removed."
-msgstr "Collection supprimée."
+#: ../../mod/admin.php:590
+msgid "Attempt to execute this update step automatically"
+msgstr "Tenter de réaliser cette étape de mise à jour automatiquement"
 
-#: ../../mod/group.php:109
-msgid "Unable to remove collection."
-msgstr "Impossible de supprimer la collection."
+#: ../../mod/admin.php:616
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s utilisateur bloqué/débloqué"
+msgstr[1] "%s utilisateurs bloqués/débloqués"
 
-#: ../../mod/group.php:182
-msgid "Collection Editor"
-msgstr "Éditeur de collection"
+#: ../../mod/admin.php:623
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s utilisateur supprimé"
+msgstr[1] "%s utilisateurs supprimés"
 
-#: ../../mod/group.php:196
-msgid "Members"
-msgstr "Membres"
+#: ../../mod/admin.php:654
+msgid "Account not found"
+msgstr "Compte introuvable"
 
-#: ../../mod/group.php:198
-msgid "All Connected Channels"
-msgstr "Tous canaux connectés"
+#: ../../mod/admin.php:665
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Utilisateur '%s' supprimé"
 
-#: ../../mod/group.php:231
-msgid "Click on a channel to add or remove."
-msgstr "Cliquer sur un canal pour ajouter ou supprimer"
+#: ../../mod/admin.php:674
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Utilisateur '%s' débloqué"
 
-#: ../../mod/profperm.php:29 ../../mod/profperm.php:58
-msgid "Invalid profile identifier."
-msgstr "Identifiant de profil invalide."
+#: ../../mod/admin.php:674
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Utilisateur '%s' bloqué"
 
-#: ../../mod/profperm.php:105
-msgid "Profile Visibility Editor"
-msgstr "Éditeur de visibilité de profil"
+#: ../../mod/admin.php:739
+msgid "select all"
+msgstr "tout sélectionner"
 
-#: ../../mod/profperm.php:109
-msgid "Click on a contact to add or remove."
-msgstr "Cliquez sur un contact pour l'ajouter ou le retirer."
+#: ../../mod/admin.php:740
+msgid "User registrations waiting for confirm"
+msgstr "Inscriptions en attente d'approbation"
 
-#: ../../mod/profperm.php:118
-msgid "Visible To"
-msgstr "Visible par"
+#: ../../mod/admin.php:741
+msgid "Request date"
+msgstr "Date de la demande"
 
-#: ../../mod/profperm.php:134 ../../mod/connections.php:250
-msgid "All Connections"
-msgstr "Toutes les relations"
+#: ../../mod/admin.php:742
+msgid "No registrations."
+msgstr "Pas d'inscriptions."
 
-#: ../../mod/admin.php:48
-msgid "Theme settings updated."
-msgstr "Réglages du thème sauvegardés."
+#: ../../mod/admin.php:743
+msgid "Approve"
+msgstr "Approuver"
 
-#: ../../mod/admin.php:88 ../../mod/admin.php:430
-msgid "Site"
-msgstr "Site"
+#: ../../mod/admin.php:744
+msgid "Deny"
+msgstr "Refuser"
 
-#: ../../mod/admin.php:89 ../../mod/admin.php:737 ../../mod/admin.php:749
-msgid "Users"
-msgstr "Utilisateurs"
+#: ../../mod/admin.php:746 ../../mod/connedit.php:333
+#: ../../mod/connedit.php:475
+msgid "Block"
+msgstr "Bloquer"
 
-#: ../../mod/admin.php:90 ../../mod/admin.php:835 ../../mod/admin.php:877
-msgid "Plugins"
-msgstr "Extensions"
+#: ../../mod/admin.php:747 ../../mod/connedit.php:333
+#: ../../mod/connedit.php:475
+msgid "Unblock"
+msgstr "Débloquer"
 
-#: ../../mod/admin.php:91 ../../mod/admin.php:1040 ../../mod/admin.php:1076
-msgid "Themes"
-msgstr "Thèmes"
+#: ../../mod/admin.php:750
+msgid "Register date"
+msgstr "Date d'inscription"
 
-#: ../../mod/admin.php:92 ../../mod/admin.php:529
-msgid "Server"
-msgstr "Serveur"
+#: ../../mod/admin.php:750
+msgid "Last login"
+msgstr "Dernière connexion"
 
-#: ../../mod/admin.php:93
-msgid "DB updates"
-msgstr "MàJ BD"
+#: ../../mod/admin.php:750
+msgid "Expires"
+msgstr "Expire"
 
-#: ../../mod/admin.php:107 ../../mod/admin.php:114 ../../mod/admin.php:1163
-msgid "Logs"
-msgstr "Journaux"
+#: ../../mod/admin.php:750
+msgid "Service Class"
+msgstr "Classe de service"
 
-#: ../../mod/admin.php:113
-msgid "Plugin Features"
-msgstr "Fonctionnalités liées aux extensions"
+#: ../../mod/admin.php:752
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Les utilisateurs sélectionnés seront supprimés!\\n\\nTout ce que ces utilisateurs ont publié sur ce site sera détruit de manière définitive!\\n\\nÊtes-vous certain?"
 
-#: ../../mod/admin.php:115
-msgid "User registrations waiting for confirmation"
-msgstr "Inscriptions en attente"
+#: ../../mod/admin.php:753
+msgid ""
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "L'utilisateur {0} sera supprimé!\\n\\nTout ce que cet utilisateur a publié sur ce site sera détruit de manière définitive!\\n\\nÊtes-vous certain?"
 
-#: ../../mod/admin.php:189
-msgid "Message queues"
-msgstr "File des messages"
+#: ../../mod/admin.php:794
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Extension %s désactivée."
 
-#: ../../mod/admin.php:194 ../../mod/admin.php:429 ../../mod/admin.php:528
-#: ../../mod/admin.php:736 ../../mod/admin.php:834 ../../mod/admin.php:876
-#: ../../mod/admin.php:1039 ../../mod/admin.php:1075 ../../mod/admin.php:1162
-msgid "Administration"
-msgstr "Administration"
+#: ../../mod/admin.php:798
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Extension %s activée."
 
-#: ../../mod/admin.php:195
-msgid "Summary"
-msgstr "Résumé"
+#: ../../mod/admin.php:808 ../../mod/admin.php:1010
+msgid "Disable"
+msgstr "Désactiver"
 
-#: ../../mod/admin.php:197
-msgid "Registered users"
-msgstr "Utilisateurs inscrits"
+#: ../../mod/admin.php:810 ../../mod/admin.php:1012
+msgid "Enable"
+msgstr "Activer"
 
-#: ../../mod/admin.php:199 ../../mod/admin.php:532
-msgid "Pending registrations"
-msgstr "Inscriptions en attente"
+#: ../../mod/admin.php:836 ../../mod/admin.php:1041
+msgid "Toggle"
+msgstr "(Dés)activer"
 
-#: ../../mod/admin.php:200
-msgid "Version"
-msgstr "Version"
+#: ../../mod/admin.php:844 ../../mod/admin.php:1051
+msgid "Author: "
+msgstr "Auteur&nbsp;:"
 
-#: ../../mod/admin.php:202 ../../mod/admin.php:533
-msgid "Active plugins"
-msgstr "Extensions actives"
+#: ../../mod/admin.php:845 ../../mod/admin.php:1052
+msgid "Maintainer: "
+msgstr "Maintenu par&nbsp;:"
 
-#: ../../mod/admin.php:350
-msgid "Site settings updated."
-msgstr "Réglages du site sauvegardés."
+#: ../../mod/admin.php:974
+msgid "No themes found."
+msgstr "Aucun thème trouvé."
 
-#: ../../mod/admin.php:381
-msgid "No special theme for accessibility"
-msgstr "Pas de thème spécifique pour l'accessibilité"
+#: ../../mod/admin.php:1033
+msgid "Screenshot"
+msgstr "Aperçu"
 
-#: ../../mod/admin.php:409
-msgid "Closed"
-msgstr "Fermé"
+#: ../../mod/admin.php:1081
+msgid "[Experimental]"
+msgstr "[Expérimental]"
 
-#: ../../mod/admin.php:410
-msgid "Requires approval"
-msgstr "Après approbation"
+#: ../../mod/admin.php:1082
+msgid "[Unsupported]"
+msgstr "[Non-supporté]"
 
-#: ../../mod/admin.php:411
-msgid "Open"
-msgstr "Ouvert"
+#: ../../mod/admin.php:1109
+msgid "Log settings updated."
+msgstr "Réglages du journal sauvegardés."
 
-#: ../../mod/admin.php:416
-msgid "Private"
-msgstr "Privé"
+#: ../../mod/admin.php:1165
+msgid "Clear"
+msgstr "Vider"
 
-#: ../../mod/admin.php:417
-msgid "Paid Access"
-msgstr "Accès payant"
+#: ../../mod/admin.php:1171
+msgid "Debugging"
+msgstr "Débogage"
 
-#: ../../mod/admin.php:418
-msgid "Free Access"
-msgstr "Accès gratuit"
+#: ../../mod/admin.php:1172
+msgid "Log file"
+msgstr "Fichier du journal"
 
-#: ../../mod/admin.php:419
-msgid "Tiered Access"
-msgstr "Accès par paliers"
+#: ../../mod/admin.php:1172
+msgid ""
+"Must be writable by web server. Relative to your Red top-level directory."
+msgstr "Doit être accessible en écriture par le serveur web. Chemin relatif à la racine de Red."
 
-#: ../../mod/admin.php:432 ../../mod/register.php:189
-msgid "Registration"
-msgstr "Inscription"
+#: ../../mod/admin.php:1173
+msgid "Log level"
+msgstr "Niveau de journalisation"
 
-#: ../../mod/admin.php:433
-msgid "File upload"
-msgstr "Envoi de fichier"
+#: ../../mod/filer.php:35
+msgid "- select -"
+msgstr "- choisir -"
 
-#: ../../mod/admin.php:434
-msgid "Policies"
-msgstr "Stratégies"
+#: ../../mod/home.php:89
+#, php-format
+msgid "Welcome to %s"
+msgstr "Bienvenue sur %s"
 
-#: ../../mod/admin.php:435
-msgid "Advanced"
-msgstr "Avancé"
+#: ../../mod/editpost.php:20 ../../mod/editlayout.php:36
+#: ../../mod/editwebpage.php:32 ../../mod/editblock.php:36
+msgid "Item not found"
+msgstr "Élément introuvable"
 
-#: ../../mod/admin.php:439
-msgid "Site name"
-msgstr "Nom du site"
+#: ../../mod/editpost.php:31
+msgid "Item is not editable"
+msgstr "Élément non-éditable"
 
-#: ../../mod/admin.php:440
-msgid "Banner/Logo"
-msgstr "Bannière/logo"
+#: ../../mod/editpost.php:53
+msgid "Delete item?"
+msgstr "Supprimer l'élément?"
 
-#: ../../mod/admin.php:441
-msgid "Administrator Information"
-msgstr "Information sur l'administration"
+#: ../../mod/editpost.php:107 ../../mod/editlayout.php:110
+#: ../../mod/editwebpage.php:148 ../../mod/editblock.php:124
+msgid "Insert YouTube video"
+msgstr "Insérer une vidéo YouTube"
 
-#: ../../mod/admin.php:441
-msgid ""
-"Contact information for site administrators.  Displayed on siteinfo page.  "
-"BBCode can be used here"
-msgstr "Coordonnées de l'administration du site. Affichée sur la page 'siteinfo'. Vous pouvez utiliser du BBCode ici"
+#: ../../mod/editpost.php:108 ../../mod/editlayout.php:111
+#: ../../mod/editwebpage.php:149 ../../mod/editblock.php:125
+msgid "Insert Vorbis [.ogg] video"
+msgstr "Insérer une vidéo Vorbis [.ogg]"
 
-#: ../../mod/admin.php:442
-msgid "System language"
-msgstr "Langue du système"
+#: ../../mod/editpost.php:109 ../../mod/editlayout.php:112
+#: ../../mod/editwebpage.php:150 ../../mod/editblock.php:126
+msgid "Insert Vorbis [.ogg] audio"
+msgstr "Insérer un son Vorbis [.ogg]"
 
-#: ../../mod/admin.php:443
-msgid "System theme"
-msgstr "Thème du système"
+#: ../../mod/directory.php:144 ../../mod/profiles.php:561
+#: ../../mod/dirprofile.php:98
+msgid "Age: "
+msgstr "Age&nbsp;:"
 
-#: ../../mod/admin.php:443
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Thème par défaut - il peut être changé pour chaque profil utilisateur - <a href='#' id='cnftheme'>modifier le thème</a>"
+#: ../../mod/directory.php:147 ../../mod/dirprofile.php:101
+msgid "Gender: "
+msgstr "Sexe/genre&nbsp;:"
 
-#: ../../mod/admin.php:444
-msgid "Mobile system theme"
-msgstr "Thème système pour mobile"
+#: ../../mod/directory.php:208
+msgid "Finding:"
+msgstr "Recherche&nbsp;:"
 
-#: ../../mod/admin.php:444
-msgid "Theme for mobile devices"
-msgstr "Thème dédié aux périphériques mobiles"
+#: ../../mod/directory.php:216
+msgid "next page"
+msgstr "page suiv."
 
-#: ../../mod/admin.php:445
-msgid "Accessibility system theme"
-msgstr "Thème système pour l'accessibilité"
+#: ../../mod/directory.php:216
+msgid "previous page"
+msgstr "page préc."
 
-#: ../../mod/admin.php:445
-msgid "Accessibility theme"
-msgstr "Thème pour l'accessibilité"
+#: ../../mod/directory.php:223
+msgid "No entries (some entries may be hidden)."
+msgstr "Pas d'entrées (certaines peuvent être cachées)."
 
-#: ../../mod/admin.php:446
-msgid "Channel to use for this website's static pages"
-msgstr "Canal à utiliser pour les pages statiques de ce site"
+#: ../../mod/connedit.php:49 ../../mod/connections.php:37
+msgid "Could not access contact record."
+msgstr "Impossible d'accéder aux détails du contact."
 
-#: ../../mod/admin.php:446
-msgid "Site Channel"
-msgstr "Canal du site"
+#: ../../mod/connedit.php:63 ../../mod/connections.php:51
+msgid "Could not locate selected profile."
+msgstr "Impossible de localiser le profil sélectionné."
 
-#: ../../mod/admin.php:448
-msgid "Maximum image size"
-msgstr "Taille maximale des images"
+#: ../../mod/connedit.php:107 ../../mod/connections.php:94
+msgid "Connection updated."
+msgstr "Connexion mise à jour."
 
-#: ../../mod/admin.php:448
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Taille maximum, en octets, des images envoyées. Par défaut 0, soit sans limite."
+#: ../../mod/connedit.php:109 ../../mod/connections.php:96
+msgid "Failed to update connection record."
+msgstr "Impossible de mettre à jour les détails de la relation."
 
-#: ../../mod/admin.php:449
-msgid "Register policy"
-msgstr "Politique d'inscription"
-
-#: ../../mod/admin.php:450
-msgid "Access policy"
-msgstr "Politique d'accès"
+#: ../../mod/connedit.php:204
+msgid "Could not access address book record."
+msgstr "Impossible d'accéder aux détails du carnet d'adresses."
 
-#: ../../mod/admin.php:451
-msgid "Register text"
-msgstr "Texte d'inscription"
+#: ../../mod/connedit.php:218
+msgid "Refresh failed - channel is currently unavailable."
+msgstr "Actualisation impossible - le canal est momentanément indisponible."
 
-#: ../../mod/admin.php:451
-msgid "Will be displayed prominently on the registration page."
-msgstr "Sera affiché de manière bien visible sur le formulaire d'inscription."
+#: ../../mod/connedit.php:225
+msgid "Channel has been unblocked"
+msgstr "Le canal n'est plus bloqué"
 
-#: ../../mod/admin.php:452
-msgid "Accounts abandoned after x days"
-msgstr "Les comptes sont abandonnés après x jours"
+#: ../../mod/connedit.php:226
+msgid "Channel has been blocked"
+msgstr "Le canal est bloqué"
 
-#: ../../mod/admin.php:452
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Pour éviter de gaspiller les ressources du système en essayer de mettre à jour des comptes abandonnés. Mettez 0 pour ne pas avoir de limite de temps."
+#: ../../mod/connedit.php:230 ../../mod/connedit.php:242
+#: ../../mod/connedit.php:254 ../../mod/connedit.php:266
+#: ../../mod/connedit.php:281
+msgid "Unable to set address book parameters."
+msgstr "Impossible de régler les paramètres du carnet d'adresses."
 
-#: ../../mod/admin.php:453
-msgid "Allowed friend domains"
-msgstr "Domaines amicaux"
+#: ../../mod/connedit.php:237
+msgid "Channel has been unignored"
+msgstr "Le canal n'est plus ignoré"
 
-#: ../../mod/admin.php:453
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Liste de noms de domaines - séparés par des virgules - pour lesquels ce site acceptera les demandes d'amitié ou de mise en relation. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines."
+#: ../../mod/connedit.php:238
+msgid "Channel has been ignored"
+msgstr "Le canal est ignoré"
 
-#: ../../mod/admin.php:454
-msgid "Allowed email domains"
-msgstr "Domaines de courriels amicaux"
+#: ../../mod/connedit.php:249
+msgid "Channel has been unarchived"
+msgstr "Le canal n'est plus archivé"
 
-#: ../../mod/admin.php:454
-msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
-msgstr "Liste de noms de domaines - séparés par des virgules - dont les adresses de courriel seront autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines."
+#: ../../mod/connedit.php:250
+msgid "Channel has been archived"
+msgstr "Le canal est archivé"
 
-#: ../../mod/admin.php:455
-msgid "Block public"
-msgstr "Bloquer public"
+#: ../../mod/connedit.php:261
+msgid "Channel has been unhidden"
+msgstr "Le canal n'est plus caché"
 
-#: ../../mod/admin.php:455
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Cocher pour interdire tout accès public, y compris aux pages marquées comme publiques, aux visiteurs anonymes."
+#: ../../mod/connedit.php:262
+msgid "Channel has been hidden"
+msgstr "Le canal est caché"
 
-#: ../../mod/admin.php:456
-msgid "Force publish"
-msgstr "Forcer publication"
+#: ../../mod/connedit.php:276
+msgid "Channel has been approved"
+msgstr "Le canal est approuvé"
 
-#: ../../mod/admin.php:456
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Cocher pour forcer la publication de tous les profils du site dans l'annuaire."
+#: ../../mod/connedit.php:277
+msgid "Channel has been unapproved"
+msgstr "Le canal n'est plus approuvé"
 
-#: ../../mod/admin.php:457
-msgid "No login on Homepage"
-msgstr "Pas de connexion depuis la page d'accueil"
+#: ../../mod/connedit.php:295
+msgid "Contact has been removed."
+msgstr "Le canal a été supprimé"
 
-#: ../../mod/admin.php:457
-msgid ""
-"Check to hide the login form from your sites homepage when visitors arrive "
-"who are not logged in (e.g. when you put the content of the homepage in via "
-"the site channel)."
-msgstr ""
+#: ../../mod/connedit.php:315
+#, php-format
+msgid "View %s's profile"
+msgstr "Voir le profil de %s"
 
-#: ../../mod/admin.php:459
-msgid "Proxy user"
-msgstr "Utilisateurs du proxy"
+#: ../../mod/connedit.php:319
+msgid "Refresh Permissions"
+msgstr "Actualiser les permissions"
 
-#: ../../mod/admin.php:460
-msgid "Proxy URL"
-msgstr "URL du proxy"
+#: ../../mod/connedit.php:322
+msgid "Fetch updated permissions"
+msgstr "Récupérer les permissions les plus récentes"
 
-#: ../../mod/admin.php:461
-msgid "Network timeout"
-msgstr "Délai maximal du réseau"
+#: ../../mod/connedit.php:326
+msgid "Recent Activity"
+msgstr "Activité récente"
 
-#: ../../mod/admin.php:461
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "En secondes. Mettre à 0 pour ne pas avoir de délai maximal (pas recommandé)."
+#: ../../mod/connedit.php:329
+msgid "View recent posts and comments"
+msgstr "Voir les contributions et commentaires récentes"
 
-#: ../../mod/admin.php:462
-msgid "Delivery interval"
-msgstr "Intervalle de distribution"
+#: ../../mod/connedit.php:336
+msgid "Block or Unblock this connection"
+msgstr "Bloquer ou Débloquer cette relation"
 
-#: ../../mod/admin.php:462
-msgid ""
-"Delay background delivery processes by this many seconds to reduce system "
-"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
-"for large dedicated servers."
-msgstr "Temporise le processus de distribution de tant de secondes pour réduire la charge sur le système. Valeurs recommandées&nbsp;: 4-5 pour les serveurs mutualisés, 2-3 pour les VPS. 0-1 pour les gros serveurs dédiés."
+#: ../../mod/connedit.php:340 ../../mod/connedit.php:476
+msgid "Unignore"
+msgstr "Ne plus ignorer"
 
-#: ../../mod/admin.php:463
-msgid "Poll interval"
-msgstr "Intervalle de scrutation"
+#: ../../mod/connedit.php:340 ../../mod/connedit.php:476
+#: ../../mod/notifications.php:51
+msgid "Ignore"
+msgstr "Ignorer"
 
-#: ../../mod/admin.php:463
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "Temporise le processus de scrutation en tâche de fond de tant de secondes, pour réduire la charge. Si 0, utilise l'intervalle de distribution."
+#: ../../mod/connedit.php:343
+msgid "Ignore or Unignore this connection"
+msgstr "Ignorer ou ne plus ignorer cette relation"
 
-#: ../../mod/admin.php:464
-msgid "Maximum Load Average"
-msgstr "Charge moyenne maximale"
+#: ../../mod/connedit.php:346
+msgid "Unarchive"
+msgstr "Ne plus archiver"
 
-#: ../../mod/admin.php:464
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Charge système maximale au-delà de laquelle distribution et scrutation sont mis en pause - par défaut 50."
+#: ../../mod/connedit.php:346
+msgid "Archive"
+msgstr "Archiver"
 
-#: ../../mod/admin.php:520
-msgid "No server found"
-msgstr "Serveur introuvable"
+#: ../../mod/connedit.php:349
+msgid "Archive or Unarchive this connection"
+msgstr "Archiver ou ne plus archiver cette relation"
 
-#: ../../mod/admin.php:527 ../../mod/admin.php:750
-msgid "ID"
-msgstr "ID"
+#: ../../mod/connedit.php:352
+msgid "Unhide"
+msgstr "Ne plus cacher"
 
-#: ../../mod/admin.php:527
-msgid "for channel"
-msgstr "pour le canal"
+#: ../../mod/connedit.php:352
+msgid "Hide"
+msgstr "Cacher"
 
-#: ../../mod/admin.php:527
-msgid "on server"
-msgstr "sur le serveur"
+#: ../../mod/connedit.php:355
+msgid "Hide or Unhide this connection"
+msgstr "Cacher ou ne plus cacher cette relation"
 
-#: ../../mod/admin.php:527
-msgid "Status"
-msgstr "État"
+#: ../../mod/connedit.php:362
+msgid "Delete this connection"
+msgstr "Supprimer cette relation"
 
-#: ../../mod/admin.php:548
-msgid "Update has been marked successful"
-msgstr "La mise à jour a été marquée comme réussie"
+#: ../../mod/connedit.php:395
+msgid "Unknown"
+msgstr "Inconnu"
 
-#: ../../mod/admin.php:558
-#, php-format
-msgid "Executing %s failed. Check system logs."
-msgstr "L'éxecution de %s a échoué. Merci de vérifier les journaux du système."
+#: ../../mod/connedit.php:405 ../../mod/connedit.php:434
+msgid "Approve this connection"
+msgstr "Approuver cette relation"
 
-#: ../../mod/admin.php:561
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "La mise à jour %s a été appliquée avec succès."
+#: ../../mod/connedit.php:405
+msgid "Accept connection to allow communication"
+msgstr "Accepter la relation pour permettre la communication"
 
-#: ../../mod/admin.php:565
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "La mise à jour %s n'a pas retourné d'information. Impossible de savoir si elle a réussi ou non."
+#: ../../mod/connedit.php:421
+msgid "Automatic Permissions Settings"
+msgstr "Permissions automatiques"
 
-#: ../../mod/admin.php:568
+#: ../../mod/connedit.php:421
 #, php-format
-msgid "Update function %s could not be found."
-msgstr "La fonction de mise à jour %s est introuvable."
-
-#: ../../mod/admin.php:583
-msgid "No failed updates."
-msgstr "Aucune mise à jour défaillante."
-
-#: ../../mod/admin.php:587
-msgid "Failed Updates"
-msgstr "Mises à jour défaillantes"
-
-#: ../../mod/admin.php:589
-msgid "Mark success (if update was manually applied)"
-msgstr "Marquer comme réussie (si la mise à jour a été réalisée manuellement)"
+msgid "Connections: settings for %s"
+msgstr "Relations&nbsp;: réglages pour %s"
 
-#: ../../mod/admin.php:590
-msgid "Attempt to execute this update step automatically"
-msgstr "Tenter de réaliser cette étape de mise à jour automatiquement"
+#: ../../mod/connedit.php:425
+msgid ""
+"When receiving a channel introduction, any permissions provided here will be"
+" applied to the new connection automatically and the introduction approved. "
+"Leave this page if you do not wish to use this feature."
+msgstr "Pour chaque introduction reçue, toutes les permissions définies ici seront appliquées aux nouvelles relations automatiquement, et l'introduction sera approuvée. Laissez cette page telle quelle si vous ne souhaitez pas utiliser ce mécanisme."
 
-#: ../../mod/admin.php:616
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s utilisateur bloqué/débloqué"
-msgstr[1] "%s utilisateurs bloqués/débloqués"
+#: ../../mod/connedit.php:427
+msgid "Slide to adjust your degree of friendship"
+msgstr "Faites glisser pour ajuster le niveau de la relation"
 
-#: ../../mod/admin.php:623
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s utilisateur supprimé"
-msgstr[1] "%s utilisateurs supprimés"
+#: ../../mod/connedit.php:433
+msgid "inherited"
+msgstr "par héritage"
 
-#: ../../mod/admin.php:654
-msgid "Account not found"
-msgstr "Compte introuvable"
+#: ../../mod/connedit.php:435
+msgid "Connection has no individual permissions!"
+msgstr "Cette relation n'a aucune permission spécifique!"
 
-#: ../../mod/admin.php:665
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Utilisateur '%s' supprimé"
+#: ../../mod/connedit.php:436
+msgid ""
+"This may be appropriate based on your <a href=\"settings\">privacy "
+"settings</a>, though you may wish to review the \"Advanced Permissions\"."
+msgstr "Ceci devrait correspondre à vos <a href=\"settings\">réglages de vie privée</a>, mais vous pouvez toujours contrôler les \"Permissions avancées\"."
 
-#: ../../mod/admin.php:674
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Utilisateur '%s' débloqué"
+#: ../../mod/connedit.php:438
+msgid "Profile Visibility"
+msgstr "Visibilité du profil"
 
-#: ../../mod/admin.php:674
+#: ../../mod/connedit.php:439
 #, php-format
-msgid "User '%s' blocked"
-msgstr "Utilisateur '%s' bloqué"
-
-#: ../../mod/admin.php:739
-msgid "select all"
-msgstr "tout sélectionner"
-
-#: ../../mod/admin.php:740
-msgid "User registrations waiting for confirm"
-msgstr "Inscriptions en attente d'approbation"
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Merci de choisir le profil que vous souhaitez montrer quand %s visite votre profil de manière authentifiée."
 
-#: ../../mod/admin.php:741
-msgid "Request date"
-msgstr "Date de la demande"
+#: ../../mod/connedit.php:440
+msgid "Contact Information / Notes"
+msgstr "Notes / Information de contact"
 
-#: ../../mod/admin.php:742
-msgid "No registrations."
-msgstr "Pas d'inscriptions."
+#: ../../mod/connedit.php:441
+msgid "Edit contact notes"
+msgstr "Éditer les notes du contact"
 
-#: ../../mod/admin.php:743
-msgid "Approve"
-msgstr "Approuver"
+#: ../../mod/connedit.php:443
+msgid "Their Settings"
+msgstr "Ses réglages"
 
-#: ../../mod/admin.php:744
-msgid "Deny"
-msgstr "Refuser"
+#: ../../mod/connedit.php:444
+msgid "My Settings"
+msgstr "Mes réglages"
 
-#: ../../mod/admin.php:746 ../../mod/connedit.php:333
-#: ../../mod/connedit.php:475
-msgid "Block"
-msgstr "Bloquer"
+#: ../../mod/connedit.php:446
+msgid "Forum Members"
+msgstr "Membres de forum"
 
-#: ../../mod/admin.php:747 ../../mod/connedit.php:333
-#: ../../mod/connedit.php:475
-msgid "Unblock"
-msgstr "Débloquer"
+#: ../../mod/connedit.php:447
+msgid "Soapbox"
+msgstr "Boîte à savon"
 
-#: ../../mod/admin.php:750
-msgid "Register date"
-msgstr "Date d'inscription"
+#: ../../mod/connedit.php:448
+msgid "Full Sharing (typical social network permissions)"
+msgstr "Partage complet (fonctionnement habituel des réseaux sociaux)"
 
-#: ../../mod/admin.php:750
-msgid "Last login"
-msgstr "Dernière connexion"
+#: ../../mod/connedit.php:449
+msgid "Cautious Sharing "
+msgstr "Partage modéré"
 
-#: ../../mod/admin.php:750
-msgid "Expires"
-msgstr "Expire"
+#: ../../mod/connedit.php:450
+msgid "Follow Only"
+msgstr "Suivi uniquement"
 
-#: ../../mod/admin.php:750
-msgid "Service Class"
-msgstr "Classe de service"
+#: ../../mod/connedit.php:451
+msgid "Individual Permissions"
+msgstr "Permissions spécifiques"
 
-#: ../../mod/admin.php:752
+#: ../../mod/connedit.php:452
 msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Les utilisateurs sélectionnés seront supprimés!\\n\\nTout ce que ces utilisateurs ont publié sur ce site sera détruit de manière définitive!\\n\\nÊtes-vous certain?"
+"Some permissions may be inherited from your channel <a "
+"href=\"settings\">privacy settings</a>, which have higher priority than "
+"individual settings. Changing those inherited settings on this page will "
+"have no effect."
+msgstr "Certaines permissions peuvent être héritées de vos <a href=\"settings\">réglages de vie privée</a>, lesquels sont prioritaires sur les réglages spécifiques. Changer ces permissions héritées sur la présente page n'aura aucun effet."
 
-#: ../../mod/admin.php:753
-msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "L'utilisateur {0} sera supprimé!\\n\\nTout ce que cet utilisateur a publié sur ce site sera détruit de manière définitive!\\n\\nÊtes-vous certain?"
+#: ../../mod/connedit.php:453
+msgid "Advanced Permissions"
+msgstr "Permissions avancées"
 
-#: ../../mod/admin.php:794
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Extension %s désactivée."
+#: ../../mod/connedit.php:454
+msgid "Simple Permissions (select one and submit)"
+msgstr "Permissions simples (en choisir une, puis valider)"
 
-#: ../../mod/admin.php:798
+#: ../../mod/connedit.php:458
 #, php-format
-msgid "Plugin %s enabled."
-msgstr "Extension %s activée."
+msgid "Visit %s's profile - %s"
+msgstr "Visiter le profil de %s - %s"
 
-#: ../../mod/admin.php:808 ../../mod/admin.php:1010
-msgid "Disable"
-msgstr "Désactiver"
+#: ../../mod/connedit.php:459
+msgid "Block/Unblock contact"
+msgstr "Bloquer/Débloquer le contact"
 
-#: ../../mod/admin.php:810 ../../mod/admin.php:1012
-msgid "Enable"
-msgstr "Activer"
+#: ../../mod/connedit.php:460
+msgid "Ignore contact"
+msgstr "Ignorer le contact"
 
-#: ../../mod/admin.php:836 ../../mod/admin.php:1041
-msgid "Toggle"
-msgstr "(Dés)activer"
+#: ../../mod/connedit.php:461
+msgid "Repair URL settings"
+msgstr "Réparer les réglages d'URL"
 
-#: ../../mod/admin.php:844 ../../mod/admin.php:1051
-msgid "Author: "
-msgstr "Auteur&nbsp;:"
+#: ../../mod/connedit.php:462
+msgid "View conversations"
+msgstr "Voir les conversations"
 
-#: ../../mod/admin.php:845 ../../mod/admin.php:1052
-msgid "Maintainer: "
-msgstr "Maintenu par&nbsp;:"
+#: ../../mod/connedit.php:464
+msgid "Delete contact"
+msgstr "Supprimer le contact"
 
-#: ../../mod/admin.php:974
-msgid "No themes found."
-msgstr "Aucun thème trouvé."
+#: ../../mod/connedit.php:467
+msgid "Last update:"
+msgstr "Dernière mise-à-jour&nbsp;:"
 
-#: ../../mod/admin.php:1033
-msgid "Screenshot"
-msgstr "Aperçu"
+#: ../../mod/connedit.php:469
+msgid "Update public posts"
+msgstr "Mettre à jour les publications"
 
-#: ../../mod/admin.php:1081
-msgid "[Experimental]"
-msgstr "[Expérimental]"
+#: ../../mod/connedit.php:471
+msgid "Update now"
+msgstr "Mettre à jour maintenant"
 
-#: ../../mod/admin.php:1082
-msgid "[Unsupported]"
-msgstr "[Non-supporté]"
+#: ../../mod/connedit.php:477
+msgid "Currently blocked"
+msgstr "Actuellement bloqué"
 
-#: ../../mod/admin.php:1109
-msgid "Log settings updated."
-msgstr "Réglages du journal sauvegardés."
+#: ../../mod/connedit.php:478
+msgid "Currently ignored"
+msgstr "Actuellement ignoré"
 
-#: ../../mod/admin.php:1165
-msgid "Clear"
-msgstr "Vider"
+#: ../../mod/connedit.php:479
+msgid "Currently archived"
+msgstr "Actuellement archivé"
 
-#: ../../mod/admin.php:1171
-msgid "Debugging"
-msgstr "Débogage"
+#: ../../mod/connedit.php:480
+msgid "Currently pending"
+msgstr "Actuellement en attente"
 
-#: ../../mod/admin.php:1172
-msgid "Log file"
-msgstr "Fichier du journal"
+#: ../../mod/connedit.php:481
+msgid "Hide this contact from others"
+msgstr "Dissimuler ce contact aux autres"
 
-#: ../../mod/admin.php:1172
+#: ../../mod/connedit.php:481
 msgid ""
-"Must be writable by web server. Relative to your Red top-level directory."
-msgstr "Doit être accessible en écriture par le serveur web. Chemin relatif à la racine de Red."
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Les réponses et autres réactions à vos contributions publiques <strong>pourraient</strong> être toujours visibles"
 
-#: ../../mod/admin.php:1173
-msgid "Log level"
-msgstr "Niveau de journalisation"
+#: ../../mod/layouts.php:52
+msgid "Layout Help"
+msgstr "Aide à la mise en page"
 
-#: ../../mod/filer.php:35
-msgid "- select -"
-msgstr "- choisir -"
+#: ../../mod/layouts.php:55
+msgid "Help with this feature"
+msgstr "Aide avec cette fonctionnalité"
 
-#: ../../mod/home.php:89
-#, php-format
-msgid "Welcome to %s"
-msgstr "Bienvenue sur %s"
+#: ../../mod/layouts.php:74
+msgid "Layout Name"
+msgstr "Nom de la mise-en-page"
 
-#: ../../mod/editpost.php:20 ../../mod/editlayout.php:36
-#: ../../mod/editwebpage.php:32 ../../mod/editblock.php:36
-msgid "Item not found"
-msgstr "Élément introuvable"
+#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55
+msgid "Help:"
+msgstr "Aide&nbsp;:"
 
-#: ../../mod/editpost.php:31
-msgid "Item is not editable"
-msgstr "Élément non-éditable"
+#: ../../mod/help.php:68 ../../index.php:223
+msgid "Not Found"
+msgstr "Introuvable"
 
-#: ../../mod/editpost.php:53
-msgid "Delete item?"
-msgstr "Supprimer l'élément?"
+#: ../../mod/help.php:71 ../../mod/page.php:83 ../../mod/display.php:100
+#: ../../index.php:226
+msgid "Page not found."
+msgstr "Page introuvable."
 
-#: ../../mod/editpost.php:107 ../../mod/editlayout.php:110
-#: ../../mod/editwebpage.php:148 ../../mod/editblock.php:124
-msgid "Insert YouTube video"
-msgstr "Insérer une vidéo YouTube"
+#: ../../mod/rmagic.php:56
+msgid "Remote Authentication"
+msgstr "Authentification distante"
 
-#: ../../mod/editpost.php:108 ../../mod/editlayout.php:111
-#: ../../mod/editwebpage.php:149 ../../mod/editblock.php:125
-msgid "Insert Vorbis [.ogg] video"
-msgstr "Insérer une vidéo Vorbis [.ogg]"
+#: ../../mod/rmagic.php:57
+msgid "Enter your channel address (e.g. channel@example.com)"
+msgstr "Entrez l'adresse de votre canal (p.ex. moncanal@monsite.com)"
 
-#: ../../mod/editpost.php:109 ../../mod/editlayout.php:112
-#: ../../mod/editwebpage.php:150 ../../mod/editblock.php:126
-msgid "Insert Vorbis [.ogg] audio"
-msgstr "Insérer un son Vorbis [.ogg]"
+#: ../../mod/rmagic.php:58
+msgid "Authenticate"
+msgstr "Authentifier"
 
-#: ../../mod/directory.php:143 ../../mod/profiles.php:561
-#: ../../mod/dirprofile.php:98
-msgid "Age: "
-msgstr "Age&nbsp;:"
+#: ../../mod/page.php:35
+msgid "Invalid item."
+msgstr "Élément invalide."
 
-#: ../../mod/directory.php:146 ../../mod/dirprofile.php:101
-msgid "Gender: "
-msgstr "Sexe/genre&nbsp;:"
+#: ../../mod/network.php:79
+msgid "No such group"
+msgstr "Rien de tel comme groupe"
 
-#: ../../mod/directory.php:207
-msgid "Finding:"
-msgstr "Recherche&nbsp;:"
+#: ../../mod/network.php:118
+msgid "Search Results For:"
+msgstr "Résultats de recherche pour&nbsp;:"
 
-#: ../../mod/directory.php:215
-msgid "next page"
-msgstr "page suiv."
+#: ../../mod/network.php:172
+msgid "Collection is empty"
+msgstr "Collection vide"
 
-#: ../../mod/directory.php:215
-msgid "previous page"
-msgstr "page préc."
+#: ../../mod/network.php:180
+msgid "Collection: "
+msgstr "Collection&nbsp;:"
 
-#: ../../mod/directory.php:222
-msgid "No entries (some entries may be hidden)."
-msgstr "Pas d'entrées (certaines peuvent être cachées)."
+#: ../../mod/network.php:193
+msgid "Connection: "
+msgstr "Relation&nbsp;:"
+
+#: ../../mod/network.php:196
+msgid "Invalid connection."
+msgstr "Relation invalide."
+
+#: ../../mod/profiles.php:18 ../../mod/profiles.php:138
+#: ../../mod/profiles.php:168 ../../mod/profiles.php:463
+msgid "Profile not found."
+msgstr "Profil introuvable."
+
+#: ../../mod/profiles.php:38
+msgid "Profile deleted."
+msgstr "Profil supprimé."
+
+#: ../../mod/profiles.php:56 ../../mod/profiles.php:92
+msgid "Profile-"
+msgstr "Profil-"
+
+#: ../../mod/profiles.php:77 ../../mod/profiles.php:120
+msgid "New profile created."
+msgstr "Nouveau profil créé."
+
+#: ../../mod/profiles.php:98
+msgid "Profile unavailable to clone."
+msgstr "Profil impossible à cloner."
+
+#: ../../mod/profiles.php:178
+msgid "Profile Name is required."
+msgstr "Le nom du profil est requis."
 
-#: ../../mod/connedit.php:49 ../../mod/connections.php:37
-msgid "Could not access contact record."
-msgstr "Impossible d'accéder aux détails du contact."
+#: ../../mod/profiles.php:294
+msgid "Marital Status"
+msgstr "Statut marital"
 
-#: ../../mod/connedit.php:63 ../../mod/connections.php:51
-msgid "Could not locate selected profile."
-msgstr "Impossible de localiser le profil sélectionné."
+#: ../../mod/profiles.php:298
+msgid "Romantic Partner"
+msgstr "Partenaire"
 
-#: ../../mod/connedit.php:107 ../../mod/connections.php:94
-msgid "Connection updated."
-msgstr "Connexion mise à jour."
+#: ../../mod/profiles.php:302
+msgid "Likes"
+msgstr "Aime"
 
-#: ../../mod/connedit.php:109 ../../mod/connections.php:96
-msgid "Failed to update connection record."
-msgstr "Impossible de mettre à jour les détails de la relation."
+#: ../../mod/profiles.php:306
+msgid "Dislikes"
+msgstr "Déteste"
 
-#: ../../mod/connedit.php:204
-msgid "Could not access address book record."
-msgstr "Impossible d'accéder aux détails du carnet d'adresses."
+#: ../../mod/profiles.php:310
+msgid "Work/Employment"
+msgstr "Travail/Occupation"
 
-#: ../../mod/connedit.php:218
-msgid "Refresh failed - channel is currently unavailable."
-msgstr "Actualisation impossible - le canal est momentanément indisponible."
+#: ../../mod/profiles.php:313
+msgid "Religion"
+msgstr "Religion/Croyance"
 
-#: ../../mod/connedit.php:225
-msgid "Channel has been unblocked"
-msgstr "Le canal n'est plus bloqué"
+#: ../../mod/profiles.php:317
+msgid "Political Views"
+msgstr "Opinions politiques"
 
-#: ../../mod/connedit.php:226
-msgid "Channel has been blocked"
-msgstr "Le canal est bloqué"
+#: ../../mod/profiles.php:321
+msgid "Gender"
+msgstr "Sexe/Genre"
 
-#: ../../mod/connedit.php:230 ../../mod/connedit.php:242
-#: ../../mod/connedit.php:254 ../../mod/connedit.php:266
-#: ../../mod/connedit.php:281
-msgid "Unable to set address book parameters."
-msgstr "Impossible de régler les paramètres du carnet d'adresses."
+#: ../../mod/profiles.php:325
+msgid "Sexual Preference"
+msgstr "Préférence sexuelle"
 
-#: ../../mod/connedit.php:237
-msgid "Channel has been unignored"
-msgstr "Le canal n'est plus ignoré"
+#: ../../mod/profiles.php:329
+msgid "Homepage"
+msgstr "Site Internet"
 
-#: ../../mod/connedit.php:238
-msgid "Channel has been ignored"
-msgstr "Le canal est ignoré"
+#: ../../mod/profiles.php:333
+msgid "Interests"
+msgstr "Centres d'intérêt"
 
-#: ../../mod/connedit.php:249
-msgid "Channel has been unarchived"
-msgstr "Le canal n'est plus archivé"
+#: ../../mod/profiles.php:337
+msgid "Address"
+msgstr "Adresse"
 
-#: ../../mod/connedit.php:250
-msgid "Channel has been archived"
-msgstr "Le canal est archivé"
+#: ../../mod/profiles.php:344 ../../mod/pubsites.php:31
+msgid "Location"
+msgstr "Localisation"
 
-#: ../../mod/connedit.php:261
-msgid "Channel has been unhidden"
-msgstr "Le canal n'est plus caché"
+#: ../../mod/profiles.php:427
+msgid "Profile updated."
+msgstr "Profil mis à jour."
 
-#: ../../mod/connedit.php:262
-msgid "Channel has been hidden"
-msgstr "Le canal est caché"
+#: ../../mod/profiles.php:482
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Cacher vos contacts/relations aux visiteurs de ce profil?"
 
-#: ../../mod/connedit.php:276
-msgid "Channel has been approved"
-msgstr "Le canal est approuvé"
+#: ../../mod/profiles.php:505
+msgid "Edit Profile Details"
+msgstr "Éditer les détails du profil"
 
-#: ../../mod/connedit.php:277
-msgid "Channel has been unapproved"
-msgstr "Le canal n'est plus approuvé"
+#: ../../mod/profiles.php:507
+msgid "View this profile"
+msgstr "Voir le profil"
 
-#: ../../mod/connedit.php:295
-msgid "Contact has been removed."
-msgstr "Le canal a été supprimé"
+#: ../../mod/profiles.php:508
+msgid "Change Profile Photo"
+msgstr "Changer la photo du profil"
 
-#: ../../mod/connedit.php:315
-#, php-format
-msgid "View %s's profile"
-msgstr "Voir le profil de %s"
+#: ../../mod/profiles.php:509
+msgid "Create a new profile using these settings"
+msgstr "Créer un nouveau profil avec ces réglages"
 
-#: ../../mod/connedit.php:319
-msgid "Refresh Permissions"
-msgstr "Actualiser les permissions"
+#: ../../mod/profiles.php:510
+msgid "Clone this profile"
+msgstr "Cloner le profil"
 
-#: ../../mod/connedit.php:322
-msgid "Fetch updated permissions"
-msgstr "Récupérer les permissions les plus récentes"
+#: ../../mod/profiles.php:511
+msgid "Delete this profile"
+msgstr "Supprimer le profil"
 
-#: ../../mod/connedit.php:326
-msgid "Recent Activity"
-msgstr "Activité récente"
+#: ../../mod/profiles.php:512
+msgid "Profile Name:"
+msgstr "Nom du profil&nbsp;:"
 
-#: ../../mod/connedit.php:329
-msgid "View recent posts and comments"
-msgstr "Voir les contributions et commentaires récentes"
+#: ../../mod/profiles.php:513
+msgid "Your Full Name:"
+msgstr "Votre nom complet&nbsp;:"
 
-#: ../../mod/connedit.php:336
-msgid "Block or Unblock this connection"
-msgstr "Bloquer ou Débloquer cette relation"
+#: ../../mod/profiles.php:514
+msgid "Title/Description:"
+msgstr "Titre/description&nbsp;:"
 
-#: ../../mod/connedit.php:340 ../../mod/connedit.php:476
-msgid "Unignore"
-msgstr "Ne plus ignorer"
+#: ../../mod/profiles.php:515
+msgid "Your Gender:"
+msgstr "Sexe/Genre&nbsp;:"
 
-#: ../../mod/connedit.php:340 ../../mod/connedit.php:476
-#: ../../mod/notifications.php:51
-msgid "Ignore"
-msgstr "Ignorer"
+#: ../../mod/profiles.php:516
+#, php-format
+msgid "Birthday (%s):"
+msgstr "Date de naissance (%s)&nbsp;:"
 
-#: ../../mod/connedit.php:343
-msgid "Ignore or Unignore this connection"
-msgstr "Ignorer ou ne plus ignorer cette relation"
+#: ../../mod/profiles.php:517
+msgid "Street Address:"
+msgstr "Adresse postale&nbsp;:"
 
-#: ../../mod/connedit.php:346
-msgid "Unarchive"
-msgstr "Ne plus archiver"
+#: ../../mod/profiles.php:518
+msgid "Locality/City:"
+msgstr "Ville/Localité&nbsp;:"
 
-#: ../../mod/connedit.php:346
-msgid "Archive"
-msgstr "Archiver"
+#: ../../mod/profiles.php:519
+msgid "Postal/Zip Code:"
+msgstr "Code postal&nbsp;:"
 
-#: ../../mod/connedit.php:349
-msgid "Archive or Unarchive this connection"
-msgstr "Archiver ou ne plus archiver cette relation"
+#: ../../mod/profiles.php:520
+msgid "Country:"
+msgstr "Pays&nbsp;:"
 
-#: ../../mod/connedit.php:352
-msgid "Unhide"
-msgstr "Ne plus cacher"
+#: ../../mod/profiles.php:521
+msgid "Region/State:"
+msgstr "Région/Province/État&nbsp;:"
 
-#: ../../mod/connedit.php:352
-msgid "Hide"
-msgstr "Cacher"
+#: ../../mod/profiles.php:522
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span>Statut marital&nbsp;:"
 
-#: ../../mod/connedit.php:355
-msgid "Hide or Unhide this connection"
-msgstr "Cacher ou ne plus cacher cette relation"
+#: ../../mod/profiles.php:523
+msgid "Who: (if applicable)"
+msgstr "Avec&nbsp;: (si pertinent)"
 
-#: ../../mod/connedit.php:362
-msgid "Delete this connection"
-msgstr "Supprimer cette relation"
+#: ../../mod/profiles.php:524
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Exemples&nbsp;: cathy123, Cathy Williams, cathy@exemple.com"
 
-#: ../../mod/connedit.php:395
-msgid "Unknown"
-msgstr "Inconnu"
+#: ../../mod/profiles.php:525
+msgid "Since [date]:"
+msgstr "Depuis [date]&nbsp;:"
 
-#: ../../mod/connedit.php:405 ../../mod/connedit.php:434
-msgid "Approve this connection"
-msgstr "Approuver cette relation"
+#: ../../mod/profiles.php:527
+msgid "Homepage URL:"
+msgstr "URL de mon site Internet&nbsp;:"
 
-#: ../../mod/connedit.php:405
-msgid "Accept connection to allow communication"
-msgstr "Accepter la relation pour permettre la communication"
+#: ../../mod/profiles.php:530
+msgid "Religious Views:"
+msgstr "Opinions religieuses&nbsp;:"
 
-#: ../../mod/connedit.php:421
-msgid "Automatic Permissions Settings"
-msgstr "Permissions automatiques"
+#: ../../mod/profiles.php:531
+msgid "Keywords:"
+msgstr "Mots-clefs&nbsp;:"
 
-#: ../../mod/connedit.php:421
-#, php-format
-msgid "Connections: settings for %s"
-msgstr "Relations&nbsp;: réglages pour %s"
+#: ../../mod/profiles.php:534
+msgid "Example: fishing photography software"
+msgstr "Exemple&nbsp;: escrime photographie modélisme"
 
-#: ../../mod/connedit.php:425
-msgid ""
-"When receiving a channel introduction, any permissions provided here will be"
-" applied to the new connection automatically and the introduction approved. "
-"Leave this page if you do not wish to use this feature."
-msgstr "Pour chaque introduction reçue, toutes les permissions définies ici seront appliquées aux nouvelles relations automatiquement, et l'introduction sera approuvée. Laissez cette page telle quelle si vous ne souhaitez pas utiliser ce mécanisme."
+#: ../../mod/profiles.php:535
+msgid "Used in directory listings"
+msgstr "Utilisé pour le référencement dans l'annuaire"
 
-#: ../../mod/connedit.php:427
-msgid "Slide to adjust your degree of friendship"
-msgstr "Faites glisser pour ajuster le niveau de la relation"
+#: ../../mod/profiles.php:536
+msgid "Tell us about yourself..."
+msgstr "Parlez nous de vous..."
 
-#: ../../mod/connedit.php:433
-msgid "inherited"
-msgstr "par héritage"
+#: ../../mod/profiles.php:537
+msgid "Hobbies/Interests"
+msgstr "Loisirs/Centres d'intêret"
 
-#: ../../mod/connedit.php:435
-msgid "Connection has no individual permissions!"
-msgstr "Cette relation n'a aucune permission spécifique!"
+#: ../../mod/profiles.php:538
+msgid "Contact information and Social Networks"
+msgstr "Coordonnées et réseaux sociaux"
 
-#: ../../mod/connedit.php:436
-msgid ""
-"This may be appropriate based on your <a href=\"settings\">privacy "
-"settings</a>, though you may wish to review the \"Advanced Permissions\"."
-msgstr "Ceci devrait correspondre à vos <a href=\"settings\">réglages de vie privée</a>, mais vous pouvez toujours contrôler les \"Permissions avancées\"."
+#: ../../mod/profiles.php:539
+msgid "My other channels"
+msgstr "Mes autres canaux"
 
-#: ../../mod/connedit.php:438
-msgid "Profile Visibility"
-msgstr "Visibilité du profil"
+#: ../../mod/profiles.php:540
+msgid "Musical interests"
+msgstr "Goûts musicaux"
 
-#: ../../mod/connedit.php:439
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Merci de choisir le profil que vous souhaitez montrer quand %s visite votre profil de manière authentifiée."
+#: ../../mod/profiles.php:541
+msgid "Books, literature"
+msgstr "Littérature"
 
-#: ../../mod/connedit.php:440
-msgid "Contact Information / Notes"
-msgstr "Notes / Information de contact"
+#: ../../mod/profiles.php:542
+msgid "Television"
+msgstr "Télévision"
 
-#: ../../mod/connedit.php:441
-msgid "Edit contact notes"
-msgstr "Éditer les notes du contact"
+#: ../../mod/profiles.php:543
+msgid "Film/dance/culture/entertainment"
+msgstr "Cinéma/Danse/Culture/Divertissement"
 
-#: ../../mod/connedit.php:443
-msgid "Their Settings"
-msgstr "Ses réglages"
+#: ../../mod/profiles.php:544
+msgid "Love/romance"
+msgstr "Amour/Romance"
 
-#: ../../mod/connedit.php:444
-msgid "My Settings"
-msgstr "Mes réglages"
+#: ../../mod/profiles.php:545
+msgid "Work/employment"
+msgstr "Travail/Occupation"
 
-#: ../../mod/connedit.php:446
-msgid "Forum Members"
-msgstr "Membres de forum"
+#: ../../mod/profiles.php:546
+msgid "School/education"
+msgstr "Études"
 
-#: ../../mod/connedit.php:447
-msgid "Soapbox"
-msgstr "Boîte à savon"
+#: ../../mod/profiles.php:551
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Ceci est votre profil <strong>public</strong>.<br />Il <strong>pourrait</strong> être visible par tout utilisateur - fut-il anonyme - d'Internet."
 
-#: ../../mod/connedit.php:448
-msgid "Full Sharing (typical social network permissions)"
-msgstr "Partage complet (fonctionnement habituel des réseaux sociaux)"
+#: ../../mod/profiles.php:600
+msgid "Edit/Manage Profiles"
+msgstr "Éditer/gérer les profils"
 
-#: ../../mod/connedit.php:449
-msgid "Cautious Sharing "
-msgstr "Partage modéré"
+#: ../../mod/profiles.php:601
+msgid "Add profile things"
+msgstr "Ajouter des choses de profil"
 
-#: ../../mod/connedit.php:450
-msgid "Follow Only"
-msgstr "Suivi uniquement"
+#: ../../mod/profiles.php:602
+msgid "Include desirable objects in your profile"
+msgstr "Incluez des objets souhaitables dans votre profil"
 
-#: ../../mod/connedit.php:451
-msgid "Individual Permissions"
-msgstr "Permissions spécifiques"
+#: ../../mod/follow.php:25
+msgid "Channel added."
+msgstr "Canal ajouté."
 
-#: ../../mod/connedit.php:452
+#: ../../mod/post.php:226
 msgid ""
-"Some permissions may be inherited from your channel <a "
-"href=\"settings\">privacy settings</a>, which have higher priority than "
-"individual settings. Changing those inherited settings on this page will "
-"have no effect."
-msgstr "Certaines permissions peuvent être héritées de vos <a href=\"settings\">réglages de vie privée</a>, lesquels sont prioritaires sur les réglages spécifiques. Changer ces permissions héritées sur la présente page n'aura aucun effet."
+"Remote authentication blocked. You are logged into this site locally. Please"
+" logout and retry."
+msgstr "Authentification distante bloquée. Vous êtes connecté sur ce site localement. Merci de vous en déconnecter et de recommencer."
 
-#: ../../mod/connedit.php:453
-msgid "Advanced Permissions"
-msgstr "Permissions avancées"
+#: ../../mod/post.php:256
+#, php-format
+msgid "Welcome %s. Remote authentication successful."
+msgstr "Bienvenue %s. L'authentification distante a fonctionné."
 
-#: ../../mod/connedit.php:454
-msgid "Simple Permissions (select one and submit)"
-msgstr "Permissions simples (en choisir une, puis valider)"
+#: ../../mod/dirsearch.php:21
+msgid "This site is not a directory server"
+msgstr "Ce site n'est pas un serveur d'annuaire"
 
-#: ../../mod/connedit.php:458
-#, php-format
-msgid "Visit %s's profile - %s"
-msgstr "Visiter le profil de %s - %s"
+#: ../../mod/sources.php:32
+msgid "Failed to create source. No channel selected."
+msgstr "Impossible de créer la source. Aucun canal selectionné."
 
-#: ../../mod/connedit.php:459
-msgid "Block/Unblock contact"
-msgstr "Bloquer/Débloquer le contact"
+#: ../../mod/sources.php:45
+msgid "Source created."
+msgstr "Source créée."
 
-#: ../../mod/connedit.php:460
-msgid "Ignore contact"
-msgstr "Ignorer le contact"
+#: ../../mod/sources.php:57
+msgid "Source updated."
+msgstr "Source mise à jour."
 
-#: ../../mod/connedit.php:461
-msgid "Repair URL settings"
-msgstr "Réparer les réglages d'URL"
+#: ../../mod/sources.php:82
+msgid "*"
+msgstr "*"
 
-#: ../../mod/connedit.php:462
-msgid "View conversations"
-msgstr "Voir les conversations"
+#: ../../mod/sources.php:89
+msgid "Manage remote sources of content for your channel."
+msgstr "Gérer les sources distantes du contenu de votre canal."
 
-#: ../../mod/connedit.php:464
-msgid "Delete contact"
-msgstr "Supprimer le contact"
+#: ../../mod/sources.php:90 ../../mod/sources.php:100
+msgid "New Source"
+msgstr "Nouvelle source"
 
-#: ../../mod/connedit.php:467
-msgid "Last update:"
-msgstr "Dernière mise-à-jour&nbsp;:"
+#: ../../mod/sources.php:101 ../../mod/sources.php:133
+msgid ""
+"Import all or selected content from the following channel into this channel "
+"and distribute it according to your channel settings."
+msgstr "Importer tout ou partie du contenu du canal suivant dans le canal en cours, et le distribuer en concordance avec les réglages de votre canal."
 
-#: ../../mod/connedit.php:469
-msgid "Update public posts"
-msgstr "Mettre à jour les publications"
+#: ../../mod/sources.php:102 ../../mod/sources.php:134
+msgid "Only import content with these words (one per line)"
+msgstr "N'importer le contenu que s'ils contient ces mots (un par ligne)"
 
-#: ../../mod/connedit.php:471
-msgid "Update now"
-msgstr "Mettre à jour maintenant"
+#: ../../mod/sources.php:102 ../../mod/sources.php:134
+msgid "Leave blank to import all public content"
+msgstr "Laissez en blanc pour importer tout le contenu public"
 
-#: ../../mod/connedit.php:477
-msgid "Currently blocked"
-msgstr "Actuellement bloqué"
+#: ../../mod/sources.php:103 ../../mod/sources.php:137
+#: ../../mod/new_channel.php:110
+msgid "Channel Name"
+msgstr "Nom du canal"
 
-#: ../../mod/connedit.php:478
-msgid "Currently ignored"
-msgstr "Actuellement ignoré"
+#: ../../mod/sources.php:123 ../../mod/sources.php:150
+msgid "Source not found."
+msgstr "Source introuvable."
 
-#: ../../mod/connedit.php:479
-msgid "Currently archived"
-msgstr "Actuellement archivé"
+#: ../../mod/sources.php:130
+msgid "Edit Source"
+msgstr "Éditer source"
 
-#: ../../mod/connedit.php:480
-msgid "Currently pending"
-msgstr "Actuellement en attente"
+#: ../../mod/sources.php:131
+msgid "Delete Source"
+msgstr "Supprimer source"
 
-#: ../../mod/connedit.php:481
-msgid "Hide this contact from others"
-msgstr "Dissimuler ce contact aux autres"
+#: ../../mod/sources.php:158
+msgid "Source removed"
+msgstr "Source supprimée"
 
-#: ../../mod/connedit.php:481
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Les réponses et autres réactions à vos contributions publiques <strong>pourraient</strong> être toujours visibles"
+#: ../../mod/sources.php:160
+msgid "Unable to remove source."
+msgstr "Impossible de supprimer la source."
 
-#: ../../mod/layouts.php:52
-msgid "Layout Help"
-msgstr "Aide à la mise en page"
+#: ../../mod/lockview.php:34
+msgid "Remote privacy information not available."
+msgstr "Les informations de vie privée à distance ne sont pas disponibles."
 
-#: ../../mod/layouts.php:55
-msgid "Help with this feature"
-msgstr "Aide avec cette fonctionnalité"
+#: ../../mod/lockview.php:43
+msgid "Visible to:"
+msgstr "Visible par&nbsp;:"
 
-#: ../../mod/layouts.php:74
-msgid "Layout Name"
-msgstr "Nom de la mise-en-page"
+#: ../../mod/magic.php:70
+msgid "Hub not found."
+msgstr "Instance introuvable."
 
-#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55
-msgid "Help:"
-msgstr "Aide&nbsp;:"
+#: ../../mod/setup.php:161
+msgid "Red Matrix Server - Setup"
+msgstr "Serveur Red Matrix - Configuration"
 
-#: ../../mod/help.php:68 ../../index.php:223
-msgid "Not Found"
-msgstr "Introuvable"
+#: ../../mod/setup.php:167
+msgid "Could not connect to database."
+msgstr "Impossible de se connecter à la base de données."
+
+#: ../../mod/setup.php:171
+msgid ""
+"Could not connect to specified site URL. Possible SSL certificate or DNS "
+"issue."
+msgstr "Impossible de se connecter au site par l'URL indiquée. Problème potentiel de certificat SSL/TLS ou de DNS."
+
+#: ../../mod/setup.php:176
+msgid "Could not create table."
+msgstr "Impossible de créer la table."
 
-#: ../../mod/help.php:71 ../../mod/page.php:83 ../../mod/display.php:100
-#: ../../index.php:226
-msgid "Page not found."
-msgstr "Page introuvable."
+#: ../../mod/setup.php:182
+msgid "Your site database has been installed."
+msgstr "La base de données de votre site a été installée."
 
-#: ../../mod/rmagic.php:56
-msgid "Remote Authentication"
-msgstr "Authentification distante"
+#: ../../mod/setup.php:187
+msgid ""
+"You may need to import the file \"install/database.sql\" manually using "
+"phpmyadmin or mysql."
+msgstr "Vous pourriez avoir besoin d'importer le fichier \"install/database.sql\" manuellement via phpmyadmin ou mysql."
 
-#: ../../mod/rmagic.php:57
-msgid "Enter your channel address (e.g. channel@example.com)"
-msgstr "Entrez l'adresse de votre canal (p.ex. moncanal@monsite.com)"
+#: ../../mod/setup.php:188 ../../mod/setup.php:257 ../../mod/setup.php:609
+msgid "Please see the file \"install/INSTALL.txt\"."
+msgstr "Merci de consulter le fichier \"install/INSTALL.txt\"."
 
-#: ../../mod/rmagic.php:58
-msgid "Authenticate"
-msgstr "Authentifier"
+#: ../../mod/setup.php:254
+msgid "System check"
+msgstr "Vérification du système"
 
-#: ../../mod/page.php:35
-msgid "Invalid item."
-msgstr "Élément invalide."
+#: ../../mod/setup.php:259
+msgid "Check again"
+msgstr "Re-vérifier"
 
-#: ../../mod/network.php:79
-msgid "No such group"
-msgstr "Rien de tel comme groupe"
+#: ../../mod/setup.php:281
+msgid "Database connection"
+msgstr "Connexion à la base de données"
 
-#: ../../mod/network.php:118
-msgid "Search Results For:"
-msgstr "Résultats de recherche pour&nbsp;:"
+#: ../../mod/setup.php:282
+msgid ""
+"In order to install Red Matrix we need to know how to connect to your "
+"database."
+msgstr "Pour installer Red Matrix, nous avons besoin de savoir comment contacter votre base de données."
 
-#: ../../mod/network.php:172
-msgid "Collection is empty"
-msgstr "Collection vide"
+#: ../../mod/setup.php:283
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Merci de contacter votre prestataire d'hébergement ou votre administration système si vous avez des doutes à propos de ces paramètres."
 
-#: ../../mod/network.php:180
-msgid "Collection: "
-msgstr "Collection&nbsp;:"
+#: ../../mod/setup.php:284
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "La base de données que vous allez spécifier doit exister. Si ce n'est pas déjà le cas, merci de la créer avant de continuer."
 
-#: ../../mod/network.php:193
-msgid "Connection: "
-msgstr "Relation&nbsp;:"
+#: ../../mod/setup.php:288
+msgid "Database Server Name"
+msgstr "Nom du serveur de BD"
 
-#: ../../mod/network.php:196
-msgid "Invalid connection."
-msgstr "Relation invalide."
+#: ../../mod/setup.php:288
+msgid "Default is localhost"
+msgstr "Par défaut, localhost"
 
-#: ../../mod/profiles.php:18 ../../mod/profiles.php:138
-#: ../../mod/profiles.php:168 ../../mod/profiles.php:463
-msgid "Profile not found."
-msgstr "Profil introuvable."
+#: ../../mod/setup.php:289
+msgid "Database Port"
+msgstr "Port du serveur"
 
-#: ../../mod/profiles.php:38
-msgid "Profile deleted."
-msgstr "Profil supprimé."
+#: ../../mod/setup.php:289
+msgid "Communication port number - use 0 for default"
+msgstr "Numéro TCP du port - utilisez 0 pour la valeur par défaut"
 
-#: ../../mod/profiles.php:56 ../../mod/profiles.php:92
-msgid "Profile-"
-msgstr "Profil-"
+#: ../../mod/setup.php:290
+msgid "Database Login Name"
+msgstr "Identifiant de connexion à la BD"
 
-#: ../../mod/profiles.php:77 ../../mod/profiles.php:120
-msgid "New profile created."
-msgstr "Nouveau profil créé."
+#: ../../mod/setup.php:291
+msgid "Database Login Password"
+msgstr "Mot de passe de connexion à la BD"
 
-#: ../../mod/profiles.php:98
-msgid "Profile unavailable to clone."
-msgstr "Profil impossible à cloner."
+#: ../../mod/setup.php:292
+msgid "Database Name"
+msgstr "Nom de la base de données"
 
-#: ../../mod/profiles.php:178
-msgid "Profile Name is required."
-msgstr "Le nom du profil est requis."
+#: ../../mod/setup.php:294 ../../mod/setup.php:336
+msgid "Site administrator email address"
+msgstr "Adresse de courriel de l'administrateur du site"
 
-#: ../../mod/profiles.php:294
-msgid "Marital Status"
-msgstr "Statut marital"
+#: ../../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 "Votre compte devra utiliser la même adresse de courriel pour pouvoir utiliser l'administration web."
 
-#: ../../mod/profiles.php:298
-msgid "Romantic Partner"
-msgstr "Partenaire"
+#: ../../mod/setup.php:295 ../../mod/setup.php:338
+msgid "Website URL"
+msgstr "URL du site"
 
-#: ../../mod/profiles.php:302
-msgid "Likes"
-msgstr "Aime"
+#: ../../mod/setup.php:295 ../../mod/setup.php:338
+msgid "Please use SSL (https) URL if available."
+msgstr "Merci d'utiliser SSL/TLS (https) autant que possible."
 
-#: ../../mod/profiles.php:306
-msgid "Dislikes"
-msgstr "Déteste"
+#: ../../mod/setup.php:298 ../../mod/setup.php:341
+msgid "Please select a default timezone for your website"
+msgstr "Merci de choisir une zone de temps (fuseau horaire) pour votre site"
 
-#: ../../mod/profiles.php:310
-msgid "Work/Employment"
-msgstr "Travail/Occupation"
+#: ../../mod/setup.php:325
+msgid "Site settings"
+msgstr "Réglages du site"
 
-#: ../../mod/profiles.php:313
-msgid "Religion"
-msgstr "Religion/Croyance"
+#: ../../mod/setup.php:384
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Impossible de trouver une version CLI de PHP dans le PATH du serveur web."
 
-#: ../../mod/profiles.php:317
-msgid "Political Views"
-msgstr "Opinions politiques"
+#: ../../mod/setup.php:385
+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 "En l'absence de version CLI de PHP sur votre serveur, vous ne pourrez pas utiliser la mise-à-jour en arrière-plan via cron."
 
-#: ../../mod/profiles.php:321
-msgid "Gender"
-msgstr "Sexe/Genre"
+#: ../../mod/setup.php:389
+msgid "PHP executable path"
+msgstr "Chemin vers l'éxecutable PHP"
 
-#: ../../mod/profiles.php:325
-msgid "Sexual Preference"
-msgstr "Préférence sexuelle"
+#: ../../mod/setup.php:389
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Entrez le chemin complet vers l'exécutable php. Vous pouvez continuer l'installation sans."
 
-#: ../../mod/profiles.php:329
-msgid "Homepage"
-msgstr "Site Internet"
+#: ../../mod/setup.php:394
+msgid "Command line PHP"
+msgstr "PHP en ligne de commande (CLI)"
 
-#: ../../mod/profiles.php:333
-msgid "Interests"
-msgstr "Centres d'intérêt"
+#: ../../mod/setup.php:403
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "La version CLI de PHP sur votre système n'a pas l'option \"register_argc_argv\" activée."
 
-#: ../../mod/profiles.php:337
-msgid "Address"
-msgstr "Adresse"
+#: ../../mod/setup.php:404
+msgid "This is required for message delivery to work."
+msgstr "Elle est nécessaire pour la livraison de messages."
 
-#: ../../mod/profiles.php:344 ../../mod/pubsites.php:31
-msgid "Location"
-msgstr "Localisation"
+#: ../../mod/setup.php:406
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../mod/profiles.php:427
-msgid "Profile updated."
-msgstr "Profil mis à jour."
+#: ../../mod/setup.php:427
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Erreur&nbsp;: la fonction \"openssl_pkey_new\" de ce système n'est pas capable de générer des clefs de chiffrement"
 
-#: ../../mod/profiles.php:482
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Cacher vos contacts/relations aux visiteurs de ce profil?"
+#: ../../mod/setup.php:428
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Si vous êtes sur un serveur Windows, merci de consulter \"http://www.php.net/manual/fr/openssl.installation.php\"."
 
-#: ../../mod/profiles.php:505
-msgid "Edit Profile Details"
-msgstr "Éditer les détails du profil"
+#: ../../mod/setup.php:430
+msgid "Generate encryption keys"
+msgstr "Générer les clefs de chiffrement"
 
-#: ../../mod/profiles.php:507
-msgid "View this profile"
-msgstr "Voir le profil"
+#: ../../mod/setup.php:437
+msgid "libCurl PHP module"
+msgstr "module PHP libCurl"
 
-#: ../../mod/profiles.php:508
-msgid "Change Profile Photo"
-msgstr "Changer la photo du profil"
+#: ../../mod/setup.php:438
+msgid "GD graphics PHP module"
+msgstr "module PHP GD graphics"
 
-#: ../../mod/profiles.php:509
-msgid "Create a new profile using these settings"
-msgstr "Créer un nouveau profil avec ces réglages"
+#: ../../mod/setup.php:439
+msgid "OpenSSL PHP module"
+msgstr "module PHP OpenSSL"
 
-#: ../../mod/profiles.php:510
-msgid "Clone this profile"
-msgstr "Cloner le profil"
+#: ../../mod/setup.php:440
+msgid "mysqli PHP module"
+msgstr "module PHP mysqli"
 
-#: ../../mod/profiles.php:511
-msgid "Delete this profile"
-msgstr "Supprimer le profil"
+#: ../../mod/setup.php:441
+msgid "mb_string PHP module"
+msgstr "module PHP mb_string"
 
-#: ../../mod/profiles.php:512
-msgid "Profile Name:"
-msgstr "Nom du profil&nbsp;:"
+#: ../../mod/setup.php:442
+msgid "mcrypt PHP module"
+msgstr "module PHP mcrypt"
 
-#: ../../mod/profiles.php:513
-msgid "Your Full Name:"
-msgstr "Votre nom complet&nbsp;:"
+#: ../../mod/setup.php:447 ../../mod/setup.php:449
+msgid "Apache mod_rewrite module"
+msgstr "module Apache mod_rewrite"
 
-#: ../../mod/profiles.php:514
-msgid "Title/Description:"
-msgstr "Titre/description&nbsp;:"
+#: ../../mod/setup.php:447
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Erreur&nbsp;: le module mod-rewrite du serveur web Apache est requis, mais pas installé."
 
-#: ../../mod/profiles.php:515
-msgid "Your Gender:"
-msgstr "Sexe/Genre&nbsp;:"
+#: ../../mod/setup.php:453 ../../mod/setup.php:456
+msgid "proc_open"
+msgstr "proc_open"
 
-#: ../../mod/profiles.php:516
-#, php-format
-msgid "Birthday (%s):"
-msgstr "Date de naissance (%s)&nbsp;:"
+#: ../../mod/setup.php:453
+msgid ""
+"Error: proc_open is required but is either not installed or has been "
+"disabled in php.ini"
+msgstr "Erreur&nbsp;: proc_open est requis, mais soit n'est pas installé, soit est désactivé dans le php.ini"
 
-#: ../../mod/profiles.php:517
-msgid "Street Address:"
-msgstr "Adresse postale&nbsp;:"
+#: ../../mod/setup.php:461
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Erreur&nbsp;: le module libCURL de PHP est requis, mais pas installé."
 
-#: ../../mod/profiles.php:518
-msgid "Locality/City:"
-msgstr "Ville/Localité&nbsp;:"
+#: ../../mod/setup.php:465
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Erreur&nbsp;: le module GD de PHP (avec support JPEG) est requis, mais pas installé."
 
-#: ../../mod/profiles.php:519
-msgid "Postal/Zip Code:"
-msgstr "Code postal&nbsp;:"
+#: ../../mod/setup.php:469
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Erreur&nbsp;: le module openssl de PHP est requis, mais pas installé."
 
-#: ../../mod/profiles.php:520
-msgid "Country:"
-msgstr "Pays&nbsp;:"
+#: ../../mod/setup.php:473
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Erreur&nbsp;: le module mysqli de PHP est requis, mais pas installé."
 
-#: ../../mod/profiles.php:521
-msgid "Region/State:"
-msgstr "Région/Province/État&nbsp;:"
+#: ../../mod/setup.php:477
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Erreur&nbsp;: le module mb_string de PHP est requis, mais pas installé."
 
-#: ../../mod/profiles.php:522
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span>Statut marital&nbsp;:"
+#: ../../mod/setup.php:481
+msgid "Error: mcrypt PHP module required but not installed."
+msgstr "Erreur&nbsp;: le module mcrypt de PHP est requis, mais pas installé."
 
-#: ../../mod/profiles.php:523
-msgid "Who: (if applicable)"
-msgstr "Avec&nbsp;: (si pertinent)"
+#: ../../mod/setup.php:497
+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'installeur web a besoin de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais en est incapable."
 
-#: ../../mod/profiles.php:524
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Exemples&nbsp;: cathy123, Cathy Williams, cathy@exemple.com"
+#: ../../mod/setup.php:498
+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 "C'est généralement lié à un problème de droits, à cause duquel le serveur web est interdit d'écriture dans le répertoire concerné - alors que votre propre utilisateur a le droit."
 
-#: ../../mod/profiles.php:525
-msgid "Since [date]:"
-msgstr "Depuis [date]&nbsp;:"
+#: ../../mod/setup.php:499
+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 "Au terme de cette procédure, nous vous transmettrons un texte à sauvegarder dans un fichier nommé .htconfig.php, à la racine de votre installation de Red."
 
-#: ../../mod/profiles.php:527
-msgid "Homepage URL:"
-msgstr "URL de mon site Internet&nbsp;:"
+#: ../../mod/setup.php:500
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"install/INSTALL.txt\" for instructions."
+msgstr "Autrement, vous pouvez contourner toute cette procédure et réaliser l'installation manuellement. Merci de consulter le fichier \"install/INSTALL.txt\" pour les instructions détaillées."
 
-#: ../../mod/profiles.php:530
-msgid "Religious Views:"
-msgstr "Opinions religieuses&nbsp;:"
+#: ../../mod/setup.php:503
+msgid ".htconfig.php is writable"
+msgstr "Le fichier .htconfig.php est accessible en écriture"
 
-#: ../../mod/profiles.php:531
-msgid "Keywords:"
-msgstr "Mots-clefs&nbsp;:"
+#: ../../mod/setup.php:513
+msgid ""
+"Red uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Red utilise le moteur de template Smarty3 pour mettre son contenu en forme. Smarty3 compile ses templates vers du PHP natif pour accélérer le rendu."
 
-#: ../../mod/profiles.php:534
-msgid "Example: fishing photography software"
-msgstr "Exemple&nbsp;: escrime photographie modélisme"
+#: ../../mod/setup.php:514
+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 "Pour stocker ces templates compilées, le serveur web nécessite de pouvoir écrire dans le répertoire <racine de red>view/tpl/smarty3/."
 
-#: ../../mod/profiles.php:535
-msgid "Used in directory listings"
-msgstr "Utilisé pour le référencement dans l'annuaire"
+#: ../../mod/setup.php:515 ../../mod/setup.php:533
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Merci de vous assurer que l'utilisateur sous lequel le serveur web tourne (le plus souvent, www-data) a bien l'autorisation d'écrire dans ce répertoire."
 
-#: ../../mod/profiles.php:536
-msgid "Tell us about yourself..."
-msgstr "Parlez nous de vous..."
+#: ../../mod/setup.php:516
+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 "Note&nbsp;: pour renforcer la sécurité, vous pouvez décider de ne donner l'accès en écrire qu'au répertoire view/tpl/smarty3 - et pas aux fichiers de templates (.tpl) qu'il contient."
 
-#: ../../mod/profiles.php:537
-msgid "Hobbies/Interests"
-msgstr "Loisirs/Centres d'intêret"
+#: ../../mod/setup.php:519
+msgid "view/tpl/smarty3 is writable"
+msgstr "view/tpl/smarty3 est accessible en écriture"
 
-#: ../../mod/profiles.php:538
-msgid "Contact information and Social Networks"
-msgstr "Coordonnées et réseaux sociaux"
+#: ../../mod/setup.php:532
+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 utilise le répertoire 'store' - situé à la racine de Red - pour sauvegarder les fichiers envoyés. Le serveur web aura donc besoin de pouvoir y écrire."
 
-#: ../../mod/profiles.php:539
-msgid "My other channels"
-msgstr "Mes autres canaux"
+#: ../../mod/setup.php:536
+msgid "store is writable"
+msgstr "'store' est accessible en écriture"
 
-#: ../../mod/profiles.php:540
-msgid "Musical interests"
-msgstr "Goûts musicaux"
+#: ../../mod/setup.php:551
+msgid "SSL certificate validation"
+msgstr "Validation du certificat SSL/TLS"
 
-#: ../../mod/profiles.php:541
-msgid "Books, literature"
-msgstr "Littérature"
+#: ../../mod/setup.php:551
+msgid ""
+"SSL certificate cannot be validated. Fix certificate or disable https access"
+" to this site."
+msgstr "Le certificat SSL/TLS n'a pas pu être validé. Merci de le corriger, ou de désactiver l'accès https à ce site."
 
-#: ../../mod/profiles.php:542
-msgid "Television"
-msgstr "Télévision"
+#: ../../mod/setup.php:558
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "La réécriture d'URL définie dans le .htaccess ne fonctionne pas. Merci de vérifier la configuration de votre serveur web."
 
-#: ../../mod/profiles.php:543
-msgid "Film/dance/culture/entertainment"
-msgstr "Cinéma/Danse/Culture/Divertissement"
+#: ../../mod/setup.php:560
+msgid "Url rewrite is working"
+msgstr "La réécriture d'URL fonctionne"
 
-#: ../../mod/profiles.php:544
-msgid "Love/romance"
-msgstr "Amour/Romance"
+#: ../../mod/setup.php:570
+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 "Le fichier de configuration de la base de données - \".htconfig.php\" - ne peut être écrit. Merci de copier le texte généré dans un fichier à ce nom, à la racine de votre serveur web."
 
-#: ../../mod/profiles.php:545
-msgid "Work/employment"
-msgstr "Travail/Occupation"
+#: ../../mod/setup.php:594
+msgid "Errors encountered creating database tables."
+msgstr "Erreurs rencontrées pendant la création de tables de BD."
 
-#: ../../mod/profiles.php:546
-msgid "School/education"
-msgstr "Études"
+#: ../../mod/setup.php:607
+msgid "<h1>What next</h1>"
+msgstr "<h1>Et maintenant</h1>"
 
-#: ../../mod/profiles.php:551
+#: ../../mod/setup.php:608
 msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "Ceci est votre profil <strong>public</strong>.<br />Il <strong>pourrait</strong> être visible par tout utilisateur - fut-il anonyme - d'Internet."
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "IMPORTANT&nbsp;: Vous devez créer [manuellement] une tâche planifiée pour les mises-à-jour."
 
-#: ../../mod/profiles.php:600
-msgid "Edit/Manage Profiles"
-msgstr "Éditer/gérer les profils"
+#: ../../mod/siteinfo.php:57
+#, php-format
+msgid "Version %s"
+msgstr "Version %s"
 
-#: ../../mod/profiles.php:601
-msgid "Add profile things"
-msgstr "Ajouter des choses de profil"
+#: ../../mod/siteinfo.php:76
+msgid "Installed plugins/addons/apps:"
+msgstr "Extensions/applications installées&nbsp;:"
 
-#: ../../mod/profiles.php:602
-msgid "Include desirable objects in your profile"
-msgstr "Incluez des objets souhaitables dans votre profil"
+#: ../../mod/siteinfo.php:89
+msgid "No installed plugins/addons/apps"
+msgstr "Aucune extension/application installée"
 
-#: ../../mod/follow.php:25
-msgid "Channel added."
-msgstr "Canal ajouté."
+#: ../../mod/siteinfo.php:93
+msgid "Project Donations"
+msgstr "Donations au projet"
 
-#: ../../mod/post.php:226
+#: ../../mod/siteinfo.php:94
 msgid ""
-"Remote authentication blocked. You are logged into this site locally. Please"
-" logout and retry."
-msgstr "Authentification distante bloquée. Vous êtes connecté sur ce site localement. Merci de vous en déconnecter et de recommencer."
+"<p>The Red Matrix is provided for you by volunteers working in their spare "
+"time. Your support will help us to build a better web. Select the following "
+"option for a one-time donation of your choosing</p>"
+msgstr "<p>The Red Matrix vous est mis à disposition par des volontaires, qui travaillent dessus sur leur temps libre. Votre soutien nous aidera à construire un meilleur web. Merci de choisir l'option suivante pour une donation ponctuelle de votre choix.</p>"
 
-#: ../../mod/post.php:256
-#, php-format
-msgid "Welcome %s. Remote authentication successful."
-msgstr "Bienvenue %s. L'authentification distante a fonctionné."
+#: ../../mod/siteinfo.php:95
+msgid "<p>or</p>"
+msgstr "<p>ou bien</p>"
 
-#: ../../mod/dirsearch.php:21
-msgid "This site is not a directory server"
-msgstr "Ce site n'est pas un serveur d'annuaire"
+#: ../../mod/siteinfo.php:96
+msgid "Recurring Donation Options"
+msgstr "Options de donation récurente"
 
-#: ../../mod/sources.php:32
-msgid "Failed to create source. No channel selected."
-msgstr "Impossible de créer la source. Aucun canal selectionné."
+#: ../../mod/siteinfo.php:115
+msgid "Red"
+msgstr "Red"
+
+#: ../../mod/siteinfo.php:116
+msgid ""
+"This is a hub of the Red Matrix - a global cooperative network of "
+"decentralised privacy enhanced websites."
+msgstr "Ceci est une instance - un hub - de la Matrice Red - un réseau global et coopératif de sites web qui respectent la vie privée de manière décentralisée/acentrée."
 
-#: ../../mod/sources.php:45
-msgid "Source created."
-msgstr "Source créée."
+#: ../../mod/siteinfo.php:119
+msgid "Running at web location"
+msgstr "En train de tourner chez"
 
-#: ../../mod/sources.php:57
-msgid "Source updated."
-msgstr "Source mise à jour."
+#: ../../mod/siteinfo.php:120
+msgid ""
+"Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more "
+"about the Red Matrix."
+msgstr "Merci de visiter <a href=\"http://getzot.com\">GetZot.com</a> pour en apprendre davantage sur la Matrice Red."
 
-#: ../../mod/sources.php:82
-msgid "*"
-msgstr ""
+#: ../../mod/siteinfo.php:121
+msgid "Bug reports and issues: please visit"
+msgstr "Pour remonter bogues et problèmes, merci de visiter"
 
-#: ../../mod/sources.php:89
-msgid "Manage remote sources of content for your channel."
-msgstr "Gérer les sources distantes du contenu de votre canal."
+#: ../../mod/siteinfo.php:124
+msgid ""
+"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot "
+"com"
+msgstr "Suggestions, demandes, etc. - merci de vous adresser à \"redmatrix\" à librelist - point com"
 
-#: ../../mod/sources.php:90 ../../mod/sources.php:100
-msgid "New Source"
-msgstr "Nouvelle source"
+#: ../../mod/siteinfo.php:126
+msgid "Site Administrators"
+msgstr "Administrateurs du site"
 
-#: ../../mod/sources.php:101 ../../mod/sources.php:133
+#: ../../mod/new_channel.php:107
+msgid "Add a Channel"
+msgstr "Ajouter un canal"
+
+#: ../../mod/new_channel.php:108
 msgid ""
-"Import all or selected content from the following channel into this channel "
-"and distribute it according to your channel settings."
-msgstr "Importer tout ou partie du contenu du canal suivant dans le canal en cours, et le distribuer en concordance avec les réglages de votre canal."
+"A channel is your own collection of related web pages. A channel can be used"
+" to hold social network profiles, blogs, conversation groups and forums, "
+"celebrity pages, and much more. You may create as many channels as your "
+"service provider allows."
+msgstr "Un canal est une collection de pages web reliées entre elles, sous votre contrôle. Il peut contenir des profils de réseau social, des blogs, des groupes de conversation, des forums, des pages de célébrités, et bien plus encore. Vous pouvez créer autant de canaux que votre fournisseur vous y autorise."
 
-#: ../../mod/sources.php:102 ../../mod/sources.php:134
-msgid "Only import content with these words (one per line)"
-msgstr "N'importer le contenu que s'ils contient ces mots (un par ligne)"
+#: ../../mod/new_channel.php:111
+msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "
+msgstr "Exemples&nbsp;: \"Bob Jameson\", \"Lisa et ses chevaux sauvages\", \"Football\", \"Groupe des amateurs de tir à l'arc\""
 
-#: ../../mod/sources.php:102 ../../mod/sources.php:134
-msgid "Leave blank to import all public content"
-msgstr "Laissez en blanc pour importer tout le contenu public"
+#: ../../mod/new_channel.php:112
+msgid "Choose a short nickname"
+msgstr "Choisissez un nom court"
 
-#: ../../mod/sources.php:103 ../../mod/sources.php:137
-#: ../../mod/new_channel.php:110
-msgid "Channel Name"
-msgstr "Nom du canal"
+#: ../../mod/new_channel.php:113
+msgid ""
+"Your nickname will be used to create an easily remembered channel address "
+"(like an email address) which you can share with others."
+msgstr "Ce nom court sera utilisé pour créer une adresse de canal, facile à retenir - un peu comme une adresse de courriel - que vous pourrez partager avec d'autres."
 
-#: ../../mod/sources.php:123 ../../mod/sources.php:150
-msgid "Source not found."
-msgstr "Source introuvable."
+#: ../../mod/new_channel.php:114
+msgid "Or <a href=\"import\">import an existing channel</a> from another location"
+msgstr "Ou <a href=\"import\">importez un canal existant</a> à un autre endroit"
 
-#: ../../mod/sources.php:130
-msgid "Edit Source"
-msgstr "Éditer source"
+#: ../../mod/lostpass.php:15
+msgid "No valid account found."
+msgstr "Aucun compte valide trouvé."
 
-#: ../../mod/sources.php:131
-msgid "Delete Source"
-msgstr "Supprimer source"
+#: ../../mod/lostpass.php:29
+msgid "Password reset request issued. Check your email."
+msgstr "Réinitialisation du mot de passe demandée. Vérifiez vos courriels."
 
-#: ../../mod/sources.php:158
-msgid "Source removed"
-msgstr "Source supprimée"
+#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102
+#, php-format
+msgid "Site Member (%s)"
+msgstr "Membre du site (%s)"
 
-#: ../../mod/sources.php:160
-msgid "Unable to remove source."
-msgstr "Impossible de supprimer la source."
+#: ../../mod/lostpass.php:40
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Demande de réinitialisation de mot de passe sur %s"
 
-#: ../../mod/lockview.php:34
-msgid "Remote privacy information not available."
-msgstr "Les informations de vie privée à distance ne sont pas disponibles."
+#: ../../mod/lostpass.php:63
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "La demande n'a pas pu être vérifiée. (Peut-être l'avez vous déjà utilisée.) La réinitialisation a échoué."
 
-#: ../../mod/lockview.php:43
-msgid "Visible to:"
-msgstr "Visible par&nbsp;:"
+#: ../../mod/lostpass.php:85 ../../boot.php:1434
+msgid "Password Reset"
+msgstr "Réinitialiser le mot de passe"
 
-#: ../../mod/magic.php:70
-msgid "Hub not found."
-msgstr "Instance introuvable."
+#: ../../mod/lostpass.php:86
+msgid "Your password has been reset as requested."
+msgstr "Votre mot de passe a bien été réinitialisé."
 
-#: ../../mod/setup.php:161
-msgid "Red Matrix Server - Setup"
-msgstr "Serveur Red Matrix - Configuration"
+#: ../../mod/lostpass.php:87
+msgid "Your new password is"
+msgstr "Votre nouveau mot de passe est"
 
-#: ../../mod/setup.php:167
-msgid "Could not connect to database."
-msgstr "Impossible de se connecter à la base de données."
+#: ../../mod/lostpass.php:88
+msgid "Save or copy your new password - and then"
+msgstr "Sauvez-le ou copiez-le, puis"
 
-#: ../../mod/setup.php:171
+#: ../../mod/lostpass.php:89
+msgid "click here to login"
+msgstr "cliquez ici pour vous connecter"
+
+#: ../../mod/lostpass.php:90
 msgid ""
-"Could not connect to specified site URL. Possible SSL certificate or DNS "
-"issue."
-msgstr "Impossible de se connecter au site par l'URL indiquée. Problème potentiel de certificat SSL/TLS ou de DNS."
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Votre mot de passe peut être changé depuis la page des <em>Réglages</em> une fois connecté."
 
-#: ../../mod/setup.php:176
-msgid "Could not create table."
-msgstr "Impossible de créer la table."
+#: ../../mod/lostpass.php:107
+#, php-format
+msgid "Your password has changed at %s"
+msgstr "Votre mot de passe de %s a été changé"
 
-#: ../../mod/setup.php:182
-msgid "Your site database has been installed."
-msgstr "La base de données de votre site a été installée."
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
+msgstr "Mot de passe oublié?"
 
-#: ../../mod/setup.php:187
+#: ../../mod/lostpass.php:123
 msgid ""
-"You may need to import the file \"install/database.sql\" manually using "
-"phpmyadmin or mysql."
-msgstr "Vous pourriez avoir besoin d'importer le fichier \"install/database.sql\" manuellement via phpmyadmin ou mysql."
-
-#: ../../mod/setup.php:188 ../../mod/setup.php:257 ../../mod/setup.php:609
-msgid "Please see the file \"install/INSTALL.txt\"."
-msgstr "Merci de consulter le fichier \"install/INSTALL.txt\"."
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Saisissez votre adresse de courriel, et validez, pour réinitialiser votre mot de passe. Vérifiez ensuite votre boîte à lettres pour la suite des instructions."
 
-#: ../../mod/setup.php:254
-msgid "System check"
-msgstr "Vérification du système"
+#: ../../mod/lostpass.php:124
+msgid "Email Address"
+msgstr "Adresse de courriel"
 
-#: ../../mod/setup.php:259
-msgid "Check again"
-msgstr "Re-vérifier"
+#: ../../mod/lostpass.php:125
+msgid "Reset"
+msgstr "Réinitialiser"
 
-#: ../../mod/setup.php:281
-msgid "Database connection"
-msgstr "Connexion à la base de données"
+#: ../../mod/settings.php:71
+msgid "Name is required"
+msgstr "Le nom est requis"
 
-#: ../../mod/setup.php:282
-msgid ""
-"In order to install Red Matrix we need to know how to connect to your "
-"database."
-msgstr "Pour installer Red Matrix, nous avons besoin de savoir comment contacter votre base de données."
+#: ../../mod/settings.php:75
+msgid "Key and Secret are required"
+msgstr "Clef et secret sont requis"
 
-#: ../../mod/setup.php:283
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Merci de contacter votre prestataire d'hébergement ou votre administration système si vous avez des doutes à propos de ces paramètres."
+#: ../../mod/settings.php:79 ../../mod/settings.php:542
+msgid "Update"
+msgstr "Mise-à-jour"
 
-#: ../../mod/setup.php:284
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "La base de données que vous allez spécifier doit exister. Si ce n'est pas déjà le cas, merci de la créer avant de continuer."
+#: ../../mod/settings.php:195
+msgid "Passwords do not match. Password unchanged."
+msgstr "Les deux saisies du mot de passe ne correspondent pas. Il n'a donc pas été changé."
 
-#: ../../mod/setup.php:288
-msgid "Database Server Name"
-msgstr "Nom du serveur de BD"
+#: ../../mod/settings.php:199
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Le mot de passe ne peut pas être vide. Il n'a donc pas été changé."
 
-#: ../../mod/setup.php:288
-msgid "Default is localhost"
-msgstr "Par défaut, localhost"
+#: ../../mod/settings.php:212
+msgid "Password changed."
+msgstr "Le mot de passe a été changé."
 
-#: ../../mod/setup.php:289
-msgid "Database Port"
-msgstr "Port du serveur"
+#: ../../mod/settings.php:214
+msgid "Password update failed. Please try again."
+msgstr "La mise-à-jour du mot de passe a échoué. Merci de recommencer."
 
-#: ../../mod/setup.php:289
-msgid "Communication port number - use 0 for default"
-msgstr "Numéro TCP du port - utilisez 0 pour la valeur par défaut"
+#: ../../mod/settings.php:228
+msgid "Not valid email."
+msgstr "Adresse de courriel non-valide."
 
-#: ../../mod/setup.php:290
-msgid "Database Login Name"
-msgstr "Identifiant de connexion à la BD"
+#: ../../mod/settings.php:231
+msgid "Protected email address. Cannot change to that email."
+msgstr "Adresse de courriel protégée. Impossible de l'utiliser."
 
-#: ../../mod/setup.php:291
-msgid "Database Login Password"
-msgstr "Mot de passe de connexion à la BD"
+#: ../../mod/settings.php:240
+msgid "System failure storing new email. Please try again."
+msgstr "Défaillance système lors du stockage de la nouvelle adresse de courriel. Merci de ré-essayer."
 
-#: ../../mod/setup.php:292
-msgid "Database Name"
-msgstr "Nom de la base de données"
+#: ../../mod/settings.php:444
+msgid "Settings updated."
+msgstr "Réglages sauvegardés."
 
-#: ../../mod/setup.php:294 ../../mod/setup.php:336
-msgid "Site administrator email address"
-msgstr "Adresse de courriel de l'administrateur du site"
+#: ../../mod/settings.php:515 ../../mod/settings.php:541
+#: ../../mod/settings.php:577
+msgid "Add application"
+msgstr "Ajouter une application"
 
-#: ../../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 "Votre compte devra utiliser la même adresse de courriel pour pouvoir utiliser l'administration web."
+#: ../../mod/settings.php:518 ../../mod/settings.php:544
+msgid "Name"
+msgstr "Nom"
 
-#: ../../mod/setup.php:295 ../../mod/setup.php:338
-msgid "Website URL"
-msgstr "URL du site"
+#: ../../mod/settings.php:518
+msgid "Name of application"
+msgstr "Nom de l'application"
 
-#: ../../mod/setup.php:295 ../../mod/setup.php:338
-msgid "Please use SSL (https) URL if available."
-msgstr "Merci d'utiliser SSL/TLS (https) autant que possible."
+#: ../../mod/settings.php:519 ../../mod/settings.php:545
+msgid "Consumer Key"
+msgstr "Clef de consommateur"
 
-#: ../../mod/setup.php:298 ../../mod/setup.php:341
-msgid "Please select a default timezone for your website"
-msgstr "Merci de choisir une zone de temps (fuseau horaire) pour votre site"
+#: ../../mod/settings.php:519 ../../mod/settings.php:520
+msgid "Automatically generated - change if desired. Max length 20"
+msgstr "Généré automatiquement - à changer si besoin. Longueur maximale 20 caractères."
 
-#: ../../mod/setup.php:325
-msgid "Site settings"
-msgstr "Réglages du site"
+#: ../../mod/settings.php:520 ../../mod/settings.php:546
+msgid "Consumer Secret"
+msgstr "Secret de consommateur"
 
-#: ../../mod/setup.php:384
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Impossible de trouver une version CLI de PHP dans le PATH du serveur web."
+#: ../../mod/settings.php:521 ../../mod/settings.php:547
+msgid "Redirect"
+msgstr "Redirection"
 
-#: ../../mod/setup.php:385
+#: ../../mod/settings.php:521
 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 "En l'absence de version CLI de PHP sur votre serveur, vous ne pourrez pas utiliser la mise-à-jour en arrière-plan via cron."
+"Redirect URI - leave blank unless your application specifically requires "
+"this"
+msgstr "URI de redirection - laissez blanc, sauf si l'application a demandé autrement"
 
-#: ../../mod/setup.php:389
-msgid "PHP executable path"
-msgstr "Chemin vers l'éxecutable PHP"
+#: ../../mod/settings.php:522 ../../mod/settings.php:548
+msgid "Icon url"
+msgstr "URL de l'icône"
 
-#: ../../mod/setup.php:389
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Entrez le chemin complet vers l'exécutable php. Vous pouvez continuer l'installation sans."
+#: ../../mod/settings.php:522
+msgid "Optional"
+msgstr "Facultatif"
 
-#: ../../mod/setup.php:394
-msgid "Command line PHP"
-msgstr "PHP en ligne de commande (CLI)"
+#: ../../mod/settings.php:533
+msgid "You can't edit this application."
+msgstr "Vous ne pouvez pas éditer cette application."
 
-#: ../../mod/setup.php:403
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "La version CLI de PHP sur votre système n'a pas l'option \"register_argc_argv\" activée."
+#: ../../mod/settings.php:576
+msgid "Connected Apps"
+msgstr "Applications connectées"
 
-#: ../../mod/setup.php:404
-msgid "This is required for message delivery to work."
-msgstr "Elle est nécessaire pour la livraison de messages."
+#: ../../mod/settings.php:580
+msgid "Client key starts with"
+msgstr "La clef cliente commence par"
 
-#: ../../mod/setup.php:406
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../mod/settings.php:581
+msgid "No name"
+msgstr "Sans nom"
 
-#: ../../mod/setup.php:427
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Erreur&nbsp;: la fonction \"openssl_pkey_new\" de ce système n'est pas capable de générer des clefs de chiffrement"
+#: ../../mod/settings.php:582
+msgid "Remove authorization"
+msgstr "Révoquer l'autorisation"
 
-#: ../../mod/setup.php:428
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Si vous êtes sur un serveur Windows, merci de consulter \"http://www.php.net/manual/fr/openssl.installation.php\"."
+#: ../../mod/settings.php:593
+msgid "No feature settings configured"
+msgstr "Pas de fonctionnalité à configurer"
 
-#: ../../mod/setup.php:430
-msgid "Generate encryption keys"
-msgstr "Générer les clefs de chiffrement"
+#: ../../mod/settings.php:601
+msgid "Feature Settings"
+msgstr "Fonctionnalités"
 
-#: ../../mod/setup.php:437
-msgid "libCurl PHP module"
-msgstr "module PHP libCurl"
+#: ../../mod/settings.php:624
+msgid "Account Settings"
+msgstr "Compte"
 
-#: ../../mod/setup.php:438
-msgid "GD graphics PHP module"
-msgstr "module PHP GD graphics"
+#: ../../mod/settings.php:625
+msgid "Password Settings"
+msgstr "Mot de passe"
 
-#: ../../mod/setup.php:439
-msgid "OpenSSL PHP module"
-msgstr "module PHP OpenSSL"
+#: ../../mod/settings.php:626
+msgid "New Password:"
+msgstr "Nouveau mot de passe&nbsp;:"
 
-#: ../../mod/setup.php:440
-msgid "mysqli PHP module"
-msgstr "module PHP mysqli"
+#: ../../mod/settings.php:627
+msgid "Confirm:"
+msgstr "Confirmation&nbsp;:"
 
-#: ../../mod/setup.php:441
-msgid "mb_string PHP module"
-msgstr "module PHP mb_string"
+#: ../../mod/settings.php:627
+msgid "Leave password fields blank unless changing"
+msgstr "Laissez les mots de passe vides si vous ne voulez pas les modifier"
 
-#: ../../mod/setup.php:442
-msgid "mcrypt PHP module"
-msgstr "module PHP mcrypt"
+#: ../../mod/settings.php:629 ../../mod/settings.php:925
+msgid "Email Address:"
+msgstr "Adresse de courriel&nbsp;:"
 
-#: ../../mod/setup.php:447 ../../mod/setup.php:449
-msgid "Apache mod_rewrite module"
-msgstr "module Apache mod_rewrite"
+#: ../../mod/settings.php:630
+msgid "Remove Account"
+msgstr "Supprimer le compte"
 
-#: ../../mod/setup.php:447
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Erreur&nbsp;: le module mod-rewrite du serveur web Apache est requis, mais pas installé."
+#: ../../mod/settings.php:631
+msgid "Warning: This action is permanent and cannot be reversed."
+msgstr "Attention&nbsp;: cette action est permanente et irréversible."
 
-#: ../../mod/setup.php:453 ../../mod/setup.php:456
-msgid "proc_open"
-msgstr "proc_open"
+#: ../../mod/settings.php:647
+msgid "Off"
+msgstr "Inactif"
 
-#: ../../mod/setup.php:453
-msgid ""
-"Error: proc_open is required but is either not installed or has been "
-"disabled in php.ini"
-msgstr "Erreur&nbsp;: proc_open est requis, mais soit n'est pas installé, soit est désactivé dans le php.ini"
+#: ../../mod/settings.php:647
+msgid "On"
+msgstr "Actif"
 
-#: ../../mod/setup.php:461
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Erreur&nbsp;: le module libCURL de PHP est requis, mais pas installé."
+#: ../../mod/settings.php:654
+msgid "Additional Features"
+msgstr "Fonctionnalités additionnelles"
 
-#: ../../mod/setup.php:465
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Erreur&nbsp;: le module GD de PHP (avec support JPEG) est requis, mais pas installé."
+#: ../../mod/settings.php:679
+msgid "Connector Settings"
+msgstr "Connecteurs"
 
-#: ../../mod/setup.php:469
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Erreur&nbsp;: le module openssl de PHP est requis, mais pas installé."
+#: ../../mod/settings.php:750
+msgid "Display Settings"
+msgstr "Affichage"
 
-#: ../../mod/setup.php:473
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Erreur&nbsp;: le module mysqli de PHP est requis, mais pas installé."
+#: ../../mod/settings.php:756
+msgid "Display Theme:"
+msgstr "Thème&nbsp;:"
 
-#: ../../mod/setup.php:477
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Erreur&nbsp;: le module mb_string de PHP est requis, mais pas installé."
+#: ../../mod/settings.php:757
+msgid "Mobile Theme:"
+msgstr "Thème mobile&nbsp;:"
 
-#: ../../mod/setup.php:481
-msgid "Error: mcrypt PHP module required but not installed."
-msgstr "Erreur&nbsp;: le module mcrypt de PHP est requis, mais pas installé."
+#: ../../mod/settings.php:758
+msgid "Update browser every xx seconds"
+msgstr "Rafraîchir le navigateur toutes les xx secondes"
 
-#: ../../mod/setup.php:497
-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'installeur web a besoin de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais en est incapable."
+#: ../../mod/settings.php:758
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Minimum 10 secondes, pas de maximum"
 
-#: ../../mod/setup.php:498
-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 "C'est généralement lié à un problème de droits, à cause duquel le serveur web est interdit d'écriture dans le répertoire concerné - alors que votre propre utilisateur a le droit."
+#: ../../mod/settings.php:759
+msgid "Maximum number of conversations to load at any time:"
+msgstr "Nombre maximal de conversations pouvant être chargées en même temps&nbsp;:"
 
-#: ../../mod/setup.php:499
-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 "Au terme de cette procédure, nous vous transmettrons un texte à sauvegarder dans un fichier nommé .htconfig.php, à la racine de votre installation de Red."
+#: ../../mod/settings.php:759
+msgid "Maximum of 100 items"
+msgstr "100 éléments au maximum"
 
-#: ../../mod/setup.php:500
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"install/INSTALL.txt\" for instructions."
-msgstr "Autrement, vous pouvez contourner toute cette procédure et réaliser l'installation manuellement. Merci de consulter le fichier \"install/INSTALL.txt\" pour les instructions détaillées."
+#: ../../mod/settings.php:760
+msgid "Don't show emoticons"
+msgstr "Ne pas montrer les frimousses/émoticones"
 
-#: ../../mod/setup.php:503
-msgid ".htconfig.php is writable"
-msgstr "Le fichier .htconfig.php est accessible en écriture"
+#: ../../mod/settings.php:761
+msgid "Do not view remote profiles in frames"
+msgstr ""
 
-#: ../../mod/setup.php:513
-msgid ""
-"Red uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Red utilise le moteur de template Smarty3 pour mettre son contenu en forme. Smarty3 compile ses templates vers du PHP natif pour accélérer le rendu."
+#: ../../mod/settings.php:761
+msgid "By default open in a sub-window of your own site"
+msgstr "Par défaut, ouvrir dans une sous-fenêtre de votre propre site"
 
-#: ../../mod/setup.php:514
-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 "Pour stocker ces templates compilées, le serveur web nécessite de pouvoir écrire dans le répertoire <racine de red>view/tpl/smarty3/."
+#: ../../mod/settings.php:796
+msgid "Nobody except yourself"
+msgstr "Personne sauf vous"
 
-#: ../../mod/setup.php:515 ../../mod/setup.php:533
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Merci de vous assurer que l'utilisateur sous lequel le serveur web tourne (le plus souvent, www-data) a bien l'autorisation d'écrire dans ce répertoire."
+#: ../../mod/settings.php:797
+msgid "Only those you specifically allow"
+msgstr "Seulement ceux que vous autorisez spécifiquement"
 
-#: ../../mod/setup.php:516
-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 "Note&nbsp;: pour renforcer la sécurité, vous pouvez décider de ne donner l'accès en écrire qu'au répertoire view/tpl/smarty3 - et pas aux fichiers de templates (.tpl) qu'il contient."
+#: ../../mod/settings.php:798
+msgid "Anybody in your address book"
+msgstr "Tous vos contacts"
 
-#: ../../mod/setup.php:519
-msgid "view/tpl/smarty3 is writable"
-msgstr "view/tpl/smarty3 est accessible en écriture"
+#: ../../mod/settings.php:799
+msgid "Anybody on this website"
+msgstr "Tous les utilisateurs du site"
 
-#: ../../mod/setup.php:532
-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 utilise le répertoire 'store' - situé à la racine de Red - pour sauvegarder les fichiers envoyés. Le serveur web aura donc besoin de pouvoir y écrire."
+#: ../../mod/settings.php:800
+msgid "Anybody in this network"
+msgstr "Tous les utilisateurs du réseau"
+
+#: ../../mod/settings.php:801
+msgid "Anybody on the internet"
+msgstr "Tout les utilisateurs d'Internet"
+
+#: ../../mod/settings.php:878
+msgid "Publish your default profile in the network directory"
+msgstr "Publier votre profil par défaut dans l'annuaire du réseau"
+
+#: ../../mod/settings.php:883
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Nous autoriser à vous suggérer comme relation potentielle aux nouveaux arrivants?"
 
-#: ../../mod/setup.php:536
-msgid "store is writable"
-msgstr "'store' est accessible en écriture"
+#: ../../mod/settings.php:887 ../../mod/profile_photo.php:288
+msgid "or"
+msgstr "ou"
 
-#: ../../mod/setup.php:551
-msgid "SSL certificate validation"
-msgstr "Validation du certificat SSL/TLS"
+#: ../../mod/settings.php:892
+msgid "Your channel address is"
+msgstr "Votre canal a pour adresse"
 
-#: ../../mod/setup.php:551
-msgid ""
-"SSL certificate cannot be validated. Fix certificate or disable https access"
-" to this site."
-msgstr "Le certificat SSL/TLS n'a pas pu être validé. Merci de le corriger, ou de désactiver l'accès https à ce site."
+#: ../../mod/settings.php:914
+msgid "Channel Settings"
+msgstr "Canal"
 
-#: ../../mod/setup.php:558
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "La réécriture d'URL définie dans le .htaccess ne fonctionne pas. Merci de vérifier la configuration de votre serveur web."
+#: ../../mod/settings.php:923
+msgid "Basic Settings"
+msgstr "Basique"
 
-#: ../../mod/setup.php:560
-msgid "Url rewrite is working"
-msgstr "La réécriture d'URL fonctionne"
+#: ../../mod/settings.php:926
+msgid "Your Timezone:"
+msgstr "Zone de temps&nbsp;:"
 
-#: ../../mod/setup.php:570
-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 "Le fichier de configuration de la base de données - \".htconfig.php\" - ne peut être écrit. Merci de copier le texte généré dans un fichier à ce nom, à la racine de votre serveur web."
+#: ../../mod/settings.php:927
+msgid "Default Post Location:"
+msgstr "Localisation par défaut&nbsp;:"
 
-#: ../../mod/setup.php:594
-msgid "Errors encountered creating database tables."
-msgstr "Erreurs rencontrées pendant la création de tables de BD."
+#: ../../mod/settings.php:928
+msgid "Use Browser Location:"
+msgstr "Utiliser la localisation fournie par le navigateur&nbsp;:"
 
-#: ../../mod/setup.php:607
-msgid "<h1>What next</h1>"
-msgstr "<h1>Et maintenant</h1>"
+#: ../../mod/settings.php:930
+msgid "Adult Content"
+msgstr "Contenu \"adulte\""
 
-#: ../../mod/setup.php:608
+#: ../../mod/settings.php:930
 msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "IMPORTANT&nbsp;: Vous devez créer [manuellement] une tâche planifiée pour les mises-à-jour."
+"This channel frequently or regularly publishes adult content. (Please tag "
+"any adult material and/or nudity with #NSFW)"
+msgstr "Ce canal publie plus ou moins fréquemment du contenu pour adultes. (Merci d'indiquer tout contenu pour adulte ou potentiellement choquant avec le tag <em>#NSFW</em> - Not Safe For Work)"
 
-#: ../../mod/siteinfo.php:57
-#, php-format
-msgid "Version %s"
-msgstr "Version %s"
+#: ../../mod/settings.php:932
+msgid "Security and Privacy Settings"
+msgstr "Sécurité et vie privée"
 
-#: ../../mod/siteinfo.php:76
-msgid "Installed plugins/addons/apps:"
-msgstr "Extensions/applications installées&nbsp;:"
+#: ../../mod/settings.php:934
+msgid "Hide my online presence"
+msgstr "Cacher ma présence en ligne"
 
-#: ../../mod/siteinfo.php:89
-msgid "No installed plugins/addons/apps"
-msgstr "Aucune extension/application installée"
+#: ../../mod/settings.php:934
+msgid "Prevents displaying in your profile that you are online"
+msgstr "Cacher votre statut (en ligne/hors ligne) sur votre profil"
 
-#: ../../mod/siteinfo.php:109
-msgid "Red"
-msgstr "Red"
+#: ../../mod/settings.php:936
+msgid "Simple Privacy Settings:"
+msgstr "Réglages simples&nbsp;:"
 
-#: ../../mod/siteinfo.php:110
+#: ../../mod/settings.php:937
 msgid ""
-"This is a hub of the Red Matrix - a global cooperative network of "
-"decentralised privacy enhanced websites."
-msgstr "Ceci est une instance - un hub - de la Matrice Red - un réseau global et coopératif de sites web qui respectent la vie privée de manière décentralisée/acentrée."
-
-#: ../../mod/siteinfo.php:113
-msgid "Running at web location"
-msgstr "En train de tourner chez"
+"Very Public - <em>extremely permissive (should be used with caution)</em>"
+msgstr "Très public - <em>extrèmement permissif (à n'utiliser qu'en connaissance de cause)</em>"
 
-#: ../../mod/siteinfo.php:114
+#: ../../mod/settings.php:938
 msgid ""
-"Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more "
-"about the Red Matrix."
-msgstr "Merci de visiter <a href=\"http://getzot.com\">GetZot.com</a> pour en apprendre davantage sur la Matrice Red."
+"Typical - <em>default public, privacy when desired (similar to social "
+"network permissions but with improved privacy)</em>"
+msgstr "Classique - <em>public par défaut, privé en cas de besoin (comparable dans le principe aux réseaux sociaux centralisés, avec un mode privé plus efficace)</em>"
 
-#: ../../mod/siteinfo.php:115
-msgid "Bug reports and issues: please visit"
-msgstr "Pour remonter bogues et problèmes, merci de visiter"
+#: ../../mod/settings.php:939
+msgid "Private - <em>default private, never open or public</em>"
+msgstr "Privé - <em>privé par défaut, jamais ouvert ni public</em>"
 
-#: ../../mod/siteinfo.php:118
-msgid ""
-"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot "
-"com"
-msgstr "Suggestions, demandes, etc. - merci de vous adresser à \"redmatrix\" à librelist - point com"
+#: ../../mod/settings.php:940
+msgid "Blocked - <em>default blocked to/from everybody</em>"
+msgstr "Bloqué - <em>par défaut, bloqué de/vers tout le monde</em>"
 
-#: ../../mod/siteinfo.php:120
-msgid "Site Administrators"
-msgstr "Administrateurs du site"
+#: ../../mod/settings.php:943
+msgid "Advanced Privacy Settings"
+msgstr "Réglages avancés"
 
-#: ../../mod/new_channel.php:107
-msgid "Add a Channel"
-msgstr "Ajouter un canal"
+#: ../../mod/settings.php:945
+msgid "Maximum Friend Requests/Day:"
+msgstr "Nombre maximum de mises en relation par jour&nbsp;:"
 
-#: ../../mod/new_channel.php:108
-msgid ""
-"A channel is your own collection of related web pages. A channel can be used"
-" to hold social network profiles, blogs, conversation groups and forums, "
-"celebrity pages, and much more. You may create as many channels as your "
-"service provider allows."
-msgstr "Un canal est une collection de pages web reliées entre elles, sous votre contrôle. Il peut contenir des profils de réseau social, des blogs, des groupes de conversation, des forums, des pages de célébrités, et bien plus encore. Vous pouvez créer autant de canaux que votre fournisseur vous y autorise."
+#: ../../mod/settings.php:945
+msgid "May reduce spam activity"
+msgstr "Contribue à réduire l'impact du spam"
 
-#: ../../mod/new_channel.php:111
-msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "
-msgstr "Exemples&nbsp;: \"Bob Jameson\", \"Lisa et ses chevaux sauvages\", \"Football\", \"Groupe des amateurs de tir à l'arc\""
+#: ../../mod/settings.php:946
+msgid "Default Post Permissions"
+msgstr "Permissions par défaut des publications"
 
-#: ../../mod/new_channel.php:112
-msgid "Choose a short nickname"
-msgstr "Choisissez un nom court"
+#: ../../mod/settings.php:958
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Nombre maximum de messages privés émanant d'inconnus, par jour&nbsp;:"
 
-#: ../../mod/new_channel.php:113
-msgid ""
-"Your nickname will be used to create an easily remembered channel address "
-"(like an email address) which you can share with others."
-msgstr "Ce nom court sera utilisé pour créer une adresse de canal, facile à retenir - un peu comme une adresse de courriel - que vous pourrez partager avec d'autres."
+#: ../../mod/settings.php:958
+msgid "Useful to reduce spamming"
+msgstr "Utile pour réduire le spam"
 
-#: ../../mod/new_channel.php:114
-msgid "Or <a href=\"import\">import an existing channel</a> from another location"
-msgstr "Ou <a href=\"import\">importez un canal existant</a> à un autre endroit"
+#: ../../mod/settings.php:961
+msgid "Notification Settings"
+msgstr "Notifications"
 
-#: ../../mod/lostpass.php:15
-msgid "No valid account found."
-msgstr "Aucun compte valide trouvé."
+#: ../../mod/settings.php:962
+msgid "By default post a status message when:"
+msgstr "Par défaut, publier un statut quand:"
 
-#: ../../mod/lostpass.php:29
-msgid "Password reset request issued. Check your email."
-msgstr "Réinitialisation du mot de passe demandée. Vérifiez vos courriels."
+#: ../../mod/settings.php:963
+msgid "accepting a friend request"
+msgstr "acceptez une mise en relation"
 
-#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102
-#, php-format
-msgid "Site Member (%s)"
-msgstr "Membre du site (%s)"
+#: ../../mod/settings.php:964
+msgid "joining a forum/community"
+msgstr "joignez un forum ou à une communauté"
 
-#: ../../mod/lostpass.php:40
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Demande de réinitialisation de mot de passe sur %s"
+#: ../../mod/settings.php:965
+msgid "making an <em>interesting</em> profile change"
+msgstr "faites une modification <em>intéressante</em> de votre profil"
 
-#: ../../mod/lostpass.php:63
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "La demande n'a pas pu être vérifiée. (Peut-être l'avez vous déjà utilisée.) La réinitialisation a échoué."
+#: ../../mod/settings.php:966
+msgid "Send a notification email when:"
+msgstr "Envoyer un courriel de notification quand&nbsp;:"
 
-#: ../../mod/lostpass.php:85 ../../boot.php:1434
-msgid "Password Reset"
-msgstr "Réinitialiser le mot de passe"
+#: ../../mod/settings.php:967
+msgid "You receive an introduction"
+msgstr "Vous recevez une introduction"
 
-#: ../../mod/lostpass.php:86
-msgid "Your password has been reset as requested."
-msgstr "Votre mot de passe a bien été réinitialisé."
+#: ../../mod/settings.php:968
+msgid "Your introductions are confirmed"
+msgstr "Vos introductions sont acceptées/confirmées"
 
-#: ../../mod/lostpass.php:87
-msgid "Your new password is"
-msgstr "Votre nouveau mot de passe est"
+#: ../../mod/settings.php:969
+msgid "Someone writes on your profile wall"
+msgstr "Quelqu'un écrit sur votre mur"
 
-#: ../../mod/lostpass.php:88
-msgid "Save or copy your new password - and then"
-msgstr "Sauvez-le ou copiez-le, puis"
+#: ../../mod/settings.php:970
+msgid "Someone writes a followup comment"
+msgstr "Quelqu'un commente sur vos publications"
 
-#: ../../mod/lostpass.php:89
-msgid "click here to login"
-msgstr "cliquez ici pour vous connecter"
+#: ../../mod/settings.php:971
+msgid "You receive a private message"
+msgstr "Vous recevez un Message Privé"
 
-#: ../../mod/lostpass.php:90
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Votre mot de passe peut être changé depuis la page des <em>Réglages</em> une fois connecté."
+#: ../../mod/settings.php:972
+msgid "You receive a friend suggestion"
+msgstr "Vous recevez une suggestion d'amitié/relation"
 
-#: ../../mod/lostpass.php:107
-#, php-format
-msgid "Your password has changed at %s"
-msgstr "Votre mot de passe de %s a été changé"
+#: ../../mod/settings.php:973
+msgid "You are tagged in a post"
+msgstr "Vous êtes étiqueté dans une publication"
 
-#: ../../mod/lostpass.php:122
-msgid "Forgot your Password?"
-msgstr "Mot de passe oublié?"
+#: ../../mod/settings.php:974
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Vous êtes tapoté/pointé/etc. dans une publication"
 
-#: ../../mod/lostpass.php:123
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Saisissez votre adresse de courriel, et validez, pour réinitialiser votre mot de passe. Vérifiez ensuite votre boîte à lettres pour la suite des instructions."
+#: ../../mod/settings.php:977
+msgid "Advanced Account/Page Type Settings"
+msgstr "Type de page/Compte (avancé)"
 
-#: ../../mod/lostpass.php:124
-msgid "Email Address"
-msgstr "Adresse de courriel"
+#: ../../mod/settings.php:978
+msgid "Change the behaviour of this account for special situations"
+msgstr "Modifie le comportement de ce compte pour certains cas particuliers"
 
-#: ../../mod/lostpass.php:125
-msgid "Reset"
-msgstr "Réinitialiser"
+#: ../../mod/settings.php:981
+msgid ""
+"Please enable expert mode (in Settings > Additional features) to adjust!"
+msgstr "Merci d'activer le mode expert (dans Réglages > Fonctionnalités additionelles) pour affiner!"
 
 #: ../../mod/import.php:36
 msgid "Nothing to import."
@@ -6504,7 +6543,7 @@ msgstr "Ne montrer que les relations cachées"
 #: ../../mod/connections.php:331
 #, php-format
 msgid "%1$s [%2$s]"
-msgstr ""
+msgstr "%1$s [%2$s]"
 
 #: ../../mod/connections.php:332
 msgid "Edit contact"
@@ -6663,8 +6702,8 @@ msgstr "Fichier introuvable."
 msgid "Edit file permissions"
 msgstr "Éditer les permissions du fichier"
 
-#: ../../mod/filestorage.php:124 ../../mod/photos.php:603
-#: ../../mod/photos.php:946
+#: ../../mod/filestorage.php:124 ../../mod/photos.php:607
+#: ../../mod/photos.php:950
 msgid "Permissions"
 msgstr "Permissions"
 
@@ -6858,123 +6897,123 @@ msgstr "Impossible d'obtenir des informations sur le propriétaire de la page."
 msgid "Album not found."
 msgstr "Album introuvable."
 
-#: ../../mod/photos.php:119 ../../mod/photos.php:668
+#: ../../mod/photos.php:119 ../../mod/photos.php:672
 msgid "Delete Album"
 msgstr "Supprimer album"
 
-#: ../../mod/photos.php:159 ../../mod/photos.php:951
+#: ../../mod/photos.php:159 ../../mod/photos.php:955
 msgid "Delete Photo"
 msgstr "Supprimer photo"
 
-#: ../../mod/photos.php:452
+#: ../../mod/photos.php:453
 msgid "No photos selected"
 msgstr "Aucune photo selectionnée"
 
-#: ../../mod/photos.php:499
+#: ../../mod/photos.php:500
 msgid "Access to this item is restricted."
 msgstr "L'accès à l'élément est restreint."
 
-#: ../../mod/photos.php:573
+#: ../../mod/photos.php:577
 #, php-format
 msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
 msgstr "Vous avez utilisé %1$.2f mégaoctets sur les %2$.2f autorisés pour le stockage des photos."
 
-#: ../../mod/photos.php:576
+#: ../../mod/photos.php:580
 #, php-format
 msgid "You have used %1$.2f Mbytes of photo storage."
 msgstr "Vous avez utilisé %1$.2f mégaoctets pour le stockage des photos."
 
-#: ../../mod/photos.php:595
+#: ../../mod/photos.php:599
 msgid "Upload Photos"
 msgstr "Téléverser des photos"
 
-#: ../../mod/photos.php:599 ../../mod/photos.php:663
+#: ../../mod/photos.php:603 ../../mod/photos.php:667
 msgid "New album name: "
 msgstr "Créer un album&nbsp;:"
 
-#: ../../mod/photos.php:600
+#: ../../mod/photos.php:604
 msgid "or existing album name: "
 msgstr "ou choisir un album existant&nbsp;:"
 
-#: ../../mod/photos.php:601
+#: ../../mod/photos.php:605
 msgid "Do not show a status post for this upload"
 msgstr "Ne pas publier de statut pour cet envoi"
 
-#: ../../mod/photos.php:652 ../../mod/photos.php:674 ../../mod/photos.php:1123
-#: ../../mod/photos.php:1138
+#: ../../mod/photos.php:656 ../../mod/photos.php:678 ../../mod/photos.php:1127
+#: ../../mod/photos.php:1142
 msgid "Contact Photos"
 msgstr "Photos de contact"
 
-#: ../../mod/photos.php:678
+#: ../../mod/photos.php:682
 msgid "Edit Album"
 msgstr "Éditer l'album"
 
-#: ../../mod/photos.php:684
+#: ../../mod/photos.php:688
 msgid "Show Newest First"
 msgstr "Ordre anté-chronologique"
 
-#: ../../mod/photos.php:686
+#: ../../mod/photos.php:690
 msgid "Show Oldest First"
 msgstr "Ordre chronologique"
 
-#: ../../mod/photos.php:729 ../../mod/photos.php:1170
+#: ../../mod/photos.php:733 ../../mod/photos.php:1174
 msgid "View Photo"
 msgstr "Voir photo"
 
-#: ../../mod/photos.php:775
+#: ../../mod/photos.php:779
 msgid "Permission denied. Access to this item may be restricted."
 msgstr "Permission refusée. L'accès à cet élément peut avoir été restreint."
 
-#: ../../mod/photos.php:777
+#: ../../mod/photos.php:781
 msgid "Photo not available"
 msgstr "Photo indisponible"
 
-#: ../../mod/photos.php:837
+#: ../../mod/photos.php:841
 msgid "Use as profile photo"
 msgstr "Utiliser comme photo du profil"
 
-#: ../../mod/photos.php:861
+#: ../../mod/photos.php:865
 msgid "View Full Size"
 msgstr "Voir en taille réelle"
 
-#: ../../mod/photos.php:935
+#: ../../mod/photos.php:939
 msgid "Edit photo"
 msgstr "Éditer photo"
 
-#: ../../mod/photos.php:937
+#: ../../mod/photos.php:941
 msgid "Rotate CW (right)"
 msgstr "Rotation horaire (droite)"
 
-#: ../../mod/photos.php:938
+#: ../../mod/photos.php:942
 msgid "Rotate CCW (left)"
 msgstr "Rotation anti-horaire (gauche)"
 
-#: ../../mod/photos.php:940
+#: ../../mod/photos.php:944
 msgid "New album name"
 msgstr "Nouveau nom d'album&nbsp;:"
 
-#: ../../mod/photos.php:943
+#: ../../mod/photos.php:947
 msgid "Caption"
 msgstr "Titre/légende"
 
-#: ../../mod/photos.php:945
+#: ../../mod/photos.php:949
 msgid "Add a Tag"
 msgstr "Ajouter une étiquette"
 
-#: ../../mod/photos.php:948
+#: ../../mod/photos.php:952
 msgid ""
 "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 msgstr "Exemple&nbsp;: @bob, @Barbara_Jensen, @jim@exemple.com, #Ile_de_France, #marathon"
 
-#: ../../mod/photos.php:1101
+#: ../../mod/photos.php:1105
 msgid "In This Photo:"
 msgstr "Dans cette photo&nbsp;:"
 
-#: ../../mod/photos.php:1176
+#: ../../mod/photos.php:1180
 msgid "View Album"
 msgstr "Voir album"
 
-#: ../../mod/photos.php:1185
+#: ../../mod/photos.php:1189
 msgid "Recent Photos"
 msgstr "Photos récentes"
 
@@ -7227,7 +7266,7 @@ msgstr "Décalage droit du panneau latéral"
 #: ../../view/theme/blogga/view/theme/blog/config.php:47
 #: ../../view/theme/blogga/php/config.php:47
 msgid "None"
-msgstr ""
+msgstr "Aucun(e)"
 
 #: ../../view/theme/blogga/view/theme/blog/config.php:70
 #: ../../view/theme/blogga/php/config.php:70
@@ -7256,7 +7295,7 @@ msgstr "Créez un compte pour pouvoir accéder aux services et applications de l
 
 #: ../../boot.php:1427
 msgid "Password"
-msgstr "Mot de pass"
+msgstr "Mot de passe"
 
 #: ../../boot.php:1428
 msgid "Remember me"
diff --git a/view/fr/strings.php b/view/fr/strings.php
index 8e491a56a..360b616d2 100644
--- a/view/fr/strings.php
+++ b/view/fr/strings.php
@@ -4,6 +4,45 @@ function string_plural_select_fr($n){
 	return ($n > 1);;
 }
 ;
+$a->strings["Categories"] = "Catégories";
+$a->strings["Connect"] = "Relier";
+$a->strings["Ignore/Hide"] = "Ignorer/Cacher";
+$a->strings["Suggestions"] = "Suggestion";
+$a->strings["See more..."] = "Voir plus...";
+$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Vous avez %1$.0f des %2$.0f relations autorisées.";
+$a->strings["Add New Connection"] = "Ajouter une nouvelle relation";
+$a->strings["Enter the channel address"] = "Adresse du canal";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple&nbsp;: bob@exemple.com, http://exemple.com/barbara";
+$a->strings["Notes"] = "Notes";
+$a->strings["Save"] = "Sauver";
+$a->strings["Remove term"] = "Retirer le terme";
+$a->strings["Saved Searches"] = "Recherches sauvées";
+$a->strings["add"] = "ajouter";
+$a->strings["Saved Folders"] = "Dossiers sauvegardés";
+$a->strings["Everything"] = "Tout";
+$a->strings["Archives"] = "Archives";
+$a->strings["Refresh"] = "Actualiser";
+$a->strings["Me"] = "Moi";
+$a->strings["Best Friends"] = "Mes meilleurs amis";
+$a->strings["Friends"] = "Amis";
+$a->strings["Co-workers"] = "Mes collègues";
+$a->strings["Former Friends"] = "Mes anciens amis";
+$a->strings["Acquaintances"] = "Mes accointances";
+$a->strings["Everybody"] = "Tout le monde";
+$a->strings["Account settings"] = "Compte";
+$a->strings["Channel settings"] = "Canal";
+$a->strings["Additional features"] = "Fonc. supplémentaires";
+$a->strings["Feature settings"] = "Fonctionnalités";
+$a->strings["Display settings"] = "Affichage";
+$a->strings["Connected apps"] = "Applications";
+$a->strings["Export channel"] = "Exporter canal";
+$a->strings["Automatic Permissions (Advanced)"] = "Permissions automatiques (avancé)";
+$a->strings["Premium Channel Settings"] = "Canal Premium";
+$a->strings["Channel Sources"] = "Canaux sources";
+$a->strings["Settings"] = "Réglages";
+$a->strings["Check Mail"] = "Vérifier courriel";
+$a->strings["New Message"] = "Nouveau message";
+$a->strings["Chat Rooms"] = "Salons";
 $a->strings["Visible to everybody"] = "Visible par tous";
 $a->strings["show"] = "montrer";
 $a->strings["don't show"] = "cacher";
@@ -65,13 +104,11 @@ $a->strings["See all private messages"] = "Voir tous les messages privés";
 $a->strings["Mark all private messages seen"] = "Marquer tous les messages privés comme vus";
 $a->strings["Inbox"] = "Boîte de réception";
 $a->strings["Outbox"] = "Boîte d'envoi";
-$a->strings["New Message"] = "Nouveau message";
 $a->strings["Event Calendar"] = "Calendrier des événements";
 $a->strings["See all events"] = "Voir tous les événements";
 $a->strings["Mark all events seen"] = "Marquer tous les événements comme vus";
 $a->strings["Channel Select"] = "Changer de canal";
 $a->strings["Manage Your Channels"] = "Gérer vos canaux";
-$a->strings["Settings"] = "Réglages";
 $a->strings["Account/Channel Settings"] = "Compte/Canal";
 $a->strings["Connections"] = "Relations";
 $a->strings["Manage/Edit Friends and Connections"] = "Gérer les amis et relations";
@@ -91,7 +128,6 @@ $a->strings["%d Connection"] = array(
 	1 => "%d relations",
 );
 $a->strings["View Connections"] = "Voir les relations";
-$a->strings["Save"] = "Sauver";
 $a->strings["poke"] = "tapoter";
 $a->strings["poked"] = "tapoté";
 $a->strings["ping"] = "solliciter";
@@ -155,7 +191,7 @@ $a->strings["Page content type: "] = "Type de contenu&nbsp;:";
 $a->strings["Select an alternate language"] = "Choisir une langue alternative";
 $a->strings["photo"] = "photo";
 $a->strings["event"] = "événement";
-$a->strings["status"] = "statut";
+$a->strings["status"] = "le statut";
 $a->strings["comment"] = "commentaire";
 $a->strings["activity"] = "activité";
 $a->strings["Design"] = "Conception";
@@ -163,42 +199,12 @@ $a->strings["Blocks"] = "Blocs";
 $a->strings["Menus"] = "Menus";
 $a->strings["Layouts"] = "Mises-en-page";
 $a->strings["Pages"] = "Pages";
-$a->strings["Categories"] = "Catégories";
-$a->strings["Connect"] = "Relier";
-$a->strings["Ignore/Hide"] = "Ignorer/Cacher";
-$a->strings["Suggestions"] = "Suggestion";
-$a->strings["See more..."] = "Voir plus...";
-$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Vous avez %1$.0f des %2$.0f relations autorisées.";
-$a->strings["Add New Connection"] = "Ajouter une nouvelle relation";
-$a->strings["Enter the channel address"] = "Adresse du canal";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple&nbsp;: bob@exemple.com, http://exemple.com/barbara";
-$a->strings["Notes"] = "Notes";
-$a->strings["Remove term"] = "Retirer le terme";
-$a->strings["Saved Searches"] = "Recherches sauvées";
-$a->strings["add"] = "ajouter";
-$a->strings["Saved Folders"] = "Dossiers sauvegardés";
-$a->strings["Everything"] = "Tout";
-$a->strings["Archives"] = "Archives";
-$a->strings["Refresh"] = "Actualiser";
-$a->strings["Me"] = "Moi";
-$a->strings["Best Friends"] = "Mes meilleurs amis";
-$a->strings["Friends"] = "Amis";
-$a->strings["Co-workers"] = "Mes collègues";
-$a->strings["Former Friends"] = "Mes anciens amis";
-$a->strings["Acquaintances"] = "Mes accointances";
-$a->strings["Everybody"] = "Tout le monde";
-$a->strings["Account settings"] = "Compte";
-$a->strings["Channel settings"] = "Canal";
-$a->strings["Additional features"] = "Fonc. supplémentaires";
-$a->strings["Feature settings"] = "Fonctionnalités";
-$a->strings["Display settings"] = "Affichage";
-$a->strings["Connected apps"] = "Applications";
-$a->strings["Export channel"] = "Exporter canal";
-$a->strings["Automatic Permissions (Advanced)"] = "Permissions automatiques (avancé)";
-$a->strings["Premium Channel Settings"] = "Canal Premium";
-$a->strings["Channel Sources"] = "Canaux sources";
-$a->strings["Check Mail"] = "Vérifier courriel";
-$a->strings["Chat Rooms"] = "Salons";
+$a->strings["Image/photo"] = "Image/photo";
+$a->strings["Encrypted content"] = "Contenu chiffré";
+$a->strings["QR code"] = "QR code";
+$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s a écrit %2\$s qui suit %3\$s";
+$a->strings["post"] = "l'article";
+$a->strings["$1 wrote:"] = "$1 a écrit&nbsp;:";
 $a->strings["New window"] = "Nouvelle fenêtre";
 $a->strings["Open the selected location in a different window or browser tab"] = "Ouvrir l'emplacement dans une fenêtre (ou un onglet) différent";
 $a->strings["General Features"] = "Fonctionnalités générales";
@@ -329,7 +335,7 @@ $a->strings["about a month"] = "environ un mois";
 $a->strings["%d months"] = "%d mois";
 $a->strings["about a year"] = "environ un an";
 $a->strings["%d years"] = "%d années";
-$a->strings[" "] = "";
+$a->strings[" "] = " ";
 $a->strings["timeago.numbers"] = "timeago.numbers";
 $a->strings["No recipient provided."] = "Pas de destinataire.";
 $a->strings["[no subject]"] = "[sans objet]";
@@ -351,12 +357,6 @@ $a->strings["duplicate filename or path"] = "doublon de chemin ou de fichier";
 $a->strings["Path not found."] = "Chemin introuvable.";
 $a->strings["mkdir failed."] = "mkdir a échoué.";
 $a->strings["database storage failed."] = "le stockage en BD a échoué";
-$a->strings["Image/photo"] = "Image/photo";
-$a->strings["Encrypted content"] = "Contenu chiffré";
-$a->strings["QR code"] = "QR code";
-$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s a écrit le %2\$s suivant %3\$s";
-$a->strings["post"] = "article";
-$a->strings["$1 wrote:"] = "$1 a écrit&nbsp;:";
 $a->strings["%1\$s's bookmarks"] = "Marque-pages de %1\$s";
 $a->strings["channel"] = "canal";
 $a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s";
@@ -535,7 +535,7 @@ $a->strings["to"] = "à";
 $a->strings["via"] = "via";
 $a->strings["Wall-to-Wall"] = "Mur-mur";
 $a->strings["via Wall-To-Wall:"] = "par Mur-mur&nbsp;:";
-$a->strings["Bookmark Links"] = "";
+$a->strings["Bookmark Links"] = "Transformer les liens en marque-pages";
 $a->strings["%d comment"] = array(
 	0 => "%d commentaire",
 	1 => "%d commentaires",
@@ -554,12 +554,12 @@ $a->strings["Public Timeline"] = "Fil public";
 $a->strings["view full size"] = "pleine taille";
 $a->strings["created a new post"] = "a publié";
 $a->strings["commented on %s's post"] = "a commenté la publication de %s";
-$a->strings["Male"] = "Mâle";
-$a->strings["Female"] = "Femelle";
-$a->strings["Currently Male"] = "Actuellement mâle";
-$a->strings["Currently Female"] = "Actuellement femelle";
-$a->strings["Mostly Male"] = "Surtout mâle";
-$a->strings["Mostly Female"] = "Surtotu femelle";
+$a->strings["Male"] = "Masculin";
+$a->strings["Female"] = "Féminin";
+$a->strings["Currently Male"] = "Actuellement masculin";
+$a->strings["Currently Female"] = "Actuellement féminin";
+$a->strings["Mostly Male"] = "Surtout masculin";
+$a->strings["Mostly Female"] = "Surtout féminin";
 $a->strings["Transgender"] = "Transgenre";
 $a->strings["Intersex"] = "Intersexuel";
 $a->strings["Transsexual"] = "Transsexuel";
@@ -593,7 +593,7 @@ $a->strings["Sex Addict"] = "Accro au sexe";
 $a->strings["Friends/Benefits"] = "Amis avec bénéfices";
 $a->strings["Casual"] = "Sans engagement";
 $a->strings["Engaged"] = "Fiancé(e)";
-$a->strings["Married"] = "Marrié(e)";
+$a->strings["Married"] = "Marié(e)";
 $a->strings["Imaginarily married"] = "Marié(e) dans ses rêves";
 $a->strings["Partners"] = "Partenaires";
 $a->strings["Cohabiting"] = "En cohabitation";
@@ -657,32 +657,32 @@ $a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, v
 $a->strings["%1\$s sent you %2\$s."] = "%1\$s vous a envoyé %2\$s.";
 $a->strings["a private message"] = "un message privé";
 $a->strings["Please visit %s to view and/or reply to your private messages."] = "Merci de visiter %s pour voir et/ou répondre à vos messages privés.";
-$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "";
-$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "";
-$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "";
+$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s a commenté [zrl=%3\$s]%4\$s[/zrl]";
+$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s a commenté [zrl=%3\$s]%5\$s de %4\$s[/zrl]";
+$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s a commenté [zrl=%3\$s]votre %4\$s[/zrl]";
 $a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notification] Commentaire de %2\$s sur conversation #%1\$d";
-$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "";
+$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s a commenté un élément de conversation que vous suivez.";
 $a->strings["Please visit %s to view and/or reply to the conversation."] = "Merci de visiter %s pour voir et/ou répondre sur cette conversation.";
 $a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Notification] %s a publié sur votre profil";
-$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "";
-$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "";
+$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s a posté sur votre profil à %3\$s";
+$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s a posté sur [zrl=%3\$s]votre profil[/zrl]";
 $a->strings["[Red:Notify] %s tagged you"] = "[Red:Notification] %s vous a marqué";
 $a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, vous avez été étiqueté sur %3\$s par %2\$s";
-$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "";
+$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]vous a tagué[/zrl].";
 $a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Notification] %1\$s vous a tapoté";
 $a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, vous avez été tapoté/pointé/sollicité par %2\$s sur %3\$s";
-$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "";
+$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]vous a tapoté[/zrl].";
 $a->strings["[Red:Notify] %s tagged your post"] = "[Red:Notification] %s a marqué votre publication";
-$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "";
-$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "";
+$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s a tagué votre publication sur %3\$s";
+$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s a tagué [zrl=%3\$s]votre publication[/zrl]";
 $a->strings["[Red:Notify] Introduction received"] = "[Red:Notification] Nouvelle introduction";
-$a->strings["%1\$s, you've received an introduction from '%2\$s' at %3\$s"] = "";
-$a->strings["%1\$s, you've received [zrl=%2\$s]an introduction[/zrl] from %3\$s."] = "";
+$a->strings["%1\$s, you've received an introduction from '%2\$s' at %3\$s"] = "%1\$s, vous avez reçu une introduction de '%2\$s' sur %3\$s";
+$a->strings["%1\$s, you've received [zrl=%2\$s]an introduction[/zrl] from %3\$s."] = "%1\$s, vous avez reçu [zrl=%2\$s]une introduction[/zrl] de %3\$s.";
 $a->strings["You may visit their profile at %s"] = "Vous pouvez visiter leur profil sur %s";
 $a->strings["Please visit %s to approve or reject the introduction."] = "Merci de visiter %s avant d'approuver (ou non) son introduction.";
 $a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Notification] Nouvelle suggestion d'amitié";
-$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "";
-$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "";
+$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, vous avez reçu une suggestion de relation de '%2\$s' à %3\$s";
+$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, avez reçu %3\$s comme [zrl=%2\$s]une suggestion de relation[/zrl] de %4\$s.";
 $a->strings["Name:"] = "Nom&nbsp;:";
 $a->strings["Photo:"] = "Photo&nbsp;:";
 $a->strings["Please visit %s to approve or reject the suggestion."] = "Merci de visiter %s pour donner suite (ou non) à cette suggestion.";
@@ -783,6 +783,8 @@ $a->strings["item not found."] = "élément introuvable.";
 $a->strings["Edit Thing"] = "Éditer chose";
 $a->strings["Select a profile"] = "Choisissez un profil";
 $a->strings["Select a category of stuff. e.g. I ______ something"] = "Choisissez une catégorie de choses. p.ex. Je ______ quelque-chose";
+$a->strings["Post an activity"] = "Publier une activité";
+$a->strings["Only sends to viewers of the applicable profile"] = "";
 $a->strings["Name of thing e.g. something"] = "Nom de la chose, p.ex. quelque-chose";
 $a->strings["URL of thing (optional)"] = "URL de la chose (optionnel)";
 $a->strings["URL for photo of thing (optional)"] = "URL de l'image de la chose (optionnel)";
@@ -852,103 +854,6 @@ $a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"
 $a->strings["Bookmark added"] = "Marque-page ajouté";
 $a->strings["My Bookmarks"] = "Mes marque-pages";
 $a->strings["My Connections Bookmarks"] = "Marque-pages de mes relations";
-$a->strings["Name is required"] = "Le nom est requis";
-$a->strings["Key and Secret are required"] = "Clef et secret sont requis";
-$a->strings["Update"] = "Mise-à-jour";
-$a->strings["Passwords do not match. Password unchanged."] = "Les deux saisies du mot de passe ne correspondent pas. Il n'a donc pas été changé.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Le mot de passe ne peut pas être vide. Il n'a donc pas été changé.";
-$a->strings["Password changed."] = "Le mot de passe a été changé.";
-$a->strings["Password update failed. Please try again."] = "La mise-à-jour du mot de passe a échoué. Merci de recommencer.";
-$a->strings["Not valid email."] = "Adresse de courriel non-valide.";
-$a->strings["Protected email address. Cannot change to that email."] = "Adresse de courriel protégée. Impossible de l'utiliser.";
-$a->strings["System failure storing new email. Please try again."] = "Défaillance système lors du stockage de la nouvelle adresse de courriel. Merci de ré-essayer.";
-$a->strings["Settings updated."] = "Réglages sauvegardés.";
-$a->strings["Add application"] = "Ajouter une application";
-$a->strings["Name"] = "Nom";
-$a->strings["Name of application"] = "Nom de l'application";
-$a->strings["Consumer Key"] = "Clef de consommateur";
-$a->strings["Automatically generated - change if desired. Max length 20"] = "Généré automatiquement - à changer si besoin. Longueur maximale 20 caractères.";
-$a->strings["Consumer Secret"] = "Secret de consommateur";
-$a->strings["Redirect"] = "Redirection";
-$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirection - laissez blanc, sauf si l'application a demandé autrement";
-$a->strings["Icon url"] = "URL de l'icône";
-$a->strings["Optional"] = "Facultatif";
-$a->strings["You can't edit this application."] = "Vous ne pouvez pas éditer cette application.";
-$a->strings["Connected Apps"] = "Applications connectées";
-$a->strings["Client key starts with"] = "La clef cliente commence par";
-$a->strings["No name"] = "Sans nom";
-$a->strings["Remove authorization"] = "Révoquer l'autorisation";
-$a->strings["No feature settings configured"] = "Pas de fonctionnalité à configurer";
-$a->strings["Feature Settings"] = "Fonctionnalités";
-$a->strings["Account Settings"] = "Compte";
-$a->strings["Password Settings"] = "Mot de passe";
-$a->strings["New Password:"] = "Nouveau mot de passe&nbsp;:";
-$a->strings["Confirm:"] = "Confirmation&nbsp;:";
-$a->strings["Leave password fields blank unless changing"] = "Laissez les mots de passe vides si vous ne voulez pas les modifier";
-$a->strings["Email Address:"] = "Adresse de courriel&nbsp;:";
-$a->strings["Remove Account"] = "Supprimer le compte";
-$a->strings["Warning: This action is permanent and cannot be reversed."] = "Attention&nbsp;: cette action est permanente et irréversible.";
-$a->strings["Off"] = "Inactif";
-$a->strings["On"] = "Actif";
-$a->strings["Additional Features"] = "Fonctionnalités additionnelles";
-$a->strings["Connector Settings"] = "Connecteurs";
-$a->strings["No special theme for mobile devices"] = "Pas de thème spécifique aux périphériques mobiles";
-$a->strings["Display Settings"] = "Affichage";
-$a->strings["Display Theme:"] = "Thème&nbsp;:";
-$a->strings["Mobile Theme:"] = "Thème mobile&nbsp;:";
-$a->strings["Update browser every xx seconds"] = "Rafraîchir le navigateur toutes les xx secondes";
-$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 secondes, pas de maximum";
-$a->strings["Maximum number of conversations to load at any time:"] = "Nombre maximal de conversations pouvant être chargées en même temps&nbsp;:";
-$a->strings["Maximum of 100 items"] = "100 éléments au maximum";
-$a->strings["Don't show emoticons"] = "Ne pas montrer les frimousses/émoticones";
-$a->strings["Nobody except yourself"] = "Personne sauf vous";
-$a->strings["Only those you specifically allow"] = "Seulement ceux que vous autorisez spécifiquement";
-$a->strings["Anybody in your address book"] = "Tous vos contacts";
-$a->strings["Anybody on this website"] = "Tous les utilisateurs du site";
-$a->strings["Anybody in this network"] = "Tous les utilisateurs du réseau";
-$a->strings["Anybody on the internet"] = "Tout les utilisateurs d'Internet";
-$a->strings["Publish your default profile in the network directory"] = "Publier votre profil par défaut dans l'annuaire du réseau";
-$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Nous autoriser à vous suggérer comme relation potentielle aux nouveaux arrivants?";
-$a->strings["or"] = "ou";
-$a->strings["Your channel address is"] = "Votre canal a pour adresse";
-$a->strings["Channel Settings"] = "Canal";
-$a->strings["Basic Settings"] = "Basique";
-$a->strings["Your Timezone:"] = "Zone de temps&nbsp;:";
-$a->strings["Default Post Location:"] = "Localisation par défaut&nbsp;:";
-$a->strings["Use Browser Location:"] = "Utiliser la localisation fournie par le navigateur&nbsp;:";
-$a->strings["Adult Content"] = "Contenu \"adulte\"";
-$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Ce canal publie plus ou moins fréquemment du contenu pour adultes. (Merci d'indiquer tout contenu pour adulte ou potentiellement choquant avec le tag <em>#NSFW</em> - Not Safe For Work)";
-$a->strings["Security and Privacy Settings"] = "Sécurité et vie privée";
-$a->strings["Hide my online presence"] = "Cacher ma présence en ligne";
-$a->strings["Prevents displaying in your profile that you are online"] = "Cacher votre statut (en ligne/hors ligne) sur votre profil";
-$a->strings["Simple Privacy Settings:"] = "Réglages simples&nbsp;:";
-$a->strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "Très public - <em>extrèmement permissif (à n'utiliser qu'en connaissance de cause)</em>";
-$a->strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "Classique - <em>public par défaut, privé en cas de besoin (comparable dans le principe aux réseaux sociaux centralisés, avec un mode privé plus efficace)</em>";
-$a->strings["Private - <em>default private, never open or public</em>"] = "Privé - <em>privé par défaut, jamais ouvert ni public</em>";
-$a->strings["Blocked - <em>default blocked to/from everybody</em>"] = "Bloqué - <em>par défaut, bloqué de/vers tout le monde</em>";
-$a->strings["Advanced Privacy Settings"] = "Réglages avancés";
-$a->strings["Maximum Friend Requests/Day:"] = "Nombre maximum de mises en relation par jour&nbsp;:";
-$a->strings["May reduce spam activity"] = "Contribue à réduire l'impact du spam";
-$a->strings["Default Post Permissions"] = "Permissions par défaut des publications";
-$a->strings["(click to open/close)"] = "(cliquer pour ouvrir/fermer)";
-$a->strings["Maximum private messages per day from unknown people:"] = "Nombre maximum de messages privés émanant d'inconnus, par jour&nbsp;:";
-$a->strings["Useful to reduce spamming"] = "Utile pour réduire le spam";
-$a->strings["Notification Settings"] = "Notifications";
-$a->strings["By default post a status message when:"] = "Par défaut, publier un statut quand:";
-$a->strings["accepting a friend request"] = "acceptez une mise en relation";
-$a->strings["joining a forum/community"] = "joignez un forum ou à une communauté";
-$a->strings["making an <em>interesting</em> profile change"] = "faites une modification <em>intéressante</em> de votre profil";
-$a->strings["Send a notification email when:"] = "Envoyer un courriel de notification quand&nbsp;:";
-$a->strings["You receive an introduction"] = "Vous recevez une introduction";
-$a->strings["Your introductions are confirmed"] = "Vos introductions sont acceptées/confirmées";
-$a->strings["Someone writes on your profile wall"] = "Quelqu'un écrit sur votre mur";
-$a->strings["Someone writes a followup comment"] = "Quelqu'un commente sur vos publications";
-$a->strings["You receive a private message"] = "Vous recevez un Message Privé";
-$a->strings["You receive a friend suggestion"] = "Vous recevez une suggestion d'amitié/relation";
-$a->strings["You are tagged in a post"] = "Vous êtes étiqueté dans une publication";
-$a->strings["You are poked/prodded/etc. in a post"] = "Vous êtes tapoté/pointé/etc. dans une publication";
-$a->strings["Advanced Account/Page Type Settings"] = "Type de page/Compte (avancé)";
-$a->strings["Change the behaviour of this account for special situations"] = "Modifie le comportement de ce compte pour certains cas particuliers";
 $a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit %3\$s de %2\$s";
 $a->strings["[Embedded content - reload page to view]"] = "[Contenu embarqué - rechargez la page pour le voir]";
 $a->strings["Channel not found."] = "Canal introuvable.";
@@ -1004,6 +909,7 @@ $a->strings["Delete this menu item"] = "Supprimer cet entrée du menu";
 $a->strings["Edit this menu item"] = "Éditer cette entrée du menu";
 $a->strings["New Menu Element"] = "Nouvelle entrée de menu";
 $a->strings["Menu Item Permissions"] = "Permissions de l'entrée de menu";
+$a->strings["(click to open/close)"] = "(cliquer pour ouvrir/fermer)";
 $a->strings["Link text"] = "Texte du lien";
 $a->strings["URL of link"] = "URL du lien";
 $a->strings["Use Red magic-auth if available"] = "Utiliser l'authentification automagique de Red, si possible";
@@ -1014,6 +920,11 @@ $a->strings["Menu item not found."] = "Entrée de menu introuvable.";
 $a->strings["Menu item deleted."] = "Entrée de menu supprimée.";
 $a->strings["Menu item could not be deleted."] = "Impossible de supprimer l'entrée de menu.";
 $a->strings["Edit Menu Element"] = "Éditer l'entrée de menu";
+$a->strings["Invalid profile identifier."] = "Identifiant de profil invalide.";
+$a->strings["Profile Visibility Editor"] = "Éditeur de visibilité de profil";
+$a->strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le retirer.";
+$a->strings["Visible To"] = "Visible par";
+$a->strings["All Connections"] = "Toutes les relations";
 $a->strings["Collection created."] = "Collection créée.";
 $a->strings["Could not create collection."] = "Impossible de créer la collection.";
 $a->strings["Collection updated."] = "Collection mise-à-jour.";
@@ -1026,11 +937,6 @@ $a->strings["Collection Editor"] = "Éditeur de collection";
 $a->strings["Members"] = "Membres";
 $a->strings["All Connected Channels"] = "Tous canaux connectés";
 $a->strings["Click on a channel to add or remove."] = "Cliquer sur un canal pour ajouter ou supprimer";
-$a->strings["Invalid profile identifier."] = "Identifiant de profil invalide.";
-$a->strings["Profile Visibility Editor"] = "Éditeur de visibilité de profil";
-$a->strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le retirer.";
-$a->strings["Visible To"] = "Visible par";
-$a->strings["All Connections"] = "Toutes les relations";
 $a->strings["Theme settings updated."] = "Réglages du thème sauvegardés.";
 $a->strings["Site"] = "Site";
 $a->strings["Users"] = "Utilisateurs";
@@ -1049,6 +955,7 @@ $a->strings["Pending registrations"] = "Inscriptions en attente";
 $a->strings["Version"] = "Version";
 $a->strings["Active plugins"] = "Extensions actives";
 $a->strings["Site settings updated."] = "Réglages du site sauvegardés.";
+$a->strings["No special theme for mobile devices"] = "Pas de thème spécifique aux périphériques mobiles";
 $a->strings["No special theme for accessibility"] = "Pas de thème spécifique pour l'accessibilité";
 $a->strings["Closed"] = "Fermé";
 $a->strings["Requires approval"] = "Après approbation";
@@ -1091,7 +998,7 @@ $a->strings["Check to block public access to all otherwise public personal pages
 $a->strings["Force publish"] = "Forcer publication";
 $a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Cocher pour forcer la publication de tous les profils du site dans l'annuaire.";
 $a->strings["No login on Homepage"] = "Pas de connexion depuis la page d'accueil";
-$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "";
+$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Cocher pour ne pas montrer le formulaire de connexion sur la page d'accueil (typiquement, pour quand vous utilisez la page d'accueil pour afficher du contenu via le canal du site).";
 $a->strings["Proxy user"] = "Utilisateurs du proxy";
 $a->strings["Proxy URL"] = "URL du proxy";
 $a->strings["Network timeout"] = "Délai maximal du réseau";
@@ -1331,7 +1238,7 @@ $a->strings["This site is not a directory server"] = "Ce site n'est pas un serve
 $a->strings["Failed to create source. No channel selected."] = "Impossible de créer la source. Aucun canal selectionné.";
 $a->strings["Source created."] = "Source créée.";
 $a->strings["Source updated."] = "Source mise à jour.";
-$a->strings["*"] = "";
+$a->strings["*"] = "*";
 $a->strings["Manage remote sources of content for your channel."] = "Gérer les sources distantes du contenu de votre canal.";
 $a->strings["New Source"] = "Nouvelle source";
 $a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importer tout ou partie du contenu du canal suivant dans le canal en cours, et le distribuer en concordance avec les réglages de votre canal.";
@@ -1422,6 +1329,10 @@ $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for t
 $a->strings["Version %s"] = "Version %s";
 $a->strings["Installed plugins/addons/apps:"] = "Extensions/applications installées&nbsp;:";
 $a->strings["No installed plugins/addons/apps"] = "Aucune extension/application installée";
+$a->strings["Project Donations"] = "Donations au projet";
+$a->strings["<p>The Red Matrix is provided for you by volunteers working in their spare time. Your support will help us to build a better web. Select the following option for a one-time donation of your choosing</p>"] = "<p>The Red Matrix vous est mis à disposition par des volontaires, qui travaillent dessus sur leur temps libre. Votre soutien nous aidera à construire un meilleur web. Merci de choisir l'option suivante pour une donation ponctuelle de votre choix.</p>";
+$a->strings["<p>or</p>"] = "<p>ou bien</p>";
+$a->strings["Recurring Donation Options"] = "Options de donation récurente";
 $a->strings["Red"] = "Red";
 $a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralised privacy enhanced websites."] = "Ceci est une instance - un hub - de la Matrice Red - un réseau global et coopératif de sites web qui respectent la vie privée de manière décentralisée/acentrée.";
 $a->strings["Running at web location"] = "En train de tourner chez";
@@ -1451,6 +1362,104 @@ $a->strings["Forgot your Password?"] = "Mot de passe oublié?";
 $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Saisissez votre adresse de courriel, et validez, pour réinitialiser votre mot de passe. Vérifiez ensuite votre boîte à lettres pour la suite des instructions.";
 $a->strings["Email Address"] = "Adresse de courriel";
 $a->strings["Reset"] = "Réinitialiser";
+$a->strings["Name is required"] = "Le nom est requis";
+$a->strings["Key and Secret are required"] = "Clef et secret sont requis";
+$a->strings["Update"] = "Mise-à-jour";
+$a->strings["Passwords do not match. Password unchanged."] = "Les deux saisies du mot de passe ne correspondent pas. Il n'a donc pas été changé.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Le mot de passe ne peut pas être vide. Il n'a donc pas été changé.";
+$a->strings["Password changed."] = "Le mot de passe a été changé.";
+$a->strings["Password update failed. Please try again."] = "La mise-à-jour du mot de passe a échoué. Merci de recommencer.";
+$a->strings["Not valid email."] = "Adresse de courriel non-valide.";
+$a->strings["Protected email address. Cannot change to that email."] = "Adresse de courriel protégée. Impossible de l'utiliser.";
+$a->strings["System failure storing new email. Please try again."] = "Défaillance système lors du stockage de la nouvelle adresse de courriel. Merci de ré-essayer.";
+$a->strings["Settings updated."] = "Réglages sauvegardés.";
+$a->strings["Add application"] = "Ajouter une application";
+$a->strings["Name"] = "Nom";
+$a->strings["Name of application"] = "Nom de l'application";
+$a->strings["Consumer Key"] = "Clef de consommateur";
+$a->strings["Automatically generated - change if desired. Max length 20"] = "Généré automatiquement - à changer si besoin. Longueur maximale 20 caractères.";
+$a->strings["Consumer Secret"] = "Secret de consommateur";
+$a->strings["Redirect"] = "Redirection";
+$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirection - laissez blanc, sauf si l'application a demandé autrement";
+$a->strings["Icon url"] = "URL de l'icône";
+$a->strings["Optional"] = "Facultatif";
+$a->strings["You can't edit this application."] = "Vous ne pouvez pas éditer cette application.";
+$a->strings["Connected Apps"] = "Applications connectées";
+$a->strings["Client key starts with"] = "La clef cliente commence par";
+$a->strings["No name"] = "Sans nom";
+$a->strings["Remove authorization"] = "Révoquer l'autorisation";
+$a->strings["No feature settings configured"] = "Pas de fonctionnalité à configurer";
+$a->strings["Feature Settings"] = "Fonctionnalités";
+$a->strings["Account Settings"] = "Compte";
+$a->strings["Password Settings"] = "Mot de passe";
+$a->strings["New Password:"] = "Nouveau mot de passe&nbsp;:";
+$a->strings["Confirm:"] = "Confirmation&nbsp;:";
+$a->strings["Leave password fields blank unless changing"] = "Laissez les mots de passe vides si vous ne voulez pas les modifier";
+$a->strings["Email Address:"] = "Adresse de courriel&nbsp;:";
+$a->strings["Remove Account"] = "Supprimer le compte";
+$a->strings["Warning: This action is permanent and cannot be reversed."] = "Attention&nbsp;: cette action est permanente et irréversible.";
+$a->strings["Off"] = "Inactif";
+$a->strings["On"] = "Actif";
+$a->strings["Additional Features"] = "Fonctionnalités additionnelles";
+$a->strings["Connector Settings"] = "Connecteurs";
+$a->strings["Display Settings"] = "Affichage";
+$a->strings["Display Theme:"] = "Thème&nbsp;:";
+$a->strings["Mobile Theme:"] = "Thème mobile&nbsp;:";
+$a->strings["Update browser every xx seconds"] = "Rafraîchir le navigateur toutes les xx secondes";
+$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 secondes, pas de maximum";
+$a->strings["Maximum number of conversations to load at any time:"] = "Nombre maximal de conversations pouvant être chargées en même temps&nbsp;:";
+$a->strings["Maximum of 100 items"] = "100 éléments au maximum";
+$a->strings["Don't show emoticons"] = "Ne pas montrer les frimousses/émoticones";
+$a->strings["Do not view remote profiles in frames"] = "";
+$a->strings["By default open in a sub-window of your own site"] = "Par défaut, ouvrir dans une sous-fenêtre de votre propre site";
+$a->strings["Nobody except yourself"] = "Personne sauf vous";
+$a->strings["Only those you specifically allow"] = "Seulement ceux que vous autorisez spécifiquement";
+$a->strings["Anybody in your address book"] = "Tous vos contacts";
+$a->strings["Anybody on this website"] = "Tous les utilisateurs du site";
+$a->strings["Anybody in this network"] = "Tous les utilisateurs du réseau";
+$a->strings["Anybody on the internet"] = "Tout les utilisateurs d'Internet";
+$a->strings["Publish your default profile in the network directory"] = "Publier votre profil par défaut dans l'annuaire du réseau";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Nous autoriser à vous suggérer comme relation potentielle aux nouveaux arrivants?";
+$a->strings["or"] = "ou";
+$a->strings["Your channel address is"] = "Votre canal a pour adresse";
+$a->strings["Channel Settings"] = "Canal";
+$a->strings["Basic Settings"] = "Basique";
+$a->strings["Your Timezone:"] = "Zone de temps&nbsp;:";
+$a->strings["Default Post Location:"] = "Localisation par défaut&nbsp;:";
+$a->strings["Use Browser Location:"] = "Utiliser la localisation fournie par le navigateur&nbsp;:";
+$a->strings["Adult Content"] = "Contenu \"adulte\"";
+$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Ce canal publie plus ou moins fréquemment du contenu pour adultes. (Merci d'indiquer tout contenu pour adulte ou potentiellement choquant avec le tag <em>#NSFW</em> - Not Safe For Work)";
+$a->strings["Security and Privacy Settings"] = "Sécurité et vie privée";
+$a->strings["Hide my online presence"] = "Cacher ma présence en ligne";
+$a->strings["Prevents displaying in your profile that you are online"] = "Cacher votre statut (en ligne/hors ligne) sur votre profil";
+$a->strings["Simple Privacy Settings:"] = "Réglages simples&nbsp;:";
+$a->strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "Très public - <em>extrèmement permissif (à n'utiliser qu'en connaissance de cause)</em>";
+$a->strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "Classique - <em>public par défaut, privé en cas de besoin (comparable dans le principe aux réseaux sociaux centralisés, avec un mode privé plus efficace)</em>";
+$a->strings["Private - <em>default private, never open or public</em>"] = "Privé - <em>privé par défaut, jamais ouvert ni public</em>";
+$a->strings["Blocked - <em>default blocked to/from everybody</em>"] = "Bloqué - <em>par défaut, bloqué de/vers tout le monde</em>";
+$a->strings["Advanced Privacy Settings"] = "Réglages avancés";
+$a->strings["Maximum Friend Requests/Day:"] = "Nombre maximum de mises en relation par jour&nbsp;:";
+$a->strings["May reduce spam activity"] = "Contribue à réduire l'impact du spam";
+$a->strings["Default Post Permissions"] = "Permissions par défaut des publications";
+$a->strings["Maximum private messages per day from unknown people:"] = "Nombre maximum de messages privés émanant d'inconnus, par jour&nbsp;:";
+$a->strings["Useful to reduce spamming"] = "Utile pour réduire le spam";
+$a->strings["Notification Settings"] = "Notifications";
+$a->strings["By default post a status message when:"] = "Par défaut, publier un statut quand:";
+$a->strings["accepting a friend request"] = "acceptez une mise en relation";
+$a->strings["joining a forum/community"] = "joignez un forum ou à une communauté";
+$a->strings["making an <em>interesting</em> profile change"] = "faites une modification <em>intéressante</em> de votre profil";
+$a->strings["Send a notification email when:"] = "Envoyer un courriel de notification quand&nbsp;:";
+$a->strings["You receive an introduction"] = "Vous recevez une introduction";
+$a->strings["Your introductions are confirmed"] = "Vos introductions sont acceptées/confirmées";
+$a->strings["Someone writes on your profile wall"] = "Quelqu'un écrit sur votre mur";
+$a->strings["Someone writes a followup comment"] = "Quelqu'un commente sur vos publications";
+$a->strings["You receive a private message"] = "Vous recevez un Message Privé";
+$a->strings["You receive a friend suggestion"] = "Vous recevez une suggestion d'amitié/relation";
+$a->strings["You are tagged in a post"] = "Vous êtes étiqueté dans une publication";
+$a->strings["You are poked/prodded/etc. in a post"] = "Vous êtes tapoté/pointé/etc. dans une publication";
+$a->strings["Advanced Account/Page Type Settings"] = "Type de page/Compte (avancé)";
+$a->strings["Change the behaviour of this account for special situations"] = "Modifie le comportement de ce compte pour certains cas particuliers";
+$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Merci d'activer le mode expert (dans Réglages > Fonctionnalités additionelles) pour affiner!";
 $a->strings["Nothing to import."] = "Rien à importer.";
 $a->strings["Unable to download data from old server"] = "Impossible de récupérer les données de l'ancien serveur";
 $a->strings["Imported file is empty."] = "Le fichier importé est vide.";
@@ -1535,7 +1544,7 @@ $a->strings["Only show blocked connections"] = "Ne montrer que les relations blo
 $a->strings["Only show ignored connections"] = "Ne montrer que les relations ignorées";
 $a->strings["Only show archived connections"] = "Ne montrer que les relations archivées";
 $a->strings["Only show hidden connections"] = "Ne montrer que les relations cachées";
-$a->strings["%1\$s [%2\$s]"] = "";
+$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]";
 $a->strings["Edit contact"] = "Éditer contact";
 $a->strings["Search your connections"] = "Chercher parmi vos relations";
 $a->strings["Finding: "] = "Recherche&nbsp;:";
@@ -1708,13 +1717,13 @@ $a->strings["Right offset of the section element"] = "Décalage droit de l'élé
 $a->strings["Section width"] = "Largeur de la section";
 $a->strings["Left offset of the aside"] = "Décalage gauche du panneau latéral";
 $a->strings["Right offset of the aside element"] = "Décalage droit du panneau latéral";
-$a->strings["None"] = "";
+$a->strings["None"] = "Aucun(e)";
 $a->strings["Header image"] = "Têtière";
 $a->strings["Header image only on profile pages"] = "Têtière seulement sur les profils";
 $a->strings["Update %s failed. See error logs."] = "La mise-à-jour %s a échoué. Merci de consulter les journaux d'erreur.";
 $a->strings["Update Error at %s"] = "Erreur de mise-à-jour sur %s";
 $a->strings["Create an account to access services and applications within the Red Matrix"] = "Créez un compte pour pouvoir accéder aux services et applications de la Matrice Red";
-$a->strings["Password"] = "Mot de pass";
+$a->strings["Password"] = "Mot de passe";
 $a->strings["Remember me"] = "Se souvenir de moi";
 $a->strings["Forgot your password?"] = "Mot de passe oublié?";
 $a->strings["permission denied"] = "permission refusée";
-- 
cgit v1.2.3


From 9db40322abaccd036a71252633f755ad46064798 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Thu, 20 Feb 2014 18:51:35 -0800
Subject: move jgrowl (alert popup) out of the now taller navbar

---
 view/theme/redbasic/css/style.css | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 5d603c810..b7338346a 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -1530,7 +1530,7 @@ div.jGrowl div.info {
   padding-left: 58px;
 }
 #jGrowl.top-right {
-	top: 15px;
+	top: 65px;
 	right: 15px;
 }
 
-- 
cgit v1.2.3


From 052be3c92b466fcfd2c1adc12df8a368aa9bc740 Mon Sep 17 00:00:00 2001
From: marijus <mario@mariovavti.com>
Date: Fri, 21 Feb 2014 12:16:26 +0100
Subject: cleanup style.css

---
 view/theme/redbasic/css/style.css | 271 +-------------------------------------
 view/tpl/nav.tpl                  |   2 +-
 2 files changed, 3 insertions(+), 270 deletions(-)

(limited to 'view')

diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index b7338346a..5a8470a60 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -231,49 +231,6 @@ header #banner #logo-text {
   font-size: 22px;
 }
 
-.nav-commlink, .nav-login-link  {
-    display: block;
-    height: 15px;
-	margin-top: 67px;
-	margin-right: 2px;
-	padding: 6px 3px;
-	float: left;
-	bottom: 140px;
-	border: 1px solid #babdb6;
-	border-bottom: 0px;
-	background-color: #aec0d3;
-	color: #565854;		
-	-moz-border-radius: $radiuspx;
-	border-radius: $radiuspx;
-}
-
-nav .nav-link {
-	float: right;
-	margin: 0.2em 0em;
-	padding: 0em 0.5em;
-	background-color: transparent !important;
-}
-
-.nav-commlink.active {
-	background-color: #ffffff;
-	border-bottom: 1px solid #ffffff;
-	color: #000000 !important;
-	margin-top: 64px;
-	padding-top: 6px;
-	padding-bottom: 8px;
-}
-
-.nav-ajax-left {
-	font-size: 0.8em;
-	float: left;
-	margin-top: 62px;	
-}
-
-
-nav #nav-link-wrapper .nav-link {
-	border-right: 1px solid #babdb6;
-}
-
 .tabs {
 	height: 28px;
 	border-bottom: 1px solid #aaaaaa;
@@ -920,17 +877,6 @@ footer {
 	font-family: FontAwesome;
 }
 
-.nav-dropdown-indicator {
-    opacity: 0.8;
-    filter:alpha(opacity=80);
-}
-
-.nav-dropdown-indicator:hover {
-    opacity: 1.0;
-    filter:alpha(opacity=100);
-}
-
-
 .location-label, .gender-label, .marital-label, .homepage-label {
 	float: left;
 	text-align: right;
@@ -1596,25 +1542,15 @@ div.jGrowl div.info {
 	width: 90%;
 }
 
-a.rconnect,
-nav a,
-nav a:active,
-nav a:visited,
-nav a:link {
+a.rconnect {
   color: #ffffff;
   text-decoration: none;
   outline: none;
 }
 
-a.rconnect:hover, nav a:hover {
+a.rconnect:hover {
 	color: #0080FF;
 }
-nav .fakelink {
-  color: #ffffff;
-  text-decoration: none;
-  outline: none;
-}
-nav .fakelink:hover { text-decoration: none; }
 
 #profiles-menu li a {
 	color: #ffffff;
@@ -1624,138 +1560,7 @@ nav .fakelink:hover { text-decoration: none; }
 	color: #000000;
 }
 
-nav .nav-menu-icon {
-  position: relative;
-  height: 22px;
-  padding: 5px;
-/*  margin: 3px 10px; */
-  -moz-border-radius: $radiuspx;
-  -webkit-border-radius: $radiuspx;
-  border-radius: $radiuspx;
-}
-nav .nav-menu-icon.active {
-  background-color: #FF0000;
-}
-nav .nav-menu-icon img {
-  width: 22px;
-  height: 22px;
-}
-nav .nav-menu-icon .nav-notify {
-  top: 3px;
-}
-nav .nav-menu {
-  position: relative;
-  height: 16px;
-  padding: 5px;
-  margin: 0px 5px 0px;
-  font-size: 1.0em;
-/*  border-bottom: 3px solid #f88; */
-}
-
-nav:hover .nav-menu {
-/*  border-bottom: 3px solid #f00; */
-}
-
-nav .nav-menu.active i {
-	color: $active_colour;
-}
-
-nav .nav-notify {
-  background-color: #0080FF;
-  color: #fff;
-  -moz-border-radius: $radiuspx;
-  -webkit-border-radius: $radiuspx;
-  border-radius: $radiuspx;
-/*  opacity: 0.6;
-  filter:alpha(opacity=60); */
-
-}
-.nav-notify:hover, nav .nav-notify.active span {
-	color: #ffffff;
-}
-
-nav .nav-notify.show {
-  display: block;
-}
-nav #nav-help-link,
-nav #nav-login-link,
-nav #nav-search-link,
-nav #nav-directory-link,
-nav #nav-apps-link {
-  float: right;
-}
-nav #nav-help-link .menu-popup,
-nav #nav-search-link .menu-popup,
-nav #nav-directory-link .menu-popup,
-nav #nav-apps-link .menu-popup,
-nav #nav-site-linkmenu .menu-popup {
-  right: 0px;
-  left: auto;
-}
-nav #nav-notifications-linkmenu.on .icon.s22.notify,
-nav #nav-notifications-linkmenu.active .icon.s22.notify {
-  background-image: url("../../../../images/icons/22/notify_on.png");
-}
-nav #nav-apps-link.active {
-  background-color: #364e59;
-}
-ul.menu-popup {
-  position: absolute;
-  display: none;
-  width: 10em;
-  background: #0080FF;
-  color: #eec;
-  padding: 0px;
-  list-style: none;
-/*  border-radius: 0px 0px 20px 20px; */
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-ul.menu-popup a {
-  display: block;
-  color: #FFFFFF;
-  padding: 5px 10px;
-  text-decoration: none;
-}
-
 
-ul.menu-popup a:hover {
-  background-color: #888888;
-  color: #FFFFFF;
-}
-ul.menu-popup .menu-sep {
-  border-top: 1px solid #9eabb0;
-}
-ul.menu-popup li {
-  float: none;
-  overflow: auto;
-  height: auto;
-  display: block;
-}
-ul.menu-popup li img {
-  float: left;
-  width: 16px;
-  height: 16px;
-  padding-right: 5px;
-}
-ul.menu-popup .empty {
-  padding: 5px;
-  text-align: center;
-  color: #9eabb0;
-}
-ul.menu-popup .toolbar {
-  background-color: #9eabb0;
-  height: auto;
-  overflow: auto;
-}
-ul.menu-popup .toolbar a {
-  float: right;
-}
-ul.menu-popup .toolbar a:hover {
-  background-color: #ffffff;
-}
 /* header */
 header {
   position: fixed;
@@ -1767,66 +1572,6 @@ header {
   color: #fff;
 }
 
-
-/* notifications popup menu */
-.nav-notify {
-	display: none;
-	position: absolute;
-	font-size: 10px;
-	padding: 1px 3px;
-	top: 0px;
-	right: -5px;
-	min-width: 15px;
-	text-align: right;
-}
-.nav-notify.show {
-	display: block;
-}
-ul.menu-popup {
-	position: absolute;
-	display: none;
-	width: 10em;
-	margin: 0px;
-	padding: 0px;
-	list-style: none;
-	z-index: 100000;
-/*	top: 90px; */
-/*	left: 400px; */
-}
-
-.notify-menus {
-	width: 320px !important;
-	max-height: 400px;
-	overflow-y: scroll;overflow-style:scrollbar;
-}
-
-#nav-notifications-menu {
-	width: 320px;
-	max-height: 400px;
-	overflow-y: scroll;overflow-style:scrollbar;
-	background-color:#FFFFFF;
-	-moz-border-radius: $radiuspx;
-	-webkit-border-radius: $radiuspx;
-	border-radius: $radiuspx;
-	border: 1px solid #888;
-}
-#nav-notifications-menu .contactname { font-weight: bold; font-size: 0.9em; }
-#nav-notifications-menu img { float: left; margin-right: 5px; }
-#nav-notifications-menu .notif-when { font-size: 0.8em; display: block; }
-#nav-notifications-menu li {
-	padding: 7px 0px 7px 10px;
-	word-wrap:normal;
-	border-bottom: 1px solid #000;
-}
-
-#nav-notifications-menu li:hover {
-
-}
-
-#nav-notifications-menu a:hover {
-	text-decoration: underline;
-}
-
 .notif-item a {
 	color: #000000;
 }
@@ -2055,11 +1800,6 @@ margin-right: 50px;
 	color: $toolicon_colour;
 }
 
-.nav-icon {
-	font-size: 1.4em;
-	margin-right: 15px;
-}
-
 a .drop-icons {
 	color: $toolicon_colour;;
 	font-size: 1.2em;
@@ -2459,13 +2199,6 @@ nav ul li {
 	max-height: 50px
 }
 
-nav a,
-nav a:active,
-nav a:visited,
-nav a:link {
-  color: #333;
-}
-
 nav .badge {
 	border-radius: $radiuspx;
 }
diff --git a/view/tpl/nav.tpl b/view/tpl/nav.tpl
index ba8d68b13..20600ccd7 100755
--- a/view/tpl/nav.tpl
+++ b/view/tpl/nav.tpl
@@ -159,7 +159,7 @@
 			{{if $nav.apps}}
 				<li class="{{$sel.apps}} hidden-xs">
 					<a class="{{$nav.apps.2}} dropdown-toggle" data-toggle="dropdown" href="#" rel="#nav-apps-menu" title="{{$nav.apps.3}}" ><i class="icon-cogs"></i></a>
-					<ul id="nav-apps-menu" class="dropdown-menu">
+					<ul class="dropdown-menu">
 					{{foreach $apps as $ap}}
 						<li>{{$ap}}</li>
 					{{/foreach}}
-- 
cgit v1.2.3


From 593631d8f5089e07b00288bfabd34c18878d7e41 Mon Sep 17 00:00:00 2001
From: marijus <mario@mariovavti.com>
Date: Fri, 21 Feb 2014 13:03:32 +0100
Subject: oups... to much cleaning...

---
 view/theme/redbasic/css/style.css | 58 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 58 insertions(+)

(limited to 'view')

diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 5a8470a60..b8c6da0eb 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -494,6 +494,64 @@ footer {
   top: 22px;
 }
 
+ul.menu-popup {
+  position: absolute;
+  display: none;
+  width: 10em;
+  background: #0080FF;
+  color: #eec;
+  padding: 0px;
+  list-style: none;
+/*  border-radius: 0px 0px 20px 20px; */
+  z-index: 100000;
+  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
+  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
+  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
+}
+ul.menu-popup a {
+  display: block;
+  color: #FFFFFF;
+  padding: 5px 10px;
+  text-decoration: none;
+}
+
+
+ul.menu-popup a:hover {
+  background-color: #888888;
+  color: #FFFFFF;
+}
+ul.menu-popup .menu-sep {
+  border-top: 1px solid #9eabb0;
+}
+ul.menu-popup li {
+  float: none;
+  overflow: auto;
+  height: auto;
+  display: block;
+}
+ul.menu-popup li img {
+  float: left;
+  width: 16px;
+  height: 16px;
+  padding-right: 5px;
+}
+ul.menu-popup .empty {
+  padding: 5px;
+  text-align: center;
+  color: #9eabb0;
+}
+ul.menu-popup .toolbar {
+  background-color: #9eabb0;
+  height: auto;
+  overflow: auto;
+}
+ul.menu-popup .toolbar a {
+  float: right;
+}
+ul.menu-popup .toolbar a:hover {
+  background-color: #ffffff;
+}
+
 
 
 #profile-in-dir-yes-label,
-- 
cgit v1.2.3


From 7b1cabdd58b62a8bf8d7ed6233a42d53e99fffc7 Mon Sep 17 00:00:00 2001
From: marijus <mario@mariovavti.com>
Date: Fri, 21 Feb 2014 13:26:13 +0100
Subject: quickfix for edit profile dropdown

---
 view/tpl/profile_vcard.tpl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'view')

diff --git a/view/tpl/profile_vcard.tpl b/view/tpl/profile_vcard.tpl
index 187c3039d..10a928e1c 100755
--- a/view/tpl/profile_vcard.tpl
+++ b/view/tpl/profile_vcard.tpl
@@ -2,8 +2,8 @@
 
 	{{if $profile.edit}}
 	<div class="action">
-	<a class="profile-edit-side-link" rel="#profiles-menu" title="{{$profile.edit.3}}" href="#" ><i class="icon-pencil vcard-profile-edit-icon" title="{{$profile.edit.1}}" ></i></a>
-	<ul id="profiles-menu" class="menu-popup">
+	<a class="profile-edit-side-link dropdown-toggle" data-toggle="dropdown" rel="#profiles-menu" title="{{$profile.edit.3}}" href="#" ><i class="icon-pencil vcard-profile-edit-icon" title="{{$profile.edit.1}}" ></i></a>
+	<ul id="profiles-menu" class="menu-popup dropdown-menu">
 		{{foreach $profile.menu.entries as $e}}
 		<li>
 			<a href="profiles/{{$e.id}}"><img src='{{$e.photo}}'>{{$e.profile_name}}</a>
-- 
cgit v1.2.3


From 8c37a01f7459b5f53d367fd0fd9bf6b1765fad50 Mon Sep 17 00:00:00 2001
From: marijus <mario@mariovavti.com>
Date: Fri, 21 Feb 2014 13:57:00 +0100
Subject: dont allow bootstrap to mess with blockquote font-size

---
 view/theme/redbasic/css/style.css | 5 +++++
 1 file changed, 5 insertions(+)

(limited to 'view')

diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index b8c6da0eb..3e902a116 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -2268,3 +2268,8 @@ nav .dropdown-menu {
 	border-bottom-right-radius: $radiuspx;
 	border-bottom-left-radius: $radiuspx;
 }
+
+/* bootstrap overrides */
+blockquote {
+    font-size: $body_font_size;
+}
-- 
cgit v1.2.3


From 32d0189b560582ef3086e4316aca9dbce1ac781e Mon Sep 17 00:00:00 2001
From: marijus <mario@mariovavti.com>
Date: Fri, 21 Feb 2014 14:38:21 +0100
Subject: remove some design fixes which got fixed in bootstrap 3.1.1

---
 view/css/bootstrap-red.css        | 3 ---
 view/theme/redbasic/css/style.css | 2 +-
 2 files changed, 1 insertion(+), 4 deletions(-)

(limited to 'view')

diff --git a/view/css/bootstrap-red.css b/view/css/bootstrap-red.css
index b180bea61..45cf76fb6 100644
--- a/view/css/bootstrap-red.css
+++ b/view/css/bootstrap-red.css
@@ -109,7 +109,4 @@ nav .navbar-collapse {
 	max-height: 450px;
 }
 
-nav .navbar-right li:last-child {
-	padding-right: 20px;
-}
 /* nav overrides end */
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 3e902a116..2402e514e 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -2249,7 +2249,7 @@ nav i {
 nav img {
 	height: 47px;
 	width: 47px;
-	margin: 2px 0px 1px 10px;
+	margin-top: 2px;
 	border-radius: $radiuspx;
 }
 
-- 
cgit v1.2.3


From 65d5fae3240cc5c17486712fd2995589b03ace2a Mon Sep 17 00:00:00 2001
From: Tobias Diekershoff <tobias.diekershoff@gmx.net>
Date: Sat, 22 Feb 2014 14:10:21 +0100
Subject: DE: update to the strings

---
 view/de/messages.po | 4833 ++++++++++++++++++++++++++-------------------------
 view/de/strings.php |  236 +--
 2 files changed, 2558 insertions(+), 2511 deletions(-)

(limited to 'view')

diff --git a/view/de/messages.po b/view/de/messages.po
index f98726f4d..fe7074d5a 100644
--- a/view/de/messages.po
+++ b/view/de/messages.po
@@ -19,8 +19,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Red Matrix\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-02-14 00:02-0800\n"
-"PO-Revision-Date: 2014-02-16 07:16+0000\n"
+"POT-Creation-Date: 2014-02-21 00:03-0800\n"
+"PO-Revision-Date: 2014-02-22 12:04+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"
@@ -34,7 +34,7 @@ msgid "Categories"
 msgstr "Kategorien"
 
 #: ../../include/widgets.php:115 ../../include/widgets.php:155
-#: ../../include/Contact.php:104 ../../include/identity.php:628
+#: ../../include/Contact.php:107 ../../include/identity.php:632
 #: ../../mod/directory.php:184 ../../mod/match.php:62
 #: ../../mod/dirprofile.php:170 ../../mod/suggest.php:51
 msgid "Connect"
@@ -73,8 +73,8 @@ msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara"
 msgid "Notes"
 msgstr "Notizen"
 
-#: ../../include/widgets.php:173 ../../include/text.php:754
-#: ../../include/text.php:768 ../../mod/filer.php:36
+#: ../../include/widgets.php:173 ../../include/text.php:759
+#: ../../include/text.php:773 ../../mod/filer.php:36
 msgid "Save"
 msgstr "Speichern"
 
@@ -100,7 +100,7 @@ msgstr "Gesicherte Ordner"
 msgid "Everything"
 msgstr "Alles"
 
-#: ../../include/widgets.php:318 ../../include/items.php:3636
+#: ../../include/widgets.php:318
 msgid "Archives"
 msgstr "Archive"
 
@@ -116,7 +116,7 @@ msgstr "Ich"
 msgid "Best Friends"
 msgstr "Beste Freunde"
 
-#: ../../include/widgets.php:373 ../../include/identity.php:310
+#: ../../include/widgets.php:373 ../../include/identity.php:314
 #: ../../include/profile_selectors.php:42 ../../mod/connedit.php:392
 msgid "Friends"
 msgstr "Freunde"
@@ -179,7 +179,7 @@ msgid "Channel Sources"
 msgstr "Kanal-Quellen"
 
 #: ../../include/widgets.php:487 ../../include/nav.php:181
-#: ../../mod/admin.php:837 ../../mod/admin.php:1042
+#: ../../mod/admin.php:838 ../../mod/admin.php:1043
 msgid "Settings"
 msgstr "Einstellungen"
 
@@ -230,7 +230,7 @@ msgstr "Besuche %1$s's %2$s"
 msgid "%1$s has an updated %2$s, changing %3$s."
 msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert."
 
-#: ../../include/nav.php:72 ../../include/nav.php:91 ../../boot.php:1423
+#: ../../include/nav.php:72 ../../include/nav.php:91 ../../boot.php:1425
 msgid "Logout"
 msgstr "Abmelden"
 
@@ -314,7 +314,7 @@ msgstr "Webseiten"
 msgid "Your webpages"
 msgstr "Deine Webseiten"
 
-#: ../../include/nav.php:89 ../../boot.php:1424
+#: ../../include/nav.php:89 ../../boot.php:1426
 msgid "Login"
 msgstr "Anmelden"
 
@@ -335,7 +335,7 @@ msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren"
 msgid "Home Page"
 msgstr "Homepage"
 
-#: ../../include/nav.php:129 ../../mod/register.php:206 ../../boot.php:1400
+#: ../../include/nav.php:129 ../../mod/register.php:206 ../../boot.php:1402
 msgid "Register"
 msgstr "Registrieren"
 
@@ -359,8 +359,8 @@ msgstr "Apps"
 msgid "Addon applications, utilities, games"
 msgstr "Addon Programme, Helferlein, Spiele"
 
-#: ../../include/nav.php:139 ../../include/text.php:752
-#: ../../include/text.php:766 ../../mod/search.php:29
+#: ../../include/nav.php:139 ../../include/text.php:757
+#: ../../include/text.php:771 ../../mod/search.php:29
 msgid "Search"
 msgstr "Suche"
 
@@ -520,320 +520,320 @@ msgstr "älter"
 msgid "newer"
 msgstr "neuer"
 
-#: ../../include/text.php:670
+#: ../../include/text.php:675
 msgid "No connections"
 msgstr "Keine Verbindungen"
 
-#: ../../include/text.php:681
+#: ../../include/text.php:686
 #, php-format
 msgid "%d Connection"
 msgid_plural "%d Connections"
 msgstr[0] "%d Verbindung"
 msgstr[1] "%d Verbindungen"
 
-#: ../../include/text.php:693
+#: ../../include/text.php:698
 msgid "View Connections"
 msgstr "Verbindungen anzeigen"
 
-#: ../../include/text.php:834
+#: ../../include/text.php:839
 msgid "poke"
 msgstr "anstupsen"
 
-#: ../../include/text.php:834 ../../include/conversation.php:240
+#: ../../include/text.php:839 ../../include/conversation.php:240
 msgid "poked"
 msgstr "stupste"
 
-#: ../../include/text.php:835
+#: ../../include/text.php:840
 msgid "ping"
 msgstr "anpingen"
 
-#: ../../include/text.php:835
+#: ../../include/text.php:840
 msgid "pinged"
 msgstr "pingte"
 
-#: ../../include/text.php:836
+#: ../../include/text.php:841
 msgid "prod"
 msgstr "knuffen"
 
-#: ../../include/text.php:836
+#: ../../include/text.php:841
 msgid "prodded"
 msgstr "knuffte"
 
-#: ../../include/text.php:837
+#: ../../include/text.php:842
 msgid "slap"
 msgstr "ohrfeigen"
 
-#: ../../include/text.php:837
+#: ../../include/text.php:842
 msgid "slapped"
 msgstr "ohrfeigte"
 
-#: ../../include/text.php:838
+#: ../../include/text.php:843
 msgid "finger"
 msgstr "befummeln"
 
-#: ../../include/text.php:838
+#: ../../include/text.php:843
 msgid "fingered"
 msgstr "befummelte"
 
-#: ../../include/text.php:839
+#: ../../include/text.php:844
 msgid "rebuff"
 msgstr "eine Abfuhr erteilen"
 
-#: ../../include/text.php:839
+#: ../../include/text.php:844
 msgid "rebuffed"
 msgstr "abfuhrerteilte"
 
-#: ../../include/text.php:851
+#: ../../include/text.php:856
 msgid "happy"
 msgstr "glücklich"
 
-#: ../../include/text.php:852
+#: ../../include/text.php:857
 msgid "sad"
 msgstr "traurig"
 
-#: ../../include/text.php:853
+#: ../../include/text.php:858
 msgid "mellow"
 msgstr "sanft"
 
-#: ../../include/text.php:854
+#: ../../include/text.php:859
 msgid "tired"
 msgstr "müde"
 
-#: ../../include/text.php:855
+#: ../../include/text.php:860
 msgid "perky"
 msgstr "frech"
 
-#: ../../include/text.php:856
+#: ../../include/text.php:861
 msgid "angry"
 msgstr "sauer"
 
-#: ../../include/text.php:857
+#: ../../include/text.php:862
 msgid "stupified"
 msgstr "verblüfft"
 
-#: ../../include/text.php:858
+#: ../../include/text.php:863
 msgid "puzzled"
 msgstr "verwirrt"
 
-#: ../../include/text.php:859
+#: ../../include/text.php:864
 msgid "interested"
 msgstr "interessiert"
 
-#: ../../include/text.php:860
+#: ../../include/text.php:865
 msgid "bitter"
 msgstr "verbittert"
 
-#: ../../include/text.php:861
+#: ../../include/text.php:866
 msgid "cheerful"
 msgstr "fröhlich"
 
-#: ../../include/text.php:862
+#: ../../include/text.php:867
 msgid "alive"
 msgstr "lebendig"
 
-#: ../../include/text.php:863
+#: ../../include/text.php:868
 msgid "annoyed"
 msgstr "verärgert"
 
-#: ../../include/text.php:864
+#: ../../include/text.php:869
 msgid "anxious"
 msgstr "unruhig"
 
-#: ../../include/text.php:865
+#: ../../include/text.php:870
 msgid "cranky"
 msgstr "schrullig"
 
-#: ../../include/text.php:866
+#: ../../include/text.php:871
 msgid "disturbed"
 msgstr "verstört"
 
-#: ../../include/text.php:867
+#: ../../include/text.php:872
 msgid "frustrated"
 msgstr "frustriert"
 
-#: ../../include/text.php:868
+#: ../../include/text.php:873
 msgid "motivated"
 msgstr "motiviert"
 
-#: ../../include/text.php:869
+#: ../../include/text.php:874
 msgid "relaxed"
 msgstr "entspannt"
 
-#: ../../include/text.php:870
+#: ../../include/text.php:875
 msgid "surprised"
 msgstr "überrascht"
 
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
 msgid "Monday"
 msgstr "Montag"
 
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
 msgid "Tuesday"
 msgstr "Dienstag"
 
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
 msgid "Wednesday"
 msgstr "Mittwoch"
 
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
 msgid "Thursday"
 msgstr "Donnerstag"
 
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
 msgid "Friday"
 msgstr "Freitag"
 
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
 msgid "Saturday"
 msgstr "Samstag"
 
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
 msgid "Sunday"
 msgstr "Sonntag"
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
 msgid "January"
 msgstr "Januar"
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
 msgid "February"
 msgstr "Februar"
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
 msgid "March"
 msgstr "März"
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
 msgid "April"
 msgstr "April"
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
 msgid "May"
 msgstr "Mai"
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
 msgid "June"
 msgstr "Juni"
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
 msgid "July"
 msgstr "Juli"
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
 msgid "August"
 msgstr "August"
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
 msgid "September"
 msgstr "September"
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
 msgid "October"
 msgstr "Oktober"
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
 msgid "November"
 msgstr "November"
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
 msgid "December"
 msgstr "Dezember"
 
-#: ../../include/text.php:1113
+#: ../../include/text.php:1118
 msgid "unknown.???"
 msgstr "unbekannt.???"
 
-#: ../../include/text.php:1114
+#: ../../include/text.php:1119
 msgid "bytes"
 msgstr "Bytes"
 
-#: ../../include/text.php:1149
+#: ../../include/text.php:1154
 msgid "remove category"
 msgstr "Kategorie entfernen"
 
-#: ../../include/text.php:1171
+#: ../../include/text.php:1176
 msgid "remove from file"
 msgstr "aus der Datei entfernen"
 
-#: ../../include/text.php:1229 ../../include/text.php:1241
+#: ../../include/text.php:1234 ../../include/text.php:1246
 msgid "Click to open/close"
 msgstr "Klicke zum Öffnen/Schließen"
 
-#: ../../include/text.php:1417 ../../mod/events.php:332
+#: ../../include/text.php:1401 ../../mod/events.php:332
 msgid "link to source"
 msgstr "Link zum Originalbeitrag"
 
-#: ../../include/text.php:1436
+#: ../../include/text.php:1420
 msgid "Select a page layout: "
 msgstr "Ein Seiten-Layout auswählen:"
 
-#: ../../include/text.php:1439 ../../include/text.php:1504
+#: ../../include/text.php:1423 ../../include/text.php:1488
 msgid "default"
 msgstr "Standard"
 
-#: ../../include/text.php:1475
+#: ../../include/text.php:1459
 msgid "Page content type: "
 msgstr "Content-Typ der Seite:"
 
-#: ../../include/text.php:1516
+#: ../../include/text.php:1500
 msgid "Select an alternate language"
 msgstr "Wähle eine alternative Sprache"
 
-#: ../../include/text.php:1637 ../../include/conversation.php:117
+#: ../../include/text.php:1621 ../../include/conversation.php:117
 #: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:45
 msgid "photo"
 msgstr "Foto"
 
-#: ../../include/text.php:1640 ../../include/conversation.php:120
+#: ../../include/text.php:1624 ../../include/conversation.php:120
 #: ../../mod/tagger.php:49
 msgid "event"
 msgstr "Ereignis"
 
-#: ../../include/text.php:1643 ../../include/conversation.php:145
+#: ../../include/text.php:1627 ../../include/conversation.php:145
 #: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:53
 msgid "status"
 msgstr "Status"
 
-#: ../../include/text.php:1645 ../../include/conversation.php:147
+#: ../../include/text.php:1629 ../../include/conversation.php:147
 #: ../../mod/tagger.php:55
 msgid "comment"
 msgstr "Kommentar"
 
-#: ../../include/text.php:1650
+#: ../../include/text.php:1634
 msgid "activity"
 msgstr "Aktivität"
 
-#: ../../include/text.php:1907
+#: ../../include/text.php:1891
 msgid "Design"
 msgstr "Design"
 
-#: ../../include/text.php:1909
+#: ../../include/text.php:1893
 msgid "Blocks"
 msgstr "Blöcke"
 
-#: ../../include/text.php:1910
+#: ../../include/text.php:1894
 msgid "Menus"
 msgstr "Menüs"
 
-#: ../../include/text.php:1911
+#: ../../include/text.php:1895
 msgid "Layouts"
 msgstr "Layouts"
 
-#: ../../include/text.php:1912
+#: ../../include/text.php:1896
 msgid "Pages"
 msgstr "Seiten"
 
-#: ../../include/bbcode.php:128 ../../include/bbcode.php:594
-#: ../../include/bbcode.php:597 ../../include/bbcode.php:602
-#: ../../include/bbcode.php:605 ../../include/bbcode.php:608
-#: ../../include/bbcode.php:611 ../../include/bbcode.php:616
-#: ../../include/bbcode.php:619 ../../include/bbcode.php:624
-#: ../../include/bbcode.php:627 ../../include/bbcode.php:630
-#: ../../include/bbcode.php:633
+#: ../../include/bbcode.php:128 ../../include/bbcode.php:601
+#: ../../include/bbcode.php:604 ../../include/bbcode.php:609
+#: ../../include/bbcode.php:612 ../../include/bbcode.php:615
+#: ../../include/bbcode.php:618 ../../include/bbcode.php:623
+#: ../../include/bbcode.php:626 ../../include/bbcode.php:631
+#: ../../include/bbcode.php:634 ../../include/bbcode.php:637
+#: ../../include/bbcode.php:640
 msgid "Image/photo"
 msgstr "Bild/Foto"
 
-#: ../../include/bbcode.php:163 ../../include/bbcode.php:644
+#: ../../include/bbcode.php:163 ../../include/bbcode.php:651
 msgid "Encrypted content"
 msgstr "Verschlüsselter Inhalt"
 
@@ -850,15 +850,15 @@ msgstr "%1$s schrieb den folgenden %2$s %3$s"
 msgid "post"
 msgstr "Beitrag"
 
-#: ../../include/bbcode.php:562 ../../include/bbcode.php:582
+#: ../../include/bbcode.php:569 ../../include/bbcode.php:589
 msgid "$1 wrote:"
 msgstr "$1 schrieb:"
 
-#: ../../include/Contact.php:120
+#: ../../include/Contact.php:123
 msgid "New window"
 msgstr "Neues Fenster"
 
-#: ../../include/Contact.php:121
+#: ../../include/Contact.php:124
 msgid "Open the selected location in a different window or browser tab"
 msgstr "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab"
 
@@ -1131,8 +1131,8 @@ msgstr "OStatus"
 msgid "RSS/Atom"
 msgstr "RSS/Atom"
 
-#: ../../include/contact_selectors.php:77 ../../mod/admin.php:741
-#: ../../mod/admin.php:750 ../../boot.php:1426
+#: ../../include/contact_selectors.php:77 ../../mod/admin.php:742
+#: ../../mod/admin.php:751 ../../boot.php:1428
 msgid "Email"
 msgstr "E-Mail"
 
@@ -1250,7 +1250,7 @@ msgstr "Beginnt:"
 msgid "Finishes:"
 msgstr "Endet:"
 
-#: ../../include/event.php:40 ../../include/identity.php:679
+#: ../../include/event.php:40 ../../include/identity.php:683
 #: ../../include/bb2diaspora.php:455 ../../mod/events.php:462
 #: ../../mod/directory.php:157 ../../mod/dirprofile.php:111
 msgid "Location:"
@@ -1267,7 +1267,7 @@ msgstr "Ein gelöschte Gruppe mit diesem Namen wurde gefunden. Existierende Zuga
 msgid "Default privacy group for new contacts"
 msgstr "Standard-Privatsphärengruppe für neue Kontakte"
 
-#: ../../include/group.php:242 ../../mod/admin.php:750
+#: ../../include/group.php:242 ../../mod/admin.php:751
 msgid "All Channels"
 msgstr "Alle Kanäle"
 
@@ -1418,39 +1418,40 @@ 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:637 ../../include/photos.php:51
+#: ../../include/photo/photo_driver.php:643 ../../include/photos.php:51
 #: ../../mod/profile_photo.php:78 ../../mod/profile_photo.php:225
 #: ../../mod/profile_photo.php:336 ../../mod/photos.php:91
 #: ../../mod/photos.php:656 ../../mod/photos.php:678
 msgid "Profile Photos"
 msgstr "Profilfotos"
 
-#: ../../include/attach.php:98 ../../include/attach.php:129
-#: ../../include/attach.php:185 ../../include/attach.php:200
-#: ../../include/attach.php:233 ../../include/attach.php:247
-#: ../../include/attach.php:268 ../../include/attach.php:463
-#: ../../include/attach.php:541 ../../include/chat.php:113
-#: ../../include/photos.php:15 ../../include/items.php:3515
+#: ../../include/attach.php:119 ../../include/attach.php:166
+#: ../../include/attach.php:229 ../../include/attach.php:243
+#: ../../include/attach.php:283 ../../include/attach.php:297
+#: ../../include/attach.php:322 ../../include/attach.php:513
+#: ../../include/attach.php:585 ../../include/chat.php:113
+#: ../../include/photos.php:15 ../../include/items.php:3575
 #: ../../mod/common.php:35 ../../mod/events.php:140 ../../mod/thing.php:247
 #: ../../mod/thing.php:263 ../../mod/thing.php:298 ../../mod/invite.php:13
-#: ../../mod/invite.php:104 ../../mod/item.php:182 ../../mod/item.php:190
-#: ../../mod/menu.php:44 ../../mod/webpages.php:40 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/bookmarks.php:46 ../../mod/chat.php:87
-#: ../../mod/chat.php:92 ../../mod/viewconnections.php:22
-#: ../../mod/viewconnections.php:27 ../../mod/delegate.php:6
-#: ../../mod/mitem.php:73 ../../mod/group.php:9 ../../mod/viewsrc.php:12
-#: ../../mod/editpost.php:13 ../../mod/connedit.php:182
-#: ../../mod/layouts.php:27 ../../mod/layouts.php:42 ../../mod/page.php:30
-#: ../../mod/page.php:80 ../../mod/network.php:12 ../../mod/profiles.php:152
+#: ../../mod/invite.php:104 ../../mod/settings.php:493 ../../mod/menu.php:44
+#: ../../mod/webpages.php:40 ../../mod/api.php:26 ../../mod/api.php:31
+#: ../../mod/bookmarks.php:46 ../../mod/item.php:182 ../../mod/item.php:190
+#: ../../mod/chat.php:87 ../../mod/chat.php:92
+#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27
+#: ../../mod/delegate.php:6 ../../mod/mitem.php:73 ../../mod/group.php:9
+#: ../../mod/viewsrc.php:12 ../../mod/editpost.php:13
+#: ../../mod/connedit.php:182 ../../mod/layouts.php:27
+#: ../../mod/layouts.php:42 ../../mod/page.php:30 ../../mod/page.php:80
+#: ../../mod/network.php:12 ../../mod/profiles.php:152
 #: ../../mod/profiles.php:453 ../../mod/sources.php:66 ../../mod/setup.php:200
 #: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97
-#: ../../mod/achievements.php:27 ../../mod/settings.php:493
-#: ../../mod/manage.php:6 ../../mod/mail.php:108 ../../mod/editlayout.php:48
-#: ../../mod/profile_photo.php:187 ../../mod/profile_photo.php:200
-#: ../../mod/connections.php:169 ../../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:188
+#: ../../mod/achievements.php:27 ../../mod/manage.php:6 ../../mod/mail.php:108
+#: ../../mod/editlayout.php:48 ../../mod/profile_photo.php:187
+#: ../../mod/profile_photo.php:200 ../../mod/connections.php:169
+#: ../../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:188
 #: ../../mod/channel.php:231 ../../mod/fsuggest.php:78
 #: ../../mod/editblock.php:48 ../../mod/filestorage.php:10
 #: ../../mod/filestorage.php:59 ../../mod/filestorage.php:75
@@ -1461,61 +1462,61 @@ msgstr "Profilfotos"
 msgid "Permission denied."
 msgstr "Zugang verweigert"
 
-#: ../../include/attach.php:180 ../../include/attach.php:228
+#: ../../include/attach.php:224 ../../include/attach.php:278
 msgid "Item was not found."
 msgstr "Beitrag wurde nicht gefunden."
 
-#: ../../include/attach.php:281
+#: ../../include/attach.php:335
 msgid "No source file."
 msgstr "Keine Quelldatei."
 
-#: ../../include/attach.php:298
+#: ../../include/attach.php:352
 msgid "Cannot locate file to replace"
 msgstr "Kann Datei zum Ersetzen nicht finden"
 
-#: ../../include/attach.php:316
+#: ../../include/attach.php:370
 msgid "Cannot locate file to revise/update"
 msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden"
 
-#: ../../include/attach.php:327
+#: ../../include/attach.php:381
 #, php-format
 msgid "File exceeds size limit of %d"
 msgstr "Datei überschreitet das Größen-Limit von %d"
 
-#: ../../include/attach.php:339
+#: ../../include/attach.php:393
 #, php-format
 msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
 msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht."
 
-#: ../../include/attach.php:423
+#: ../../include/attach.php:475
 msgid "File upload failed. Possible system limit or action terminated."
 msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."
 
-#: ../../include/attach.php:435
+#: ../../include/attach.php:487
 msgid "Stored file could not be verified. Upload failed."
 msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."
 
-#: ../../include/attach.php:479 ../../include/attach.php:496
+#: ../../include/attach.php:528 ../../include/attach.php:545
 msgid "Path not available."
 msgstr "Pfad nicht verfügbar."
 
-#: ../../include/attach.php:546
+#: ../../include/attach.php:590
 msgid "Empty pathname"
 msgstr "Leere Pfadangabe"
 
-#: ../../include/attach.php:564
+#: ../../include/attach.php:606
 msgid "duplicate filename or path"
 msgstr "doppelter Dateiname oder Pfad"
 
-#: ../../include/attach.php:589
+#: ../../include/attach.php:630
 msgid "Path not found."
 msgstr "Pfad nicht gefunden."
 
-#: ../../include/attach.php:634
+#: ../../include/attach.php:674
 msgid "mkdir failed."
 msgstr "mkdir fehlgeschlagen."
 
-#: ../../include/attach.php:638
+#: ../../include/attach.php:678
 msgid "database storage failed."
 msgstr "Speichern in der Datenbank fehlgeschlagen."
 
@@ -1558,8 +1559,8 @@ msgid "Select"
 msgstr "Auswählen"
 
 #: ../../include/conversation.php:632 ../../include/ItemObject.php:108
-#: ../../mod/thing.php:236 ../../mod/group.php:176 ../../mod/admin.php:745
-#: ../../mod/connedit.php:359 ../../mod/settings.php:579
+#: ../../mod/thing.php:236 ../../mod/settings.php:579 ../../mod/group.php:176
+#: ../../mod/admin.php:746 ../../mod/connedit.php:359
 #: ../../mod/filestorage.php:171 ../../mod/photos.php:1044
 msgid "Delete"
 msgstr "Löschen"
@@ -1601,7 +1602,7 @@ msgid "View in context"
 msgstr "Im Zusammenhang anschauen"
 
 #: ../../include/conversation.php:707 ../../include/conversation.php:1120
-#: ../../include/ItemObject.php:259 ../../mod/editpost.php:112
+#: ../../include/ItemObject.php:259 ../../mod/editpost.php:121
 #: ../../mod/mail.php:222 ../../mod/mail.php:336 ../../mod/editlayout.php:115
 #: ../../mod/editwebpage.php:153 ../../mod/editblock.php:129
 #: ../../mod/photos.php:975
@@ -1732,7 +1733,7 @@ msgid "Expires YYYY-MM-DD HH:MM"
 msgstr "Verfällt YYYY-MM-DD HH;MM"
 
 #: ../../include/conversation.php:1083 ../../include/ItemObject.php:557
-#: ../../mod/webpages.php:122 ../../mod/editpost.php:132
+#: ../../mod/webpages.php:122 ../../mod/editpost.php:141
 #: ../../mod/editlayout.php:136 ../../mod/editwebpage.php:177
 #: ../../mod/editblock.php:151 ../../mod/photos.php:995
 msgid "Preview"
@@ -1746,7 +1747,7 @@ msgstr "Teilen"
 msgid "Page link title"
 msgstr "Seitentitel-Link"
 
-#: ../../include/conversation.php:1101 ../../mod/editpost.php:104
+#: ../../include/conversation.php:1101 ../../mod/editpost.php:113
 #: ../../mod/mail.php:219 ../../mod/mail.php:332 ../../mod/editlayout.php:107
 #: ../../mod/editwebpage.php:145 ../../mod/editblock.php:121
 msgid "Upload photo"
@@ -1756,7 +1757,7 @@ msgstr "Foto hochladen"
 msgid "upload photo"
 msgstr "Foto hochladen"
 
-#: ../../include/conversation.php:1103 ../../mod/editpost.php:105
+#: ../../include/conversation.php:1103 ../../mod/editpost.php:114
 #: ../../mod/mail.php:220 ../../mod/mail.php:333 ../../mod/editlayout.php:108
 #: ../../mod/editwebpage.php:146 ../../mod/editblock.php:122
 msgid "Attach file"
@@ -1766,7 +1767,7 @@ msgstr "Datei anhängen"
 msgid "attach file"
 msgstr "Datei anfügen"
 
-#: ../../include/conversation.php:1105 ../../mod/editpost.php:106
+#: ../../include/conversation.php:1105 ../../mod/editpost.php:115
 #: ../../mod/mail.php:221 ../../mod/mail.php:334 ../../mod/editlayout.php:109
 #: ../../mod/editwebpage.php:147 ../../mod/editblock.php:123
 msgid "Insert web link"
@@ -1792,7 +1793,7 @@ msgstr "Audio-Link einfügen"
 msgid "audio link"
 msgstr "Audio-Link"
 
-#: ../../include/conversation.php:1111 ../../mod/editpost.php:110
+#: ../../include/conversation.php:1111 ../../mod/editpost.php:119
 #: ../../mod/editlayout.php:113 ../../mod/editwebpage.php:151
 #: ../../mod/editblock.php:127
 msgid "Set your location"
@@ -1802,7 +1803,7 @@ msgstr "Standort"
 msgid "set location"
 msgstr "Standort"
 
-#: ../../include/conversation.php:1113 ../../mod/editpost.php:111
+#: ../../include/conversation.php:1113 ../../mod/editpost.php:120
 #: ../../mod/editlayout.php:114 ../../mod/editwebpage.php:152
 #: ../../mod/editblock.php:128
 msgid "Clear browser location"
@@ -1812,19 +1813,19 @@ msgstr "Browser-Standort löschen"
 msgid "clear location"
 msgstr "Standort löschen"
 
-#: ../../include/conversation.php:1116 ../../mod/editpost.php:124
+#: ../../include/conversation.php:1116 ../../mod/editpost.php:133
 #: ../../mod/editlayout.php:127 ../../mod/editwebpage.php:169
 #: ../../mod/editblock.php:142
 msgid "Set title"
 msgstr "Titel"
 
-#: ../../include/conversation.php:1119 ../../mod/editpost.php:126
+#: ../../include/conversation.php:1119 ../../mod/editpost.php:135
 #: ../../mod/editlayout.php:130 ../../mod/editwebpage.php:171
 #: ../../mod/editblock.php:145
 msgid "Categories (comma-separated list)"
 msgstr "Kategorien (Kommagetrennte Liste)"
 
-#: ../../include/conversation.php:1121 ../../mod/editpost.php:113
+#: ../../include/conversation.php:1121 ../../mod/editpost.php:122
 #: ../../mod/editlayout.php:116 ../../mod/editwebpage.php:154
 #: ../../mod/editblock.php:130
 msgid "Permission settings"
@@ -1834,37 +1835,37 @@ msgstr "Berechtigungs-Einstellungen"
 msgid "permissions"
 msgstr "Berechtigungen"
 
-#: ../../include/conversation.php:1130 ../../mod/editpost.php:121
+#: ../../include/conversation.php:1130 ../../mod/editpost.php:130
 #: ../../mod/editlayout.php:124 ../../mod/editwebpage.php:164
 #: ../../mod/editblock.php:139
 msgid "Public post"
 msgstr "Öffentlicher Beitrag"
 
-#: ../../include/conversation.php:1132 ../../mod/editpost.php:127
+#: ../../include/conversation.php:1132 ../../mod/editpost.php:136
 #: ../../mod/editlayout.php:131 ../../mod/editwebpage.php:172
 #: ../../mod/editblock.php:146
 msgid "Example: bob@example.com, mary@example.com"
 msgstr "Beispiel: bob@example.com, mary@example.com"
 
-#: ../../include/conversation.php:1145 ../../mod/editpost.php:138
+#: ../../include/conversation.php:1145 ../../mod/editpost.php:147
 #: ../../mod/mail.php:226 ../../mod/mail.php:339 ../../mod/editlayout.php:141
 #: ../../mod/editwebpage.php:182 ../../mod/editblock.php:156
 msgid "Set expiration date"
 msgstr "Verfallsdatum"
 
 #: ../../include/conversation.php:1147 ../../include/ItemObject.php:560
-#: ../../mod/editpost.php:140 ../../mod/mail.php:228 ../../mod/mail.php:341
+#: ../../mod/editpost.php:149 ../../mod/mail.php:228 ../../mod/mail.php:341
 msgid "Encrypt text"
 msgstr "Text verschlüsseln"
 
-#: ../../include/conversation.php:1149 ../../mod/editpost.php:142
+#: ../../include/conversation.php:1149 ../../mod/editpost.php:151
 msgid "OK"
 msgstr "Ok"
 
-#: ../../include/conversation.php:1150 ../../mod/tagrm.php:11
-#: ../../mod/tagrm.php:94 ../../mod/editpost.php:143
-#: ../../mod/settings.php:517 ../../mod/settings.php:543
-#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117
+#: ../../include/conversation.php:1150 ../../mod/settings.php:517
+#: ../../mod/settings.php:543 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
+#: ../../mod/editpost.php:152 ../../mod/fbrowser.php:82
+#: ../../mod/fbrowser.php:117
 msgid "Cancel"
 msgstr "Abbrechen"
 
@@ -1957,238 +1958,238 @@ msgstr "Gespeicherte Lesezeichen"
 msgid "Manage Webpages"
 msgstr "Webseiten verwalten"
 
-#: ../../include/identity.php:29 ../../mod/item.php:1177
+#: ../../include/identity.php:30 ../../mod/item.php:1187
 msgid "Unable to obtain identity information from database"
 msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen"
 
-#: ../../include/identity.php:62
+#: ../../include/identity.php:63
 msgid "Empty name"
 msgstr "Namensfeld leer"
 
-#: ../../include/identity.php:64
+#: ../../include/identity.php:65
 msgid "Name too long"
 msgstr "Name ist zu lang"
 
-#: ../../include/identity.php:143
+#: ../../include/identity.php:147
 msgid "No account identifier"
 msgstr "Keine Account-Kennung"
 
-#: ../../include/identity.php:153
+#: ../../include/identity.php:157
 msgid "Nickname is required."
 msgstr "Spitzname ist erforderlich."
 
-#: ../../include/identity.php:167
+#: ../../include/identity.php:171
 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:226
+#: ../../include/identity.php:230
 msgid "Unable to retrieve created identity"
 msgstr "Kann die erstellte Identität nicht empfangen"
 
-#: ../../include/identity.php:285
+#: ../../include/identity.php:289
 msgid "Default Profile"
 msgstr "Standard-Profil"
 
-#: ../../include/identity.php:477
+#: ../../include/identity.php:481
 msgid "Requested channel is not available."
 msgstr "Angeforderte Kanal nicht verfügbar."
 
-#: ../../include/identity.php:489
+#: ../../include/identity.php:493
 msgid " Sorry, you don't have the permission to view this profile. "
 msgstr "Entschuldigung, Du besitzt nicht die nötigen Rechte, um dieses Profil zu betrachten."
 
-#: ../../include/identity.php:524 ../../mod/webpages.php:8
+#: ../../include/identity.php:528 ../../mod/webpages.php:8
 #: ../../mod/connect.php:13 ../../mod/layouts.php:8
 #: ../../mod/achievements.php:8 ../../mod/blocks.php:10
 #: ../../mod/profile.php:16 ../../mod/filestorage.php:40
 msgid "Requested profile is not available."
 msgstr "Erwünschte Profil ist nicht verfügbar."
 
-#: ../../include/identity.php:642 ../../mod/profiles.php:603
+#: ../../include/identity.php:646 ../../mod/profiles.php:603
 msgid "Change profile photo"
 msgstr "Profilfoto ändern"
 
-#: ../../include/identity.php:648
+#: ../../include/identity.php:652
 msgid "Profiles"
 msgstr "Profile"
 
-#: ../../include/identity.php:648
+#: ../../include/identity.php:652
 msgid "Manage/edit profiles"
 msgstr "Verwalte/Bearbeite Profile"
 
-#: ../../include/identity.php:649 ../../mod/profiles.php:604
+#: ../../include/identity.php:653 ../../mod/profiles.php:604
 msgid "Create New Profile"
 msgstr "Neues Profil erstellen"
 
-#: ../../include/identity.php:652
+#: ../../include/identity.php:656
 msgid "Edit Profile"
 msgstr "Profile bearbeiten"
 
-#: ../../include/identity.php:663 ../../mod/profiles.php:615
+#: ../../include/identity.php:667 ../../mod/profiles.php:615
 msgid "Profile Image"
 msgstr "Profilfoto:"
 
-#: ../../include/identity.php:666 ../../mod/profiles.php:618
+#: ../../include/identity.php:670 ../../mod/profiles.php:618
 msgid "visible to everybody"
 msgstr "sichtbar für jeden"
 
-#: ../../include/identity.php:667 ../../mod/profiles.php:619
+#: ../../include/identity.php:671 ../../mod/profiles.php:619
 msgid "Edit visibility"
 msgstr "Sichtbarkeit bearbeiten"
 
-#: ../../include/identity.php:681 ../../include/identity.php:908
+#: ../../include/identity.php:685 ../../include/identity.php:912
 #: ../../mod/directory.php:159
 msgid "Gender:"
 msgstr "Geschlecht:"
 
-#: ../../include/identity.php:682 ../../include/identity.php:928
+#: ../../include/identity.php:686 ../../include/identity.php:932
 #: ../../mod/directory.php:161
 msgid "Status:"
 msgstr "Status:"
 
-#: ../../include/identity.php:683 ../../include/identity.php:939
+#: ../../include/identity.php:687 ../../include/identity.php:943
 #: ../../mod/directory.php:163
 msgid "Homepage:"
 msgstr "Homepage:"
 
-#: ../../include/identity.php:684 ../../mod/dirprofile.php:157
+#: ../../include/identity.php:688 ../../mod/dirprofile.php:157
 msgid "Online Now"
 msgstr "gerade online"
 
-#: ../../include/identity.php:752 ../../include/identity.php:832
+#: ../../include/identity.php:756 ../../include/identity.php:836
 #: ../../mod/ping.php:262
 msgid "g A l F d"
 msgstr "l, d. F G \\\\U\\\\h\\\\r"
 
-#: ../../include/identity.php:753 ../../include/identity.php:833
+#: ../../include/identity.php:757 ../../include/identity.php:837
 msgid "F d"
 msgstr "d. F"
 
-#: ../../include/identity.php:798 ../../include/identity.php:873
+#: ../../include/identity.php:802 ../../include/identity.php:877
 #: ../../mod/ping.php:284
 msgid "[today]"
 msgstr "[Heute]"
 
-#: ../../include/identity.php:810
+#: ../../include/identity.php:814
 msgid "Birthday Reminders"
 msgstr "Geburtstags Erinnerungen"
 
-#: ../../include/identity.php:811
+#: ../../include/identity.php:815
 msgid "Birthdays this week:"
 msgstr "Geburtstage in dieser Woche:"
 
-#: ../../include/identity.php:866
+#: ../../include/identity.php:870
 msgid "[No description]"
 msgstr "[Keine Beschreibung]"
 
-#: ../../include/identity.php:884
+#: ../../include/identity.php:888
 msgid "Event Reminders"
 msgstr "Veranstaltungs- Erinnerungen"
 
-#: ../../include/identity.php:885
+#: ../../include/identity.php:889
 msgid "Events this week:"
 msgstr "Veranstaltungen in dieser Woche:"
 
-#: ../../include/identity.php:898 ../../include/identity.php:982
+#: ../../include/identity.php:902 ../../include/identity.php:986
 #: ../../mod/profperm.php:107
 msgid "Profile"
 msgstr "Profil"
 
-#: ../../include/identity.php:906 ../../mod/settings.php:924
+#: ../../include/identity.php:910 ../../mod/settings.php:937
 msgid "Full Name:"
 msgstr "Voller Name:"
 
-#: ../../include/identity.php:913
+#: ../../include/identity.php:917
 msgid "j F, Y"
 msgstr "j F, Y"
 
-#: ../../include/identity.php:914
+#: ../../include/identity.php:918
 msgid "j F"
 msgstr "j F"
 
-#: ../../include/identity.php:921
+#: ../../include/identity.php:925
 msgid "Birthday:"
 msgstr "Geburtstag:"
 
-#: ../../include/identity.php:925
+#: ../../include/identity.php:929
 msgid "Age:"
 msgstr "Alter:"
 
-#: ../../include/identity.php:934
+#: ../../include/identity.php:938
 #, php-format
 msgid "for %1$d %2$s"
 msgstr "seit %1$d %2$s"
 
-#: ../../include/identity.php:937 ../../mod/profiles.php:526
+#: ../../include/identity.php:941 ../../mod/profiles.php:526
 msgid "Sexual Preference:"
 msgstr "Sexuelle Orientierung:"
 
-#: ../../include/identity.php:941 ../../mod/profiles.php:528
+#: ../../include/identity.php:945 ../../mod/profiles.php:528
 msgid "Hometown:"
 msgstr "Heimatstadt:"
 
-#: ../../include/identity.php:943
+#: ../../include/identity.php:947
 msgid "Tags:"
 msgstr "Schlagworte:"
 
-#: ../../include/identity.php:945 ../../mod/profiles.php:529
+#: ../../include/identity.php:949 ../../mod/profiles.php:529
 msgid "Political Views:"
 msgstr "Politische Ansichten:"
 
-#: ../../include/identity.php:947
+#: ../../include/identity.php:951
 msgid "Religion:"
 msgstr "Religion:"
 
-#: ../../include/identity.php:949 ../../mod/directory.php:165
+#: ../../include/identity.php:953 ../../mod/directory.php:165
 msgid "About:"
 msgstr "Über:"
 
-#: ../../include/identity.php:951
+#: ../../include/identity.php:955
 msgid "Hobbies/Interests:"
 msgstr "Hobbys/Interessen:"
 
-#: ../../include/identity.php:953 ../../mod/profiles.php:532
+#: ../../include/identity.php:957 ../../mod/profiles.php:532
 msgid "Likes:"
 msgstr "Gefällt:"
 
-#: ../../include/identity.php:955 ../../mod/profiles.php:533
+#: ../../include/identity.php:959 ../../mod/profiles.php:533
 msgid "Dislikes:"
 msgstr "Gefällt nicht:"
 
-#: ../../include/identity.php:958
+#: ../../include/identity.php:962
 msgid "Contact information and Social Networks:"
 msgstr "Kontaktinformation und soziale Netzwerke:"
 
-#: ../../include/identity.php:960
+#: ../../include/identity.php:964
 msgid "My other channels:"
 msgstr "Meine anderen Kanäle:"
 
-#: ../../include/identity.php:962
+#: ../../include/identity.php:966
 msgid "Musical interests:"
 msgstr "Musikalische Interessen:"
 
-#: ../../include/identity.php:964
+#: ../../include/identity.php:968
 msgid "Books, literature:"
 msgstr "Bücher, Literatur:"
 
-#: ../../include/identity.php:966
+#: ../../include/identity.php:970
 msgid "Television:"
 msgstr "Fernsehen:"
 
-#: ../../include/identity.php:968
+#: ../../include/identity.php:972
 msgid "Film/dance/culture/entertainment:"
 msgstr "Film/Tanz/Kultur/Unterhaltung:"
 
-#: ../../include/identity.php:970
+#: ../../include/identity.php:974
 msgid "Love/Romance:"
 msgstr "Liebe/Romantik:"
 
-#: ../../include/identity.php:972
+#: ../../include/identity.php:976
 msgid "Work/employment:"
 msgstr "Arbeit/Anstellung:"
 
-#: ../../include/identity.php:974
+#: ../../include/identity.php:978
 msgid "School/education:"
 msgstr "Schule/Ausbildung:"
 
@@ -2197,11 +2198,12 @@ msgid "Private Message"
 msgstr "Private Nachricht"
 
 #: ../../include/ItemObject.php:96 ../../include/page_widgets.php:8
-#: ../../mod/thing.php:235 ../../mod/menu.php:59 ../../mod/webpages.php:118
-#: ../../mod/editpost.php:103 ../../mod/layouts.php:102
-#: ../../mod/settings.php:578 ../../mod/editlayout.php:106
-#: ../../mod/blocks.php:93 ../../mod/editwebpage.php:144
-#: ../../mod/editblock.php:120 ../../mod/filestorage.php:170
+#: ../../include/menu.php:41 ../../mod/thing.php:235
+#: ../../mod/settings.php:578 ../../mod/menu.php:59 ../../mod/webpages.php:118
+#: ../../mod/editpost.php:112 ../../mod/layouts.php:102
+#: ../../mod/editlayout.php:106 ../../mod/blocks.php:93
+#: ../../mod/editwebpage.php:144 ../../mod/editblock.php:120
+#: ../../mod/filestorage.php:170
 msgid "Edit"
 msgstr "Bearbeiten"
 
@@ -2292,15 +2294,15 @@ msgstr "Das bist Du"
 
 #: ../../include/ItemObject.php:548 ../../mod/events.php:469
 #: ../../mod/thing.php:283 ../../mod/thing.php:326 ../../mod/invite.php:156
+#: ../../mod/settings.php:516 ../../mod/settings.php:628
+#: ../../mod/settings.php:656 ../../mod/settings.php:680
+#: ../../mod/settings.php:752 ../../mod/settings.php:929
 #: ../../mod/chat.php:162 ../../mod/chat.php:192 ../../mod/connect.php:92
-#: ../../mod/group.php:81 ../../mod/admin.php:431 ../../mod/admin.php:738
-#: ../../mod/admin.php:878 ../../mod/admin.php:1077 ../../mod/admin.php:1164
+#: ../../mod/group.php:81 ../../mod/admin.php:431 ../../mod/admin.php:739
+#: ../../mod/admin.php:879 ../../mod/admin.php:1078 ../../mod/admin.php:1165
 #: ../../mod/connedit.php:437 ../../mod/profiles.php:506
 #: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/setup.php:304
-#: ../../mod/setup.php:347 ../../mod/settings.php:516
-#: ../../mod/settings.php:628 ../../mod/settings.php:656
-#: ../../mod/settings.php:680 ../../mod/settings.php:752
-#: ../../mod/settings.php:916 ../../mod/import.php:387 ../../mod/mail.php:223
+#: ../../mod/setup.php:347 ../../mod/import.php:387 ../../mod/mail.php:223
 #: ../../mod/mail.php:335 ../../mod/poke.php:166 ../../mod/fsuggest.php:108
 #: ../../mod/filestorage.php:131 ../../mod/photos.php:566
 #: ../../mod/photos.php:671 ../../mod/photos.php:954 ../../mod/photos.php:994
@@ -2649,7 +2651,7 @@ msgstr "Ausgeloggt."
 msgid "Failed authentication"
 msgstr "Authentifizierung fehlgeschlagen"
 
-#: ../../include/auth.php:203
+#: ../../include/auth.php:203 ../../mod/openid.php:185
 msgid "Login failed."
 msgstr "Login fehlgeschlagen."
 
@@ -3017,35 +3019,31 @@ msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements."
 msgid "This action is not available under your subscription plan."
 msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."
 
-#: ../../include/follow.php:21
+#: ../../include/follow.php:23
 msgid "Channel is blocked on this site."
 msgstr "Der Kanal ist auf dieser Seite blockiert "
 
-#: ../../include/follow.php:26
+#: ../../include/follow.php:28
 msgid "Channel location missing."
 msgstr "Adresse des Kanals fehlt."
 
-#: ../../include/follow.php:43
-msgid "Channel discovery failed. Website may be down or misconfigured."
-msgstr "Auffinden des Kanals schlug fehl. Die Webseite könnte falsch konfiguriert oder abgeschaltet sein."
-
-#: ../../include/follow.php:51
-msgid "Response from remote channel was not understood."
-msgstr "Antwort des entfernten Kanals war unverständlich."
-
-#: ../../include/follow.php:58
+#: ../../include/follow.php:54
 msgid "Response from remote channel was incomplete."
 msgstr "Antwort des entfernten Kanals war unvollständig."
 
-#: ../../include/follow.php:129
+#: ../../include/follow.php:126
+msgid "Channel discovery failed."
+msgstr ""
+
+#: ../../include/follow.php:143
 msgid "local account not found."
 msgstr "Lokales Konto nicht gefunden."
 
-#: ../../include/follow.php:138
+#: ../../include/follow.php:152
 msgid "Cannot connect to yourself."
 msgstr "Du kannst Dich nicht mit Dir selbst verbinden."
 
-#: ../../include/security.php:280
+#: ../../include/security.php:291
 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."
@@ -3149,36 +3147,40 @@ msgid ""
 "Extremely advanced. Leave this alone unless you know what you are doing"
 msgstr "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust"
 
-#: ../../include/items.php:231 ../../mod/like.php:55 ../../mod/profperm.php:23
+#: ../../include/items.php:240 ../../mod/like.php:55 ../../mod/profperm.php:23
 #: ../../mod/group.php:68 ../../index.php:350
 msgid "Permission denied"
 msgstr "Keine Berechtigung"
 
-#: ../../include/items.php:3453 ../../mod/thing.php:78 ../../mod/admin.php:151
-#: ../../mod/admin.php:782 ../../mod/admin.php:985 ../../mod/viewsrc.php:18
+#: ../../include/items.php:756 ../../mod/connedit.php:395
+msgid "Unknown"
+msgstr "Unbekannt"
+
+#: ../../include/items.php:3513 ../../mod/thing.php:78 ../../mod/admin.php:151
+#: ../../mod/admin.php:783 ../../mod/admin.php:986 ../../mod/viewsrc.php:18
 #: ../../mod/home.php:63 ../../mod/display.php:32 ../../mod/filestorage.php:18
 msgid "Item not found."
 msgstr "Element nicht gefunden."
 
-#: ../../include/items.php:3809 ../../mod/group.php:38 ../../mod/group.php:140
+#: ../../include/items.php:3849 ../../mod/group.php:38 ../../mod/group.php:140
 msgid "Collection not found."
 msgstr "Sammlung nicht gefunden"
 
-#: ../../include/items.php:3824
+#: ../../include/items.php:3864
 msgid "Collection is empty."
 msgstr "Sammlung ist leer."
 
-#: ../../include/items.php:3831
+#: ../../include/items.php:3871
 #, php-format
 msgid "Collection: %s"
 msgstr "Sammlung: %s"
 
-#: ../../include/items.php:3842
+#: ../../include/items.php:3882
 #, php-format
 msgid "Connection: %s"
 msgstr "Verbindung: %s"
 
-#: ../../include/items.php:3845
+#: ../../include/items.php:3885
 msgid "Connection not found."
 msgstr "Die Verbindung wurde nicht gefunden."
 
@@ -3414,2790 +3416,2823 @@ msgid ""
 "http://getzot.com"
 msgstr "Für weitere Informationen über das Red-Matrix-Projekt und warum es das Potential hat, das Internet, wie wir es kennen, grundlegend zu verändern, besuche http://getzot.com"
 
-#: ../../mod/item.php:145
-msgid "Unable to locate original post."
-msgstr "Originalbeitrag nicht gefunden."
-
-#: ../../mod/item.php:346
-msgid "Empty post discarded."
-msgstr "Leeren Beitrag verworfen."
+#: ../../mod/settings.php:71
+msgid "Name is required"
+msgstr "Name ist erforderlich"
 
-#: ../../mod/item.php:388
-msgid "Executable content type not permitted to this channel."
-msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."
+#: ../../mod/settings.php:75
+msgid "Key and Secret are required"
+msgstr "Schlüssel und Geheimnis werden benötigt"
 
-#: ../../mod/item.php:835
-msgid "System error. Post not saved."
-msgstr "Systemfehler. Beitrag nicht gespeichert."
+#: ../../mod/settings.php:79 ../../mod/settings.php:542
+msgid "Update"
+msgstr "Aktualisieren"
 
-#: ../../mod/item.php:1102 ../../mod/wall_upload.php:41
-msgid "Wall Photos"
-msgstr "Wall Fotos"
+#: ../../mod/settings.php:195
+msgid "Passwords do not match. Password unchanged."
+msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert."
 
-#: ../../mod/item.php:1182
-#, 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/settings.php:199
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert."
 
-#: ../../mod/item.php:1188
-#, php-format
-msgid "You have reached your limit of %1$.0f webpages."
-msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."
+#: ../../mod/settings.php:212
+msgid "Password changed."
+msgstr "Kennwort geändert."
 
-#: ../../mod/menu.php:21
-msgid "Menu updated."
-msgstr "Menü aktualisiert."
+#: ../../mod/settings.php:214
+msgid "Password update failed. Please try again."
+msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal."
 
-#: ../../mod/menu.php:25
-msgid "Unable to update menu."
-msgstr "Kann Menü nicht aktualisieren."
+#: ../../mod/settings.php:228
+msgid "Not valid email."
+msgstr "Keine gültige E-Mail Adresse."
 
-#: ../../mod/menu.php:30
-msgid "Menu created."
-msgstr "Menü erstellt."
+#: ../../mod/settings.php:231
+msgid "Protected email address. Cannot change to that email."
+msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden."
 
-#: ../../mod/menu.php:34
-msgid "Unable to create menu."
-msgstr "Kann Menü nicht erstellen."
+#: ../../mod/settings.php:240
+msgid "System failure storing new email. Please try again."
+msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal."
 
-#: ../../mod/menu.php:57
-msgid "Manage Menus"
-msgstr "Menüs verwalten"
+#: ../../mod/settings.php:444
+msgid "Settings updated."
+msgstr "Einstellungen aktualisiert."
 
-#: ../../mod/menu.php:60
-msgid "Drop"
-msgstr "Löschen"
+#: ../../mod/settings.php:515 ../../mod/settings.php:541
+#: ../../mod/settings.php:577
+msgid "Add application"
+msgstr "Anwendung hinzufügen"
 
-#: ../../mod/menu.php:62
-msgid "Create a new menu"
-msgstr "Neues Menü erstellen"
+#: ../../mod/settings.php:518 ../../mod/settings.php:544
+msgid "Name"
+msgstr "Name"
 
-#: ../../mod/menu.php:63
-msgid "Delete this menu"
-msgstr "Lösche dieses Menü"
+#: ../../mod/settings.php:518
+msgid "Name of application"
+msgstr "Name der Anwendung"
 
-#: ../../mod/menu.php:64 ../../mod/menu.php:109
-msgid "Edit menu contents"
-msgstr "Bearbeite Menü Inhalte"
+#: ../../mod/settings.php:519 ../../mod/settings.php:545
+msgid "Consumer Key"
+msgstr "Consumer Key"
 
-#: ../../mod/menu.php:65
-msgid "Edit this menu"
-msgstr "Dieses Menü bearbeiten"
+#: ../../mod/settings.php:519 ../../mod/settings.php:520
+msgid "Automatically generated - change if desired. Max length 20"
+msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20"
 
-#: ../../mod/menu.php:80
-msgid "New Menu"
-msgstr "Neues Menü"
+#: ../../mod/settings.php:520 ../../mod/settings.php:546
+msgid "Consumer Secret"
+msgstr "Consumer Secret"
 
-#: ../../mod/menu.php:81 ../../mod/menu.php:110
-msgid "Menu name"
-msgstr "Menü Name"
+#: ../../mod/settings.php:521 ../../mod/settings.php:547
+msgid "Redirect"
+msgstr "Umleitung"
 
-#: ../../mod/menu.php:81 ../../mod/menu.php:110
-msgid "Must be unique, only seen by you"
-msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar"
+#: ../../mod/settings.php:521
+msgid ""
+"Redirect URI - leave blank unless your application specifically requires "
+"this"
+msgstr "Umleitungs-URl – lasse das leer, wenn Deine Anwendung es nicht explizit erfordert"
 
-#: ../../mod/menu.php:82 ../../mod/menu.php:111
-msgid "Menu title"
-msgstr "Menü Titel"
+#: ../../mod/settings.php:522 ../../mod/settings.php:548
+msgid "Icon url"
+msgstr "Symbol-URL"
 
-#: ../../mod/menu.php:82 ../../mod/menu.php:111
-msgid "Menu title as seen by others"
-msgstr "Menü Titel wie er von anderen gesehen wird"
+#: ../../mod/settings.php:522
+msgid "Optional"
+msgstr "Optional"
 
-#: ../../mod/menu.php:83 ../../mod/menu.php:112
-msgid "Allow bookmarks"
-msgstr "Erlaube Lesezeichen"
+#: ../../mod/settings.php:533
+msgid "You can't edit this application."
+msgstr "Diese Anwendung kann nicht bearbeitet werden."
 
-#: ../../mod/menu.php:83 ../../mod/menu.php:112
-msgid "Menu may be used to store saved bookmarks"
-msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden"
+#: ../../mod/settings.php:576
+msgid "Connected Apps"
+msgstr "Verbundene Apps"
 
-#: ../../mod/menu.php:84 ../../mod/mitem.php:142 ../../mod/new_channel.php:117
-msgid "Create"
-msgstr "Erstelle"
+#: ../../mod/settings.php:580
+msgid "Client key starts with"
+msgstr "Client key beginnt mit"
 
-#: ../../mod/menu.php:92 ../../mod/mitem.php:14
-msgid "Menu not found."
-msgstr "Menü nicht gefunden"
+#: ../../mod/settings.php:581
+msgid "No name"
+msgstr "Kein Name"
 
-#: ../../mod/menu.php:98
-msgid "Menu deleted."
-msgstr "Menü gelöscht."
+#: ../../mod/settings.php:582
+msgid "Remove authorization"
+msgstr "Authorisierung aufheben"
 
-#: ../../mod/menu.php:100
-msgid "Menu could not be deleted."
-msgstr "Menü konnte nicht gelöscht werden."
+#: ../../mod/settings.php:593
+msgid "No feature settings configured"
+msgstr "Keine Funktions-Einstellungen konfiguriert"
 
-#: ../../mod/menu.php:106
-msgid "Edit Menu"
-msgstr "Menü bearbeiten"
+#: ../../mod/settings.php:601
+msgid "Feature Settings"
+msgstr "Funktions-Einstellungen"
 
-#: ../../mod/menu.php:108
-msgid "Add or remove entries to this menu"
-msgstr "Einträge zu diesem Menü hinzufügen oder entfernen"
+#: ../../mod/settings.php:624
+msgid "Account Settings"
+msgstr "Konto-Einstellungen"
 
-#: ../../mod/menu.php:114 ../../mod/mitem.php:186
-msgid "Modify"
-msgstr "Ändern"
+#: ../../mod/settings.php:625
+msgid "Password Settings"
+msgstr "Kennwort-Einstellungen"
 
-#: ../../mod/menu.php:120 ../../mod/mitem.php:78 ../../mod/xchan.php:27
-#: ../../mod/dirprofile.php:181
-msgid "Not found."
-msgstr "Nicht gefunden."
+#: ../../mod/settings.php:626
+msgid "New Password:"
+msgstr "Neues Passwort:"
 
-#: ../../mod/webpages.php:121 ../../mod/layouts.php:105
-#: ../../mod/blocks.php:96
-msgid "View"
-msgstr "Ansicht"
+#: ../../mod/settings.php:627
+msgid "Confirm:"
+msgstr "Bestätigen:"
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Zugriff für die Anwendung autorisieren"
+#: ../../mod/settings.php:627
+msgid "Leave password fields blank unless changing"
+msgstr "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern"
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Trage folgenden Sicherheitscode in der Anwendung ein:"
+#: ../../mod/settings.php:629 ../../mod/settings.php:938
+msgid "Email Address:"
+msgstr "Email Adresse:"
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Zum Weitermachen, bitte einloggen."
+#: ../../mod/settings.php:630
+msgid "Remove Account"
+msgstr "Konto entfernen"
 
-#: ../../mod/api.php:104
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?"
+#: ../../mod/settings.php:631
+msgid "Warning: This action is permanent and cannot be reversed."
+msgstr "Achtung: Diese Aktion ist endgültig und kann nicht rückgängig gemacht werden."
 
-#: ../../mod/api.php:105 ../../mod/profiles.php:483 ../../mod/settings.php:878
-#: ../../mod/settings.php:883
-msgid "Yes"
-msgstr "Ja"
+#: ../../mod/settings.php:647
+msgid "Off"
+msgstr "Aus"
 
-#: ../../mod/api.php:106 ../../mod/profiles.php:484 ../../mod/settings.php:878
-#: ../../mod/settings.php:883
-msgid "No"
-msgstr "Nein"
+#: ../../mod/settings.php:647
+msgid "On"
+msgstr "An"
 
-#: ../../mod/apps.php:8
-msgid "No installed applications."
-msgstr "Keine installierten Anwendungen."
+#: ../../mod/settings.php:654
+msgid "Additional Features"
+msgstr "Zusätzliche Funktionen"
 
-#: ../../mod/apps.php:13
-msgid "Applications"
-msgstr "Anwendungen"
+#: ../../mod/settings.php:679
+msgid "Connector Settings"
+msgstr "Connector-Einstellungen"
 
-#: ../../mod/rpost.php:86 ../../mod/editpost.php:42
-msgid "Edit post"
-msgstr "Bearbeite Beitrag"
+#: ../../mod/settings.php:709 ../../mod/admin.php:379
+msgid "No special theme for mobile devices"
+msgstr "Keine spezielle Theme für mobile Geräte"
 
-#: ../../mod/cloud.php:112
-msgid "Red Matrix - Guests: Username: {your email address}, Password: +++"
-msgstr "Red-Matrix-Gäste: Nutzername: {Deine E-Mail-Adresse}; Passwort: +++"
+#: ../../mod/settings.php:750
+msgid "Display Settings"
+msgstr "Anzeige-Einstellungen"
 
-#: ../../mod/bookmarks.php:38
-msgid "Bookmark added"
-msgstr "Lesezeichen hinzugefügt"
+#: ../../mod/settings.php:756
+msgid "Display Theme:"
+msgstr "Anzeige-Theme:"
 
-#: ../../mod/bookmarks.php:53
-msgid "My Bookmarks"
-msgstr "Meine Lesezeichen"
+#: ../../mod/settings.php:757
+msgid "Mobile Theme:"
+msgstr "Mobile Theme:"
 
-#: ../../mod/bookmarks.php:64
-msgid "My Connections Bookmarks"
-msgstr "Lesezeichen meiner Kontakte"
+#: ../../mod/settings.php:758
+msgid "Update browser every xx seconds"
+msgstr "Browser alle xx Sekunden aktualisieren"
 
-#: ../../mod/subthread.php:105
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s folgt nun %2$ss %3$s"
+#: ../../mod/settings.php:758
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Minimum 10 Sekunden, kein Maximum"
 
-#: ../../mod/update_network.php:23 ../../mod/update_channel.php:43
-#: ../../mod/update_search.php:46 ../../mod/update_display.php:25
-#: ../../mod/update_community.php:18
-msgid "[Embedded content - reload page to view]"
-msgstr "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]"
+#: ../../mod/settings.php:759
+msgid "Maximum number of conversations to load at any time:"
+msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:"
 
-#: ../../mod/chanview.php:77 ../../mod/home.php:50 ../../mod/page.php:47
-#: ../../mod/wall_upload.php:35
-msgid "Channel not found."
-msgstr "Kanal nicht gefunden."
+#: ../../mod/settings.php:759
+msgid "Maximum of 100 items"
+msgstr "Maximum: 100 Beiträge"
 
-#: ../../mod/chanview.php:93
-msgid "toggle full screen mode"
-msgstr "auf Vollbildmodus umschalten"
+#: ../../mod/settings.php:760
+msgid "Don't show emoticons"
+msgstr "Emoticons nicht zeigen"
 
-#: ../../mod/tagger.php:98
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s hat %2$ss %3$s mit %4$s verschlagwortet"
+#: ../../mod/settings.php:761
+msgid "Do not view remote profiles in frames"
+msgstr "Profile/Kanäle direkt anzeigen"
 
-#: ../../mod/chat.php:18 ../../mod/channel.php:25
-msgid "You must be logged in to see this page."
-msgstr "Du musst angemeldet sein, um diese Seite betrachten zu können."
+#: ../../mod/settings.php:761
+msgid "By default open in a sub-window of your own site"
+msgstr "Wenn dieser Haken nicht gesetzt ist, werden Profile in einem Unterfenster auf Deinem eigenen Server angezeigt."
 
-#: ../../mod/chat.php:163
-msgid "Leave Room"
-msgstr "Raum verlassen"
+#: ../../mod/settings.php:796
+msgid "Nobody except yourself"
+msgstr "Niemand außer Dir selbst"
 
-#: ../../mod/chat.php:164
-msgid "I am away right now"
-msgstr "Ich bin gerade nicht da"
+#: ../../mod/settings.php:797
+msgid "Only those you specifically allow"
+msgstr "Nur die, denen Du es explizit erlaubst"
 
-#: ../../mod/chat.php:165
-msgid "I am online"
-msgstr "Ich bin online"
+#: ../../mod/settings.php:798
+msgid "Anybody in your address book"
+msgstr "Jeder aus Ihrem Adressbuch"
 
-#: ../../mod/chat.php:189 ../../mod/chat.php:209
-msgid "New Chatroom"
-msgstr "Neuer Chatraum"
+#: ../../mod/settings.php:799
+msgid "Anybody on this website"
+msgstr "Jeder auf dieser Website"
 
-#: ../../mod/chat.php:190
-msgid "Chatroom Name"
-msgstr "Name des Chatraums"
+#: ../../mod/settings.php:800
+msgid "Anybody in this network"
+msgstr "Jeder in diesem Netzwerk"
 
-#: ../../mod/chat.php:205
-#, php-format
-msgid "%1$s's Chatrooms"
-msgstr "%1$ss Chaträume"
+#: ../../mod/settings.php:801
+msgid "Anybody authenticated"
+msgstr "Jeder authentifizierte"
 
-#: ../../mod/viewconnections.php:17 ../../mod/search.php:13
-#: ../../mod/directory.php:15 ../../mod/display.php:9
-#: ../../mod/community.php:18 ../../mod/dirprofile.php:9
-#: ../../mod/photos.php:443
-msgid "Public access denied."
-msgstr "Öffentlicher Zugang verweigert."
+#: ../../mod/settings.php:802
+msgid "Anybody on the internet"
+msgstr "Jeder im Internet"
 
-#: ../../mod/viewconnections.php:43
-msgid "No connections."
-msgstr "Keine Verbindungen."
+#: ../../mod/settings.php:879
+msgid "Publish your default profile in the network directory"
+msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen"
 
-#: ../../mod/viewconnections.php:55
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "%ss Profil [%s] besuchen"
+#: ../../mod/settings.php:879 ../../mod/settings.php:884
+#: ../../mod/settings.php:955 ../../mod/api.php:106 ../../mod/profiles.php:484
+msgid "No"
+msgstr "Nein"
 
-#: ../../mod/viewconnections.php:70
-msgid "View Connnections"
-msgstr "Zeige Verbindungen"
+#: ../../mod/settings.php:879 ../../mod/settings.php:884
+#: ../../mod/settings.php:955 ../../mod/api.php:105 ../../mod/profiles.php:483
+msgid "Yes"
+msgstr "Ja"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Schlagwort entfernt"
+#: ../../mod/settings.php:884
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Schlagwort entfernen"
+#: ../../mod/settings.php:888 ../../mod/profile_photo.php:288
+msgid "or"
+msgstr "oder"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Schlagwort zum Entfernen auswählen:"
+#: ../../mod/settings.php:893
+msgid "Your channel address is"
+msgstr "Deine Kanal-Adresse lautet"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 ../../mod/photos.php:909
-msgid "Remove"
-msgstr "Entferne"
+#: ../../mod/settings.php:927
+msgid "Channel Settings"
+msgstr "Kanal-Einstellungen"
 
-#: ../../mod/connect.php:55 ../../mod/connect.php:103
-msgid "Continue"
-msgstr "Fortfahren"
+#: ../../mod/settings.php:936
+msgid "Basic Settings"
+msgstr "Grundeinstellungen"
 
-#: ../../mod/connect.php:84
-msgid "Premium Channel Setup"
-msgstr "Premium-Kanal-Einrichtung"
+#: ../../mod/settings.php:939
+msgid "Your Timezone:"
+msgstr "Ihre Zeitzone:"
 
-#: ../../mod/connect.php:86
-msgid "Enable premium channel connection restrictions"
-msgstr "Einschränkungen für einen Premium-Kanal aktivieren"
+#: ../../mod/settings.php:940
+msgid "Default Post Location:"
+msgstr "Standardstandort:"
 
-#: ../../mod/connect.php:87
-msgid ""
-"Please enter your restrictions or conditions, such as paypal receipt, usage "
-"guidelines, etc."
-msgstr "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc."
+#: ../../mod/settings.php:941
+msgid "Use Browser Location:"
+msgstr "Standort des Browsers verwenden:"
 
-#: ../../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/settings.php:943
+msgid "Adult Content"
+msgstr "Nicht jugendfreie Inhalte"
 
-#: ../../mod/connect.php:90
+#: ../../mod/settings.php:943
 msgid ""
-"Potential connections will then see the following text before proceeding:"
-msgstr "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:"
+"This channel frequently or regularly publishes adult content. (Please tag "
+"any adult material and/or nudity with #NSFW)"
+msgstr "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)"
 
-#: ../../mod/connect.php:91 ../../mod/connect.php:112
-msgid ""
-"By continuing, I certify that I have complied with any instructions provided"
-" on this page."
-msgstr "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen aus dieser Seite."
+#: ../../mod/settings.php:945
+msgid "Security and Privacy Settings"
+msgstr "Sicherheits- und Datenschutz-Einstellungen"
 
-#: ../../mod/connect.php:100
-msgid "(No specific instructions have been provided by the channel owner.)"
-msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)"
+#: ../../mod/settings.php:947
+msgid "Hide my online presence"
+msgstr "Meine Online-Präsenz verbergen"
 
-#: ../../mod/connect.php:108
-msgid "Restricted or Premium Channel"
-msgstr "Eingeschränkter oder Premium-Kanal"
+#: ../../mod/settings.php:947
+msgid "Prevents displaying in your profile that you are online"
+msgstr "Verhindert die Anzeige Deines Online-Status in deinem Profil"
 
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
+#: ../../mod/settings.php:949
+msgid "Simple Privacy Settings:"
+msgstr "Einfache Privatsphäre-Einstellungen"
 
-#: ../../mod/delegate.php:121
-msgid "Delegate Page Management"
-msgstr "Delegiere das Management für diese Seite"
+#: ../../mod/settings.php:950
+msgid ""
+"Very Public - <em>extremely permissive (should be used with caution)</em>"
+msgstr "Komplett offen – <em>extrem ungeschützt (mit großer Vorsicht verwenden!)</em>"
 
-#: ../../mod/delegate.php:123
+#: ../../mod/settings.php:951
 msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"
+"Typical - <em>default public, privacy when desired (similar to social "
+"network permissions but with improved privacy)</em>"
+msgstr "Typisch – <em>Default öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)</em>"
 
-#: ../../mod/delegate.php:124
-msgid "Existing Page Managers"
-msgstr "Vorhandene Seitenmanager"
+#: ../../mod/settings.php:952
+msgid "Private - <em>default private, never open or public</em>"
+msgstr "Private – <em>Default privat, nie offen oder öffentlich</em>"
 
-#: ../../mod/delegate.php:126
-msgid "Existing Page Delegates"
-msgstr "Vorhandene Bevollmächtigte für die Seite"
+#: ../../mod/settings.php:953
+msgid "Blocked - <em>default blocked to/from everybody</em>"
+msgstr "Blockiert – <em>Alle per Default blockiert</em>"
 
-#: ../../mod/delegate.php:128
-msgid "Potential Delegates"
-msgstr "Potentielle Bevollmächtigte"
+#: ../../mod/settings.php:955
+msgid "Allow others to tag your posts"
+msgstr "Erlaube anderen deine Beiträge mit Schlagwörtern zu versehen"
 
-#: ../../mod/delegate.php:131
-msgid "Add"
-msgstr "Hinzufügen"
+#: ../../mod/settings.php:955
+msgid ""
+"Often used by the community to retro-actively flag inappropriate content"
+msgstr ""
 
-#: ../../mod/delegate.php:132
-msgid "No entries."
-msgstr "Keine Einträge."
+#: ../../mod/settings.php:957
+msgid "Advanced Privacy Settings"
+msgstr "Fortgeschrittene Privatsphäre-Einstellungen"
 
-#: ../../mod/chatsvc.php:102
-msgid "Away"
-msgstr "Abwesend"
+#: ../../mod/settings.php:959
+msgid "Maximum Friend Requests/Day:"
+msgstr "Maximale Kontaktanfragen pro Tag:"
 
-#: ../../mod/chatsvc.php:106
-msgid "Online"
-msgstr "Online"
+#: ../../mod/settings.php:959
+msgid "May reduce spam activity"
+msgstr "Kann die Spam-Aktivität verringern"
 
-#: ../../mod/attach.php:9
-msgid "Item not available."
-msgstr "Element nicht verfügbar."
+#: ../../mod/settings.php:960
+msgid "Default Post Permissions"
+msgstr "Standardeinstellungen für Beitrags-Zugriffsrechte"
 
-#: ../../mod/mitem.php:47
-msgid "Menu element updated."
-msgstr "Menü-Element aktualisiert."
+#: ../../mod/settings.php:961 ../../mod/mitem.php:134 ../../mod/mitem.php:177
+msgid "(click to open/close)"
+msgstr "(zum öffnen/schließen anklicken)"
 
-#: ../../mod/mitem.php:51
-msgid "Unable to update menu element."
-msgstr "Kann Menü-Element nicht aktualisieren."
+#: ../../mod/settings.php:972
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:"
 
-#: ../../mod/mitem.php:57
-msgid "Menu element added."
-msgstr "Menü-Bestandteil hinzugefügt."
+#: ../../mod/settings.php:972
+msgid "Useful to reduce spamming"
+msgstr "Nützlich, um Spam zu verringern"
 
-#: ../../mod/mitem.php:61
-msgid "Unable to add menu element."
-msgstr "Kann Menü-Bestandteil nicht hinzufügen."
+#: ../../mod/settings.php:975
+msgid "Notification Settings"
+msgstr "Benachrichtigungs-Einstellungen"
 
-#: ../../mod/mitem.php:96
-msgid "Manage Menu Elements"
-msgstr "Menü-Bestandteile verwalten"
+#: ../../mod/settings.php:976
+msgid "By default post a status message when:"
+msgstr "Sende standardmäßig Status-Nachrichten, wenn:"
 
-#: ../../mod/mitem.php:99
-msgid "Edit menu"
-msgstr "Menü bearbeiten"
+#: ../../mod/settings.php:977
+msgid "accepting a friend request"
+msgstr "Du eine Kontaktanfrage annimmst"
 
-#: ../../mod/mitem.php:102
-msgid "Edit element"
-msgstr "Bestandteil bearbeiten"
+#: ../../mod/settings.php:978
+msgid "joining a forum/community"
+msgstr "Du einem Forum beitrittst"
 
-#: ../../mod/mitem.php:103
-msgid "Drop element"
-msgstr "Bestandteil löschen"
+#: ../../mod/settings.php:979
+msgid "making an <em>interesting</em> profile change"
+msgstr "Du eine <em>interessante</em> Änderung an Deinem Profil vornimmst"
 
-#: ../../mod/mitem.php:104
-msgid "New element"
-msgstr "Neues Bestandteil"
+#: ../../mod/settings.php:980
+msgid "Send a notification email when:"
+msgstr "Eine E-Mail-Benachrichtigung senden, wenn:"
 
-#: ../../mod/mitem.php:105
-msgid "Edit this menu container"
-msgstr "Diesen Menü-Container bearbeiten"
+#: ../../mod/settings.php:981
+msgid "You receive an introduction"
+msgstr "Du eine Vorstellung erhältst"
 
-#: ../../mod/mitem.php:106
-msgid "Add menu element"
-msgstr "Menüelement hinzufügen"
+#: ../../mod/settings.php:982
+msgid "Your introductions are confirmed"
+msgstr "Deine Vorstellung bestätigt wurde."
 
-#: ../../mod/mitem.php:107
-msgid "Delete this menu item"
-msgstr "Lösche dieses Menü-Bestandteil"
+#: ../../mod/settings.php:983
+msgid "Someone writes on your profile wall"
+msgstr "Jemand auf Deine Pinnwand schreibt"
 
-#: ../../mod/mitem.php:108
-msgid "Edit this menu item"
-msgstr "Bearbeite dieses Menü-Bestandteil"
+#: ../../mod/settings.php:984
+msgid "Someone writes a followup comment"
+msgstr "Jemand einen Beitrag kommentiert"
 
-#: ../../mod/mitem.php:131
-msgid "New Menu Element"
-msgstr "Neues Menü-Bestandteil"
+#: ../../mod/settings.php:985
+msgid "You receive a private message"
+msgstr "Du eine private Nachricht erhältst"
 
-#: ../../mod/mitem.php:133 ../../mod/mitem.php:176
-msgid "Menu Item Permissions"
-msgstr "Zugriffsrechte des Menü-Elements"
+#: ../../mod/settings.php:986
+msgid "You receive a friend suggestion"
+msgstr "Du einen Kontaktvorschlag erhältst"
 
-#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:947
-msgid "(click to open/close)"
-msgstr "(zum öffnen/schließen anklicken)"
+#: ../../mod/settings.php:987
+msgid "You are tagged in a post"
+msgstr "Du in einem Beitrag erwähnt wurdest"
 
-#: ../../mod/mitem.php:136 ../../mod/mitem.php:180
-msgid "Link text"
-msgstr "Link Text"
+#: ../../mod/settings.php:988
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest"
 
-#: ../../mod/mitem.php:137 ../../mod/mitem.php:181
-msgid "URL of link"
-msgstr "URL des Links"
+#: ../../mod/settings.php:991
+msgid "Advanced Account/Page Type Settings"
+msgstr "Erweiterte Account- und Seitenart-Einstellungen"
 
-#: ../../mod/mitem.php:138 ../../mod/mitem.php:182
-msgid "Use Red magic-auth if available"
-msgstr "Verwende Red Magic-Auth wenn verfügbar"
+#: ../../mod/settings.php:992
+msgid "Change the behaviour of this account for special situations"
+msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen"
 
-#: ../../mod/mitem.php:139 ../../mod/mitem.php:183
-msgid "Open link in new window"
-msgstr "Öffne Link in neuem Fenster"
+#: ../../mod/settings.php:995
+msgid ""
+"Please enable expert mode (in <a href=\"settings/features\">Settings > "
+"Additional features</a>) to adjust!"
+msgstr "Aktiviere den Expertenmodus (unter <a href=\"settings/features\">Settings > Zusätzliche Funktionen</a>), um hier Einstellungen vorzunehmen!"
 
-#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
-msgid "Order in list"
-msgstr "Reihenfolge in der Liste"
+#: ../../mod/settings.php:996
+msgid "Miscellaneous Settings"
+msgstr ""
 
-#: ../../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/settings.php:998
+msgid "Personal menu to display in your channel pages"
+msgstr "Persönliches Menü zur Anzeige auf den Seiten deines Kanals"
 
-#: ../../mod/mitem.php:154
-msgid "Menu item not found."
-msgstr "Menü-Bestandteil nicht gefunden."
+#: ../../mod/menu.php:21
+msgid "Menu updated."
+msgstr "Menü aktualisiert."
 
-#: ../../mod/mitem.php:163
-msgid "Menu item deleted."
-msgstr "Menü-Bestandteil gelöscht."
+#: ../../mod/menu.php:25
+msgid "Unable to update menu."
+msgstr "Kann Menü nicht aktualisieren."
 
-#: ../../mod/mitem.php:165
-msgid "Menu item could not be deleted."
-msgstr "Menü-Bestandteil kann nicht gelöscht werden."
+#: ../../mod/menu.php:30
+msgid "Menu created."
+msgstr "Menü erstellt."
 
-#: ../../mod/mitem.php:174
-msgid "Edit Menu Element"
-msgstr "Bearbeite Menü-Bestandteil"
+#: ../../mod/menu.php:34
+msgid "Unable to create menu."
+msgstr "Kann Menü nicht erstellen."
 
-#: ../../mod/profperm.php:29 ../../mod/profperm.php:58
-msgid "Invalid profile identifier."
-msgstr "Ungültiger Profil-Identifikator"
+#: ../../mod/menu.php:57
+msgid "Manage Menus"
+msgstr "Menüs verwalten"
 
-#: ../../mod/profperm.php:105
-msgid "Profile Visibility Editor"
-msgstr "Profil-Sichtbarkeits-Editor"
+#: ../../mod/menu.php:60
+msgid "Drop"
+msgstr "Löschen"
 
-#: ../../mod/profperm.php:109
-msgid "Click on a contact to add or remove."
-msgstr "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen."
+#: ../../mod/menu.php:62
+msgid "Create a new menu"
+msgstr "Neues Menü erstellen"
 
-#: ../../mod/profperm.php:118
-msgid "Visible To"
-msgstr "Sichtbar für"
+#: ../../mod/menu.php:63
+msgid "Delete this menu"
+msgstr "Lösche dieses Menü"
 
-#: ../../mod/profperm.php:134 ../../mod/connections.php:250
-msgid "All Connections"
-msgstr "Alle Verbindungen"
+#: ../../mod/menu.php:64 ../../mod/menu.php:109
+msgid "Edit menu contents"
+msgstr "Bearbeite Menü Inhalte"
 
-#: ../../mod/group.php:20
-msgid "Collection created."
-msgstr "Sammlung erstellt."
+#: ../../mod/menu.php:65
+msgid "Edit this menu"
+msgstr "Dieses Menü bearbeiten"
 
-#: ../../mod/group.php:26
-msgid "Could not create collection."
-msgstr "Sammlung kann nicht erstellt werden."
+#: ../../mod/menu.php:80
+msgid "New Menu"
+msgstr "Neues Menü"
 
-#: ../../mod/group.php:54
-msgid "Collection updated."
-msgstr "Sammlung aktualisiert."
+#: ../../mod/menu.php:81 ../../mod/menu.php:110
+msgid "Menu name"
+msgstr "Menü Name"
 
-#: ../../mod/group.php:86
-msgid "Create a collection of channels."
-msgstr "Erstelle eine Sammlung von Kanälen."
+#: ../../mod/menu.php:81 ../../mod/menu.php:110
+msgid "Must be unique, only seen by you"
+msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar"
 
-#: ../../mod/group.php:87 ../../mod/group.php:183
-msgid "Collection Name: "
-msgstr "Name der Sammlung:"
+#: ../../mod/menu.php:82 ../../mod/menu.php:111
+msgid "Menu title"
+msgstr "Menü Titel"
 
-#: ../../mod/group.php:89 ../../mod/group.php:186
-msgid "Members are visible to other channels"
-msgstr "Mitglieder sind sichtbar für andere Kanäle"
+#: ../../mod/menu.php:82 ../../mod/menu.php:111
+msgid "Menu title as seen by others"
+msgstr "Menü Titel wie er von anderen gesehen wird"
 
-#: ../../mod/group.php:107
-msgid "Collection removed."
-msgstr "Sammlung gelöscht."
+#: ../../mod/menu.php:83 ../../mod/menu.php:112
+msgid "Allow bookmarks"
+msgstr "Erlaube Lesezeichen"
 
-#: ../../mod/group.php:109
-msgid "Unable to remove collection."
-msgstr "Löschen der Sammlung nicht möglich."
+#: ../../mod/menu.php:83 ../../mod/menu.php:112
+msgid "Menu may be used to store saved bookmarks"
+msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden"
 
-#: ../../mod/group.php:182
-msgid "Collection Editor"
-msgstr "Sammlung-Editor"
+#: ../../mod/menu.php:84 ../../mod/mitem.php:142 ../../mod/new_channel.php:117
+msgid "Create"
+msgstr "Erstelle"
 
-#: ../../mod/group.php:196
-msgid "Members"
-msgstr "Mitglieder"
+#: ../../mod/menu.php:92 ../../mod/mitem.php:14
+msgid "Menu not found."
+msgstr "Menü nicht gefunden"
 
-#: ../../mod/group.php:198
-msgid "All Connected Channels"
-msgstr "Alle verbundenen Kanäle"
+#: ../../mod/menu.php:98
+msgid "Menu deleted."
+msgstr "Menü gelöscht."
 
-#: ../../mod/group.php:231
-msgid "Click on a channel to add or remove."
-msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus."
+#: ../../mod/menu.php:100
+msgid "Menu could not be deleted."
+msgstr "Menü konnte nicht gelöscht werden."
 
-#: ../../mod/admin.php:48
-msgid "Theme settings updated."
-msgstr "Theme-Einstellungen aktualisiert."
+#: ../../mod/menu.php:106
+msgid "Edit Menu"
+msgstr "Menü bearbeiten"
 
-#: ../../mod/admin.php:88 ../../mod/admin.php:430
-msgid "Site"
-msgstr "Seite"
+#: ../../mod/menu.php:108
+msgid "Add or remove entries to this menu"
+msgstr "Einträge zu diesem Menü hinzufügen oder entfernen"
 
-#: ../../mod/admin.php:89 ../../mod/admin.php:737 ../../mod/admin.php:749
-msgid "Users"
-msgstr "Benutzer"
+#: ../../mod/menu.php:114 ../../mod/mitem.php:186
+msgid "Modify"
+msgstr "Ändern"
 
-#: ../../mod/admin.php:90 ../../mod/admin.php:835 ../../mod/admin.php:877
-msgid "Plugins"
-msgstr "Plug-Ins"
+#: ../../mod/menu.php:120 ../../mod/mitem.php:78 ../../mod/xchan.php:27
+#: ../../mod/dirprofile.php:181
+msgid "Not found."
+msgstr "Nicht gefunden."
 
-#: ../../mod/admin.php:91 ../../mod/admin.php:1040 ../../mod/admin.php:1076
-msgid "Themes"
-msgstr "Themes"
+#: ../../mod/webpages.php:121 ../../mod/layouts.php:105
+#: ../../mod/blocks.php:96
+msgid "View"
+msgstr "Ansicht"
 
-#: ../../mod/admin.php:92 ../../mod/admin.php:529
-msgid "Server"
-msgstr "Server"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Zugriff für die Anwendung autorisieren"
 
-#: ../../mod/admin.php:93
-msgid "DB updates"
-msgstr "DB-Aktualisierungen"
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Trage folgenden Sicherheitscode in der Anwendung ein:"
 
-#: ../../mod/admin.php:107 ../../mod/admin.php:114 ../../mod/admin.php:1163
-msgid "Logs"
-msgstr "Protokolle"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Zum Weitermachen, bitte einloggen."
 
-#: ../../mod/admin.php:113
-msgid "Plugin Features"
-msgstr "Plug-In Funktionen"
+#: ../../mod/api.php:104
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?"
 
-#: ../../mod/admin.php:115
-msgid "User registrations waiting for confirmation"
-msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten"
+#: ../../mod/apps.php:8
+msgid "No installed applications."
+msgstr "Keine installierten Anwendungen."
 
-#: ../../mod/admin.php:189
-msgid "Message queues"
-msgstr "Nachrichten-Warteschlangen"
+#: ../../mod/apps.php:13
+msgid "Applications"
+msgstr "Anwendungen"
 
-#: ../../mod/admin.php:194 ../../mod/admin.php:429 ../../mod/admin.php:528
-#: ../../mod/admin.php:736 ../../mod/admin.php:834 ../../mod/admin.php:876
-#: ../../mod/admin.php:1039 ../../mod/admin.php:1075 ../../mod/admin.php:1162
-msgid "Administration"
-msgstr "Administration"
+#: ../../mod/rpost.php:86 ../../mod/editpost.php:42
+msgid "Edit post"
+msgstr "Bearbeite Beitrag"
 
-#: ../../mod/admin.php:195
-msgid "Summary"
-msgstr "Zusammenfassung"
+#: ../../mod/cloud.php:112
+msgid "Red Matrix - Guests: Username: {your email address}, Password: +++"
+msgstr "Red-Matrix-Gäste: Nutzername: {Deine E-Mail-Adresse}; Passwort: +++"
 
-#: ../../mod/admin.php:197
-msgid "Registered users"
-msgstr "Registrierte Benutzer"
+#: ../../mod/bookmarks.php:38
+msgid "Bookmark added"
+msgstr "Lesezeichen hinzugefügt"
 
-#: ../../mod/admin.php:199 ../../mod/admin.php:532
-msgid "Pending registrations"
-msgstr "Ausstehende Registrierungen"
+#: ../../mod/bookmarks.php:53
+msgid "My Bookmarks"
+msgstr "Meine Lesezeichen"
 
-#: ../../mod/admin.php:200
-msgid "Version"
-msgstr "Version"
+#: ../../mod/bookmarks.php:64
+msgid "My Connections Bookmarks"
+msgstr "Lesezeichen meiner Kontakte"
 
-#: ../../mod/admin.php:202 ../../mod/admin.php:533
-msgid "Active plugins"
-msgstr "Aktive Plug-Ins"
+#: ../../mod/item.php:145
+msgid "Unable to locate original post."
+msgstr "Originalbeitrag nicht gefunden."
 
-#: ../../mod/admin.php:350
-msgid "Site settings updated."
-msgstr "Site-Einstellungen aktualisiert."
+#: ../../mod/item.php:346
+msgid "Empty post discarded."
+msgstr "Leeren Beitrag verworfen."
 
-#: ../../mod/admin.php:379 ../../mod/settings.php:709
-msgid "No special theme for mobile devices"
-msgstr "Keine spezielle Theme für mobile Geräte"
+#: ../../mod/item.php:388
+msgid "Executable content type not permitted to this channel."
+msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."
 
-#: ../../mod/admin.php:381
-msgid "No special theme for accessibility"
-msgstr "Kein spezielles Accessibility-Theme vorhanden"
+#: ../../mod/item.php:845
+msgid "System error. Post not saved."
+msgstr "Systemfehler. Beitrag nicht gespeichert."
 
-#: ../../mod/admin.php:409
-msgid "Closed"
-msgstr "Geschlossen"
+#: ../../mod/item.php:1112 ../../mod/wall_upload.php:34
+msgid "Wall Photos"
+msgstr "Wall Fotos"
 
-#: ../../mod/admin.php:410
-msgid "Requires approval"
-msgstr "Genehmigung erforderlich"
+#: ../../mod/item.php:1192
+#, php-format
+msgid "You have reached your limit of %1$.0f top level posts."
+msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."
 
-#: ../../mod/admin.php:411
-msgid "Open"
-msgstr "Offen"
+#: ../../mod/item.php:1198
+#, php-format
+msgid "You have reached your limit of %1$.0f webpages."
+msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."
 
-#: ../../mod/admin.php:416
-msgid "Private"
-msgstr "Privat"
+#: ../../mod/subthread.php:105
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s folgt nun %2$ss %3$s"
 
-#: ../../mod/admin.php:417
-msgid "Paid Access"
-msgstr "Kostenpflichtiger Zugang"
+#: ../../mod/update_network.php:23 ../../mod/update_channel.php:43
+#: ../../mod/update_search.php:46 ../../mod/update_display.php:25
+#: ../../mod/update_community.php:18
+msgid "[Embedded content - reload page to view]"
+msgstr "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]"
 
-#: ../../mod/admin.php:418
-msgid "Free Access"
-msgstr "Kostenloser Zugang"
+#: ../../mod/chanview.php:77 ../../mod/home.php:50 ../../mod/page.php:47
+#: ../../mod/wall_upload.php:28
+msgid "Channel not found."
+msgstr "Kanal nicht gefunden."
 
-#: ../../mod/admin.php:419
-msgid "Tiered Access"
-msgstr "Abgestufter Zugang"
+#: ../../mod/chanview.php:93
+msgid "toggle full screen mode"
+msgstr "auf Vollbildmodus umschalten"
 
-#: ../../mod/admin.php:432 ../../mod/register.php:189
-msgid "Registration"
-msgstr "Registrierung"
+#: ../../mod/tagger.php:98
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s hat %2$ss %3$s mit %4$s verschlagwortet"
 
-#: ../../mod/admin.php:433
-msgid "File upload"
-msgstr "Dateiupload"
+#: ../../mod/chat.php:18 ../../mod/channel.php:25
+msgid "You must be logged in to see this page."
+msgstr "Du musst angemeldet sein, um diese Seite betrachten zu können."
 
-#: ../../mod/admin.php:434
-msgid "Policies"
-msgstr "Richtlinien"
+#: ../../mod/chat.php:163
+msgid "Leave Room"
+msgstr "Raum verlassen"
 
-#: ../../mod/admin.php:435
-msgid "Advanced"
-msgstr "Fortgeschritten"
+#: ../../mod/chat.php:164
+msgid "I am away right now"
+msgstr "Ich bin gerade nicht da"
 
-#: ../../mod/admin.php:439
-msgid "Site name"
-msgstr "Seitenname"
+#: ../../mod/chat.php:165
+msgid "I am online"
+msgstr "Ich bin online"
 
-#: ../../mod/admin.php:440
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: ../../mod/chat.php:189 ../../mod/chat.php:209
+msgid "New Chatroom"
+msgstr "Neuer Chatraum"
 
-#: ../../mod/admin.php:441
-msgid "Administrator Information"
-msgstr "Administrator-Informationen"
+#: ../../mod/chat.php:190
+msgid "Chatroom Name"
+msgstr "Name des Chatraums"
 
-#: ../../mod/admin.php:441
-msgid ""
-"Contact information for site administrators.  Displayed on siteinfo page.  "
-"BBCode can be used here"
-msgstr "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden."
+#: ../../mod/chat.php:205
+#, php-format
+msgid "%1$s's Chatrooms"
+msgstr "%1$ss Chaträume"
 
-#: ../../mod/admin.php:442
-msgid "System language"
-msgstr "System-Sprache"
+#: ../../mod/viewconnections.php:17 ../../mod/search.php:13
+#: ../../mod/directory.php:15 ../../mod/display.php:9
+#: ../../mod/community.php:18 ../../mod/dirprofile.php:9
+#: ../../mod/photos.php:443
+msgid "Public access denied."
+msgstr "Öffentlicher Zugang verweigert."
 
-#: ../../mod/admin.php:443
-msgid "System theme"
-msgstr "System-Theme"
+#: ../../mod/viewconnections.php:43
+msgid "No connections."
+msgstr "Keine Verbindungen."
 
-#: ../../mod/admin.php:443
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>"
+#: ../../mod/viewconnections.php:55
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "%ss Profil [%s] besuchen"
 
-#: ../../mod/admin.php:444
-msgid "Mobile system theme"
-msgstr "Mobile System-Theme:"
+#: ../../mod/viewconnections.php:70
+msgid "View Connnections"
+msgstr "Zeige Verbindungen"
 
-#: ../../mod/admin.php:444
-msgid "Theme for mobile devices"
-msgstr "Theme für mobile Geräte"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Schlagwort entfernt"
 
-#: ../../mod/admin.php:445
-msgid "Accessibility system theme"
-msgstr "Accessibility-System-Theme"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Schlagwort entfernen"
 
-#: ../../mod/admin.php:445
-msgid "Accessibility theme"
-msgstr "Accessibility-Theme"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Schlagwort zum Entfernen auswählen:"
 
-#: ../../mod/admin.php:446
-msgid "Channel to use for this website's static pages"
-msgstr "Kanal für die statischen Seiten dieser Webseite verwenden"
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 ../../mod/photos.php:909
+msgid "Remove"
+msgstr "Entferne"
 
-#: ../../mod/admin.php:446
-msgid "Site Channel"
-msgstr "Seiten Kanal"
+#: ../../mod/connect.php:55 ../../mod/connect.php:103
+msgid "Continue"
+msgstr "Fortfahren"
 
-#: ../../mod/admin.php:448
-msgid "Maximum image size"
-msgstr "Maximale Bildgröße"
+#: ../../mod/connect.php:84
+msgid "Premium Channel Setup"
+msgstr "Premium-Kanal-Einrichtung"
 
-#: ../../mod/admin.php:448
+#: ../../mod/connect.php:86
+msgid "Enable premium channel connection restrictions"
+msgstr "Einschränkungen für einen Premium-Kanal aktivieren"
+
+#: ../../mod/connect.php:87
 msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)."
+"Please enter your restrictions or conditions, such as paypal receipt, usage "
+"guidelines, etc."
+msgstr "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc."
 
-#: ../../mod/admin.php:449
-msgid "Register policy"
-msgstr "Registrierungsrichtlinie"
+#: ../../mod/connect.php:89 ../../mod/connect.php:109
+msgid ""
+"This channel may require additional steps or acknowledgement of the "
+"following conditions prior to connecting:"
+msgstr "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig."
 
-#: ../../mod/admin.php:450
-msgid "Access policy"
-msgstr "Zugangsrichtlinien"
+#: ../../mod/connect.php:90
+msgid ""
+"Potential connections will then see the following text before proceeding:"
+msgstr "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:"
 
-#: ../../mod/admin.php:451
-msgid "Register text"
-msgstr "Registrierungstext"
+#: ../../mod/connect.php:91 ../../mod/connect.php:112
+msgid ""
+"By continuing, I certify that I have complied with any instructions provided"
+" on this page."
+msgstr "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen aus dieser Seite."
 
-#: ../../mod/admin.php:451
-msgid "Will be displayed prominently on the registration page."
-msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt."
+#: ../../mod/connect.php:100
+msgid "(No specific instructions have been provided by the channel owner.)"
+msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)"
 
-#: ../../mod/admin.php:452
-msgid "Accounts abandoned after x days"
-msgstr "Konten gelten nach X Tagen als unbenutzt"
+#: ../../mod/connect.php:108
+msgid "Restricted or Premium Channel"
+msgstr "Eingeschränkter oder Premium-Kanal"
 
-#: ../../mod/admin.php:452
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit."
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
 
-#: ../../mod/admin.php:453
-msgid "Allowed friend domains"
-msgstr "Erlaubte Domains für Kontakte"
+#: ../../mod/delegate.php:121
+msgid "Delegate Page Management"
+msgstr "Delegiere das Management für diese Seite"
 
-#: ../../mod/admin.php:453
+#: ../../mod/delegate.php:123
 msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
-
-#: ../../mod/admin.php:454
-msgid "Allowed email domains"
-msgstr "Erlaubte Domains für E-Mails"
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"
 
-#: ../../mod/admin.php:454
-msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
-msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
+#: ../../mod/delegate.php:124
+msgid "Existing Page Managers"
+msgstr "Vorhandene Seitenmanager"
 
-#: ../../mod/admin.php:455
-msgid "Block public"
-msgstr "Öffentlichen Zugriff blockieren"
+#: ../../mod/delegate.php:126
+msgid "Existing Page Delegates"
+msgstr "Vorhandene Bevollmächtigte für die Seite"
 
-#: ../../mod/admin.php:455
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Zugriff auf sonst öffentliche persönliche Seiten blockieren, wenn man nicht eingeloggt ist."
+#: ../../mod/delegate.php:128
+msgid "Potential Delegates"
+msgstr "Potentielle Bevollmächtigte"
 
-#: ../../mod/admin.php:456
-msgid "Force publish"
-msgstr "Veröffentlichung erzwingen"
+#: ../../mod/delegate.php:131
+msgid "Add"
+msgstr "Hinzufügen"
 
-#: ../../mod/admin.php:456
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen."
+#: ../../mod/delegate.php:132
+msgid "No entries."
+msgstr "Keine Einträge."
 
-#: ../../mod/admin.php:457
-msgid "No login on Homepage"
-msgstr "Kein Login auf der Homepage"
+#: ../../mod/chatsvc.php:102
+msgid "Away"
+msgstr "Abwesend"
 
-#: ../../mod/admin.php:457
-msgid ""
-"Check to hide the login form from your sites homepage when visitors arrive "
-"who are not logged in (e.g. when you put the content of the homepage in via "
-"the site channel)."
-msgstr "Ktivieren, um das Login-Formular auf der Startseite der Seite zu verbergen, z.B. weil es das Layout der Homepage des Seiten-Kanals stört."
+#: ../../mod/chatsvc.php:106
+msgid "Online"
+msgstr "Online"
 
-#: ../../mod/admin.php:459
-msgid "Proxy user"
-msgstr "Proxy Benutzer"
+#: ../../mod/attach.php:9
+msgid "Item not available."
+msgstr "Element nicht verfügbar."
 
-#: ../../mod/admin.php:460
-msgid "Proxy URL"
-msgstr "Proxy URL"
+#: ../../mod/mitem.php:47
+msgid "Menu element updated."
+msgstr "Menü-Element aktualisiert."
 
-#: ../../mod/admin.php:461
-msgid "Network timeout"
-msgstr "Netzwerk-Timeout"
+#: ../../mod/mitem.php:51
+msgid "Unable to update menu element."
+msgstr "Kann Menü-Element nicht aktualisieren."
 
-#: ../../mod/admin.php:461
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)."
+#: ../../mod/mitem.php:57
+msgid "Menu element added."
+msgstr "Menü-Bestandteil hinzugefügt."
 
-#: ../../mod/admin.php:462
-msgid "Delivery interval"
-msgstr "Auslieferung Intervall"
+#: ../../mod/mitem.php:61
+msgid "Unable to add menu element."
+msgstr "Kann Menü-Bestandteil nicht hinzufügen."
 
-#: ../../mod/admin.php:462
-msgid ""
-"Delay background delivery processes by this many seconds to reduce system "
-"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
-"for large dedicated servers."
-msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."
+#: ../../mod/mitem.php:96
+msgid "Manage Menu Elements"
+msgstr "Menü-Bestandteile verwalten"
 
-#: ../../mod/admin.php:463
-msgid "Poll interval"
-msgstr "Abfrageintervall"
+#: ../../mod/mitem.php:99
+msgid "Edit menu"
+msgstr "Menü bearbeiten"
 
-#: ../../mod/admin.php:463
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet."
+#: ../../mod/mitem.php:102
+msgid "Edit element"
+msgstr "Bestandteil bearbeiten"
 
-#: ../../mod/admin.php:464
-msgid "Maximum Load Average"
-msgstr "Maximales Load Average"
+#: ../../mod/mitem.php:103
+msgid "Drop element"
+msgstr "Bestandteil löschen"
 
-#: ../../mod/admin.php:464
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50"
+#: ../../mod/mitem.php:104
+msgid "New element"
+msgstr "Neues Bestandteil"
 
-#: ../../mod/admin.php:520
-msgid "No server found"
-msgstr "Kein Server gefunden"
+#: ../../mod/mitem.php:105
+msgid "Edit this menu container"
+msgstr "Diesen Menü-Container bearbeiten"
 
-#: ../../mod/admin.php:527 ../../mod/admin.php:750
-msgid "ID"
-msgstr "ID"
+#: ../../mod/mitem.php:106
+msgid "Add menu element"
+msgstr "Menüelement hinzufügen"
 
-#: ../../mod/admin.php:527
-msgid "for channel"
-msgstr "für Kanal"
+#: ../../mod/mitem.php:107
+msgid "Delete this menu item"
+msgstr "Lösche dieses Menü-Bestandteil"
 
-#: ../../mod/admin.php:527
-msgid "on server"
-msgstr "auf Server"
+#: ../../mod/mitem.php:108
+msgid "Edit this menu item"
+msgstr "Bearbeite dieses Menü-Bestandteil"
 
-#: ../../mod/admin.php:527
-msgid "Status"
-msgstr "Status"
+#: ../../mod/mitem.php:131
+msgid "New Menu Element"
+msgstr "Neues Menü-Bestandteil"
 
-#: ../../mod/admin.php:548
-msgid "Update has been marked successful"
-msgstr "Update wurde als erfolgreich markiert"
+#: ../../mod/mitem.php:133 ../../mod/mitem.php:176
+msgid "Menu Item Permissions"
+msgstr "Zugriffsrechte des Menü-Elements"
 
-#: ../../mod/admin.php:558
-#, php-format
-msgid "Executing %s failed. Check system logs."
-msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle."
+#: ../../mod/mitem.php:136 ../../mod/mitem.php:180
+msgid "Link text"
+msgstr "Link Text"
 
-#: ../../mod/admin.php:561
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Update %s wurde erfolgreich ausgeführt."
+#: ../../mod/mitem.php:137 ../../mod/mitem.php:181
+msgid "URL of link"
+msgstr "URL des Links"
 
-#: ../../mod/admin.php:565
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt."
+#: ../../mod/mitem.php:138 ../../mod/mitem.php:182
+msgid "Use Red magic-auth if available"
+msgstr "Verwende Red Magic-Auth wenn verfügbar"
 
-#: ../../mod/admin.php:568
-#, php-format
-msgid "Update function %s could not be found."
-msgstr "Update-Funktion %s konnte nicht gefunden werden."
+#: ../../mod/mitem.php:139 ../../mod/mitem.php:183
+msgid "Open link in new window"
+msgstr "Öffne Link in neuem Fenster"
 
-#: ../../mod/admin.php:583
-msgid "No failed updates."
-msgstr "Keine fehlgeschlagenen Aktualisierungen."
+#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
+msgid "Order in list"
+msgstr "Reihenfolge in der Liste"
 
-#: ../../mod/admin.php:587
-msgid "Failed Updates"
-msgstr "Fehlgeschlagene Aktualisierungen"
+#: ../../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/admin.php:589
-msgid "Mark success (if update was manually applied)"
-msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)"
+#: ../../mod/mitem.php:154
+msgid "Menu item not found."
+msgstr "Menü-Bestandteil nicht gefunden."
 
-#: ../../mod/admin.php:590
-msgid "Attempt to execute this update step automatically"
-msgstr "Versuche, diesen Updateschritt automatisch auszuführen"
+#: ../../mod/mitem.php:163
+msgid "Menu item deleted."
+msgstr "Menü-Bestandteil gelöscht."
 
-#: ../../mod/admin.php:616
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s Nutzer blockiert/freigegeben"
-msgstr[1] "%s Nutzer blockiert/freigegeben"
+#: ../../mod/mitem.php:165
+msgid "Menu item could not be deleted."
+msgstr "Menü-Bestandteil kann nicht gelöscht werden."
 
-#: ../../mod/admin.php:623
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s Nutzer gelöscht"
-msgstr[1] "%s Nutzer gelöscht"
+#: ../../mod/mitem.php:174
+msgid "Edit Menu Element"
+msgstr "Bearbeite Menü-Bestandteil"
 
-#: ../../mod/admin.php:654
-msgid "Account not found"
-msgstr "Konto nicht gefunden"
+#: ../../mod/profperm.php:29 ../../mod/profperm.php:58
+msgid "Invalid profile identifier."
+msgstr "Ungültiger Profil-Identifikator"
 
-#: ../../mod/admin.php:665
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Benutzer '%s' gelöscht"
+#: ../../mod/profperm.php:105
+msgid "Profile Visibility Editor"
+msgstr "Profil-Sichtbarkeits-Editor"
 
-#: ../../mod/admin.php:674
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Benutzer '%s' freigegeben"
+#: ../../mod/profperm.php:109
+msgid "Click on a contact to add or remove."
+msgstr "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen."
 
-#: ../../mod/admin.php:674
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Benutzer '%s' blockiert"
+#: ../../mod/profperm.php:118
+msgid "Visible To"
+msgstr "Sichtbar für"
 
-#: ../../mod/admin.php:739
-msgid "select all"
-msgstr "Alle auswählen"
+#: ../../mod/profperm.php:134 ../../mod/connections.php:250
+msgid "All Connections"
+msgstr "Alle Verbindungen"
 
-#: ../../mod/admin.php:740
-msgid "User registrations waiting for confirm"
-msgstr "Neuanmeldungen, die auf Deine Bestätigung warten"
+#: ../../mod/group.php:20
+msgid "Collection created."
+msgstr "Sammlung erstellt."
 
-#: ../../mod/admin.php:741
-msgid "Request date"
-msgstr "Antragsdatum"
+#: ../../mod/group.php:26
+msgid "Could not create collection."
+msgstr "Sammlung kann nicht erstellt werden."
 
-#: ../../mod/admin.php:742
-msgid "No registrations."
-msgstr "Keine Registrierungen."
+#: ../../mod/group.php:54
+msgid "Collection updated."
+msgstr "Sammlung aktualisiert."
 
-#: ../../mod/admin.php:743
-msgid "Approve"
-msgstr "Genehmigen"
+#: ../../mod/group.php:86
+msgid "Create a collection of channels."
+msgstr "Erstelle eine Sammlung von Kanälen."
 
-#: ../../mod/admin.php:744
-msgid "Deny"
-msgstr "Verweigern"
+#: ../../mod/group.php:87 ../../mod/group.php:183
+msgid "Collection Name: "
+msgstr "Name der Sammlung:"
 
-#: ../../mod/admin.php:746 ../../mod/connedit.php:333
-#: ../../mod/connedit.php:475
-msgid "Block"
-msgstr "Blockieren"
+#: ../../mod/group.php:89 ../../mod/group.php:186
+msgid "Members are visible to other channels"
+msgstr "Mitglieder sind sichtbar für andere Kanäle"
 
-#: ../../mod/admin.php:747 ../../mod/connedit.php:333
-#: ../../mod/connedit.php:475
-msgid "Unblock"
-msgstr "Freigeben"
+#: ../../mod/group.php:107
+msgid "Collection removed."
+msgstr "Sammlung gelöscht."
 
-#: ../../mod/admin.php:750
-msgid "Register date"
-msgstr "Registrierungs-Datum"
+#: ../../mod/group.php:109
+msgid "Unable to remove collection."
+msgstr "Löschen der Sammlung nicht möglich."
 
-#: ../../mod/admin.php:750
-msgid "Last login"
-msgstr "Letzte Anmeldung"
+#: ../../mod/group.php:182
+msgid "Collection Editor"
+msgstr "Sammlung-Editor"
 
-#: ../../mod/admin.php:750
-msgid "Expires"
-msgstr "Verfällt"
+#: ../../mod/group.php:196
+msgid "Members"
+msgstr "Mitglieder"
 
-#: ../../mod/admin.php:750
-msgid "Service Class"
-msgstr "Service-Klasse"
+#: ../../mod/group.php:198
+msgid "All Connected Channels"
+msgstr "Alle verbundenen Kanäle"
 
-#: ../../mod/admin.php:752
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlles, was diese Nutzer auf dieser Seite veröffentlicht haben, wird endgültig gelöscht!\\n\\nBist Du sicher?"
+#: ../../mod/group.php:231
+msgid "Click on a channel to add or remove."
+msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus."
 
-#: ../../mod/admin.php:753
-msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles, was dieser Nutzer auf dieser Seite veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?"
+#: ../../mod/admin.php:48
+msgid "Theme settings updated."
+msgstr "Theme-Einstellungen aktualisiert."
 
-#: ../../mod/admin.php:794
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plug-In %s deaktiviert."
+#: ../../mod/admin.php:88 ../../mod/admin.php:430
+msgid "Site"
+msgstr "Seite"
 
-#: ../../mod/admin.php:798
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Plug-In %s aktiviert."
+#: ../../mod/admin.php:89 ../../mod/admin.php:738 ../../mod/admin.php:750
+msgid "Users"
+msgstr "Benutzer"
 
-#: ../../mod/admin.php:808 ../../mod/admin.php:1010
-msgid "Disable"
-msgstr "Deaktivieren"
+#: ../../mod/admin.php:90 ../../mod/admin.php:836 ../../mod/admin.php:878
+msgid "Plugins"
+msgstr "Plug-Ins"
 
-#: ../../mod/admin.php:810 ../../mod/admin.php:1012
-msgid "Enable"
-msgstr "Aktivieren"
+#: ../../mod/admin.php:91 ../../mod/admin.php:1041 ../../mod/admin.php:1077
+msgid "Themes"
+msgstr "Themes"
 
-#: ../../mod/admin.php:836 ../../mod/admin.php:1041
-msgid "Toggle"
-msgstr "Umschalten"
+#: ../../mod/admin.php:92 ../../mod/admin.php:529
+msgid "Server"
+msgstr "Server"
 
-#: ../../mod/admin.php:844 ../../mod/admin.php:1051
-msgid "Author: "
-msgstr "Autor: "
+#: ../../mod/admin.php:93
+msgid "DB updates"
+msgstr "DB-Aktualisierungen"
 
-#: ../../mod/admin.php:845 ../../mod/admin.php:1052
-msgid "Maintainer: "
-msgstr "Betreuer:"
+#: ../../mod/admin.php:107 ../../mod/admin.php:114 ../../mod/admin.php:1164
+msgid "Logs"
+msgstr "Protokolle"
 
-#: ../../mod/admin.php:974
-msgid "No themes found."
-msgstr "Keine Theme gefunden."
+#: ../../mod/admin.php:113
+msgid "Plugin Features"
+msgstr "Plug-In Funktionen"
 
-#: ../../mod/admin.php:1033
-msgid "Screenshot"
-msgstr "Bildschirmfoto"
-
-#: ../../mod/admin.php:1081
-msgid "[Experimental]"
-msgstr "[Experimentell]"
+#: ../../mod/admin.php:115
+msgid "User registrations waiting for confirmation"
+msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten"
 
-#: ../../mod/admin.php:1082
-msgid "[Unsupported]"
-msgstr "[Nicht unterstützt]"
+#: ../../mod/admin.php:189
+msgid "Message queues"
+msgstr "Nachrichten-Warteschlangen"
 
-#: ../../mod/admin.php:1109
-msgid "Log settings updated."
-msgstr "Protokoll-Einstellungen aktualisiert."
+#: ../../mod/admin.php:194 ../../mod/admin.php:429 ../../mod/admin.php:528
+#: ../../mod/admin.php:737 ../../mod/admin.php:835 ../../mod/admin.php:877
+#: ../../mod/admin.php:1040 ../../mod/admin.php:1076 ../../mod/admin.php:1163
+msgid "Administration"
+msgstr "Administration"
 
-#: ../../mod/admin.php:1165
-msgid "Clear"
-msgstr "Leeren"
+#: ../../mod/admin.php:195
+msgid "Summary"
+msgstr "Zusammenfassung"
 
-#: ../../mod/admin.php:1171
-msgid "Debugging"
-msgstr "Debugging"
+#: ../../mod/admin.php:197
+msgid "Registered users"
+msgstr "Registrierte Benutzer"
 
-#: ../../mod/admin.php:1172
-msgid "Log file"
-msgstr "Protokolldatei"
+#: ../../mod/admin.php:199 ../../mod/admin.php:532
+msgid "Pending registrations"
+msgstr "Ausstehende Registrierungen"
 
-#: ../../mod/admin.php:1172
-msgid ""
-"Must be writable by web server. Relative to your Red top-level directory."
-msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Red-Stammverzeichnis."
+#: ../../mod/admin.php:200
+msgid "Version"
+msgstr "Version"
 
-#: ../../mod/admin.php:1173
-msgid "Log level"
-msgstr "Protokollstufe"
+#: ../../mod/admin.php:202 ../../mod/admin.php:533
+msgid "Active plugins"
+msgstr "Aktive Plug-Ins"
 
-#: ../../mod/filer.php:35
-msgid "- select -"
-msgstr "– auswählen –"
+#: ../../mod/admin.php:350
+msgid "Site settings updated."
+msgstr "Site-Einstellungen aktualisiert."
 
-#: ../../mod/home.php:89
-#, php-format
-msgid "Welcome to %s"
-msgstr "Willkommen auf %s"
+#: ../../mod/admin.php:381
+msgid "No special theme for accessibility"
+msgstr "Kein spezielles Accessibility-Theme vorhanden"
 
-#: ../../mod/editpost.php:20 ../../mod/editlayout.php:36
-#: ../../mod/editwebpage.php:32 ../../mod/editblock.php:36
-msgid "Item not found"
-msgstr "Element nicht gefunden"
+#: ../../mod/admin.php:409
+msgid "Closed"
+msgstr "Geschlossen"
 
-#: ../../mod/editpost.php:31
-msgid "Item is not editable"
-msgstr "Element kann nicht bearbeitet werden."
+#: ../../mod/admin.php:410
+msgid "Requires approval"
+msgstr "Genehmigung erforderlich"
 
-#: ../../mod/editpost.php:53
-msgid "Delete item?"
-msgstr "Eintrag löschen?"
+#: ../../mod/admin.php:411
+msgid "Open"
+msgstr "Offen"
 
-#: ../../mod/editpost.php:107 ../../mod/editlayout.php:110
-#: ../../mod/editwebpage.php:148 ../../mod/editblock.php:124
-msgid "Insert YouTube video"
-msgstr "YouTube-Video einfügen"
+#: ../../mod/admin.php:416
+msgid "Private"
+msgstr "Privat"
 
-#: ../../mod/editpost.php:108 ../../mod/editlayout.php:111
-#: ../../mod/editwebpage.php:149 ../../mod/editblock.php:125
-msgid "Insert Vorbis [.ogg] video"
-msgstr "Vorbis [.ogg]-Video einfügen"
+#: ../../mod/admin.php:417
+msgid "Paid Access"
+msgstr "Kostenpflichtiger Zugang"
 
-#: ../../mod/editpost.php:109 ../../mod/editlayout.php:112
-#: ../../mod/editwebpage.php:150 ../../mod/editblock.php:126
-msgid "Insert Vorbis [.ogg] audio"
-msgstr "Vorbis [.ogg]-Audio einfügen"
+#: ../../mod/admin.php:418
+msgid "Free Access"
+msgstr "Kostenloser Zugang"
 
-#: ../../mod/directory.php:144 ../../mod/profiles.php:561
-#: ../../mod/dirprofile.php:98
-msgid "Age: "
-msgstr "Alter:"
+#: ../../mod/admin.php:419
+msgid "Tiered Access"
+msgstr "Abgestufter Zugang"
 
-#: ../../mod/directory.php:147 ../../mod/dirprofile.php:101
-msgid "Gender: "
-msgstr "Geschlecht:"
+#: ../../mod/admin.php:432 ../../mod/register.php:189
+msgid "Registration"
+msgstr "Registrierung"
 
-#: ../../mod/directory.php:208
-msgid "Finding:"
-msgstr "Ergebnisse:"
+#: ../../mod/admin.php:433
+msgid "File upload"
+msgstr "Dateiupload"
 
-#: ../../mod/directory.php:216
-msgid "next page"
-msgstr "nächste Seite"
+#: ../../mod/admin.php:434
+msgid "Policies"
+msgstr "Richtlinien"
 
-#: ../../mod/directory.php:216
-msgid "previous page"
-msgstr "vorige Seite"
+#: ../../mod/admin.php:435
+msgid "Advanced"
+msgstr "Fortgeschritten"
 
-#: ../../mod/directory.php:223
-msgid "No entries (some entries may be hidden)."
-msgstr "Keine Einträge gefunden (einige könnten versteckt sein)."
+#: ../../mod/admin.php:439
+msgid "Site name"
+msgstr "Seitenname"
 
-#: ../../mod/connedit.php:49 ../../mod/connections.php:37
-msgid "Could not access contact record."
-msgstr "Konnte nicht auf den Kontakteintrag zugreifen."
+#: ../../mod/admin.php:440
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: ../../mod/connedit.php:63 ../../mod/connections.php:51
-msgid "Could not locate selected profile."
-msgstr "Gewähltes Profil nicht gefunden."
+#: ../../mod/admin.php:441
+msgid "Administrator Information"
+msgstr "Administrator-Informationen"
 
-#: ../../mod/connedit.php:107 ../../mod/connections.php:94
-msgid "Connection updated."
-msgstr "Verbindung aktualisiert."
+#: ../../mod/admin.php:441
+msgid ""
+"Contact information for site administrators.  Displayed on siteinfo page.  "
+"BBCode can be used here"
+msgstr "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden."
 
-#: ../../mod/connedit.php:109 ../../mod/connections.php:96
-msgid "Failed to update connection record."
-msgstr "Konnte den Verbindungseintrag nicht aktualisieren."
+#: ../../mod/admin.php:442
+msgid "System language"
+msgstr "System-Sprache"
 
-#: ../../mod/connedit.php:204
-msgid "Could not access address book record."
-msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen."
+#: ../../mod/admin.php:443
+msgid "System theme"
+msgstr "System-Theme"
 
-#: ../../mod/connedit.php:218
-msgid "Refresh failed - channel is currently unavailable."
-msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar."
+#: ../../mod/admin.php:443
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>"
 
-#: ../../mod/connedit.php:225
-msgid "Channel has been unblocked"
-msgstr "Kanal nicht mehr blockiert"
+#: ../../mod/admin.php:444
+msgid "Mobile system theme"
+msgstr "Mobile System-Theme:"
 
-#: ../../mod/connedit.php:226
-msgid "Channel has been blocked"
-msgstr "Kanal blockiert"
+#: ../../mod/admin.php:444
+msgid "Theme for mobile devices"
+msgstr "Theme für mobile Geräte"
 
-#: ../../mod/connedit.php:230 ../../mod/connedit.php:242
-#: ../../mod/connedit.php:254 ../../mod/connedit.php:266
-#: ../../mod/connedit.php:281
-msgid "Unable to set address book parameters."
-msgstr "Konnte die Adressbuch-Parameter nicht setzen."
+#: ../../mod/admin.php:445
+msgid "Accessibility system theme"
+msgstr "Accessibility-System-Theme"
 
-#: ../../mod/connedit.php:237
-msgid "Channel has been unignored"
-msgstr "Kanal wird nicht mehr ignoriert"
+#: ../../mod/admin.php:445
+msgid "Accessibility theme"
+msgstr "Accessibility-Theme"
 
-#: ../../mod/connedit.php:238
-msgid "Channel has been ignored"
-msgstr "Kanal wird ignoriert"
+#: ../../mod/admin.php:446
+msgid "Channel to use for this website's static pages"
+msgstr "Kanal für die statischen Seiten dieser Webseite verwenden"
 
-#: ../../mod/connedit.php:249
-msgid "Channel has been unarchived"
-msgstr "Kanal wurde aus dem Archiv zurück geholt"
+#: ../../mod/admin.php:446
+msgid "Site Channel"
+msgstr "Seiten Kanal"
 
-#: ../../mod/connedit.php:250
-msgid "Channel has been archived"
-msgstr "Kanal wurde archiviert"
+#: ../../mod/admin.php:448
+msgid "Maximum image size"
+msgstr "Maximale Bildgröße"
 
-#: ../../mod/connedit.php:261
-msgid "Channel has been unhidden"
-msgstr "Kanal wird nicht mehr versteckt"
+#: ../../mod/admin.php:448
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)."
 
-#: ../../mod/connedit.php:262
-msgid "Channel has been hidden"
-msgstr "Kanal wurde versteckt"
+#: ../../mod/admin.php:449
+msgid "Register policy"
+msgstr "Registrierungsrichtlinie"
 
-#: ../../mod/connedit.php:276
-msgid "Channel has been approved"
-msgstr "Kanal wurde zugelassen"
+#: ../../mod/admin.php:450
+msgid "Access policy"
+msgstr "Zugangsrichtlinien"
 
-#: ../../mod/connedit.php:277
-msgid "Channel has been unapproved"
-msgstr "Zulassung des Kanals entfernt"
+#: ../../mod/admin.php:451
+msgid "Register text"
+msgstr "Registrierungstext"
 
-#: ../../mod/connedit.php:295
-msgid "Contact has been removed."
-msgstr "Kontakt wurde entfernt."
+#: ../../mod/admin.php:451
+msgid "Will be displayed prominently on the registration page."
+msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt."
 
-#: ../../mod/connedit.php:315
-#, php-format
-msgid "View %s's profile"
-msgstr "%ss Profil ansehen"
+#: ../../mod/admin.php:452
+msgid "Accounts abandoned after x days"
+msgstr "Konten gelten nach X Tagen als unbenutzt"
 
-#: ../../mod/connedit.php:319
-msgid "Refresh Permissions"
-msgstr "Zugriffsrechte neu laden"
+#: ../../mod/admin.php:452
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit."
 
-#: ../../mod/connedit.php:322
-msgid "Fetch updated permissions"
-msgstr "Aktualisierte Zugriffsrechte abfragen"
+#: ../../mod/admin.php:453
+msgid "Allowed friend domains"
+msgstr "Erlaubte Domains für Kontakte"
 
-#: ../../mod/connedit.php:326
-msgid "Recent Activity"
-msgstr "Kürzliche Aktivitäten"
+#: ../../mod/admin.php:453
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
 
-#: ../../mod/connedit.php:329
-msgid "View recent posts and comments"
-msgstr "Betrachte die neuesten Beiträge und Kommentare"
+#: ../../mod/admin.php:454
+msgid "Allowed email domains"
+msgstr "Erlaubte Domains für E-Mails"
 
-#: ../../mod/connedit.php:336
-msgid "Block or Unblock this connection"
-msgstr "Verbindung blockieren oder freigeben"
+#: ../../mod/admin.php:454
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
 
-#: ../../mod/connedit.php:340 ../../mod/connedit.php:476
-msgid "Unignore"
-msgstr "Nicht ignorieren"
+#: ../../mod/admin.php:455
+msgid "Block public"
+msgstr "Öffentlichen Zugriff blockieren"
 
-#: ../../mod/connedit.php:340 ../../mod/connedit.php:476
-#: ../../mod/notifications.php:51
-msgid "Ignore"
-msgstr "Ignorieren"
+#: ../../mod/admin.php:455
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Zugriff auf sonst öffentliche persönliche Seiten blockieren, wenn man nicht eingeloggt ist."
 
-#: ../../mod/connedit.php:343
-msgid "Ignore or Unignore this connection"
-msgstr "Verbindung ignorieren oder wieder beachten"
+#: ../../mod/admin.php:456
+msgid "Force publish"
+msgstr "Veröffentlichung erzwingen"
 
-#: ../../mod/connedit.php:346
-msgid "Unarchive"
-msgstr "Aus Archiv zurückholen"
+#: ../../mod/admin.php:456
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen."
 
-#: ../../mod/connedit.php:346
-msgid "Archive"
-msgstr "Archivieren"
+#: ../../mod/admin.php:457
+msgid "No login on Homepage"
+msgstr "Kein Login auf der Homepage"
 
-#: ../../mod/connedit.php:349
-msgid "Archive or Unarchive this connection"
-msgstr "Verbindung archivieren oder aus dem Archiv zurückholen"
+#: ../../mod/admin.php:457
+msgid ""
+"Check to hide the login form from your sites homepage when visitors arrive "
+"who are not logged in (e.g. when you put the content of the homepage in via "
+"the site channel)."
+msgstr "Ktivieren, um das Login-Formular auf der Startseite der Seite zu verbergen, z.B. weil es das Layout der Homepage des Seiten-Kanals stört."
 
-#: ../../mod/connedit.php:352
-msgid "Unhide"
-msgstr "Wieder sichtbar machen"
+#: ../../mod/admin.php:459
+msgid "Proxy user"
+msgstr "Proxy Benutzer"
 
-#: ../../mod/connedit.php:352
-msgid "Hide"
-msgstr "Verstecken"
+#: ../../mod/admin.php:460
+msgid "Proxy URL"
+msgstr "Proxy URL"
 
-#: ../../mod/connedit.php:355
-msgid "Hide or Unhide this connection"
-msgstr "Diese Verbindung verstecken oder wieder sichtbar machen"
+#: ../../mod/admin.php:461
+msgid "Network timeout"
+msgstr "Netzwerk-Timeout"
 
-#: ../../mod/connedit.php:362
-msgid "Delete this connection"
-msgstr "Verbindung löschen"
+#: ../../mod/admin.php:461
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)."
 
-#: ../../mod/connedit.php:395
-msgid "Unknown"
-msgstr "Unbekannt"
+#: ../../mod/admin.php:462
+msgid "Delivery interval"
+msgstr "Auslieferung Intervall"
 
-#: ../../mod/connedit.php:405 ../../mod/connedit.php:434
-msgid "Approve this connection"
-msgstr "Verbindung genehmigen"
+#: ../../mod/admin.php:462
+msgid ""
+"Delay background delivery processes by this many seconds to reduce system "
+"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
+"for large dedicated servers."
+msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."
 
-#: ../../mod/connedit.php:405
-msgid "Accept connection to allow communication"
-msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen"
+#: ../../mod/admin.php:463
+msgid "Poll interval"
+msgstr "Abfrageintervall"
 
-#: ../../mod/connedit.php:421
-msgid "Automatic Permissions Settings"
-msgstr "Automatische Berechtigungs-Einstellungen"
+#: ../../mod/admin.php:463
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet."
 
-#: ../../mod/connedit.php:421
-#, php-format
-msgid "Connections: settings for %s"
-msgstr "Verbindungseinstellungen für %s"
+#: ../../mod/admin.php:464
+msgid "Maximum Load Average"
+msgstr "Maximales Load Average"
 
-#: ../../mod/connedit.php:425
+#: ../../mod/admin.php:464
 msgid ""
-"When receiving a channel introduction, any permissions provided here will be"
-" applied to the new connection automatically and the introduction approved. "
-"Leave this page if you do not wish to use this feature."
-msgstr "Wenn eine Verbindungsanfrage empfangen wird, werden die hier getroffenen Einstellungen automatisch angewandt, und die Anfrage wird genehmigt. Verlasse diese Seite, wenn Du diese Funktion nicht verwenden möchtest."
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50"
 
-#: ../../mod/connedit.php:427
-msgid "Slide to adjust your degree of friendship"
-msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen"
+#: ../../mod/admin.php:520
+msgid "No server found"
+msgstr "Kein Server gefunden"
 
-#: ../../mod/connedit.php:433
-msgid "inherited"
-msgstr "geerbt"
+#: ../../mod/admin.php:527 ../../mod/admin.php:751
+msgid "ID"
+msgstr "ID"
 
-#: ../../mod/connedit.php:435
-msgid "Connection has no individual permissions!"
-msgstr "Diese Verbindung hat keine individuellen Zugriffsrechte!"
+#: ../../mod/admin.php:527
+msgid "for channel"
+msgstr "für Kanal"
 
-#: ../../mod/connedit.php:436
-msgid ""
-"This may be appropriate based on your <a href=\"settings\">privacy "
-"settings</a>, though you may wish to review the \"Advanced Permissions\"."
-msgstr "Abhängig von Deinen <a href=\"settings\">Privatsphäre-Einstellungen</a> könnte das passen, eventuell solltest Du aber die „Zugriffsrechte für Fortgeschrittene“ überprüfen."
+#: ../../mod/admin.php:527
+msgid "on server"
+msgstr "auf Server"
 
-#: ../../mod/connedit.php:438
-msgid "Profile Visibility"
-msgstr "Sichtbarkeit des Profils"
+#: ../../mod/admin.php:527
+msgid "Status"
+msgstr "Status"
 
-#: ../../mod/connedit.php:439
+#: ../../mod/admin.php:548
+msgid "Update has been marked successful"
+msgstr "Update wurde als erfolgreich markiert"
+
+#: ../../mod/admin.php:558
 #, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird."
+msgid "Executing %s failed. Check system logs."
+msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle."
 
-#: ../../mod/connedit.php:440
-msgid "Contact Information / Notes"
-msgstr "Kontaktinformationen / Notizen"
+#: ../../mod/admin.php:561
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Update %s wurde erfolgreich ausgeführt."
 
-#: ../../mod/connedit.php:441
-msgid "Edit contact notes"
-msgstr "Kontaktnotizen bearbeiten"
+#: ../../mod/admin.php:565
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt."
 
-#: ../../mod/connedit.php:443
-msgid "Their Settings"
-msgstr "Deren Einstellungen"
+#: ../../mod/admin.php:568
+#, php-format
+msgid "Update function %s could not be found."
+msgstr "Update-Funktion %s konnte nicht gefunden werden."
 
-#: ../../mod/connedit.php:444
-msgid "My Settings"
-msgstr "Meine Einstellungen"
+#: ../../mod/admin.php:583
+msgid "No failed updates."
+msgstr "Keine fehlgeschlagenen Aktualisierungen."
 
-#: ../../mod/connedit.php:446
-msgid "Forum Members"
-msgstr "Forum Mitglieder"
+#: ../../mod/admin.php:587
+msgid "Failed Updates"
+msgstr "Fehlgeschlagene Aktualisierungen"
 
-#: ../../mod/connedit.php:447
-msgid "Soapbox"
-msgstr "Marktschreier"
+#: ../../mod/admin.php:589
+msgid "Mark success (if update was manually applied)"
+msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)"
 
-#: ../../mod/connedit.php:448
-msgid "Full Sharing (typical social network permissions)"
-msgstr "Vollumfängliches Teilen (übliche Berechtigungen in sozialen Netzwerken)"
+#: ../../mod/admin.php:590
+msgid "Attempt to execute this update step automatically"
+msgstr "Versuche, diesen Updateschritt automatisch auszuführen"
 
-#: ../../mod/connedit.php:449
-msgid "Cautious Sharing "
-msgstr "Vorsichtiges Teilen"
+#: ../../mod/admin.php:616
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s Nutzer blockiert/freigegeben"
+msgstr[1] "%s Nutzer blockiert/freigegeben"
 
-#: ../../mod/connedit.php:450
-msgid "Follow Only"
-msgstr "Nur folgen"
+#: ../../mod/admin.php:623
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s Nutzer gelöscht"
+msgstr[1] "%s Nutzer gelöscht"
 
-#: ../../mod/connedit.php:451
-msgid "Individual Permissions"
-msgstr "Individuelle Zugriffsrechte"
-
-#: ../../mod/connedit.php:452
-msgid ""
-"Some permissions may be inherited from your channel <a "
-"href=\"settings\">privacy settings</a>, which have higher priority than "
-"individual settings. Changing those inherited settings on this page will "
-"have no effect."
-msgstr "Einige Berechtigungen werden von den <a href=\"settings\">Sicherheits- und Privatsphäre-Einstellungen</a> dieses Kanals geerbt, die eine höhere Priorität haben als die Einstellungen bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat das keine Auswirkungen."
-
-#: ../../mod/connedit.php:453
-msgid "Advanced Permissions"
-msgstr "Zugriffsrechte für Fortgeschrittene"
+#: ../../mod/admin.php:654
+msgid "Account not found"
+msgstr "Konto nicht gefunden"
 
-#: ../../mod/connedit.php:454
-msgid "Simple Permissions (select one and submit)"
-msgstr "Einfache Berechtigungs-Einstellungen (wähle eine aus und klicke auf Senden)"
+#: ../../mod/admin.php:665
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Benutzer '%s' gelöscht"
 
-#: ../../mod/connedit.php:458
+#: ../../mod/admin.php:674
 #, php-format
-msgid "Visit %s's profile - %s"
-msgstr "%ss Profil besuchen - %s"
+msgid "User '%s' unblocked"
+msgstr "Benutzer '%s' freigegeben"
 
-#: ../../mod/connedit.php:459
-msgid "Block/Unblock contact"
-msgstr "Kontakt blockieren/freigeben"
+#: ../../mod/admin.php:674
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Benutzer '%s' blockiert"
 
-#: ../../mod/connedit.php:460
-msgid "Ignore contact"
-msgstr "Kontakt ignorieren"
+#: ../../mod/admin.php:740
+msgid "select all"
+msgstr "Alle auswählen"
 
-#: ../../mod/connedit.php:461
-msgid "Repair URL settings"
-msgstr "URL-Einstellungen reparieren"
+#: ../../mod/admin.php:741
+msgid "User registrations waiting for confirm"
+msgstr "Neuanmeldungen, die auf Deine Bestätigung warten"
 
-#: ../../mod/connedit.php:462
-msgid "View conversations"
-msgstr "Unterhaltungen anzeigen"
+#: ../../mod/admin.php:742
+msgid "Request date"
+msgstr "Antragsdatum"
 
-#: ../../mod/connedit.php:464
-msgid "Delete contact"
-msgstr "Kontakt löschen"
+#: ../../mod/admin.php:743
+msgid "No registrations."
+msgstr "Keine Registrierungen."
 
-#: ../../mod/connedit.php:467
-msgid "Last update:"
-msgstr "Letzte Aktualisierung:"
+#: ../../mod/admin.php:744
+msgid "Approve"
+msgstr "Genehmigen"
 
-#: ../../mod/connedit.php:469
-msgid "Update public posts"
-msgstr "Öffentliche Beiträge aktualisieren"
+#: ../../mod/admin.php:745
+msgid "Deny"
+msgstr "Verweigern"
 
-#: ../../mod/connedit.php:471
-msgid "Update now"
-msgstr "Jetzt aktualisieren"
+#: ../../mod/admin.php:747 ../../mod/connedit.php:333
+#: ../../mod/connedit.php:475
+msgid "Block"
+msgstr "Blockieren"
 
-#: ../../mod/connedit.php:477
-msgid "Currently blocked"
-msgstr "Derzeit blockiert"
+#: ../../mod/admin.php:748 ../../mod/connedit.php:333
+#: ../../mod/connedit.php:475
+msgid "Unblock"
+msgstr "Freigeben"
 
-#: ../../mod/connedit.php:478
-msgid "Currently ignored"
-msgstr "Derzeit ignoriert"
+#: ../../mod/admin.php:751
+msgid "Register date"
+msgstr "Registrierungs-Datum"
 
-#: ../../mod/connedit.php:479
-msgid "Currently archived"
-msgstr "Derzeit archiviert"
+#: ../../mod/admin.php:751
+msgid "Last login"
+msgstr "Letzte Anmeldung"
 
-#: ../../mod/connedit.php:480
-msgid "Currently pending"
-msgstr "Derzeit anstehend"
+#: ../../mod/admin.php:751
+msgid "Expires"
+msgstr "Verfällt"
 
-#: ../../mod/connedit.php:481
-msgid "Hide this contact from others"
-msgstr "Diese Verbindung vor den anderen verbergen."
+#: ../../mod/admin.php:751
+msgid "Service Class"
+msgstr "Service-Klasse"
 
-#: ../../mod/connedit.php:481
+#: ../../mod/admin.php:753
 msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>können</strong> immer noch sichtbar sein"
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlles, was diese Nutzer auf dieser Seite veröffentlicht haben, wird endgültig gelöscht!\\n\\nBist Du sicher?"
 
-#: ../../mod/layouts.php:52
-msgid "Layout Help"
-msgstr "Layout-Hilfe"
+#: ../../mod/admin.php:754
+msgid ""
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles, was dieser Nutzer auf dieser Seite veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?"
 
-#: ../../mod/layouts.php:55
-msgid "Help with this feature"
-msgstr "Hilfe zu dieser Funktion"
+#: ../../mod/admin.php:795
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Plug-In %s deaktiviert."
 
-#: ../../mod/layouts.php:74
-msgid "Layout Name"
-msgstr "Layout-Name"
+#: ../../mod/admin.php:799
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Plug-In %s aktiviert."
 
-#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55
-msgid "Help:"
-msgstr "Hilfe:"
+#: ../../mod/admin.php:809 ../../mod/admin.php:1011
+msgid "Disable"
+msgstr "Deaktivieren"
 
-#: ../../mod/help.php:68 ../../index.php:223
-msgid "Not Found"
-msgstr "Nicht gefunden"
+#: ../../mod/admin.php:811 ../../mod/admin.php:1013
+msgid "Enable"
+msgstr "Aktivieren"
 
-#: ../../mod/help.php:71 ../../mod/page.php:83 ../../mod/display.php:100
-#: ../../index.php:226
-msgid "Page not found."
-msgstr "Seite nicht gefunden."
+#: ../../mod/admin.php:837 ../../mod/admin.php:1042
+msgid "Toggle"
+msgstr "Umschalten"
 
-#: ../../mod/rmagic.php:56
-msgid "Remote Authentication"
-msgstr "Entfernte Authentifizierung"
+#: ../../mod/admin.php:845 ../../mod/admin.php:1052
+msgid "Author: "
+msgstr "Autor: "
 
-#: ../../mod/rmagic.php:57
-msgid "Enter your channel address (e.g. channel@example.com)"
-msgstr "Deine Kanal-Adresse (z. B. channel@example.com)"
+#: ../../mod/admin.php:846 ../../mod/admin.php:1053
+msgid "Maintainer: "
+msgstr "Betreuer:"
 
-#: ../../mod/rmagic.php:58
-msgid "Authenticate"
-msgstr "Authentifizieren"
+#: ../../mod/admin.php:975
+msgid "No themes found."
+msgstr "Keine Theme gefunden."
 
-#: ../../mod/page.php:35
-msgid "Invalid item."
-msgstr "Ungültiges Element."
+#: ../../mod/admin.php:1034
+msgid "Screenshot"
+msgstr "Bildschirmfoto"
 
-#: ../../mod/network.php:79
-msgid "No such group"
-msgstr "Gruppe existiert nicht"
+#: ../../mod/admin.php:1082
+msgid "[Experimental]"
+msgstr "[Experimentell]"
 
-#: ../../mod/network.php:118
-msgid "Search Results For:"
-msgstr "Suchergebnisse für:"
+#: ../../mod/admin.php:1083
+msgid "[Unsupported]"
+msgstr "[Nicht unterstützt]"
 
-#: ../../mod/network.php:172
-msgid "Collection is empty"
-msgstr "Sammlung ist leer"
+#: ../../mod/admin.php:1110
+msgid "Log settings updated."
+msgstr "Protokoll-Einstellungen aktualisiert."
 
-#: ../../mod/network.php:180
-msgid "Collection: "
-msgstr "Sammlung:"
+#: ../../mod/admin.php:1166
+msgid "Clear"
+msgstr "Leeren"
 
-#: ../../mod/network.php:193
-msgid "Connection: "
-msgstr "Verbindung:"
+#: ../../mod/admin.php:1172
+msgid "Debugging"
+msgstr "Debugging"
 
-#: ../../mod/network.php:196
-msgid "Invalid connection."
-msgstr "Ungültige Verbindung."
+#: ../../mod/admin.php:1173
+msgid "Log file"
+msgstr "Protokolldatei"
 
-#: ../../mod/profiles.php:18 ../../mod/profiles.php:138
-#: ../../mod/profiles.php:168 ../../mod/profiles.php:463
-msgid "Profile not found."
-msgstr "Profil nicht gefunden."
+#: ../../mod/admin.php:1173
+msgid ""
+"Must be writable by web server. Relative to your Red top-level directory."
+msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Red-Stammverzeichnis."
 
-#: ../../mod/profiles.php:38
-msgid "Profile deleted."
-msgstr "Profil gelöscht."
+#: ../../mod/admin.php:1174
+msgid "Log level"
+msgstr "Protokollstufe"
 
-#: ../../mod/profiles.php:56 ../../mod/profiles.php:92
-msgid "Profile-"
-msgstr "Profil-"
+#: ../../mod/filer.php:35
+msgid "- select -"
+msgstr "– auswählen –"
 
-#: ../../mod/profiles.php:77 ../../mod/profiles.php:120
-msgid "New profile created."
-msgstr "Neues Profil erstellt."
+#: ../../mod/home.php:89
+#, php-format
+msgid "Welcome to %s"
+msgstr "Willkommen auf %s"
 
-#: ../../mod/profiles.php:98
-msgid "Profile unavailable to clone."
-msgstr "Profil kann nicht geklont werden."
+#: ../../mod/editpost.php:20 ../../mod/editlayout.php:36
+#: ../../mod/editwebpage.php:32 ../../mod/editblock.php:36
+msgid "Item not found"
+msgstr "Element nicht gefunden"
 
-#: ../../mod/profiles.php:178
-msgid "Profile Name is required."
-msgstr "Profil-Name erforderlich."
+#: ../../mod/editpost.php:31
+msgid "Item is not editable"
+msgstr "Element kann nicht bearbeitet werden."
 
-#: ../../mod/profiles.php:294
-msgid "Marital Status"
-msgstr "Familienstand"
+#: ../../mod/editpost.php:53
+msgid "Delete item?"
+msgstr "Eintrag löschen?"
 
-#: ../../mod/profiles.php:298
-msgid "Romantic Partner"
-msgstr "Romantische Partner"
+#: ../../mod/editpost.php:116 ../../mod/editlayout.php:110
+#: ../../mod/editwebpage.php:148 ../../mod/editblock.php:124
+msgid "Insert YouTube video"
+msgstr "YouTube-Video einfügen"
 
-#: ../../mod/profiles.php:302
-msgid "Likes"
-msgstr "Gefällt"
+#: ../../mod/editpost.php:117 ../../mod/editlayout.php:111
+#: ../../mod/editwebpage.php:149 ../../mod/editblock.php:125
+msgid "Insert Vorbis [.ogg] video"
+msgstr "Vorbis [.ogg]-Video einfügen"
 
-#: ../../mod/profiles.php:306
-msgid "Dislikes"
-msgstr "Gefällt nicht"
-
-#: ../../mod/profiles.php:310
-msgid "Work/Employment"
-msgstr "Arbeit/Anstellung"
+#: ../../mod/editpost.php:118 ../../mod/editlayout.php:112
+#: ../../mod/editwebpage.php:150 ../../mod/editblock.php:126
+msgid "Insert Vorbis [.ogg] audio"
+msgstr "Vorbis [.ogg]-Audio einfügen"
 
-#: ../../mod/profiles.php:313
-msgid "Religion"
-msgstr "Religion"
+#: ../../mod/directory.php:144 ../../mod/profiles.php:561
+#: ../../mod/dirprofile.php:98
+msgid "Age: "
+msgstr "Alter:"
 
-#: ../../mod/profiles.php:317
-msgid "Political Views"
-msgstr "Politische Ansichten"
+#: ../../mod/directory.php:147 ../../mod/dirprofile.php:101
+msgid "Gender: "
+msgstr "Geschlecht:"
 
-#: ../../mod/profiles.php:321
-msgid "Gender"
-msgstr "Geschlecht"
+#: ../../mod/directory.php:208
+msgid "Finding:"
+msgstr "Ergebnisse:"
 
-#: ../../mod/profiles.php:325
-msgid "Sexual Preference"
-msgstr "Sexuelle Orientierung"
+#: ../../mod/directory.php:216
+msgid "next page"
+msgstr "nächste Seite"
 
-#: ../../mod/profiles.php:329
-msgid "Homepage"
-msgstr "Webseite"
+#: ../../mod/directory.php:216
+msgid "previous page"
+msgstr "vorige Seite"
 
-#: ../../mod/profiles.php:333
-msgid "Interests"
-msgstr "Hobbys/Interessen"
+#: ../../mod/directory.php:223
+msgid "No entries (some entries may be hidden)."
+msgstr "Keine Einträge gefunden (einige könnten versteckt sein)."
 
-#: ../../mod/profiles.php:337
-msgid "Address"
-msgstr "Adresse"
+#: ../../mod/connedit.php:49 ../../mod/connections.php:37
+msgid "Could not access contact record."
+msgstr "Konnte nicht auf den Kontakteintrag zugreifen."
 
-#: ../../mod/profiles.php:344 ../../mod/pubsites.php:31
-msgid "Location"
-msgstr "Ort"
+#: ../../mod/connedit.php:63 ../../mod/connections.php:51
+msgid "Could not locate selected profile."
+msgstr "Gewähltes Profil nicht gefunden."
 
-#: ../../mod/profiles.php:427
-msgid "Profile updated."
-msgstr "Profil aktualisiert."
+#: ../../mod/connedit.php:107 ../../mod/connections.php:94
+msgid "Connection updated."
+msgstr "Verbindung aktualisiert."
 
-#: ../../mod/profiles.php:482
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Deine Kontaktliste vor Betrachtern dieses Profils verbergen?"
+#: ../../mod/connedit.php:109 ../../mod/connections.php:96
+msgid "Failed to update connection record."
+msgstr "Konnte den Verbindungseintrag nicht aktualisieren."
 
-#: ../../mod/profiles.php:505
-msgid "Edit Profile Details"
-msgstr "Bearbeite Profil-Details"
+#: ../../mod/connedit.php:204
+msgid "Could not access address book record."
+msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen."
 
-#: ../../mod/profiles.php:507
-msgid "View this profile"
-msgstr "Dieses Profil ansehen"
+#: ../../mod/connedit.php:218
+msgid "Refresh failed - channel is currently unavailable."
+msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar."
 
-#: ../../mod/profiles.php:508
-msgid "Change Profile Photo"
-msgstr "Profilfoto ändern"
+#: ../../mod/connedit.php:225
+msgid "Channel has been unblocked"
+msgstr "Kanal nicht mehr blockiert"
 
-#: ../../mod/profiles.php:509
-msgid "Create a new profile using these settings"
-msgstr "Neues Profil anlegen und diese Einstellungen übernehmen"
+#: ../../mod/connedit.php:226
+msgid "Channel has been blocked"
+msgstr "Kanal blockiert"
 
-#: ../../mod/profiles.php:510
-msgid "Clone this profile"
-msgstr "Dieses Profil klonen"
+#: ../../mod/connedit.php:230 ../../mod/connedit.php:242
+#: ../../mod/connedit.php:254 ../../mod/connedit.php:266
+#: ../../mod/connedit.php:281
+msgid "Unable to set address book parameters."
+msgstr "Konnte die Adressbuch-Parameter nicht setzen."
 
-#: ../../mod/profiles.php:511
-msgid "Delete this profile"
-msgstr "Dieses Profil löschen"
+#: ../../mod/connedit.php:237
+msgid "Channel has been unignored"
+msgstr "Kanal wird nicht mehr ignoriert"
 
-#: ../../mod/profiles.php:512
-msgid "Profile Name:"
-msgstr "Profilname:"
+#: ../../mod/connedit.php:238
+msgid "Channel has been ignored"
+msgstr "Kanal wird ignoriert"
 
-#: ../../mod/profiles.php:513
-msgid "Your Full Name:"
-msgstr "Dein voller Name:"
+#: ../../mod/connedit.php:249
+msgid "Channel has been unarchived"
+msgstr "Kanal wurde aus dem Archiv zurück geholt"
 
-#: ../../mod/profiles.php:514
-msgid "Title/Description:"
-msgstr "Titel/Stellenbeschreibung:"
+#: ../../mod/connedit.php:250
+msgid "Channel has been archived"
+msgstr "Kanal wurde archiviert"
 
-#: ../../mod/profiles.php:515
-msgid "Your Gender:"
-msgstr "Dein Geschlecht:"
+#: ../../mod/connedit.php:261
+msgid "Channel has been unhidden"
+msgstr "Kanal wird nicht mehr versteckt"
 
-#: ../../mod/profiles.php:516
-#, php-format
-msgid "Birthday (%s):"
-msgstr "Geburtstag (%s):"
+#: ../../mod/connedit.php:262
+msgid "Channel has been hidden"
+msgstr "Kanal wurde versteckt"
 
-#: ../../mod/profiles.php:517
-msgid "Street Address:"
-msgstr "Straße und Hausnummer:"
+#: ../../mod/connedit.php:276
+msgid "Channel has been approved"
+msgstr "Kanal wurde zugelassen"
 
-#: ../../mod/profiles.php:518
-msgid "Locality/City:"
-msgstr "Wohnort:"
+#: ../../mod/connedit.php:277
+msgid "Channel has been unapproved"
+msgstr "Zulassung des Kanals entfernt"
 
-#: ../../mod/profiles.php:519
-msgid "Postal/Zip Code:"
-msgstr "Postleitzahl:"
+#: ../../mod/connedit.php:295
+msgid "Contact has been removed."
+msgstr "Kontakt wurde entfernt."
 
-#: ../../mod/profiles.php:520
-msgid "Country:"
-msgstr "Land:"
+#: ../../mod/connedit.php:315
+#, php-format
+msgid "View %s's profile"
+msgstr "%ss Profil ansehen"
 
-#: ../../mod/profiles.php:521
-msgid "Region/State:"
-msgstr "Region/Bundesstaat:"
+#: ../../mod/connedit.php:319
+msgid "Refresh Permissions"
+msgstr "Zugriffsrechte neu laden"
 
-#: ../../mod/profiles.php:522
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
+#: ../../mod/connedit.php:322
+msgid "Fetch updated permissions"
+msgstr "Aktualisierte Zugriffsrechte abfragen"
 
-#: ../../mod/profiles.php:523
-msgid "Who: (if applicable)"
-msgstr "Wer: (falls anwendbar)"
+#: ../../mod/connedit.php:326
+msgid "Recent Activity"
+msgstr "Kürzliche Aktivitäten"
 
-#: ../../mod/profiles.php:524
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
+#: ../../mod/connedit.php:329
+msgid "View recent posts and comments"
+msgstr "Betrachte die neuesten Beiträge und Kommentare"
 
-#: ../../mod/profiles.php:525
-msgid "Since [date]:"
-msgstr "Seit [Datum]:"
+#: ../../mod/connedit.php:336
+msgid "Block or Unblock this connection"
+msgstr "Verbindung blockieren oder freigeben"
 
-#: ../../mod/profiles.php:527
-msgid "Homepage URL:"
-msgstr "Homepage URL:"
+#: ../../mod/connedit.php:340 ../../mod/connedit.php:476
+msgid "Unignore"
+msgstr "Nicht ignorieren"
 
-#: ../../mod/profiles.php:530
-msgid "Religious Views:"
-msgstr "Religiöse Ansichten:"
+#: ../../mod/connedit.php:340 ../../mod/connedit.php:476
+#: ../../mod/notifications.php:51
+msgid "Ignore"
+msgstr "Ignorieren"
 
-#: ../../mod/profiles.php:531
-msgid "Keywords:"
-msgstr "Schlüsselwörter:"
+#: ../../mod/connedit.php:343
+msgid "Ignore or Unignore this connection"
+msgstr "Verbindung ignorieren oder wieder beachten"
 
-#: ../../mod/profiles.php:534
-msgid "Example: fishing photography software"
-msgstr "Beispiel: Angeln Fotografie Software"
+#: ../../mod/connedit.php:346
+msgid "Unarchive"
+msgstr "Aus Archiv zurückholen"
 
-#: ../../mod/profiles.php:535
-msgid "Used in directory listings"
-msgstr "Wird in Verzeichnis-Auflistungen verwendet"
+#: ../../mod/connedit.php:346
+msgid "Archive"
+msgstr "Archivieren"
 
-#: ../../mod/profiles.php:536
-msgid "Tell us about yourself..."
-msgstr "Erzähle uns ein wenig von Dir …"
+#: ../../mod/connedit.php:349
+msgid "Archive or Unarchive this connection"
+msgstr "Verbindung archivieren oder aus dem Archiv zurückholen"
 
-#: ../../mod/profiles.php:537
-msgid "Hobbies/Interests"
-msgstr "Hobbys/Interessen"
+#: ../../mod/connedit.php:352
+msgid "Unhide"
+msgstr "Wieder sichtbar machen"
 
-#: ../../mod/profiles.php:538
-msgid "Contact information and Social Networks"
-msgstr "Kontaktinformation und soziale Netzwerke"
+#: ../../mod/connedit.php:352
+msgid "Hide"
+msgstr "Verstecken"
 
-#: ../../mod/profiles.php:539
-msgid "My other channels"
-msgstr "Meine anderen Kanäle"
+#: ../../mod/connedit.php:355
+msgid "Hide or Unhide this connection"
+msgstr "Diese Verbindung verstecken oder wieder sichtbar machen"
 
-#: ../../mod/profiles.php:540
-msgid "Musical interests"
-msgstr "Musikalische Interessen"
+#: ../../mod/connedit.php:362
+msgid "Delete this connection"
+msgstr "Verbindung löschen"
 
-#: ../../mod/profiles.php:541
-msgid "Books, literature"
-msgstr "Bücher, Literatur"
-
-#: ../../mod/profiles.php:542
-msgid "Television"
-msgstr "Fernsehen"
-
-#: ../../mod/profiles.php:543
-msgid "Film/dance/culture/entertainment"
-msgstr "Film/Tanz/Kultur/Unterhaltung"
+#: ../../mod/connedit.php:405 ../../mod/connedit.php:434
+msgid "Approve this connection"
+msgstr "Verbindung genehmigen"
 
-#: ../../mod/profiles.php:544
-msgid "Love/romance"
-msgstr "Liebe/Romantik"
+#: ../../mod/connedit.php:405
+msgid "Accept connection to allow communication"
+msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen"
 
-#: ../../mod/profiles.php:545
-msgid "Work/employment"
-msgstr "Arbeit/Anstellung"
+#: ../../mod/connedit.php:421
+msgid "Automatic Permissions Settings"
+msgstr "Automatische Berechtigungs-Einstellungen"
 
-#: ../../mod/profiles.php:546
-msgid "School/education"
-msgstr "Schule/Ausbildung"
+#: ../../mod/connedit.php:421
+#, php-format
+msgid "Connections: settings for %s"
+msgstr "Verbindungseinstellungen für %s"
 
-#: ../../mod/profiles.php:551
+#: ../../mod/connedit.php:425
 msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "Das ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden im Internet sichtbar sein."
-
-#: ../../mod/profiles.php:600
-msgid "Edit/Manage Profiles"
-msgstr "Bearbeite/Verwalte Profile"
+"When receiving a channel introduction, any permissions provided here will be"
+" applied to the new connection automatically and the introduction approved. "
+"Leave this page if you do not wish to use this feature."
+msgstr "Wenn eine Verbindungsanfrage empfangen wird, werden die hier getroffenen Einstellungen automatisch angewandt, und die Anfrage wird genehmigt. Verlasse diese Seite, wenn Du diese Funktion nicht verwenden möchtest."
 
-#: ../../mod/profiles.php:601
-msgid "Add profile things"
-msgstr "Profil-Dinge hinzufügen"
+#: ../../mod/connedit.php:427
+msgid "Slide to adjust your degree of friendship"
+msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen"
 
-#: ../../mod/profiles.php:602
-msgid "Include desirable objects in your profile"
-msgstr "Binde begehrenswerte Dinge in Dein Profil ein"
+#: ../../mod/connedit.php:433
+msgid "inherited"
+msgstr "geerbt"
 
-#: ../../mod/follow.php:25
-msgid "Channel added."
-msgstr "Kanal hinzugefügt."
+#: ../../mod/connedit.php:435
+msgid "Connection has no individual permissions!"
+msgstr "Diese Verbindung hat keine individuellen Zugriffsrechte!"
 
-#: ../../mod/post.php:226
+#: ../../mod/connedit.php:436
 msgid ""
-"Remote authentication blocked. You are logged into this site locally. Please"
-" logout and retry."
-msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut."
+"This may be appropriate based on your <a href=\"settings\">privacy "
+"settings</a>, though you may wish to review the \"Advanced Permissions\"."
+msgstr "Abhängig von Deinen <a href=\"settings\">Privatsphäre-Einstellungen</a> könnte das passen, eventuell solltest Du aber die „Zugriffsrechte für Fortgeschrittene“ überprüfen."
+
+#: ../../mod/connedit.php:438
+msgid "Profile Visibility"
+msgstr "Sichtbarkeit des Profils"
 
-#: ../../mod/post.php:256
+#: ../../mod/connedit.php:439
 #, php-format
-msgid "Welcome %s. Remote authentication successful."
-msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich."
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird."
 
-#: ../../mod/dirsearch.php:21
-msgid "This site is not a directory server"
-msgstr "Diese Website ist kein Verzeichnis-Server"
+#: ../../mod/connedit.php:440
+msgid "Contact Information / Notes"
+msgstr "Kontaktinformationen / Notizen"
 
-#: ../../mod/sources.php:32
-msgid "Failed to create source. No channel selected."
-msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt."
+#: ../../mod/connedit.php:441
+msgid "Edit contact notes"
+msgstr "Kontaktnotizen bearbeiten"
 
-#: ../../mod/sources.php:45
-msgid "Source created."
-msgstr "Quelle erstellt."
+#: ../../mod/connedit.php:443
+msgid "Their Settings"
+msgstr "Deren Einstellungen"
 
-#: ../../mod/sources.php:57
-msgid "Source updated."
-msgstr "Quelle aktualisiert."
+#: ../../mod/connedit.php:444
+msgid "My Settings"
+msgstr "Meine Einstellungen"
 
-#: ../../mod/sources.php:82
-msgid "*"
-msgstr "*"
+#: ../../mod/connedit.php:446
+msgid "Forum Members"
+msgstr "Forum Mitglieder"
 
-#: ../../mod/sources.php:89
-msgid "Manage remote sources of content for your channel."
-msgstr "Quellen von Inhalten Deines Kanals verwalten."
+#: ../../mod/connedit.php:447
+msgid "Soapbox"
+msgstr "Marktschreier"
 
-#: ../../mod/sources.php:90 ../../mod/sources.php:100
-msgid "New Source"
-msgstr "Neue Quelle"
+#: ../../mod/connedit.php:448
+msgid "Full Sharing (typical social network permissions)"
+msgstr "Vollumfängliches Teilen (übliche Berechtigungen in sozialen Netzwerken)"
 
-#: ../../mod/sources.php:101 ../../mod/sources.php:133
-msgid ""
-"Import all or selected content from the following channel into this channel "
-"and distribute it according to your channel settings."
-msgstr "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals."
+#: ../../mod/connedit.php:449
+msgid "Cautious Sharing "
+msgstr "Vorsichtiges Teilen"
 
-#: ../../mod/sources.php:102 ../../mod/sources.php:134
-msgid "Only import content with these words (one per line)"
-msgstr "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten"
+#: ../../mod/connedit.php:450
+msgid "Follow Only"
+msgstr "Nur folgen"
 
-#: ../../mod/sources.php:102 ../../mod/sources.php:134
-msgid "Leave blank to import all public content"
-msgstr "Leer lassen, um alle öffentlichen Beiträge zu importieren"
+#: ../../mod/connedit.php:451
+msgid "Individual Permissions"
+msgstr "Individuelle Zugriffsrechte"
 
-#: ../../mod/sources.php:103 ../../mod/sources.php:137
-#: ../../mod/new_channel.php:110
-msgid "Channel Name"
-msgstr "Name des Kanals"
+#: ../../mod/connedit.php:452
+msgid ""
+"Some permissions may be inherited from your channel <a "
+"href=\"settings\">privacy settings</a>, which have higher priority than "
+"individual settings. Changing those inherited settings on this page will "
+"have no effect."
+msgstr "Einige Berechtigungen werden von den <a href=\"settings\">Sicherheits- und Privatsphäre-Einstellungen</a> dieses Kanals geerbt, die eine höhere Priorität haben als die Einstellungen bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat das keine Auswirkungen."
 
-#: ../../mod/sources.php:123 ../../mod/sources.php:150
-msgid "Source not found."
-msgstr "Quelle nicht gefunden."
+#: ../../mod/connedit.php:453
+msgid "Advanced Permissions"
+msgstr "Zugriffsrechte für Fortgeschrittene"
 
-#: ../../mod/sources.php:130
-msgid "Edit Source"
-msgstr "Quelle bearbeiten"
+#: ../../mod/connedit.php:454
+msgid "Simple Permissions (select one and submit)"
+msgstr "Einfache Berechtigungs-Einstellungen (wähle eine aus und klicke auf Senden)"
 
-#: ../../mod/sources.php:131
-msgid "Delete Source"
-msgstr "Quelle löschen"
+#: ../../mod/connedit.php:458
+#, php-format
+msgid "Visit %s's profile - %s"
+msgstr "%ss Profil besuchen - %s"
 
-#: ../../mod/sources.php:158
-msgid "Source removed"
-msgstr "Quelle gelöscht"
+#: ../../mod/connedit.php:459
+msgid "Block/Unblock contact"
+msgstr "Kontakt blockieren/freigeben"
 
-#: ../../mod/sources.php:160
-msgid "Unable to remove source."
-msgstr "Konnte die Quelle nicht löschen."
+#: ../../mod/connedit.php:460
+msgid "Ignore contact"
+msgstr "Kontakt ignorieren"
 
-#: ../../mod/lockview.php:34
-msgid "Remote privacy information not available."
-msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar."
+#: ../../mod/connedit.php:461
+msgid "Repair URL settings"
+msgstr "URL-Einstellungen reparieren"
 
-#: ../../mod/lockview.php:43
-msgid "Visible to:"
-msgstr "Sichtbar für:"
+#: ../../mod/connedit.php:462
+msgid "View conversations"
+msgstr "Unterhaltungen anzeigen"
 
-#: ../../mod/magic.php:70
-msgid "Hub not found."
-msgstr "Server nicht gefunden."
+#: ../../mod/connedit.php:464
+msgid "Delete contact"
+msgstr "Kontakt löschen"
 
-#: ../../mod/setup.php:161
-msgid "Red Matrix Server - Setup"
-msgstr "Red Matrix Server - Installation"
+#: ../../mod/connedit.php:467
+msgid "Last update:"
+msgstr "Letzte Aktualisierung:"
 
-#: ../../mod/setup.php:167
-msgid "Could not connect to database."
-msgstr "Kann nicht mit der Datenbank verbinden."
+#: ../../mod/connedit.php:469
+msgid "Update public posts"
+msgstr "Öffentliche Beiträge aktualisieren"
 
-#: ../../mod/setup.php:171
-msgid ""
-"Could not connect to specified site URL. Possible SSL certificate or DNS "
-"issue."
-msgstr "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS."
+#: ../../mod/connedit.php:471
+msgid "Update now"
+msgstr "Jetzt aktualisieren"
 
-#: ../../mod/setup.php:176
-msgid "Could not create table."
-msgstr "Kann Tabelle nicht erstellen."
+#: ../../mod/connedit.php:477
+msgid "Currently blocked"
+msgstr "Derzeit blockiert"
 
-#: ../../mod/setup.php:182
-msgid "Your site database has been installed."
-msgstr "Die Datenbank Deines Servers wurde installiert."
+#: ../../mod/connedit.php:478
+msgid "Currently ignored"
+msgstr "Derzeit ignoriert"
 
-#: ../../mod/setup.php:187
-msgid ""
-"You may need to import the file \"install/database.sql\" manually using "
-"phpmyadmin or mysql."
-msgstr "Eventuell musst Du die Datei \"install/database.sql\" per Hand mit phpmyadmin oder mysql importieren."
+#: ../../mod/connedit.php:479
+msgid "Currently archived"
+msgstr "Derzeit archiviert"
 
-#: ../../mod/setup.php:188 ../../mod/setup.php:257 ../../mod/setup.php:609
-msgid "Please see the file \"install/INSTALL.txt\"."
-msgstr "Lies die Datei \"install/INSTALL.txt\"."
+#: ../../mod/connedit.php:480
+msgid "Currently pending"
+msgstr "Derzeit anstehend"
 
-#: ../../mod/setup.php:254
-msgid "System check"
-msgstr "Systemprüfung"
+#: ../../mod/connedit.php:481
+msgid "Hide this contact from others"
+msgstr "Diese Verbindung vor den anderen verbergen."
 
-#: ../../mod/setup.php:259
-msgid "Check again"
-msgstr "Bitte nochmal prüfen"
-
-#: ../../mod/setup.php:281
-msgid "Database connection"
-msgstr "Datenbank Verbindung"
-
-#: ../../mod/setup.php:282
+#: ../../mod/connedit.php:481
 msgid ""
-"In order to install Red Matrix we need to know how to connect to your "
-"database."
-msgstr "Um die Red-Matrix installieren zu können, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können."
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>können</strong> immer noch sichtbar sein"
 
-#: ../../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 Administrator, falls Du Fragen zu diesen Einstellungen hast."
+#: ../../mod/layouts.php:52
+msgid "Layout Help"
+msgstr "Layout-Hilfe"
 
-#: ../../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/layouts.php:55
+msgid "Help with this feature"
+msgstr "Hilfe zu dieser Funktion"
 
-#: ../../mod/setup.php:288
-msgid "Database Server Name"
-msgstr "Datenbank-Servername"
+#: ../../mod/layouts.php:74
+msgid "Layout Name"
+msgstr "Layout-Name"
 
-#: ../../mod/setup.php:288
-msgid "Default is localhost"
-msgstr "Standard ist localhost"
+#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55
+msgid "Help:"
+msgstr "Hilfe:"
 
-#: ../../mod/setup.php:289
-msgid "Database Port"
-msgstr "Datenbank-Port"
+#: ../../mod/help.php:68 ../../index.php:223
+msgid "Not Found"
+msgstr "Nicht gefunden"
 
-#: ../../mod/setup.php:289
-msgid "Communication port number - use 0 for default"
-msgstr "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung"
+#: ../../mod/help.php:71 ../../mod/page.php:83 ../../mod/display.php:100
+#: ../../index.php:226
+msgid "Page not found."
+msgstr "Seite nicht gefunden."
 
-#: ../../mod/setup.php:290
-msgid "Database Login Name"
-msgstr "Datenbank-Benutzername"
+#: ../../mod/rmagic.php:38
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Wir haben ein Problem mit der OpenID festgestellt, mit der du dich anmelden wolltest. Bitte überprüfe die Schreibweise der ID noch einmal."
 
-#: ../../mod/setup.php:291
-msgid "Database Login Password"
-msgstr "Datenbank-Kennwort"
+#: ../../mod/rmagic.php:38
+msgid "The error message was:"
+msgstr "Die Fehlermeldung lautet:"
 
-#: ../../mod/setup.php:292
-msgid "Database Name"
-msgstr "Datenbank-Name"
+#: ../../mod/rmagic.php:42
+msgid "Authentication failed."
+msgstr "Authentifizierung fehlgeschlagen."
 
-#: ../../mod/setup.php:294 ../../mod/setup.php:336
-msgid "Site administrator email address"
-msgstr "E-Mail Adresse des Seiten-Administrators"
+#: ../../mod/rmagic.php:78
+msgid "Remote Authentication"
+msgstr "Entfernte Authentifizierung"
 
-#: ../../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 E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst."
+#: ../../mod/rmagic.php:79
+msgid "Enter your channel address (e.g. channel@example.com)"
+msgstr "Deine Kanal-Adresse (z. B. channel@example.com)"
 
-#: ../../mod/setup.php:295 ../../mod/setup.php:338
-msgid "Website URL"
-msgstr "Server-URL"
+#: ../../mod/rmagic.php:80
+msgid "Authenticate"
+msgstr "Authentifizieren"
 
-#: ../../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/page.php:35
+msgid "Invalid item."
+msgstr "Ungültiges Element."
 
-#: ../../mod/setup.php:298 ../../mod/setup.php:341
-msgid "Please select a default timezone for your website"
-msgstr "Standard-Zeitzone für Deinen Server"
+#: ../../mod/network.php:79
+msgid "No such group"
+msgstr "Gruppe existiert nicht"
 
-#: ../../mod/setup.php:325
-msgid "Site settings"
-msgstr "Seiteneinstellungen"
+#: ../../mod/network.php:118
+msgid "Search Results For:"
+msgstr "Suchergebnisse für:"
 
-#: ../../mod/setup.php:384
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden."
+#: ../../mod/network.php:172
+msgid "Collection is empty"
+msgstr "Sammlung ist leer"
 
-#: ../../mod/setup.php:385
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run background polling via cron."
-msgstr "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen."
+#: ../../mod/network.php:180
+msgid "Collection: "
+msgstr "Sammlung:"
 
-#: ../../mod/setup.php:389
-msgid "PHP executable path"
-msgstr "PHP Pfad zu ausführbarer Datei"
+#: ../../mod/network.php:193
+msgid "Connection: "
+msgstr "Verbindung:"
 
-#: ../../mod/setup.php:389
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren."
+#: ../../mod/network.php:196
+msgid "Invalid connection."
+msgstr "Ungültige Verbindung."
 
-#: ../../mod/setup.php:394
-msgid "Command line PHP"
-msgstr "PHP Befehlszeile"
+#: ../../mod/profiles.php:18 ../../mod/profiles.php:138
+#: ../../mod/profiles.php:168 ../../mod/profiles.php:463
+msgid "Profile not found."
+msgstr "Profil nicht gefunden."
 
-#: ../../mod/setup.php:403
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert."
+#: ../../mod/profiles.php:38
+msgid "Profile deleted."
+msgstr "Profil gelöscht."
 
-#: ../../mod/setup.php:404
-msgid "This is required for message delivery to work."
-msgstr "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert."
+#: ../../mod/profiles.php:56 ../../mod/profiles.php:92
+msgid "Profile-"
+msgstr "Profil-"
 
-#: ../../mod/setup.php:406
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../mod/profiles.php:77 ../../mod/profiles.php:120
+msgid "New profile created."
+msgstr "Neues Profil erstellt."
 
-#: ../../mod/setup.php:427
-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/profiles.php:98
+msgid "Profile unavailable to clone."
+msgstr "Profil kann nicht geklont werden."
 
-#: ../../mod/setup.php:428
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung."
+#: ../../mod/profiles.php:178
+msgid "Profile Name is required."
+msgstr "Profil-Name erforderlich."
 
-#: ../../mod/setup.php:430
-msgid "Generate encryption keys"
-msgstr "Verschlüsselungsschlüssel  generieren"
+#: ../../mod/profiles.php:294
+msgid "Marital Status"
+msgstr "Familienstand"
 
-#: ../../mod/setup.php:437
-msgid "libCurl PHP module"
-msgstr "libCurl-PHP-Modul"
+#: ../../mod/profiles.php:298
+msgid "Romantic Partner"
+msgstr "Romantische Partner"
 
-#: ../../mod/setup.php:438
-msgid "GD graphics PHP module"
-msgstr "GD-Grafik-PHP-Modul"
+#: ../../mod/profiles.php:302
+msgid "Likes"
+msgstr "Gefällt"
 
-#: ../../mod/setup.php:439
-msgid "OpenSSL PHP module"
-msgstr "OpenSSL-PHP-Modul"
+#: ../../mod/profiles.php:306
+msgid "Dislikes"
+msgstr "Gefällt nicht"
 
-#: ../../mod/setup.php:440
-msgid "mysqli PHP module"
-msgstr "mysqli-PHP-Modul"
+#: ../../mod/profiles.php:310
+msgid "Work/Employment"
+msgstr "Arbeit/Anstellung"
 
-#: ../../mod/setup.php:441
-msgid "mb_string PHP module"
-msgstr "mb_string-PHP-Modul"
+#: ../../mod/profiles.php:313
+msgid "Religion"
+msgstr "Religion"
 
-#: ../../mod/setup.php:442
-msgid "mcrypt PHP module"
-msgstr "mcrypt-PHP-Modul"
+#: ../../mod/profiles.php:317
+msgid "Political Views"
+msgstr "Politische Ansichten"
 
-#: ../../mod/setup.php:447 ../../mod/setup.php:449
-msgid "Apache mod_rewrite module"
-msgstr "Apache-mod_rewrite-Modul"
+#: ../../mod/profiles.php:321
+msgid "Gender"
+msgstr "Geschlecht"
 
-#: ../../mod/setup.php:447
-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/profiles.php:325
+msgid "Sexual Preference"
+msgstr "Sexuelle Orientierung"
 
-#: ../../mod/setup.php:453 ../../mod/setup.php:456
-msgid "proc_open"
-msgstr "proc_open"
+#: ../../mod/profiles.php:329
+msgid "Homepage"
+msgstr "Webseite"
 
-#: ../../mod/setup.php:453
-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/profiles.php:333
+msgid "Interests"
+msgstr "Hobbys/Interessen"
 
-#: ../../mod/setup.php:461
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert."
+#: ../../mod/profiles.php:337
+msgid "Address"
+msgstr "Adresse"
 
-#: ../../mod/setup.php:465
-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/profiles.php:344 ../../mod/pubsites.php:31
+msgid "Location"
+msgstr "Ort"
 
-#: ../../mod/setup.php:469
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert."
+#: ../../mod/profiles.php:427
+msgid "Profile updated."
+msgstr "Profil aktualisiert."
 
-#: ../../mod/setup.php:473
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Fehler: Das PHP-Modul mysqli wird benötigt, ist aber nicht installiert."
+#: ../../mod/profiles.php:482
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Deine Kontaktliste vor Betrachtern dieses Profils verbergen?"
 
-#: ../../mod/setup.php:477
-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/profiles.php:505
+msgid "Edit Profile Details"
+msgstr "Bearbeite Profil-Details"
 
-#: ../../mod/setup.php:481
-msgid "Error: mcrypt PHP module required but not installed."
-msgstr "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert."
+#: ../../mod/profiles.php:507
+msgid "View this profile"
+msgstr "Dieses Profil ansehen"
 
-#: ../../mod/setup.php:497
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht."
+#: ../../mod/profiles.php:508
+msgid "Change Profile Photo"
+msgstr "Profilfoto ändern"
 
-#: ../../mod/setup.php:498
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Rechte Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst."
+#: ../../mod/profiles.php:509
+msgid "Create a new profile using these settings"
+msgstr "Neues Profil anlegen und diese Einstellungen übernehmen"
 
-#: ../../mod/setup.php:499
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Red top folder."
-msgstr "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Red-Installation speichern musst."
+#: ../../mod/profiles.php:510
+msgid "Clone this profile"
+msgstr "Dieses Profil klonen"
 
-#: ../../mod/setup.php:500
-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/profiles.php:511
+msgid "Delete this profile"
+msgstr "Dieses Profil löschen"
 
-#: ../../mod/setup.php:503
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php ist beschreibbar"
+#: ../../mod/profiles.php:512
+msgid "Profile Name:"
+msgstr "Profilname:"
 
-#: ../../mod/setup.php:513
-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/profiles.php:513
+msgid "Your Full Name:"
+msgstr "Dein voller Name:"
 
-#: ../../mod/setup.php:514
-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 Schreibzugriff auf das Verzeichnis view/tpl/smarty3/ unterhalb des Red-Stammverzeichnisses haben."
+#: ../../mod/profiles.php:514
+msgid "Title/Description:"
+msgstr "Titel/Stellenbeschreibung:"
 
-#: ../../mod/setup.php:515 ../../mod/setup.php:533
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Bitte stelle sicher, dass der Nutzer, unter dem der Webserver läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat."
+#: ../../mod/profiles.php:515
+msgid "Your Gender:"
+msgstr "Dein Geschlecht:"
 
-#: ../../mod/setup.php:516
-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 auf die Vorlagen (.tpl-Dateien) in view/tpl/ ."
+#: ../../mod/profiles.php:516
+#, php-format
+msgid "Birthday (%s):"
+msgstr "Geburtstag (%s):"
 
-#: ../../mod/setup.php:519
-msgid "view/tpl/smarty3 is writable"
-msgstr "view/tpl/smarty3 ist beschreibbar"
+#: ../../mod/profiles.php:517
+msgid "Street Address:"
+msgstr "Straße und Hausnummer:"
 
-#: ../../mod/setup.php:532
-msgid ""
-"Red uses the store directory to save uploaded files. The web server needs to"
-" have write access to the store directory under the Red top level folder"
-msgstr "Red benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses"
+#: ../../mod/profiles.php:518
+msgid "Locality/City:"
+msgstr "Wohnort:"
 
-#: ../../mod/setup.php:536
-msgid "store is writable"
-msgstr "store ist schreibbar"
+#: ../../mod/profiles.php:519
+msgid "Postal/Zip Code:"
+msgstr "Postleitzahl:"
 
-#: ../../mod/setup.php:551
-msgid "SSL certificate validation"
-msgstr "SSL Zertifikatverifizierung"
+#: ../../mod/profiles.php:520
+msgid "Country:"
+msgstr "Land:"
 
-#: ../../mod/setup.php:551
-msgid ""
-"SSL certificate cannot be validated. Fix certificate or disable https access"
-" to this site."
-msgstr "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server."
+#: ../../mod/profiles.php:521
+msgid "Region/State:"
+msgstr "Region/Bundesstaat:"
 
-#: ../../mod/setup.php:558
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "URL rewrite via .htaccess funktioniert nicht. Überprüfe Deine Server-Konfiguration."
+#: ../../mod/profiles.php:522
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
 
-#: ../../mod/setup.php:560
-msgid "Url rewrite is working"
-msgstr "Url rewrite funktioniert"
+#: ../../mod/profiles.php:523
+msgid "Who: (if applicable)"
+msgstr "Wer: (falls anwendbar)"
 
-#: ../../mod/setup.php:570
-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/profiles.php:524
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
 
-#: ../../mod/setup.php:594
-msgid "Errors encountered creating database tables."
-msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten."
+#: ../../mod/profiles.php:525
+msgid "Since [date]:"
+msgstr "Seit [Datum]:"
 
-#: ../../mod/setup.php:607
-msgid "<h1>What next</h1>"
-msgstr "<h1>Was als Nächstes</h1>"
+#: ../../mod/profiles.php:527
+msgid "Homepage URL:"
+msgstr "Homepage URL:"
 
-#: ../../mod/setup.php:608
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten."
+#: ../../mod/profiles.php:530
+msgid "Religious Views:"
+msgstr "Religiöse Ansichten:"
 
-#: ../../mod/siteinfo.php:57
-#, php-format
-msgid "Version %s"
-msgstr "Version %s"
+#: ../../mod/profiles.php:531
+msgid "Keywords:"
+msgstr "Schlüsselwörter:"
 
-#: ../../mod/siteinfo.php:76
-msgid "Installed plugins/addons/apps:"
-msgstr "Installierte Plugins/Addons/Apps"
+#: ../../mod/profiles.php:534
+msgid "Example: fishing photography software"
+msgstr "Beispiel: Angeln Fotografie Software"
 
-#: ../../mod/siteinfo.php:89
-msgid "No installed plugins/addons/apps"
-msgstr "Keine installierten Plugins/Addons/Apps"
+#: ../../mod/profiles.php:535
+msgid "Used in directory listings"
+msgstr "Wird in Verzeichnis-Auflistungen verwendet"
 
-#: ../../mod/siteinfo.php:93
-msgid "Project Donations"
-msgstr "Projekt Spenden"
+#: ../../mod/profiles.php:536
+msgid "Tell us about yourself..."
+msgstr "Erzähle uns ein wenig von Dir …"
 
-#: ../../mod/siteinfo.php:94
-msgid ""
-"<p>The Red Matrix is provided for you by volunteers working in their spare "
-"time. Your support will help us to build a better web. Select the following "
-"option for a one-time donation of your choosing</p>"
-msgstr ""
+#: ../../mod/profiles.php:537
+msgid "Hobbies/Interests"
+msgstr "Hobbys/Interessen"
 
-#: ../../mod/siteinfo.php:95
-msgid "<p>or</p>"
-msgstr "<p>oder</p>"
+#: ../../mod/profiles.php:538
+msgid "Contact information and Social Networks"
+msgstr "Kontaktinformation und soziale Netzwerke"
 
-#: ../../mod/siteinfo.php:96
-msgid "Recurring Donation Options"
-msgstr ""
+#: ../../mod/profiles.php:539
+msgid "My other channels"
+msgstr "Meine anderen Kanäle"
 
-#: ../../mod/siteinfo.php:115
-msgid "Red"
-msgstr "Red"
+#: ../../mod/profiles.php:540
+msgid "Musical interests"
+msgstr "Musikalische Interessen"
 
-#: ../../mod/siteinfo.php:116
-msgid ""
-"This is a hub of the Red Matrix - a global cooperative network of "
-"decentralised privacy enhanced websites."
-msgstr "Dieser Server ist Teil der Red-Matrix – einem global vernetzten Verbund aus dezentralen Websites mit Rücksicht auf die Privatsphäre."
+#: ../../mod/profiles.php:541
+msgid "Books, literature"
+msgstr "Bücher, Literatur"
 
-#: ../../mod/siteinfo.php:119
-msgid "Running at web location"
-msgstr "Erreichbar unter der Web-Adresse"
+#: ../../mod/profiles.php:542
+msgid "Television"
+msgstr "Fernsehen"
 
-#: ../../mod/siteinfo.php:120
-msgid ""
-"Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more "
-"about the Red Matrix."
-msgstr "Besuche <a href=\"http://getzot.com\">GetZot.com</a>, um mehr über die Red-Matrix zu erfahren."
+#: ../../mod/profiles.php:543
+msgid "Film/dance/culture/entertainment"
+msgstr "Film/Tanz/Kultur/Unterhaltung"
 
-#: ../../mod/siteinfo.php:121
-msgid "Bug reports and issues: please visit"
-msgstr "Probleme oder Fehler gefunden? Bitte besuche"
+#: ../../mod/profiles.php:544
+msgid "Love/romance"
+msgstr "Liebe/Romantik"
 
-#: ../../mod/siteinfo.php:124
+#: ../../mod/profiles.php:545
+msgid "Work/employment"
+msgstr "Arbeit/Anstellung"
+
+#: ../../mod/profiles.php:546
+msgid "School/education"
+msgstr "Schule/Ausbildung"
+
+#: ../../mod/profiles.php:551
 msgid ""
-"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot "
-"com"
-msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Das ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden im Internet sichtbar sein."
 
-#: ../../mod/siteinfo.php:126
-msgid "Site Administrators"
-msgstr "Administratoren"
+#: ../../mod/profiles.php:600
+msgid "Edit/Manage Profiles"
+msgstr "Bearbeite/Verwalte Profile"
 
-#: ../../mod/new_channel.php:107
-msgid "Add a Channel"
-msgstr "Kanal hinzufügen"
+#: ../../mod/profiles.php:601
+msgid "Add profile things"
+msgstr "Profil-Dinge hinzufügen"
 
-#: ../../mod/new_channel.php:108
+#: ../../mod/profiles.php:602
+msgid "Include desirable objects in your profile"
+msgstr "Binde begehrenswerte Dinge in Dein Profil ein"
+
+#: ../../mod/follow.php:25
+msgid "Channel added."
+msgstr "Kanal hinzugefügt."
+
+#: ../../mod/post.php:226
 msgid ""
-"A channel is your own collection of related web pages. A channel can be used"
-" to hold social network profiles, blogs, conversation groups and forums, "
-"celebrity pages, and much more. You may create as many channels as your "
-"service provider allows."
-msgstr "Ein Kanal ist Deine eigene Sammlung von verbundenen Webseiten. Ein Kanal kann genutzt werden, um ein Social-Network-Profil, ein Blog, eine Gesprächsgruppe oder ein Forum, Promi-Seiten und vieles mehr zu erstellen. Du kannst so viele Kanäle erstellen, wie es der Betreiber Deiner Seite zulässt."
+"Remote authentication blocked. You are logged into this site locally. Please"
+" logout and retry."
+msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut."
 
-#: ../../mod/new_channel.php:111
-msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "
-msgstr "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ "
+#: ../../mod/post.php:256 ../../mod/openid.php:70 ../../mod/openid.php:175
+#, php-format
+msgid "Welcome %s. Remote authentication successful."
+msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich."
 
-#: ../../mod/new_channel.php:112
-msgid "Choose a short nickname"
-msgstr "Wähle einen kurzen Spitznamen"
+#: ../../mod/dirsearch.php:21
+msgid "This site is not a directory server"
+msgstr "Diese Website ist kein Verzeichnis-Server"
+
+#: ../../mod/sources.php:32
+msgid "Failed to create source. No channel selected."
+msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt."
+
+#: ../../mod/sources.php:45
+msgid "Source created."
+msgstr "Quelle erstellt."
+
+#: ../../mod/sources.php:57
+msgid "Source updated."
+msgstr "Quelle aktualisiert."
+
+#: ../../mod/sources.php:82
+msgid "*"
+msgstr "*"
+
+#: ../../mod/sources.php:89
+msgid "Manage remote sources of content for your channel."
+msgstr "Quellen von Inhalten Deines Kanals verwalten."
+
+#: ../../mod/sources.php:90 ../../mod/sources.php:100
+msgid "New Source"
+msgstr "Neue Quelle"
+
+#: ../../mod/sources.php:101 ../../mod/sources.php:133
+msgid ""
+"Import all or selected content from the following channel into this channel "
+"and distribute it according to your channel settings."
+msgstr "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals."
+
+#: ../../mod/sources.php:102 ../../mod/sources.php:134
+msgid "Only import content with these words (one per line)"
+msgstr "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten"
 
-#: ../../mod/new_channel.php:113
-msgid ""
-"Your nickname will be used to create an easily remembered channel address "
-"(like an email address) which you can share with others."
-msgstr "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst."
+#: ../../mod/sources.php:102 ../../mod/sources.php:134
+msgid "Leave blank to import all public content"
+msgstr "Leer lassen, um alle öffentlichen Beiträge zu importieren"
 
-#: ../../mod/new_channel.php:114
-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 Server"
+#: ../../mod/sources.php:103 ../../mod/sources.php:137
+#: ../../mod/new_channel.php:110
+msgid "Channel Name"
+msgstr "Name des Kanals"
 
-#: ../../mod/lostpass.php:15
-msgid "No valid account found."
-msgstr "Kein gültiges Konto gefunden."
+#: ../../mod/sources.php:123 ../../mod/sources.php:150
+msgid "Source not found."
+msgstr "Quelle nicht gefunden."
 
-#: ../../mod/lostpass.php:29
-msgid "Password reset request issued. Check your email."
-msgstr "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails."
+#: ../../mod/sources.php:130
+msgid "Edit Source"
+msgstr "Quelle bearbeiten"
 
-#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102
-#, php-format
-msgid "Site Member (%s)"
-msgstr "Nutzer (%s)"
+#: ../../mod/sources.php:131
+msgid "Delete Source"
+msgstr "Quelle löschen"
 
-#: ../../mod/lostpass.php:40
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Passwort-Rücksetzung auf %s angefordert"
+#: ../../mod/sources.php:158
+msgid "Source removed"
+msgstr "Quelle gelöscht"
 
-#: ../../mod/lostpass.php:63
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen."
+#: ../../mod/sources.php:160
+msgid "Unable to remove source."
+msgstr "Konnte die Quelle nicht löschen."
 
-#: ../../mod/lostpass.php:85 ../../boot.php:1434
-msgid "Password Reset"
-msgstr "Zurücksetzen des Kennworts"
+#: ../../mod/lockview.php:34
+msgid "Remote privacy information not available."
+msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar."
 
-#: ../../mod/lostpass.php:86
-msgid "Your password has been reset as requested."
-msgstr "Dein Passwort wurde wie angefordert neu erstellt."
+#: ../../mod/lockview.php:43
+msgid "Visible to:"
+msgstr "Sichtbar für:"
 
-#: ../../mod/lostpass.php:87
-msgid "Your new password is"
-msgstr "Dein neues Passwort lautet"
+#: ../../mod/magic.php:70
+msgid "Hub not found."
+msgstr "Server nicht gefunden."
 
-#: ../../mod/lostpass.php:88
-msgid "Save or copy your new password - and then"
-msgstr "Speichere oder kopiere Dein neues Passwort – und dann"
+#: ../../mod/setup.php:161
+msgid "Red Matrix Server - Setup"
+msgstr "Red Matrix Server - Installation"
 
-#: ../../mod/lostpass.php:89
-msgid "click here to login"
-msgstr "Klicke hier, um dich anzumelden"
+#: ../../mod/setup.php:167
+msgid "Could not connect to database."
+msgstr "Kann nicht mit der Datenbank verbinden."
 
-#: ../../mod/lostpass.php:90
+#: ../../mod/setup.php:171
 msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Dein Passwort kann unter <em>Einstellungen</em> nach einer erfolgreichen Anmeldung geändert werden."
+"Could not connect to specified site URL. Possible SSL certificate or DNS "
+"issue."
+msgstr "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS."
 
-#: ../../mod/lostpass.php:107
-#, php-format
-msgid "Your password has changed at %s"
-msgstr "Auf %s wurde Dein Passwort geändert"
+#: ../../mod/setup.php:176
+msgid "Could not create table."
+msgstr "Kann Tabelle nicht erstellen."
 
-#: ../../mod/lostpass.php:122
-msgid "Forgot your Password?"
-msgstr "Kennwort vergessen?"
+#: ../../mod/setup.php:182
+msgid "Your site database has been installed."
+msgstr "Die Datenbank Deines Servers wurde installiert."
 
-#: ../../mod/lostpass.php:123
+#: ../../mod/setup.php:187
 msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail."
+"You may need to import the file \"install/database.sql\" manually using "
+"phpmyadmin or mysql."
+msgstr "Eventuell musst Du die Datei \"install/database.sql\" per Hand mit phpmyadmin oder mysql importieren."
 
-#: ../../mod/lostpass.php:124
-msgid "Email Address"
-msgstr "E-Mail Adresse"
+#: ../../mod/setup.php:188 ../../mod/setup.php:257 ../../mod/setup.php:609
+msgid "Please see the file \"install/INSTALL.txt\"."
+msgstr "Lies die Datei \"install/INSTALL.txt\"."
 
-#: ../../mod/lostpass.php:125
-msgid "Reset"
-msgstr "Zurücksetzen"
+#: ../../mod/setup.php:254
+msgid "System check"
+msgstr "Systemprüfung"
 
-#: ../../mod/settings.php:71
-msgid "Name is required"
-msgstr "Name ist erforderlich"
+#: ../../mod/setup.php:259
+msgid "Check again"
+msgstr "Bitte nochmal prüfen"
 
-#: ../../mod/settings.php:75
-msgid "Key and Secret are required"
-msgstr "Schlüssel und Geheimnis werden benötigt"
+#: ../../mod/setup.php:281
+msgid "Database connection"
+msgstr "Datenbank Verbindung"
 
-#: ../../mod/settings.php:79 ../../mod/settings.php:542
-msgid "Update"
-msgstr "Aktualisieren"
+#: ../../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 eine Verbindung zu Deiner Datenbank aufbauen können."
 
-#: ../../mod/settings.php:195
-msgid "Passwords do not match. Password unchanged."
-msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert."
+#: ../../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 Administrator, falls Du Fragen zu diesen Einstellungen hast."
 
-#: ../../mod/settings.php:199
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert."
+#: ../../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/settings.php:212
-msgid "Password changed."
-msgstr "Kennwort geändert."
+#: ../../mod/setup.php:288
+msgid "Database Server Name"
+msgstr "Datenbank-Servername"
 
-#: ../../mod/settings.php:214
-msgid "Password update failed. Please try again."
-msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal."
+#: ../../mod/setup.php:288
+msgid "Default is localhost"
+msgstr "Standard ist localhost"
 
-#: ../../mod/settings.php:228
-msgid "Not valid email."
-msgstr "Keine gültige E-Mail Adresse."
+#: ../../mod/setup.php:289
+msgid "Database Port"
+msgstr "Datenbank-Port"
 
-#: ../../mod/settings.php:231
-msgid "Protected email address. Cannot change to that email."
-msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden."
+#: ../../mod/setup.php:289
+msgid "Communication port number - use 0 for default"
+msgstr "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung"
 
-#: ../../mod/settings.php:240
-msgid "System failure storing new email. Please try again."
-msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal."
+#: ../../mod/setup.php:290
+msgid "Database Login Name"
+msgstr "Datenbank-Benutzername"
 
-#: ../../mod/settings.php:444
-msgid "Settings updated."
-msgstr "Einstellungen aktualisiert."
+#: ../../mod/setup.php:291
+msgid "Database Login Password"
+msgstr "Datenbank-Kennwort"
 
-#: ../../mod/settings.php:515 ../../mod/settings.php:541
-#: ../../mod/settings.php:577
-msgid "Add application"
-msgstr "Anwendung hinzufügen"
+#: ../../mod/setup.php:292
+msgid "Database Name"
+msgstr "Datenbank-Name"
 
-#: ../../mod/settings.php:518 ../../mod/settings.php:544
-msgid "Name"
-msgstr "Name"
+#: ../../mod/setup.php:294 ../../mod/setup.php:336
+msgid "Site administrator email address"
+msgstr "E-Mail Adresse des Seiten-Administrators"
 
-#: ../../mod/settings.php:518
-msgid "Name of application"
-msgstr "Name der Anwendung"
+#: ../../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 E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst."
 
-#: ../../mod/settings.php:519 ../../mod/settings.php:545
-msgid "Consumer Key"
-msgstr "Consumer Key"
+#: ../../mod/setup.php:295 ../../mod/setup.php:338
+msgid "Website URL"
+msgstr "Server-URL"
 
-#: ../../mod/settings.php:519 ../../mod/settings.php:520
-msgid "Automatically generated - change if desired. Max length 20"
-msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20"
+#: ../../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/settings.php:520 ../../mod/settings.php:546
-msgid "Consumer Secret"
-msgstr "Consumer Secret"
+#: ../../mod/setup.php:298 ../../mod/setup.php:341
+msgid "Please select a default timezone for your website"
+msgstr "Standard-Zeitzone für Deinen Server"
 
-#: ../../mod/settings.php:521 ../../mod/settings.php:547
-msgid "Redirect"
-msgstr "Umleitung"
+#: ../../mod/setup.php:325
+msgid "Site settings"
+msgstr "Seiteneinstellungen"
 
-#: ../../mod/settings.php:521
+#: ../../mod/setup.php:384
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden."
+
+#: ../../mod/setup.php:385
 msgid ""
-"Redirect URI - leave blank unless your application specifically requires "
-"this"
-msgstr "Umleitungs-URl – lasse das leer, wenn Deine Anwendung es nicht explizit erfordert"
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run background polling via cron."
+msgstr "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen."
+
+#: ../../mod/setup.php:389
+msgid "PHP executable path"
+msgstr "PHP Pfad zu ausführbarer Datei"
+
+#: ../../mod/setup.php:389
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren."
 
-#: ../../mod/settings.php:522 ../../mod/settings.php:548
-msgid "Icon url"
-msgstr "Symbol-URL"
+#: ../../mod/setup.php:394
+msgid "Command line PHP"
+msgstr "PHP Befehlszeile"
 
-#: ../../mod/settings.php:522
-msgid "Optional"
-msgstr "Optional"
+#: ../../mod/setup.php:403
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert."
 
-#: ../../mod/settings.php:533
-msgid "You can't edit this application."
-msgstr "Diese Anwendung kann nicht bearbeitet werden."
+#: ../../mod/setup.php:404
+msgid "This is required for message delivery to work."
+msgstr "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert."
 
-#: ../../mod/settings.php:576
-msgid "Connected Apps"
-msgstr "Verbundene Apps"
+#: ../../mod/setup.php:406
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../mod/settings.php:580
-msgid "Client key starts with"
-msgstr "Client key beginnt mit"
+#: ../../mod/setup.php:427
+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/settings.php:581
-msgid "No name"
-msgstr "Kein Name"
+#: ../../mod/setup.php:428
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung."
 
-#: ../../mod/settings.php:582
-msgid "Remove authorization"
-msgstr "Authorisierung aufheben"
+#: ../../mod/setup.php:430
+msgid "Generate encryption keys"
+msgstr "Verschlüsselungsschlüssel  generieren"
 
-#: ../../mod/settings.php:593
-msgid "No feature settings configured"
-msgstr "Keine Funktions-Einstellungen konfiguriert"
+#: ../../mod/setup.php:437
+msgid "libCurl PHP module"
+msgstr "libCurl-PHP-Modul"
 
-#: ../../mod/settings.php:601
-msgid "Feature Settings"
-msgstr "Funktions-Einstellungen"
+#: ../../mod/setup.php:438
+msgid "GD graphics PHP module"
+msgstr "GD-Grafik-PHP-Modul"
 
-#: ../../mod/settings.php:624
-msgid "Account Settings"
-msgstr "Konto-Einstellungen"
+#: ../../mod/setup.php:439
+msgid "OpenSSL PHP module"
+msgstr "OpenSSL-PHP-Modul"
 
-#: ../../mod/settings.php:625
-msgid "Password Settings"
-msgstr "Kennwort-Einstellungen"
+#: ../../mod/setup.php:440
+msgid "mysqli PHP module"
+msgstr "mysqli-PHP-Modul"
 
-#: ../../mod/settings.php:626
-msgid "New Password:"
-msgstr "Neues Passwort:"
+#: ../../mod/setup.php:441
+msgid "mb_string PHP module"
+msgstr "mb_string-PHP-Modul"
 
-#: ../../mod/settings.php:627
-msgid "Confirm:"
-msgstr "Bestätigen:"
+#: ../../mod/setup.php:442
+msgid "mcrypt PHP module"
+msgstr "mcrypt-PHP-Modul"
 
-#: ../../mod/settings.php:627
-msgid "Leave password fields blank unless changing"
-msgstr "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern"
+#: ../../mod/setup.php:447 ../../mod/setup.php:449
+msgid "Apache mod_rewrite module"
+msgstr "Apache-mod_rewrite-Modul"
 
-#: ../../mod/settings.php:629 ../../mod/settings.php:925
-msgid "Email Address:"
-msgstr "Email Adresse:"
+#: ../../mod/setup.php:447
+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/settings.php:630
-msgid "Remove Account"
-msgstr "Konto entfernen"
+#: ../../mod/setup.php:453 ../../mod/setup.php:456
+msgid "proc_open"
+msgstr "proc_open"
 
-#: ../../mod/settings.php:631
-msgid "Warning: This action is permanent and cannot be reversed."
-msgstr "Achtung: Diese Aktion ist endgültig und kann nicht rückgängig gemacht werden."
+#: ../../mod/setup.php:453
+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/settings.php:647
-msgid "Off"
-msgstr "Aus"
+#: ../../mod/setup.php:461
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert."
 
-#: ../../mod/settings.php:647
-msgid "On"
-msgstr "An"
+#: ../../mod/setup.php:465
+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/settings.php:654
-msgid "Additional Features"
-msgstr "Zusätzliche Funktionen"
+#: ../../mod/setup.php:469
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert."
 
-#: ../../mod/settings.php:679
-msgid "Connector Settings"
-msgstr "Connector-Einstellungen"
+#: ../../mod/setup.php:473
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Fehler: Das PHP-Modul mysqli wird benötigt, ist aber nicht installiert."
 
-#: ../../mod/settings.php:750
-msgid "Display Settings"
-msgstr "Anzeige-Einstellungen"
+#: ../../mod/setup.php:477
+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/settings.php:756
-msgid "Display Theme:"
-msgstr "Anzeige-Theme:"
+#: ../../mod/setup.php:481
+msgid "Error: mcrypt PHP module required but not installed."
+msgstr "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert."
 
-#: ../../mod/settings.php:757
-msgid "Mobile Theme:"
-msgstr "Mobile Theme:"
+#: ../../mod/setup.php:497
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\""
+" in the top folder of your web server and it is unable to do so."
+msgstr "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht."
 
-#: ../../mod/settings.php:758
-msgid "Update browser every xx seconds"
-msgstr "Browser alle xx Sekunden aktualisieren"
+#: ../../mod/setup.php:498
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Rechte Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst."
 
-#: ../../mod/settings.php:758
-msgid "Minimum of 10 seconds, no maximum"
-msgstr "Minimum 10 Sekunden, kein Maximum"
+#: ../../mod/setup.php:499
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Red top folder."
+msgstr "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Red-Installation speichern musst."
 
-#: ../../mod/settings.php:759
-msgid "Maximum number of conversations to load at any time:"
-msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:"
+#: ../../mod/setup.php:500
+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/settings.php:759
-msgid "Maximum of 100 items"
-msgstr "Maximum: 100 Beiträge"
+#: ../../mod/setup.php:503
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php ist beschreibbar"
 
-#: ../../mod/settings.php:760
-msgid "Don't show emoticons"
-msgstr "Emoticons nicht zeigen"
+#: ../../mod/setup.php:513
+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/settings.php:761
-msgid "Do not view remote profiles in frames"
-msgstr ""
+#: ../../mod/setup.php:514
+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 Schreibzugriff auf das Verzeichnis view/tpl/smarty3/ unterhalb des Red-Stammverzeichnisses haben."
 
-#: ../../mod/settings.php:761
-msgid "By default open in a sub-window of your own site"
-msgstr ""
+#: ../../mod/setup.php:515 ../../mod/setup.php:533
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Bitte stelle sicher, dass der Nutzer, unter dem der Webserver läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat."
 
-#: ../../mod/settings.php:796
-msgid "Nobody except yourself"
-msgstr "Niemand außer Dir selbst"
+#: ../../mod/setup.php:516
+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 auf die Vorlagen (.tpl-Dateien) in view/tpl/ ."
 
-#: ../../mod/settings.php:797
-msgid "Only those you specifically allow"
-msgstr "Nur die, denen Du es explizit erlaubst"
+#: ../../mod/setup.php:519
+msgid "view/tpl/smarty3 is writable"
+msgstr "view/tpl/smarty3 ist beschreibbar"
 
-#: ../../mod/settings.php:798
-msgid "Anybody in your address book"
-msgstr "Jeder aus Ihrem Adressbuch"
+#: ../../mod/setup.php:532
+msgid ""
+"Red uses the store directory to save uploaded files. The web server needs to"
+" have write access to the store directory under the Red top level folder"
+msgstr "Red benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses"
 
-#: ../../mod/settings.php:799
-msgid "Anybody on this website"
-msgstr "Jeder auf dieser Website"
+#: ../../mod/setup.php:536
+msgid "store is writable"
+msgstr "store ist schreibbar"
 
-#: ../../mod/settings.php:800
-msgid "Anybody in this network"
-msgstr "Jeder in diesem Netzwerk"
+#: ../../mod/setup.php:551
+msgid "SSL certificate validation"
+msgstr "SSL Zertifikatverifizierung"
 
-#: ../../mod/settings.php:801
-msgid "Anybody on the internet"
-msgstr "Jeder im Internet"
+#: ../../mod/setup.php:551
+msgid ""
+"SSL certificate cannot be validated. Fix certificate or disable https access"
+" to this site."
+msgstr "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server."
 
-#: ../../mod/settings.php:878
-msgid "Publish your default profile in the network directory"
-msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen"
+#: ../../mod/setup.php:558
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "URL rewrite via .htaccess funktioniert nicht. Überprüfe Deine Server-Konfiguration."
 
-#: ../../mod/settings.php:883
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
+#: ../../mod/setup.php:560
+msgid "Url rewrite is working"
+msgstr "Url rewrite funktioniert"
 
-#: ../../mod/settings.php:887 ../../mod/profile_photo.php:288
-msgid "or"
-msgstr "oder"
+#: ../../mod/setup.php:570
+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/settings.php:892
-msgid "Your channel address is"
-msgstr "Deine Kanal-Adresse lautet"
+#: ../../mod/setup.php:594
+msgid "Errors encountered creating database tables."
+msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten."
 
-#: ../../mod/settings.php:914
-msgid "Channel Settings"
-msgstr "Kanal-Einstellungen"
+#: ../../mod/setup.php:607
+msgid "<h1>What next</h1>"
+msgstr "<h1>Was als Nächstes</h1>"
 
-#: ../../mod/settings.php:923
-msgid "Basic Settings"
-msgstr "Grundeinstellungen"
+#: ../../mod/setup.php:608
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten."
 
-#: ../../mod/settings.php:926
-msgid "Your Timezone:"
-msgstr "Ihre Zeitzone:"
+#: ../../mod/siteinfo.php:57
+#, php-format
+msgid "Version %s"
+msgstr "Version %s"
 
-#: ../../mod/settings.php:927
-msgid "Default Post Location:"
-msgstr "Standardstandort:"
+#: ../../mod/siteinfo.php:76
+msgid "Installed plugins/addons/apps:"
+msgstr "Installierte Plugins/Addons/Apps"
 
-#: ../../mod/settings.php:928
-msgid "Use Browser Location:"
-msgstr "Standort des Browsers verwenden:"
+#: ../../mod/siteinfo.php:89
+msgid "No installed plugins/addons/apps"
+msgstr "Keine installierten Plugins/Addons/Apps"
 
-#: ../../mod/settings.php:930
-msgid "Adult Content"
-msgstr "Nicht jugendfreie Inhalte"
+#: ../../mod/siteinfo.php:93
+msgid "Project Donations"
+msgstr "Projekt Spenden"
 
-#: ../../mod/settings.php:930
+#: ../../mod/siteinfo.php:94
 msgid ""
-"This channel frequently or regularly publishes adult content. (Please tag "
-"any adult material and/or nudity with #NSFW)"
-msgstr "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)"
-
-#: ../../mod/settings.php:932
-msgid "Security and Privacy Settings"
-msgstr "Sicherheits- und Datenschutz-Einstellungen"
+"<p>The Red Matrix is provided for you by volunteers working in their spare "
+"time. Your support will help us to build a better, freer, and privacy "
+"respecting web. Select the following option for a one-time donation of your "
+"choosing</p>"
+msgstr ""
 
-#: ../../mod/settings.php:934
-msgid "Hide my online presence"
-msgstr "Meine Online-Präsenz verbergen"
+#: ../../mod/siteinfo.php:95
+msgid "<p>or</p>"
+msgstr "<p>oder</p>"
 
-#: ../../mod/settings.php:934
-msgid "Prevents displaying in your profile that you are online"
-msgstr "Verhindert die Anzeige Deines Online-Status in deinem Profil"
+#: ../../mod/siteinfo.php:96
+msgid "Recurring Donation Options"
+msgstr "Optionen für regelmäßige Spenden"
 
-#: ../../mod/settings.php:936
-msgid "Simple Privacy Settings:"
-msgstr "Einfache Privatsphäre-Einstellungen"
+#: ../../mod/siteinfo.php:115
+msgid "Red"
+msgstr "Red"
 
-#: ../../mod/settings.php:937
+#: ../../mod/siteinfo.php:116
 msgid ""
-"Very Public - <em>extremely permissive (should be used with caution)</em>"
-msgstr "Komplett offen – <em>extrem ungeschützt (mit großer Vorsicht verwenden!)</em>"
+"This is a hub of the Red Matrix - a global cooperative network of "
+"decentralised privacy enhanced websites."
+msgstr "Dieser Server ist Teil der Red-Matrix – einem global vernetzten Verbund aus dezentralen Websites mit Rücksicht auf die Privatsphäre."
 
-#: ../../mod/settings.php:938
+#: ../../mod/siteinfo.php:119
+msgid "Running at web location"
+msgstr "Erreichbar unter der Web-Adresse"
+
+#: ../../mod/siteinfo.php:120
 msgid ""
-"Typical - <em>default public, privacy when desired (similar to social "
-"network permissions but with improved privacy)</em>"
-msgstr "Typisch – <em>Default öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)</em>"
+"Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more "
+"about the Red Matrix."
+msgstr "Besuche <a href=\"http://getzot.com\">GetZot.com</a>, um mehr über die Red-Matrix zu erfahren."
 
-#: ../../mod/settings.php:939
-msgid "Private - <em>default private, never open or public</em>"
-msgstr "Private – <em>Default privat, nie offen oder öffentlich</em>"
+#: ../../mod/siteinfo.php:121
+msgid "Bug reports and issues: please visit"
+msgstr "Probleme oder Fehler gefunden? Bitte besuche"
 
-#: ../../mod/settings.php:940
-msgid "Blocked - <em>default blocked to/from everybody</em>"
-msgstr "Blockiert – <em>Alle per Default blockiert</em>"
+#: ../../mod/siteinfo.php:124
+msgid ""
+"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot "
+"com"
+msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"
 
-#: ../../mod/settings.php:943
-msgid "Advanced Privacy Settings"
-msgstr "Fortgeschrittene Privatsphäre-Einstellungen"
+#: ../../mod/siteinfo.php:126
+msgid "Site Administrators"
+msgstr "Administratoren"
 
-#: ../../mod/settings.php:945
-msgid "Maximum Friend Requests/Day:"
-msgstr "Maximale Kontaktanfragen pro Tag:"
+#: ../../mod/new_channel.php:107
+msgid "Add a Channel"
+msgstr "Kanal hinzufügen"
 
-#: ../../mod/settings.php:945
-msgid "May reduce spam activity"
-msgstr "Kann die Spam-Aktivität verringern"
+#: ../../mod/new_channel.php:108
+msgid ""
+"A channel is your own collection of related web pages. A channel can be used"
+" to hold social network profiles, blogs, conversation groups and forums, "
+"celebrity pages, and much more. You may create as many channels as your "
+"service provider allows."
+msgstr "Ein Kanal ist Deine eigene Sammlung von verbundenen Webseiten. Ein Kanal kann genutzt werden, um ein Social-Network-Profil, ein Blog, eine Gesprächsgruppe oder ein Forum, Promi-Seiten und vieles mehr zu erstellen. Du kannst so viele Kanäle erstellen, wie es der Betreiber Deiner Seite zulässt."
 
-#: ../../mod/settings.php:946
-msgid "Default Post Permissions"
-msgstr "Standardeinstellungen für Beitrags-Zugriffsrechte"
+#: ../../mod/new_channel.php:111
+msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "
+msgstr "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ "
 
-#: ../../mod/settings.php:958
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:"
+#: ../../mod/new_channel.php:112
+msgid "Choose a short nickname"
+msgstr "Wähle einen kurzen Spitznamen"
 
-#: ../../mod/settings.php:958
-msgid "Useful to reduce spamming"
-msgstr "Nützlich, um Spam zu verringern"
+#: ../../mod/new_channel.php:113
+msgid ""
+"Your nickname will be used to create an easily remembered channel address "
+"(like an email address) which you can share with others."
+msgstr "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst."
 
-#: ../../mod/settings.php:961
-msgid "Notification Settings"
-msgstr "Benachrichtigungs-Einstellungen"
+#: ../../mod/new_channel.php:114
+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 Server"
 
-#: ../../mod/settings.php:962
-msgid "By default post a status message when:"
-msgstr "Sende standardmäßig Status-Nachrichten, wenn:"
+#: ../../mod/lostpass.php:15
+msgid "No valid account found."
+msgstr "Kein gültiges Konto gefunden."
 
-#: ../../mod/settings.php:963
-msgid "accepting a friend request"
-msgstr "Du eine Kontaktanfrage annimmst"
+#: ../../mod/lostpass.php:29
+msgid "Password reset request issued. Check your email."
+msgstr "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails."
 
-#: ../../mod/settings.php:964
-msgid "joining a forum/community"
-msgstr "Du einem Forum beitrittst"
+#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102
+#, php-format
+msgid "Site Member (%s)"
+msgstr "Nutzer (%s)"
 
-#: ../../mod/settings.php:965
-msgid "making an <em>interesting</em> profile change"
-msgstr "Du eine <em>interessante</em> Änderung an Deinem Profil vornimmst"
+#: ../../mod/lostpass.php:40
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Passwort-Rücksetzung auf %s angefordert"
 
-#: ../../mod/settings.php:966
-msgid "Send a notification email when:"
-msgstr "Eine E-Mail-Benachrichtigung senden, wenn:"
+#: ../../mod/lostpass.php:63
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen."
 
-#: ../../mod/settings.php:967
-msgid "You receive an introduction"
-msgstr "Du eine Vorstellung erhältst"
+#: ../../mod/lostpass.php:85 ../../boot.php:1436
+msgid "Password Reset"
+msgstr "Zurücksetzen des Kennworts"
 
-#: ../../mod/settings.php:968
-msgid "Your introductions are confirmed"
-msgstr "Deine Vorstellung bestätigt wurde."
+#: ../../mod/lostpass.php:86
+msgid "Your password has been reset as requested."
+msgstr "Dein Passwort wurde wie angefordert neu erstellt."
 
-#: ../../mod/settings.php:969
-msgid "Someone writes on your profile wall"
-msgstr "Jemand auf Deine Pinnwand schreibt"
+#: ../../mod/lostpass.php:87
+msgid "Your new password is"
+msgstr "Dein neues Passwort lautet"
 
-#: ../../mod/settings.php:970
-msgid "Someone writes a followup comment"
-msgstr "Jemand einen Beitrag kommentiert"
+#: ../../mod/lostpass.php:88
+msgid "Save or copy your new password - and then"
+msgstr "Speichere oder kopiere Dein neues Passwort – und dann"
 
-#: ../../mod/settings.php:971
-msgid "You receive a private message"
-msgstr "Du eine private Nachricht erhältst"
+#: ../../mod/lostpass.php:89
+msgid "click here to login"
+msgstr "Klicke hier, um dich anzumelden"
 
-#: ../../mod/settings.php:972
-msgid "You receive a friend suggestion"
-msgstr "Du einen Kontaktvorschlag erhältst"
+#: ../../mod/lostpass.php:90
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Dein Passwort kann unter <em>Einstellungen</em> nach einer erfolgreichen Anmeldung geändert werden."
 
-#: ../../mod/settings.php:973
-msgid "You are tagged in a post"
-msgstr "Du in einem Beitrag erwähnt wurdest"
+#: ../../mod/lostpass.php:107
+#, php-format
+msgid "Your password has changed at %s"
+msgstr "Auf %s wurde Dein Passwort geändert"
 
-#: ../../mod/settings.php:974
-msgid "You are poked/prodded/etc. in a post"
-msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest"
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
+msgstr "Kennwort vergessen?"
 
-#: ../../mod/settings.php:977
-msgid "Advanced Account/Page Type Settings"
-msgstr "Erweiterte Account- und Seitenart-Einstellungen"
+#: ../../mod/lostpass.php:123
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail."
 
-#: ../../mod/settings.php:978
-msgid "Change the behaviour of this account for special situations"
-msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen"
+#: ../../mod/lostpass.php:124
+msgid "Email Address"
+msgstr "E-Mail Adresse"
 
-#: ../../mod/settings.php:981
-msgid ""
-"Please enable expert mode (in Settings > Additional features) to adjust!"
-msgstr ""
+#: ../../mod/lostpass.php:125
+msgid "Reset"
+msgstr "Zurücksetzen"
 
 #: ../../mod/import.php:36
 msgid "Nothing to import."
@@ -6276,32 +6311,32 @@ msgstr "Egal welche Option Du wählst, bitte lege fest, ob dieser Server die neu
 msgid "Make this hub my primary location"
 msgstr "Dieser Red-Server ist mein primärer Server."
 
-#: ../../mod/manage.php:63
+#: ../../mod/manage.php:64
 #, php-format
 msgid "You have created %1$.0f of %2$.0f allowed channels."
 msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet."
 
-#: ../../mod/manage.php:71
+#: ../../mod/manage.php:72
 msgid "Create a new channel"
 msgstr "Erzeuge neues Kanal"
 
-#: ../../mod/manage.php:76
+#: ../../mod/manage.php:77
 msgid "Channel Manager"
 msgstr "Kanal-Manager"
 
-#: ../../mod/manage.php:77
+#: ../../mod/manage.php:78
 msgid "Current Channel"
 msgstr "Aktueller Kanal"
 
-#: ../../mod/manage.php:79
+#: ../../mod/manage.php:80
 msgid "Attach to one of your channels by selecting it."
 msgstr "Wähle einen Deiner Kanäle aus, um ihn zu verwenden."
 
-#: ../../mod/manage.php:80
+#: ../../mod/manage.php:81
 msgid "Default Channel"
 msgstr "Standard Kanal"
 
-#: ../../mod/manage.php:81
+#: ../../mod/manage.php:82
 msgid "Make Default"
 msgstr "Zum Standard machen"
 
@@ -6407,6 +6442,10 @@ msgstr "Keine sichere Kommunikation verfügbar. <strong>Eventuell</strong> kanns
 msgid "Send Reply"
 msgstr "Antwort senden"
 
+#: ../../mod/openid.php:26
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
+
 #: ../../mod/editlayout.php:72
 msgid "Edit Layout"
 msgstr "Layout bearbeiten"
@@ -7289,41 +7328,41 @@ msgstr "Titelbild"
 msgid "Header image only on profile pages"
 msgstr "Titelbild nur auf Profil-Seiten anzeigen"
 
-#: ../../boot.php:1232
+#: ../../boot.php:1234
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen."
 
-#: ../../boot.php:1235
+#: ../../boot.php:1237
 #, php-format
 msgid "Update Error at %s"
 msgstr "Aktualisierungsfehler auf %s"
 
-#: ../../boot.php:1399
+#: ../../boot.php:1401
 msgid ""
 "Create an account to access services and applications within the Red Matrix"
 msgstr "Erstelle einen Account, um Anwendungen und Dienste innerhalb der Red-Matrix verwenden zu können."
 
-#: ../../boot.php:1427
+#: ../../boot.php:1429
 msgid "Password"
 msgstr "Kennwort"
 
-#: ../../boot.php:1428
+#: ../../boot.php:1430
 msgid "Remember me"
 msgstr "Angaben speichern"
 
-#: ../../boot.php:1433
+#: ../../boot.php:1435
 msgid "Forgot your password?"
 msgstr "Passwort vergessen?"
 
-#: ../../boot.php:1498
+#: ../../boot.php:1500
 msgid "permission denied"
 msgstr "Zugriff verweigert"
 
-#: ../../boot.php:1499
+#: ../../boot.php:1501
 msgid "Got Zot?"
 msgstr "Haste schon Zot?"
 
-#: ../../boot.php:1899
+#: ../../boot.php:1906
 msgid "toggle mobile"
 msgstr "auf/von mobile Ansicht wechseln"
diff --git a/view/de/strings.php b/view/de/strings.php
index 4001d78be..ee694c324 100644
--- a/view/de/strings.php
+++ b/view/de/strings.php
@@ -714,9 +714,8 @@ $a->strings["This action exceeds the limits set by your subscription plan."] = "
 $a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar.";
 $a->strings["Channel is blocked on this site."] = "Der Kanal ist auf dieser Seite blockiert ";
 $a->strings["Channel location missing."] = "Adresse des Kanals fehlt.";
-$a->strings["Channel discovery failed. Website may be down or misconfigured."] = "Auffinden des Kanals schlug fehl. Die Webseite könnte falsch konfiguriert oder abgeschaltet sein.";
-$a->strings["Response from remote channel was not understood."] = "Antwort des entfernten Kanals war unverständlich.";
 $a->strings["Response from remote channel was incomplete."] = "Antwort des entfernten Kanals war unvollständig.";
+$a->strings["Channel discovery failed."] = "";
 $a->strings["local account not found."] = "Lokales Konto nicht gefunden.";
 $a->strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden.";
 $a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde.";
@@ -745,6 +744,7 @@ $a->strings["Can send me bookmarks"] = "Darf mir Lesezeichen senden";
 $a->strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren";
 $a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust";
 $a->strings["Permission denied"] = "Keine Berechtigung";
+$a->strings["Unknown"] = "Unbekannt";
 $a->strings["Item not found."] = "Element nicht gefunden.";
 $a->strings["Collection not found."] = "Sammlung nicht gefunden";
 $a->strings["Collection is empty."] = "Sammlung ist leer.";
@@ -808,13 +808,113 @@ $a->strings["Please visit my channel at"] = "Bitte besuche meinen Kanal auf";
 $a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "Wenn Du Dich registriert hast (egal auf welchem Server in der Red-Matrix, sie sind alle miteinander verbunden) verbinde Dich bitte mit meinem Kanal in der Matrix. Adresse:";
 $a->strings["Click the [Register] link on the following page to join."] = "Klicke den [Registrieren]-Link auf der nächsten Seite, um dich anzumelden.";
 $a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "Für weitere Informationen über das Red-Matrix-Projekt und warum es das Potential hat, das Internet, wie wir es kennen, grundlegend zu verändern, besuche http://getzot.com";
-$a->strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden.";
-$a->strings["Empty post discarded."] = "Leeren Beitrag verworfen.";
-$a->strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben.";
-$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert.";
-$a->strings["Wall Photos"] = "Wall Fotos";
-$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["Name is required"] = "Name ist erforderlich";
+$a->strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt";
+$a->strings["Update"] = "Aktualisieren";
+$a->strings["Passwords do not match. Password unchanged."] = "Kennwörter stimmen nicht überein. Kennwort nicht verändert.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert.";
+$a->strings["Password changed."] = "Kennwort geändert.";
+$a->strings["Password update failed. Please try again."] = "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal.";
+$a->strings["Not valid email."] = "Keine gültige E-Mail Adresse.";
+$a->strings["Protected email address. Cannot change to that email."] = "Geschützte E-Mail Adresse. Diese kann nicht verändert werden.";
+$a->strings["System failure storing new email. Please try again."] = "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal.";
+$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
+$a->strings["Add application"] = "Anwendung hinzufügen";
+$a->strings["Name"] = "Name";
+$a->strings["Name of application"] = "Name der Anwendung";
+$a->strings["Consumer Key"] = "Consumer Key";
+$a->strings["Automatically generated - change if desired. Max length 20"] = "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20";
+$a->strings["Consumer Secret"] = "Consumer Secret";
+$a->strings["Redirect"] = "Umleitung";
+$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "Umleitungs-URl – lasse das leer, wenn Deine Anwendung es nicht explizit erfordert";
+$a->strings["Icon url"] = "Symbol-URL";
+$a->strings["Optional"] = "Optional";
+$a->strings["You can't edit this application."] = "Diese Anwendung kann nicht bearbeitet werden.";
+$a->strings["Connected Apps"] = "Verbundene Apps";
+$a->strings["Client key starts with"] = "Client key beginnt mit";
+$a->strings["No name"] = "Kein Name";
+$a->strings["Remove authorization"] = "Authorisierung aufheben";
+$a->strings["No feature settings configured"] = "Keine Funktions-Einstellungen konfiguriert";
+$a->strings["Feature Settings"] = "Funktions-Einstellungen";
+$a->strings["Account Settings"] = "Konto-Einstellungen";
+$a->strings["Password Settings"] = "Kennwort-Einstellungen";
+$a->strings["New Password:"] = "Neues Passwort:";
+$a->strings["Confirm:"] = "Bestätigen:";
+$a->strings["Leave password fields blank unless changing"] = "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern";
+$a->strings["Email Address:"] = "Email Adresse:";
+$a->strings["Remove Account"] = "Konto entfernen";
+$a->strings["Warning: This action is permanent and cannot be reversed."] = "Achtung: Diese Aktion ist endgültig und kann nicht rückgängig gemacht werden.";
+$a->strings["Off"] = "Aus";
+$a->strings["On"] = "An";
+$a->strings["Additional Features"] = "Zusätzliche Funktionen";
+$a->strings["Connector Settings"] = "Connector-Einstellungen";
+$a->strings["No special theme for mobile devices"] = "Keine spezielle Theme für mobile Geräte";
+$a->strings["Display Settings"] = "Anzeige-Einstellungen";
+$a->strings["Display Theme:"] = "Anzeige-Theme:";
+$a->strings["Mobile Theme:"] = "Mobile Theme:";
+$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren";
+$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 Sekunden, kein Maximum";
+$a->strings["Maximum number of conversations to load at any time:"] = "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:";
+$a->strings["Maximum of 100 items"] = "Maximum: 100 Beiträge";
+$a->strings["Don't show emoticons"] = "Emoticons nicht zeigen";
+$a->strings["Do not view remote profiles in frames"] = "Profile/Kanäle direkt anzeigen";
+$a->strings["By default open in a sub-window of your own site"] = "Wenn dieser Haken nicht gesetzt ist, werden Profile in einem Unterfenster auf Deinem eigenen Server angezeigt.";
+$a->strings["Nobody except yourself"] = "Niemand außer Dir selbst";
+$a->strings["Only those you specifically allow"] = "Nur die, denen Du es explizit erlaubst";
+$a->strings["Anybody in your address book"] = "Jeder aus Ihrem Adressbuch";
+$a->strings["Anybody on this website"] = "Jeder auf dieser Website";
+$a->strings["Anybody in this network"] = "Jeder in diesem Netzwerk";
+$a->strings["Anybody authenticated"] = "Jeder authentifizierte";
+$a->strings["Anybody on the internet"] = "Jeder im Internet";
+$a->strings["Publish your default profile in the network directory"] = "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen";
+$a->strings["No"] = "Nein";
+$a->strings["Yes"] = "Ja";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?";
+$a->strings["or"] = "oder";
+$a->strings["Your channel address is"] = "Deine Kanal-Adresse lautet";
+$a->strings["Channel Settings"] = "Kanal-Einstellungen";
+$a->strings["Basic Settings"] = "Grundeinstellungen";
+$a->strings["Your Timezone:"] = "Ihre Zeitzone:";
+$a->strings["Default Post Location:"] = "Standardstandort:";
+$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:";
+$a->strings["Adult Content"] = "Nicht jugendfreie Inhalte";
+$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)";
+$a->strings["Security and Privacy Settings"] = "Sicherheits- und Datenschutz-Einstellungen";
+$a->strings["Hide my online presence"] = "Meine Online-Präsenz verbergen";
+$a->strings["Prevents displaying in your profile that you are online"] = "Verhindert die Anzeige Deines Online-Status in deinem Profil";
+$a->strings["Simple Privacy Settings:"] = "Einfache Privatsphäre-Einstellungen";
+$a->strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "Komplett offen – <em>extrem ungeschützt (mit großer Vorsicht verwenden!)</em>";
+$a->strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "Typisch – <em>Default öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)</em>";
+$a->strings["Private - <em>default private, never open or public</em>"] = "Private – <em>Default privat, nie offen oder öffentlich</em>";
+$a->strings["Blocked - <em>default blocked to/from everybody</em>"] = "Blockiert – <em>Alle per Default blockiert</em>";
+$a->strings["Allow others to tag your posts"] = "Erlaube anderen deine Beiträge mit Schlagwörtern zu versehen";
+$a->strings["Often used by the community to retro-actively flag inappropriate content"] = "";
+$a->strings["Advanced Privacy Settings"] = "Fortgeschrittene Privatsphäre-Einstellungen";
+$a->strings["Maximum Friend Requests/Day:"] = "Maximale Kontaktanfragen pro Tag:";
+$a->strings["May reduce spam activity"] = "Kann die Spam-Aktivität verringern";
+$a->strings["Default Post Permissions"] = "Standardeinstellungen für Beitrags-Zugriffsrechte";
+$a->strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)";
+$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:";
+$a->strings["Useful to reduce spamming"] = "Nützlich, um Spam zu verringern";
+$a->strings["Notification Settings"] = "Benachrichtigungs-Einstellungen";
+$a->strings["By default post a status message when:"] = "Sende standardmäßig Status-Nachrichten, wenn:";
+$a->strings["accepting a friend request"] = "Du eine Kontaktanfrage annimmst";
+$a->strings["joining a forum/community"] = "Du einem Forum beitrittst";
+$a->strings["making an <em>interesting</em> profile change"] = "Du eine <em>interessante</em> Änderung an Deinem Profil vornimmst";
+$a->strings["Send a notification email when:"] = "Eine E-Mail-Benachrichtigung senden, wenn:";
+$a->strings["You receive an introduction"] = "Du eine Vorstellung erhältst";
+$a->strings["Your introductions are confirmed"] = "Deine Vorstellung bestätigt wurde.";
+$a->strings["Someone writes on your profile wall"] = "Jemand auf Deine Pinnwand schreibt";
+$a->strings["Someone writes a followup comment"] = "Jemand einen Beitrag kommentiert";
+$a->strings["You receive a private message"] = "Du eine private Nachricht erhältst";
+$a->strings["You receive a friend suggestion"] = "Du einen Kontaktvorschlag erhältst";
+$a->strings["You are tagged in a post"] = "Du in einem Beitrag erwähnt wurdest";
+$a->strings["You are poked/prodded/etc. in a post"] = "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest";
+$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Account- und Seitenart-Einstellungen";
+$a->strings["Change the behaviour of this account for special situations"] = "Ändere das Verhalten dieses Accounts unter speziellen Umständen";
+$a->strings["Please enable expert mode (in <a href=\"settings/features\">Settings > Additional features</a>) to adjust!"] = "Aktiviere den Expertenmodus (unter <a href=\"settings/features\">Settings > Zusätzliche Funktionen</a>), um hier Einstellungen vorzunehmen!";
+$a->strings["Miscellaneous Settings"] = "";
+$a->strings["Personal menu to display in your channel pages"] = "Persönliches Menü zur Anzeige auf den Seiten deines Kanals";
 $a->strings["Menu updated."] = "Menü aktualisiert.";
 $a->strings["Unable to update menu."] = "Kann Menü nicht aktualisieren.";
 $a->strings["Menu created."] = "Menü erstellt.";
@@ -845,8 +945,6 @@ $a->strings["Authorize application connection"] = "Zugriff für die Anwendung au
 $a->strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode in der Anwendung ein:";
 $a->strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen.";
 $a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?";
-$a->strings["Yes"] = "Ja";
-$a->strings["No"] = "Nein";
 $a->strings["No installed applications."] = "Keine installierten Anwendungen.";
 $a->strings["Applications"] = "Anwendungen";
 $a->strings["Edit post"] = "Bearbeite Beitrag";
@@ -854,6 +952,13 @@ $a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"
 $a->strings["Bookmark added"] = "Lesezeichen hinzugefügt";
 $a->strings["My Bookmarks"] = "Meine Lesezeichen";
 $a->strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte";
+$a->strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden.";
+$a->strings["Empty post discarded."] = "Leeren Beitrag verworfen.";
+$a->strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben.";
+$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert.";
+$a->strings["Wall Photos"] = "Wall Fotos";
+$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["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$ss %3\$s";
 $a->strings["[Embedded content - reload page to view]"] = "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]";
 $a->strings["Channel not found."] = "Kanal nicht gefunden.";
@@ -909,7 +1014,6 @@ $a->strings["Delete this menu item"] = "Lösche dieses Menü-Bestandteil";
 $a->strings["Edit this menu item"] = "Bearbeite dieses Menü-Bestandteil";
 $a->strings["New Menu Element"] = "Neues Menü-Bestandteil";
 $a->strings["Menu Item Permissions"] = "Zugriffsrechte des Menü-Elements";
-$a->strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)";
 $a->strings["Link text"] = "Link Text";
 $a->strings["URL of link"] = "URL des Links";
 $a->strings["Use Red magic-auth if available"] = "Verwende Red Magic-Auth wenn verfügbar";
@@ -955,7 +1059,6 @@ $a->strings["Pending registrations"] = "Ausstehende Registrierungen";
 $a->strings["Version"] = "Version";
 $a->strings["Active plugins"] = "Aktive Plug-Ins";
 $a->strings["Site settings updated."] = "Site-Einstellungen aktualisiert.";
-$a->strings["No special theme for mobile devices"] = "Keine spezielle Theme für mobile Geräte";
 $a->strings["No special theme for accessibility"] = "Kein spezielles Accessibility-Theme vorhanden";
 $a->strings["Closed"] = "Geschlossen";
 $a->strings["Requires approval"] = "Genehmigung erforderlich";
@@ -1114,7 +1217,6 @@ $a->strings["Unhide"] = "Wieder sichtbar machen";
 $a->strings["Hide"] = "Verstecken";
 $a->strings["Hide or Unhide this connection"] = "Diese Verbindung verstecken oder wieder sichtbar machen";
 $a->strings["Delete this connection"] = "Verbindung löschen";
-$a->strings["Unknown"] = "Unbekannt";
 $a->strings["Approve this connection"] = "Verbindung genehmigen";
 $a->strings["Accept connection to allow communication"] = "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen";
 $a->strings["Automatic Permissions Settings"] = "Automatische Berechtigungs-Einstellungen";
@@ -1160,6 +1262,9 @@ $a->strings["Layout Name"] = "Layout-Name";
 $a->strings["Help:"] = "Hilfe:";
 $a->strings["Not Found"] = "Nicht gefunden";
 $a->strings["Page not found."] = "Seite nicht gefunden.";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Wir haben ein Problem mit der OpenID festgestellt, mit der du dich anmelden wolltest. Bitte überprüfe die Schreibweise der ID noch einmal.";
+$a->strings["The error message was:"] = "Die Fehlermeldung lautet:";
+$a->strings["Authentication failed."] = "Authentifizierung fehlgeschlagen.";
 $a->strings["Remote Authentication"] = "Entfernte Authentifizierung";
 $a->strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z. B. channel@example.com)";
 $a->strings["Authenticate"] = "Authentifizieren";
@@ -1330,9 +1435,9 @@ $a->strings["Version %s"] = "Version %s";
 $a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps";
 $a->strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps";
 $a->strings["Project Donations"] = "Projekt Spenden";
-$a->strings["<p>The Red Matrix is provided for you by volunteers working in their spare time. Your support will help us to build a better web. Select the following option for a one-time donation of your choosing</p>"] = "";
+$a->strings["<p>The Red Matrix is provided for you by volunteers working in their spare time. Your support will help us to build a better, freer, and privacy respecting web. Select the following option for a one-time donation of your choosing</p>"] = "";
 $a->strings["<p>or</p>"] = "<p>oder</p>";
-$a->strings["Recurring Donation Options"] = "";
+$a->strings["Recurring Donation Options"] = "Optionen für regelmäßige Spenden";
 $a->strings["Red"] = "Red";
 $a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralised privacy enhanced websites."] = "Dieser Server ist Teil der Red-Matrix – einem global vernetzten Verbund aus dezentralen Websites mit Rücksicht auf die Privatsphäre.";
 $a->strings["Running at web location"] = "Erreichbar unter der Web-Adresse";
@@ -1362,104 +1467,6 @@ $a->strings["Forgot your Password?"] = "Kennwort vergessen?";
 $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail.";
 $a->strings["Email Address"] = "E-Mail Adresse";
 $a->strings["Reset"] = "Zurücksetzen";
-$a->strings["Name is required"] = "Name ist erforderlich";
-$a->strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt";
-$a->strings["Update"] = "Aktualisieren";
-$a->strings["Passwords do not match. Password unchanged."] = "Kennwörter stimmen nicht überein. Kennwort nicht verändert.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert.";
-$a->strings["Password changed."] = "Kennwort geändert.";
-$a->strings["Password update failed. Please try again."] = "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal.";
-$a->strings["Not valid email."] = "Keine gültige E-Mail Adresse.";
-$a->strings["Protected email address. Cannot change to that email."] = "Geschützte E-Mail Adresse. Diese kann nicht verändert werden.";
-$a->strings["System failure storing new email. Please try again."] = "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal.";
-$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
-$a->strings["Add application"] = "Anwendung hinzufügen";
-$a->strings["Name"] = "Name";
-$a->strings["Name of application"] = "Name der Anwendung";
-$a->strings["Consumer Key"] = "Consumer Key";
-$a->strings["Automatically generated - change if desired. Max length 20"] = "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20";
-$a->strings["Consumer Secret"] = "Consumer Secret";
-$a->strings["Redirect"] = "Umleitung";
-$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "Umleitungs-URl – lasse das leer, wenn Deine Anwendung es nicht explizit erfordert";
-$a->strings["Icon url"] = "Symbol-URL";
-$a->strings["Optional"] = "Optional";
-$a->strings["You can't edit this application."] = "Diese Anwendung kann nicht bearbeitet werden.";
-$a->strings["Connected Apps"] = "Verbundene Apps";
-$a->strings["Client key starts with"] = "Client key beginnt mit";
-$a->strings["No name"] = "Kein Name";
-$a->strings["Remove authorization"] = "Authorisierung aufheben";
-$a->strings["No feature settings configured"] = "Keine Funktions-Einstellungen konfiguriert";
-$a->strings["Feature Settings"] = "Funktions-Einstellungen";
-$a->strings["Account Settings"] = "Konto-Einstellungen";
-$a->strings["Password Settings"] = "Kennwort-Einstellungen";
-$a->strings["New Password:"] = "Neues Passwort:";
-$a->strings["Confirm:"] = "Bestätigen:";
-$a->strings["Leave password fields blank unless changing"] = "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern";
-$a->strings["Email Address:"] = "Email Adresse:";
-$a->strings["Remove Account"] = "Konto entfernen";
-$a->strings["Warning: This action is permanent and cannot be reversed."] = "Achtung: Diese Aktion ist endgültig und kann nicht rückgängig gemacht werden.";
-$a->strings["Off"] = "Aus";
-$a->strings["On"] = "An";
-$a->strings["Additional Features"] = "Zusätzliche Funktionen";
-$a->strings["Connector Settings"] = "Connector-Einstellungen";
-$a->strings["Display Settings"] = "Anzeige-Einstellungen";
-$a->strings["Display Theme:"] = "Anzeige-Theme:";
-$a->strings["Mobile Theme:"] = "Mobile Theme:";
-$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren";
-$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 Sekunden, kein Maximum";
-$a->strings["Maximum number of conversations to load at any time:"] = "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:";
-$a->strings["Maximum of 100 items"] = "Maximum: 100 Beiträge";
-$a->strings["Don't show emoticons"] = "Emoticons nicht zeigen";
-$a->strings["Do not view remote profiles in frames"] = "";
-$a->strings["By default open in a sub-window of your own site"] = "";
-$a->strings["Nobody except yourself"] = "Niemand außer Dir selbst";
-$a->strings["Only those you specifically allow"] = "Nur die, denen Du es explizit erlaubst";
-$a->strings["Anybody in your address book"] = "Jeder aus Ihrem Adressbuch";
-$a->strings["Anybody on this website"] = "Jeder auf dieser Website";
-$a->strings["Anybody in this network"] = "Jeder in diesem Netzwerk";
-$a->strings["Anybody on the internet"] = "Jeder im Internet";
-$a->strings["Publish your default profile in the network directory"] = "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen";
-$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?";
-$a->strings["or"] = "oder";
-$a->strings["Your channel address is"] = "Deine Kanal-Adresse lautet";
-$a->strings["Channel Settings"] = "Kanal-Einstellungen";
-$a->strings["Basic Settings"] = "Grundeinstellungen";
-$a->strings["Your Timezone:"] = "Ihre Zeitzone:";
-$a->strings["Default Post Location:"] = "Standardstandort:";
-$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:";
-$a->strings["Adult Content"] = "Nicht jugendfreie Inhalte";
-$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)";
-$a->strings["Security and Privacy Settings"] = "Sicherheits- und Datenschutz-Einstellungen";
-$a->strings["Hide my online presence"] = "Meine Online-Präsenz verbergen";
-$a->strings["Prevents displaying in your profile that you are online"] = "Verhindert die Anzeige Deines Online-Status in deinem Profil";
-$a->strings["Simple Privacy Settings:"] = "Einfache Privatsphäre-Einstellungen";
-$a->strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "Komplett offen – <em>extrem ungeschützt (mit großer Vorsicht verwenden!)</em>";
-$a->strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "Typisch – <em>Default öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)</em>";
-$a->strings["Private - <em>default private, never open or public</em>"] = "Private – <em>Default privat, nie offen oder öffentlich</em>";
-$a->strings["Blocked - <em>default blocked to/from everybody</em>"] = "Blockiert – <em>Alle per Default blockiert</em>";
-$a->strings["Advanced Privacy Settings"] = "Fortgeschrittene Privatsphäre-Einstellungen";
-$a->strings["Maximum Friend Requests/Day:"] = "Maximale Kontaktanfragen pro Tag:";
-$a->strings["May reduce spam activity"] = "Kann die Spam-Aktivität verringern";
-$a->strings["Default Post Permissions"] = "Standardeinstellungen für Beitrags-Zugriffsrechte";
-$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:";
-$a->strings["Useful to reduce spamming"] = "Nützlich, um Spam zu verringern";
-$a->strings["Notification Settings"] = "Benachrichtigungs-Einstellungen";
-$a->strings["By default post a status message when:"] = "Sende standardmäßig Status-Nachrichten, wenn:";
-$a->strings["accepting a friend request"] = "Du eine Kontaktanfrage annimmst";
-$a->strings["joining a forum/community"] = "Du einem Forum beitrittst";
-$a->strings["making an <em>interesting</em> profile change"] = "Du eine <em>interessante</em> Änderung an Deinem Profil vornimmst";
-$a->strings["Send a notification email when:"] = "Eine E-Mail-Benachrichtigung senden, wenn:";
-$a->strings["You receive an introduction"] = "Du eine Vorstellung erhältst";
-$a->strings["Your introductions are confirmed"] = "Deine Vorstellung bestätigt wurde.";
-$a->strings["Someone writes on your profile wall"] = "Jemand auf Deine Pinnwand schreibt";
-$a->strings["Someone writes a followup comment"] = "Jemand einen Beitrag kommentiert";
-$a->strings["You receive a private message"] = "Du eine private Nachricht erhältst";
-$a->strings["You receive a friend suggestion"] = "Du einen Kontaktvorschlag erhältst";
-$a->strings["You are tagged in a post"] = "Du in einem Beitrag erwähnt wurdest";
-$a->strings["You are poked/prodded/etc. in a post"] = "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest";
-$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Account- und Seitenart-Einstellungen";
-$a->strings["Change the behaviour of this account for special situations"] = "Ändere das Verhalten dieses Accounts unter speziellen Umständen";
-$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "";
 $a->strings["Nothing to import."] = "Nichts zu importieren.";
 $a->strings["Unable to download data from old server"] = "Daten können vom alten Server nicht heruntergeladen werden";
 $a->strings["Imported file is empty."] = "Die importierte Datei ist leer.";
@@ -1509,6 +1516,7 @@ $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 auf der Profilseite des Absenders antworten.";
 $a->strings["Send Reply"] = "Antwort senden";
+$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
 $a->strings["Edit Layout"] = "Layout bearbeiten";
 $a->strings["Delete layout?"] = "Layout löschen?";
 $a->strings["Delete Layout"] = "Layout löschen";
-- 
cgit v1.2.3


From f9eddb89eff2601f8ef4318f16a8360296613935 Mon Sep 17 00:00:00 2001
From: Christian Vogeley <christian.vogeley@hotmail.de>
Date: Sat, 22 Feb 2014 16:10:46 +0100
Subject: Add option for narrow navbar instead of the bootstrap default

thick version
---
 view/theme/redbasic/css/narrow_navbar.css  | 27 +++++++++++++++++++++++++++
 view/theme/redbasic/php/config.php         |  3 +++
 view/theme/redbasic/php/style.php          |  4 ++++
 view/theme/redbasic/tpl/theme_settings.tpl |  1 +
 4 files changed, 35 insertions(+)
 create mode 100644 view/theme/redbasic/css/narrow_navbar.css

(limited to 'view')

diff --git a/view/theme/redbasic/css/narrow_navbar.css b/view/theme/redbasic/css/narrow_navbar.css
new file mode 100644
index 000000000..51a0ec196
--- /dev/null
+++ b/view/theme/redbasic/css/narrow_navbar.css
@@ -0,0 +1,27 @@
+.navbar-nav > li > a {padding-top:5px !important; padding-bottom:5px !important;}
+.navbar {min-height:18px !important;}
+nav img {
+height: 25px;
+width: 25px;
+margin: 2px 0px 1px 10px;
+border-radius: 0px;
+}
+.navbar-left{height: 30px;}
+.container-fluid {min-height:30px;}
+.collapse .navbar-collapse {min-height:30px; max-height:30px;}
+#nav-search-text {margin:5px;}
+header #banner {margin-top:5px;}
+nav .dropdown-menu {
+top: 30px;}
+nav .badge {
+    position: relative;
+    top: -30px;
+    float: right;
+    font-size: 10px;
+    padding: 2px 6px;
+    cursor: pointer;
+}
+#jGrowl.top-right {
+	top: 30px;
+	right: 15px;
+}
\ No newline at end of file
diff --git a/view/theme/redbasic/php/config.php b/view/theme/redbasic/php/config.php
index 68a72fffd..2235a9742 100644
--- a/view/theme/redbasic/php/config.php
+++ b/view/theme/redbasic/php/config.php
@@ -6,6 +6,7 @@ function theme_content(&$a) {
 	$arr = array();
 
 	$arr['schema'] = get_pconfig(local_user(),'redbasic', 'schema' );
+    $arr['narrow_navbar'] = get_pconfig(local_user(),'redbasic', 'narrow_navbar' );
 	$arr['nav_colour'] = get_pconfig(local_user(),'redbasic', 'nav_colour' );
 	$arr['link_colour'] = get_pconfig(local_user(),'redbasic', 'link_colour' );
 	$arr['banner_colour'] = get_pconfig(local_user(),'redbasic', 'banner_colour' );
@@ -33,6 +34,7 @@ function theme_post(&$a) {
 
 	if (isset($_POST['redbasic-settings-submit'])) {
 		set_pconfig(local_user(), 'redbasic', 'schema', $_POST['redbasic_schema']);
+		set_pconfig(local_user(), 'redbasic', 'narrow_navbar', $_POST['redbasic_narrow_navbar']);
 		set_pconfig(local_user(), 'redbasic', 'nav_colour', $_POST['redbasic_nav_colour']);
 		set_pconfig(local_user(), 'redbasic', 'link_colour', $_POST['redbasic_link_colour']);
 		set_pconfig(local_user(), 'redbasic', 'background_colour', $_POST['redbasic_background_colour']);
@@ -97,6 +99,7 @@ if(feature_enabled(local_user(),'expert'))
 		'$expert' => $expert,
 		'$title' => t("Theme settings"),
 		'$schema' => array('redbasic_schema', t('Set scheme'), $arr['schema'], '', $scheme_choices),
+		'$narrow_navbar' => array('redbasic_narrow_navbar',t('Narrow navbar'),$arr['narrow_navbar']),		
 		'$nav_colour' => array('redbasic_nav_colour', t('Navigation bar colour'), $arr['nav_colour'], '', $nav_colours),
 		'$link_colour' => array('redbasic_link_colour', t('link colour'), $arr['link_colour'], '', $link_colours),
 		'$banner_colour' => array('redbasic_banner_colour', t('Set font-colour for banner'), $arr['banner_colour']),
diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php
index 8d5c23a03..901d06af7 100644
--- a/view/theme/redbasic/php/style.php
+++ b/view/theme/redbasic/php/style.php
@@ -14,6 +14,7 @@ if(! $a->install) {
 	    $nav_colour = get_pconfig($uid, "redbasic", "nav_colour");	
 
 // Load the owners pconfig
+		$narrow_navbar = get_pconfig($uid,'redbasic','narrow_navbar');
 		$banner_colour = get_pconfig($uid,'redbasic','banner_colour');
 	    $link_colour = get_pconfig($uid, "redbasic", "link_colour");	
 		$schema = get_pconfig($uid,'redbasic','schema');
@@ -213,3 +214,6 @@ echo str_replace(array_keys($options), array_values($options), $x);
 if($sloppy_photos && file_exists('view/theme/redbasic/css/sloppy_photos.css')) {
 	echo file_get_contents('view/theme/redbasic/css/sloppy_photos.css');
 } 
+if($narrow_navbar && file_exists('view/theme/redbasic/css/narrow_navbar.css')) {
+	echo file_get_contents('view/theme/redbasic/css/narrow_navbar.css');
+} 
diff --git a/view/theme/redbasic/tpl/theme_settings.tpl b/view/theme/redbasic/tpl/theme_settings.tpl
index cc573d99e..af2969397 100644
--- a/view/theme/redbasic/tpl/theme_settings.tpl
+++ b/view/theme/redbasic/tpl/theme_settings.tpl
@@ -5,6 +5,7 @@
 
 {{if $expert}}
 {{* include file="field_select.tpl" field=$nav_colour *}}
+{{include file="field_checkbox.tpl" field=$narrow_navbar}}
 {{include file="field_input.tpl" field=$banner_colour}}
 {{include file="field_input.tpl" field=$link_colour}}
 {{include file="field_input.tpl" field=$bgcolour}}
-- 
cgit v1.2.3


From a5f70f6c10705c655ad31e906626ac3513da00fe Mon Sep 17 00:00:00 2001
From: Christian Vogeley <christian.vogeley@hotmail.de>
Date: Sat, 22 Feb 2014 20:30:41 +0100
Subject: little tweaks

---
 view/theme/redbasic/css/narrow_navbar.css | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'view')

diff --git a/view/theme/redbasic/css/narrow_navbar.css b/view/theme/redbasic/css/narrow_navbar.css
index 51a0ec196..b05f46797 100644
--- a/view/theme/redbasic/css/narrow_navbar.css
+++ b/view/theme/redbasic/css/narrow_navbar.css
@@ -1,5 +1,5 @@
 .navbar-nav > li > a {padding-top:5px !important; padding-bottom:5px !important;}
-.navbar {min-height:18px !important;}
+.navbar {min-height:25px !important;}
 nav img {
 height: 25px;
 width: 25px;
@@ -8,7 +8,7 @@ border-radius: 0px;
 }
 .navbar-left{height: 30px;}
 .container-fluid {min-height:30px;}
-.collapse .navbar-collapse {min-height:30px; max-height:30px;}
+.collapse .navbar-collapse {min-height:30px;}
 #nav-search-text {margin:5px;}
 header #banner {margin-top:5px;}
 nav .dropdown-menu {
-- 
cgit v1.2.3


From e4eeb9d101e7064049f721edcf959ef3bd968ac0 Mon Sep 17 00:00:00 2001
From: Alexandre Hannud Abdo <abdo@member.fsf.org>
Date: Mon, 24 Feb 2014 15:29:56 -0300
Subject: Updates to pt-br translation, including some email templates.

---
 view/pt-br/follow_notify_eml.tpl   |   12 +-
 view/pt-br/friend_complete_eml.tpl |   23 +-
 view/pt-br/intro_complete_eml.tpl  |   26 +-
 view/pt-br/lostpass_eml.tpl        |   33 +-
 view/pt-br/messages.po             | 4835 ++++++++++++++++++------------------
 view/pt-br/passchanged_eml.tpl     |   24 +-
 view/pt-br/register_open_eml.tpl   |   23 +-
 view/pt-br/register_verify_eml.tpl |   18 +-
 view/pt-br/request_notify_eml.tpl  |   16 +-
 view/pt-br/strings.php             |  246 +-
 10 files changed, 2653 insertions(+), 2603 deletions(-)

(limited to 'view')

diff --git a/view/pt-br/follow_notify_eml.tpl b/view/pt-br/follow_notify_eml.tpl
index ba07b19da..bc86e5fe1 100644
--- a/view/pt-br/follow_notify_eml.tpl
+++ b/view/pt-br/follow_notify_eml.tpl
@@ -1,14 +1,14 @@
 
-Dear {{$myname}},
+Caro/a {{$myname}},
 
-You have a new follower at {{$sitename}} -  '{{$requestor}}'.
+Você tem um novo seguidor em {{$sitename}} -  '{{$requestor}}'.
 
-You may visit their profile at {{$url}}.
+Você pode ver o perfil dele em {{$url}}.
 
-Please login to your site to approve or ignore/cancel the request.
+Por favor, autentique-se no seu site para aprovara ou ignorar/cancelar esta solicitação.
 
 {{$siteurl}}
 
-Regards,
+Gratidão,
 
-	{{$sitename}} administrator
+	{{$sitename}} administrador
diff --git a/view/pt-br/friend_complete_eml.tpl b/view/pt-br/friend_complete_eml.tpl
index 1c647b994..51adf23e3 100644
--- a/view/pt-br/friend_complete_eml.tpl
+++ b/view/pt-br/friend_complete_eml.tpl
@@ -1,22 +1,23 @@
 
-Dear {{$username}},
+Caro/a {{$username}},
 
-	Great news... '{{$fn}}' at '{{$dfrn_url}}' has accepted 
-your connection request at '{{$sitename}}'.
+	Boas notícias... '{{$fn}}' em '{{$dfrn_url}}' aceitou
+seu pedido de conexão em '{{$sitename}}'.
 
-You are now mutual friends and may exchange status updates, photos, and email
-without restriction.
+Vocês agora são amigos mútuos e podem trocar atualizações de status, fotos,
+e email sem restrição.
 
-Please visit your 'Connnections' page at {{$sitename}} if you wish to make 
-any changes to this relationship. 
+Por favor, visite sua página 'Conexões' em {{$sitename}} se quiser efetuar
+quaisquer mudanças nesse relacionamento.
 
 {{$siteurl}}
 
-[For instance, you may create a separate profile with information that is not
-available to the general public - and assign viewing rights to '{{$fn}}'].
+[Por exemplo, você pode criar um perfil à parte com informações que não
+estão disponíveis para o público geral - e conceder permissões de acesso
+para '{{$fn}}'].
 
-Sincerely,
+Atenciosamente,
 
-	{{$sitename}} Administrator
+	{{$sitename}} Administrador
 
  
diff --git a/view/pt-br/intro_complete_eml.tpl b/view/pt-br/intro_complete_eml.tpl
index 2c2428d68..bd20e0a6e 100644
--- a/view/pt-br/intro_complete_eml.tpl
+++ b/view/pt-br/intro_complete_eml.tpl
@@ -1,22 +1,22 @@
 
-Dear {{$username}},
+Caro/a {{$username}},
 
-	'{{$fn}}' at '{{$dfrn_url}}' has accepted 
-your connection request at '{{$sitename}}'.
+	'{{$fn}}' em '{{$dfrn_url}}' aceitou sua solicitação de conexão
+em '{{$sitename}}'.
 
-	'{{$fn}}' has chosen to accept you a "fan", which restricts 
-some forms of communication - such as private messaging and some profile
-interactions. If this is a celebrity or community page, these settings were
-applied automatically.
+	'{{$fn}}' optou por aceitá-lo como "fã", o que restringe algumas
+formas de comunicação - como mensagens privadas e certas interações com o
+perfil. Se esta é uma página de celebridade ou comunidade, essa
+configuração é aplicada automaticamente.
 
-	'{{$fn}}' may choose to extend this into a two-way or more permissive 
-relationship in the future. 
+	'{{$fn}}' pode escolher no futuro transformar essa relação em uma
+mais permissiva, de duas vias.
 
-	You will start receiving public status updates from '{{$fn}}', 
-which will appear on your 'Matrix' page at  
+	Você começará a receber atualizações de status públicas de '{{$fn}}', 
+que aparecerão na sua Matriz em
 
 {{$siteurl}}
 
-Sincerely,
+Atenciosamente,
 
-	{{$sitename}} Administrator
+	{{$sitename}} Administrador
diff --git a/view/pt-br/lostpass_eml.tpl b/view/pt-br/lostpass_eml.tpl
index 3b79d2791..15a72ffb6 100644
--- a/view/pt-br/lostpass_eml.tpl
+++ b/view/pt-br/lostpass_eml.tpl
@@ -1,32 +1,33 @@
 
-Dear {{$username}},
-	A request was recently received at {{$sitename}} to reset your account 
-password. In order to confirm this request, please select the verification link
-below or paste it into your web browser address bar. 
+Caro/a {{$username}},
 
-If you did NOT request this change, please DO NOT follow the link
-provided and ignore and/or delete this email. 
+	Uma solicitação para reiniciar a senha da sua conta foi recebida em
+{{$sitename}}. Para confirmar este pedido, acesse o link de verificação clicando
+nele abaixo ou copiando na barra de endereço do seu navegador.
 
-Your password will not be changed unless we can verify that you
-issued this request. 
+Se você NÃO solicitou essa mudança, por favor NÃO SIGA o link a seguir e
+ignore e/ou delete este e-mail.
 
-Follow this link to verify your identity:
+Sua senha não será modificada até que você confirme este pedido.
+
+Siga este link para confirmá-lo:
 
 {{$reset_link}}
 
-You will then receive a follow-up message containing the new password.
+Você receberá então um outro e-mail contendo uma nova senha.
 
-You may change that password from your account settings page after logging in.
+Você poderá trocar essa senha a partir das suas configurações de conta,
+após autenticar-se.
 
-The login details are as follows:
+Os detalhes de autenticação são os seguintes:
 
-Site Location:	{{$siteurl}}
-Login Name:	{{$email}}
+Localização do site:	{{$siteurl}}
+Nome:	{{$email}}
 
 
 
 
-Sincerely,
-	{{$sitename}} Administrator
+Atenciosamente,
+	{{$sitename}} Administrador
 
  
diff --git a/view/pt-br/messages.po b/view/pt-br/messages.po
index 3decef9bf..74288b429 100644
--- a/view/pt-br/messages.po
+++ b/view/pt-br/messages.po
@@ -15,8 +15,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Red Matrix\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-02-14 00:02-0800\n"
-"PO-Revision-Date: 2014-02-20 21:57+0000\n"
+"POT-Creation-Date: 2014-02-21 00:03-0800\n"
+"PO-Revision-Date: 2014-02-24 17:27+0000\n"
 "Last-Translator: solstag <solstag@member.fsf.org>\n"
 "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/red-matrix/language/pt_BR/)\n"
 "MIME-Version: 1.0\n"
@@ -30,7 +30,7 @@ msgid "Categories"
 msgstr "Categorias"
 
 #: ../../include/widgets.php:115 ../../include/widgets.php:155
-#: ../../include/Contact.php:104 ../../include/identity.php:628
+#: ../../include/Contact.php:107 ../../include/identity.php:632
 #: ../../mod/directory.php:184 ../../mod/match.php:62
 #: ../../mod/dirprofile.php:170 ../../mod/suggest.php:51
 msgid "Connect"
@@ -69,8 +69,8 @@ msgstr "Por exemplo: joao@exemplo.com, http://exemplo.com/maria"
 msgid "Notes"
 msgstr "Notas"
 
-#: ../../include/widgets.php:173 ../../include/text.php:754
-#: ../../include/text.php:768 ../../mod/filer.php:36
+#: ../../include/widgets.php:173 ../../include/text.php:759
+#: ../../include/text.php:773 ../../mod/filer.php:36
 msgid "Save"
 msgstr "Salvar"
 
@@ -96,7 +96,7 @@ msgstr "Pastas salvas"
 msgid "Everything"
 msgstr "Tudo"
 
-#: ../../include/widgets.php:318 ../../include/items.php:3636
+#: ../../include/widgets.php:318
 msgid "Archives"
 msgstr "Arquivos"
 
@@ -112,7 +112,7 @@ msgstr "Eu"
 msgid "Best Friends"
 msgstr "Melhores amigos"
 
-#: ../../include/widgets.php:373 ../../include/identity.php:310
+#: ../../include/widgets.php:373 ../../include/identity.php:314
 #: ../../include/profile_selectors.php:42 ../../mod/connedit.php:392
 msgid "Friends"
 msgstr "Amigos"
@@ -175,7 +175,7 @@ msgid "Channel Sources"
 msgstr "Fontes do canal"
 
 #: ../../include/widgets.php:487 ../../include/nav.php:181
-#: ../../mod/admin.php:837 ../../mod/admin.php:1042
+#: ../../mod/admin.php:838 ../../mod/admin.php:1043
 msgid "Settings"
 msgstr "Configurações"
 
@@ -226,7 +226,7 @@ msgstr "Visite o %2$s de %1$s"
 msgid "%1$s has an updated %2$s, changing %3$s."
 msgstr "%1$s atualizou %2$s, alterando %3$s."
 
-#: ../../include/nav.php:72 ../../include/nav.php:91 ../../boot.php:1423
+#: ../../include/nav.php:72 ../../include/nav.php:91 ../../boot.php:1425
 msgid "Logout"
 msgstr "Sair"
 
@@ -236,7 +236,7 @@ msgstr "Encerrar essa sessão"
 
 #: ../../include/nav.php:75 ../../include/nav.php:125
 msgid "Home"
-msgstr "Meu canal"
+msgstr "Ver canal"
 
 #: ../../include/nav.php:75
 msgid "Your posts and conversations"
@@ -310,7 +310,7 @@ msgstr "Páginas web"
 msgid "Your webpages"
 msgstr "Suas páginas web"
 
-#: ../../include/nav.php:89 ../../boot.php:1424
+#: ../../include/nav.php:89 ../../boot.php:1426
 msgid "Login"
 msgstr "Entrar"
 
@@ -331,7 +331,7 @@ msgstr "Clique para se autenticar com seu hub de origem"
 msgid "Home Page"
 msgstr "Página inicial"
 
-#: ../../include/nav.php:129 ../../mod/register.php:206 ../../boot.php:1400
+#: ../../include/nav.php:129 ../../mod/register.php:206 ../../boot.php:1402
 msgid "Register"
 msgstr "Registrar"
 
@@ -355,8 +355,8 @@ msgstr "Aplicações"
 msgid "Addon applications, utilities, games"
 msgstr "Aplicações adicionais, utilitários, jogos"
 
-#: ../../include/nav.php:139 ../../include/text.php:752
-#: ../../include/text.php:766 ../../mod/search.php:29
+#: ../../include/nav.php:139 ../../include/text.php:757
+#: ../../include/text.php:771 ../../mod/search.php:29
 msgid "Search"
 msgstr "Pesquisar"
 
@@ -516,320 +516,320 @@ msgstr "mais antigo"
 msgid "newer"
 msgstr "mais recente"
 
-#: ../../include/text.php:670
+#: ../../include/text.php:675
 msgid "No connections"
 msgstr "Nenhuma conexão"
 
-#: ../../include/text.php:681
+#: ../../include/text.php:686
 #, php-format
 msgid "%d Connection"
 msgid_plural "%d Connections"
 msgstr[0] "%d conexão"
 msgstr[1] "%d conexões"
 
-#: ../../include/text.php:693
+#: ../../include/text.php:698
 msgid "View Connections"
 msgstr "Ver conexões"
 
-#: ../../include/text.php:834
+#: ../../include/text.php:839
 msgid "poke"
 msgstr "cutucar"
 
-#: ../../include/text.php:834 ../../include/conversation.php:240
+#: ../../include/text.php:839 ../../include/conversation.php:240
 msgid "poked"
 msgstr "cutucado"
 
-#: ../../include/text.php:835
+#: ../../include/text.php:840
 msgid "ping"
 msgstr "pingar"
 
-#: ../../include/text.php:835
+#: ../../include/text.php:840
 msgid "pinged"
 msgstr "pingou"
 
-#: ../../include/text.php:836
+#: ../../include/text.php:841
 msgid "prod"
 msgstr "espetar"
 
-#: ../../include/text.php:836
+#: ../../include/text.php:841
 msgid "prodded"
 msgstr "espetou"
 
-#: ../../include/text.php:837
+#: ../../include/text.php:842
 msgid "slap"
 msgstr "estapear"
 
-#: ../../include/text.php:837
+#: ../../include/text.php:842
 msgid "slapped"
 msgstr "estapeou"
 
-#: ../../include/text.php:838
+#: ../../include/text.php:843
 msgid "finger"
 msgstr "dar um toque"
 
-#: ../../include/text.php:838
+#: ../../include/text.php:843
 msgid "fingered"
 msgstr "deu um toque"
 
-#: ../../include/text.php:839
+#: ../../include/text.php:844
 msgid "rebuff"
 msgstr "rebater"
 
-#: ../../include/text.php:839
+#: ../../include/text.php:844
 msgid "rebuffed"
 msgstr "rebateu"
 
-#: ../../include/text.php:851
+#: ../../include/text.php:856
 msgid "happy"
 msgstr "feliz"
 
-#: ../../include/text.php:852
+#: ../../include/text.php:857
 msgid "sad"
 msgstr "triste"
 
-#: ../../include/text.php:853
+#: ../../include/text.php:858
 msgid "mellow"
 msgstr "suave"
 
-#: ../../include/text.php:854
+#: ../../include/text.php:859
 msgid "tired"
 msgstr "cansado"
 
-#: ../../include/text.php:855
+#: ../../include/text.php:860
 msgid "perky"
 msgstr "animado/a"
 
-#: ../../include/text.php:856
+#: ../../include/text.php:861
 msgid "angry"
 msgstr "nervoso"
 
-#: ../../include/text.php:857
+#: ../../include/text.php:862
 msgid "stupified"
 msgstr "embasbacado/a"
 
-#: ../../include/text.php:858
+#: ../../include/text.php:863
 msgid "puzzled"
 msgstr "confuso/a"
 
-#: ../../include/text.php:859
+#: ../../include/text.php:864
 msgid "interested"
 msgstr "interessado"
 
-#: ../../include/text.php:860
+#: ../../include/text.php:865
 msgid "bitter"
 msgstr "amargo/a"
 
-#: ../../include/text.php:861
+#: ../../include/text.php:866
 msgid "cheerful"
 msgstr "alegre"
 
-#: ../../include/text.php:862
+#: ../../include/text.php:867
 msgid "alive"
 msgstr "vivo"
 
-#: ../../include/text.php:863
+#: ../../include/text.php:868
 msgid "annoyed"
 msgstr "aborrecido"
 
-#: ../../include/text.php:864
+#: ../../include/text.php:869
 msgid "anxious"
 msgstr "ansioso"
 
-#: ../../include/text.php:865
+#: ../../include/text.php:870
 msgid "cranky"
 msgstr "irritado/a"
 
-#: ../../include/text.php:866
+#: ../../include/text.php:871
 msgid "disturbed"
 msgstr "perturbado"
 
-#: ../../include/text.php:867
+#: ../../include/text.php:872
 msgid "frustrated"
 msgstr "frustrado"
 
-#: ../../include/text.php:868
+#: ../../include/text.php:873
 msgid "motivated"
 msgstr "motivado"
 
-#: ../../include/text.php:869
+#: ../../include/text.php:874
 msgid "relaxed"
 msgstr "relaxado"
 
-#: ../../include/text.php:870
+#: ../../include/text.php:875
 msgid "surprised"
 msgstr "surpreso"
 
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
 msgid "Monday"
 msgstr "Segunda"
 
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
 msgid "Tuesday"
 msgstr "Terça"
 
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
 msgid "Wednesday"
 msgstr "Quarta"
 
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
 msgid "Thursday"
 msgstr "Quinta"
 
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
 msgid "Friday"
 msgstr "Sexta"
 
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
 msgid "Saturday"
 msgstr "Sábado"
 
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
 msgid "Sunday"
 msgstr "Domingo"
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
 msgid "January"
 msgstr "Janeiro"
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
 msgid "February"
 msgstr "Fevereiro"
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
 msgid "March"
 msgstr "Março"
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
 msgid "April"
 msgstr "Abril"
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
 msgid "May"
 msgstr "Maio"
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
 msgid "June"
 msgstr "Junho"
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
 msgid "July"
 msgstr "Julho"
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
 msgid "August"
 msgstr "Agosto"
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
 msgid "September"
 msgstr "Setembro"
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
 msgid "October"
 msgstr "Outubro"
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
 msgid "November"
 msgstr "Novembro"
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
 msgid "December"
 msgstr "Dezembro"
 
-#: ../../include/text.php:1113
+#: ../../include/text.php:1118
 msgid "unknown.???"
 msgstr "desconhecido.???"
 
-#: ../../include/text.php:1114
+#: ../../include/text.php:1119
 msgid "bytes"
 msgstr "bytes"
 
-#: ../../include/text.php:1149
+#: ../../include/text.php:1154
 msgid "remove category"
 msgstr "remover categoria"
 
-#: ../../include/text.php:1171
+#: ../../include/text.php:1176
 msgid "remove from file"
 msgstr "remover do arquivo"
 
-#: ../../include/text.php:1229 ../../include/text.php:1241
+#: ../../include/text.php:1234 ../../include/text.php:1246
 msgid "Click to open/close"
 msgstr "Clique para abrir/fechar"
 
-#: ../../include/text.php:1417 ../../mod/events.php:332
+#: ../../include/text.php:1401 ../../mod/events.php:332
 msgid "link to source"
-msgstr "exibir a origem"
+msgstr "Link para a origem"
 
-#: ../../include/text.php:1436
+#: ../../include/text.php:1420
 msgid "Select a page layout: "
 msgstr "Selecione um layout de página:"
 
-#: ../../include/text.php:1439 ../../include/text.php:1504
+#: ../../include/text.php:1423 ../../include/text.php:1488
 msgid "default"
 msgstr "default"
 
-#: ../../include/text.php:1475
+#: ../../include/text.php:1459
 msgid "Page content type: "
 msgstr "Tipo de conteúdo da página: "
 
-#: ../../include/text.php:1516
+#: ../../include/text.php:1500
 msgid "Select an alternate language"
 msgstr "Selecione um idioma alternativo"
 
-#: ../../include/text.php:1637 ../../include/conversation.php:117
+#: ../../include/text.php:1621 ../../include/conversation.php:117
 #: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:45
 msgid "photo"
 msgstr "foto"
 
-#: ../../include/text.php:1640 ../../include/conversation.php:120
+#: ../../include/text.php:1624 ../../include/conversation.php:120
 #: ../../mod/tagger.php:49
 msgid "event"
 msgstr "evento"
 
-#: ../../include/text.php:1643 ../../include/conversation.php:145
+#: ../../include/text.php:1627 ../../include/conversation.php:145
 #: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:53
 msgid "status"
 msgstr "status"
 
-#: ../../include/text.php:1645 ../../include/conversation.php:147
+#: ../../include/text.php:1629 ../../include/conversation.php:147
 #: ../../mod/tagger.php:55
 msgid "comment"
 msgstr "comentário"
 
-#: ../../include/text.php:1650
+#: ../../include/text.php:1634
 msgid "activity"
 msgstr "atividade"
 
-#: ../../include/text.php:1907
+#: ../../include/text.php:1891
 msgid "Design"
 msgstr "Design"
 
-#: ../../include/text.php:1909
+#: ../../include/text.php:1893
 msgid "Blocks"
 msgstr "Blocos"
 
-#: ../../include/text.php:1910
+#: ../../include/text.php:1894
 msgid "Menus"
 msgstr "Menus"
 
-#: ../../include/text.php:1911
+#: ../../include/text.php:1895
 msgid "Layouts"
 msgstr "Layouts"
 
-#: ../../include/text.php:1912
+#: ../../include/text.php:1896
 msgid "Pages"
 msgstr "Páginas"
 
-#: ../../include/bbcode.php:128 ../../include/bbcode.php:594
-#: ../../include/bbcode.php:597 ../../include/bbcode.php:602
-#: ../../include/bbcode.php:605 ../../include/bbcode.php:608
-#: ../../include/bbcode.php:611 ../../include/bbcode.php:616
-#: ../../include/bbcode.php:619 ../../include/bbcode.php:624
-#: ../../include/bbcode.php:627 ../../include/bbcode.php:630
-#: ../../include/bbcode.php:633
+#: ../../include/bbcode.php:128 ../../include/bbcode.php:601
+#: ../../include/bbcode.php:604 ../../include/bbcode.php:609
+#: ../../include/bbcode.php:612 ../../include/bbcode.php:615
+#: ../../include/bbcode.php:618 ../../include/bbcode.php:623
+#: ../../include/bbcode.php:626 ../../include/bbcode.php:631
+#: ../../include/bbcode.php:634 ../../include/bbcode.php:637
+#: ../../include/bbcode.php:640
 msgid "Image/photo"
 msgstr "Imagem/foto"
 
-#: ../../include/bbcode.php:163 ../../include/bbcode.php:644
+#: ../../include/bbcode.php:163 ../../include/bbcode.php:651
 msgid "Encrypted content"
 msgstr "Conteúdo criptografado"
 
@@ -846,15 +846,15 @@ msgstr "%1$s escreveu a seguinte %2$s %3$s"
 msgid "post"
 msgstr "publicação"
 
-#: ../../include/bbcode.php:562 ../../include/bbcode.php:582
+#: ../../include/bbcode.php:569 ../../include/bbcode.php:589
 msgid "$1 wrote:"
 msgstr "$1 escreveu:"
 
-#: ../../include/Contact.php:120
+#: ../../include/Contact.php:123
 msgid "New window"
 msgstr "Nova janela"
 
-#: ../../include/Contact.php:121
+#: ../../include/Contact.php:124
 msgid "Open the selected location in a different window or browser tab"
 msgstr "Abre a localização selecionada em outra aba ou janela"
 
@@ -1127,8 +1127,8 @@ msgstr "OStatus"
 msgid "RSS/Atom"
 msgstr "RSS/Atom"
 
-#: ../../include/contact_selectors.php:77 ../../mod/admin.php:741
-#: ../../mod/admin.php:750 ../../boot.php:1426
+#: ../../include/contact_selectors.php:77 ../../mod/admin.php:742
+#: ../../mod/admin.php:751 ../../boot.php:1428
 msgid "Email"
 msgstr "E-mail"
 
@@ -1246,7 +1246,7 @@ msgstr "Início:"
 msgid "Finishes:"
 msgstr "Fim:"
 
-#: ../../include/event.php:40 ../../include/identity.php:679
+#: ../../include/event.php:40 ../../include/identity.php:683
 #: ../../include/bb2diaspora.php:455 ../../mod/events.php:462
 #: ../../mod/directory.php:157 ../../mod/dirprofile.php:111
 msgid "Location:"
@@ -1263,7 +1263,7 @@ msgstr "Um grupo com esse nome, anteriormente excluído, foi reativado. Permiss
 msgid "Default privacy group for new contacts"
 msgstr "Grupo de privacidade padrão para novos contatos"
 
-#: ../../include/group.php:242 ../../mod/admin.php:750
+#: ../../include/group.php:242 ../../mod/admin.php:751
 msgid "All Channels"
 msgstr "Todos os canais"
 
@@ -1303,7 +1303,7 @@ msgstr "exibir mais"
 
 #: ../../include/js_strings.php:8
 msgid "show fewer"
-msgstr "mostrar menos"
+msgstr "exibir menos"
 
 #: ../../include/js_strings.php:9
 msgid "Password too short"
@@ -1414,39 +1414,40 @@ msgstr "Não foi possível determinar o remetente."
 msgid "Stored post could not be verified."
 msgstr "Não foi possível verificar a publicação armazenada."
 
-#: ../../include/photo/photo_driver.php:637 ../../include/photos.php:51
+#: ../../include/photo/photo_driver.php:643 ../../include/photos.php:51
 #: ../../mod/profile_photo.php:78 ../../mod/profile_photo.php:225
 #: ../../mod/profile_photo.php:336 ../../mod/photos.php:91
 #: ../../mod/photos.php:656 ../../mod/photos.php:678
 msgid "Profile Photos"
 msgstr "Fotos do perfil"
 
-#: ../../include/attach.php:98 ../../include/attach.php:129
-#: ../../include/attach.php:185 ../../include/attach.php:200
-#: ../../include/attach.php:233 ../../include/attach.php:247
-#: ../../include/attach.php:268 ../../include/attach.php:463
-#: ../../include/attach.php:541 ../../include/chat.php:113
-#: ../../include/photos.php:15 ../../include/items.php:3515
+#: ../../include/attach.php:119 ../../include/attach.php:166
+#: ../../include/attach.php:229 ../../include/attach.php:243
+#: ../../include/attach.php:283 ../../include/attach.php:297
+#: ../../include/attach.php:322 ../../include/attach.php:513
+#: ../../include/attach.php:585 ../../include/chat.php:113
+#: ../../include/photos.php:15 ../../include/items.php:3575
 #: ../../mod/common.php:35 ../../mod/events.php:140 ../../mod/thing.php:247
 #: ../../mod/thing.php:263 ../../mod/thing.php:298 ../../mod/invite.php:13
-#: ../../mod/invite.php:104 ../../mod/item.php:182 ../../mod/item.php:190
-#: ../../mod/menu.php:44 ../../mod/webpages.php:40 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/bookmarks.php:46 ../../mod/chat.php:87
-#: ../../mod/chat.php:92 ../../mod/viewconnections.php:22
-#: ../../mod/viewconnections.php:27 ../../mod/delegate.php:6
-#: ../../mod/mitem.php:73 ../../mod/group.php:9 ../../mod/viewsrc.php:12
-#: ../../mod/editpost.php:13 ../../mod/connedit.php:182
-#: ../../mod/layouts.php:27 ../../mod/layouts.php:42 ../../mod/page.php:30
-#: ../../mod/page.php:80 ../../mod/network.php:12 ../../mod/profiles.php:152
+#: ../../mod/invite.php:104 ../../mod/settings.php:493 ../../mod/menu.php:44
+#: ../../mod/webpages.php:40 ../../mod/api.php:26 ../../mod/api.php:31
+#: ../../mod/bookmarks.php:46 ../../mod/item.php:182 ../../mod/item.php:190
+#: ../../mod/chat.php:87 ../../mod/chat.php:92
+#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27
+#: ../../mod/delegate.php:6 ../../mod/mitem.php:73 ../../mod/group.php:9
+#: ../../mod/viewsrc.php:12 ../../mod/editpost.php:13
+#: ../../mod/connedit.php:182 ../../mod/layouts.php:27
+#: ../../mod/layouts.php:42 ../../mod/page.php:30 ../../mod/page.php:80
+#: ../../mod/network.php:12 ../../mod/profiles.php:152
 #: ../../mod/profiles.php:453 ../../mod/sources.php:66 ../../mod/setup.php:200
 #: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97
-#: ../../mod/achievements.php:27 ../../mod/settings.php:493
-#: ../../mod/manage.php:6 ../../mod/mail.php:108 ../../mod/editlayout.php:48
-#: ../../mod/profile_photo.php:187 ../../mod/profile_photo.php:200
-#: ../../mod/connections.php:169 ../../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:188
+#: ../../mod/achievements.php:27 ../../mod/manage.php:6 ../../mod/mail.php:108
+#: ../../mod/editlayout.php:48 ../../mod/profile_photo.php:187
+#: ../../mod/profile_photo.php:200 ../../mod/connections.php:169
+#: ../../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:188
 #: ../../mod/channel.php:231 ../../mod/fsuggest.php:78
 #: ../../mod/editblock.php:48 ../../mod/filestorage.php:10
 #: ../../mod/filestorage.php:59 ../../mod/filestorage.php:75
@@ -1457,61 +1458,61 @@ msgstr "Fotos do perfil"
 msgid "Permission denied."
 msgstr "Permissão negada."
 
-#: ../../include/attach.php:180 ../../include/attach.php:228
+#: ../../include/attach.php:224 ../../include/attach.php:278
 msgid "Item was not found."
 msgstr "O item não foi encontrado."
 
-#: ../../include/attach.php:281
+#: ../../include/attach.php:335
 msgid "No source file."
 msgstr "Nenhum arquivo de origem."
 
-#: ../../include/attach.php:298
+#: ../../include/attach.php:352
 msgid "Cannot locate file to replace"
 msgstr "Não foi possível locar o arquivo a ser substituído"
 
-#: ../../include/attach.php:316
+#: ../../include/attach.php:370
 msgid "Cannot locate file to revise/update"
 msgstr "Não foi possível localizar o arquivo a ser revisado/atualizado"
 
-#: ../../include/attach.php:327
+#: ../../include/attach.php:381
 #, php-format
 msgid "File exceeds size limit of %d"
 msgstr "O arquivo excedeu o tamanho limite de %d"
 
-#: ../../include/attach.php:339
+#: ../../include/attach.php:393
 #, php-format
 msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
 msgstr "Você atingiu o seu limite de %1$.0f Mbytes de armazenamento de anexos."
 
-#: ../../include/attach.php:423
+#: ../../include/attach.php:475
 msgid "File upload failed. Possible system limit or action terminated."
 msgstr "Não foi possível enviar o arquivo. Provável limite do sistema ou a ação foi encerrada."
 
-#: ../../include/attach.php:435
+#: ../../include/attach.php:487
 msgid "Stored file could not be verified. Upload failed."
 msgstr "Não foi possível verificar o arquivo armazenado. Falha no envio."
 
-#: ../../include/attach.php:479 ../../include/attach.php:496
+#: ../../include/attach.php:528 ../../include/attach.php:545
 msgid "Path not available."
 msgstr "O caminho não está disponível."
 
-#: ../../include/attach.php:546
+#: ../../include/attach.php:590
 msgid "Empty pathname"
 msgstr "O nome do caminho está em branco"
 
-#: ../../include/attach.php:564
+#: ../../include/attach.php:606
 msgid "duplicate filename or path"
 msgstr "nome de arquivo ou caminho duplicado"
 
-#: ../../include/attach.php:589
+#: ../../include/attach.php:630
 msgid "Path not found."
 msgstr "Caminho não encontrado."
 
-#: ../../include/attach.php:634
+#: ../../include/attach.php:674
 msgid "mkdir failed."
 msgstr "mkdir falhou."
 
-#: ../../include/attach.php:638
+#: ../../include/attach.php:678
 msgid "database storage failed."
 msgstr "armazenamento de banco de dados falhou."
 
@@ -1554,8 +1555,8 @@ msgid "Select"
 msgstr "Selecionar"
 
 #: ../../include/conversation.php:632 ../../include/ItemObject.php:108
-#: ../../mod/thing.php:236 ../../mod/group.php:176 ../../mod/admin.php:745
-#: ../../mod/connedit.php:359 ../../mod/settings.php:579
+#: ../../mod/thing.php:236 ../../mod/settings.php:579 ../../mod/group.php:176
+#: ../../mod/admin.php:746 ../../mod/connedit.php:359
 #: ../../mod/filestorage.php:171 ../../mod/photos.php:1044
 msgid "Delete"
 msgstr "Excluir"
@@ -1597,7 +1598,7 @@ msgid "View in context"
 msgstr "Ver no contexto"
 
 #: ../../include/conversation.php:707 ../../include/conversation.php:1120
-#: ../../include/ItemObject.php:259 ../../mod/editpost.php:112
+#: ../../include/ItemObject.php:259 ../../mod/editpost.php:121
 #: ../../mod/mail.php:222 ../../mod/mail.php:336 ../../mod/editlayout.php:115
 #: ../../mod/editwebpage.php:153 ../../mod/editblock.php:129
 #: ../../mod/photos.php:975
@@ -1728,7 +1729,7 @@ msgid "Expires YYYY-MM-DD HH:MM"
 msgstr "Expira YYYY-MM-DD HH:MM"
 
 #: ../../include/conversation.php:1083 ../../include/ItemObject.php:557
-#: ../../mod/webpages.php:122 ../../mod/editpost.php:132
+#: ../../mod/webpages.php:122 ../../mod/editpost.php:141
 #: ../../mod/editlayout.php:136 ../../mod/editwebpage.php:177
 #: ../../mod/editblock.php:151 ../../mod/photos.php:995
 msgid "Preview"
@@ -1742,7 +1743,7 @@ msgstr "Compartilhar"
 msgid "Page link title"
 msgstr "Título do link da página"
 
-#: ../../include/conversation.php:1101 ../../mod/editpost.php:104
+#: ../../include/conversation.php:1101 ../../mod/editpost.php:113
 #: ../../mod/mail.php:219 ../../mod/mail.php:332 ../../mod/editlayout.php:107
 #: ../../mod/editwebpage.php:145 ../../mod/editblock.php:121
 msgid "Upload photo"
@@ -1752,7 +1753,7 @@ msgstr "Enviar foto"
 msgid "upload photo"
 msgstr "enviar foto"
 
-#: ../../include/conversation.php:1103 ../../mod/editpost.php:105
+#: ../../include/conversation.php:1103 ../../mod/editpost.php:114
 #: ../../mod/mail.php:220 ../../mod/mail.php:333 ../../mod/editlayout.php:108
 #: ../../mod/editwebpage.php:146 ../../mod/editblock.php:122
 msgid "Attach file"
@@ -1762,7 +1763,7 @@ msgstr "Anexar arquivo"
 msgid "attach file"
 msgstr "anexar arquivo"
 
-#: ../../include/conversation.php:1105 ../../mod/editpost.php:106
+#: ../../include/conversation.php:1105 ../../mod/editpost.php:115
 #: ../../mod/mail.php:221 ../../mod/mail.php:334 ../../mod/editlayout.php:109
 #: ../../mod/editwebpage.php:147 ../../mod/editblock.php:123
 msgid "Insert web link"
@@ -1788,7 +1789,7 @@ msgstr "Inserir link de áudio"
 msgid "audio link"
 msgstr "link de áudio"
 
-#: ../../include/conversation.php:1111 ../../mod/editpost.php:110
+#: ../../include/conversation.php:1111 ../../mod/editpost.php:119
 #: ../../mod/editlayout.php:113 ../../mod/editwebpage.php:151
 #: ../../mod/editblock.php:127
 msgid "Set your location"
@@ -1798,7 +1799,7 @@ msgstr "Definir sua localização"
 msgid "set location"
 msgstr "definir localização"
 
-#: ../../include/conversation.php:1113 ../../mod/editpost.php:111
+#: ../../include/conversation.php:1113 ../../mod/editpost.php:120
 #: ../../mod/editlayout.php:114 ../../mod/editwebpage.php:152
 #: ../../mod/editblock.php:128
 msgid "Clear browser location"
@@ -1808,19 +1809,19 @@ msgstr "Limpar a localização do navegador"
 msgid "clear location"
 msgstr "limpar a localização"
 
-#: ../../include/conversation.php:1116 ../../mod/editpost.php:124
+#: ../../include/conversation.php:1116 ../../mod/editpost.php:133
 #: ../../mod/editlayout.php:127 ../../mod/editwebpage.php:169
 #: ../../mod/editblock.php:142
 msgid "Set title"
 msgstr "Definir o título"
 
-#: ../../include/conversation.php:1119 ../../mod/editpost.php:126
+#: ../../include/conversation.php:1119 ../../mod/editpost.php:135
 #: ../../mod/editlayout.php:130 ../../mod/editwebpage.php:171
 #: ../../mod/editblock.php:145
 msgid "Categories (comma-separated list)"
 msgstr "Categorias (lista separada por vírgulas)"
 
-#: ../../include/conversation.php:1121 ../../mod/editpost.php:113
+#: ../../include/conversation.php:1121 ../../mod/editpost.php:122
 #: ../../mod/editlayout.php:116 ../../mod/editwebpage.php:154
 #: ../../mod/editblock.php:130
 msgid "Permission settings"
@@ -1830,43 +1831,43 @@ msgstr "Configurações de permissão"
 msgid "permissions"
 msgstr "permissões"
 
-#: ../../include/conversation.php:1130 ../../mod/editpost.php:121
+#: ../../include/conversation.php:1130 ../../mod/editpost.php:130
 #: ../../mod/editlayout.php:124 ../../mod/editwebpage.php:164
 #: ../../mod/editblock.php:139
 msgid "Public post"
 msgstr "Publicação pública"
 
-#: ../../include/conversation.php:1132 ../../mod/editpost.php:127
+#: ../../include/conversation.php:1132 ../../mod/editpost.php:136
 #: ../../mod/editlayout.php:131 ../../mod/editwebpage.php:172
 #: ../../mod/editblock.php:146
 msgid "Example: bob@example.com, mary@example.com"
 msgstr "Por exemplo: joao@exemplo.com, maria@exemplo.com"
 
-#: ../../include/conversation.php:1145 ../../mod/editpost.php:138
+#: ../../include/conversation.php:1145 ../../mod/editpost.php:147
 #: ../../mod/mail.php:226 ../../mod/mail.php:339 ../../mod/editlayout.php:141
 #: ../../mod/editwebpage.php:182 ../../mod/editblock.php:156
 msgid "Set expiration date"
 msgstr "Definir data de expiração"
 
 #: ../../include/conversation.php:1147 ../../include/ItemObject.php:560
-#: ../../mod/editpost.php:140 ../../mod/mail.php:228 ../../mod/mail.php:341
+#: ../../mod/editpost.php:149 ../../mod/mail.php:228 ../../mod/mail.php:341
 msgid "Encrypt text"
 msgstr "Encriptar texto"
 
-#: ../../include/conversation.php:1149 ../../mod/editpost.php:142
+#: ../../include/conversation.php:1149 ../../mod/editpost.php:151
 msgid "OK"
 msgstr "Ok"
 
-#: ../../include/conversation.php:1150 ../../mod/tagrm.php:11
-#: ../../mod/tagrm.php:94 ../../mod/editpost.php:143
-#: ../../mod/settings.php:517 ../../mod/settings.php:543
-#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117
+#: ../../include/conversation.php:1150 ../../mod/settings.php:517
+#: ../../mod/settings.php:543 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
+#: ../../mod/editpost.php:152 ../../mod/fbrowser.php:82
+#: ../../mod/fbrowser.php:117
 msgid "Cancel"
 msgstr "Cancelar"
 
 #: ../../include/conversation.php:1381
 msgid "Commented Order"
-msgstr "Recentemente comentados"
+msgstr "Recentes e comentados"
 
 #: ../../include/conversation.php:1384
 msgid "Sort by Comment Date"
@@ -1874,7 +1875,7 @@ msgstr "Ordenar pela data do último comentário"
 
 #: ../../include/conversation.php:1387
 msgid "Posted Order"
-msgstr "Ordem de publicação"
+msgstr "Recentemente publicados"
 
 #: ../../include/conversation.php:1390
 msgid "Sort by Post Date"
@@ -1953,238 +1954,238 @@ msgstr "Links guardados"
 msgid "Manage Webpages"
 msgstr "Administrar páginas web"
 
-#: ../../include/identity.php:29 ../../mod/item.php:1177
+#: ../../include/identity.php:30 ../../mod/item.php:1187
 msgid "Unable to obtain identity information from database"
 msgstr "Não foi possível obter a informação da identidade a partir do banco de dados"
 
-#: ../../include/identity.php:62
+#: ../../include/identity.php:63
 msgid "Empty name"
 msgstr "O nome está em branco"
 
-#: ../../include/identity.php:64
+#: ../../include/identity.php:65
 msgid "Name too long"
 msgstr "O nome é muito grande"
 
-#: ../../include/identity.php:143
+#: ../../include/identity.php:147
 msgid "No account identifier"
 msgstr "Nenhuma identificação da conta"
 
-#: ../../include/identity.php:153
+#: ../../include/identity.php:157
 msgid "Nickname is required."
 msgstr "É necessário informar o apelido."
 
-#: ../../include/identity.php:167
+#: ../../include/identity.php:171
 msgid ""
 "Nickname has unsupported characters or is already being used on this site."
 msgstr "A identificação possui caracteres não suportados ou já está sendo usada nesse site."
 
-#: ../../include/identity.php:226
+#: ../../include/identity.php:230
 msgid "Unable to retrieve created identity"
 msgstr "Não foi possível recuperar a identidade criada"
 
-#: ../../include/identity.php:285
+#: ../../include/identity.php:289
 msgid "Default Profile"
 msgstr "Perfil padrão"
 
-#: ../../include/identity.php:477
+#: ../../include/identity.php:481
 msgid "Requested channel is not available."
 msgstr "Canal solicitado não está disponível."
 
-#: ../../include/identity.php:489
+#: ../../include/identity.php:493
 msgid " Sorry, you don't have the permission to view this profile. "
 msgstr "Desculpe, você não tem permissão para ver este perfil."
 
-#: ../../include/identity.php:524 ../../mod/webpages.php:8
+#: ../../include/identity.php:528 ../../mod/webpages.php:8
 #: ../../mod/connect.php:13 ../../mod/layouts.php:8
 #: ../../mod/achievements.php:8 ../../mod/blocks.php:10
 #: ../../mod/profile.php:16 ../../mod/filestorage.php:40
 msgid "Requested profile is not available."
 msgstr "O perfil solicitado não está disponível."
 
-#: ../../include/identity.php:642 ../../mod/profiles.php:603
+#: ../../include/identity.php:646 ../../mod/profiles.php:603
 msgid "Change profile photo"
 msgstr "Mudar a foto do perfil"
 
-#: ../../include/identity.php:648
+#: ../../include/identity.php:652
 msgid "Profiles"
 msgstr "Perfis"
 
-#: ../../include/identity.php:648
+#: ../../include/identity.php:652
 msgid "Manage/edit profiles"
 msgstr "Administrar/editar perfis"
 
-#: ../../include/identity.php:649 ../../mod/profiles.php:604
+#: ../../include/identity.php:653 ../../mod/profiles.php:604
 msgid "Create New Profile"
 msgstr "Criar um novo perfil"
 
-#: ../../include/identity.php:652
+#: ../../include/identity.php:656
 msgid "Edit Profile"
 msgstr "Editar perfil"
 
-#: ../../include/identity.php:663 ../../mod/profiles.php:615
+#: ../../include/identity.php:667 ../../mod/profiles.php:615
 msgid "Profile Image"
 msgstr "Imagem do perfil"
 
-#: ../../include/identity.php:666 ../../mod/profiles.php:618
+#: ../../include/identity.php:670 ../../mod/profiles.php:618
 msgid "visible to everybody"
 msgstr "visível para todos"
 
-#: ../../include/identity.php:667 ../../mod/profiles.php:619
+#: ../../include/identity.php:671 ../../mod/profiles.php:619
 msgid "Edit visibility"
 msgstr "Editar a visibilidade"
 
-#: ../../include/identity.php:681 ../../include/identity.php:908
+#: ../../include/identity.php:685 ../../include/identity.php:912
 #: ../../mod/directory.php:159
 msgid "Gender:"
 msgstr "Gênero:"
 
-#: ../../include/identity.php:682 ../../include/identity.php:928
+#: ../../include/identity.php:686 ../../include/identity.php:932
 #: ../../mod/directory.php:161
 msgid "Status:"
 msgstr "Situação:"
 
-#: ../../include/identity.php:683 ../../include/identity.php:939
+#: ../../include/identity.php:687 ../../include/identity.php:943
 #: ../../mod/directory.php:163
 msgid "Homepage:"
 msgstr "Página web:"
 
-#: ../../include/identity.php:684 ../../mod/dirprofile.php:157
+#: ../../include/identity.php:688 ../../mod/dirprofile.php:157
 msgid "Online Now"
 msgstr "Online agora"
 
-#: ../../include/identity.php:752 ../../include/identity.php:832
+#: ../../include/identity.php:756 ../../include/identity.php:836
 #: ../../mod/ping.php:262
 msgid "g A l F d"
 msgstr "G l d F"
 
-#: ../../include/identity.php:753 ../../include/identity.php:833
+#: ../../include/identity.php:757 ../../include/identity.php:837
 msgid "F d"
 msgstr "F d"
 
-#: ../../include/identity.php:798 ../../include/identity.php:873
+#: ../../include/identity.php:802 ../../include/identity.php:877
 #: ../../mod/ping.php:284
 msgid "[today]"
 msgstr "[hoje]"
 
-#: ../../include/identity.php:810
+#: ../../include/identity.php:814
 msgid "Birthday Reminders"
 msgstr "Lembres de aniversário"
 
-#: ../../include/identity.php:811
+#: ../../include/identity.php:815
 msgid "Birthdays this week:"
 msgstr "Aniversários nesta semana:"
 
-#: ../../include/identity.php:866
+#: ../../include/identity.php:870
 msgid "[No description]"
 msgstr "[Sem descrição]"
 
-#: ../../include/identity.php:884
+#: ../../include/identity.php:888
 msgid "Event Reminders"
 msgstr "Lembretes de eventos"
 
-#: ../../include/identity.php:885
+#: ../../include/identity.php:889
 msgid "Events this week:"
 msgstr "Eventos nesta semana:"
 
-#: ../../include/identity.php:898 ../../include/identity.php:982
+#: ../../include/identity.php:902 ../../include/identity.php:986
 #: ../../mod/profperm.php:107
 msgid "Profile"
 msgstr "Perfil"
 
-#: ../../include/identity.php:906 ../../mod/settings.php:924
+#: ../../include/identity.php:910 ../../mod/settings.php:937
 msgid "Full Name:"
 msgstr "Nome completo:"
 
-#: ../../include/identity.php:913
+#: ../../include/identity.php:917
 msgid "j F, Y"
 msgstr "j de F, Y"
 
-#: ../../include/identity.php:914
+#: ../../include/identity.php:918
 msgid "j F"
 msgstr "j de F"
 
-#: ../../include/identity.php:921
+#: ../../include/identity.php:925
 msgid "Birthday:"
 msgstr "Aniversário:"
 
-#: ../../include/identity.php:925
+#: ../../include/identity.php:929
 msgid "Age:"
 msgstr "Idade:"
 
-#: ../../include/identity.php:934
+#: ../../include/identity.php:938
 #, php-format
 msgid "for %1$d %2$s"
 msgstr "para %1$d %2$s"
 
-#: ../../include/identity.php:937 ../../mod/profiles.php:526
+#: ../../include/identity.php:941 ../../mod/profiles.php:526
 msgid "Sexual Preference:"
 msgstr "Preferência sexual:"
 
-#: ../../include/identity.php:941 ../../mod/profiles.php:528
+#: ../../include/identity.php:945 ../../mod/profiles.php:528
 msgid "Hometown:"
 msgstr "Cidade natal:"
 
-#: ../../include/identity.php:943
+#: ../../include/identity.php:947
 msgid "Tags:"
 msgstr "Etiquetas:"
 
-#: ../../include/identity.php:945 ../../mod/profiles.php:529
+#: ../../include/identity.php:949 ../../mod/profiles.php:529
 msgid "Political Views:"
 msgstr "Posição política:"
 
-#: ../../include/identity.php:947
+#: ../../include/identity.php:951
 msgid "Religion:"
 msgstr "Religião:"
 
-#: ../../include/identity.php:949 ../../mod/directory.php:165
+#: ../../include/identity.php:953 ../../mod/directory.php:165
 msgid "About:"
 msgstr "Sobre:"
 
-#: ../../include/identity.php:951
+#: ../../include/identity.php:955
 msgid "Hobbies/Interests:"
 msgstr "Hobbies/Interesses:"
 
-#: ../../include/identity.php:953 ../../mod/profiles.php:532
+#: ../../include/identity.php:957 ../../mod/profiles.php:532
 msgid "Likes:"
 msgstr "Gosta de:"
 
-#: ../../include/identity.php:955 ../../mod/profiles.php:533
+#: ../../include/identity.php:959 ../../mod/profiles.php:533
 msgid "Dislikes:"
 msgstr "Não gosta de:"
 
-#: ../../include/identity.php:958
+#: ../../include/identity.php:962
 msgid "Contact information and Social Networks:"
 msgstr "Informações de contato e redes sociais:"
 
-#: ../../include/identity.php:960
+#: ../../include/identity.php:964
 msgid "My other channels:"
 msgstr "Meus outros canais:"
 
-#: ../../include/identity.php:962
+#: ../../include/identity.php:966
 msgid "Musical interests:"
 msgstr "Interesses musicais:"
 
-#: ../../include/identity.php:964
+#: ../../include/identity.php:968
 msgid "Books, literature:"
 msgstr "Livros, literatura:"
 
-#: ../../include/identity.php:966
+#: ../../include/identity.php:970
 msgid "Television:"
 msgstr "Televisão:"
 
-#: ../../include/identity.php:968
+#: ../../include/identity.php:972
 msgid "Film/dance/culture/entertainment:"
 msgstr "Filmes/dança/cultura/entretenimento:"
 
-#: ../../include/identity.php:970
+#: ../../include/identity.php:974
 msgid "Love/Romance:"
 msgstr "Amor/romance:"
 
-#: ../../include/identity.php:972
+#: ../../include/identity.php:976
 msgid "Work/employment:"
 msgstr "Trabalho/emprego:"
 
-#: ../../include/identity.php:974
+#: ../../include/identity.php:978
 msgid "School/education:"
 msgstr "Escola/educação:"
 
@@ -2193,11 +2194,12 @@ msgid "Private Message"
 msgstr "Mensagem privada"
 
 #: ../../include/ItemObject.php:96 ../../include/page_widgets.php:8
-#: ../../mod/thing.php:235 ../../mod/menu.php:59 ../../mod/webpages.php:118
-#: ../../mod/editpost.php:103 ../../mod/layouts.php:102
-#: ../../mod/settings.php:578 ../../mod/editlayout.php:106
-#: ../../mod/blocks.php:93 ../../mod/editwebpage.php:144
-#: ../../mod/editblock.php:120 ../../mod/filestorage.php:170
+#: ../../include/menu.php:41 ../../mod/thing.php:235
+#: ../../mod/settings.php:578 ../../mod/menu.php:59 ../../mod/webpages.php:118
+#: ../../mod/editpost.php:112 ../../mod/layouts.php:102
+#: ../../mod/editlayout.php:106 ../../mod/blocks.php:93
+#: ../../mod/editwebpage.php:144 ../../mod/editblock.php:120
+#: ../../mod/filestorage.php:170
 msgid "Edit"
 msgstr "Editar"
 
@@ -2288,15 +2290,15 @@ msgstr "Este(a) é você"
 
 #: ../../include/ItemObject.php:548 ../../mod/events.php:469
 #: ../../mod/thing.php:283 ../../mod/thing.php:326 ../../mod/invite.php:156
+#: ../../mod/settings.php:516 ../../mod/settings.php:628
+#: ../../mod/settings.php:656 ../../mod/settings.php:680
+#: ../../mod/settings.php:752 ../../mod/settings.php:929
 #: ../../mod/chat.php:162 ../../mod/chat.php:192 ../../mod/connect.php:92
-#: ../../mod/group.php:81 ../../mod/admin.php:431 ../../mod/admin.php:738
-#: ../../mod/admin.php:878 ../../mod/admin.php:1077 ../../mod/admin.php:1164
+#: ../../mod/group.php:81 ../../mod/admin.php:431 ../../mod/admin.php:739
+#: ../../mod/admin.php:879 ../../mod/admin.php:1078 ../../mod/admin.php:1165
 #: ../../mod/connedit.php:437 ../../mod/profiles.php:506
 #: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/setup.php:304
-#: ../../mod/setup.php:347 ../../mod/settings.php:516
-#: ../../mod/settings.php:628 ../../mod/settings.php:656
-#: ../../mod/settings.php:680 ../../mod/settings.php:752
-#: ../../mod/settings.php:916 ../../mod/import.php:387 ../../mod/mail.php:223
+#: ../../mod/setup.php:347 ../../mod/import.php:387 ../../mod/mail.php:223
 #: ../../mod/mail.php:335 ../../mod/poke.php:166 ../../mod/fsuggest.php:108
 #: ../../mod/filestorage.php:131 ../../mod/photos.php:566
 #: ../../mod/photos.php:671 ../../mod/photos.php:954 ../../mod/photos.php:994
@@ -2645,7 +2647,7 @@ msgstr "Você saiu."
 msgid "Failed authentication"
 msgstr "Não foi possível autenticar"
 
-#: ../../include/auth.php:203
+#: ../../include/auth.php:203 ../../mod/openid.php:185
 msgid "Login failed."
 msgstr "Não foi possível entrar."
 
@@ -3013,35 +3015,31 @@ msgstr "Essa ação excede o limite definido para o seu plano de assinatura."
 msgid "This action is not available under your subscription plan."
 msgstr "Essa ação não está disponível para o seu plano de assinatura."
 
-#: ../../include/follow.php:21
+#: ../../include/follow.php:23
 msgid "Channel is blocked on this site."
 msgstr "O canal está bloqueado neste site."
 
-#: ../../include/follow.php:26
+#: ../../include/follow.php:28
 msgid "Channel location missing."
 msgstr "A localização do canal foi perdida"
 
-#: ../../include/follow.php:43
-msgid "Channel discovery failed. Website may be down or misconfigured."
-msgstr "Não foi possível descobrir o canal. O site pode estar fora do ar ou desconfigurado."
-
-#: ../../include/follow.php:51
-msgid "Response from remote channel was not understood."
-msgstr "A resposta do canal remoto não foi compreendida."
-
-#: ../../include/follow.php:58
+#: ../../include/follow.php:54
 msgid "Response from remote channel was incomplete."
 msgstr "A resposta do canal remoto está incompleta."
 
-#: ../../include/follow.php:129
+#: ../../include/follow.php:126
+msgid "Channel discovery failed."
+msgstr "A descoberta de canais falhou."
+
+#: ../../include/follow.php:143
 msgid "local account not found."
 msgstr "a conta local não foi encontrada."
 
-#: ../../include/follow.php:138
+#: ../../include/follow.php:152
 msgid "Cannot connect to yourself."
 msgstr "Não é possível conectar-se consigo mesmo."
 
-#: ../../include/security.php:280
+#: ../../include/security.php:291
 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."
@@ -3145,36 +3143,40 @@ msgid ""
 "Extremely advanced. Leave this alone unless you know what you are doing"
 msgstr "Extremamente avançado. Não mexa nisso a não ser que saiba o que está fazendo"
 
-#: ../../include/items.php:231 ../../mod/like.php:55 ../../mod/profperm.php:23
+#: ../../include/items.php:240 ../../mod/like.php:55 ../../mod/profperm.php:23
 #: ../../mod/group.php:68 ../../index.php:350
 msgid "Permission denied"
 msgstr "Permissão negada"
 
-#: ../../include/items.php:3453 ../../mod/thing.php:78 ../../mod/admin.php:151
-#: ../../mod/admin.php:782 ../../mod/admin.php:985 ../../mod/viewsrc.php:18
+#: ../../include/items.php:756 ../../mod/connedit.php:395
+msgid "Unknown"
+msgstr "Desconhecidos"
+
+#: ../../include/items.php:3513 ../../mod/thing.php:78 ../../mod/admin.php:151
+#: ../../mod/admin.php:783 ../../mod/admin.php:986 ../../mod/viewsrc.php:18
 #: ../../mod/home.php:63 ../../mod/display.php:32 ../../mod/filestorage.php:18
 msgid "Item not found."
 msgstr "O item não foi encontrado."
 
-#: ../../include/items.php:3809 ../../mod/group.php:38 ../../mod/group.php:140
+#: ../../include/items.php:3849 ../../mod/group.php:38 ../../mod/group.php:140
 msgid "Collection not found."
 msgstr "A coleção não foi encontrada."
 
-#: ../../include/items.php:3824
+#: ../../include/items.php:3864
 msgid "Collection is empty."
 msgstr "A coleção está vazia."
 
-#: ../../include/items.php:3831
+#: ../../include/items.php:3871
 #, php-format
 msgid "Collection: %s"
 msgstr "Coleção: %s"
 
-#: ../../include/items.php:3842
+#: ../../include/items.php:3882
 #, php-format
 msgid "Connection: %s"
 msgstr "Conexão: %s"
 
-#: ../../include/items.php:3845
+#: ../../include/items.php:3885
 msgid "Connection not found."
 msgstr "A conexão não foi encontrada."
 
@@ -3410,2790 +3412,2823 @@ msgid ""
 "http://getzot.com"
 msgstr "Para maiores informações sobre o Projeto Red Matrix e porque ele tem potencial para mudar a Internet como a conhecemos, por favor visite: http://getzot.com"
 
-#: ../../mod/item.php:145
-msgid "Unable to locate original post."
-msgstr "Não foi possível localizar a publicação original."
-
-#: ../../mod/item.php:346
-msgid "Empty post discarded."
-msgstr "A publicação em branco foi descartada."
+#: ../../mod/settings.php:71
+msgid "Name is required"
+msgstr "O nome é obrigatório"
 
-#: ../../mod/item.php:388
-msgid "Executable content type not permitted to this channel."
-msgstr "Conteúdo de tipo executável não permitido para este canal."
+#: ../../mod/settings.php:75
+msgid "Key and Secret are required"
+msgstr "A chave e o segredo são obrigatórios"
 
-#: ../../mod/item.php:835
-msgid "System error. Post not saved."
-msgstr "Erro no sistema. A publicação não foi salva."
+#: ../../mod/settings.php:79 ../../mod/settings.php:542
+msgid "Update"
+msgstr "Atualizar"
 
-#: ../../mod/item.php:1102 ../../mod/wall_upload.php:41
-msgid "Wall Photos"
-msgstr "Fotos do mural"
+#: ../../mod/settings.php:195
+msgid "Passwords do not match. Password unchanged."
+msgstr "As senhas não correspondem. A senha não foi modificada."
 
-#: ../../mod/item.php:1182
-#, php-format
-msgid "You have reached your limit of %1$.0f top level posts."
-msgstr "Você atingiu o seu limite de %1$.0f publicações de novos tópicos."
+#: ../../mod/settings.php:199
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Não é permitido uma senha em branco. A senha não foi modificada."
 
-#: ../../mod/item.php:1188
-#, php-format
-msgid "You have reached your limit of %1$.0f webpages."
-msgstr "Você atingiu o seu limite de %1$.0f páginas web."
+#: ../../mod/settings.php:212
+msgid "Password changed."
+msgstr "A senha foi modificada."
 
-#: ../../mod/menu.php:21
-msgid "Menu updated."
-msgstr "Menu atualizado."
+#: ../../mod/settings.php:214
+msgid "Password update failed. Please try again."
+msgstr "Não foi possível atualizar a senha. Por favor, tente novamente."
 
-#: ../../mod/menu.php:25
-msgid "Unable to update menu."
-msgstr "Não foi possível atualizar o menu."
+#: ../../mod/settings.php:228
+msgid "Not valid email."
+msgstr "Não é um e-mail válido"
 
-#: ../../mod/menu.php:30
-msgid "Menu created."
-msgstr "Menu criado."
+#: ../../mod/settings.php:231
+msgid "Protected email address. Cannot change to that email."
+msgstr "Endereço de e-mail protegido. Não é possível mudar para esse e-mail."
 
-#: ../../mod/menu.php:34
-msgid "Unable to create menu."
-msgstr "Não foi possível criar o menu."
+#: ../../mod/settings.php:240
+msgid "System failure storing new email. Please try again."
+msgstr "Falha do sistema ao armazenar novo e-mail. Por favor, tente novamente."
 
-#: ../../mod/menu.php:57
-msgid "Manage Menus"
-msgstr "Administrar menus"
+#: ../../mod/settings.php:444
+msgid "Settings updated."
+msgstr "As configurações foram atualizadas."
 
-#: ../../mod/menu.php:60
-msgid "Drop"
-msgstr "Descartar"
+#: ../../mod/settings.php:515 ../../mod/settings.php:541
+#: ../../mod/settings.php:577
+msgid "Add application"
+msgstr "Adicionar aplicação"
 
-#: ../../mod/menu.php:62
-msgid "Create a new menu"
-msgstr "Criar um novo menu"
+#: ../../mod/settings.php:518 ../../mod/settings.php:544
+msgid "Name"
+msgstr "Nome"
 
-#: ../../mod/menu.php:63
-msgid "Delete this menu"
-msgstr "Deletar este menu"
+#: ../../mod/settings.php:518
+msgid "Name of application"
+msgstr "Nome da aplicação"
 
-#: ../../mod/menu.php:64 ../../mod/menu.php:109
-msgid "Edit menu contents"
-msgstr "Editar os conteúdos do menu"
+#: ../../mod/settings.php:519 ../../mod/settings.php:545
+msgid "Consumer Key"
+msgstr "Chave de consumidor"
 
-#: ../../mod/menu.php:65
-msgid "Edit this menu"
-msgstr "Editar este menu"
+#: ../../mod/settings.php:519 ../../mod/settings.php:520
+msgid "Automatically generated - change if desired. Max length 20"
+msgstr "Gerado automaticamente - troque se desejável. Comprimento máximo 20"
 
-#: ../../mod/menu.php:80
-msgid "New Menu"
-msgstr "Novo menu"
+#: ../../mod/settings.php:520 ../../mod/settings.php:546
+msgid "Consumer Secret"
+msgstr "Segredo de consumidor"
 
-#: ../../mod/menu.php:81 ../../mod/menu.php:110
-msgid "Menu name"
-msgstr "Nome do menu"
+#: ../../mod/settings.php:521 ../../mod/settings.php:547
+msgid "Redirect"
+msgstr "Redirecionamento"
 
-#: ../../mod/menu.php:81 ../../mod/menu.php:110
-msgid "Must be unique, only seen by you"
-msgstr "Deve ser único, exibido somente para você"
+#: ../../mod/settings.php:521
+msgid ""
+"Redirect URI - leave blank unless your application specifically requires "
+"this"
+msgstr "URI de redirecionamento - deixe em branco, a não ser que sua aplicação especificamente requeira isso"
 
-#: ../../mod/menu.php:82 ../../mod/menu.php:111
-msgid "Menu title"
-msgstr "Título do menu"
+#: ../../mod/settings.php:522 ../../mod/settings.php:548
+msgid "Icon url"
+msgstr "URL do ícone"
 
-#: ../../mod/menu.php:82 ../../mod/menu.php:111
-msgid "Menu title as seen by others"
-msgstr "Título do menu quando visto por outros"
+#: ../../mod/settings.php:522
+msgid "Optional"
+msgstr "Opcional"
 
-#: ../../mod/menu.php:83 ../../mod/menu.php:112
-msgid "Allow bookmarks"
-msgstr "Habilitar links guardados"
+#: ../../mod/settings.php:533
+msgid "You can't edit this application."
+msgstr "Você não pode editar esta aplicação."
 
-#: ../../mod/menu.php:83 ../../mod/menu.php:112
-msgid "Menu may be used to store saved bookmarks"
-msgstr "O menu pode ser utilizado para armazenar links guardados"
+#: ../../mod/settings.php:576
+msgid "Connected Apps"
+msgstr "Aplicações conectadas"
 
-#: ../../mod/menu.php:84 ../../mod/mitem.php:142 ../../mod/new_channel.php:117
-msgid "Create"
-msgstr "Criar"
+#: ../../mod/settings.php:580
+msgid "Client key starts with"
+msgstr "Chave do cliente começa com"
 
-#: ../../mod/menu.php:92 ../../mod/mitem.php:14
-msgid "Menu not found."
-msgstr "O menu não foi encontrado."
+#: ../../mod/settings.php:581
+msgid "No name"
+msgstr "Sem nome"
 
-#: ../../mod/menu.php:98
-msgid "Menu deleted."
-msgstr "Menu deletado."
+#: ../../mod/settings.php:582
+msgid "Remove authorization"
+msgstr "Remover autorização"
 
-#: ../../mod/menu.php:100
-msgid "Menu could not be deleted."
-msgstr "Não foi possível deletar o menu."
+#: ../../mod/settings.php:593
+msgid "No feature settings configured"
+msgstr "Não foi definida nenhuma configuração do recurso"
 
-#: ../../mod/menu.php:106
-msgid "Edit Menu"
-msgstr "Editar menu"
+#: ../../mod/settings.php:601
+msgid "Feature Settings"
+msgstr "Configurações do recurso"
 
-#: ../../mod/menu.php:108
-msgid "Add or remove entries to this menu"
-msgstr "Adicionar ou remover entradas deste menu"
+#: ../../mod/settings.php:624
+msgid "Account Settings"
+msgstr "Configurações da conta"
 
-#: ../../mod/menu.php:114 ../../mod/mitem.php:186
-msgid "Modify"
-msgstr "Modificar"
+#: ../../mod/settings.php:625
+msgid "Password Settings"
+msgstr "Configurações da senha"
 
-#: ../../mod/menu.php:120 ../../mod/mitem.php:78 ../../mod/xchan.php:27
-#: ../../mod/dirprofile.php:181
-msgid "Not found."
-msgstr "Não encontrado."
+#: ../../mod/settings.php:626
+msgid "New Password:"
+msgstr "Nova senha:"
 
-#: ../../mod/webpages.php:121 ../../mod/layouts.php:105
-#: ../../mod/blocks.php:96
-msgid "View"
-msgstr "Ver"
+#: ../../mod/settings.php:627
+msgid "Confirm:"
+msgstr "Confirme:"
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Autorizar a conexão com a aplicação"
+#: ../../mod/settings.php:627
+msgid "Leave password fields blank unless changing"
+msgstr "Deixe os campos de senha em branco, a não ser que você queira alterá-la"
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Volte para a sua aplicação e digite este código de segurança:"
+#: ../../mod/settings.php:629 ../../mod/settings.php:938
+msgid "Email Address:"
+msgstr "Endereço de e-mail:"
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Por favor, autentique-se para continuar."
+#: ../../mod/settings.php:630
+msgid "Remove Account"
+msgstr "Remover conta"
 
-#: ../../mod/api.php:104
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?"
+#: ../../mod/settings.php:631
+msgid "Warning: This action is permanent and cannot be reversed."
+msgstr "Atenção: Esta ação é permanente e não pode ser revertida."
 
-#: ../../mod/api.php:105 ../../mod/profiles.php:483 ../../mod/settings.php:878
-#: ../../mod/settings.php:883
-msgid "Yes"
-msgstr "Sim"
+#: ../../mod/settings.php:647
+msgid "Off"
+msgstr "Desligado"
 
-#: ../../mod/api.php:106 ../../mod/profiles.php:484 ../../mod/settings.php:878
-#: ../../mod/settings.php:883
-msgid "No"
-msgstr "Não"
+#: ../../mod/settings.php:647
+msgid "On"
+msgstr "Ligado"
 
-#: ../../mod/apps.php:8
-msgid "No installed applications."
-msgstr "Não existe nenhuma aplicação instalada."
+#: ../../mod/settings.php:654
+msgid "Additional Features"
+msgstr "Recursos adicionais"
 
-#: ../../mod/apps.php:13
-msgid "Applications"
-msgstr "Aplicações"
+#: ../../mod/settings.php:679
+msgid "Connector Settings"
+msgstr "Configurações do conector"
 
-#: ../../mod/rpost.php:86 ../../mod/editpost.php:42
-msgid "Edit post"
-msgstr "Editar a publicação"
+#: ../../mod/settings.php:709 ../../mod/admin.php:379
+msgid "No special theme for mobile devices"
+msgstr "Sem tema especial para aparelhos móveis"
 
-#: ../../mod/cloud.php:112
-msgid "Red Matrix - Guests: Username: {your email address}, Password: +++"
-msgstr "Red Matrix - Visitantes: Usuário: {seu endereço de e-mail}, Senha: +++"
+#: ../../mod/settings.php:750
+msgid "Display Settings"
+msgstr "Configurações de exibição"
 
-#: ../../mod/bookmarks.php:38
-msgid "Bookmark added"
-msgstr "O link foi guardado"
+#: ../../mod/settings.php:756
+msgid "Display Theme:"
+msgstr "Tema do perfil:"
 
-#: ../../mod/bookmarks.php:53
-msgid "My Bookmarks"
-msgstr "Meus links guardados"
+#: ../../mod/settings.php:757
+msgid "Mobile Theme:"
+msgstr "Tema móvel:"
 
-#: ../../mod/bookmarks.php:64
-msgid "My Connections Bookmarks"
-msgstr "Links guardados das minhas conexões"
+#: ../../mod/settings.php:758
+msgid "Update browser every xx seconds"
+msgstr "Atualizar navegador a cada xx segundos"
 
-#: ../../mod/subthread.php:105
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s está acompanhando %3$s de %2$s"
+#: ../../mod/settings.php:758
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Mínimo de 10 segundos, sem máximo"
 
-#: ../../mod/update_network.php:23 ../../mod/update_channel.php:43
-#: ../../mod/update_search.php:46 ../../mod/update_display.php:25
-#: ../../mod/update_community.php:18
-msgid "[Embedded content - reload page to view]"
-msgstr "[Conteúdo incorporado - recarregue a página para ver]"
+#: ../../mod/settings.php:759
+msgid "Maximum number of conversations to load at any time:"
+msgstr "Número máximo permitido de conversas carregadas:"
 
-#: ../../mod/chanview.php:77 ../../mod/home.php:50 ../../mod/page.php:47
-#: ../../mod/wall_upload.php:35
-msgid "Channel not found."
-msgstr "O canal não foi encontrado."
+#: ../../mod/settings.php:759
+msgid "Maximum of 100 items"
+msgstr "Máximo de 100 itens"
 
-#: ../../mod/chanview.php:93
-msgid "toggle full screen mode"
-msgstr "alternar o mode de tela inteira"
+#: ../../mod/settings.php:760
+msgid "Don't show emoticons"
+msgstr "Não exibir emoticons"
 
-#: ../../mod/tagger.php:98
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s etiquetou %3$s de %2$s com %4$s"
+#: ../../mod/settings.php:761
+msgid "Do not view remote profiles in frames"
+msgstr "Não exibir perfis remotos em frames"
 
-#: ../../mod/chat.php:18 ../../mod/channel.php:25
-msgid "You must be logged in to see this page."
-msgstr "Você precisa estar autenticado para ver esta página."
+#: ../../mod/settings.php:761
+msgid "By default open in a sub-window of your own site"
+msgstr "Por padrão, abrir em uma sub-janela do seu próprio site"
 
-#: ../../mod/chat.php:163
-msgid "Leave Room"
-msgstr "Sair da sala"
+#: ../../mod/settings.php:796
+msgid "Nobody except yourself"
+msgstr "Ninguém exceto você mesmo"
 
-#: ../../mod/chat.php:164
-msgid "I am away right now"
-msgstr "Eu estou ausente no momento"
+#: ../../mod/settings.php:797
+msgid "Only those you specifically allow"
+msgstr "Apenas quem você der permissão"
 
-#: ../../mod/chat.php:165
-msgid "I am online"
-msgstr "Eu estou online"
+#: ../../mod/settings.php:798
+msgid "Anybody in your address book"
+msgstr "Qualquer um nos seus contatos"
 
-#: ../../mod/chat.php:189 ../../mod/chat.php:209
-msgid "New Chatroom"
-msgstr "Nova sala de bate-papo"
+#: ../../mod/settings.php:799
+msgid "Anybody on this website"
+msgstr "Qualquer um neste site"
 
-#: ../../mod/chat.php:190
-msgid "Chatroom Name"
-msgstr "Nome da sala de bate-papo"
+#: ../../mod/settings.php:800
+msgid "Anybody in this network"
+msgstr "Qualquer um nesta rede"
 
-#: ../../mod/chat.php:205
-#, php-format
-msgid "%1$s's Chatrooms"
-msgstr "Salas de bate-papo de %1$s"
+#: ../../mod/settings.php:801
+msgid "Anybody authenticated"
+msgstr "Qualquer um autenticado"
 
-#: ../../mod/viewconnections.php:17 ../../mod/search.php:13
-#: ../../mod/directory.php:15 ../../mod/display.php:9
-#: ../../mod/community.php:18 ../../mod/dirprofile.php:9
-#: ../../mod/photos.php:443
-msgid "Public access denied."
-msgstr "Acesso público negado."
+#: ../../mod/settings.php:802
+msgid "Anybody on the internet"
+msgstr "Qualquer um na internet"
 
-#: ../../mod/viewconnections.php:43
-msgid "No connections."
-msgstr "Nenhuma conexão."
+#: ../../mod/settings.php:879
+msgid "Publish your default profile in the network directory"
+msgstr "Publicar seu perfil padrão no diretório da rede?"
 
-#: ../../mod/viewconnections.php:55
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Ver o perfil de %s [%s]"
+#: ../../mod/settings.php:879 ../../mod/settings.php:884
+#: ../../mod/settings.php:955 ../../mod/api.php:106 ../../mod/profiles.php:484
+msgid "No"
+msgstr "Não"
 
-#: ../../mod/viewconnections.php:70
-msgid "View Connnections"
-msgstr "Ver conexões"
+#: ../../mod/settings.php:879 ../../mod/settings.php:884
+#: ../../mod/settings.php:955 ../../mod/api.php:105 ../../mod/profiles.php:483
+msgid "Yes"
+msgstr "Sim"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "A etiqueta foi removida"
+#: ../../mod/settings.php:884
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Permitir sugerir você como amigo potencial para outros membros?"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Remover a etiqueta de item"
+#: ../../mod/settings.php:888 ../../mod/profile_photo.php:288
+msgid "or"
+msgstr "ou"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Selecione uma etiqueta para remover: "
+#: ../../mod/settings.php:893
+msgid "Your channel address is"
+msgstr "O endereço do seu canal é"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 ../../mod/photos.php:909
-msgid "Remove"
-msgstr "Remover"
+#: ../../mod/settings.php:927
+msgid "Channel Settings"
+msgstr "Configurações do canal"
 
-#: ../../mod/connect.php:55 ../../mod/connect.php:103
-msgid "Continue"
-msgstr "Continuar"
+#: ../../mod/settings.php:936
+msgid "Basic Settings"
+msgstr "Configurações básicas"
 
-#: ../../mod/connect.php:84
-msgid "Premium Channel Setup"
-msgstr "Configuração de canal premium"
+#: ../../mod/settings.php:939
+msgid "Your Timezone:"
+msgstr "Seu fuso horário:"
 
-#: ../../mod/connect.php:86
-msgid "Enable premium channel connection restrictions"
-msgstr "Habilitar restrições de canal premium para conexão"
+#: ../../mod/settings.php:940
+msgid "Default Post Location:"
+msgstr "Localização padrão de suas publicações:"
 
-#: ../../mod/connect.php:87
-msgid ""
-"Please enter your restrictions or conditions, such as paypal receipt, usage "
-"guidelines, etc."
-msgstr "Por favor, insira suas restrições ou condições, como um recibo de depósito, normas de conduta, etc."
+#: ../../mod/settings.php:941
+msgid "Use Browser Location:"
+msgstr "Usar localizador do navegador:"
 
-#: ../../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 "Este canal pode exigir passos adicionais ou compreensão das seguintes condições antes de conectar:"
+#: ../../mod/settings.php:943
+msgid "Adult Content"
+msgstr "Conteúdo adulto"
 
-#: ../../mod/connect.php:90
+#: ../../mod/settings.php:943
 msgid ""
-"Potential connections will then see the following text before proceeding:"
-msgstr "Tentativas de conexões verão então o seguinte texto antes de prosseguir:"
+"This channel frequently or regularly publishes adult content. (Please tag "
+"any adult material and/or nudity with #NSFW)"
+msgstr "Este canal frequentemente ou regularmente publica conteúdo adulto. (Por favor marque qualquer material adulto e/ou nudez com #NSFW)"
 
-#: ../../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 "Ao prosseguir, eu certifico que cumpri todas as instruções exibidas nesta página."
+#: ../../mod/settings.php:945
+msgid "Security and Privacy Settings"
+msgstr "Configurações de segurança e privacidade"
 
-#: ../../mod/connect.php:100
-msgid "(No specific instructions have been provided by the channel owner.)"
-msgstr "(Nenhuma instrução foi especificada pelo dono do canal.)"
+#: ../../mod/settings.php:947
+msgid "Hide my online presence"
+msgstr "Esconda minha presença online"
 
-#: ../../mod/connect.php:108
-msgid "Restricted or Premium Channel"
-msgstr "Canal restrito ou premium"
+#: ../../mod/settings.php:947
+msgid "Prevents displaying in your profile that you are online"
+msgstr "Previne exibir em seu perfil que você está online"
 
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr "Nenhum potencial delegado para páginas localizado."
+#: ../../mod/settings.php:949
+msgid "Simple Privacy Settings:"
+msgstr "Configurações de privacidade simples:"
 
-#: ../../mod/delegate.php:121
-msgid "Delegate Page Management"
-msgstr "Delegar administração de página"
+#: ../../mod/settings.php:950
+msgid ""
+"Very Public - <em>extremely permissive (should be used with caution)</em>"
+msgstr "Muito público - <em>extremamente permissivo (deve ser usado com cuidado)</em>"
 
-#: ../../mod/delegate.php:123
+#: ../../mod/settings.php:951
 msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr "Delegados podem administrar todos os aspectos desta conta/página exceto pelas configurações básicas da conta. Por favor, não delegue sua conta pessoal para alguém que você não confie completamente."
+"Typical - <em>default public, privacy when desired (similar to social "
+"network permissions but with improved privacy)</em>"
+msgstr "Típico - <em>público por padrão, privado quando desejável (similar às permissões de redes sociais, mas com melhor privacidade)</em>"
 
-#: ../../mod/delegate.php:124
-msgid "Existing Page Managers"
-msgstr "Atuais administradores da página"
+#: ../../mod/settings.php:952
+msgid "Private - <em>default private, never open or public</em>"
+msgstr "Privado - <em>privado por padrão, nunca aberto ou público</em>"
 
-#: ../../mod/delegate.php:126
-msgid "Existing Page Delegates"
-msgstr "Atuais delegados da página"
+#: ../../mod/settings.php:953
+msgid "Blocked - <em>default blocked to/from everybody</em>"
+msgstr "Bloqueado - <em>por padrão bloquado de/para todos</em>"
 
-#: ../../mod/delegate.php:128
-msgid "Potential Delegates"
-msgstr "Potenciais delegados"
+#: ../../mod/settings.php:955
+msgid "Allow others to tag your posts"
+msgstr "Permitir que outros etiquetem suas publicações"
 
-#: ../../mod/delegate.php:131
-msgid "Add"
-msgstr "Adicionar"
+#: ../../mod/settings.php:955
+msgid ""
+"Often used by the community to retro-actively flag inappropriate content"
+msgstr "Frequentemente utilizado pela comunidade para retroativamente sinalizar conteúdo inapropriado"
 
-#: ../../mod/delegate.php:132
-msgid "No entries."
-msgstr "Sem entradas."
+#: ../../mod/settings.php:957
+msgid "Advanced Privacy Settings"
+msgstr "Configurações de privacidade avançadas"
 
-#: ../../mod/chatsvc.php:102
-msgid "Away"
-msgstr "Ausente"
+#: ../../mod/settings.php:959
+msgid "Maximum Friend Requests/Day:"
+msgstr "Número máximo de requisições de amizade por dia:"
 
-#: ../../mod/chatsvc.php:106
-msgid "Online"
-msgstr "Online"
+#: ../../mod/settings.php:959
+msgid "May reduce spam activity"
+msgstr "Pode reduzir a frequência de spam"
 
-#: ../../mod/attach.php:9
-msgid "Item not available."
-msgstr "O item não está disponível."
+#: ../../mod/settings.php:960
+msgid "Default Post Permissions"
+msgstr "Permissões padrão de publicação"
 
-#: ../../mod/mitem.php:47
-msgid "Menu element updated."
-msgstr "O elemento de menu foi atualizado."
+#: ../../mod/settings.php:961 ../../mod/mitem.php:134 ../../mod/mitem.php:177
+msgid "(click to open/close)"
+msgstr "(clique para abrir/fechar)"
 
-#: ../../mod/mitem.php:51
-msgid "Unable to update menu element."
-msgstr "Não foi possível atualizar o elemento de menu."
+#: ../../mod/settings.php:972
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Máximo número de mensagens privadas por dia de pessoas desconhecidas:"
 
-#: ../../mod/mitem.php:57
-msgid "Menu element added."
-msgstr "O elemento de menu foi adicionado."
+#: ../../mod/settings.php:972
+msgid "Useful to reduce spamming"
+msgstr "Útil para reduzir a frequência de spam"
 
-#: ../../mod/mitem.php:61
-msgid "Unable to add menu element."
-msgstr "Não foi possível adicionar o elemento de menu."
+#: ../../mod/settings.php:975
+msgid "Notification Settings"
+msgstr "Configurações de notificação"
 
-#: ../../mod/mitem.php:96
-msgid "Manage Menu Elements"
-msgstr "Administrar elementos de menu"
+#: ../../mod/settings.php:976
+msgid "By default post a status message when:"
+msgstr "Por padrão, publicar uma mensagem de status quando:"
 
-#: ../../mod/mitem.php:99
-msgid "Edit menu"
-msgstr "Editar menu"
+#: ../../mod/settings.php:977
+msgid "accepting a friend request"
+msgstr "aceitar um pedido de amizade"
 
-#: ../../mod/mitem.php:102
-msgid "Edit element"
-msgstr "Editar elemento"
+#: ../../mod/settings.php:978
+msgid "joining a forum/community"
+msgstr "associar-se a um fórum/comunidade"
 
-#: ../../mod/mitem.php:103
-msgid "Drop element"
-msgstr "Descartar elemento"
+#: ../../mod/settings.php:979
+msgid "making an <em>interesting</em> profile change"
+msgstr "modificar algo <em>interessante</em> em seu perfil"
 
-#: ../../mod/mitem.php:104
-msgid "New element"
-msgstr "Novo elemento"
+#: ../../mod/settings.php:980
+msgid "Send a notification email when:"
+msgstr "Enviar um e-mail de notificação quando:"
 
-#: ../../mod/mitem.php:105
-msgid "Edit this menu container"
-msgstr "Editar esta caixa de menu"
+#: ../../mod/settings.php:981
+msgid "You receive an introduction"
+msgstr "Você recebeu uma apresentação"
 
-#: ../../mod/mitem.php:106
-msgid "Add menu element"
-msgstr "Adicionar um elemento de menu"
+#: ../../mod/settings.php:982
+msgid "Your introductions are confirmed"
+msgstr "Suas solicitações forem confirmadas"
 
-#: ../../mod/mitem.php:107
-msgid "Delete this menu item"
-msgstr "Deleter este item de menu"
+#: ../../mod/settings.php:983
+msgid "Someone writes on your profile wall"
+msgstr "Alguém escrever no mural do seu perfil"
 
-#: ../../mod/mitem.php:108
-msgid "Edit this menu item"
-msgstr "Editar este item de menu"
+#: ../../mod/settings.php:984
+msgid "Someone writes a followup comment"
+msgstr "Alguém comentou a sua mensagem"
 
-#: ../../mod/mitem.php:131
-msgid "New Menu Element"
-msgstr "Novo elemento de menu"
+#: ../../mod/settings.php:985
+msgid "You receive a private message"
+msgstr "Você recebeu uma mensagem privada"
 
-#: ../../mod/mitem.php:133 ../../mod/mitem.php:176
-msgid "Menu Item Permissions"
-msgstr "Permissões do item do menu"
+#: ../../mod/settings.php:986
+msgid "You receive a friend suggestion"
+msgstr "Você recebe uma sugestão de amizade"
 
-#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:947
-msgid "(click to open/close)"
-msgstr "(clique para abrir/fechar)"
+#: ../../mod/settings.php:987
+msgid "You are tagged in a post"
+msgstr "Você é mencionado num post"
 
-#: ../../mod/mitem.php:136 ../../mod/mitem.php:180
-msgid "Link text"
-msgstr "Texto do link"
+#: ../../mod/settings.php:988
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Você foi cutucado/espetado/etc. numa publicação"
 
-#: ../../mod/mitem.php:137 ../../mod/mitem.php:181
-msgid "URL of link"
-msgstr "URL do link"
+#: ../../mod/settings.php:991
+msgid "Advanced Account/Page Type Settings"
+msgstr "Configurações avançadas de conta/tipo de página"
 
-#: ../../mod/mitem.php:138 ../../mod/mitem.php:182
-msgid "Use Red magic-auth if available"
-msgstr "Usar <em>Red magic-auth</em> se disponível"
+#: ../../mod/settings.php:992
+msgid "Change the behaviour of this account for special situations"
+msgstr "Mudar o comportamento dessa conta em situações especiais"
 
-#: ../../mod/mitem.php:139 ../../mod/mitem.php:183
-msgid "Open link in new window"
-msgstr "Abrir link em uma nova janela"
+#: ../../mod/settings.php:995
+msgid ""
+"Please enable expert mode (in <a href=\"settings/features\">Settings > "
+"Additional features</a>) to adjust!"
+msgstr "Por favor, habilite o modo expert (em <a href=\"settings/features\">Configurações > Recursos adicionais</a>) para ajustar!"
 
-#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
-msgid "Order in list"
-msgstr "Ordem na lista"
+#: ../../mod/settings.php:996
+msgid "Miscellaneous Settings"
+msgstr "Configurações miscelâneas"
 
-#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
-msgid "Higher numbers will sink to bottom of listing"
-msgstr "Números mais altos descem para o fim da lista"
+#: ../../mod/settings.php:998
+msgid "Personal menu to display in your channel pages"
+msgstr "Menu pessoal para exibir nas páginas dos seus canais"
 
-#: ../../mod/mitem.php:154
-msgid "Menu item not found."
-msgstr "O item de menu não foi encontrado."
+#: ../../mod/menu.php:21
+msgid "Menu updated."
+msgstr "Menu atualizado."
 
-#: ../../mod/mitem.php:163
-msgid "Menu item deleted."
-msgstr "O item de menu foi deletado."
+#: ../../mod/menu.php:25
+msgid "Unable to update menu."
+msgstr "Não foi possível atualizar o menu."
 
-#: ../../mod/mitem.php:165
-msgid "Menu item could not be deleted."
-msgstr "Não foi possível deletar o item de menu."
+#: ../../mod/menu.php:30
+msgid "Menu created."
+msgstr "Menu criado."
 
-#: ../../mod/mitem.php:174
-msgid "Edit Menu Element"
-msgstr "Editar elemento de menu"
+#: ../../mod/menu.php:34
+msgid "Unable to create menu."
+msgstr "Não foi possível criar o menu."
 
-#: ../../mod/profperm.php:29 ../../mod/profperm.php:58
-msgid "Invalid profile identifier."
-msgstr "Identificador de perfil inválido."
+#: ../../mod/menu.php:57
+msgid "Manage Menus"
+msgstr "Administrar menus"
 
-#: ../../mod/profperm.php:105
-msgid "Profile Visibility Editor"
-msgstr "Editor de visibilidade do perfil"
+#: ../../mod/menu.php:60
+msgid "Drop"
+msgstr "Descartar"
 
-#: ../../mod/profperm.php:109
-msgid "Click on a contact to add or remove."
-msgstr "Clique em um contato para adicionar ou remover."
+#: ../../mod/menu.php:62
+msgid "Create a new menu"
+msgstr "Criar um novo menu"
 
-#: ../../mod/profperm.php:118
-msgid "Visible To"
-msgstr "Visível para"
+#: ../../mod/menu.php:63
+msgid "Delete this menu"
+msgstr "Deletar este menu"
 
-#: ../../mod/profperm.php:134 ../../mod/connections.php:250
-msgid "All Connections"
-msgstr "Todas as conexões"
+#: ../../mod/menu.php:64 ../../mod/menu.php:109
+msgid "Edit menu contents"
+msgstr "Editar os conteúdos do menu"
 
-#: ../../mod/group.php:20
-msgid "Collection created."
-msgstr "Coleção criada"
+#: ../../mod/menu.php:65
+msgid "Edit this menu"
+msgstr "Editar este menu"
 
-#: ../../mod/group.php:26
-msgid "Could not create collection."
-msgstr "Não foi possível criar a coleção."
+#: ../../mod/menu.php:80
+msgid "New Menu"
+msgstr "Novo menu"
 
-#: ../../mod/group.php:54
-msgid "Collection updated."
-msgstr "Coleção atualizada"
+#: ../../mod/menu.php:81 ../../mod/menu.php:110
+msgid "Menu name"
+msgstr "Nome do menu"
 
-#: ../../mod/group.php:86
-msgid "Create a collection of channels."
-msgstr "Criar uma coleção de canais."
+#: ../../mod/menu.php:81 ../../mod/menu.php:110
+msgid "Must be unique, only seen by you"
+msgstr "Deve ser único, exibido somente para você"
 
-#: ../../mod/group.php:87 ../../mod/group.php:183
-msgid "Collection Name: "
-msgstr "Nome da coleção:"
+#: ../../mod/menu.php:82 ../../mod/menu.php:111
+msgid "Menu title"
+msgstr "Título do menu"
 
-#: ../../mod/group.php:89 ../../mod/group.php:186
-msgid "Members are visible to other channels"
-msgstr "Membros são visíveis para outros canais"
+#: ../../mod/menu.php:82 ../../mod/menu.php:111
+msgid "Menu title as seen by others"
+msgstr "Título do menu quando visto por outros"
 
-#: ../../mod/group.php:107
-msgid "Collection removed."
-msgstr "Coleção removida."
+#: ../../mod/menu.php:83 ../../mod/menu.php:112
+msgid "Allow bookmarks"
+msgstr "Habilitar links guardados"
 
-#: ../../mod/group.php:109
-msgid "Unable to remove collection."
-msgstr "Não foi possível remover a coleção."
+#: ../../mod/menu.php:83 ../../mod/menu.php:112
+msgid "Menu may be used to store saved bookmarks"
+msgstr "O menu pode ser utilizado para armazenar links guardados"
 
-#: ../../mod/group.php:182
-msgid "Collection Editor"
-msgstr "Editor de coleção"
+#: ../../mod/menu.php:84 ../../mod/mitem.php:142 ../../mod/new_channel.php:117
+msgid "Create"
+msgstr "Criar"
 
-#: ../../mod/group.php:196
-msgid "Members"
-msgstr "Membros"
+#: ../../mod/menu.php:92 ../../mod/mitem.php:14
+msgid "Menu not found."
+msgstr "O menu não foi encontrado."
 
-#: ../../mod/group.php:198
-msgid "All Connected Channels"
-msgstr "Todas os canais conectados"
+#: ../../mod/menu.php:98
+msgid "Menu deleted."
+msgstr "Menu deletado."
 
-#: ../../mod/group.php:231
-msgid "Click on a channel to add or remove."
-msgstr "Clique em um canal para adicionar ou remover."
+#: ../../mod/menu.php:100
+msgid "Menu could not be deleted."
+msgstr "Não foi possível deletar o menu."
 
-#: ../../mod/admin.php:48
-msgid "Theme settings updated."
-msgstr "As configurações de tema foram atualizadas."
+#: ../../mod/menu.php:106
+msgid "Edit Menu"
+msgstr "Editar menu"
 
-#: ../../mod/admin.php:88 ../../mod/admin.php:430
-msgid "Site"
-msgstr "Site"
+#: ../../mod/menu.php:108
+msgid "Add or remove entries to this menu"
+msgstr "Adicionar ou remover entradas deste menu"
 
-#: ../../mod/admin.php:89 ../../mod/admin.php:737 ../../mod/admin.php:749
-msgid "Users"
-msgstr "Usuários"
+#: ../../mod/menu.php:114 ../../mod/mitem.php:186
+msgid "Modify"
+msgstr "Modificar"
 
-#: ../../mod/admin.php:90 ../../mod/admin.php:835 ../../mod/admin.php:877
-msgid "Plugins"
-msgstr "Plugins"
+#: ../../mod/menu.php:120 ../../mod/mitem.php:78 ../../mod/xchan.php:27
+#: ../../mod/dirprofile.php:181
+msgid "Not found."
+msgstr "Não encontrado."
 
-#: ../../mod/admin.php:91 ../../mod/admin.php:1040 ../../mod/admin.php:1076
-msgid "Themes"
-msgstr "Temas"
+#: ../../mod/webpages.php:121 ../../mod/layouts.php:105
+#: ../../mod/blocks.php:96
+msgid "View"
+msgstr "Ver"
 
-#: ../../mod/admin.php:92 ../../mod/admin.php:529
-msgid "Server"
-msgstr "Servidor"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Autorizar a conexão com a aplicação"
 
-#: ../../mod/admin.php:93
-msgid "DB updates"
-msgstr "Atualizações do Banco de Dados"
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Volte para a sua aplicação e digite este código de segurança:"
 
-#: ../../mod/admin.php:107 ../../mod/admin.php:114 ../../mod/admin.php:1163
-msgid "Logs"
-msgstr "Logs"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Por favor, autentique-se para continuar."
 
-#: ../../mod/admin.php:113
-msgid "Plugin Features"
-msgstr "Recursos dos plugins"
+#: ../../mod/api.php:104
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?"
 
-#: ../../mod/admin.php:115
-msgid "User registrations waiting for confirmation"
-msgstr "Registros de usuário aguardando confirmação"
+#: ../../mod/apps.php:8
+msgid "No installed applications."
+msgstr "Não existe nenhuma aplicação instalada."
 
-#: ../../mod/admin.php:189
-msgid "Message queues"
-msgstr "Filas de mensagem"
+#: ../../mod/apps.php:13
+msgid "Applications"
+msgstr "Aplicações"
 
-#: ../../mod/admin.php:194 ../../mod/admin.php:429 ../../mod/admin.php:528
-#: ../../mod/admin.php:736 ../../mod/admin.php:834 ../../mod/admin.php:876
-#: ../../mod/admin.php:1039 ../../mod/admin.php:1075 ../../mod/admin.php:1162
-msgid "Administration"
-msgstr "Administração"
+#: ../../mod/rpost.php:86 ../../mod/editpost.php:42
+msgid "Edit post"
+msgstr "Editar a publicação"
 
-#: ../../mod/admin.php:195
-msgid "Summary"
-msgstr "Resumo"
+#: ../../mod/cloud.php:112
+msgid "Red Matrix - Guests: Username: {your email address}, Password: +++"
+msgstr "Red Matrix - Visitantes: Usuário: {seu endereço de e-mail}, Senha: +++"
 
-#: ../../mod/admin.php:197
-msgid "Registered users"
-msgstr "Usuários registrados"
+#: ../../mod/bookmarks.php:38
+msgid "Bookmark added"
+msgstr "O link foi guardado"
 
-#: ../../mod/admin.php:199 ../../mod/admin.php:532
-msgid "Pending registrations"
-msgstr "Registros pendentes"
+#: ../../mod/bookmarks.php:53
+msgid "My Bookmarks"
+msgstr "Meus links guardados"
 
-#: ../../mod/admin.php:200
-msgid "Version"
-msgstr "Versão"
+#: ../../mod/bookmarks.php:64
+msgid "My Connections Bookmarks"
+msgstr "Links guardados das minhas conexões"
 
-#: ../../mod/admin.php:202 ../../mod/admin.php:533
-msgid "Active plugins"
-msgstr "Plugins ativos"
+#: ../../mod/item.php:145
+msgid "Unable to locate original post."
+msgstr "Não foi possível localizar a publicação original."
 
-#: ../../mod/admin.php:350
-msgid "Site settings updated."
-msgstr "As configurações de site foram atualizadas."
+#: ../../mod/item.php:346
+msgid "Empty post discarded."
+msgstr "A publicação em branco foi descartada."
 
-#: ../../mod/admin.php:379 ../../mod/settings.php:709
-msgid "No special theme for mobile devices"
-msgstr "Sem tema especial para aparelhos móveis"
+#: ../../mod/item.php:388
+msgid "Executable content type not permitted to this channel."
+msgstr "Conteúdo de tipo executável não permitido para este canal."
 
-#: ../../mod/admin.php:381
-msgid "No special theme for accessibility"
-msgstr "Sem tema especial para acessibilidade"
+#: ../../mod/item.php:845
+msgid "System error. Post not saved."
+msgstr "Erro no sistema. A publicação não foi salva."
 
-#: ../../mod/admin.php:409
-msgid "Closed"
-msgstr "Fechado"
+#: ../../mod/item.php:1112 ../../mod/wall_upload.php:34
+msgid "Wall Photos"
+msgstr "Fotos do mural"
 
-#: ../../mod/admin.php:410
-msgid "Requires approval"
-msgstr "Requer aprovação"
+#: ../../mod/item.php:1192
+#, php-format
+msgid "You have reached your limit of %1$.0f top level posts."
+msgstr "Você atingiu o seu limite de %1$.0f publicações de novos tópicos."
 
-#: ../../mod/admin.php:411
-msgid "Open"
-msgstr "Aberto"
+#: ../../mod/item.php:1198
+#, php-format
+msgid "You have reached your limit of %1$.0f webpages."
+msgstr "Você atingiu o seu limite de %1$.0f páginas web."
 
-#: ../../mod/admin.php:416
-msgid "Private"
-msgstr "Privado"
+#: ../../mod/subthread.php:105
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s está acompanhando %3$s de %2$s"
 
-#: ../../mod/admin.php:417
-msgid "Paid Access"
-msgstr "Acesso pago"
+#: ../../mod/update_network.php:23 ../../mod/update_channel.php:43
+#: ../../mod/update_search.php:46 ../../mod/update_display.php:25
+#: ../../mod/update_community.php:18
+msgid "[Embedded content - reload page to view]"
+msgstr "[Conteúdo incorporado - recarregue a página para ver]"
 
-#: ../../mod/admin.php:418
-msgid "Free Access"
-msgstr "Acesso gratuito"
+#: ../../mod/chanview.php:77 ../../mod/home.php:50 ../../mod/page.php:47
+#: ../../mod/wall_upload.php:28
+msgid "Channel not found."
+msgstr "O canal não foi encontrado."
 
-#: ../../mod/admin.php:419
-msgid "Tiered Access"
-msgstr "Acesso em níveis"
+#: ../../mod/chanview.php:93
+msgid "toggle full screen mode"
+msgstr "alternar o mode de tela inteira"
 
-#: ../../mod/admin.php:432 ../../mod/register.php:189
-msgid "Registration"
-msgstr "Registro"
+#: ../../mod/tagger.php:98
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s etiquetou %3$s de %2$s com %4$s"
 
-#: ../../mod/admin.php:433
-msgid "File upload"
-msgstr "Carregamento de arquivos"
+#: ../../mod/chat.php:18 ../../mod/channel.php:25
+msgid "You must be logged in to see this page."
+msgstr "Você precisa estar autenticado para ver esta página."
 
-#: ../../mod/admin.php:434
-msgid "Policies"
-msgstr "Políticas"
+#: ../../mod/chat.php:163
+msgid "Leave Room"
+msgstr "Sair da sala"
 
-#: ../../mod/admin.php:435
-msgid "Advanced"
-msgstr "Avançado"
+#: ../../mod/chat.php:164
+msgid "I am away right now"
+msgstr "Eu estou ausente no momento"
 
-#: ../../mod/admin.php:439
-msgid "Site name"
-msgstr "Nome do site"
+#: ../../mod/chat.php:165
+msgid "I am online"
+msgstr "Eu estou online"
 
-#: ../../mod/admin.php:440
-msgid "Banner/Logo"
-msgstr "Cartaz/Logo"
+#: ../../mod/chat.php:189 ../../mod/chat.php:209
+msgid "New Chatroom"
+msgstr "Nova sala de bate-papo"
 
-#: ../../mod/admin.php:441
-msgid "Administrator Information"
-msgstr "Informações do Administrador"
+#: ../../mod/chat.php:190
+msgid "Chatroom Name"
+msgstr "Nome da sala de bate-papo"
 
-#: ../../mod/admin.php:441
-msgid ""
-"Contact information for site administrators.  Displayed on siteinfo page.  "
-"BBCode can be used here"
-msgstr "Informações de contato com administradores do site. Exibida na página siteinfo. BBCode pode ser usado aqui."
+#: ../../mod/chat.php:205
+#, php-format
+msgid "%1$s's Chatrooms"
+msgstr "Salas de bate-papo de %1$s"
 
-#: ../../mod/admin.php:442
-msgid "System language"
-msgstr "Idioma do sistema"
+#: ../../mod/viewconnections.php:17 ../../mod/search.php:13
+#: ../../mod/directory.php:15 ../../mod/display.php:9
+#: ../../mod/community.php:18 ../../mod/dirprofile.php:9
+#: ../../mod/photos.php:443
+msgid "Public access denied."
+msgstr "Acesso público negado."
 
-#: ../../mod/admin.php:443
-msgid "System theme"
-msgstr "Tema do sistema"
+#: ../../mod/viewconnections.php:43
+msgid "No connections."
+msgstr "Nenhuma conexão."
 
-#: ../../mod/admin.php:443
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Tema padrão do sistema - pode ser sobrescrito por perfis de usuário - <a href='#' id='cnftheme'>mudar configurações do tema</a>"
+#: ../../mod/viewconnections.php:55
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Ver o perfil de %s [%s]"
 
-#: ../../mod/admin.php:444
-msgid "Mobile system theme"
-msgstr "Tema do sistema móvel"
+#: ../../mod/viewconnections.php:70
+msgid "View Connnections"
+msgstr "Ver conexões"
 
-#: ../../mod/admin.php:444
-msgid "Theme for mobile devices"
-msgstr "Tema para dispositivos móveis"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "A etiqueta foi removida"
 
-#: ../../mod/admin.php:445
-msgid "Accessibility system theme"
-msgstr "Tema do sistema acessível"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Remover a etiqueta de item"
 
-#: ../../mod/admin.php:445
-msgid "Accessibility theme"
-msgstr "Tema acessível"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Selecione uma etiqueta para remover: "
 
-#: ../../mod/admin.php:446
-msgid "Channel to use for this website's static pages"
-msgstr "Canal a utilizar para as páginas estáticas desse website"
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 ../../mod/photos.php:909
+msgid "Remove"
+msgstr "Remover"
 
-#: ../../mod/admin.php:446
-msgid "Site Channel"
-msgstr "Canal do site"
+#: ../../mod/connect.php:55 ../../mod/connect.php:103
+msgid "Continue"
+msgstr "Continuar"
 
-#: ../../mod/admin.php:448
-msgid "Maximum image size"
-msgstr "Tamanho máximo de imagens"
+#: ../../mod/connect.php:84
+msgid "Premium Channel Setup"
+msgstr "Configuração de canal premium"
 
-#: ../../mod/admin.php:448
+#: ../../mod/connect.php:86
+msgid "Enable premium channel connection restrictions"
+msgstr "Habilitar restrições de canal premium para conexão"
+
+#: ../../mod/connect.php:87
 msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Tamanho máximo em bytes de imagens carregadas. O padrão é 0, significando sem limites."
+"Please enter your restrictions or conditions, such as paypal receipt, usage "
+"guidelines, etc."
+msgstr "Por favor, insira suas restrições ou condições, como um recibo de depósito, normas de conduta, etc."
 
-#: ../../mod/admin.php:449
-msgid "Register policy"
-msgstr "Política de registro"
+#: ../../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 "Este canal pode exigir passos adicionais ou compreensão das seguintes condições antes de conectar:"
 
-#: ../../mod/admin.php:450
-msgid "Access policy"
-msgstr "Política de acesso"
+#: ../../mod/connect.php:90
+msgid ""
+"Potential connections will then see the following text before proceeding:"
+msgstr "Tentativas de conexões verão então o seguinte texto antes de prosseguir:"
 
-#: ../../mod/admin.php:451
-msgid "Register text"
-msgstr "Texto de registro"
+#: ../../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 "Ao prosseguir, eu certifico que cumpri todas as instruções exibidas nesta página."
 
-#: ../../mod/admin.php:451
-msgid "Will be displayed prominently on the registration page."
-msgstr "Será exibido proeminentemente na página de registro."
+#: ../../mod/connect.php:100
+msgid "(No specific instructions have been provided by the channel owner.)"
+msgstr "(Nenhuma instrução foi especificada pelo dono do canal.)"
 
-#: ../../mod/admin.php:452
-msgid "Accounts abandoned after x days"
-msgstr "Contas abandonadas após x dias"
+#: ../../mod/connect.php:108
+msgid "Restricted or Premium Channel"
+msgstr "Canal restrito ou premium"
 
-#: ../../mod/admin.php:452
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Não gastará recursos do sistema coletando de sites externos para contas abandonadas. Use 0 para sem limite de tempo."
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr "Nenhum potencial delegado para páginas localizado."
 
-#: ../../mod/admin.php:453
-msgid "Allowed friend domains"
-msgstr "Domínios permitidos para amigos"
+#: ../../mod/delegate.php:121
+msgid "Delegate Page Management"
+msgstr "Delegar administração de página"
 
-#: ../../mod/admin.php:453
+#: ../../mod/delegate.php:123
 msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Lista, separada por vírgulas, de domínios permitidos para estabelecer amizades com este site. <em>Wildcards</em> são aceitas. Vazio para permitir qualquer domínio"
-
-#: ../../mod/admin.php:454
-msgid "Allowed email domains"
-msgstr "Domínios permitidos de e-mail"
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Delegados podem administrar todos os aspectos desta conta/página exceto pelas configurações básicas da conta. Por favor, não delegue sua conta pessoal para alguém que você não confie completamente."
 
-#: ../../mod/admin.php:454
-msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
-msgstr "Lista, separada por vírgulas, de domínios permitidos em endereços de e-mail para registros nesse site. <em>Wildcards</em> são aceitas. Vazio para permitir qualquer domínio"
+#: ../../mod/delegate.php:124
+msgid "Existing Page Managers"
+msgstr "Atuais administradores da página"
 
-#: ../../mod/admin.php:455
-msgid "Block public"
-msgstr "Bloquear público"
+#: ../../mod/delegate.php:126
+msgid "Existing Page Delegates"
+msgstr "Atuais delegados da página"
 
-#: ../../mod/admin.php:455
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Marque para bloquear o acesso público a todas as páginas pessoais que seriam públicas, a não ser que se esteja autenticado."
+#: ../../mod/delegate.php:128
+msgid "Potential Delegates"
+msgstr "Potenciais delegados"
 
-#: ../../mod/admin.php:456
-msgid "Force publish"
-msgstr "Forçar publicação"
+#: ../../mod/delegate.php:131
+msgid "Add"
+msgstr "Adicionar"
 
-#: ../../mod/admin.php:456
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Marque para forçar todos os perfis neste site a aparecerem listados no diretório do site."
+#: ../../mod/delegate.php:132
+msgid "No entries."
+msgstr "Sem entradas."
 
-#: ../../mod/admin.php:457
-msgid "No login on Homepage"
-msgstr "Sem formulário de autenticação na página inicial"
+#: ../../mod/chatsvc.php:102
+msgid "Away"
+msgstr "Ausente"
 
-#: ../../mod/admin.php:457
-msgid ""
-"Check to hide the login form from your sites homepage when visitors arrive "
-"who are not logged in (e.g. when you put the content of the homepage in via "
-"the site channel)."
-msgstr "Marque para esconder o formulário de autenticação da página inicial do seu site quando visitantes chegarem sem estar autenticados (e.g. quando você inclui os conteúdos da página inicial através do canal do site)."
+#: ../../mod/chatsvc.php:106
+msgid "Online"
+msgstr "Online"
 
-#: ../../mod/admin.php:459
-msgid "Proxy user"
-msgstr "Usuário do proxy"
+#: ../../mod/attach.php:9
+msgid "Item not available."
+msgstr "O item não está disponível."
 
-#: ../../mod/admin.php:460
-msgid "Proxy URL"
-msgstr "URL do proxy"
+#: ../../mod/mitem.php:47
+msgid "Menu element updated."
+msgstr "O elemento de menu foi atualizado."
 
-#: ../../mod/admin.php:461
-msgid "Network timeout"
-msgstr "Timeout da rede"
+#: ../../mod/mitem.php:51
+msgid "Unable to update menu element."
+msgstr "Não foi possível atualizar o elemento de menu."
 
-#: ../../mod/admin.php:461
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Valor em segundos. Use 0 para ilimitado (não recomendado)."
+#: ../../mod/mitem.php:57
+msgid "Menu element added."
+msgstr "O elemento de menu foi adicionado."
 
-#: ../../mod/admin.php:462
-msgid "Delivery interval"
-msgstr "Intervalo de entrega"
+#: ../../mod/mitem.php:61
+msgid "Unable to add menu element."
+msgstr "Não foi possível adicionar o elemento de menu."
 
-#: ../../mod/admin.php:462
-msgid ""
-"Delay background delivery processes by this many seconds to reduce system "
-"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
-"for large dedicated servers."
-msgstr "Atrase os processos de entrega em segundo plano por este número de segundos para reduzir a carga do sistema. Recomendado: 4-5 para hosts compartilhados, 2-3 para servidores virtuais privados. 0-1 para grandes servidores dedicados."
+#: ../../mod/mitem.php:96
+msgid "Manage Menu Elements"
+msgstr "Administrar elementos de menu"
 
-#: ../../mod/admin.php:463
-msgid "Poll interval"
-msgstr "Intervalo de coleta"
+#: ../../mod/mitem.php:99
+msgid "Edit menu"
+msgstr "Editar menu"
 
-#: ../../mod/admin.php:463
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "Atrase os processos de coleta em segundo plano por este número de segundos para reduzir a carga do sistema. Se 0, use o intervalo de entrega."
+#: ../../mod/mitem.php:102
+msgid "Edit element"
+msgstr "Editar elemento"
 
-#: ../../mod/admin.php:464
-msgid "Maximum Load Average"
-msgstr "Carga média máxima"
+#: ../../mod/mitem.php:103
+msgid "Drop element"
+msgstr "Descartar elemento"
 
-#: ../../mod/admin.php:464
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Carga máxima do sistema antes de adiar processos de entrega e coleta - padrão 50."
+#: ../../mod/mitem.php:104
+msgid "New element"
+msgstr "Novo elemento"
 
-#: ../../mod/admin.php:520
-msgid "No server found"
-msgstr "Nenhum servidor foi encontrado"
-
-#: ../../mod/admin.php:527 ../../mod/admin.php:750
-msgid "ID"
-msgstr "ID"
+#: ../../mod/mitem.php:105
+msgid "Edit this menu container"
+msgstr "Editar esta caixa de menu"
 
-#: ../../mod/admin.php:527
-msgid "for channel"
-msgstr "para o canal"
+#: ../../mod/mitem.php:106
+msgid "Add menu element"
+msgstr "Adicionar um elemento de menu"
 
-#: ../../mod/admin.php:527
-msgid "on server"
-msgstr "no servidor"
+#: ../../mod/mitem.php:107
+msgid "Delete this menu item"
+msgstr "Deleter este item de menu"
 
-#: ../../mod/admin.php:527
-msgid "Status"
-msgstr "Status"
+#: ../../mod/mitem.php:108
+msgid "Edit this menu item"
+msgstr "Editar este item de menu"
 
-#: ../../mod/admin.php:548
-msgid "Update has been marked successful"
-msgstr "A atualização foi designada bem sucedida"
+#: ../../mod/mitem.php:131
+msgid "New Menu Element"
+msgstr "Novo elemento de menu"
 
-#: ../../mod/admin.php:558
-#, php-format
-msgid "Executing %s failed. Check system logs."
-msgstr "Execução de %s falhou. Verifique os logs do sistema."
+#: ../../mod/mitem.php:133 ../../mod/mitem.php:176
+msgid "Menu Item Permissions"
+msgstr "Permissões do item do menu"
 
-#: ../../mod/admin.php:561
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "A atualização %s foi aplicada com sucesso."
+#: ../../mod/mitem.php:136 ../../mod/mitem.php:180
+msgid "Link text"
+msgstr "Texto do link"
 
-#: ../../mod/admin.php:565
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "A atualização %s não retornou um status. Situação incerta quando ao seu sucesso."
+#: ../../mod/mitem.php:137 ../../mod/mitem.php:181
+msgid "URL of link"
+msgstr "URL do link"
 
-#: ../../mod/admin.php:568
-#, php-format
-msgid "Update function %s could not be found."
-msgstr "A função de atualização %s não foi encontrada."
+#: ../../mod/mitem.php:138 ../../mod/mitem.php:182
+msgid "Use Red magic-auth if available"
+msgstr "Usar <em>Red magic-auth</em> se disponível"
 
-#: ../../mod/admin.php:583
-msgid "No failed updates."
-msgstr "Nenhuma falha nas atualizações."
+#: ../../mod/mitem.php:139 ../../mod/mitem.php:183
+msgid "Open link in new window"
+msgstr "Abrir link em uma nova janela"
 
-#: ../../mod/admin.php:587
-msgid "Failed Updates"
-msgstr "Falha nas atualizações"
+#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
+msgid "Order in list"
+msgstr "Ordem na lista"
 
-#: ../../mod/admin.php:589
-msgid "Mark success (if update was manually applied)"
-msgstr "Marque sucesso (se a atualização foi aplicada manualmente)"
+#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
+msgid "Higher numbers will sink to bottom of listing"
+msgstr "Números mais altos descem para o fim da lista"
 
-#: ../../mod/admin.php:590
-msgid "Attempt to execute this update step automatically"
-msgstr "Tente executar este passo da atualização automaticamente"
+#: ../../mod/mitem.php:154
+msgid "Menu item not found."
+msgstr "O item de menu não foi encontrado."
 
-#: ../../mod/admin.php:616
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s usuário foi bloqueado/desbloqueado"
-msgstr[1] "%s usuários foram bloqueados/desbloqueados"
+#: ../../mod/mitem.php:163
+msgid "Menu item deleted."
+msgstr "O item de menu foi deletado."
 
-#: ../../mod/admin.php:623
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s usuário foi deletado"
-msgstr[1] "%s usuários foram deletados"
+#: ../../mod/mitem.php:165
+msgid "Menu item could not be deleted."
+msgstr "Não foi possível deletar o item de menu."
 
-#: ../../mod/admin.php:654
-msgid "Account not found"
-msgstr "A conta não foi encontrada"
+#: ../../mod/mitem.php:174
+msgid "Edit Menu Element"
+msgstr "Editar elemento de menu"
 
-#: ../../mod/admin.php:665
-#, php-format
-msgid "User '%s' deleted"
-msgstr "O usuário/a '%s' foi deletado/a"
+#: ../../mod/profperm.php:29 ../../mod/profperm.php:58
+msgid "Invalid profile identifier."
+msgstr "Identificador de perfil inválido."
 
-#: ../../mod/admin.php:674
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "O usuário/a '%s' foi desbloqueado/a"
+#: ../../mod/profperm.php:105
+msgid "Profile Visibility Editor"
+msgstr "Editor de visibilidade do perfil"
 
-#: ../../mod/admin.php:674
-#, php-format
-msgid "User '%s' blocked"
-msgstr "O usuário/a '%s' foi bloqueado/a"
+#: ../../mod/profperm.php:109
+msgid "Click on a contact to add or remove."
+msgstr "Clique em um contato para adicionar ou remover."
 
-#: ../../mod/admin.php:739
-msgid "select all"
-msgstr "selecionar tudo"
+#: ../../mod/profperm.php:118
+msgid "Visible To"
+msgstr "Visível para"
 
-#: ../../mod/admin.php:740
-msgid "User registrations waiting for confirm"
-msgstr "Registros de usuário aguardando confirmação"
+#: ../../mod/profperm.php:134 ../../mod/connections.php:250
+msgid "All Connections"
+msgstr "Todas as conexões"
 
-#: ../../mod/admin.php:741
-msgid "Request date"
-msgstr "Data de requisição"
+#: ../../mod/group.php:20
+msgid "Collection created."
+msgstr "Coleção criada"
 
-#: ../../mod/admin.php:742
-msgid "No registrations."
-msgstr "Nenhum registro."
+#: ../../mod/group.php:26
+msgid "Could not create collection."
+msgstr "Não foi possível criar a coleção."
 
-#: ../../mod/admin.php:743
-msgid "Approve"
-msgstr "Aprovar"
+#: ../../mod/group.php:54
+msgid "Collection updated."
+msgstr "Coleção atualizada"
 
-#: ../../mod/admin.php:744
-msgid "Deny"
-msgstr "Negar"
+#: ../../mod/group.php:86
+msgid "Create a collection of channels."
+msgstr "Criar uma coleção de canais."
 
-#: ../../mod/admin.php:746 ../../mod/connedit.php:333
-#: ../../mod/connedit.php:475
-msgid "Block"
-msgstr "Bloquear"
+#: ../../mod/group.php:87 ../../mod/group.php:183
+msgid "Collection Name: "
+msgstr "Nome da coleção:"
 
-#: ../../mod/admin.php:747 ../../mod/connedit.php:333
-#: ../../mod/connedit.php:475
-msgid "Unblock"
-msgstr "Desbloquear"
+#: ../../mod/group.php:89 ../../mod/group.php:186
+msgid "Members are visible to other channels"
+msgstr "Membros são visíveis para outros canais"
 
-#: ../../mod/admin.php:750
-msgid "Register date"
-msgstr "Data de registro"
+#: ../../mod/group.php:107
+msgid "Collection removed."
+msgstr "Coleção removida."
 
-#: ../../mod/admin.php:750
-msgid "Last login"
-msgstr "Última autenticação"
+#: ../../mod/group.php:109
+msgid "Unable to remove collection."
+msgstr "Não foi possível remover a coleção."
 
-#: ../../mod/admin.php:750
-msgid "Expires"
-msgstr "Expira"
+#: ../../mod/group.php:182
+msgid "Collection Editor"
+msgstr "Editor de coleção"
 
-#: ../../mod/admin.php:750
-msgid "Service Class"
-msgstr "Classe de serviço"
+#: ../../mod/group.php:196
+msgid "Members"
+msgstr "Membros"
 
-#: ../../mod/admin.php:752
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Os usuários selecionados serão deletados!\\n\\nTudo o que esses usuários postaram neste site será permanentemente deletado!\\n\\nTem certeza?"
+#: ../../mod/group.php:198
+msgid "All Connected Channels"
+msgstr "Todas os canais conectados"
 
-#: ../../mod/admin.php:753
-msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "O/A usuário/a {0} será deletado/a!\\n\\nTudo o que esse/a usuário/a postou neste site será permanentemente deletado!\\n\\nTem certeza?"
+#: ../../mod/group.php:231
+msgid "Click on a channel to add or remove."
+msgstr "Clique em um canal para adicionar ou remover."
 
-#: ../../mod/admin.php:794
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plugin %s desabilitado."
+#: ../../mod/admin.php:48
+msgid "Theme settings updated."
+msgstr "As configurações de tema foram atualizadas."
 
-#: ../../mod/admin.php:798
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Plugin %s habilitado."
+#: ../../mod/admin.php:88 ../../mod/admin.php:430
+msgid "Site"
+msgstr "Site"
 
-#: ../../mod/admin.php:808 ../../mod/admin.php:1010
-msgid "Disable"
-msgstr "Desabilitar"
+#: ../../mod/admin.php:89 ../../mod/admin.php:738 ../../mod/admin.php:750
+msgid "Users"
+msgstr "Usuários"
 
-#: ../../mod/admin.php:810 ../../mod/admin.php:1012
-msgid "Enable"
-msgstr "Habilitar"
+#: ../../mod/admin.php:90 ../../mod/admin.php:836 ../../mod/admin.php:878
+msgid "Plugins"
+msgstr "Plugins"
 
-#: ../../mod/admin.php:836 ../../mod/admin.php:1041
-msgid "Toggle"
-msgstr "Alternar"
+#: ../../mod/admin.php:91 ../../mod/admin.php:1041 ../../mod/admin.php:1077
+msgid "Themes"
+msgstr "Temas"
 
-#: ../../mod/admin.php:844 ../../mod/admin.php:1051
-msgid "Author: "
-msgstr "Autor:"
+#: ../../mod/admin.php:92 ../../mod/admin.php:529
+msgid "Server"
+msgstr "Servidor"
 
-#: ../../mod/admin.php:845 ../../mod/admin.php:1052
-msgid "Maintainer: "
-msgstr "Mantenedor:"
+#: ../../mod/admin.php:93
+msgid "DB updates"
+msgstr "Atualizações do Banco de Dados"
 
-#: ../../mod/admin.php:974
-msgid "No themes found."
-msgstr "Nenhum tema foi encontrado."
+#: ../../mod/admin.php:107 ../../mod/admin.php:114 ../../mod/admin.php:1164
+msgid "Logs"
+msgstr "Logs"
 
-#: ../../mod/admin.php:1033
-msgid "Screenshot"
-msgstr "Captura de tela"
+#: ../../mod/admin.php:113
+msgid "Plugin Features"
+msgstr "Recursos dos plugins"
 
-#: ../../mod/admin.php:1081
-msgid "[Experimental]"
-msgstr "[Experimental]"
+#: ../../mod/admin.php:115
+msgid "User registrations waiting for confirmation"
+msgstr "Registros de usuário aguardando confirmação"
 
-#: ../../mod/admin.php:1082
-msgid "[Unsupported]"
-msgstr "[Desassistido]"
+#: ../../mod/admin.php:189
+msgid "Message queues"
+msgstr "Filas de mensagem"
 
-#: ../../mod/admin.php:1109
-msgid "Log settings updated."
-msgstr "As configurações de log foram atualizadas."
+#: ../../mod/admin.php:194 ../../mod/admin.php:429 ../../mod/admin.php:528
+#: ../../mod/admin.php:737 ../../mod/admin.php:835 ../../mod/admin.php:877
+#: ../../mod/admin.php:1040 ../../mod/admin.php:1076 ../../mod/admin.php:1163
+msgid "Administration"
+msgstr "Administração"
 
-#: ../../mod/admin.php:1165
-msgid "Clear"
-msgstr "Limpar"
+#: ../../mod/admin.php:195
+msgid "Summary"
+msgstr "Resumo"
 
-#: ../../mod/admin.php:1171
-msgid "Debugging"
-msgstr "Depuração"
+#: ../../mod/admin.php:197
+msgid "Registered users"
+msgstr "Usuários registrados"
 
-#: ../../mod/admin.php:1172
-msgid "Log file"
-msgstr "Arquivo de log"
+#: ../../mod/admin.php:199 ../../mod/admin.php:532
+msgid "Pending registrations"
+msgstr "Registros pendentes"
 
-#: ../../mod/admin.php:1172
-msgid ""
-"Must be writable by web server. Relative to your Red top-level directory."
-msgstr "É necessário que o servidor web possa escrever neste arquivo. Relativo ao diretório raiz da Red."
+#: ../../mod/admin.php:200
+msgid "Version"
+msgstr "Versão"
 
-#: ../../mod/admin.php:1173
-msgid "Log level"
-msgstr "Nível do log"
+#: ../../mod/admin.php:202 ../../mod/admin.php:533
+msgid "Active plugins"
+msgstr "Plugins ativos"
 
-#: ../../mod/filer.php:35
-msgid "- select -"
-msgstr "- selecionar -"
+#: ../../mod/admin.php:350
+msgid "Site settings updated."
+msgstr "As configurações de site foram atualizadas."
 
-#: ../../mod/home.php:89
-#, php-format
-msgid "Welcome to %s"
-msgstr "Bem-vindo(a) a %s"
+#: ../../mod/admin.php:381
+msgid "No special theme for accessibility"
+msgstr "Sem tema especial para acessibilidade"
 
-#: ../../mod/editpost.php:20 ../../mod/editlayout.php:36
-#: ../../mod/editwebpage.php:32 ../../mod/editblock.php:36
-msgid "Item not found"
-msgstr "O item não foi encontrado"
+#: ../../mod/admin.php:409
+msgid "Closed"
+msgstr "Fechado"
 
-#: ../../mod/editpost.php:31
-msgid "Item is not editable"
-msgstr "O item não está editável"
+#: ../../mod/admin.php:410
+msgid "Requires approval"
+msgstr "Requer aprovação"
 
-#: ../../mod/editpost.php:53
-msgid "Delete item?"
-msgstr "Deletar item?"
+#: ../../mod/admin.php:411
+msgid "Open"
+msgstr "Aberto"
 
-#: ../../mod/editpost.php:107 ../../mod/editlayout.php:110
-#: ../../mod/editwebpage.php:148 ../../mod/editblock.php:124
-msgid "Insert YouTube video"
-msgstr "Inserir vídeo do YouTube"
+#: ../../mod/admin.php:416
+msgid "Private"
+msgstr "Privado"
 
-#: ../../mod/editpost.php:108 ../../mod/editlayout.php:111
-#: ../../mod/editwebpage.php:149 ../../mod/editblock.php:125
-msgid "Insert Vorbis [.ogg] video"
-msgstr "Inserir vídeo Vorbis (.ogg)"
+#: ../../mod/admin.php:417
+msgid "Paid Access"
+msgstr "Acesso pago"
 
-#: ../../mod/editpost.php:109 ../../mod/editlayout.php:112
-#: ../../mod/editwebpage.php:150 ../../mod/editblock.php:126
-msgid "Insert Vorbis [.ogg] audio"
-msgstr "Inserir áudio Vorbis (.ogg)"
+#: ../../mod/admin.php:418
+msgid "Free Access"
+msgstr "Acesso gratuito"
 
-#: ../../mod/directory.php:144 ../../mod/profiles.php:561
-#: ../../mod/dirprofile.php:98
-msgid "Age: "
-msgstr "Idade: "
+#: ../../mod/admin.php:419
+msgid "Tiered Access"
+msgstr "Acesso em níveis"
 
-#: ../../mod/directory.php:147 ../../mod/dirprofile.php:101
-msgid "Gender: "
-msgstr "Gênero: "
+#: ../../mod/admin.php:432 ../../mod/register.php:189
+msgid "Registration"
+msgstr "Registro"
 
-#: ../../mod/directory.php:208
-msgid "Finding:"
-msgstr "Pesquisando:"
+#: ../../mod/admin.php:433
+msgid "File upload"
+msgstr "Carregamento de arquivos"
 
-#: ../../mod/directory.php:216
-msgid "next page"
-msgstr "próxima página"
+#: ../../mod/admin.php:434
+msgid "Policies"
+msgstr "Políticas"
 
-#: ../../mod/directory.php:216
-msgid "previous page"
-msgstr "página anterior"
+#: ../../mod/admin.php:435
+msgid "Advanced"
+msgstr "Avançado"
 
-#: ../../mod/directory.php:223
-msgid "No entries (some entries may be hidden)."
-msgstr "Nenhuma entrada (algumas entradas podem estar escondidas)."
+#: ../../mod/admin.php:439
+msgid "Site name"
+msgstr "Nome do site"
 
-#: ../../mod/connedit.php:49 ../../mod/connections.php:37
-msgid "Could not access contact record."
-msgstr "Não foi possível acessar o registro do contato."
+#: ../../mod/admin.php:440
+msgid "Banner/Logo"
+msgstr "Cartaz/Logo"
 
-#: ../../mod/connedit.php:63 ../../mod/connections.php:51
-msgid "Could not locate selected profile."
-msgstr "Não foi possível localizar o perfil selecionado."
+#: ../../mod/admin.php:441
+msgid "Administrator Information"
+msgstr "Informações do Administrador"
 
-#: ../../mod/connedit.php:107 ../../mod/connections.php:94
-msgid "Connection updated."
-msgstr "A conexão foi atualizada."
+#: ../../mod/admin.php:441
+msgid ""
+"Contact information for site administrators.  Displayed on siteinfo page.  "
+"BBCode can be used here"
+msgstr "Informações de contato com administradores do site. Exibida na página siteinfo. BBCode pode ser usado aqui."
 
-#: ../../mod/connedit.php:109 ../../mod/connections.php:96
-msgid "Failed to update connection record."
-msgstr "Não foi possível atualizar o registro da conexão."
+#: ../../mod/admin.php:442
+msgid "System language"
+msgstr "Idioma do sistema"
 
-#: ../../mod/connedit.php:204
-msgid "Could not access address book record."
-msgstr "Não foi possível acessar o registro do contato."
+#: ../../mod/admin.php:443
+msgid "System theme"
+msgstr "Tema do sistema"
 
-#: ../../mod/connedit.php:218
-msgid "Refresh failed - channel is currently unavailable."
-msgstr "A atualização falhou - o canal está indisponível no momento."
+#: ../../mod/admin.php:443
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Tema padrão do sistema - pode ser sobrescrito por perfis de usuário - <a href='#' id='cnftheme'>mudar configurações do tema</a>"
 
-#: ../../mod/connedit.php:225
-msgid "Channel has been unblocked"
-msgstr "O canal foi desbloqueado"
+#: ../../mod/admin.php:444
+msgid "Mobile system theme"
+msgstr "Tema do sistema móvel"
 
-#: ../../mod/connedit.php:226
-msgid "Channel has been blocked"
-msgstr "O canal foi bloqueado"
+#: ../../mod/admin.php:444
+msgid "Theme for mobile devices"
+msgstr "Tema para dispositivos móveis"
 
-#: ../../mod/connedit.php:230 ../../mod/connedit.php:242
-#: ../../mod/connedit.php:254 ../../mod/connedit.php:266
-#: ../../mod/connedit.php:281
-msgid "Unable to set address book parameters."
-msgstr "Não foi possível definir os parâmetros do contato."
+#: ../../mod/admin.php:445
+msgid "Accessibility system theme"
+msgstr "Tema do sistema acessível"
 
-#: ../../mod/connedit.php:237
-msgid "Channel has been unignored"
-msgstr "O canal não está mais ignorado"
+#: ../../mod/admin.php:445
+msgid "Accessibility theme"
+msgstr "Tema acessível"
 
-#: ../../mod/connedit.php:238
-msgid "Channel has been ignored"
-msgstr "O canal passou a estar ignorado"
+#: ../../mod/admin.php:446
+msgid "Channel to use for this website's static pages"
+msgstr "Canal a utilizar para as páginas estáticas desse website"
 
-#: ../../mod/connedit.php:249
-msgid "Channel has been unarchived"
-msgstr "O canal deixou o arquivo"
+#: ../../mod/admin.php:446
+msgid "Site Channel"
+msgstr "Canal do site"
 
-#: ../../mod/connedit.php:250
-msgid "Channel has been archived"
-msgstr "O canal foi colocado no arquivo"
+#: ../../mod/admin.php:448
+msgid "Maximum image size"
+msgstr "Tamanho máximo de imagens"
 
-#: ../../mod/connedit.php:261
-msgid "Channel has been unhidden"
-msgstr "O canal não está mais oculto"
+#: ../../mod/admin.php:448
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Tamanho máximo em bytes de imagens carregadas. O padrão é 0, significando sem limites."
 
-#: ../../mod/connedit.php:262
-msgid "Channel has been hidden"
-msgstr "O canal passou a estar oculto"
+#: ../../mod/admin.php:449
+msgid "Register policy"
+msgstr "Política de registro"
 
-#: ../../mod/connedit.php:276
-msgid "Channel has been approved"
-msgstr "O canal foi aprovado"
+#: ../../mod/admin.php:450
+msgid "Access policy"
+msgstr "Política de acesso"
 
-#: ../../mod/connedit.php:277
-msgid "Channel has been unapproved"
-msgstr "O canal deixou de estar aprovado"
+#: ../../mod/admin.php:451
+msgid "Register text"
+msgstr "Texto de registro"
 
-#: ../../mod/connedit.php:295
-msgid "Contact has been removed."
-msgstr "O contato foi removido."
+#: ../../mod/admin.php:451
+msgid "Will be displayed prominently on the registration page."
+msgstr "Será exibido proeminentemente na página de registro."
 
-#: ../../mod/connedit.php:315
-#, php-format
-msgid "View %s's profile"
-msgstr "Ver o perfil de %s"
+#: ../../mod/admin.php:452
+msgid "Accounts abandoned after x days"
+msgstr "Contas abandonadas após x dias"
 
-#: ../../mod/connedit.php:319
-msgid "Refresh Permissions"
-msgstr "Atualizar permissões"
+#: ../../mod/admin.php:452
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Não gastará recursos do sistema coletando de sites externos para contas abandonadas. Use 0 para sem limite de tempo."
 
-#: ../../mod/connedit.php:322
-msgid "Fetch updated permissions"
-msgstr "Buscar as permissões atualizadas"
+#: ../../mod/admin.php:453
+msgid "Allowed friend domains"
+msgstr "Domínios permitidos para amigos"
 
-#: ../../mod/connedit.php:326
-msgid "Recent Activity"
-msgstr "Atividades recentes"
+#: ../../mod/admin.php:453
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Lista, separada por vírgulas, de domínios permitidos para estabelecer amizades com este site. <em>Wildcards</em> são aceitas. Vazio para permitir qualquer domínio"
 
-#: ../../mod/connedit.php:329
-msgid "View recent posts and comments"
-msgstr "Exibir publicações e comentários recentes"
+#: ../../mod/admin.php:454
+msgid "Allowed email domains"
+msgstr "Domínios permitidos de e-mail"
 
-#: ../../mod/connedit.php:336
-msgid "Block or Unblock this connection"
-msgstr "Bloquear ou desbloquear esta conexão"
+#: ../../mod/admin.php:454
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr "Lista, separada por vírgulas, de domínios permitidos em endereços de e-mail para registros nesse site. <em>Wildcards</em> são aceitas. Vazio para permitir qualquer domínio"
 
-#: ../../mod/connedit.php:340 ../../mod/connedit.php:476
-msgid "Unignore"
-msgstr "Não ignorar"
+#: ../../mod/admin.php:455
+msgid "Block public"
+msgstr "Bloquear público"
 
-#: ../../mod/connedit.php:340 ../../mod/connedit.php:476
-#: ../../mod/notifications.php:51
-msgid "Ignore"
-msgstr "Ignorar"
+#: ../../mod/admin.php:455
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Marque para bloquear o acesso público a todas as páginas pessoais que seriam públicas, a não ser que se esteja autenticado."
 
-#: ../../mod/connedit.php:343
-msgid "Ignore or Unignore this connection"
-msgstr "Ignorar ou deixar de ignorar esta conexão"
+#: ../../mod/admin.php:456
+msgid "Force publish"
+msgstr "Forçar publicação"
 
-#: ../../mod/connedit.php:346
-msgid "Unarchive"
-msgstr "Não arquivar"
+#: ../../mod/admin.php:456
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Marque para forçar todos os perfis neste site a aparecerem listados no diretório do site."
 
-#: ../../mod/connedit.php:346
-msgid "Archive"
-msgstr "Arquivar"
+#: ../../mod/admin.php:457
+msgid "No login on Homepage"
+msgstr "Sem formulário de autenticação na página inicial"
 
-#: ../../mod/connedit.php:349
-msgid "Archive or Unarchive this connection"
-msgstr "Colocar ou retirar do arquivo esta conexão"
+#: ../../mod/admin.php:457
+msgid ""
+"Check to hide the login form from your sites homepage when visitors arrive "
+"who are not logged in (e.g. when you put the content of the homepage in via "
+"the site channel)."
+msgstr "Marque para esconder o formulário de autenticação da página inicial do seu site quando visitantes chegarem sem estar autenticados (e.g. quando você inclui os conteúdos da página inicial através do canal do site)."
 
-#: ../../mod/connedit.php:352
-msgid "Unhide"
-msgstr "Não ocultar"
+#: ../../mod/admin.php:459
+msgid "Proxy user"
+msgstr "Usuário do proxy"
 
-#: ../../mod/connedit.php:352
-msgid "Hide"
-msgstr "Ocultar"
+#: ../../mod/admin.php:460
+msgid "Proxy URL"
+msgstr "URL do proxy"
 
-#: ../../mod/connedit.php:355
-msgid "Hide or Unhide this connection"
-msgstr "Ocultar ou deixar de ocultar esta conexão"
+#: ../../mod/admin.php:461
+msgid "Network timeout"
+msgstr "Timeout da rede"
 
-#: ../../mod/connedit.php:362
-msgid "Delete this connection"
-msgstr "Deletar esta conexão"
+#: ../../mod/admin.php:461
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Valor em segundos. Use 0 para ilimitado (não recomendado)."
 
-#: ../../mod/connedit.php:395
-msgid "Unknown"
-msgstr "Desconhecidos"
+#: ../../mod/admin.php:462
+msgid "Delivery interval"
+msgstr "Intervalo de entrega"
 
-#: ../../mod/connedit.php:405 ../../mod/connedit.php:434
-msgid "Approve this connection"
-msgstr "Aprovar esta conexão"
+#: ../../mod/admin.php:462
+msgid ""
+"Delay background delivery processes by this many seconds to reduce system "
+"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
+"for large dedicated servers."
+msgstr "Atrase os processos de entrega em segundo plano por este número de segundos para reduzir a carga do sistema. Recomendado: 4-5 para hosts compartilhados, 2-3 para servidores virtuais privados. 0-1 para grandes servidores dedicados."
 
-#: ../../mod/connedit.php:405
-msgid "Accept connection to allow communication"
-msgstr "Aceite a conexão para permitir comunicação"
+#: ../../mod/admin.php:463
+msgid "Poll interval"
+msgstr "Intervalo de coleta"
 
-#: ../../mod/connedit.php:421
-msgid "Automatic Permissions Settings"
-msgstr "Configurações de permissão automáticas"
+#: ../../mod/admin.php:463
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Atrase os processos de coleta em segundo plano por este número de segundos para reduzir a carga do sistema. Se 0, use o intervalo de entrega."
 
-#: ../../mod/connedit.php:421
-#, php-format
-msgid "Connections: settings for %s"
-msgstr "Conexões: configurações para %s"
+#: ../../mod/admin.php:464
+msgid "Maximum Load Average"
+msgstr "Carga média máxima"
 
-#: ../../mod/connedit.php:425
+#: ../../mod/admin.php:464
 msgid ""
-"When receiving a channel introduction, any permissions provided here will be"
-" applied to the new connection automatically and the introduction approved. "
-"Leave this page if you do not wish to use this feature."
-msgstr "Ao receber uma apresentação de um canal, quaisquer permissões definidas aqui serão automaticamente aplicadas à nova conexão e a apresentação aprovada. Deixe esta página se você não quer usar este recurso."
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Carga máxima do sistema antes de adiar processos de entrega e coleta - padrão 50."
 
-#: ../../mod/connedit.php:427
-msgid "Slide to adjust your degree of friendship"
-msgstr "Deslize para ajustar seu grau de amizade"
+#: ../../mod/admin.php:520
+msgid "No server found"
+msgstr "Nenhum servidor foi encontrado"
 
-#: ../../mod/connedit.php:433
-msgid "inherited"
-msgstr "herdado"
+#: ../../mod/admin.php:527 ../../mod/admin.php:751
+msgid "ID"
+msgstr "ID"
 
-#: ../../mod/connedit.php:435
-msgid "Connection has no individual permissions!"
-msgstr "A conexão não tem permissões individuais!"
+#: ../../mod/admin.php:527
+msgid "for channel"
+msgstr "para o canal"
 
-#: ../../mod/connedit.php:436
-msgid ""
-"This may be appropriate based on your <a href=\"settings\">privacy "
-"settings</a>, though you may wish to review the \"Advanced Permissions\"."
-msgstr "Isso pode ser adequado baseado nas suas <a href=\"settings\">configurações de privacidade</a>, mas talvez você queira rever suas \"Permissões Avançadas\"."
+#: ../../mod/admin.php:527
+msgid "on server"
+msgstr "no servidor"
 
-#: ../../mod/connedit.php:438
-msgid "Profile Visibility"
-msgstr "Visibilidade do perfil"
+#: ../../mod/admin.php:527
+msgid "Status"
+msgstr "Status"
 
-#: ../../mod/connedit.php:439
+#: ../../mod/admin.php:548
+msgid "Update has been marked successful"
+msgstr "A atualização foi designada bem sucedida"
+
+#: ../../mod/admin.php:558
 #, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro."
+msgid "Executing %s failed. Check system logs."
+msgstr "Execução de %s falhou. Verifique os logs do sistema."
 
-#: ../../mod/connedit.php:440
-msgid "Contact Information / Notes"
-msgstr "Informações de contato / Notas"
+#: ../../mod/admin.php:561
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "A atualização %s foi aplicada com sucesso."
 
-#: ../../mod/connedit.php:441
-msgid "Edit contact notes"
-msgstr "Editar anotações sobre o contato"
+#: ../../mod/admin.php:565
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "A atualização %s não retornou um status. Situação incerta quando ao seu sucesso."
 
-#: ../../mod/connedit.php:443
-msgid "Their Settings"
-msgstr "Configurações dele/a"
+#: ../../mod/admin.php:568
+#, php-format
+msgid "Update function %s could not be found."
+msgstr "A função de atualização %s não foi encontrada."
 
-#: ../../mod/connedit.php:444
-msgid "My Settings"
-msgstr "Minhas configurações"
+#: ../../mod/admin.php:583
+msgid "No failed updates."
+msgstr "Nenhuma falha nas atualizações."
 
-#: ../../mod/connedit.php:446
-msgid "Forum Members"
-msgstr "Membros do fórum"
+#: ../../mod/admin.php:587
+msgid "Failed Updates"
+msgstr "Falha nas atualizações"
 
-#: ../../mod/connedit.php:447
-msgid "Soapbox"
-msgstr "Caixa de sabão"
+#: ../../mod/admin.php:589
+msgid "Mark success (if update was manually applied)"
+msgstr "Marque sucesso (se a atualização foi aplicada manualmente)"
 
-#: ../../mod/connedit.php:448
-msgid "Full Sharing (typical social network permissions)"
-msgstr "Compartilhamento completo (permissões típicas de redes sociais)"
+#: ../../mod/admin.php:590
+msgid "Attempt to execute this update step automatically"
+msgstr "Tente executar este passo da atualização automaticamente"
 
-#: ../../mod/connedit.php:449
-msgid "Cautious Sharing "
-msgstr "Compartilhamento cauteloso"
+#: ../../mod/admin.php:616
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s usuário foi bloqueado/desbloqueado"
+msgstr[1] "%s usuários foram bloqueados/desbloqueados"
 
-#: ../../mod/connedit.php:450
-msgid "Follow Only"
-msgstr "Apenas seguir"
+#: ../../mod/admin.php:623
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s usuário foi deletado"
+msgstr[1] "%s usuários foram deletados"
 
-#: ../../mod/connedit.php:451
-msgid "Individual Permissions"
-msgstr "Permissões individuais"
-
-#: ../../mod/connedit.php:452
-msgid ""
-"Some permissions may be inherited from your channel <a "
-"href=\"settings\">privacy settings</a>, which have higher priority than "
-"individual settings. Changing those inherited settings on this page will "
-"have no effect."
-msgstr "Algumas permissões serão herdadas das <a href=\"settings\">configurações de privacidade</a> do seu canal, e terão prioridade sobre as configurações individuais. Modificar nesta página tais configurações herdadas não surtirá efeito algum."
+#: ../../mod/admin.php:654
+msgid "Account not found"
+msgstr "A conta não foi encontrada"
 
-#: ../../mod/connedit.php:453
-msgid "Advanced Permissions"
-msgstr "Permissões avançadas"
+#: ../../mod/admin.php:665
+#, php-format
+msgid "User '%s' deleted"
+msgstr "O usuário/a '%s' foi deletado/a"
 
-#: ../../mod/connedit.php:454
-msgid "Simple Permissions (select one and submit)"
-msgstr "Permissões simples (slecione uma e submeta)"
+#: ../../mod/admin.php:674
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "O usuário/a '%s' foi desbloqueado/a"
 
-#: ../../mod/connedit.php:458
+#: ../../mod/admin.php:674
 #, php-format
-msgid "Visit %s's profile - %s"
-msgstr "Ver o perfil de %s - %s"
+msgid "User '%s' blocked"
+msgstr "O usuário/a '%s' foi bloqueado/a"
 
-#: ../../mod/connedit.php:459
-msgid "Block/Unblock contact"
-msgstr "Bloquear/desbloquear o contato"
+#: ../../mod/admin.php:740
+msgid "select all"
+msgstr "selecionar tudo"
 
-#: ../../mod/connedit.php:460
-msgid "Ignore contact"
-msgstr "Ignorar o contato"
+#: ../../mod/admin.php:741
+msgid "User registrations waiting for confirm"
+msgstr "Registros de usuário aguardando confirmação"
 
-#: ../../mod/connedit.php:461
-msgid "Repair URL settings"
-msgstr "Reparar configurações de URL"
+#: ../../mod/admin.php:742
+msgid "Request date"
+msgstr "Data de requisição"
 
-#: ../../mod/connedit.php:462
-msgid "View conversations"
-msgstr "Ver as conversas"
+#: ../../mod/admin.php:743
+msgid "No registrations."
+msgstr "Nenhum registro."
 
-#: ../../mod/connedit.php:464
-msgid "Delete contact"
-msgstr "Excluir o contato"
+#: ../../mod/admin.php:744
+msgid "Approve"
+msgstr "Aprovar"
 
-#: ../../mod/connedit.php:467
-msgid "Last update:"
-msgstr "Última atualização:"
+#: ../../mod/admin.php:745
+msgid "Deny"
+msgstr "Negar"
 
-#: ../../mod/connedit.php:469
-msgid "Update public posts"
-msgstr "Atualizar publicações públicas"
+#: ../../mod/admin.php:747 ../../mod/connedit.php:333
+#: ../../mod/connedit.php:475
+msgid "Block"
+msgstr "Bloquear"
 
-#: ../../mod/connedit.php:471
-msgid "Update now"
-msgstr "Atualizar agora"
+#: ../../mod/admin.php:748 ../../mod/connedit.php:333
+#: ../../mod/connedit.php:475
+msgid "Unblock"
+msgstr "Desbloquear"
 
-#: ../../mod/connedit.php:477
-msgid "Currently blocked"
-msgstr "Atualmente bloqueado"
+#: ../../mod/admin.php:751
+msgid "Register date"
+msgstr "Data de registro"
 
-#: ../../mod/connedit.php:478
-msgid "Currently ignored"
-msgstr "Atualmente ignorado"
+#: ../../mod/admin.php:751
+msgid "Last login"
+msgstr "Última autenticação"
 
-#: ../../mod/connedit.php:479
-msgid "Currently archived"
-msgstr "Atualmente arquivado"
+#: ../../mod/admin.php:751
+msgid "Expires"
+msgstr "Expira"
 
-#: ../../mod/connedit.php:480
-msgid "Currently pending"
-msgstr "Atualmente pendente"
+#: ../../mod/admin.php:751
+msgid "Service Class"
+msgstr "Classe de serviço"
 
-#: ../../mod/connedit.php:481
-msgid "Hide this contact from others"
-msgstr "Esconda este contato dos demais"
+#: ../../mod/admin.php:753
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Os usuários selecionados serão deletados!\\n\\nTudo o que esses usuários postaram neste site será permanentemente deletado!\\n\\nTem certeza?"
 
-#: ../../mod/connedit.php:481
+#: ../../mod/admin.php:754
 msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Respostas/reações às suas publicações públicas <strong>podem</strong> continuar visíveis."
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "O/A usuário/a {0} será deletado/a!\\n\\nTudo o que esse/a usuário/a postou neste site será permanentemente deletado!\\n\\nTem certeza?"
 
-#: ../../mod/layouts.php:52
-msgid "Layout Help"
-msgstr "Ajuda de layout"
+#: ../../mod/admin.php:795
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Plugin %s desabilitado."
 
-#: ../../mod/layouts.php:55
-msgid "Help with this feature"
-msgstr "Ajuda com este recurso"
+#: ../../mod/admin.php:799
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Plugin %s habilitado."
 
-#: ../../mod/layouts.php:74
-msgid "Layout Name"
-msgstr "Nome do layout"
+#: ../../mod/admin.php:809 ../../mod/admin.php:1011
+msgid "Disable"
+msgstr "Desabilitar"
 
-#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55
-msgid "Help:"
-msgstr "Ajuda:"
+#: ../../mod/admin.php:811 ../../mod/admin.php:1013
+msgid "Enable"
+msgstr "Habilitar"
 
-#: ../../mod/help.php:68 ../../index.php:223
-msgid "Not Found"
-msgstr "Não encontrada"
+#: ../../mod/admin.php:837 ../../mod/admin.php:1042
+msgid "Toggle"
+msgstr "Alternar"
 
-#: ../../mod/help.php:71 ../../mod/page.php:83 ../../mod/display.php:100
-#: ../../index.php:226
-msgid "Page not found."
-msgstr "Página não encontrada."
+#: ../../mod/admin.php:845 ../../mod/admin.php:1052
+msgid "Author: "
+msgstr "Autor:"
 
-#: ../../mod/rmagic.php:56
-msgid "Remote Authentication"
-msgstr "Autenticação remota"
+#: ../../mod/admin.php:846 ../../mod/admin.php:1053
+msgid "Maintainer: "
+msgstr "Mantenedor:"
 
-#: ../../mod/rmagic.php:57
-msgid "Enter your channel address (e.g. channel@example.com)"
-msgstr "Entre o endereço do seu canal (e.g. canal@exemplo.com)"
+#: ../../mod/admin.php:975
+msgid "No themes found."
+msgstr "Nenhum tema foi encontrado."
 
-#: ../../mod/rmagic.php:58
-msgid "Authenticate"
-msgstr "Autenticar"
+#: ../../mod/admin.php:1034
+msgid "Screenshot"
+msgstr "Captura de tela"
 
-#: ../../mod/page.php:35
-msgid "Invalid item."
-msgstr "Item inválido."
+#: ../../mod/admin.php:1082
+msgid "[Experimental]"
+msgstr "[Experimental]"
 
-#: ../../mod/network.php:79
-msgid "No such group"
-msgstr "Este grupo não existe"
+#: ../../mod/admin.php:1083
+msgid "[Unsupported]"
+msgstr "[Desassistido]"
 
-#: ../../mod/network.php:118
-msgid "Search Results For:"
-msgstr "Resultados da busca por:"
+#: ../../mod/admin.php:1110
+msgid "Log settings updated."
+msgstr "As configurações de log foram atualizadas."
 
-#: ../../mod/network.php:172
-msgid "Collection is empty"
-msgstr "A coleção está vazia"
+#: ../../mod/admin.php:1166
+msgid "Clear"
+msgstr "Limpar"
 
-#: ../../mod/network.php:180
-msgid "Collection: "
-msgstr "Coleção:"
+#: ../../mod/admin.php:1172
+msgid "Debugging"
+msgstr "Depuração"
 
-#: ../../mod/network.php:193
-msgid "Connection: "
-msgstr "Conexão:"
+#: ../../mod/admin.php:1173
+msgid "Log file"
+msgstr "Arquivo de log"
 
-#: ../../mod/network.php:196
-msgid "Invalid connection."
-msgstr "Conexão inválida."
+#: ../../mod/admin.php:1173
+msgid ""
+"Must be writable by web server. Relative to your Red top-level directory."
+msgstr "É necessário que o servidor web possa escrever neste arquivo. Relativo ao diretório raiz da Red."
 
-#: ../../mod/profiles.php:18 ../../mod/profiles.php:138
-#: ../../mod/profiles.php:168 ../../mod/profiles.php:463
-msgid "Profile not found."
-msgstr "O perfil não foi encontrado."
+#: ../../mod/admin.php:1174
+msgid "Log level"
+msgstr "Nível do log"
 
-#: ../../mod/profiles.php:38
-msgid "Profile deleted."
-msgstr "O perfil foi excluído."
+#: ../../mod/filer.php:35
+msgid "- select -"
+msgstr "- selecionar -"
 
-#: ../../mod/profiles.php:56 ../../mod/profiles.php:92
-msgid "Profile-"
-msgstr "Perfil-"
+#: ../../mod/home.php:89
+#, php-format
+msgid "Welcome to %s"
+msgstr "Bem-vindo(a) a %s"
 
-#: ../../mod/profiles.php:77 ../../mod/profiles.php:120
-msgid "New profile created."
-msgstr "O novo perfil foi criado."
+#: ../../mod/editpost.php:20 ../../mod/editlayout.php:36
+#: ../../mod/editwebpage.php:32 ../../mod/editblock.php:36
+msgid "Item not found"
+msgstr "O item não foi encontrado"
 
-#: ../../mod/profiles.php:98
-msgid "Profile unavailable to clone."
-msgstr "O perfil não está disponível para clonagem."
+#: ../../mod/editpost.php:31
+msgid "Item is not editable"
+msgstr "O item não está editável"
 
-#: ../../mod/profiles.php:178
-msgid "Profile Name is required."
-msgstr "É obrigatório informar o nome do perfil."
+#: ../../mod/editpost.php:53
+msgid "Delete item?"
+msgstr "Deletar item?"
 
-#: ../../mod/profiles.php:294
-msgid "Marital Status"
-msgstr "Estado civil"
+#: ../../mod/editpost.php:116 ../../mod/editlayout.php:110
+#: ../../mod/editwebpage.php:148 ../../mod/editblock.php:124
+msgid "Insert YouTube video"
+msgstr "Inserir vídeo do YouTube"
 
-#: ../../mod/profiles.php:298
-msgid "Romantic Partner"
-msgstr "Parceiro/a romântico/a"
+#: ../../mod/editpost.php:117 ../../mod/editlayout.php:111
+#: ../../mod/editwebpage.php:149 ../../mod/editblock.php:125
+msgid "Insert Vorbis [.ogg] video"
+msgstr "Inserir vídeo Vorbis (.ogg)"
 
-#: ../../mod/profiles.php:302
-msgid "Likes"
-msgstr "Gosta de"
+#: ../../mod/editpost.php:118 ../../mod/editlayout.php:112
+#: ../../mod/editwebpage.php:150 ../../mod/editblock.php:126
+msgid "Insert Vorbis [.ogg] audio"
+msgstr "Inserir áudio Vorbis (.ogg)"
 
-#: ../../mod/profiles.php:306
-msgid "Dislikes"
-msgstr "Não gosta de"
-
-#: ../../mod/profiles.php:310
-msgid "Work/Employment"
-msgstr "Trabalho/Emprego"
+#: ../../mod/directory.php:144 ../../mod/profiles.php:561
+#: ../../mod/dirprofile.php:98
+msgid "Age: "
+msgstr "Idade: "
 
-#: ../../mod/profiles.php:313
-msgid "Religion"
-msgstr "Religião"
+#: ../../mod/directory.php:147 ../../mod/dirprofile.php:101
+msgid "Gender: "
+msgstr "Gênero: "
 
-#: ../../mod/profiles.php:317
-msgid "Political Views"
-msgstr "Posição política"
+#: ../../mod/directory.php:208
+msgid "Finding:"
+msgstr "Pesquisando:"
 
-#: ../../mod/profiles.php:321
-msgid "Gender"
-msgstr "Gênero"
+#: ../../mod/directory.php:216
+msgid "next page"
+msgstr "próxima página"
 
-#: ../../mod/profiles.php:325
-msgid "Sexual Preference"
-msgstr "Preferência sexual"
+#: ../../mod/directory.php:216
+msgid "previous page"
+msgstr "página anterior"
 
-#: ../../mod/profiles.php:329
-msgid "Homepage"
-msgstr "Página web"
+#: ../../mod/directory.php:223
+msgid "No entries (some entries may be hidden)."
+msgstr "Nenhuma entrada (algumas entradas podem estar escondidas)."
 
-#: ../../mod/profiles.php:333
-msgid "Interests"
-msgstr "Interesses"
+#: ../../mod/connedit.php:49 ../../mod/connections.php:37
+msgid "Could not access contact record."
+msgstr "Não foi possível acessar o registro do contato."
 
-#: ../../mod/profiles.php:337
-msgid "Address"
-msgstr "Endereço"
+#: ../../mod/connedit.php:63 ../../mod/connections.php:51
+msgid "Could not locate selected profile."
+msgstr "Não foi possível localizar o perfil selecionado."
 
-#: ../../mod/profiles.php:344 ../../mod/pubsites.php:31
-msgid "Location"
-msgstr "Localização"
+#: ../../mod/connedit.php:107 ../../mod/connections.php:94
+msgid "Connection updated."
+msgstr "A conexão foi atualizada."
 
-#: ../../mod/profiles.php:427
-msgid "Profile updated."
-msgstr "O perfil foi atualizado."
+#: ../../mod/connedit.php:109 ../../mod/connections.php:96
+msgid "Failed to update connection record."
+msgstr "Não foi possível atualizar o registro da conexão."
 
-#: ../../mod/profiles.php:482
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Esconder sua lista de contatos/amigos dos visitantes no seu perfil?"
+#: ../../mod/connedit.php:204
+msgid "Could not access address book record."
+msgstr "Não foi possível acessar o registro do contato."
 
-#: ../../mod/profiles.php:505
-msgid "Edit Profile Details"
-msgstr "Editar os detalhes do perfil"
+#: ../../mod/connedit.php:218
+msgid "Refresh failed - channel is currently unavailable."
+msgstr "A atualização falhou - o canal está indisponível no momento."
 
-#: ../../mod/profiles.php:507
-msgid "View this profile"
-msgstr "Ver este perfil"
+#: ../../mod/connedit.php:225
+msgid "Channel has been unblocked"
+msgstr "O canal foi desbloqueado"
 
-#: ../../mod/profiles.php:508
-msgid "Change Profile Photo"
-msgstr "Mudar a foto do perfil"
+#: ../../mod/connedit.php:226
+msgid "Channel has been blocked"
+msgstr "O canal foi bloqueado"
 
-#: ../../mod/profiles.php:509
-msgid "Create a new profile using these settings"
-msgstr "Criar um novo perfil usando estas configurações"
+#: ../../mod/connedit.php:230 ../../mod/connedit.php:242
+#: ../../mod/connedit.php:254 ../../mod/connedit.php:266
+#: ../../mod/connedit.php:281
+msgid "Unable to set address book parameters."
+msgstr "Não foi possível definir os parâmetros do contato."
 
-#: ../../mod/profiles.php:510
-msgid "Clone this profile"
-msgstr "Clonar este perfil"
+#: ../../mod/connedit.php:237
+msgid "Channel has been unignored"
+msgstr "O canal não está mais ignorado"
 
-#: ../../mod/profiles.php:511
-msgid "Delete this profile"
-msgstr "Excluir este perfil"
+#: ../../mod/connedit.php:238
+msgid "Channel has been ignored"
+msgstr "O canal passou a estar ignorado"
 
-#: ../../mod/profiles.php:512
-msgid "Profile Name:"
-msgstr "Nome do perfil:"
+#: ../../mod/connedit.php:249
+msgid "Channel has been unarchived"
+msgstr "O canal deixou o arquivo"
 
-#: ../../mod/profiles.php:513
-msgid "Your Full Name:"
-msgstr "Seu nome completo:"
+#: ../../mod/connedit.php:250
+msgid "Channel has been archived"
+msgstr "O canal foi colocado no arquivo"
 
-#: ../../mod/profiles.php:514
-msgid "Title/Description:"
-msgstr "Título/Descrição:"
+#: ../../mod/connedit.php:261
+msgid "Channel has been unhidden"
+msgstr "O canal não está mais oculto"
 
-#: ../../mod/profiles.php:515
-msgid "Your Gender:"
-msgstr "Seu gênero:"
+#: ../../mod/connedit.php:262
+msgid "Channel has been hidden"
+msgstr "O canal passou a estar oculto"
 
-#: ../../mod/profiles.php:516
-#, php-format
-msgid "Birthday (%s):"
-msgstr "Aniversário (%s):"
+#: ../../mod/connedit.php:276
+msgid "Channel has been approved"
+msgstr "O canal foi aprovado"
 
-#: ../../mod/profiles.php:517
-msgid "Street Address:"
-msgstr "Endereço:"
+#: ../../mod/connedit.php:277
+msgid "Channel has been unapproved"
+msgstr "O canal deixou de estar aprovado"
 
-#: ../../mod/profiles.php:518
-msgid "Locality/City:"
-msgstr "Localidade/Cidade:"
+#: ../../mod/connedit.php:295
+msgid "Contact has been removed."
+msgstr "O contato foi removido."
 
-#: ../../mod/profiles.php:519
-msgid "Postal/Zip Code:"
-msgstr "CEP:"
+#: ../../mod/connedit.php:315
+#, php-format
+msgid "View %s's profile"
+msgstr "Ver o perfil de %s"
 
-#: ../../mod/profiles.php:520
-msgid "Country:"
-msgstr "País:"
+#: ../../mod/connedit.php:319
+msgid "Refresh Permissions"
+msgstr "Atualizar permissões"
 
-#: ../../mod/profiles.php:521
-msgid "Region/State:"
-msgstr "Região/Estado:"
+#: ../../mod/connedit.php:322
+msgid "Fetch updated permissions"
+msgstr "Buscar as permissões atualizadas"
 
-#: ../../mod/profiles.php:522
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "Estado civil <span class=\"heart\">&hearts;</span>:"
+#: ../../mod/connedit.php:326
+msgid "Recent Activity"
+msgstr "Atividades recentes"
 
-#: ../../mod/profiles.php:523
-msgid "Who: (if applicable)"
-msgstr "Quem: (se aplicável)"
+#: ../../mod/connedit.php:329
+msgid "View recent posts and comments"
+msgstr "Exibir publicações e comentários recentes"
 
-#: ../../mod/profiles.php:524
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com"
+#: ../../mod/connedit.php:336
+msgid "Block or Unblock this connection"
+msgstr "Bloquear ou desbloquear esta conexão"
 
-#: ../../mod/profiles.php:525
-msgid "Since [date]:"
-msgstr "Desde [data]:"
+#: ../../mod/connedit.php:340 ../../mod/connedit.php:476
+msgid "Unignore"
+msgstr "Não ignorar"
 
-#: ../../mod/profiles.php:527
-msgid "Homepage URL:"
-msgstr "Endereço do website:"
+#: ../../mod/connedit.php:340 ../../mod/connedit.php:476
+#: ../../mod/notifications.php:51
+msgid "Ignore"
+msgstr "Ignorar"
 
-#: ../../mod/profiles.php:530
-msgid "Religious Views:"
-msgstr "Orientação religiosa:"
+#: ../../mod/connedit.php:343
+msgid "Ignore or Unignore this connection"
+msgstr "Ignorar ou deixar de ignorar esta conexão"
 
-#: ../../mod/profiles.php:531
-msgid "Keywords:"
-msgstr "Palavras-chave:"
+#: ../../mod/connedit.php:346
+msgid "Unarchive"
+msgstr "Não arquivar"
 
-#: ../../mod/profiles.php:534
-msgid "Example: fishing photography software"
-msgstr "Exemplo: pesca fotografia software"
+#: ../../mod/connedit.php:346
+msgid "Archive"
+msgstr "Arquivar"
 
-#: ../../mod/profiles.php:535
-msgid "Used in directory listings"
-msgstr "Usado em listas de diretório"
+#: ../../mod/connedit.php:349
+msgid "Archive or Unarchive this connection"
+msgstr "Colocar ou retirar do arquivo esta conexão"
 
-#: ../../mod/profiles.php:536
-msgid "Tell us about yourself..."
-msgstr "Fale um pouco sobre você..."
+#: ../../mod/connedit.php:352
+msgid "Unhide"
+msgstr "Não ocultar"
 
-#: ../../mod/profiles.php:537
-msgid "Hobbies/Interests"
-msgstr "Hobbies/Interesses"
+#: ../../mod/connedit.php:352
+msgid "Hide"
+msgstr "Ocultar"
 
-#: ../../mod/profiles.php:538
-msgid "Contact information and Social Networks"
-msgstr "Informações de contato e redes sociais"
+#: ../../mod/connedit.php:355
+msgid "Hide or Unhide this connection"
+msgstr "Ocultar ou deixar de ocultar esta conexão"
 
-#: ../../mod/profiles.php:539
-msgid "My other channels"
-msgstr "Meus outros canais"
+#: ../../mod/connedit.php:362
+msgid "Delete this connection"
+msgstr "Deletar esta conexão"
 
-#: ../../mod/profiles.php:540
-msgid "Musical interests"
-msgstr "Interesses musicais"
+#: ../../mod/connedit.php:405 ../../mod/connedit.php:434
+msgid "Approve this connection"
+msgstr "Aprovar esta conexão"
 
-#: ../../mod/profiles.php:541
-msgid "Books, literature"
-msgstr "Livros, literatura"
+#: ../../mod/connedit.php:405
+msgid "Accept connection to allow communication"
+msgstr "Aceite a conexão para permitir comunicação"
 
-#: ../../mod/profiles.php:542
-msgid "Television"
-msgstr "Televisão"
+#: ../../mod/connedit.php:421
+msgid "Automatic Permissions Settings"
+msgstr "Configurações de permissão automáticas"
 
-#: ../../mod/profiles.php:543
-msgid "Film/dance/culture/entertainment"
-msgstr "Filme/dança/cultura/entretenimento"
+#: ../../mod/connedit.php:421
+#, php-format
+msgid "Connections: settings for %s"
+msgstr "Conexões: configurações para %s"
 
-#: ../../mod/profiles.php:544
-msgid "Love/romance"
-msgstr "Amor/romance"
+#: ../../mod/connedit.php:425
+msgid ""
+"When receiving a channel introduction, any permissions provided here will be"
+" applied to the new connection automatically and the introduction approved. "
+"Leave this page if you do not wish to use this feature."
+msgstr "Ao receber uma apresentação de um canal, quaisquer permissões definidas aqui serão automaticamente aplicadas à nova conexão e a apresentação aprovada. Deixe esta página se você não quer usar este recurso."
 
-#: ../../mod/profiles.php:545
-msgid "Work/employment"
-msgstr "Trabalho/emprego"
+#: ../../mod/connedit.php:427
+msgid "Slide to adjust your degree of friendship"
+msgstr "Deslize para ajustar seu grau de amizade"
 
-#: ../../mod/profiles.php:546
-msgid "School/education"
-msgstr "Escola/educação"
+#: ../../mod/connedit.php:433
+msgid "inherited"
+msgstr "herdado"
 
-#: ../../mod/profiles.php:551
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "Este é o seu perfil <strong>público</strong>.<br />Ele <strong>pode</strong> estar visível para qualquer um que acesse a Internet."
+#: ../../mod/connedit.php:435
+msgid "Connection has no individual permissions!"
+msgstr "A conexão não tem permissões individuais!"
 
-#: ../../mod/profiles.php:600
-msgid "Edit/Manage Profiles"
-msgstr "Editar/Administrar perfis"
+#: ../../mod/connedit.php:436
+msgid ""
+"This may be appropriate based on your <a href=\"settings\">privacy "
+"settings</a>, though you may wish to review the \"Advanced Permissions\"."
+msgstr "Isso pode ser adequado baseado nas suas <a href=\"settings\">configurações de privacidade</a>, mas talvez você queira rever suas \"Permissões Avançadas\"."
 
-#: ../../mod/profiles.php:601
-msgid "Add profile things"
-msgstr "Adicionar coisas ao perfil"
+#: ../../mod/connedit.php:438
+msgid "Profile Visibility"
+msgstr "Visibilidade do perfil"
 
-#: ../../mod/profiles.php:602
-msgid "Include desirable objects in your profile"
-msgstr "Inclua objetos desejáveis no seu perfil"
+#: ../../mod/connedit.php:439
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro."
 
-#: ../../mod/follow.php:25
-msgid "Channel added."
-msgstr "Canal adicionado."
+#: ../../mod/connedit.php:440
+msgid "Contact Information / Notes"
+msgstr "Informações de contato / Notas"
 
-#: ../../mod/post.php:226
-msgid ""
-"Remote authentication blocked. You are logged into this site locally. Please"
-" logout and retry."
-msgstr "Autenticação remota bloqueada. Você está autenticado neste site localmente. Por favor, saia e tente novamente."
+#: ../../mod/connedit.php:441
+msgid "Edit contact notes"
+msgstr "Editar anotações sobre o contato"
 
-#: ../../mod/post.php:256
-#, php-format
-msgid "Welcome %s. Remote authentication successful."
-msgstr "Bem vindo %s. Autenticação remota realizada com sucesso."
+#: ../../mod/connedit.php:443
+msgid "Their Settings"
+msgstr "Configurações dele/a"
 
-#: ../../mod/dirsearch.php:21
-msgid "This site is not a directory server"
-msgstr "Este site não é um servidor de diretório"
+#: ../../mod/connedit.php:444
+msgid "My Settings"
+msgstr "Minhas configurações"
 
-#: ../../mod/sources.php:32
-msgid "Failed to create source. No channel selected."
-msgstr "Falha ao criar a fonte. Nenhum canal selecionado."
+#: ../../mod/connedit.php:446
+msgid "Forum Members"
+msgstr "Membros do fórum"
 
-#: ../../mod/sources.php:45
-msgid "Source created."
-msgstr "Fonte criada."
+#: ../../mod/connedit.php:447
+msgid "Soapbox"
+msgstr "Caixa de sabão"
 
-#: ../../mod/sources.php:57
-msgid "Source updated."
-msgstr "A fonte foi atualizada."
+#: ../../mod/connedit.php:448
+msgid "Full Sharing (typical social network permissions)"
+msgstr "Compartilhamento completo (permissões típicas de redes sociais)"
 
-#: ../../mod/sources.php:82
-msgid "*"
-msgstr "*"
+#: ../../mod/connedit.php:449
+msgid "Cautious Sharing "
+msgstr "Compartilhamento cauteloso"
 
-#: ../../mod/sources.php:89
-msgid "Manage remote sources of content for your channel."
-msgstr "Administrar as fontes remotas de conteúdo para o seu canal."
+#: ../../mod/connedit.php:450
+msgid "Follow Only"
+msgstr "Apenas seguir"
 
-#: ../../mod/sources.php:90 ../../mod/sources.php:100
-msgid "New Source"
-msgstr "Nova fonte"
+#: ../../mod/connedit.php:451
+msgid "Individual Permissions"
+msgstr "Permissões individuais"
 
-#: ../../mod/sources.php:101 ../../mod/sources.php:133
+#: ../../mod/connedit.php:452
 msgid ""
-"Import all or selected content from the following channel into this channel "
-"and distribute it according to your channel settings."
-msgstr "Importar todo ou uma seleção do conteúdo do seguinte canal para este canal, e distribuí-lo de acordo com as configurações do seu canal."
+"Some permissions may be inherited from your channel <a "
+"href=\"settings\">privacy settings</a>, which have higher priority than "
+"individual settings. Changing those inherited settings on this page will "
+"have no effect."
+msgstr "Algumas permissões serão herdadas das <a href=\"settings\">configurações de privacidade</a> do seu canal, e terão prioridade sobre as configurações individuais. Modificar nesta página tais configurações herdadas não surtirá efeito algum."
 
-#: ../../mod/sources.php:102 ../../mod/sources.php:134
-msgid "Only import content with these words (one per line)"
-msgstr "Importar apenas conteúd com estas palavras (uma por linha)"
+#: ../../mod/connedit.php:453
+msgid "Advanced Permissions"
+msgstr "Permissões avançadas"
 
-#: ../../mod/sources.php:102 ../../mod/sources.php:134
-msgid "Leave blank to import all public content"
-msgstr "Deixe em branco para importar todo o conteúdo público"
+#: ../../mod/connedit.php:454
+msgid "Simple Permissions (select one and submit)"
+msgstr "Permissões simples (slecione uma e submeta)"
 
-#: ../../mod/sources.php:103 ../../mod/sources.php:137
-#: ../../mod/new_channel.php:110
-msgid "Channel Name"
-msgstr "Nome do canal"
+#: ../../mod/connedit.php:458
+#, php-format
+msgid "Visit %s's profile - %s"
+msgstr "Ver o perfil de %s - %s"
 
-#: ../../mod/sources.php:123 ../../mod/sources.php:150
-msgid "Source not found."
-msgstr "A fonte não foi encontrada."
+#: ../../mod/connedit.php:459
+msgid "Block/Unblock contact"
+msgstr "Bloquear/desbloquear o contato"
 
-#: ../../mod/sources.php:130
-msgid "Edit Source"
-msgstr "Editar fonte"
+#: ../../mod/connedit.php:460
+msgid "Ignore contact"
+msgstr "Ignorar o contato"
 
-#: ../../mod/sources.php:131
-msgid "Delete Source"
-msgstr "Deletar fonte"
+#: ../../mod/connedit.php:461
+msgid "Repair URL settings"
+msgstr "Reparar configurações de URL"
 
-#: ../../mod/sources.php:158
-msgid "Source removed"
-msgstr "A fonte foi removida."
+#: ../../mod/connedit.php:462
+msgid "View conversations"
+msgstr "Ver as conversas"
 
-#: ../../mod/sources.php:160
-msgid "Unable to remove source."
-msgstr "Não foi possível remover a fonte."
+#: ../../mod/connedit.php:464
+msgid "Delete contact"
+msgstr "Excluir o contato"
 
-#: ../../mod/lockview.php:34
-msgid "Remote privacy information not available."
-msgstr "Não existe informação disponível sobre a privacidade remota."
+#: ../../mod/connedit.php:467
+msgid "Last update:"
+msgstr "Última atualização:"
 
-#: ../../mod/lockview.php:43
-msgid "Visible to:"
-msgstr "Visível para:"
+#: ../../mod/connedit.php:469
+msgid "Update public posts"
+msgstr "Atualizar publicações públicas"
 
-#: ../../mod/magic.php:70
-msgid "Hub not found."
-msgstr "O hub não foi encontrado."
+#: ../../mod/connedit.php:471
+msgid "Update now"
+msgstr "Atualizar agora"
 
-#: ../../mod/setup.php:161
-msgid "Red Matrix Server - Setup"
-msgstr "Servidor Red Matrix - Configuração"
+#: ../../mod/connedit.php:477
+msgid "Currently blocked"
+msgstr "Atualmente bloqueado"
 
-#: ../../mod/setup.php:167
-msgid "Could not connect to database."
-msgstr "Não foi possível conectar ao banco de dados."
+#: ../../mod/connedit.php:478
+msgid "Currently ignored"
+msgstr "Atualmente ignorado"
 
-#: ../../mod/setup.php:171
-msgid ""
-"Could not connect to specified site URL. Possible SSL certificate or DNS "
-"issue."
-msgstr "Não foi possível conectar à URL especificada para o site. Provavlmente um problema de DNS ou com o certificado SSL."
+#: ../../mod/connedit.php:479
+msgid "Currently archived"
+msgstr "Atualmente arquivado"
 
-#: ../../mod/setup.php:176
-msgid "Could not create table."
-msgstr "Não foi possível criar a tabela."
+#: ../../mod/connedit.php:480
+msgid "Currently pending"
+msgstr "Atualmente pendente"
 
-#: ../../mod/setup.php:182
-msgid "Your site database has been installed."
-msgstr "O banco de dados do seu site foi instalado."
+#: ../../mod/connedit.php:481
+msgid "Hide this contact from others"
+msgstr "Esconda este contato dos demais"
 
-#: ../../mod/setup.php:187
+#: ../../mod/connedit.php:481
 msgid ""
-"You may need to import the file \"install/database.sql\" manually using "
-"phpmyadmin or mysql."
-msgstr "Pode ser que você precise importar o arquivo \"install/database.sql\" manualmente, usando o phpmyadmin or mysql."
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Respostas/reações às suas publicações públicas <strong>podem</strong> continuar visíveis."
 
-#: ../../mod/setup.php:188 ../../mod/setup.php:257 ../../mod/setup.php:609
-msgid "Please see the file \"install/INSTALL.txt\"."
-msgstr "Por favor, veja o arquivo \"install/INSTALL.txt\"."
+#: ../../mod/layouts.php:52
+msgid "Layout Help"
+msgstr "Ajuda de layout"
 
-#: ../../mod/setup.php:254
-msgid "System check"
-msgstr "Checagem do sistema"
+#: ../../mod/layouts.php:55
+msgid "Help with this feature"
+msgstr "Ajuda com este recurso"
 
-#: ../../mod/setup.php:259
-msgid "Check again"
-msgstr "Cheque novamente"
+#: ../../mod/layouts.php:74
+msgid "Layout Name"
+msgstr "Nome do layout"
 
-#: ../../mod/setup.php:281
-msgid "Database connection"
-msgstr "Conexão ao banco de dados"
+#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55
+msgid "Help:"
+msgstr "Ajuda:"
 
-#: ../../mod/setup.php:282
-msgid ""
-"In order to install Red Matrix we need to know how to connect to your "
-"database."
-msgstr "Para instalar a Red Matrix é necessário saber como se conectar ao seu banco de dados."
+#: ../../mod/help.php:68 ../../index.php:223
+msgid "Not Found"
+msgstr "Não encontrada"
 
-#: ../../mod/setup.php:283
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a isso."
+#: ../../mod/help.php:71 ../../mod/page.php:83 ../../mod/display.php:100
+#: ../../index.php:226
+msgid "Page not found."
+msgstr "Página não encontrada."
 
-#: ../../mod/setup.php:284
+#: ../../mod/rmagic.php:38
 msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "O banco de dados que você especificar abaixo já deve existir. Caso contrário, crie-o antes de prosseguir."
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Encontramos um problema ao entrar com a OpenID fornecida. Por favor, verifique se digitou corretamente a ID."
 
-#: ../../mod/setup.php:288
-msgid "Database Server Name"
-msgstr "Nome do servidor de banco de dados"
+#: ../../mod/rmagic.php:38
+msgid "The error message was:"
+msgstr "A mensagem de erro foi:"
 
-#: ../../mod/setup.php:288
-msgid "Default is localhost"
-msgstr "O default é localhost"
+#: ../../mod/rmagic.php:42
+msgid "Authentication failed."
+msgstr "A autenticação falhou."
 
-#: ../../mod/setup.php:289
-msgid "Database Port"
-msgstr "Porta do banco de dados"
+#: ../../mod/rmagic.php:78
+msgid "Remote Authentication"
+msgstr "Autenticação remota"
 
-#: ../../mod/setup.php:289
-msgid "Communication port number - use 0 for default"
-msgstr "Número da porta de comunicação - use 0 para o default"
+#: ../../mod/rmagic.php:79
+msgid "Enter your channel address (e.g. channel@example.com)"
+msgstr "Entre o endereço do seu canal (e.g. canal@exemplo.com)"
 
-#: ../../mod/setup.php:290
-msgid "Database Login Name"
-msgstr "Nome do usuário do banco de dados"
+#: ../../mod/rmagic.php:80
+msgid "Authenticate"
+msgstr "Autenticar"
 
-#: ../../mod/setup.php:291
-msgid "Database Login Password"
-msgstr "Senha do usuário do banco de dados"
+#: ../../mod/page.php:35
+msgid "Invalid item."
+msgstr "Item inválido."
 
-#: ../../mod/setup.php:292
-msgid "Database Name"
-msgstr "Nome do banco de dados"
+#: ../../mod/network.php:79
+msgid "No such group"
+msgstr "Este grupo não existe"
 
-#: ../../mod/setup.php:294 ../../mod/setup.php:336
-msgid "Site administrator email address"
-msgstr "Endereço de email do administrador do site"
+#: ../../mod/network.php:118
+msgid "Search Results For:"
+msgstr "Resultados da busca por:"
 
-#: ../../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 "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web."
+#: ../../mod/network.php:172
+msgid "Collection is empty"
+msgstr "A coleção está vazia"
 
-#: ../../mod/setup.php:295 ../../mod/setup.php:338
-msgid "Website URL"
-msgstr "URL do website"
+#: ../../mod/network.php:180
+msgid "Collection: "
+msgstr "Coleção:"
 
-#: ../../mod/setup.php:295 ../../mod/setup.php:338
-msgid "Please use SSL (https) URL if available."
-msgstr "Por favor, use uma URL SSL (https) se disponível."
+#: ../../mod/network.php:193
+msgid "Connection: "
+msgstr "Conexão:"
 
-#: ../../mod/setup.php:298 ../../mod/setup.php:341
-msgid "Please select a default timezone for your website"
-msgstr "Por favor, selecione o fuso horário padrão para o seu site"
+#: ../../mod/network.php:196
+msgid "Invalid connection."
+msgstr "Conexão inválida."
 
-#: ../../mod/setup.php:325
-msgid "Site settings"
-msgstr "Configurações do site"
+#: ../../mod/profiles.php:18 ../../mod/profiles.php:138
+#: ../../mod/profiles.php:168 ../../mod/profiles.php:463
+msgid "Profile not found."
+msgstr "O perfil não foi encontrado."
 
-#: ../../mod/setup.php:384
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu servidor web."
+#: ../../mod/profiles.php:38
+msgid "Profile deleted."
+msgstr "O perfil foi excluído."
 
-#: ../../mod/setup.php:385
-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 "Caso você não tenha uma versão de linha de comando do PHP instalada no seu servidor, você não será capaz de executar coletas em segundo plano pelo cron."
+#: ../../mod/profiles.php:56 ../../mod/profiles.php:92
+msgid "Profile-"
+msgstr "Perfil-"
 
-#: ../../mod/setup.php:389
-msgid "PHP executable path"
-msgstr "Caminho para o executável do PHP"
+#: ../../mod/profiles.php:77 ../../mod/profiles.php:120
+msgid "New profile created."
+msgstr "O novo perfil foi criado."
 
-#: ../../mod/setup.php:389
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação."
+#: ../../mod/profiles.php:98
+msgid "Profile unavailable to clone."
+msgstr "O perfil não está disponível para clonagem."
 
-#: ../../mod/setup.php:394
-msgid "Command line PHP"
-msgstr "PHP em linha de comando"
+#: ../../mod/profiles.php:178
+msgid "Profile Name is required."
+msgstr "É obrigatório informar o nome do perfil."
 
-#: ../../mod/setup.php:403
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema."
+#: ../../mod/profiles.php:294
+msgid "Marital Status"
+msgstr "Estado civil"
 
-#: ../../mod/setup.php:404
-msgid "This is required for message delivery to work."
-msgstr "Isto é necessário para o funcionamento do envio de mensagens."
+#: ../../mod/profiles.php:298
+msgid "Romantic Partner"
+msgstr "Parceiro/a romântico/a"
 
-#: ../../mod/setup.php:406
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../mod/profiles.php:302
+msgid "Likes"
+msgstr "Gosta de"
 
-#: ../../mod/setup.php:427
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia"
+#: ../../mod/profiles.php:306
+msgid "Dislikes"
+msgstr "Não gosta de"
 
-#: ../../mod/setup.php:428
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\"."
+#: ../../mod/profiles.php:310
+msgid "Work/Employment"
+msgstr "Trabalho/Emprego"
 
-#: ../../mod/setup.php:430
-msgid "Generate encryption keys"
-msgstr "Gerar chaves de criptografia"
+#: ../../mod/profiles.php:313
+msgid "Religion"
+msgstr "Religião"
 
-#: ../../mod/setup.php:437
-msgid "libCurl PHP module"
-msgstr "Módulo PHP libCurl"
+#: ../../mod/profiles.php:317
+msgid "Political Views"
+msgstr "Posição política"
 
-#: ../../mod/setup.php:438
-msgid "GD graphics PHP module"
-msgstr "Módulo PHP GD graphics"
+#: ../../mod/profiles.php:321
+msgid "Gender"
+msgstr "Gênero"
 
-#: ../../mod/setup.php:439
-msgid "OpenSSL PHP module"
-msgstr "Módulo PHP OpenSSL"
+#: ../../mod/profiles.php:325
+msgid "Sexual Preference"
+msgstr "Preferência sexual"
 
-#: ../../mod/setup.php:440
-msgid "mysqli PHP module"
-msgstr "Módulo PHP mysqli"
+#: ../../mod/profiles.php:329
+msgid "Homepage"
+msgstr "Página web"
 
-#: ../../mod/setup.php:441
-msgid "mb_string PHP module"
-msgstr "Módulo PHP mb_string "
+#: ../../mod/profiles.php:333
+msgid "Interests"
+msgstr "Interesses"
 
-#: ../../mod/setup.php:442
-msgid "mcrypt PHP module"
-msgstr "Módulo PHP mcrypt"
+#: ../../mod/profiles.php:337
+msgid "Address"
+msgstr "Endereço"
 
-#: ../../mod/setup.php:447 ../../mod/setup.php:449
-msgid "Apache mod_rewrite module"
-msgstr "Módulo mod_rewrite do Apache"
+#: ../../mod/profiles.php:344 ../../mod/pubsites.php:31
+msgid "Location"
+msgstr "Localização"
 
-#: ../../mod/setup.php:447
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado."
+#: ../../mod/profiles.php:427
+msgid "Profile updated."
+msgstr "O perfil foi atualizado."
 
-#: ../../mod/setup.php:453 ../../mod/setup.php:456
-msgid "proc_open"
-msgstr "proc_open"
+#: ../../mod/profiles.php:482
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Esconder sua lista de contatos/amigos dos visitantes no seu perfil?"
 
-#: ../../mod/setup.php:453
-msgid ""
-"Error: proc_open is required but is either not installed or has been "
-"disabled in php.ini"
-msgstr "Erro: proc_open é necessário, mas não está instalado ou foi desabilitado no php.ini"
+#: ../../mod/profiles.php:505
+msgid "Edit Profile Details"
+msgstr "Editar os detalhes do perfil"
 
-#: ../../mod/setup.php:461
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Erro: o módulo libCURL do PHP é necessário, mas não está instalado."
+#: ../../mod/profiles.php:507
+msgid "View this profile"
+msgstr "Ver este perfil"
 
-#: ../../mod/setup.php:465
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado."
+#: ../../mod/profiles.php:508
+msgid "Change Profile Photo"
+msgstr "Mudar a foto do perfil"
 
-#: ../../mod/setup.php:469
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Erro: o módulo openssl do PHP é necessário, mas não está instalado."
+#: ../../mod/profiles.php:509
+msgid "Create a new profile using these settings"
+msgstr "Criar um novo perfil usando estas configurações"
 
-#: ../../mod/setup.php:473
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Erro: o módulo mysqli do PHP é necessário, mas não está instalado."
+#: ../../mod/profiles.php:510
+msgid "Clone this profile"
+msgstr "Clonar este perfil"
 
-#: ../../mod/setup.php:477
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Erro: o módulo mb_string do PHP é necessário, mas não está instalado."
+#: ../../mod/profiles.php:511
+msgid "Delete this profile"
+msgstr "Excluir este perfil"
 
-#: ../../mod/setup.php:481
-msgid "Error: mcrypt PHP module required but not installed."
-msgstr "Erro: o módulo mcrypt do PHP é necessário, mas não está instalado."
+#: ../../mod/profiles.php:512
+msgid "Profile Name:"
+msgstr "Nome do perfil:"
 
-#: ../../mod/setup.php:497
-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 "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo."
+#: ../../mod/profiles.php:513
+msgid "Your Full Name:"
+msgstr "Seu nome completo:"
 
-#: ../../mod/setup.php:498
-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 "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta."
+#: ../../mod/profiles.php:514
+msgid "Title/Description:"
+msgstr "Título/Descrição:"
 
-#: ../../mod/setup.php:499
-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 "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome .htconfig.php, na pasta raiz do seu Red."
+#: ../../mod/profiles.php:515
+msgid "Your Gender:"
+msgstr "Seu gênero:"
 
-#: ../../mod/setup.php:500
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"install/INSTALL.txt\" for instructions."
-msgstr "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"install/INSTALL.TXT\" para instruções."
+#: ../../mod/profiles.php:516
+#, php-format
+msgid "Birthday (%s):"
+msgstr "Aniversário (%s):"
 
-#: ../../mod/setup.php:503
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php tem permissão de escrita"
+#: ../../mod/profiles.php:517
+msgid "Street Address:"
+msgstr "Endereço:"
 
-#: ../../mod/setup.php:513
-msgid ""
-"Red uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Red usa o engine de template Smarty3 para renderizar suas telas. Smarty3 compila templates para PHP para acelerar a renderização."
+#: ../../mod/profiles.php:518
+msgid "Locality/City:"
+msgstr "Localidade/Cidade:"
 
-#: ../../mod/setup.php:514
-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 "Para guardar os templates compilados, o servidor web necessita de permissão de escrita no diretório view/tpl/smarty3/ dentro do diretório raiz da Red."
+#: ../../mod/profiles.php:519
+msgid "Postal/Zip Code:"
+msgstr "CEP:"
 
-#: ../../mod/setup.php:515 ../../mod/setup.php:533
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Por favor, certifique-se de que o usuário sob o qual o servidor web roda (ex: www-data) tenha permissão de escrita nesse diretório."
+#: ../../mod/profiles.php:520
+msgid "Country:"
+msgstr "País:"
 
-#: ../../mod/setup.php:516
-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: como uma medida de segurança, você deve fornecer ao servidor web permissão de escrita somente em view/tpl/smarty3/  e não aos arquivos de template (.tpl) que ele contém."
+#: ../../mod/profiles.php:521
+msgid "Region/State:"
+msgstr "Região/Estado:"
 
-#: ../../mod/setup.php:519
-msgid "view/tpl/smarty3 is writable"
-msgstr "view/tpl/smarty3 tem permissão de escrita"
+#: ../../mod/profiles.php:522
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "Estado civil <span class=\"heart\">&hearts;</span>:"
 
-#: ../../mod/setup.php:532
-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 "A Red usa o diretório store para salvar arquivos carregados. O servidor web necessita de permissão de escrita no diretório store dentro do diretório raiz da Red"
+#: ../../mod/profiles.php:523
+msgid "Who: (if applicable)"
+msgstr "Quem: (se aplicável)"
 
-#: ../../mod/setup.php:536
-msgid "store is writable"
-msgstr "store tem permissão de escrita"
+#: ../../mod/profiles.php:524
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com"
 
-#: ../../mod/setup.php:551
-msgid "SSL certificate validation"
-msgstr "Validação do certificado SSL"
+#: ../../mod/profiles.php:525
+msgid "Since [date]:"
+msgstr "Desde [data]:"
 
-#: ../../mod/setup.php:551
-msgid ""
-"SSL certificate cannot be validated. Fix certificate or disable https access"
-" to this site."
-msgstr "Não foi possível validar o certificado SSL. Corrija o certificado ou desabilite o acesso via https ao site."
+#: ../../mod/profiles.php:527
+msgid "Homepage URL:"
+msgstr "Endereço do website:"
 
-#: ../../mod/setup.php:558
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "A reescrita de URLs não está funcionando no .htaccess. Verifique as configurações do servidor."
+#: ../../mod/profiles.php:530
+msgid "Religious Views:"
+msgstr "Orientação religiosa:"
 
-#: ../../mod/setup.php:560
-msgid "Url rewrite is working"
-msgstr "A reescrita de URLs está funcionando"
+#: ../../mod/profiles.php:531
+msgid "Keywords:"
+msgstr "Palavras-chave:"
 
-#: ../../mod/setup.php:570
-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 "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web."
+#: ../../mod/profiles.php:534
+msgid "Example: fishing photography software"
+msgstr "Exemplo: pesca fotografia software"
 
-#: ../../mod/setup.php:594
-msgid "Errors encountered creating database tables."
-msgstr "Foram encontrados erros durante a criação das tabelas do banco de dados."
+#: ../../mod/profiles.php:535
+msgid "Used in directory listings"
+msgstr "Usado em listas de diretório"
 
-#: ../../mod/setup.php:607
-msgid "<h1>What next</h1>"
-msgstr "<h1>Próximos passos</h1>"
+#: ../../mod/profiles.php:536
+msgid "Tell us about yourself..."
+msgstr "Fale um pouco sobre você..."
 
-#: ../../mod/setup.php:608
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o coletor."
+#: ../../mod/profiles.php:537
+msgid "Hobbies/Interests"
+msgstr "Hobbies/Interesses"
 
-#: ../../mod/siteinfo.php:57
-#, php-format
-msgid "Version %s"
-msgstr "Versão %s"
+#: ../../mod/profiles.php:538
+msgid "Contact information and Social Networks"
+msgstr "Informações de contato e redes sociais"
 
-#: ../../mod/siteinfo.php:76
-msgid "Installed plugins/addons/apps:"
-msgstr "Plugins/complementos/aplicações instalados:"
+#: ../../mod/profiles.php:539
+msgid "My other channels"
+msgstr "Meus outros canais"
 
-#: ../../mod/siteinfo.php:89
-msgid "No installed plugins/addons/apps"
-msgstr "Nenhum plugin/complemento/aplicação instalado"
+#: ../../mod/profiles.php:540
+msgid "Musical interests"
+msgstr "Interesses musicais"
 
-#: ../../mod/siteinfo.php:93
-msgid "Project Donations"
-msgstr "Doações para o projeto"
+#: ../../mod/profiles.php:541
+msgid "Books, literature"
+msgstr "Livros, literatura"
 
-#: ../../mod/siteinfo.php:94
-msgid ""
-"<p>The Red Matrix is provided for you by volunteers working in their spare "
-"time. Your support will help us to build a better web. Select the following "
-"option for a one-time donation of your choosing</p>"
-msgstr "<p>A Red Matrix é oferecida a você por voluntários trabalhando no seu tempo livre. Seu apoio irá nos ajudar a construir uma web melhor. Selecione uma das opções abaixo para realizar uma única doação de sua escolha:</p>"
+#: ../../mod/profiles.php:542
+msgid "Television"
+msgstr "Televisão"
 
-#: ../../mod/siteinfo.php:95
-msgid "<p>or</p>"
-msgstr "<p>ou</p>"
+#: ../../mod/profiles.php:543
+msgid "Film/dance/culture/entertainment"
+msgstr "Filme/dança/cultura/entretenimento"
 
-#: ../../mod/siteinfo.php:96
-msgid "Recurring Donation Options"
-msgstr "Opções para doações recorrentes"
+#: ../../mod/profiles.php:544
+msgid "Love/romance"
+msgstr "Amor/romance"
 
-#: ../../mod/siteinfo.php:115
-msgid "Red"
-msgstr "Red"
+#: ../../mod/profiles.php:545
+msgid "Work/employment"
+msgstr "Trabalho/emprego"
 
-#: ../../mod/siteinfo.php:116
+#: ../../mod/profiles.php:546
+msgid "School/education"
+msgstr "Escola/educação"
+
+#: ../../mod/profiles.php:551
 msgid ""
-"This is a hub of the Red Matrix - a global cooperative network of "
-"decentralised privacy enhanced websites."
-msgstr "Este é um hub da Red Matrix - uma rede global cooperativa de websites descentralizados com privacidade aprimorada."
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Este é o seu perfil <strong>público</strong>.<br />Ele <strong>pode</strong> estar visível para qualquer um que acesse a Internet."
 
-#: ../../mod/siteinfo.php:119
-msgid "Running at web location"
-msgstr "Sendo executado no endereço web"
+#: ../../mod/profiles.php:600
+msgid "Edit/Manage Profiles"
+msgstr "Editar/Administrar perfis"
 
-#: ../../mod/siteinfo.php:120
-msgid ""
-"Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more "
-"about the Red Matrix."
-msgstr "Para aprender mais sobre a Red Matrix, visite <a href=\"http://getzot.com\">GetZot.com</a>."
+#: ../../mod/profiles.php:601
+msgid "Add profile things"
+msgstr "Adicionar coisas ao perfil"
 
-#: ../../mod/siteinfo.php:121
-msgid "Bug reports and issues: please visit"
-msgstr "Relatos e acompanhamentos de erros podem ser encontrados em"
+#: ../../mod/profiles.php:602
+msgid "Include desirable objects in your profile"
+msgstr "Inclua objetos desejáveis no seu perfil"
 
-#: ../../mod/siteinfo.php:124
+#: ../../mod/follow.php:25
+msgid "Channel added."
+msgstr "Canal adicionado."
+
+#: ../../mod/post.php:226
 msgid ""
-"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot "
-"com"
-msgstr "Sugestões, elogios, etc - mande um e-mail para \"redmatrix\" arrôba librelist ponto com"
+"Remote authentication blocked. You are logged into this site locally. Please"
+" logout and retry."
+msgstr "Autenticação remota bloqueada. Você está autenticado neste site localmente. Por favor, saia e tente novamente."
 
-#: ../../mod/siteinfo.php:126
-msgid "Site Administrators"
-msgstr "Administradores do site"
+#: ../../mod/post.php:256 ../../mod/openid.php:70 ../../mod/openid.php:175
+#, php-format
+msgid "Welcome %s. Remote authentication successful."
+msgstr "Bem vindo %s. Autenticação remota realizada com sucesso."
 
-#: ../../mod/new_channel.php:107
-msgid "Add a Channel"
-msgstr "Adicionar um canal"
+#: ../../mod/dirsearch.php:21
+msgid "This site is not a directory server"
+msgstr "Este site não é um servidor de diretório"
 
-#: ../../mod/new_channel.php:108
-msgid ""
-"A channel is your own collection of related web pages. A channel can be used"
-" to hold social network profiles, blogs, conversation groups and forums, "
-"celebrity pages, and much more. You may create as many channels as your "
-"service provider allows."
-msgstr "Um canal é uma coleção sua de páginas relacionadas. Um canal pode ser usado para um perfil de rede social, um blog, grupos de conversação e fóruns, páginas de celebridades, e muito mais. Você pode criar tantos canais quanto seu provedor de serviço permita."
+#: ../../mod/sources.php:32
+msgid "Failed to create source. No channel selected."
+msgstr "Falha ao criar a fonte. Nenhum canal selecionado."
 
-#: ../../mod/new_channel.php:111
-msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "
-msgstr "Exemplos: \"Beto Salinas\", \"Elis e seus Cavalos\", \"Futebol\", \"Grupo de aviadores\""
+#: ../../mod/sources.php:45
+msgid "Source created."
+msgstr "Fonte criada."
 
-#: ../../mod/new_channel.php:112
-msgid "Choose a short nickname"
-msgstr "Escolha um apelido curto"
+#: ../../mod/sources.php:57
+msgid "Source updated."
+msgstr "A fonte foi atualizada."
+
+#: ../../mod/sources.php:82
+msgid "*"
+msgstr "*"
+
+#: ../../mod/sources.php:89
+msgid "Manage remote sources of content for your channel."
+msgstr "Administrar as fontes remotas de conteúdo para o seu canal."
+
+#: ../../mod/sources.php:90 ../../mod/sources.php:100
+msgid "New Source"
+msgstr "Nova fonte"
+
+#: ../../mod/sources.php:101 ../../mod/sources.php:133
+msgid ""
+"Import all or selected content from the following channel into this channel "
+"and distribute it according to your channel settings."
+msgstr "Importar todo ou uma seleção do conteúdo do seguinte canal para este canal, e distribuí-lo de acordo com as configurações do seu canal."
+
+#: ../../mod/sources.php:102 ../../mod/sources.php:134
+msgid "Only import content with these words (one per line)"
+msgstr "Importar apenas conteúd com estas palavras (uma por linha)"
 
-#: ../../mod/new_channel.php:113
-msgid ""
-"Your nickname will be used to create an easily remembered channel address "
-"(like an email address) which you can share with others."
-msgstr "Seu apelido será usado para criar um endereço para o canal de fácil memorização (como um endereço de email), que você poderá compartilhar com outros."
+#: ../../mod/sources.php:102 ../../mod/sources.php:134
+msgid "Leave blank to import all public content"
+msgstr "Deixe em branco para importar todo o conteúdo público"
 
-#: ../../mod/new_channel.php:114
-msgid "Or <a href=\"import\">import an existing channel</a> from another location"
-msgstr "Ou <a href=\"import\">importe um canal existente</a> de outro local"
+#: ../../mod/sources.php:103 ../../mod/sources.php:137
+#: ../../mod/new_channel.php:110
+msgid "Channel Name"
+msgstr "Nome do canal"
 
-#: ../../mod/lostpass.php:15
-msgid "No valid account found."
-msgstr "Não foi encontrada uma conta válida."
+#: ../../mod/sources.php:123 ../../mod/sources.php:150
+msgid "Source not found."
+msgstr "A fonte não foi encontrada."
 
-#: ../../mod/lostpass.php:29
-msgid "Password reset request issued. Check your email."
-msgstr "A solicitação de restauração de senha foi encaminhada. Verifique seu e-mail."
+#: ../../mod/sources.php:130
+msgid "Edit Source"
+msgstr "Editar fonte"
 
-#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102
-#, php-format
-msgid "Site Member (%s)"
-msgstr "Membro do site (%s)"
+#: ../../mod/sources.php:131
+msgid "Delete Source"
+msgstr "Deletar fonte"
 
-#: ../../mod/lostpass.php:40
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Foi feita uma solicitação de restauração de senha em %s"
+#: ../../mod/sources.php:158
+msgid "Source removed"
+msgstr "A fonte foi removida."
 
-#: ../../mod/lostpass.php:63
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi restaurada."
+#: ../../mod/sources.php:160
+msgid "Unable to remove source."
+msgstr "Não foi possível remover a fonte."
 
-#: ../../mod/lostpass.php:85 ../../boot.php:1434
-msgid "Password Reset"
-msgstr "Reiniciar a senha"
+#: ../../mod/lockview.php:34
+msgid "Remote privacy information not available."
+msgstr "Não existe informação disponível sobre a privacidade remota."
 
-#: ../../mod/lostpass.php:86
-msgid "Your password has been reset as requested."
-msgstr "Sua senha foi restaurada, conforme solicitado."
+#: ../../mod/lockview.php:43
+msgid "Visible to:"
+msgstr "Visível para:"
 
-#: ../../mod/lostpass.php:87
-msgid "Your new password is"
-msgstr "Sua nova senha é"
+#: ../../mod/magic.php:70
+msgid "Hub not found."
+msgstr "O hub não foi encontrado."
 
-#: ../../mod/lostpass.php:88
-msgid "Save or copy your new password - and then"
-msgstr "Salve ou copie a sua nova senha e, então"
+#: ../../mod/setup.php:161
+msgid "Red Matrix Server - Setup"
+msgstr "Servidor Red Matrix - Configuração"
 
-#: ../../mod/lostpass.php:89
-msgid "click here to login"
-msgstr "clique aqui para entrar"
+#: ../../mod/setup.php:167
+msgid "Could not connect to database."
+msgstr "Não foi possível conectar ao banco de dados."
 
-#: ../../mod/lostpass.php:90
+#: ../../mod/setup.php:171
 msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Sua senha pode ser alterada na página de <em>Configurações</em> após você entrar em sua conta."
+"Could not connect to specified site URL. Possible SSL certificate or DNS "
+"issue."
+msgstr "Não foi possível conectar à URL especificada para o site. Provavlmente um problema de DNS ou com o certificado SSL."
 
-#: ../../mod/lostpass.php:107
-#, php-format
-msgid "Your password has changed at %s"
-msgstr "Sua senha foi modificada em %s"
+#: ../../mod/setup.php:176
+msgid "Could not create table."
+msgstr "Não foi possível criar a tabela."
 
-#: ../../mod/lostpass.php:122
-msgid "Forgot your Password?"
-msgstr "Esqueceu a sua senha?"
+#: ../../mod/setup.php:182
+msgid "Your site database has been installed."
+msgstr "O banco de dados do seu site foi instalado."
 
-#: ../../mod/lostpass.php:123
+#: ../../mod/setup.php:187
 msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Digite o seu endereço de e-mail e clique em 'Restaurar' para prosseguir com a restauração da sua senha. Após isso, verifique seu e-mail para mais instruções."
+"You may need to import the file \"install/database.sql\" manually using "
+"phpmyadmin or mysql."
+msgstr "Pode ser que você precise importar o arquivo \"install/database.sql\" manualmente, usando o phpmyadmin or mysql."
 
-#: ../../mod/lostpass.php:124
-msgid "Email Address"
-msgstr "Endereço de e-mail"
+#: ../../mod/setup.php:188 ../../mod/setup.php:257 ../../mod/setup.php:609
+msgid "Please see the file \"install/INSTALL.txt\"."
+msgstr "Por favor, veja o arquivo \"install/INSTALL.txt\"."
 
-#: ../../mod/lostpass.php:125
-msgid "Reset"
-msgstr "Restaurar"
+#: ../../mod/setup.php:254
+msgid "System check"
+msgstr "Checagem do sistema"
 
-#: ../../mod/settings.php:71
-msgid "Name is required"
-msgstr "O nome é obrigatório"
+#: ../../mod/setup.php:259
+msgid "Check again"
+msgstr "Cheque novamente"
 
-#: ../../mod/settings.php:75
-msgid "Key and Secret are required"
-msgstr "A chave e o segredo são obrigatórios"
+#: ../../mod/setup.php:281
+msgid "Database connection"
+msgstr "Conexão ao banco de dados"
 
-#: ../../mod/settings.php:79 ../../mod/settings.php:542
-msgid "Update"
-msgstr "Atualizar"
+#: ../../mod/setup.php:282
+msgid ""
+"In order to install Red Matrix we need to know how to connect to your "
+"database."
+msgstr "Para instalar a Red Matrix é necessário saber como se conectar ao seu banco de dados."
 
-#: ../../mod/settings.php:195
-msgid "Passwords do not match. Password unchanged."
-msgstr "As senhas não correspondem. A senha não foi modificada."
+#: ../../mod/setup.php:283
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a isso."
 
-#: ../../mod/settings.php:199
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Não é permitido uma senha em branco. A senha não foi modificada."
+#: ../../mod/setup.php:284
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "O banco de dados que você especificar abaixo já deve existir. Caso contrário, crie-o antes de prosseguir."
 
-#: ../../mod/settings.php:212
-msgid "Password changed."
-msgstr "A senha foi modificada."
+#: ../../mod/setup.php:288
+msgid "Database Server Name"
+msgstr "Nome do servidor de banco de dados"
 
-#: ../../mod/settings.php:214
-msgid "Password update failed. Please try again."
-msgstr "Não foi possível atualizar a senha. Por favor, tente novamente."
+#: ../../mod/setup.php:288
+msgid "Default is localhost"
+msgstr "O default é localhost"
 
-#: ../../mod/settings.php:228
-msgid "Not valid email."
-msgstr "Não é um e-mail válido"
+#: ../../mod/setup.php:289
+msgid "Database Port"
+msgstr "Porta do banco de dados"
 
-#: ../../mod/settings.php:231
-msgid "Protected email address. Cannot change to that email."
-msgstr "Endereço de e-mail protegido. Não é possível mudar para esse e-mail."
+#: ../../mod/setup.php:289
+msgid "Communication port number - use 0 for default"
+msgstr "Número da porta de comunicação - use 0 para o default"
 
-#: ../../mod/settings.php:240
-msgid "System failure storing new email. Please try again."
-msgstr "Falha do sistema ao armazenar novo e-mail. Por favor, tente novamente."
+#: ../../mod/setup.php:290
+msgid "Database Login Name"
+msgstr "Nome do usuário do banco de dados"
 
-#: ../../mod/settings.php:444
-msgid "Settings updated."
-msgstr "As configurações foram atualizadas."
+#: ../../mod/setup.php:291
+msgid "Database Login Password"
+msgstr "Senha do usuário do banco de dados"
 
-#: ../../mod/settings.php:515 ../../mod/settings.php:541
-#: ../../mod/settings.php:577
-msgid "Add application"
-msgstr "Adicionar aplicação"
+#: ../../mod/setup.php:292
+msgid "Database Name"
+msgstr "Nome do banco de dados"
 
-#: ../../mod/settings.php:518 ../../mod/settings.php:544
-msgid "Name"
-msgstr "Nome"
+#: ../../mod/setup.php:294 ../../mod/setup.php:336
+msgid "Site administrator email address"
+msgstr "Endereço de email do administrador do site"
 
-#: ../../mod/settings.php:518
-msgid "Name of application"
-msgstr "Nome da aplicação"
+#: ../../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 "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web."
 
-#: ../../mod/settings.php:519 ../../mod/settings.php:545
-msgid "Consumer Key"
-msgstr "Chave de consumidor"
+#: ../../mod/setup.php:295 ../../mod/setup.php:338
+msgid "Website URL"
+msgstr "URL do website"
 
-#: ../../mod/settings.php:519 ../../mod/settings.php:520
-msgid "Automatically generated - change if desired. Max length 20"
-msgstr "Gerado automaticamente - troque se desejável. Comprimento máximo 20"
+#: ../../mod/setup.php:295 ../../mod/setup.php:338
+msgid "Please use SSL (https) URL if available."
+msgstr "Por favor, use uma URL SSL (https) se disponível."
 
-#: ../../mod/settings.php:520 ../../mod/settings.php:546
-msgid "Consumer Secret"
-msgstr "Segredo de consumidor"
+#: ../../mod/setup.php:298 ../../mod/setup.php:341
+msgid "Please select a default timezone for your website"
+msgstr "Por favor, selecione o fuso horário padrão para o seu site"
 
-#: ../../mod/settings.php:521 ../../mod/settings.php:547
-msgid "Redirect"
-msgstr "Redirecionamento"
+#: ../../mod/setup.php:325
+msgid "Site settings"
+msgstr "Configurações do site"
 
-#: ../../mod/settings.php:521
+#: ../../mod/setup.php:384
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu servidor web."
+
+#: ../../mod/setup.php:385
 msgid ""
-"Redirect URI - leave blank unless your application specifically requires "
-"this"
-msgstr "URI de redirecionamento - deixe em branco, a não ser que sua aplicação especificamente requeira isso"
+"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 "Caso você não tenha uma versão de linha de comando do PHP instalada no seu servidor, você não será capaz de executar coletas em segundo plano pelo cron."
+
+#: ../../mod/setup.php:389
+msgid "PHP executable path"
+msgstr "Caminho para o executável do PHP"
+
+#: ../../mod/setup.php:389
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação."
 
-#: ../../mod/settings.php:522 ../../mod/settings.php:548
-msgid "Icon url"
-msgstr "URL do ícone"
+#: ../../mod/setup.php:394
+msgid "Command line PHP"
+msgstr "PHP em linha de comando"
 
-#: ../../mod/settings.php:522
-msgid "Optional"
-msgstr "Opcional"
+#: ../../mod/setup.php:403
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema."
 
-#: ../../mod/settings.php:533
-msgid "You can't edit this application."
-msgstr "Você não pode editar esta aplicação."
+#: ../../mod/setup.php:404
+msgid "This is required for message delivery to work."
+msgstr "Isto é necessário para o funcionamento do envio de mensagens."
 
-#: ../../mod/settings.php:576
-msgid "Connected Apps"
-msgstr "Aplicações conectadas"
+#: ../../mod/setup.php:406
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../mod/settings.php:580
-msgid "Client key starts with"
-msgstr "Chave do cliente começa com"
+#: ../../mod/setup.php:427
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia"
 
-#: ../../mod/settings.php:581
-msgid "No name"
-msgstr "Sem nome"
+#: ../../mod/setup.php:428
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\"."
 
-#: ../../mod/settings.php:582
-msgid "Remove authorization"
-msgstr "Remover autorização"
+#: ../../mod/setup.php:430
+msgid "Generate encryption keys"
+msgstr "Gerar chaves de criptografia"
 
-#: ../../mod/settings.php:593
-msgid "No feature settings configured"
-msgstr "Não foi definida nenhuma configuração do recurso"
+#: ../../mod/setup.php:437
+msgid "libCurl PHP module"
+msgstr "Módulo PHP libCurl"
 
-#: ../../mod/settings.php:601
-msgid "Feature Settings"
-msgstr "Configurações do recurso"
+#: ../../mod/setup.php:438
+msgid "GD graphics PHP module"
+msgstr "Módulo PHP GD graphics"
 
-#: ../../mod/settings.php:624
-msgid "Account Settings"
-msgstr "Configurações da conta"
+#: ../../mod/setup.php:439
+msgid "OpenSSL PHP module"
+msgstr "Módulo PHP OpenSSL"
 
-#: ../../mod/settings.php:625
-msgid "Password Settings"
-msgstr "Configurações da senha"
+#: ../../mod/setup.php:440
+msgid "mysqli PHP module"
+msgstr "Módulo PHP mysqli"
 
-#: ../../mod/settings.php:626
-msgid "New Password:"
-msgstr "Nova senha:"
+#: ../../mod/setup.php:441
+msgid "mb_string PHP module"
+msgstr "Módulo PHP mb_string "
 
-#: ../../mod/settings.php:627
-msgid "Confirm:"
-msgstr "Confirme:"
+#: ../../mod/setup.php:442
+msgid "mcrypt PHP module"
+msgstr "Módulo PHP mcrypt"
 
-#: ../../mod/settings.php:627
-msgid "Leave password fields blank unless changing"
-msgstr "Deixe os campos de senha em branco, a não ser que você queira alterá-la"
+#: ../../mod/setup.php:447 ../../mod/setup.php:449
+msgid "Apache mod_rewrite module"
+msgstr "Módulo mod_rewrite do Apache"
 
-#: ../../mod/settings.php:629 ../../mod/settings.php:925
-msgid "Email Address:"
-msgstr "Endereço de e-mail:"
+#: ../../mod/setup.php:447
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado."
 
-#: ../../mod/settings.php:630
-msgid "Remove Account"
-msgstr "Remover conta"
+#: ../../mod/setup.php:453 ../../mod/setup.php:456
+msgid "proc_open"
+msgstr "proc_open"
 
-#: ../../mod/settings.php:631
-msgid "Warning: This action is permanent and cannot be reversed."
-msgstr "Atenção: Esta ação é permanente e não pode ser revertida."
+#: ../../mod/setup.php:453
+msgid ""
+"Error: proc_open is required but is either not installed or has been "
+"disabled in php.ini"
+msgstr "Erro: proc_open é necessário, mas não está instalado ou foi desabilitado no php.ini"
 
-#: ../../mod/settings.php:647
-msgid "Off"
-msgstr "Desligado"
+#: ../../mod/setup.php:461
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Erro: o módulo libCURL do PHP é necessário, mas não está instalado."
 
-#: ../../mod/settings.php:647
-msgid "On"
-msgstr "Ligado"
+#: ../../mod/setup.php:465
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado."
 
-#: ../../mod/settings.php:654
-msgid "Additional Features"
-msgstr "Recursos adicionais"
+#: ../../mod/setup.php:469
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Erro: o módulo openssl do PHP é necessário, mas não está instalado."
 
-#: ../../mod/settings.php:679
-msgid "Connector Settings"
-msgstr "Configurações do conector"
+#: ../../mod/setup.php:473
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Erro: o módulo mysqli do PHP é necessário, mas não está instalado."
 
-#: ../../mod/settings.php:750
-msgid "Display Settings"
-msgstr "Configurações de exibição"
+#: ../../mod/setup.php:477
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Erro: o módulo mb_string do PHP é necessário, mas não está instalado."
 
-#: ../../mod/settings.php:756
-msgid "Display Theme:"
-msgstr "Tema do perfil:"
+#: ../../mod/setup.php:481
+msgid "Error: mcrypt PHP module required but not installed."
+msgstr "Erro: o módulo mcrypt do PHP é necessário, mas não está instalado."
 
-#: ../../mod/settings.php:757
-msgid "Mobile Theme:"
-msgstr "Tema móvel:"
+#: ../../mod/setup.php:497
+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 "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo."
 
-#: ../../mod/settings.php:758
-msgid "Update browser every xx seconds"
-msgstr "Atualizar navegador a cada xx segundos"
+#: ../../mod/setup.php:498
+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 "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta."
 
-#: ../../mod/settings.php:758
-msgid "Minimum of 10 seconds, no maximum"
-msgstr "Mínimo de 10 segundos, sem máximo"
+#: ../../mod/setup.php:499
+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 "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome .htconfig.php, na pasta raiz do seu Red."
 
-#: ../../mod/settings.php:759
-msgid "Maximum number of conversations to load at any time:"
-msgstr "Número máximo permitido de conversas carregadas:"
+#: ../../mod/setup.php:500
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"install/INSTALL.txt\" for instructions."
+msgstr "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"install/INSTALL.TXT\" para instruções."
 
-#: ../../mod/settings.php:759
-msgid "Maximum of 100 items"
-msgstr "Máximo de 100 itens"
+#: ../../mod/setup.php:503
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php tem permissão de escrita"
 
-#: ../../mod/settings.php:760
-msgid "Don't show emoticons"
-msgstr "Não exibir emoticons"
+#: ../../mod/setup.php:513
+msgid ""
+"Red uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Red usa o engine de template Smarty3 para renderizar suas telas. Smarty3 compila templates para PHP para acelerar a renderização."
 
-#: ../../mod/settings.php:761
-msgid "Do not view remote profiles in frames"
-msgstr "Não exibir perfis remotos em frames"
+#: ../../mod/setup.php:514
+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 "Para guardar os templates compilados, o servidor web necessita de permissão de escrita no diretório view/tpl/smarty3/ dentro do diretório raiz da Red."
 
-#: ../../mod/settings.php:761
-msgid "By default open in a sub-window of your own site"
-msgstr "Por padrão, abrir em uma sub-janela do seu próprio site"
+#: ../../mod/setup.php:515 ../../mod/setup.php:533
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Por favor, certifique-se de que o usuário sob o qual o servidor web roda (ex: www-data) tenha permissão de escrita nesse diretório."
 
-#: ../../mod/settings.php:796
-msgid "Nobody except yourself"
-msgstr "Ninguém exceto você mesmo"
+#: ../../mod/setup.php:516
+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: como uma medida de segurança, você deve fornecer ao servidor web permissão de escrita somente em view/tpl/smarty3/  e não aos arquivos de template (.tpl) que ele contém."
 
-#: ../../mod/settings.php:797
-msgid "Only those you specifically allow"
-msgstr "Apenas quem você der permissão"
+#: ../../mod/setup.php:519
+msgid "view/tpl/smarty3 is writable"
+msgstr "view/tpl/smarty3 tem permissão de escrita"
 
-#: ../../mod/settings.php:798
-msgid "Anybody in your address book"
-msgstr "Qualquer um nos seus contatos"
+#: ../../mod/setup.php:532
+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 "A Red usa o diretório store para salvar arquivos carregados. O servidor web necessita de permissão de escrita no diretório store dentro do diretório raiz da Red"
 
-#: ../../mod/settings.php:799
-msgid "Anybody on this website"
-msgstr "Qualquer um neste site"
+#: ../../mod/setup.php:536
+msgid "store is writable"
+msgstr "store tem permissão de escrita"
 
-#: ../../mod/settings.php:800
-msgid "Anybody in this network"
-msgstr "Qualquer um nesta rede"
+#: ../../mod/setup.php:551
+msgid "SSL certificate validation"
+msgstr "Validação do certificado SSL"
 
-#: ../../mod/settings.php:801
-msgid "Anybody on the internet"
-msgstr "Qualquer um na internet"
+#: ../../mod/setup.php:551
+msgid ""
+"SSL certificate cannot be validated. Fix certificate or disable https access"
+" to this site."
+msgstr "Não foi possível validar o certificado SSL. Corrija o certificado ou desabilite o acesso via https ao site."
 
-#: ../../mod/settings.php:878
-msgid "Publish your default profile in the network directory"
-msgstr "Publicar seu perfil padrão no diretório da rede?"
+#: ../../mod/setup.php:558
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "A reescrita de URLs não está funcionando no .htaccess. Verifique as configurações do servidor."
 
-#: ../../mod/settings.php:883
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "Permitir sugerir você como amigo potencial para outros membros?"
+#: ../../mod/setup.php:560
+msgid "Url rewrite is working"
+msgstr "A reescrita de URLs está funcionando"
 
-#: ../../mod/settings.php:887 ../../mod/profile_photo.php:288
-msgid "or"
-msgstr "ou"
+#: ../../mod/setup.php:570
+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 "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web."
 
-#: ../../mod/settings.php:892
-msgid "Your channel address is"
-msgstr "O endereço do seu canal é"
+#: ../../mod/setup.php:594
+msgid "Errors encountered creating database tables."
+msgstr "Foram encontrados erros durante a criação das tabelas do banco de dados."
 
-#: ../../mod/settings.php:914
-msgid "Channel Settings"
-msgstr "Configurações do canal"
+#: ../../mod/setup.php:607
+msgid "<h1>What next</h1>"
+msgstr "<h1>Próximos passos</h1>"
 
-#: ../../mod/settings.php:923
-msgid "Basic Settings"
-msgstr "Configurações básicas"
+#: ../../mod/setup.php:608
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o coletor."
 
-#: ../../mod/settings.php:926
-msgid "Your Timezone:"
-msgstr "Seu fuso horário:"
+#: ../../mod/siteinfo.php:57
+#, php-format
+msgid "Version %s"
+msgstr "Versão %s"
 
-#: ../../mod/settings.php:927
-msgid "Default Post Location:"
-msgstr "Localização padrão de suas publicações:"
+#: ../../mod/siteinfo.php:76
+msgid "Installed plugins/addons/apps:"
+msgstr "Plugins/complementos/aplicações instalados:"
 
-#: ../../mod/settings.php:928
-msgid "Use Browser Location:"
-msgstr "Usar localizador do navegador:"
+#: ../../mod/siteinfo.php:89
+msgid "No installed plugins/addons/apps"
+msgstr "Nenhum plugin/complemento/aplicação instalado"
 
-#: ../../mod/settings.php:930
-msgid "Adult Content"
-msgstr "Conteúdo adulto"
+#: ../../mod/siteinfo.php:93
+msgid "Project Donations"
+msgstr "Doações para o projeto"
 
-#: ../../mod/settings.php:930
+#: ../../mod/siteinfo.php:94
 msgid ""
-"This channel frequently or regularly publishes adult content. (Please tag "
-"any adult material and/or nudity with #NSFW)"
-msgstr "Este canal frequentemente ou regularmente publica conteúdo adulto. (Por favor marque qualquer material adulto e/ou nudez com #NSFW)"
-
-#: ../../mod/settings.php:932
-msgid "Security and Privacy Settings"
-msgstr "Configurações de segurança e privacidade"
+"<p>The Red Matrix is provided for you by volunteers working in their spare "
+"time. Your support will help us to build a better, freer, and privacy "
+"respecting web. Select the following option for a one-time donation of your "
+"choosing</p>"
+msgstr "<p>A Red Matrix é oferecida a você por voluntários trabalhando no seu tempo livre. Seu apoio irá nos ajudar a construir uma web melhor, mais livre e com respeito à privacidade. Selecione uma das opções abaixo para realizar uma única doação de sua escolha:</p>"
 
-#: ../../mod/settings.php:934
-msgid "Hide my online presence"
-msgstr "Esconda minha presença online"
+#: ../../mod/siteinfo.php:95
+msgid "<p>or</p>"
+msgstr "<p>ou</p>"
 
-#: ../../mod/settings.php:934
-msgid "Prevents displaying in your profile that you are online"
-msgstr "Previne exibir em seu perfil que você está online"
+#: ../../mod/siteinfo.php:96
+msgid "Recurring Donation Options"
+msgstr "Opções para doações recorrentes"
 
-#: ../../mod/settings.php:936
-msgid "Simple Privacy Settings:"
-msgstr "Configurações de privacidade simples:"
+#: ../../mod/siteinfo.php:115
+msgid "Red"
+msgstr "Red"
 
-#: ../../mod/settings.php:937
+#: ../../mod/siteinfo.php:116
 msgid ""
-"Very Public - <em>extremely permissive (should be used with caution)</em>"
-msgstr "Muito público - <em>extremamente permissivo (deve ser usado com cuidado)</em>"
+"This is a hub of the Red Matrix - a global cooperative network of "
+"decentralised privacy enhanced websites."
+msgstr "Este é um hub da Red Matrix - uma rede global cooperativa de websites descentralizados com privacidade aprimorada."
+
+#: ../../mod/siteinfo.php:119
+msgid "Running at web location"
+msgstr "Sendo executado no endereço web"
 
-#: ../../mod/settings.php:938
+#: ../../mod/siteinfo.php:120
 msgid ""
-"Typical - <em>default public, privacy when desired (similar to social "
-"network permissions but with improved privacy)</em>"
-msgstr "Típico - <em>público por padrão, privado quando desejável (similar às permissões de redes sociais, mas com melhor privacidade)</em>"
+"Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more "
+"about the Red Matrix."
+msgstr "Para aprender mais sobre a Red Matrix, visite <a href=\"http://getzot.com\">GetZot.com</a>."
 
-#: ../../mod/settings.php:939
-msgid "Private - <em>default private, never open or public</em>"
-msgstr "Privado - <em>privado por padrão, nunca aberto ou público</em>"
+#: ../../mod/siteinfo.php:121
+msgid "Bug reports and issues: please visit"
+msgstr "Relatos e acompanhamentos de erros podem ser encontrados em"
 
-#: ../../mod/settings.php:940
-msgid "Blocked - <em>default blocked to/from everybody</em>"
-msgstr "Bloqueado - <em>por padrão bloquado de/para todos</em>"
+#: ../../mod/siteinfo.php:124
+msgid ""
+"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot "
+"com"
+msgstr "Sugestões, elogios, etc - mande um e-mail para \"redmatrix\" arrôba librelist ponto com"
 
-#: ../../mod/settings.php:943
-msgid "Advanced Privacy Settings"
-msgstr "Configurações de privacidade avançadas"
+#: ../../mod/siteinfo.php:126
+msgid "Site Administrators"
+msgstr "Administradores do site"
 
-#: ../../mod/settings.php:945
-msgid "Maximum Friend Requests/Day:"
-msgstr "Número máximo de requisições de amizade por dia:"
+#: ../../mod/new_channel.php:107
+msgid "Add a Channel"
+msgstr "Adicionar um canal"
 
-#: ../../mod/settings.php:945
-msgid "May reduce spam activity"
-msgstr "Pode reduzir a frequência de spam"
+#: ../../mod/new_channel.php:108
+msgid ""
+"A channel is your own collection of related web pages. A channel can be used"
+" to hold social network profiles, blogs, conversation groups and forums, "
+"celebrity pages, and much more. You may create as many channels as your "
+"service provider allows."
+msgstr "Um canal é uma coleção sua de páginas relacionadas. Um canal pode ser usado para um perfil de rede social, um blog, grupos de conversação e fóruns, páginas de celebridades, e muito mais. Você pode criar tantos canais quanto seu provedor de serviço permita."
 
-#: ../../mod/settings.php:946
-msgid "Default Post Permissions"
-msgstr "Permissões padrão de publicação"
+#: ../../mod/new_channel.php:111
+msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "
+msgstr "Exemplos: \"Beto Salinas\", \"Elis e seus Cavalos\", \"Futebol\", \"Grupo de aviadores\""
 
-#: ../../mod/settings.php:958
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Máximo número de mensagens privadas por dia de pessoas desconhecidas:"
+#: ../../mod/new_channel.php:112
+msgid "Choose a short nickname"
+msgstr "Escolha um apelido curto"
 
-#: ../../mod/settings.php:958
-msgid "Useful to reduce spamming"
-msgstr "Útil para reduzir a frequência de spam"
+#: ../../mod/new_channel.php:113
+msgid ""
+"Your nickname will be used to create an easily remembered channel address "
+"(like an email address) which you can share with others."
+msgstr "Seu apelido será usado para criar um endereço para o canal de fácil memorização (como um endereço de email), que você poderá compartilhar com outros."
 
-#: ../../mod/settings.php:961
-msgid "Notification Settings"
-msgstr "Configurações de notificação"
+#: ../../mod/new_channel.php:114
+msgid "Or <a href=\"import\">import an existing channel</a> from another location"
+msgstr "Ou <a href=\"import\">importe um canal existente</a> de outro local"
 
-#: ../../mod/settings.php:962
-msgid "By default post a status message when:"
-msgstr "Por padrão, publicar uma mensagem de status quando:"
+#: ../../mod/lostpass.php:15
+msgid "No valid account found."
+msgstr "Não foi encontrada uma conta válida."
 
-#: ../../mod/settings.php:963
-msgid "accepting a friend request"
-msgstr "aceitar um pedido de amizade"
+#: ../../mod/lostpass.php:29
+msgid "Password reset request issued. Check your email."
+msgstr "A solicitação de restauração de senha foi encaminhada. Verifique seu e-mail."
 
-#: ../../mod/settings.php:964
-msgid "joining a forum/community"
-msgstr "associar-se a um fórum/comunidade"
+#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102
+#, php-format
+msgid "Site Member (%s)"
+msgstr "Membro do site (%s)"
 
-#: ../../mod/settings.php:965
-msgid "making an <em>interesting</em> profile change"
-msgstr "modificar algo <em>interessante</em> em seu perfil"
+#: ../../mod/lostpass.php:40
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Foi feita uma solicitação de restauração de senha em %s"
 
-#: ../../mod/settings.php:966
-msgid "Send a notification email when:"
-msgstr "Enviar um e-mail de notificação quando:"
+#: ../../mod/lostpass.php:63
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi restaurada."
 
-#: ../../mod/settings.php:967
-msgid "You receive an introduction"
-msgstr "Você recebeu uma apresentação"
+#: ../../mod/lostpass.php:85 ../../boot.php:1436
+msgid "Password Reset"
+msgstr "Reiniciar a senha"
 
-#: ../../mod/settings.php:968
-msgid "Your introductions are confirmed"
-msgstr "Suas solicitações forem confirmadas"
+#: ../../mod/lostpass.php:86
+msgid "Your password has been reset as requested."
+msgstr "Sua senha foi restaurada, conforme solicitado."
 
-#: ../../mod/settings.php:969
-msgid "Someone writes on your profile wall"
-msgstr "Alguém escrever no mural do seu perfil"
+#: ../../mod/lostpass.php:87
+msgid "Your new password is"
+msgstr "Sua nova senha é"
 
-#: ../../mod/settings.php:970
-msgid "Someone writes a followup comment"
-msgstr "Alguém comentou a sua mensagem"
+#: ../../mod/lostpass.php:88
+msgid "Save or copy your new password - and then"
+msgstr "Salve ou copie a sua nova senha e, então"
 
-#: ../../mod/settings.php:971
-msgid "You receive a private message"
-msgstr "Você recebeu uma mensagem privada"
+#: ../../mod/lostpass.php:89
+msgid "click here to login"
+msgstr "clique aqui para entrar"
 
-#: ../../mod/settings.php:972
-msgid "You receive a friend suggestion"
-msgstr "Você recebe uma sugestão de amizade"
+#: ../../mod/lostpass.php:90
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Sua senha pode ser alterada na página de <em>Configurações</em> após você entrar em sua conta."
 
-#: ../../mod/settings.php:973
-msgid "You are tagged in a post"
-msgstr "Você é mencionado num post"
+#: ../../mod/lostpass.php:107
+#, php-format
+msgid "Your password has changed at %s"
+msgstr "Sua senha foi modificada em %s"
 
-#: ../../mod/settings.php:974
-msgid "You are poked/prodded/etc. in a post"
-msgstr "Você foi cutucado/espetado/etc. numa publicação"
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
+msgstr "Esqueceu a sua senha?"
 
-#: ../../mod/settings.php:977
-msgid "Advanced Account/Page Type Settings"
-msgstr "Configurações avançadas de conta/tipo de página"
+#: ../../mod/lostpass.php:123
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Digite o seu endereço de e-mail e clique em 'Restaurar' para prosseguir com a restauração da sua senha. Após isso, verifique seu e-mail para mais instruções."
 
-#: ../../mod/settings.php:978
-msgid "Change the behaviour of this account for special situations"
-msgstr "Mudar o comportamento dessa conta em situações especiais"
+#: ../../mod/lostpass.php:124
+msgid "Email Address"
+msgstr "Endereço de e-mail"
 
-#: ../../mod/settings.php:981
-msgid ""
-"Please enable expert mode (in Settings > Additional features) to adjust!"
-msgstr "Por favor, habilite o modo expert (em Configurações > Recursos adicionais) para ajustar!"
+#: ../../mod/lostpass.php:125
+msgid "Reset"
+msgstr "Restaurar"
 
 #: ../../mod/import.php:36
 msgid "Nothing to import."
@@ -6272,32 +6307,32 @@ msgstr "Para qualquer das opções, por favor escolha se deseja fazer deste hub
 msgid "Make this hub my primary location"
 msgstr "Faça deste hub meu local primário"
 
-#: ../../mod/manage.php:63
+#: ../../mod/manage.php:64
 #, php-format
 msgid "You have created %1$.0f of %2$.0f allowed channels."
 msgstr "Você criou %1$.0f de %2$.0f canais permitidos."
 
-#: ../../mod/manage.php:71
+#: ../../mod/manage.php:72
 msgid "Create a new channel"
 msgstr "Criar um novo canal"
 
-#: ../../mod/manage.php:76
+#: ../../mod/manage.php:77
 msgid "Channel Manager"
 msgstr "Administrador do canal"
 
-#: ../../mod/manage.php:77
+#: ../../mod/manage.php:78
 msgid "Current Channel"
 msgstr "Canal atual"
 
-#: ../../mod/manage.php:79
+#: ../../mod/manage.php:80
 msgid "Attach to one of your channels by selecting it."
 msgstr "Selecione um dos seus canais para utilizá-lo."
 
-#: ../../mod/manage.php:80
+#: ../../mod/manage.php:81
 msgid "Default Channel"
 msgstr "Canal padrão"
 
-#: ../../mod/manage.php:81
+#: ../../mod/manage.php:82
 msgid "Make Default"
 msgstr "Tornar padrão"
 
@@ -6403,6 +6438,10 @@ msgstr "Comunicação segura indisponível. Você <strong>talvez</strong> consig
 msgid "Send Reply"
 msgstr "Enviar resposta"
 
+#: ../../mod/openid.php:26
+msgid "OpenID protocol error. No ID returned."
+msgstr "Erro do protocolo OpenID. Nenhuma ID retornada."
+
 #: ../../mod/editlayout.php:72
 msgid "Edit Layout"
 msgstr "Editar layout"
@@ -6944,7 +6983,7 @@ msgstr "ou nome de um álbum já existente: "
 
 #: ../../mod/photos.php:605
 msgid "Do not show a status post for this upload"
-msgstr "Não mostrar uma publicação de status para este carregamento"
+msgstr "Não exibir uma publicação de status para este carregamento"
 
 #: ../../mod/photos.php:656 ../../mod/photos.php:678 ../../mod/photos.php:1127
 #: ../../mod/photos.php:1142
@@ -7285,41 +7324,41 @@ msgstr "Imagem de cabeçalho"
 msgid "Header image only on profile pages"
 msgstr "Imagem de cabeçalho apenas em páginas de perfil"
 
-#: ../../boot.php:1232
+#: ../../boot.php:1234
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "A atualização %s falhou. Veja os logs de erro."
 
-#: ../../boot.php:1235
+#: ../../boot.php:1237
 #, php-format
 msgid "Update Error at %s"
 msgstr "Erro de atualização em %s"
 
-#: ../../boot.php:1399
+#: ../../boot.php:1401
 msgid ""
 "Create an account to access services and applications within the Red Matrix"
 msgstr "Crie uma conta para acessar serviços e aplicações na Red Matrix"
 
-#: ../../boot.php:1427
+#: ../../boot.php:1429
 msgid "Password"
 msgstr "Senha"
 
-#: ../../boot.php:1428
+#: ../../boot.php:1430
 msgid "Remember me"
 msgstr "Lembrar de mim"
 
-#: ../../boot.php:1433
+#: ../../boot.php:1435
 msgid "Forgot your password?"
 msgstr "Esqueceu a sua senha?"
 
-#: ../../boot.php:1498
+#: ../../boot.php:1500
 msgid "permission denied"
 msgstr "permissão negada"
 
-#: ../../boot.php:1499
+#: ../../boot.php:1501
 msgid "Got Zot?"
 msgstr "Já tem Zot?"
 
-#: ../../boot.php:1899
+#: ../../boot.php:1906
 msgid "toggle mobile"
 msgstr "alternar para interface móvel"
diff --git a/view/pt-br/passchanged_eml.tpl b/view/pt-br/passchanged_eml.tpl
index 0d94be3c2..8a9e0b637 100644
--- a/view/pt-br/passchanged_eml.tpl
+++ b/view/pt-br/passchanged_eml.tpl
@@ -1,20 +1,22 @@
 
-Dear {{$username}},
-	Your password has been changed as requested. Please retain this 
-information for your records (or change your password immediately to 
-something that you will remember).
+Caro/a {{$username}},
 
+	Sua senha foi modificada como solicitado. Por favor retenha
+essa informação contigo (ou modifique sua senha imediatamente para
+algo que você se lembrará).
 
-Your login details are as follows:
 
-Site Location:	{{$siteurl}}
-Login Name:	{{$email}}
-Password:	{{$new_password}}
+Suas informações de autenticação são as seguintes:
 
-You may change that password from your account settings page after logging in.
+Localização do site:	{{$siteurl}}
+Nome:	{{$email}}
+Senha:	{{$new_password}}
 
+Você pode modificar esta senha a partir da página de configurações de conta,
+após autenticar-se.
 
-Sincerely,
-	{{$sitename}} Administrator
+
+Atenciosamente,
+	{{$sitename}} Administrador
 
  
diff --git a/view/pt-br/register_open_eml.tpl b/view/pt-br/register_open_eml.tpl
index 4b397201c..6dd4b714b 100644
--- a/view/pt-br/register_open_eml.tpl
+++ b/view/pt-br/register_open_eml.tpl
@@ -1,19 +1,18 @@
 
-An account has been created at {{$sitename}} for this email address. 
-The login details are as follows:
+Uma conta foi criada em {{$sitename}} para este endereço de e-mail.
+Os detalhes de autenticação são os seguintes:
 
-Site Location:	{{$siteurl}}
-Login:	{{$email}}
-Password: (the password which was provided during registration)
+Localização do site:	{{$siteurl}}
+Nome:	{{$email}}
+Senha: (the password which was provided during registration)
 
-If this account was created without your knowledge and is not desired, you may 
-visit this site and reset the password. This will allow you to remove the 
-account from the links on the Settings page, and we 
-apologise for any inconvenience. 
+Se esta conta foi criada sem seu conhecimento e não é desejada, você pode
+visitar o site e reiniciar a senha. Isso permitirá que você a remova a partir
+da página de Configurações, e nesse caso desculpamo-nos pela inconveniência.  
 
-Thank you and welcome to {{$sitename}}.
+Obrigado e bem vindo a {{$sitename}}.
 
-Sincerely,
-	{{$sitename}} Administrator
+Atenciosamente,
+	{{$sitename}} Administrador
 
  
diff --git a/view/pt-br/register_verify_eml.tpl b/view/pt-br/register_verify_eml.tpl
index 85d9a12d3..9576039bc 100644
--- a/view/pt-br/register_verify_eml.tpl
+++ b/view/pt-br/register_verify_eml.tpl
@@ -1,25 +1,25 @@
 
-A new user registration request was received at {{$sitename}} which requires 
-your approval. 
+Uma nova solicitação de registro de usuário foi recebida em {{$sitename}} e
+requer sua aprovação.
 
 
-The login details are as follows:
+Os detalhes de autenticação são os seguintes:
 
-Site Location:	{{$siteurl}}
-Login Name:	{{$email}}
-IP Address: {{$details}}
+Localização do site:	{{$siteurl}}
+Nome:	{{$email}}
+Endereço IP: {{$details}}
 
-To approve this request please visit the following link:
+Para aprovar essa solicitação, acesse o link abaixo:
 
 
 {{$siteurl}}/regmod/allow/{{$hash}} 
 
 
-To deny the request and remove the account, please visit:
+Para negar a solicitação e remover a conta, acesse:
 
 
 {{$siteurl}}/regmod/deny/{{$hash}}
 
 
-Thank you.
+Obrigado.
 
diff --git a/view/pt-br/request_notify_eml.tpl b/view/pt-br/request_notify_eml.tpl
index d01b8ff27..3f0befb3f 100644
--- a/view/pt-br/request_notify_eml.tpl
+++ b/view/pt-br/request_notify_eml.tpl
@@ -1,17 +1,17 @@
 
-Dear {{$myname}},
+Caro/a {{$myname}},
 
-You have just received a connection request at {{$sitename}} 
+Você acaba de receber uma solicitação de conexão em {{$sitename}} 
 
-from '{{$requestor}}'.
+por '{{$requestor}}'.
 
-You may visit their profile at {{$url}}.
+Você pode ver o perfil dele em {{$url}}.
 
-Please login to your site to view the complete introduction 
-and approve or ignore/cancel the request.
+Por favor, autentique-se no seu site para ver a apresentação completa
+e aprovar ou ignorar/cancelar o pedido.
 
 {{$siteurl}}
 
-Regards,
+Gratidão,
 
-	{{$sitename}} administrator
+	{{$sitename}} administrador
diff --git a/view/pt-br/strings.php b/view/pt-br/strings.php
index e59f5978a..c1c127e61 100644
--- a/view/pt-br/strings.php
+++ b/view/pt-br/strings.php
@@ -53,7 +53,7 @@ $a->strings["Visit %1\$s's %2\$s"] = "Visite o %2\$s de %1\$s";
 $a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s atualizou %2\$s, alterando %3\$s.";
 $a->strings["Logout"] = "Sair";
 $a->strings["End this session"] = "Encerrar essa sessão";
-$a->strings["Home"] = "Meu canal";
+$a->strings["Home"] = "Ver canal";
 $a->strings["Your posts and conversations"] = "Suas publicações e conversas";
 $a->strings["View Profile"] = "Ver perfil";
 $a->strings["Your profile page"] = "A página do seu perfil";
@@ -184,7 +184,7 @@ $a->strings["bytes"] = "bytes";
 $a->strings["remove category"] = "remover categoria";
 $a->strings["remove from file"] = "remover do arquivo";
 $a->strings["Click to open/close"] = "Clique para abrir/fechar";
-$a->strings["link to source"] = "exibir a origem";
+$a->strings["link to source"] = "Link para a origem";
 $a->strings["Select a page layout: "] = "Selecione um layout de página:";
 $a->strings["default"] = "default";
 $a->strings["Page content type: "] = "Tipo de conteúdo da página: ";
@@ -314,7 +314,7 @@ $a->strings["Channels not in any collection"] = "Canais que não estão em nenhu
 $a->strings["Delete this item?"] = "Excluir este item?";
 $a->strings["Comment"] = "Comentar";
 $a->strings["show more"] = "exibir mais";
-$a->strings["show fewer"] = "mostrar menos";
+$a->strings["show fewer"] = "exibir menos";
 $a->strings["Password too short"] = "A senha é muito curta";
 $a->strings["Passwords do not match"] = "As senhas não correspondem";
 $a->strings["everybody"] = "todos";
@@ -438,9 +438,9 @@ $a->strings["Set expiration date"] = "Definir data de expiração";
 $a->strings["Encrypt text"] = "Encriptar texto";
 $a->strings["OK"] = "Ok";
 $a->strings["Cancel"] = "Cancelar";
-$a->strings["Commented Order"] = "Recentemente comentados";
+$a->strings["Commented Order"] = "Recentes e comentados";
 $a->strings["Sort by Comment Date"] = "Ordenar pela data do último comentário";
-$a->strings["Posted Order"] = "Ordem de publicação";
+$a->strings["Posted Order"] = "Recentemente publicados";
 $a->strings["Sort by Post Date"] = "Ordenar pela data da publicação";
 $a->strings["Personal"] = "Pessoal";
 $a->strings["Posts that mention or involve you"] = "Publicações que mencionam ou envolvem você";
@@ -714,9 +714,8 @@ $a->strings["This action exceeds the limits set by your subscription plan."] = "
 $a->strings["This action is not available under your subscription plan."] = "Essa ação não está disponível para o seu plano de assinatura.";
 $a->strings["Channel is blocked on this site."] = "O canal está bloqueado neste site.";
 $a->strings["Channel location missing."] = "A localização do canal foi perdida";
-$a->strings["Channel discovery failed. Website may be down or misconfigured."] = "Não foi possível descobrir o canal. O site pode estar fora do ar ou desconfigurado.";
-$a->strings["Response from remote channel was not understood."] = "A resposta do canal remoto não foi compreendida.";
 $a->strings["Response from remote channel was incomplete."] = "A resposta do canal remoto está incompleta.";
+$a->strings["Channel discovery failed."] = "A descoberta de canais falhou.";
 $a->strings["local account not found."] = "a conta local não foi encontrada.";
 $a->strings["Cannot connect to yourself."] = "Não é possível conectar-se consigo mesmo.";
 $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."] = "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão.";
@@ -745,6 +744,7 @@ $a->strings["Can send me bookmarks"] = "Pode me enviar links guardados";
 $a->strings["Can administer my channel resources"] = "Pode administrar os recursos do meu canal";
 $a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Extremamente avançado. Não mexa nisso a não ser que saiba o que está fazendo";
 $a->strings["Permission denied"] = "Permissão negada";
+$a->strings["Unknown"] = "Desconhecidos";
 $a->strings["Item not found."] = "O item não foi encontrado.";
 $a->strings["Collection not found."] = "A coleção não foi encontrada.";
 $a->strings["Collection is empty."] = "A coleção está vazia.";
@@ -808,13 +808,113 @@ $a->strings["Please visit my channel at"] = "Por favor, visite o meu canal em";
 $a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "Após você se registrar (em qualquer site da Red Matrix - eles são todos interconectados!), peço que conecte-se comigo usando o endereço do meu canal:";
 $a->strings["Click the [Register] link on the following page to join."] = "Clique no link [Registrar] na seguinte página para participar.";
 $a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "Para maiores informações sobre o Projeto Red Matrix e porque ele tem potencial para mudar a Internet como a conhecemos, por favor visite: http://getzot.com";
-$a->strings["Unable to locate original post."] = "Não foi possível localizar a publicação original.";
-$a->strings["Empty post discarded."] = "A publicação em branco foi descartada.";
-$a->strings["Executable content type not permitted to this channel."] = "Conteúdo de tipo executável não permitido para este canal.";
-$a->strings["System error. Post not saved."] = "Erro no sistema. A publicação não foi salva.";
-$a->strings["Wall Photos"] = "Fotos do mural";
-$a->strings["You have reached your limit of %1$.0f top level posts."] = "Você atingiu o seu limite de %1$.0f publicações de novos tópicos.";
-$a->strings["You have reached your limit of %1$.0f webpages."] = "Você atingiu o seu limite de %1$.0f páginas web.";
+$a->strings["Name is required"] = "O nome é obrigatório";
+$a->strings["Key and Secret are required"] = "A chave e o segredo são obrigatórios";
+$a->strings["Update"] = "Atualizar";
+$a->strings["Passwords do not match. Password unchanged."] = "As senhas não correspondem. A senha não foi modificada.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Não é permitido uma senha em branco. A senha não foi modificada.";
+$a->strings["Password changed."] = "A senha foi modificada.";
+$a->strings["Password update failed. Please try again."] = "Não foi possível atualizar a senha. Por favor, tente novamente.";
+$a->strings["Not valid email."] = "Não é um e-mail válido";
+$a->strings["Protected email address. Cannot change to that email."] = "Endereço de e-mail protegido. Não é possível mudar para esse e-mail.";
+$a->strings["System failure storing new email. Please try again."] = "Falha do sistema ao armazenar novo e-mail. Por favor, tente novamente.";
+$a->strings["Settings updated."] = "As configurações foram atualizadas.";
+$a->strings["Add application"] = "Adicionar aplicação";
+$a->strings["Name"] = "Nome";
+$a->strings["Name of application"] = "Nome da aplicação";
+$a->strings["Consumer Key"] = "Chave de consumidor";
+$a->strings["Automatically generated - change if desired. Max length 20"] = "Gerado automaticamente - troque se desejável. Comprimento máximo 20";
+$a->strings["Consumer Secret"] = "Segredo de consumidor";
+$a->strings["Redirect"] = "Redirecionamento";
+$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirecionamento - deixe em branco, a não ser que sua aplicação especificamente requeira isso";
+$a->strings["Icon url"] = "URL do ícone";
+$a->strings["Optional"] = "Opcional";
+$a->strings["You can't edit this application."] = "Você não pode editar esta aplicação.";
+$a->strings["Connected Apps"] = "Aplicações conectadas";
+$a->strings["Client key starts with"] = "Chave do cliente começa com";
+$a->strings["No name"] = "Sem nome";
+$a->strings["Remove authorization"] = "Remover autorização";
+$a->strings["No feature settings configured"] = "Não foi definida nenhuma configuração do recurso";
+$a->strings["Feature Settings"] = "Configurações do recurso";
+$a->strings["Account Settings"] = "Configurações da conta";
+$a->strings["Password Settings"] = "Configurações da senha";
+$a->strings["New Password:"] = "Nova senha:";
+$a->strings["Confirm:"] = "Confirme:";
+$a->strings["Leave password fields blank unless changing"] = "Deixe os campos de senha em branco, a não ser que você queira alterá-la";
+$a->strings["Email Address:"] = "Endereço de e-mail:";
+$a->strings["Remove Account"] = "Remover conta";
+$a->strings["Warning: This action is permanent and cannot be reversed."] = "Atenção: Esta ação é permanente e não pode ser revertida.";
+$a->strings["Off"] = "Desligado";
+$a->strings["On"] = "Ligado";
+$a->strings["Additional Features"] = "Recursos adicionais";
+$a->strings["Connector Settings"] = "Configurações do conector";
+$a->strings["No special theme for mobile devices"] = "Sem tema especial para aparelhos móveis";
+$a->strings["Display Settings"] = "Configurações de exibição";
+$a->strings["Display Theme:"] = "Tema do perfil:";
+$a->strings["Mobile Theme:"] = "Tema móvel:";
+$a->strings["Update browser every xx seconds"] = "Atualizar navegador a cada xx segundos";
+$a->strings["Minimum of 10 seconds, no maximum"] = "Mínimo de 10 segundos, sem máximo";
+$a->strings["Maximum number of conversations to load at any time:"] = "Número máximo permitido de conversas carregadas:";
+$a->strings["Maximum of 100 items"] = "Máximo de 100 itens";
+$a->strings["Don't show emoticons"] = "Não exibir emoticons";
+$a->strings["Do not view remote profiles in frames"] = "Não exibir perfis remotos em frames";
+$a->strings["By default open in a sub-window of your own site"] = "Por padrão, abrir em uma sub-janela do seu próprio site";
+$a->strings["Nobody except yourself"] = "Ninguém exceto você mesmo";
+$a->strings["Only those you specifically allow"] = "Apenas quem você der permissão";
+$a->strings["Anybody in your address book"] = "Qualquer um nos seus contatos";
+$a->strings["Anybody on this website"] = "Qualquer um neste site";
+$a->strings["Anybody in this network"] = "Qualquer um nesta rede";
+$a->strings["Anybody authenticated"] = "Qualquer um autenticado";
+$a->strings["Anybody on the internet"] = "Qualquer um na internet";
+$a->strings["Publish your default profile in the network directory"] = "Publicar seu perfil padrão no diretório da rede?";
+$a->strings["No"] = "Não";
+$a->strings["Yes"] = "Sim";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Permitir sugerir você como amigo potencial para outros membros?";
+$a->strings["or"] = "ou";
+$a->strings["Your channel address is"] = "O endereço do seu canal é";
+$a->strings["Channel Settings"] = "Configurações do canal";
+$a->strings["Basic Settings"] = "Configurações básicas";
+$a->strings["Your Timezone:"] = "Seu fuso horário:";
+$a->strings["Default Post Location:"] = "Localização padrão de suas publicações:";
+$a->strings["Use Browser Location:"] = "Usar localizador do navegador:";
+$a->strings["Adult Content"] = "Conteúdo adulto";
+$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Este canal frequentemente ou regularmente publica conteúdo adulto. (Por favor marque qualquer material adulto e/ou nudez com #NSFW)";
+$a->strings["Security and Privacy Settings"] = "Configurações de segurança e privacidade";
+$a->strings["Hide my online presence"] = "Esconda minha presença online";
+$a->strings["Prevents displaying in your profile that you are online"] = "Previne exibir em seu perfil que você está online";
+$a->strings["Simple Privacy Settings:"] = "Configurações de privacidade simples:";
+$a->strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "Muito público - <em>extremamente permissivo (deve ser usado com cuidado)</em>";
+$a->strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "Típico - <em>público por padrão, privado quando desejável (similar às permissões de redes sociais, mas com melhor privacidade)</em>";
+$a->strings["Private - <em>default private, never open or public</em>"] = "Privado - <em>privado por padrão, nunca aberto ou público</em>";
+$a->strings["Blocked - <em>default blocked to/from everybody</em>"] = "Bloqueado - <em>por padrão bloquado de/para todos</em>";
+$a->strings["Allow others to tag your posts"] = "Permitir que outros etiquetem suas publicações";
+$a->strings["Often used by the community to retro-actively flag inappropriate content"] = "Frequentemente utilizado pela comunidade para retroativamente sinalizar conteúdo inapropriado";
+$a->strings["Advanced Privacy Settings"] = "Configurações de privacidade avançadas";
+$a->strings["Maximum Friend Requests/Day:"] = "Número máximo de requisições de amizade por dia:";
+$a->strings["May reduce spam activity"] = "Pode reduzir a frequência de spam";
+$a->strings["Default Post Permissions"] = "Permissões padrão de publicação";
+$a->strings["(click to open/close)"] = "(clique para abrir/fechar)";
+$a->strings["Maximum private messages per day from unknown people:"] = "Máximo número de mensagens privadas por dia de pessoas desconhecidas:";
+$a->strings["Useful to reduce spamming"] = "Útil para reduzir a frequência de spam";
+$a->strings["Notification Settings"] = "Configurações de notificação";
+$a->strings["By default post a status message when:"] = "Por padrão, publicar uma mensagem de status quando:";
+$a->strings["accepting a friend request"] = "aceitar um pedido de amizade";
+$a->strings["joining a forum/community"] = "associar-se a um fórum/comunidade";
+$a->strings["making an <em>interesting</em> profile change"] = "modificar algo <em>interessante</em> em seu perfil";
+$a->strings["Send a notification email when:"] = "Enviar um e-mail de notificação quando:";
+$a->strings["You receive an introduction"] = "Você recebeu uma apresentação";
+$a->strings["Your introductions are confirmed"] = "Suas solicitações forem confirmadas";
+$a->strings["Someone writes on your profile wall"] = "Alguém escrever no mural do seu perfil";
+$a->strings["Someone writes a followup comment"] = "Alguém comentou a sua mensagem";
+$a->strings["You receive a private message"] = "Você recebeu uma mensagem privada";
+$a->strings["You receive a friend suggestion"] = "Você recebe uma sugestão de amizade";
+$a->strings["You are tagged in a post"] = "Você é mencionado num post";
+$a->strings["You are poked/prodded/etc. in a post"] = "Você foi cutucado/espetado/etc. numa publicação";
+$a->strings["Advanced Account/Page Type Settings"] = "Configurações avançadas de conta/tipo de página";
+$a->strings["Change the behaviour of this account for special situations"] = "Mudar o comportamento dessa conta em situações especiais";
+$a->strings["Please enable expert mode (in <a href=\"settings/features\">Settings > Additional features</a>) to adjust!"] = "Por favor, habilite o modo expert (em <a href=\"settings/features\">Configurações > Recursos adicionais</a>) para ajustar!";
+$a->strings["Miscellaneous Settings"] = "Configurações miscelâneas";
+$a->strings["Personal menu to display in your channel pages"] = "Menu pessoal para exibir nas páginas dos seus canais";
 $a->strings["Menu updated."] = "Menu atualizado.";
 $a->strings["Unable to update menu."] = "Não foi possível atualizar o menu.";
 $a->strings["Menu created."] = "Menu criado.";
@@ -845,8 +945,6 @@ $a->strings["Authorize application connection"] = "Autorizar a conexão com a ap
 $a->strings["Return to your app and insert this Securty Code:"] = "Volte para a sua aplicação e digite este código de segurança:";
 $a->strings["Please login to continue."] = "Por favor, autentique-se para continuar.";
 $a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?";
-$a->strings["Yes"] = "Sim";
-$a->strings["No"] = "Não";
 $a->strings["No installed applications."] = "Não existe nenhuma aplicação instalada.";
 $a->strings["Applications"] = "Aplicações";
 $a->strings["Edit post"] = "Editar a publicação";
@@ -854,6 +952,13 @@ $a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"
 $a->strings["Bookmark added"] = "O link foi guardado";
 $a->strings["My Bookmarks"] = "Meus links guardados";
 $a->strings["My Connections Bookmarks"] = "Links guardados das minhas conexões";
+$a->strings["Unable to locate original post."] = "Não foi possível localizar a publicação original.";
+$a->strings["Empty post discarded."] = "A publicação em branco foi descartada.";
+$a->strings["Executable content type not permitted to this channel."] = "Conteúdo de tipo executável não permitido para este canal.";
+$a->strings["System error. Post not saved."] = "Erro no sistema. A publicação não foi salva.";
+$a->strings["Wall Photos"] = "Fotos do mural";
+$a->strings["You have reached your limit of %1$.0f top level posts."] = "Você atingiu o seu limite de %1$.0f publicações de novos tópicos.";
+$a->strings["You have reached your limit of %1$.0f webpages."] = "Você atingiu o seu limite de %1$.0f páginas web.";
 $a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está acompanhando %3\$s de %2\$s";
 $a->strings["[Embedded content - reload page to view]"] = "[Conteúdo incorporado - recarregue a página para ver]";
 $a->strings["Channel not found."] = "O canal não foi encontrado.";
@@ -909,7 +1014,6 @@ $a->strings["Delete this menu item"] = "Deleter este item de menu";
 $a->strings["Edit this menu item"] = "Editar este item de menu";
 $a->strings["New Menu Element"] = "Novo elemento de menu";
 $a->strings["Menu Item Permissions"] = "Permissões do item do menu";
-$a->strings["(click to open/close)"] = "(clique para abrir/fechar)";
 $a->strings["Link text"] = "Texto do link";
 $a->strings["URL of link"] = "URL do link";
 $a->strings["Use Red magic-auth if available"] = "Usar <em>Red magic-auth</em> se disponível";
@@ -955,7 +1059,6 @@ $a->strings["Pending registrations"] = "Registros pendentes";
 $a->strings["Version"] = "Versão";
 $a->strings["Active plugins"] = "Plugins ativos";
 $a->strings["Site settings updated."] = "As configurações de site foram atualizadas.";
-$a->strings["No special theme for mobile devices"] = "Sem tema especial para aparelhos móveis";
 $a->strings["No special theme for accessibility"] = "Sem tema especial para acessibilidade";
 $a->strings["Closed"] = "Fechado";
 $a->strings["Requires approval"] = "Requer aprovação";
@@ -1114,7 +1217,6 @@ $a->strings["Unhide"] = "Não ocultar";
 $a->strings["Hide"] = "Ocultar";
 $a->strings["Hide or Unhide this connection"] = "Ocultar ou deixar de ocultar esta conexão";
 $a->strings["Delete this connection"] = "Deletar esta conexão";
-$a->strings["Unknown"] = "Desconhecidos";
 $a->strings["Approve this connection"] = "Aprovar esta conexão";
 $a->strings["Accept connection to allow communication"] = "Aceite a conexão para permitir comunicação";
 $a->strings["Automatic Permissions Settings"] = "Configurações de permissão automáticas";
@@ -1160,6 +1262,9 @@ $a->strings["Layout Name"] = "Nome do layout";
 $a->strings["Help:"] = "Ajuda:";
 $a->strings["Not Found"] = "Não encontrada";
 $a->strings["Page not found."] = "Página não encontrada.";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Encontramos um problema ao entrar com a OpenID fornecida. Por favor, verifique se digitou corretamente a ID.";
+$a->strings["The error message was:"] = "A mensagem de erro foi:";
+$a->strings["Authentication failed."] = "A autenticação falhou.";
 $a->strings["Remote Authentication"] = "Autenticação remota";
 $a->strings["Enter your channel address (e.g. channel@example.com)"] = "Entre o endereço do seu canal (e.g. canal@exemplo.com)";
 $a->strings["Authenticate"] = "Autenticar";
@@ -1330,7 +1435,7 @@ $a->strings["Version %s"] = "Versão %s";
 $a->strings["Installed plugins/addons/apps:"] = "Plugins/complementos/aplicações instalados:";
 $a->strings["No installed plugins/addons/apps"] = "Nenhum plugin/complemento/aplicação instalado";
 $a->strings["Project Donations"] = "Doações para o projeto";
-$a->strings["<p>The Red Matrix is provided for you by volunteers working in their spare time. Your support will help us to build a better web. Select the following option for a one-time donation of your choosing</p>"] = "<p>A Red Matrix é oferecida a você por voluntários trabalhando no seu tempo livre. Seu apoio irá nos ajudar a construir uma web melhor. Selecione uma das opções abaixo para realizar uma única doação de sua escolha:</p>";
+$a->strings["<p>The Red Matrix is provided for you by volunteers working in their spare time. Your support will help us to build a better, freer, and privacy respecting web. Select the following option for a one-time donation of your choosing</p>"] = "<p>A Red Matrix é oferecida a você por voluntários trabalhando no seu tempo livre. Seu apoio irá nos ajudar a construir uma web melhor, mais livre e com respeito à privacidade. Selecione uma das opções abaixo para realizar uma única doação de sua escolha:</p>";
 $a->strings["<p>or</p>"] = "<p>ou</p>";
 $a->strings["Recurring Donation Options"] = "Opções para doações recorrentes";
 $a->strings["Red"] = "Red";
@@ -1362,104 +1467,6 @@ $a->strings["Forgot your Password?"] = "Esqueceu a sua senha?";
 $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Digite o seu endereço de e-mail e clique em 'Restaurar' para prosseguir com a restauração da sua senha. Após isso, verifique seu e-mail para mais instruções.";
 $a->strings["Email Address"] = "Endereço de e-mail";
 $a->strings["Reset"] = "Restaurar";
-$a->strings["Name is required"] = "O nome é obrigatório";
-$a->strings["Key and Secret are required"] = "A chave e o segredo são obrigatórios";
-$a->strings["Update"] = "Atualizar";
-$a->strings["Passwords do not match. Password unchanged."] = "As senhas não correspondem. A senha não foi modificada.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Não é permitido uma senha em branco. A senha não foi modificada.";
-$a->strings["Password changed."] = "A senha foi modificada.";
-$a->strings["Password update failed. Please try again."] = "Não foi possível atualizar a senha. Por favor, tente novamente.";
-$a->strings["Not valid email."] = "Não é um e-mail válido";
-$a->strings["Protected email address. Cannot change to that email."] = "Endereço de e-mail protegido. Não é possível mudar para esse e-mail.";
-$a->strings["System failure storing new email. Please try again."] = "Falha do sistema ao armazenar novo e-mail. Por favor, tente novamente.";
-$a->strings["Settings updated."] = "As configurações foram atualizadas.";
-$a->strings["Add application"] = "Adicionar aplicação";
-$a->strings["Name"] = "Nome";
-$a->strings["Name of application"] = "Nome da aplicação";
-$a->strings["Consumer Key"] = "Chave de consumidor";
-$a->strings["Automatically generated - change if desired. Max length 20"] = "Gerado automaticamente - troque se desejável. Comprimento máximo 20";
-$a->strings["Consumer Secret"] = "Segredo de consumidor";
-$a->strings["Redirect"] = "Redirecionamento";
-$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirecionamento - deixe em branco, a não ser que sua aplicação especificamente requeira isso";
-$a->strings["Icon url"] = "URL do ícone";
-$a->strings["Optional"] = "Opcional";
-$a->strings["You can't edit this application."] = "Você não pode editar esta aplicação.";
-$a->strings["Connected Apps"] = "Aplicações conectadas";
-$a->strings["Client key starts with"] = "Chave do cliente começa com";
-$a->strings["No name"] = "Sem nome";
-$a->strings["Remove authorization"] = "Remover autorização";
-$a->strings["No feature settings configured"] = "Não foi definida nenhuma configuração do recurso";
-$a->strings["Feature Settings"] = "Configurações do recurso";
-$a->strings["Account Settings"] = "Configurações da conta";
-$a->strings["Password Settings"] = "Configurações da senha";
-$a->strings["New Password:"] = "Nova senha:";
-$a->strings["Confirm:"] = "Confirme:";
-$a->strings["Leave password fields blank unless changing"] = "Deixe os campos de senha em branco, a não ser que você queira alterá-la";
-$a->strings["Email Address:"] = "Endereço de e-mail:";
-$a->strings["Remove Account"] = "Remover conta";
-$a->strings["Warning: This action is permanent and cannot be reversed."] = "Atenção: Esta ação é permanente e não pode ser revertida.";
-$a->strings["Off"] = "Desligado";
-$a->strings["On"] = "Ligado";
-$a->strings["Additional Features"] = "Recursos adicionais";
-$a->strings["Connector Settings"] = "Configurações do conector";
-$a->strings["Display Settings"] = "Configurações de exibição";
-$a->strings["Display Theme:"] = "Tema do perfil:";
-$a->strings["Mobile Theme:"] = "Tema móvel:";
-$a->strings["Update browser every xx seconds"] = "Atualizar navegador a cada xx segundos";
-$a->strings["Minimum of 10 seconds, no maximum"] = "Mínimo de 10 segundos, sem máximo";
-$a->strings["Maximum number of conversations to load at any time:"] = "Número máximo permitido de conversas carregadas:";
-$a->strings["Maximum of 100 items"] = "Máximo de 100 itens";
-$a->strings["Don't show emoticons"] = "Não exibir emoticons";
-$a->strings["Do not view remote profiles in frames"] = "Não exibir perfis remotos em frames";
-$a->strings["By default open in a sub-window of your own site"] = "Por padrão, abrir em uma sub-janela do seu próprio site";
-$a->strings["Nobody except yourself"] = "Ninguém exceto você mesmo";
-$a->strings["Only those you specifically allow"] = "Apenas quem você der permissão";
-$a->strings["Anybody in your address book"] = "Qualquer um nos seus contatos";
-$a->strings["Anybody on this website"] = "Qualquer um neste site";
-$a->strings["Anybody in this network"] = "Qualquer um nesta rede";
-$a->strings["Anybody on the internet"] = "Qualquer um na internet";
-$a->strings["Publish your default profile in the network directory"] = "Publicar seu perfil padrão no diretório da rede?";
-$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Permitir sugerir você como amigo potencial para outros membros?";
-$a->strings["or"] = "ou";
-$a->strings["Your channel address is"] = "O endereço do seu canal é";
-$a->strings["Channel Settings"] = "Configurações do canal";
-$a->strings["Basic Settings"] = "Configurações básicas";
-$a->strings["Your Timezone:"] = "Seu fuso horário:";
-$a->strings["Default Post Location:"] = "Localização padrão de suas publicações:";
-$a->strings["Use Browser Location:"] = "Usar localizador do navegador:";
-$a->strings["Adult Content"] = "Conteúdo adulto";
-$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Este canal frequentemente ou regularmente publica conteúdo adulto. (Por favor marque qualquer material adulto e/ou nudez com #NSFW)";
-$a->strings["Security and Privacy Settings"] = "Configurações de segurança e privacidade";
-$a->strings["Hide my online presence"] = "Esconda minha presença online";
-$a->strings["Prevents displaying in your profile that you are online"] = "Previne exibir em seu perfil que você está online";
-$a->strings["Simple Privacy Settings:"] = "Configurações de privacidade simples:";
-$a->strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "Muito público - <em>extremamente permissivo (deve ser usado com cuidado)</em>";
-$a->strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "Típico - <em>público por padrão, privado quando desejável (similar às permissões de redes sociais, mas com melhor privacidade)</em>";
-$a->strings["Private - <em>default private, never open or public</em>"] = "Privado - <em>privado por padrão, nunca aberto ou público</em>";
-$a->strings["Blocked - <em>default blocked to/from everybody</em>"] = "Bloqueado - <em>por padrão bloquado de/para todos</em>";
-$a->strings["Advanced Privacy Settings"] = "Configurações de privacidade avançadas";
-$a->strings["Maximum Friend Requests/Day:"] = "Número máximo de requisições de amizade por dia:";
-$a->strings["May reduce spam activity"] = "Pode reduzir a frequência de spam";
-$a->strings["Default Post Permissions"] = "Permissões padrão de publicação";
-$a->strings["Maximum private messages per day from unknown people:"] = "Máximo número de mensagens privadas por dia de pessoas desconhecidas:";
-$a->strings["Useful to reduce spamming"] = "Útil para reduzir a frequência de spam";
-$a->strings["Notification Settings"] = "Configurações de notificação";
-$a->strings["By default post a status message when:"] = "Por padrão, publicar uma mensagem de status quando:";
-$a->strings["accepting a friend request"] = "aceitar um pedido de amizade";
-$a->strings["joining a forum/community"] = "associar-se a um fórum/comunidade";
-$a->strings["making an <em>interesting</em> profile change"] = "modificar algo <em>interessante</em> em seu perfil";
-$a->strings["Send a notification email when:"] = "Enviar um e-mail de notificação quando:";
-$a->strings["You receive an introduction"] = "Você recebeu uma apresentação";
-$a->strings["Your introductions are confirmed"] = "Suas solicitações forem confirmadas";
-$a->strings["Someone writes on your profile wall"] = "Alguém escrever no mural do seu perfil";
-$a->strings["Someone writes a followup comment"] = "Alguém comentou a sua mensagem";
-$a->strings["You receive a private message"] = "Você recebeu uma mensagem privada";
-$a->strings["You receive a friend suggestion"] = "Você recebe uma sugestão de amizade";
-$a->strings["You are tagged in a post"] = "Você é mencionado num post";
-$a->strings["You are poked/prodded/etc. in a post"] = "Você foi cutucado/espetado/etc. numa publicação";
-$a->strings["Advanced Account/Page Type Settings"] = "Configurações avançadas de conta/tipo de página";
-$a->strings["Change the behaviour of this account for special situations"] = "Mudar o comportamento dessa conta em situações especiais";
-$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Por favor, habilite o modo expert (em Configurações > Recursos adicionais) para ajustar!";
 $a->strings["Nothing to import."] = "Nada a importar.";
 $a->strings["Unable to download data from old server"] = "Não foi possível descarregar os dados do servidor antigo";
 $a->strings["Imported file is empty."] = "O arquivo importado está vazio.";
@@ -1509,6 +1516,7 @@ $a->strings["Private Conversation"] = "Conversa privada";
 $a->strings["Delete conversation"] = "Excluir conversa";
 $a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Comunicação segura indisponível. Você <strong>talvez</strong> consiga responder pela página de perfil do remetente.";
 $a->strings["Send Reply"] = "Enviar resposta";
+$a->strings["OpenID protocol error. No ID returned."] = "Erro do protocolo OpenID. Nenhuma ID retornada.";
 $a->strings["Edit Layout"] = "Editar layout";
 $a->strings["Delete layout?"] = "Deletar layout?";
 $a->strings["Delete Layout"] = "Deletar layout";
@@ -1637,7 +1645,7 @@ $a->strings["You have used %1$.2f Mbytes of photo storage."] = "Você usou %1$.2
 $a->strings["Upload Photos"] = "Enviar fotos";
 $a->strings["New album name: "] = "Novo nome de álbum: ";
 $a->strings["or existing album name: "] = "ou nome de um álbum já existente: ";
-$a->strings["Do not show a status post for this upload"] = "Não mostrar uma publicação de status para este carregamento";
+$a->strings["Do not show a status post for this upload"] = "Não exibir uma publicação de status para este carregamento";
 $a->strings["Contact Photos"] = "Fotos dos contatos";
 $a->strings["Edit Album"] = "Editar o álbum";
 $a->strings["Show Newest First"] = "Exibir primeiro os mais recentes";
-- 
cgit v1.2.3


From 59211e0ac82f285dde81cc2c384a5fb807241d20 Mon Sep 17 00:00:00 2001
From: Alexandre Hannud Abdo <abdo@member.fsf.org>
Date: Mon, 24 Feb 2014 17:47:57 -0300
Subject: Translation for jQuery.divgrow strings. Fix mismatch in
 jQuery.timeago strings

---
 view/js/main.js         |  2 +-
 view/tpl/js_strings.tpl | 24 +++++++++++++-----------
 2 files changed, 14 insertions(+), 12 deletions(-)

(limited to 'view')

diff --git a/view/js/main.js b/view/js/main.js
index fa96596f4..5f88ea9ca 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -535,7 +535,7 @@ function updateConvItems(mode,data) {
 		$(".wall-item-body").each(function() {
 				if($(this).height() > 410) {
 				if(! $(this).hasClass('divmore')) {
-					$(this).divgrow({ initialHeight: 400, showBrackets: false });
+					$(this).divgrow({ initialHeight: 400, moreText: aStr['divgrowmore'], lessText: aStr['divgrowless'], showBrackets: false });
 					$(this).addClass('divmore');
 				}
 			}					
diff --git a/view/tpl/js_strings.tpl b/view/tpl/js_strings.tpl
index 9eb552767..cb0e8d24a 100755
--- a/view/tpl/js_strings.tpl
+++ b/view/tpl/js_strings.tpl
@@ -2,18 +2,20 @@
 
 	var aStr = {
 
-		'delitem'    : "{{$delitem}}",
-		'comment'    : "{{$comment}}",
-		'showmore'   : "{{$showmore}}",
-		'showfewer'  : "{{$showfewer}}",
-		'pwshort'    : "{{$pwshort}}",
-		'pwnomatch'  : "{{$pwnomatch}}",
-		'everybody'  : "{{$everybody}}",
-		'passphrase' : "{{$passphrase}}",
-		'passhint'   : "{{$passhint}}",
+		'delitem'     : "{{$delitem}}",
+		'comment'     : "{{$comment}}",
+		'showmore'    : "{{$showmore}}",
+		'showfewer'   : "{{$showfewer}}",
+		'divgrowmore' : "{{$divshowmore}}",
+		'divgrowless' : "{{$divshowless}}",
+		'pwshort'     : "{{$pwshort}}",
+		'pwnomatch'   : "{{$pwnomatch}}",
+		'everybody'   : "{{$everybody}}",
+		'passphrase'  : "{{$passphrase}}",
+		'passhint'    : "{{$passhint}}",
 
-		't01' :  {{$t01}},
-		't02' :  {{$t02}},
+		't01' : "{{$t01}}",
+		't02' : "{{$t02}}",
 		't03' : "{{$t03}}",
 		't04' : "{{$t04}}",
 		't05' : "{{$t05}}",
-- 
cgit v1.2.3


From 5691a609c407b0c70a38b3b1e17d5c070e985931 Mon Sep 17 00:00:00 2001
From: Alexandre Hannud Abdo <abdo@member.fsf.org>
Date: Tue, 25 Feb 2014 01:12:27 -0300
Subject: Fix typo that broke jquery.divgrow. Sorry I should have tested.

---
 view/tpl/js_strings.tpl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'view')

diff --git a/view/tpl/js_strings.tpl b/view/tpl/js_strings.tpl
index cb0e8d24a..fe5228ee9 100755
--- a/view/tpl/js_strings.tpl
+++ b/view/tpl/js_strings.tpl
@@ -6,8 +6,8 @@
 		'comment'     : "{{$comment}}",
 		'showmore'    : "{{$showmore}}",
 		'showfewer'   : "{{$showfewer}}",
-		'divgrowmore' : "{{$divshowmore}}",
-		'divgrowless' : "{{$divshowless}}",
+		'divgrowmore' : "{{$divgrowmore}}",
+		'divgrowless' : "{{$divgrowless}}",
 		'pwshort'     : "{{$pwshort}}",
 		'pwnomatch'   : "{{$pwnomatch}}",
 		'everybody'   : "{{$everybody}}",
-- 
cgit v1.2.3


From 2becbae4022f6c418aa455e7477c00560bcd8b41 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Mon, 24 Feb 2014 20:46:52 -0800
Subject: remote "add bookmark" - like rpost but saves a bookmark from a remote
 hub into one of your own bookmark folders (or a new one if desired).

---
 view/tpl/rbmark.tpl | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 view/tpl/rbmark.tpl

(limited to 'view')

diff --git a/view/tpl/rbmark.tpl b/view/tpl/rbmark.tpl
new file mode 100644
index 000000000..bead1de2f
--- /dev/null
+++ b/view/tpl/rbmark.tpl
@@ -0,0 +1,16 @@
+<h3>{{$header}}</h3>
+
+
+<form action="rbmark" method="post" >
+
+<input type="hidden" name="private" value="{{$private}}" />
+<input type="hidden" name="ischat" value="{{$ischat}}" />
+
+{{include file="field_input.tpl" field=$url}}
+{{include file="field_input.tpl" field=$title}}
+{{include file="field_select.tpl" field=$menus}}
+{{include file="field_input.tpl" field=$menu_name}}
+
+<input type="submit" name="submit" value="{{$submit}}" />
+
+</form>
-- 
cgit v1.2.3


From b1021df485fb6129acda5bba616bac10aea75a45 Mon Sep 17 00:00:00 2001
From: friendica <info@friendica.com>
Date: Mon, 24 Feb 2014 21:34:49 -0800
Subject: provide ability to bookmark chatrooms using rbmark

---
 view/tpl/chat.tpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'view')

diff --git a/view/tpl/chat.tpl b/view/tpl/chat.tpl
index 51aeb836e..acb7e5bef 100644
--- a/view/tpl/chat.tpl
+++ b/view/tpl/chat.tpl
@@ -17,7 +17,7 @@
             <input type="submit" name="submit" value="{{$submit}}" />
         </form>
 
-		<a href="{{$baseurl}}/chat/{{$nickname}}/{{$room_id}}/leave">{{$leave}}</a> | <a href="{{$baseurl}}/chatsvc?f=&room_id={{$room_id}}&status=away">{{$away}}</a> | <a href="{{$baseurl}}/chatsvc?f=&room_id={{$room_id}}&status=online">{{$online}}</a>
+		<a href="{{$baseurl}}/chat/{{$nickname}}/{{$room_id}}/leave">{{$leave}}</a> | <a href="{{$baseurl}}/chatsvc?f=&room_id={{$room_id}}&status=away">{{$away}}</a> | <a href="{{$baseurl}}/chatsvc?f=&room_id={{$room_id}}&status=online">{{$online}}</a>{{if $bookmark_link}} | <a href="{{$bookmark_link}}" target="_blank" >{{$bookmark}}</a>{{/if}}
 
     </div>
 
-- 
cgit v1.2.3