Date: Tue, 2 Apr 2013 09:44:19 -0400
Subject: [PATCH 04/67] uimport: fix file formatting
---
include/uimport.php | 467 ++++++++++++++++++++++----------------------
1 file changed, 230 insertions(+), 237 deletions(-)
diff --git a/include/uimport.php b/include/uimport.php
index 9cfb183f6..12e85c61a 100644
--- a/include/uimport.php
+++ b/include/uimport.php
@@ -1,4 +1,5 @@
mysqli){
- $thedb = $db->getdb();
- return $thedb->insert_id;
- } else {
- return mysql_insert_id();
- }
- }
-
- function last_error(){
- global $db;
- return $db->error;
- }
-
- /**
- * Remove columns from array $arr that aren't in table $table
- *
- * @param string $table Table name
- * @param array &$arr Column=>Value array from json (by ref)
- */
- function check_cols($table, &$arr){
- $query = sprintf("SHOW COLUMNS IN `%s`", dbesc($table));
- logger("uimport: $query", LOGGER_DEBUG);
+function last_insert_id() {
+ global $db;
+ if (IMPORT_DEBUG)
+ return 1;
+ if ($db->mysqli) {
+ $thedb = $db->getdb();
+ return $thedb->insert_id;
+ } else {
+ return mysql_insert_id();
+ }
+}
+
+function last_error() {
+ global $db;
+ return $db->error;
+}
+
+/**
+ * Remove columns from array $arr that aren't in table $table
+ *
+ * @param string $table Table name
+ * @param array &$arr Column=>Value array from json (by ref)
+ */
+function check_cols($table, &$arr) {
+ $query = sprintf("SHOW COLUMNS IN `%s`", dbesc($table));
+ logger("uimport: $query", LOGGER_DEBUG);
$r = q($query);
$tcols = array();
// get a plain array of column names
- foreach($r as $tcol) {
+ foreach ($r as $tcol) {
$tcols[] = $tcol['Field'];
}
// remove inexistent columns
- foreach($arr as $icol=>$ival) {
+ foreach ($arr as $icol => $ival) {
if (!in_array($icol, $tcols)) {
unset($arr[$icol]);
}
}
- }
-
- /**
- * Import data into table $table
- *
- * @param string $table Table name
- * @param array $arr Column=>Value array from json
- */
- function db_import_assoc($table, $arr){
- if (isset($arr['id'])) unset($arr['id']);
- check_cols($table, $arr);
- $cols = implode("`,`", array_map('dbesc', array_keys($arr)));
- $vals = implode("','", array_map('dbesc', array_values($arr)));
- $query = "INSERT INTO `$table` (`$cols`) VALUES ('$vals')";
- logger("uimport: $query",LOGGER_TRACE);
- if (IMPORT_DEBUG) return true;
- return q($query);
- }
+}
+
+/**
+ * Import data into table $table
+ *
+ * @param string $table Table name
+ * @param array $arr Column=>Value array from json
+ */
+function db_import_assoc($table, $arr) {
+ if (isset($arr['id']))
+ unset($arr['id']);
+ check_cols($table, $arr);
+ $cols = implode("`,`", array_map('dbesc', array_keys($arr)));
+ $vals = implode("','", array_map('dbesc', array_values($arr)));
+ $query = "INSERT INTO `$table` (`$cols`) VALUES ('$vals')";
+ logger("uimport: $query", LOGGER_TRACE);
+ if (IMPORT_DEBUG)
+ return true;
+ return q($query);
+}
function import_cleanup($newuid) {
- q("DELETE FROM `user` WHERE uid = %d", $newuid);
- q("DELETE FROM `contact` WHERE uid = %d", $newuid);
- q("DELETE FROM `profile` WHERE uid = %d", $newuid);
- q("DELETE FROM `photo` WHERE uid = %d", $newuid);
- q("DELETE FROM `group` WHERE uid = %d", $newuid);
- q("DELETE FROM `group_member` WHERE uid = %d", $newuid);
- q("DELETE FROM `pconfig` WHERE uid = %d", $newuid);
-
+ q("DELETE FROM `user` WHERE uid = %d", $newuid);
+ q("DELETE FROM `contact` WHERE uid = %d", $newuid);
+ q("DELETE FROM `profile` WHERE uid = %d", $newuid);
+ q("DELETE FROM `photo` WHERE uid = %d", $newuid);
+ q("DELETE FROM `group` WHERE uid = %d", $newuid);
+ q("DELETE FROM `group_member` WHERE uid = %d", $newuid);
+ q("DELETE FROM `pconfig` WHERE uid = %d", $newuid);
}
function import_account(&$a, $file) {
- logger("Start user import from ".$file['tmp_name']);
- /*
- STEPS
- 1. checks
- 2. replace old baseurl with new baseurl
- 3. import data (look at user id and contacts id)
- 4. archive non-dfrn contacts
- 5. send message to dfrn contacts
- */
+ logger("Start user import from " . $file['tmp_name']);
+ /*
+ STEPS
+ 1. checks
+ 2. replace old baseurl with new baseurl
+ 3. import data (look at user id and contacts id)
+ 4. archive non-dfrn contacts
+ 5. send message to dfrn contacts
+ */
+
+ $account = json_decode(file_get_contents($file['tmp_name']), true);
+ if ($account === null) {
+ notice(t("Error decoding account file"));
+ return;
+ }
+
+
+ if (!x($account, 'version')) {
+ notice(t("Error! No version data in file! This is not a Friendica account file?"));
+ return;
+ }
+
+ if ($account['schema'] != DB_UPDATE_VERSION) {
+ notice(t("Error! I can't import this file: DB schema version is not compatible."));
+ return;
+ }
- $account = json_decode(file_get_contents($file['tmp_name']), true);
- if ($account===null) {
- notice(t("Error decoding account file"));
- return;
- }
-
- if (!x($account, 'version')) {
- notice(t("Error! No version data in file! This is not a Friendica account file?"));
- return;
- }
-
- if ($account['schema'] != DB_UPDATE_VERSION) {
- notice(t("Error! I can't import this file: DB schema version is not compatible."));
- return;
- }
-
-
// check for username
$r = q("SELECT uid FROM user WHERE nickname='%s'", $account['user']['nickname']);
- if ($r===false) {
- logger("uimport:check nickname : ERROR : ".last_error(), LOGGER_NORMAL);
+ if ($r === false) {
+ logger("uimport:check nickname : ERROR : " . last_error(), LOGGER_NORMAL);
notice(t('Error! Cannot check nickname'));
return;
}
- if (count($r)>0) {
- notice(sprintf(t("User '%s' already exists on this server!"),$account['user']['nickname']));
+ if (count($r) > 0) {
+ notice(sprintf(t("User '%s' already exists on this server!"), $account['user']['nickname']));
return;
}
- $oldbaseurl = $account['baseurl'];
- $newbaseurl = $a->get_baseurl();
- $olduid = $account['user']['uid'];
-
- unset($account['user']['uid']);
- foreach($account['user'] as $k => &$v) {
- $v = str_replace($oldbaseurl, $newbaseurl, $v);
- }
+ $oldbaseurl = $account['baseurl'];
+ $newbaseurl = $a->get_baseurl();
+ $olduid = $account['user']['uid'];
-
- // import user
- $r = db_import_assoc('user', $account['user']);
- if ($r===false) {
- //echo ""; var_dump($r, $query, mysql_error()); killme();
- logger("uimport:insert user : ERROR : ".last_error(), LOGGER_NORMAL);
- notice(t("User creation error"));
- return;
- }
- $newuid = last_insert_id();
- //~ $newuid = 1;
-
+ unset($account['user']['uid']);
+ foreach ($account['user'] as $k => &$v) {
+ $v = str_replace($oldbaseurl, $newbaseurl, $v);
+ }
- foreach($account['profile'] as &$profile) {
- foreach($profile as $k=>&$v) {
- $v = str_replace($oldbaseurl, $newbaseurl, $v);
- foreach(array("profile","avatar") as $k)
- $v = str_replace($newbaseurl."/photo/".$k."/".$olduid.".jpg", $newbaseurl."/photo/".$k."/".$newuid.".jpg", $v);
- }
- $profile['uid'] = $newuid;
- $r = db_import_assoc('profile', $profile);
- if ($r===false) {
- logger("uimport:insert profile ".$profile['profile-name']." : ERROR : ".last_error(), LOGGER_NORMAL);
- info(t("User profile creation error"));
- import_cleanup($newuid);
- return;
- }
- }
-
- $errorcount=0;
- foreach($account['contact'] as &$contact) {
- if ($contact['uid'] == $olduid && $contact['self'] == '1'){
- foreach($contact as $k=>&$v) {
- $v = str_replace($oldbaseurl, $newbaseurl, $v);
- foreach(array("profile","avatar","micro") as $k)
- $v = str_replace($newbaseurl."/photo/".$k."/".$olduid.".jpg", $newbaseurl."/photo/".$k."/".$newuid.".jpg", $v);
- }
- }
- if ($contact['uid'] == $olduid && $contact['self'] == '0') {
- switch ($contact['network']){
- case NETWORK_DFRN:
- // send relocate message (below)
- break;
- case NETWORK_ZOT:
- // TODO handle zot network
- break;
- case NETWORK_MAIL2:
- // TODO ?
- break;
- case NETWORK_FEED:
- case NETWORK_MAIL:
- // Nothing to do
- break;
- default:
- // archive other contacts
- $contact['archive'] = "1";
- }
- }
- $contact['uid'] = $newuid;
- $r = db_import_assoc('contact', $contact);
- if ($r===false) {
- logger("uimport:insert contact ".$contact['nick'].",".$contact['network']." : ERROR : ".last_error(), LOGGER_NORMAL);
- $errorcount++;
- } else {
- $contact['newid'] = last_insert_id();
- }
- }
- if ($errorcount>0) {
- notice( sprintf(tt("%d contact not imported", "%d contacts not imported", $errorcount), $errorcount) );
- }
-
- foreach($account['group'] as &$group) {
- $group['uid'] = $newuid;
- $r = db_import_assoc('group', $group);
- if ($r===false) {
- logger("uimport:insert group ".$group['name']." : ERROR : ".last_error(), LOGGER_NORMAL);
- } else {
- $group['newid'] = last_insert_id();
- }
- }
-
- foreach($account['group_member'] as &$group_member) {
- $group_member['uid'] = $newuid;
-
- $import = 0;
- foreach($account['group'] as $group) {
- if ($group['id'] == $group_member['gid'] && isset($group['newid'])) {
- $group_member['gid'] = $group['newid'];
- $import++;
- break;
- }
- }
- foreach($account['contact'] as $contact) {
- if ($contact['id'] == $group_member['contact-id'] && isset($contact['newid'])) {
- $group_member['contact-id'] = $contact['newid'];
- $import++;
- break;
- }
- }
- if ($import==2) {
- $r = db_import_assoc('group_member', $group_member);
- if ($r===false) {
- logger("uimport:insert group member ".$group_member['id']." : ERROR : ".last_error(), LOGGER_NORMAL);
- }
- }
- }
+ // import user
+ $r = db_import_assoc('user', $account['user']);
+ if ($r === false) {
+ //echo ""; var_dump($r, $query, mysql_error()); killme();
+ logger("uimport:insert user : ERROR : " . last_error(), LOGGER_NORMAL);
+ notice(t("User creation error"));
+ return;
+ }
+ $newuid = last_insert_id();
+ //~ $newuid = 1;
-
-
- foreach($account['photo'] as &$photo) {
- $photo['uid'] = $newuid;
- $photo['data'] = hex2bin($photo['data']);
-
- $p = new Photo($photo['data'], $photo['type']);
- $r = $p->store(
- $photo['uid'],
- $photo['contact-id'], //0
- $photo['resource-id'],
- $photo['filename'],
- $photo['album'],
- $photo['scale'],
- $photo['profile'], //1
- $photo['allow_cid'],
- $photo['allow_gid'],
- $photo['deny_cid'],
- $photo['deny_gid']
- );
-
- if ($r===false) {
- logger("uimport:insert photo ".$photo['resource-id'].",". $photo['scale']. " : ERROR : ".last_error(), LOGGER_NORMAL);
- }
- }
-
- foreach($account['pconfig'] as &$pconfig) {
- $pconfig['uid'] = $newuid;
- $r = db_import_assoc('pconfig', $pconfig);
- if ($r===false) {
- logger("uimport:insert pconfig ".$pconfig['id']. " : ERROR : ".last_error(), LOGGER_NORMAL);
- }
- }
-
- // send relocate messages
- proc_run('php', 'include/notifier.php', 'relocate' , $newuid);
-
- info(t("Done. You can now login with your username and password"));
- goaway( $a->get_baseurl() ."/login");
-
-
+ foreach ($account['profile'] as &$profile) {
+ foreach ($profile as $k => &$v) {
+ $v = str_replace($oldbaseurl, $newbaseurl, $v);
+ foreach (array("profile", "avatar") as $k)
+ $v = str_replace($newbaseurl . "/photo/" . $k . "/" . $olduid . ".jpg", $newbaseurl . "/photo/" . $k . "/" . $newuid . ".jpg", $v);
+ }
+ $profile['uid'] = $newuid;
+ $r = db_import_assoc('profile', $profile);
+ if ($r === false) {
+ logger("uimport:insert profile " . $profile['profile-name'] . " : ERROR : " . last_error(), LOGGER_NORMAL);
+ info(t("User profile creation error"));
+ import_cleanup($newuid);
+ return;
+ }
+ }
+
+ $errorcount = 0;
+ foreach ($account['contact'] as &$contact) {
+ if ($contact['uid'] == $olduid && $contact['self'] == '1') {
+ foreach ($contact as $k => &$v) {
+ $v = str_replace($oldbaseurl, $newbaseurl, $v);
+ foreach (array("profile", "avatar", "micro") as $k)
+ $v = str_replace($newbaseurl . "/photo/" . $k . "/" . $olduid . ".jpg", $newbaseurl . "/photo/" . $k . "/" . $newuid . ".jpg", $v);
+ }
+ }
+ if ($contact['uid'] == $olduid && $contact['self'] == '0') {
+ switch ($contact['network']) {
+ case NETWORK_DFRN:
+ // send relocate message (below)
+ break;
+ case NETWORK_ZOT:
+ // TODO handle zot network
+ break;
+ case NETWORK_MAIL2:
+ // TODO ?
+ break;
+ case NETWORK_FEED:
+ case NETWORK_MAIL:
+ // Nothing to do
+ break;
+ default:
+ // archive other contacts
+ $contact['archive'] = "1";
+ }
+ }
+ $contact['uid'] = $newuid;
+ $r = db_import_assoc('contact', $contact);
+ if ($r === false) {
+ logger("uimport:insert contact " . $contact['nick'] . "," . $contact['network'] . " : ERROR : " . last_error(), LOGGER_NORMAL);
+ $errorcount++;
+ } else {
+ $contact['newid'] = last_insert_id();
+ }
+ }
+ if ($errorcount > 0) {
+ notice(sprintf(tt("%d contact not imported", "%d contacts not imported", $errorcount), $errorcount));
+ }
+
+ foreach ($account['group'] as &$group) {
+ $group['uid'] = $newuid;
+ $r = db_import_assoc('group', $group);
+ if ($r === false) {
+ logger("uimport:insert group " . $group['name'] . " : ERROR : " . last_error(), LOGGER_NORMAL);
+ } else {
+ $group['newid'] = last_insert_id();
+ }
+ }
+
+ foreach ($account['group_member'] as &$group_member) {
+ $group_member['uid'] = $newuid;
+
+ $import = 0;
+ foreach ($account['group'] as $group) {
+ if ($group['id'] == $group_member['gid'] && isset($group['newid'])) {
+ $group_member['gid'] = $group['newid'];
+ $import++;
+ break;
+ }
+ }
+ foreach ($account['contact'] as $contact) {
+ if ($contact['id'] == $group_member['contact-id'] && isset($contact['newid'])) {
+ $group_member['contact-id'] = $contact['newid'];
+ $import++;
+ break;
+ }
+ }
+ if ($import == 2) {
+ $r = db_import_assoc('group_member', $group_member);
+ if ($r === false) {
+ logger("uimport:insert group member " . $group_member['id'] . " : ERROR : " . last_error(), LOGGER_NORMAL);
+ }
+ }
+ }
+
+
+
+
+
+ foreach ($account['photo'] as &$photo) {
+ $photo['uid'] = $newuid;
+ $photo['data'] = hex2bin($photo['data']);
+
+ $p = new Photo($photo['data'], $photo['type']);
+ $r = $p->store(
+ $photo['uid'], $photo['contact-id'], //0
+ $photo['resource-id'], $photo['filename'], $photo['album'], $photo['scale'], $photo['profile'], //1
+ $photo['allow_cid'], $photo['allow_gid'], $photo['deny_cid'], $photo['deny_gid']
+ );
+
+ if ($r === false) {
+ logger("uimport:insert photo " . $photo['resource-id'] . "," . $photo['scale'] . " : ERROR : " . last_error(), LOGGER_NORMAL);
+ }
+ }
+
+ foreach ($account['pconfig'] as &$pconfig) {
+ $pconfig['uid'] = $newuid;
+ $r = db_import_assoc('pconfig', $pconfig);
+ if ($r === false) {
+ logger("uimport:insert pconfig " . $pconfig['id'] . " : ERROR : " . last_error(), LOGGER_NORMAL);
+ }
+ }
+
+ // send relocate messages
+ proc_run('php', 'include/notifier.php', 'relocate', $newuid);
+
+ info(t("Done. You can now login with your username and password"));
+ goaway($a->get_baseurl() . "/login");
}
From e77521c42ffbd6983ea20d32a3a5ca3de834d238 Mon Sep 17 00:00:00 2001
From: Tobias Diekershoff
Date: Wed, 3 Apr 2013 09:28:37 +0200
Subject: [PATCH 05/67] PL: update to the strings
---
view/pl/messages.po | 6 +++---
view/pl/strings.php | 4 ++--
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/view/pl/messages.po b/view/pl/messages.po
index e02bfdf71..17bb72220 100644
--- a/view/pl/messages.po
+++ b/view/pl/messages.po
@@ -32,7 +32,7 @@ msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
"POT-Creation-Date: 2013-03-19 03:30-0700\n"
-"PO-Revision-Date: 2013-03-25 12:31+0000\n"
+"PO-Revision-Date: 2013-04-02 08:42+0000\n"
"Last-Translator: Cyryl Sochacki \n"
"Language-Team: Polish (http://www.transifex.com/projects/p/friendica/language/pl/)\n"
"MIME-Version: 1.0\n"
@@ -6782,7 +6782,7 @@ msgstr "włącz status gwiazdy"
#: ../../mod/content.php:781 ../../object/Item.php:216
msgid "starred"
-msgstr ""
+msgstr "gwiazdką"
#: ../../mod/content.php:782 ../../object/Item.php:221
msgid "add tag"
@@ -7097,4 +7097,4 @@ msgstr "Tylko ty możesz to zobaczyć"
#: ../../index.php:405
msgid "toggle mobile"
-msgstr ""
+msgstr "przełącz na mobilny"
diff --git a/view/pl/strings.php b/view/pl/strings.php
index 6e1439488..466daf232 100644
--- a/view/pl/strings.php
+++ b/view/pl/strings.php
@@ -1577,7 +1577,7 @@ $a->strings["Video"] = "Video";
$a->strings["add star"] = "dodaj gwiazdkę";
$a->strings["remove star"] = "anuluj gwiazdkę";
$a->strings["toggle star status"] = "włącz status gwiazdy";
-$a->strings["starred"] = "";
+$a->strings["starred"] = "gwiazdką";
$a->strings["add tag"] = "dodaj tag";
$a->strings["save to folder"] = "zapisz w folderze";
$a->strings["to"] = "do";
@@ -1648,4 +1648,4 @@ $a->strings["Status Messages and Posts"] = "Status wiadomości i postów";
$a->strings["Profile Details"] = "Szczegóły profilu";
$a->strings["Events and Calendar"] = "Wydarzenia i kalendarz";
$a->strings["Only You Can See This"] = "Tylko ty możesz to zobaczyć";
-$a->strings["toggle mobile"] = "";
+$a->strings["toggle mobile"] = "przełącz na mobilny";
From db0bb50e37c4094c650a7205eeace6e1aa90aa6f Mon Sep 17 00:00:00 2001
From: friendica
Date: Wed, 3 Apr 2013 16:28:49 -0700
Subject: [PATCH 06/67] rev update
---
boot.php | 2 +-
util/messages.po | 882 +++++++++++++++++++++++------------------------
2 files changed, 442 insertions(+), 442 deletions(-)
diff --git a/boot.php b/boot.php
index faaa124e0..e70bd64f7 100644
--- a/boot.php
+++ b/boot.php
@@ -12,7 +12,7 @@ require_once('library/Mobile_Detect/Mobile_Detect.php');
require_once('include/features.php');
define ( 'FRIENDICA_PLATFORM', 'Friendica');
-define ( 'FRIENDICA_VERSION', '3.1.1644' );
+define ( 'FRIENDICA_VERSION', '3.1.1659' );
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
define ( 'DB_UPDATE_VERSION', 1163 );
define ( 'EOL', " \r\n" );
diff --git a/util/messages.po b/util/messages.po
index c5595622b..796c185b5 100644
--- a/util/messages.po
+++ b/util/messages.po
@@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: 3.1.1644\n"
+"Project-Id-Version: 3.1.1659\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-19 03:30-0700\n"
+"POT-Creation-Date: 2013-04-03 00:02-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -2190,7 +2190,7 @@ msgstr ""
msgid "Site map"
msgstr ""
-#: ../../include/network.php:875
+#: ../../include/network.php:876
msgid "view full size"
msgstr ""
@@ -2412,18 +2412,18 @@ msgstr ""
#: ../../mod/profiles.php:626 ../../mod/contacts.php:386
#: ../../mod/settings.php:560 ../../mod/settings.php:670
#: ../../mod/settings.php:739 ../../mod/settings.php:811
-#: ../../mod/settings.php:1037 ../../mod/crepair.php:166
-#: ../../mod/poke.php:199 ../../mod/admin.php:480 ../../mod/admin.php:751
+#: ../../mod/settings.php:1037 ../../mod/admin.php:480 ../../mod/admin.php:751
#: ../../mod/admin.php:890 ../../mod/admin.php:1090 ../../mod/admin.php:1177
-#: ../../mod/events.php:478 ../../mod/fsuggest.php:107 ../../mod/group.php:87
-#: ../../mod/invite.php:140 ../../mod/localtime.php:45
-#: ../../mod/manage.php:110 ../../mod/message.php:335
-#: ../../mod/message.php:564 ../../mod/mood.php:137 ../../mod/photos.php:1078
-#: ../../mod/photos.php:1199 ../../mod/photos.php:1501
-#: ../../mod/photos.php:1552 ../../mod/photos.php:1596
-#: ../../mod/photos.php:1679 ../../mod/install.php:248
-#: ../../mod/install.php:286 ../../mod/content.php:733
-#: ../../object/Item.php:653 ../../view/theme/cleanzero/config.php:80
+#: ../../mod/crepair.php:166 ../../mod/poke.php:199 ../../mod/events.php:478
+#: ../../mod/fsuggest.php:107 ../../mod/group.php:87 ../../mod/invite.php:140
+#: ../../mod/localtime.php:45 ../../mod/manage.php:110
+#: ../../mod/message.php:335 ../../mod/message.php:564 ../../mod/mood.php:137
+#: ../../mod/photos.php:1078 ../../mod/photos.php:1199
+#: ../../mod/photos.php:1501 ../../mod/photos.php:1552
+#: ../../mod/photos.php:1596 ../../mod/photos.php:1679
+#: ../../mod/install.php:248 ../../mod/install.php:286
+#: ../../mod/content.php:733 ../../object/Item.php:653
+#: ../../view/theme/cleanzero/config.php:80
#: ../../view/theme/diabook/config.php:152
#: ../../view/theme/diabook/theme.php:642 ../../view/theme/dispy/config.php:70
#: ../../view/theme/quattro/config.php:64
@@ -3359,7 +3359,7 @@ msgid "Add application"
msgstr ""
#: ../../mod/settings.php:562 ../../mod/settings.php:588
-#: ../../mod/crepair.php:148 ../../mod/admin.php:754 ../../mod/admin.php:765
+#: ../../mod/admin.php:754 ../../mod/admin.php:765 ../../mod/crepair.php:148
msgid "Name"
msgstr ""
@@ -3825,431 +3825,6 @@ msgstr ""
msgid "Change the behaviour of this account for special situations"
msgstr ""
-#: ../../mod/share.php:44
-msgid "link"
-msgstr ""
-
-#: ../../mod/crepair.php:102
-msgid "Contact settings applied."
-msgstr ""
-
-#: ../../mod/crepair.php:104
-msgid "Contact update failed."
-msgstr ""
-
-#: ../../mod/crepair.php:129 ../../mod/dfrn_confirm.php:118
-#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
-msgid "Contact not found."
-msgstr ""
-
-#: ../../mod/crepair.php:135
-msgid "Repair Contact Settings"
-msgstr ""
-
-#: ../../mod/crepair.php:137
-msgid ""
-"WARNING: This is highly advanced and if you enter incorrect "
-"information your communications with this contact may stop working."
-msgstr ""
-
-#: ../../mod/crepair.php:138
-msgid ""
-"Please use your browser 'Back' button now if you are "
-"uncertain what to do on this page."
-msgstr ""
-
-#: ../../mod/crepair.php:144
-msgid "Return to contact editor"
-msgstr ""
-
-#: ../../mod/crepair.php:149
-msgid "Account Nickname"
-msgstr ""
-
-#: ../../mod/crepair.php:150
-msgid "@Tagname - overrides Name/Nickname"
-msgstr ""
-
-#: ../../mod/crepair.php:151
-msgid "Account URL"
-msgstr ""
-
-#: ../../mod/crepair.php:152
-msgid "Friend Request URL"
-msgstr ""
-
-#: ../../mod/crepair.php:153
-msgid "Friend Confirm URL"
-msgstr ""
-
-#: ../../mod/crepair.php:154
-msgid "Notification Endpoint URL"
-msgstr ""
-
-#: ../../mod/crepair.php:155
-msgid "Poll/Feed URL"
-msgstr ""
-
-#: ../../mod/crepair.php:156
-msgid "New photo from this URL"
-msgstr ""
-
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr ""
-
-#: ../../mod/delegate.php:123
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr ""
-
-#: ../../mod/delegate.php:124
-msgid "Existing Page Managers"
-msgstr ""
-
-#: ../../mod/delegate.php:126
-msgid "Existing Page Delegates"
-msgstr ""
-
-#: ../../mod/delegate.php:128
-msgid "Potential Delegates"
-msgstr ""
-
-#: ../../mod/delegate.php:130 ../../mod/tagrm.php:93
-msgid "Remove"
-msgstr ""
-
-#: ../../mod/delegate.php:131
-msgid "Add"
-msgstr ""
-
-#: ../../mod/delegate.php:132
-msgid "No entries."
-msgstr ""
-
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
-msgstr ""
-
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr ""
-
-#: ../../mod/poke.php:194
-msgid "Recipient"
-msgstr ""
-
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr ""
-
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr ""
-
-#: ../../mod/dfrn_confirm.php:119
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it "
-"has already been approved."
-msgstr ""
-
-#: ../../mod/dfrn_confirm.php:237
-msgid "Response from remote site was not understood."
-msgstr ""
-
-#: ../../mod/dfrn_confirm.php:246
-msgid "Unexpected response from remote site: "
-msgstr ""
-
-#: ../../mod/dfrn_confirm.php:254
-msgid "Confirmation completed successfully."
-msgstr ""
-
-#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
-#: ../../mod/dfrn_confirm.php:277
-msgid "Remote site reported: "
-msgstr ""
-
-#: ../../mod/dfrn_confirm.php:268
-msgid "Temporary failure. Please wait and try again."
-msgstr ""
-
-#: ../../mod/dfrn_confirm.php:275
-msgid "Introduction failed or was revoked."
-msgstr ""
-
-#: ../../mod/dfrn_confirm.php:420
-msgid "Unable to set contact photo."
-msgstr ""
-
-#: ../../mod/dfrn_confirm.php:562
-#, php-format
-msgid "No user record found for '%s' "
-msgstr ""
-
-#: ../../mod/dfrn_confirm.php:572
-msgid "Our site encryption key is apparently messed up."
-msgstr ""
-
-#: ../../mod/dfrn_confirm.php:583
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr ""
-
-#: ../../mod/dfrn_confirm.php:604
-msgid "Contact record was not found for you on our site."
-msgstr ""
-
-#: ../../mod/dfrn_confirm.php:618
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr ""
-
-#: ../../mod/dfrn_confirm.php:638
-msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr ""
-
-#: ../../mod/dfrn_confirm.php:649
-msgid "Unable to set your contact credentials on our system."
-msgstr ""
-
-#: ../../mod/dfrn_confirm.php:716
-msgid "Unable to update your contact profile details on our system"
-msgstr ""
-
-#: ../../mod/dfrn_confirm.php:751
-#, php-format
-msgid "Connection accepted at %s"
-msgstr ""
-
-#: ../../mod/dfrn_confirm.php:800
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr ""
-
-#: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr ""
-
-#: ../../mod/dfrn_request.php:93
-msgid "This introduction has already been accepted."
-msgstr ""
-
-#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
-msgid "Profile location is not valid or does not contain profile information."
-msgstr ""
-
-#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
-msgid "Warning: profile location has no identifiable owner name."
-msgstr ""
-
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
-msgid "Warning: profile location has no profile photo."
-msgstr ""
-
-#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
-#, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/dfrn_request.php:170
-msgid "Introduction complete."
-msgstr ""
-
-#: ../../mod/dfrn_request.php:209
-msgid "Unrecoverable protocol error."
-msgstr ""
-
-#: ../../mod/dfrn_request.php:237
-msgid "Profile unavailable."
-msgstr ""
-
-#: ../../mod/dfrn_request.php:262
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr ""
-
-#: ../../mod/dfrn_request.php:263
-msgid "Spam protection measures have been invoked."
-msgstr ""
-
-#: ../../mod/dfrn_request.php:264
-msgid "Friends are advised to please try again in 24 hours."
-msgstr ""
-
-#: ../../mod/dfrn_request.php:326
-msgid "Invalid locator"
-msgstr ""
-
-#: ../../mod/dfrn_request.php:335
-msgid "Invalid email address."
-msgstr ""
-
-#: ../../mod/dfrn_request.php:362
-msgid "This account has not been configured for email. Request failed."
-msgstr ""
-
-#: ../../mod/dfrn_request.php:458
-msgid "Unable to resolve your name at the provided location."
-msgstr ""
-
-#: ../../mod/dfrn_request.php:471
-msgid "You have already introduced yourself here."
-msgstr ""
-
-#: ../../mod/dfrn_request.php:475
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr ""
-
-#: ../../mod/dfrn_request.php:496
-msgid "Invalid profile URL."
-msgstr ""
-
-#: ../../mod/dfrn_request.php:592
-msgid "Your introduction has been sent."
-msgstr ""
-
-#: ../../mod/dfrn_request.php:645
-msgid "Please login to confirm introduction."
-msgstr ""
-
-#: ../../mod/dfrn_request.php:659
-msgid ""
-"Incorrect identity currently logged in. Please login to this"
-"strong> profile."
-msgstr ""
-
-#: ../../mod/dfrn_request.php:670
-msgid "Hide this contact"
-msgstr ""
-
-#: ../../mod/dfrn_request.php:673
-#, php-format
-msgid "Welcome home %s."
-msgstr ""
-
-#: ../../mod/dfrn_request.php:674
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr ""
-
-#: ../../mod/dfrn_request.php:675
-msgid "Confirm"
-msgstr ""
-
-#: ../../mod/dfrn_request.php:811
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr ""
-
-#: ../../mod/dfrn_request.php:827
-msgid "Connect as an email follower (Coming soon)"
-msgstr ""
-
-#: ../../mod/dfrn_request.php:829
-msgid ""
-"If you are not yet a member of the free social web, follow this link to find a public Friendica site "
-"and join us today ."
-msgstr ""
-
-#: ../../mod/dfrn_request.php:832
-msgid "Friend/Connection Request"
-msgstr ""
-
-#: ../../mod/dfrn_request.php:833
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr ""
-
-#: ../../mod/dfrn_request.php:834
-msgid "Please answer the following:"
-msgstr ""
-
-#: ../../mod/dfrn_request.php:835
-#, php-format
-msgid "Does %s know you?"
-msgstr ""
-
-#: ../../mod/dfrn_request.php:838
-msgid "Add a personal note:"
-msgstr ""
-
-#: ../../mod/dfrn_request.php:841
-msgid "StatusNet/Federated Social Web"
-msgstr ""
-
-#: ../../mod/dfrn_request.php:843
-#, php-format
-msgid ""
-" - please do not use this form. Instead, enter %s into your Diaspora search "
-"bar."
-msgstr ""
-
-#: ../../mod/dfrn_request.php:844
-msgid "Your Identity Address:"
-msgstr ""
-
-#: ../../mod/dfrn_request.php:847
-msgid "Submit Request"
-msgstr ""
-
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr ""
-
-#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:518
-msgid "Global Directory"
-msgstr ""
-
-#: ../../mod/directory.php:57
-msgid "Find on this site"
-msgstr ""
-
-#: ../../mod/directory.php:60
-msgid "Site Directory"
-msgstr ""
-
-#: ../../mod/directory.php:114
-msgid "Gender: "
-msgstr ""
-
-#: ../../mod/directory.php:187
-msgid "No entries (some entries may be hidden)."
-msgstr ""
-
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr ""
-
-#: ../../mod/suggest.php:72
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr ""
-
-#: ../../mod/suggest.php:90
-msgid "Ignore/Hide"
-msgstr ""
-
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr ""
-
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr ""
-
#: ../../mod/admin.php:55
msgid "Theme settings updated."
msgstr ""
@@ -4969,7 +4544,7 @@ msgid "Clear"
msgstr ""
#: ../../mod/admin.php:1184
-msgid "Debugging"
+msgid "Enable Debugging"
msgstr ""
#: ../../mod/admin.php:1185
@@ -5006,6 +4581,431 @@ msgstr ""
msgid "FTP Password"
msgstr ""
+#: ../../mod/share.php:44
+msgid "link"
+msgstr ""
+
+#: ../../mod/crepair.php:102
+msgid "Contact settings applied."
+msgstr ""
+
+#: ../../mod/crepair.php:104
+msgid "Contact update failed."
+msgstr ""
+
+#: ../../mod/crepair.php:129 ../../mod/dfrn_confirm.php:118
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+msgid "Contact not found."
+msgstr ""
+
+#: ../../mod/crepair.php:135
+msgid "Repair Contact Settings"
+msgstr ""
+
+#: ../../mod/crepair.php:137
+msgid ""
+"WARNING: This is highly advanced and if you enter incorrect "
+"information your communications with this contact may stop working."
+msgstr ""
+
+#: ../../mod/crepair.php:138
+msgid ""
+"Please use your browser 'Back' button now if you are "
+"uncertain what to do on this page."
+msgstr ""
+
+#: ../../mod/crepair.php:144
+msgid "Return to contact editor"
+msgstr ""
+
+#: ../../mod/crepair.php:149
+msgid "Account Nickname"
+msgstr ""
+
+#: ../../mod/crepair.php:150
+msgid "@Tagname - overrides Name/Nickname"
+msgstr ""
+
+#: ../../mod/crepair.php:151
+msgid "Account URL"
+msgstr ""
+
+#: ../../mod/crepair.php:152
+msgid "Friend Request URL"
+msgstr ""
+
+#: ../../mod/crepair.php:153
+msgid "Friend Confirm URL"
+msgstr ""
+
+#: ../../mod/crepair.php:154
+msgid "Notification Endpoint URL"
+msgstr ""
+
+#: ../../mod/crepair.php:155
+msgid "Poll/Feed URL"
+msgstr ""
+
+#: ../../mod/crepair.php:156
+msgid "New photo from this URL"
+msgstr ""
+
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr ""
+
+#: ../../mod/delegate.php:123
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr ""
+
+#: ../../mod/delegate.php:124
+msgid "Existing Page Managers"
+msgstr ""
+
+#: ../../mod/delegate.php:126
+msgid "Existing Page Delegates"
+msgstr ""
+
+#: ../../mod/delegate.php:128
+msgid "Potential Delegates"
+msgstr ""
+
+#: ../../mod/delegate.php:130 ../../mod/tagrm.php:93
+msgid "Remove"
+msgstr ""
+
+#: ../../mod/delegate.php:131
+msgid "Add"
+msgstr ""
+
+#: ../../mod/delegate.php:132
+msgid "No entries."
+msgstr ""
+
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr ""
+
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr ""
+
+#: ../../mod/poke.php:194
+msgid "Recipient"
+msgstr ""
+
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr ""
+
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr ""
+
+#: ../../mod/dfrn_confirm.php:119
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it "
+"has already been approved."
+msgstr ""
+
+#: ../../mod/dfrn_confirm.php:237
+msgid "Response from remote site was not understood."
+msgstr ""
+
+#: ../../mod/dfrn_confirm.php:246
+msgid "Unexpected response from remote site: "
+msgstr ""
+
+#: ../../mod/dfrn_confirm.php:254
+msgid "Confirmation completed successfully."
+msgstr ""
+
+#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
+#: ../../mod/dfrn_confirm.php:277
+msgid "Remote site reported: "
+msgstr ""
+
+#: ../../mod/dfrn_confirm.php:268
+msgid "Temporary failure. Please wait and try again."
+msgstr ""
+
+#: ../../mod/dfrn_confirm.php:275
+msgid "Introduction failed or was revoked."
+msgstr ""
+
+#: ../../mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
+msgstr ""
+
+#: ../../mod/dfrn_confirm.php:562
+#, php-format
+msgid "No user record found for '%s' "
+msgstr ""
+
+#: ../../mod/dfrn_confirm.php:572
+msgid "Our site encryption key is apparently messed up."
+msgstr ""
+
+#: ../../mod/dfrn_confirm.php:583
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr ""
+
+#: ../../mod/dfrn_confirm.php:604
+msgid "Contact record was not found for you on our site."
+msgstr ""
+
+#: ../../mod/dfrn_confirm.php:618
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr ""
+
+#: ../../mod/dfrn_confirm.php:638
+msgid ""
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr ""
+
+#: ../../mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
+msgstr ""
+
+#: ../../mod/dfrn_confirm.php:716
+msgid "Unable to update your contact profile details on our system"
+msgstr ""
+
+#: ../../mod/dfrn_confirm.php:751
+#, php-format
+msgid "Connection accepted at %s"
+msgstr ""
+
+#: ../../mod/dfrn_confirm.php:800
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr ""
+
+#: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr ""
+
+#: ../../mod/dfrn_request.php:93
+msgid "This introduction has already been accepted."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
+msgid "Profile location is not valid or does not contain profile information."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
+msgid "Warning: profile location has no identifiable owner name."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
+msgid "Warning: profile location has no profile photo."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
+#, php-format
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/dfrn_request.php:170
+msgid "Introduction complete."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:209
+msgid "Unrecoverable protocol error."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:237
+msgid "Profile unavailable."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:262
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:263
+msgid "Spam protection measures have been invoked."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:264
+msgid "Friends are advised to please try again in 24 hours."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:326
+msgid "Invalid locator"
+msgstr ""
+
+#: ../../mod/dfrn_request.php:335
+msgid "Invalid email address."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:362
+msgid "This account has not been configured for email. Request failed."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:458
+msgid "Unable to resolve your name at the provided location."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:471
+msgid "You have already introduced yourself here."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:475
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:496
+msgid "Invalid profile URL."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:592
+msgid "Your introduction has been sent."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:645
+msgid "Please login to confirm introduction."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:659
+msgid ""
+"Incorrect identity currently logged in. Please login to this"
+"strong> profile."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:670
+msgid "Hide this contact"
+msgstr ""
+
+#: ../../mod/dfrn_request.php:673
+#, php-format
+msgid "Welcome home %s."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:675
+msgid "Confirm"
+msgstr ""
+
+#: ../../mod/dfrn_request.php:811
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr ""
+
+#: ../../mod/dfrn_request.php:827
+msgid "Connect as an email follower (Coming soon)"
+msgstr ""
+
+#: ../../mod/dfrn_request.php:829
+msgid ""
+"If you are not yet a member of the free social web, follow this link to find a public Friendica site "
+"and join us today ."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:832
+msgid "Friend/Connection Request"
+msgstr ""
+
+#: ../../mod/dfrn_request.php:833
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr ""
+
+#: ../../mod/dfrn_request.php:834
+msgid "Please answer the following:"
+msgstr ""
+
+#: ../../mod/dfrn_request.php:835
+#, php-format
+msgid "Does %s know you?"
+msgstr ""
+
+#: ../../mod/dfrn_request.php:838
+msgid "Add a personal note:"
+msgstr ""
+
+#: ../../mod/dfrn_request.php:841
+msgid "StatusNet/Federated Social Web"
+msgstr ""
+
+#: ../../mod/dfrn_request.php:843
+#, php-format
+msgid ""
+" - please do not use this form. Instead, enter %s into your Diaspora search "
+"bar."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:844
+msgid "Your Identity Address:"
+msgstr ""
+
+#: ../../mod/dfrn_request.php:847
+msgid "Submit Request"
+msgstr ""
+
+#: ../../mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr ""
+
+#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:518
+msgid "Global Directory"
+msgstr ""
+
+#: ../../mod/directory.php:57
+msgid "Find on this site"
+msgstr ""
+
+#: ../../mod/directory.php:60
+msgid "Site Directory"
+msgstr ""
+
+#: ../../mod/directory.php:114
+msgid "Gender: "
+msgstr ""
+
+#: ../../mod/directory.php:187
+msgid "No entries (some entries may be hidden)."
+msgstr ""
+
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr ""
+
+#: ../../mod/suggest.php:72
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr ""
+
+#: ../../mod/suggest.php:90
+msgid "Ignore/Hide"
+msgstr ""
+
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr ""
+
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr ""
+
#: ../../mod/tagrm.php:41
msgid "Tag removed"
msgstr ""
From bee80004db9fdc1f48034007471056e6a405a10b Mon Sep 17 00:00:00 2001
From: Tobias Diekershoff
Date: Thu, 4 Apr 2013 17:27:49 +0200
Subject: [PATCH 07/67] DE: update to the strings
---
view/de/messages.po | 882 ++++++++++++++++++++++----------------------
view/de/strings.php | 200 +++++-----
2 files changed, 541 insertions(+), 541 deletions(-)
diff --git a/view/de/messages.po b/view/de/messages.po
index 07fa3ddcd..649f79e10 100644
--- a/view/de/messages.po
+++ b/view/de/messages.po
@@ -25,8 +25,8 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
-"POT-Creation-Date: 2013-03-19 03:30-0700\n"
-"PO-Revision-Date: 2013-03-28 06:48+0000\n"
+"POT-Creation-Date: 2013-04-03 00:02-0700\n"
+"PO-Revision-Date: 2013-04-04 15:25+0000\n"
"Last-Translator: bavatar \n"
"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n"
"MIME-Version: 1.0\n"
@@ -2208,7 +2208,7 @@ msgstr "Navigation"
msgid "Site map"
msgstr "Sitemap"
-#: ../../include/network.php:875
+#: ../../include/network.php:876
msgid "view full size"
msgstr "Volle Größe anzeigen"
@@ -2430,18 +2430,18 @@ msgstr "Profil bearbeiten"
#: ../../mod/profiles.php:626 ../../mod/contacts.php:386
#: ../../mod/settings.php:560 ../../mod/settings.php:670
#: ../../mod/settings.php:739 ../../mod/settings.php:811
-#: ../../mod/settings.php:1037 ../../mod/crepair.php:166
-#: ../../mod/poke.php:199 ../../mod/admin.php:480 ../../mod/admin.php:751
+#: ../../mod/settings.php:1037 ../../mod/admin.php:480 ../../mod/admin.php:751
#: ../../mod/admin.php:890 ../../mod/admin.php:1090 ../../mod/admin.php:1177
-#: ../../mod/events.php:478 ../../mod/fsuggest.php:107 ../../mod/group.php:87
-#: ../../mod/invite.php:140 ../../mod/localtime.php:45
-#: ../../mod/manage.php:110 ../../mod/message.php:335
-#: ../../mod/message.php:564 ../../mod/mood.php:137 ../../mod/photos.php:1078
-#: ../../mod/photos.php:1199 ../../mod/photos.php:1501
-#: ../../mod/photos.php:1552 ../../mod/photos.php:1596
-#: ../../mod/photos.php:1679 ../../mod/install.php:248
-#: ../../mod/install.php:286 ../../mod/content.php:733
-#: ../../object/Item.php:653 ../../view/theme/cleanzero/config.php:80
+#: ../../mod/crepair.php:166 ../../mod/poke.php:199 ../../mod/events.php:478
+#: ../../mod/fsuggest.php:107 ../../mod/group.php:87 ../../mod/invite.php:140
+#: ../../mod/localtime.php:45 ../../mod/manage.php:110
+#: ../../mod/message.php:335 ../../mod/message.php:564 ../../mod/mood.php:137
+#: ../../mod/photos.php:1078 ../../mod/photos.php:1199
+#: ../../mod/photos.php:1501 ../../mod/photos.php:1552
+#: ../../mod/photos.php:1596 ../../mod/photos.php:1679
+#: ../../mod/install.php:248 ../../mod/install.php:286
+#: ../../mod/content.php:733 ../../object/Item.php:653
+#: ../../view/theme/cleanzero/config.php:80
#: ../../view/theme/diabook/config.php:152
#: ../../view/theme/diabook/theme.php:642 ../../view/theme/dispy/config.php:70
#: ../../view/theme/quattro/config.php:64
@@ -3378,7 +3378,7 @@ msgid "Add application"
msgstr "Programm hinzufügen"
#: ../../mod/settings.php:562 ../../mod/settings.php:588
-#: ../../mod/crepair.php:148 ../../mod/admin.php:754 ../../mod/admin.php:765
+#: ../../mod/admin.php:754 ../../mod/admin.php:765 ../../mod/crepair.php:148
msgid "Name"
msgstr "Name"
@@ -3845,431 +3845,6 @@ msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
msgid "Change the behaviour of this account for special situations"
msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
-#: ../../mod/share.php:44
-msgid "link"
-msgstr "Link"
-
-#: ../../mod/crepair.php:102
-msgid "Contact settings applied."
-msgstr "Einstellungen zum Kontakt angewandt."
-
-#: ../../mod/crepair.php:104
-msgid "Contact update failed."
-msgstr "Konnte den Kontakt nicht aktualisieren."
-
-#: ../../mod/crepair.php:129 ../../mod/dfrn_confirm.php:118
-#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
-msgid "Contact not found."
-msgstr "Kontakt nicht gefunden."
-
-#: ../../mod/crepair.php:135
-msgid "Repair Contact Settings"
-msgstr "Kontakteinstellungen reparieren"
-
-#: ../../mod/crepair.php:137
-msgid ""
-"WARNING: This is highly advanced and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "ACHTUNG: Das sind Experten-Einstellungen! Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."
-
-#: ../../mod/crepair.php:138
-msgid ""
-"Please use your browser 'Back' button now if you are "
-"uncertain what to do on this page."
-msgstr "Bitte nutze den Zurück-Button deines Browsers jetzt , wenn du dir unsicher bist, was du tun willst."
-
-#: ../../mod/crepair.php:144
-msgid "Return to contact editor"
-msgstr "Zurück zum Kontakteditor"
-
-#: ../../mod/crepair.php:149
-msgid "Account Nickname"
-msgstr "Konto-Spitzname"
-
-#: ../../mod/crepair.php:150
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Tagname - überschreibt Name/Spitzname"
-
-#: ../../mod/crepair.php:151
-msgid "Account URL"
-msgstr "Konto-URL"
-
-#: ../../mod/crepair.php:152
-msgid "Friend Request URL"
-msgstr "URL für Freundschaftsanfragen"
-
-#: ../../mod/crepair.php:153
-msgid "Friend Confirm URL"
-msgstr "URL für Bestätigungen von Freundschaftsanfragen"
-
-#: ../../mod/crepair.php:154
-msgid "Notification Endpoint URL"
-msgstr "URL-Endpunkt für Benachrichtigungen"
-
-#: ../../mod/crepair.php:155
-msgid "Poll/Feed URL"
-msgstr "Pull/Feed-URL"
-
-#: ../../mod/crepair.php:156
-msgid "New photo from this URL"
-msgstr "Neues Foto von dieser URL"
-
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
-
-#: ../../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 Seiten Manager"
-
-#: ../../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:130 ../../mod/tagrm.php:93
-msgid "Remove"
-msgstr "Entfernen"
-
-#: ../../mod/delegate.php:131
-msgid "Add"
-msgstr "Hinzufügen"
-
-#: ../../mod/delegate.php:132
-msgid "No entries."
-msgstr "Keine Einträge"
-
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Anstupsen etc."
-
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "Stupse Leute an oder mache anderes mit ihnen"
-
-#: ../../mod/poke.php:194
-msgid "Recipient"
-msgstr "Empfänger"
-
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Was willst du mit dem Empfänger machen:"
-
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr "Diesen Beitrag privat machen"
-
-#: ../../mod/dfrn_confirm.php:119
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."
-
-#: ../../mod/dfrn_confirm.php:237
-msgid "Response from remote site was not understood."
-msgstr "Antwort der Gegenstelle unverständlich."
-
-#: ../../mod/dfrn_confirm.php:246
-msgid "Unexpected response from remote site: "
-msgstr "Unerwartete Antwort der Gegenstelle: "
-
-#: ../../mod/dfrn_confirm.php:254
-msgid "Confirmation completed successfully."
-msgstr "Bestätigung erfolgreich abgeschlossen."
-
-#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
-#: ../../mod/dfrn_confirm.php:277
-msgid "Remote site reported: "
-msgstr "Gegenstelle meldet: "
-
-#: ../../mod/dfrn_confirm.php:268
-msgid "Temporary failure. Please wait and try again."
-msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
-
-#: ../../mod/dfrn_confirm.php:275
-msgid "Introduction failed or was revoked."
-msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
-
-#: ../../mod/dfrn_confirm.php:420
-msgid "Unable to set contact photo."
-msgstr "Konnte das Bild des Kontakts nicht speichern."
-
-#: ../../mod/dfrn_confirm.php:562
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Für '%s' wurde kein Nutzer gefunden"
-
-#: ../../mod/dfrn_confirm.php:572
-msgid "Our site encryption key is apparently messed up."
-msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
-
-#: ../../mod/dfrn_confirm.php:583
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."
-
-#: ../../mod/dfrn_confirm.php:604
-msgid "Contact record was not found for you on our site."
-msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
-
-#: ../../mod/dfrn_confirm.php:618
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."
-
-#: ../../mod/dfrn_confirm.php:638
-msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."
-
-#: ../../mod/dfrn_confirm.php:649
-msgid "Unable to set your contact credentials on our system."
-msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
-
-#: ../../mod/dfrn_confirm.php:716
-msgid "Unable to update your contact profile details on our system"
-msgstr "Die Updates für dein Profil konnten nicht gespeichert werden"
-
-#: ../../mod/dfrn_confirm.php:751
-#, php-format
-msgid "Connection accepted at %s"
-msgstr "Auf %s wurde die Verbindung akzeptiert"
-
-#: ../../mod/dfrn_confirm.php:800
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s ist %2$s beigetreten"
-
-#: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s heißt %2$s herzlich willkommen"
-
-#: ../../mod/dfrn_request.php:93
-msgid "This introduction has already been accepted."
-msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
-
-#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Profiladresse ist ungültig oder stellt einige Profildaten nicht zur Verfügung."
-
-#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
-
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
-msgid "Warning: profile location has no profile photo."
-msgstr "Warnung: Es konnte kein Profilbild bei der angegebenen Profiladresse gefunden werden."
-
-#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
-#, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden"
-msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden"
-
-#: ../../mod/dfrn_request.php:170
-msgid "Introduction complete."
-msgstr "Kontaktanfrage abgeschlossen."
-
-#: ../../mod/dfrn_request.php:209
-msgid "Unrecoverable protocol error."
-msgstr "Nicht behebbarer Protokollfehler."
-
-#: ../../mod/dfrn_request.php:237
-msgid "Profile unavailable."
-msgstr "Profil nicht verfügbar."
-
-#: ../../mod/dfrn_request.php:262
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten."
-
-#: ../../mod/dfrn_request.php:263
-msgid "Spam protection measures have been invoked."
-msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
-
-#: ../../mod/dfrn_request.php:264
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
-
-#: ../../mod/dfrn_request.php:326
-msgid "Invalid locator"
-msgstr "Ungültiger Locator"
-
-#: ../../mod/dfrn_request.php:335
-msgid "Invalid email address."
-msgstr "Ungültige E-Mail Adresse."
-
-#: ../../mod/dfrn_request.php:362
-msgid "This account has not been configured for email. Request failed."
-msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."
-
-#: ../../mod/dfrn_request.php:458
-msgid "Unable to resolve your name at the provided location."
-msgstr "Konnte deinen Namen an der angegebenen Stelle nicht finden."
-
-#: ../../mod/dfrn_request.php:471
-msgid "You have already introduced yourself here."
-msgstr "Du hast dich hier bereits vorgestellt."
-
-#: ../../mod/dfrn_request.php:475
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Es scheint so, als ob du bereits mit %s befreundet bist."
-
-#: ../../mod/dfrn_request.php:496
-msgid "Invalid profile URL."
-msgstr "Ungültige Profil-URL."
-
-#: ../../mod/dfrn_request.php:592
-msgid "Your introduction has been sent."
-msgstr "Deine Kontaktanfrage wurde gesendet."
-
-#: ../../mod/dfrn_request.php:645
-msgid "Please login to confirm introduction."
-msgstr "Bitte melde dich an, um die Kontaktanfrage zu bestätigen."
-
-#: ../../mod/dfrn_request.php:659
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"this profile."
-msgstr "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an."
-
-#: ../../mod/dfrn_request.php:670
-msgid "Hide this contact"
-msgstr "Verberge diesen Kontakt"
-
-#: ../../mod/dfrn_request.php:673
-#, php-format
-msgid "Welcome home %s."
-msgstr "Willkommen zurück %s."
-
-#: ../../mod/dfrn_request.php:674
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Bitte bestätige deine Kontaktanfrage bei %s."
-
-#: ../../mod/dfrn_request.php:675
-msgid "Confirm"
-msgstr "Bestätigen"
-
-#: ../../mod/dfrn_request.php:811
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:"
-
-#: ../../mod/dfrn_request.php:827
-msgid "Connect as an email follower (Coming soon)"
-msgstr "Als E-Mail-Kontakt verbinden (In Kürze verfügbar)"
-
-#: ../../mod/dfrn_request.php:829
-msgid ""
-"If you are not yet a member of the free social web, follow this link to find a public"
-" Friendica site and join us today ."
-msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten."
-
-#: ../../mod/dfrn_request.php:832
-msgid "Friend/Connection Request"
-msgstr "Freundschafts-/Kontaktanfrage"
-
-#: ../../mod/dfrn_request.php:833
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
-
-#: ../../mod/dfrn_request.php:834
-msgid "Please answer the following:"
-msgstr "Bitte beantworte Folgendes:"
-
-#: ../../mod/dfrn_request.php:835
-#, php-format
-msgid "Does %s know you?"
-msgstr "Kennt %s dich?"
-
-#: ../../mod/dfrn_request.php:838
-msgid "Add a personal note:"
-msgstr "Eine persönliche Notiz beifügen:"
-
-#: ../../mod/dfrn_request.php:841
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
-
-#: ../../mod/dfrn_request.php:843
-#, php-format
-msgid ""
-" - please do not use this form. Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste."
-
-#: ../../mod/dfrn_request.php:844
-msgid "Your Identity Address:"
-msgstr "Adresse deines Profils:"
-
-#: ../../mod/dfrn_request.php:847
-msgid "Submit Request"
-msgstr "Anfrage abschicken"
-
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s folgt %2$s %3$s"
-
-#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:518
-msgid "Global Directory"
-msgstr "Weltweites Verzeichnis"
-
-#: ../../mod/directory.php:57
-msgid "Find on this site"
-msgstr "Auf diesem Server suchen"
-
-#: ../../mod/directory.php:60
-msgid "Site Directory"
-msgstr "Verzeichnis"
-
-#: ../../mod/directory.php:114
-msgid "Gender: "
-msgstr "Geschlecht:"
-
-#: ../../mod/directory.php:187
-msgid "No entries (some entries may be hidden)."
-msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
-
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Möchtest du wirklich diese Empfehlung löschen?"
-
-#: ../../mod/suggest.php:72
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Keine Vorschläge. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
-
-#: ../../mod/suggest.php:90
-msgid "Ignore/Hide"
-msgstr "Ignorieren/Verbergen"
-
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Personensuche"
-
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "Keine Übereinstimmungen"
-
#: ../../mod/admin.php:55
msgid "Theme settings updated."
msgstr "Themeneinstellungen aktualisiert."
@@ -4990,7 +4565,7 @@ msgid "Clear"
msgstr "löschen"
#: ../../mod/admin.php:1184
-msgid "Debugging"
+msgid "Enable Debugging"
msgstr "Protokoll führen"
#: ../../mod/admin.php:1185
@@ -5027,6 +4602,431 @@ msgstr "FTP Nutzername"
msgid "FTP Password"
msgstr "FTP Passwort"
+#: ../../mod/share.php:44
+msgid "link"
+msgstr "Link"
+
+#: ../../mod/crepair.php:102
+msgid "Contact settings applied."
+msgstr "Einstellungen zum Kontakt angewandt."
+
+#: ../../mod/crepair.php:104
+msgid "Contact update failed."
+msgstr "Konnte den Kontakt nicht aktualisieren."
+
+#: ../../mod/crepair.php:129 ../../mod/dfrn_confirm.php:118
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+msgid "Contact not found."
+msgstr "Kontakt nicht gefunden."
+
+#: ../../mod/crepair.php:135
+msgid "Repair Contact Settings"
+msgstr "Kontakteinstellungen reparieren"
+
+#: ../../mod/crepair.php:137
+msgid ""
+"WARNING: This is highly advanced and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "ACHTUNG: Das sind Experten-Einstellungen! Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."
+
+#: ../../mod/crepair.php:138
+msgid ""
+"Please use your browser 'Back' button now if you are "
+"uncertain what to do on this page."
+msgstr "Bitte nutze den Zurück-Button deines Browsers jetzt , wenn du dir unsicher bist, was du tun willst."
+
+#: ../../mod/crepair.php:144
+msgid "Return to contact editor"
+msgstr "Zurück zum Kontakteditor"
+
+#: ../../mod/crepair.php:149
+msgid "Account Nickname"
+msgstr "Konto-Spitzname"
+
+#: ../../mod/crepair.php:150
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname - überschreibt Name/Spitzname"
+
+#: ../../mod/crepair.php:151
+msgid "Account URL"
+msgstr "Konto-URL"
+
+#: ../../mod/crepair.php:152
+msgid "Friend Request URL"
+msgstr "URL für Freundschaftsanfragen"
+
+#: ../../mod/crepair.php:153
+msgid "Friend Confirm URL"
+msgstr "URL für Bestätigungen von Freundschaftsanfragen"
+
+#: ../../mod/crepair.php:154
+msgid "Notification Endpoint URL"
+msgstr "URL-Endpunkt für Benachrichtigungen"
+
+#: ../../mod/crepair.php:155
+msgid "Poll/Feed URL"
+msgstr "Pull/Feed-URL"
+
+#: ../../mod/crepair.php:156
+msgid "New photo from this URL"
+msgstr "Neues Foto von dieser URL"
+
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
+
+#: ../../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 Seiten Manager"
+
+#: ../../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:130 ../../mod/tagrm.php:93
+msgid "Remove"
+msgstr "Entfernen"
+
+#: ../../mod/delegate.php:131
+msgid "Add"
+msgstr "Hinzufügen"
+
+#: ../../mod/delegate.php:132
+msgid "No entries."
+msgstr "Keine Einträge"
+
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Anstupsen etc."
+
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "Stupse Leute an oder mache anderes mit ihnen"
+
+#: ../../mod/poke.php:194
+msgid "Recipient"
+msgstr "Empfänger"
+
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Was willst du mit dem Empfänger machen:"
+
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr "Diesen Beitrag privat machen"
+
+#: ../../mod/dfrn_confirm.php:119
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."
+
+#: ../../mod/dfrn_confirm.php:237
+msgid "Response from remote site was not understood."
+msgstr "Antwort der Gegenstelle unverständlich."
+
+#: ../../mod/dfrn_confirm.php:246
+msgid "Unexpected response from remote site: "
+msgstr "Unerwartete Antwort der Gegenstelle: "
+
+#: ../../mod/dfrn_confirm.php:254
+msgid "Confirmation completed successfully."
+msgstr "Bestätigung erfolgreich abgeschlossen."
+
+#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
+#: ../../mod/dfrn_confirm.php:277
+msgid "Remote site reported: "
+msgstr "Gegenstelle meldet: "
+
+#: ../../mod/dfrn_confirm.php:268
+msgid "Temporary failure. Please wait and try again."
+msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
+
+#: ../../mod/dfrn_confirm.php:275
+msgid "Introduction failed or was revoked."
+msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
+
+#: ../../mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
+msgstr "Konnte das Bild des Kontakts nicht speichern."
+
+#: ../../mod/dfrn_confirm.php:562
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Für '%s' wurde kein Nutzer gefunden"
+
+#: ../../mod/dfrn_confirm.php:572
+msgid "Our site encryption key is apparently messed up."
+msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
+
+#: ../../mod/dfrn_confirm.php:583
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."
+
+#: ../../mod/dfrn_confirm.php:604
+msgid "Contact record was not found for you on our site."
+msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
+
+#: ../../mod/dfrn_confirm.php:618
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."
+
+#: ../../mod/dfrn_confirm.php:638
+msgid ""
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."
+
+#: ../../mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
+msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
+
+#: ../../mod/dfrn_confirm.php:716
+msgid "Unable to update your contact profile details on our system"
+msgstr "Die Updates für dein Profil konnten nicht gespeichert werden"
+
+#: ../../mod/dfrn_confirm.php:751
+#, php-format
+msgid "Connection accepted at %s"
+msgstr "Auf %s wurde die Verbindung akzeptiert"
+
+#: ../../mod/dfrn_confirm.php:800
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s ist %2$s beigetreten"
+
+#: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s heißt %2$s herzlich willkommen"
+
+#: ../../mod/dfrn_request.php:93
+msgid "This introduction has already been accepted."
+msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
+
+#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Profiladresse ist ungültig oder stellt einige Profildaten nicht zur Verfügung."
+
+#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
+
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
+msgid "Warning: profile location has no profile photo."
+msgstr "Warnung: Es konnte kein Profilbild bei der angegebenen Profiladresse gefunden werden."
+
+#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
+#, php-format
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden"
+msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden"
+
+#: ../../mod/dfrn_request.php:170
+msgid "Introduction complete."
+msgstr "Kontaktanfrage abgeschlossen."
+
+#: ../../mod/dfrn_request.php:209
+msgid "Unrecoverable protocol error."
+msgstr "Nicht behebbarer Protokollfehler."
+
+#: ../../mod/dfrn_request.php:237
+msgid "Profile unavailable."
+msgstr "Profil nicht verfügbar."
+
+#: ../../mod/dfrn_request.php:262
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten."
+
+#: ../../mod/dfrn_request.php:263
+msgid "Spam protection measures have been invoked."
+msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
+
+#: ../../mod/dfrn_request.php:264
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
+
+#: ../../mod/dfrn_request.php:326
+msgid "Invalid locator"
+msgstr "Ungültiger Locator"
+
+#: ../../mod/dfrn_request.php:335
+msgid "Invalid email address."
+msgstr "Ungültige E-Mail Adresse."
+
+#: ../../mod/dfrn_request.php:362
+msgid "This account has not been configured for email. Request failed."
+msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."
+
+#: ../../mod/dfrn_request.php:458
+msgid "Unable to resolve your name at the provided location."
+msgstr "Konnte deinen Namen an der angegebenen Stelle nicht finden."
+
+#: ../../mod/dfrn_request.php:471
+msgid "You have already introduced yourself here."
+msgstr "Du hast dich hier bereits vorgestellt."
+
+#: ../../mod/dfrn_request.php:475
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Es scheint so, als ob du bereits mit %s befreundet bist."
+
+#: ../../mod/dfrn_request.php:496
+msgid "Invalid profile URL."
+msgstr "Ungültige Profil-URL."
+
+#: ../../mod/dfrn_request.php:592
+msgid "Your introduction has been sent."
+msgstr "Deine Kontaktanfrage wurde gesendet."
+
+#: ../../mod/dfrn_request.php:645
+msgid "Please login to confirm introduction."
+msgstr "Bitte melde dich an, um die Kontaktanfrage zu bestätigen."
+
+#: ../../mod/dfrn_request.php:659
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"this profile."
+msgstr "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an."
+
+#: ../../mod/dfrn_request.php:670
+msgid "Hide this contact"
+msgstr "Verberge diesen Kontakt"
+
+#: ../../mod/dfrn_request.php:673
+#, php-format
+msgid "Welcome home %s."
+msgstr "Willkommen zurück %s."
+
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Bitte bestätige deine Kontaktanfrage bei %s."
+
+#: ../../mod/dfrn_request.php:675
+msgid "Confirm"
+msgstr "Bestätigen"
+
+#: ../../mod/dfrn_request.php:811
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:"
+
+#: ../../mod/dfrn_request.php:827
+msgid "Connect as an email follower (Coming soon)"
+msgstr "Als E-Mail-Kontakt verbinden (In Kürze verfügbar)"
+
+#: ../../mod/dfrn_request.php:829
+msgid ""
+"If you are not yet a member of the free social web, follow this link to find a public"
+" Friendica site and join us today ."
+msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten."
+
+#: ../../mod/dfrn_request.php:832
+msgid "Friend/Connection Request"
+msgstr "Freundschafts-/Kontaktanfrage"
+
+#: ../../mod/dfrn_request.php:833
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+
+#: ../../mod/dfrn_request.php:834
+msgid "Please answer the following:"
+msgstr "Bitte beantworte Folgendes:"
+
+#: ../../mod/dfrn_request.php:835
+#, php-format
+msgid "Does %s know you?"
+msgstr "Kennt %s dich?"
+
+#: ../../mod/dfrn_request.php:838
+msgid "Add a personal note:"
+msgstr "Eine persönliche Notiz beifügen:"
+
+#: ../../mod/dfrn_request.php:841
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Social Web"
+
+#: ../../mod/dfrn_request.php:843
+#, php-format
+msgid ""
+" - please do not use this form. Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste."
+
+#: ../../mod/dfrn_request.php:844
+msgid "Your Identity Address:"
+msgstr "Adresse deines Profils:"
+
+#: ../../mod/dfrn_request.php:847
+msgid "Submit Request"
+msgstr "Anfrage abschicken"
+
+#: ../../mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s folgt %2$s %3$s"
+
+#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:518
+msgid "Global Directory"
+msgstr "Weltweites Verzeichnis"
+
+#: ../../mod/directory.php:57
+msgid "Find on this site"
+msgstr "Auf diesem Server suchen"
+
+#: ../../mod/directory.php:60
+msgid "Site Directory"
+msgstr "Verzeichnis"
+
+#: ../../mod/directory.php:114
+msgid "Gender: "
+msgstr "Geschlecht:"
+
+#: ../../mod/directory.php:187
+msgid "No entries (some entries may be hidden)."
+msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
+
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Möchtest du wirklich diese Empfehlung löschen?"
+
+#: ../../mod/suggest.php:72
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Keine Vorschläge. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
+
+#: ../../mod/suggest.php:90
+msgid "Ignore/Hide"
+msgstr "Ignorieren/Verbergen"
+
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Personensuche"
+
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "Keine Übereinstimmungen"
+
#: ../../mod/tagrm.php:41
msgid "Tag removed"
msgstr "Tag entfernt"
diff --git a/view/de/strings.php b/view/de/strings.php
index 297573c39..e5e5e57de 100644
--- a/view/de/strings.php
+++ b/view/de/strings.php
@@ -898,105 +898,6 @@ $a->strings["You are tagged in a post"] = "– du in einem Beitrag erwähnt wirs
$a->strings["You are poked/prodded/etc. in a post"] = "– du von jemandem angestupst oder sonstwie behandelt wirst";
$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentyp-Einstellungen";
$a->strings["Change the behaviour of this account for special situations"] = "Verhalten dieses Kontos in bestimmten Situationen:";
-$a->strings["link"] = "Link";
-$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
-$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
-$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
-$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren";
-$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ACHTUNG: Das sind Experten-Einstellungen! Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
-$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button deines Browsers jetzt , wenn du dir unsicher bist, was du tun willst.";
-$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
-$a->strings["Account Nickname"] = "Konto-Spitzname";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
-$a->strings["Account URL"] = "Konto-URL";
-$a->strings["Friend Request URL"] = "URL für Freundschaftsanfragen";
-$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen";
-$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen";
-$a->strings["Poll/Feed URL"] = "Pull/Feed-URL";
-$a->strings["New photo from this URL"] = "Neues Foto von dieser URL";
-$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
-$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!";
-$a->strings["Existing Page Managers"] = "Vorhandene Seiten Manager";
-$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
-$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
-$a->strings["Remove"] = "Entfernen";
-$a->strings["Add"] = "Hinzufügen";
-$a->strings["No entries."] = "Keine Einträge";
-$a->strings["Poke/Prod"] = "Anstupsen etc.";
-$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen";
-$a->strings["Recipient"] = "Empfänger";
-$a->strings["Choose what you wish to do to recipient"] = "Was willst du mit dem Empfänger machen:";
-$a->strings["Make this post private"] = "Diesen Beitrag privat machen";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde.";
-$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich.";
-$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: ";
-$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen.";
-$a->strings["Remote site reported: "] = "Gegenstelle meldet: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal.";
-$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen.";
-$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern.";
-$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden";
-$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden.";
-$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden.";
-$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server.";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal.";
-$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden.";
-$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für dein Profil konnten nicht gespeichert werden";
-$a->strings["Connection accepted at %s"] = "Auf %s wurde die Verbindung akzeptiert";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
-$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt einige Profildaten nicht zur Verfügung.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden.";
-$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es konnte kein Profilbild bei der angegebenen Profiladresse gefunden werden.";
-$a->strings["%d required parameter was not found at the given location"] = array(
- 0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden",
- 1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden",
-);
-$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen.";
-$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler.";
-$a->strings["Profile unavailable."] = "Profil nicht verfügbar.";
-$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Freundschaftsanfragen erhalten.";
-$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen.";
-$a->strings["Invalid locator"] = "Ungültiger Locator";
-$a->strings["Invalid email address."] = "Ungültige E-Mail Adresse.";
-$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen.";
-$a->strings["Unable to resolve your name at the provided location."] = "Konnte deinen Namen an der angegebenen Stelle nicht finden.";
-$a->strings["You have already introduced yourself here."] = "Du hast dich hier bereits vorgestellt.";
-$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob du bereits mit %s befreundet bist.";
-$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
-$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
-$a->strings["Please login to confirm introduction."] = "Bitte melde dich an, um die Kontaktanfrage zu bestätigen.";
-$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an.";
-$a->strings["Hide this contact"] = "Verberge diesen Kontakt";
-$a->strings["Welcome home %s."] = "Willkommen zurück %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige deine Kontaktanfrage bei %s.";
-$a->strings["Confirm"] = "Bestätigen";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:";
-$a->strings["Connect as an email follower (Coming soon)"] = "Als E-Mail-Kontakt verbinden (In Kürze verfügbar)";
-$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today ."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten.";
-$a->strings["Friend/Connection Request"] = "Freundschafts-/Kontaktanfrage";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Bitte beantworte Folgendes:";
-$a->strings["Does %s know you?"] = "Kennt %s dich?";
-$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
-$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste.";
-$a->strings["Your Identity Address:"] = "Adresse deines Profils:";
-$a->strings["Submit Request"] = "Anfrage abschicken";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
-$a->strings["Global Directory"] = "Weltweites Verzeichnis";
-$a->strings["Find on this site"] = "Auf diesem Server suchen";
-$a->strings["Site Directory"] = "Verzeichnis";
-$a->strings["Gender: "] = "Geschlecht:";
-$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
-$a->strings["Do you really want to delete this suggestion?"] = "Möchtest du wirklich diese Empfehlung löschen?";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
-$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
-$a->strings["People Search"] = "Personensuche";
-$a->strings["No matches"] = "Keine Übereinstimmungen";
$a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
$a->strings["Site"] = "Seite";
$a->strings["Users"] = "Nutzer";
@@ -1163,7 +1064,7 @@ $a->strings["[Experimental]"] = "[Experimentell]";
$a->strings["[Unsupported]"] = "[Nicht unterstützt]";
$a->strings["Log settings updated."] = "Protokolleinstellungen aktualisiert.";
$a->strings["Clear"] = "löschen";
-$a->strings["Debugging"] = "Protokoll führen";
+$a->strings["Enable Debugging"] = "Protokoll führen";
$a->strings["Log file"] = "Protokolldatei";
$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis.";
$a->strings["Log level"] = "Protokoll-Level";
@@ -1172,6 +1073,105 @@ $a->strings["FTP Host"] = "FTP Host";
$a->strings["FTP Path"] = "FTP Pfad";
$a->strings["FTP User"] = "FTP Nutzername";
$a->strings["FTP Password"] = "FTP Passwort";
+$a->strings["link"] = "Link";
+$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
+$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
+$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
+$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren";
+$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ACHTUNG: Das sind Experten-Einstellungen! Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
+$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button deines Browsers jetzt , wenn du dir unsicher bist, was du tun willst.";
+$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
+$a->strings["Account Nickname"] = "Konto-Spitzname";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
+$a->strings["Account URL"] = "Konto-URL";
+$a->strings["Friend Request URL"] = "URL für Freundschaftsanfragen";
+$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen";
+$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen";
+$a->strings["Poll/Feed URL"] = "Pull/Feed-URL";
+$a->strings["New photo from this URL"] = "Neues Foto von dieser URL";
+$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
+$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!";
+$a->strings["Existing Page Managers"] = "Vorhandene Seiten Manager";
+$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
+$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
+$a->strings["Remove"] = "Entfernen";
+$a->strings["Add"] = "Hinzufügen";
+$a->strings["No entries."] = "Keine Einträge";
+$a->strings["Poke/Prod"] = "Anstupsen etc.";
+$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen";
+$a->strings["Recipient"] = "Empfänger";
+$a->strings["Choose what you wish to do to recipient"] = "Was willst du mit dem Empfänger machen:";
+$a->strings["Make this post private"] = "Diesen Beitrag privat machen";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde.";
+$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich.";
+$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: ";
+$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen.";
+$a->strings["Remote site reported: "] = "Gegenstelle meldet: ";
+$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal.";
+$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen.";
+$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern.";
+$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden";
+$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden.";
+$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden.";
+$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server.";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal.";
+$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden.";
+$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für dein Profil konnten nicht gespeichert werden";
+$a->strings["Connection accepted at %s"] = "Auf %s wurde die Verbindung akzeptiert";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
+$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt einige Profildaten nicht zur Verfügung.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden.";
+$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es konnte kein Profilbild bei der angegebenen Profiladresse gefunden werden.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+ 0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden",
+ 1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden",
+);
+$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen.";
+$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler.";
+$a->strings["Profile unavailable."] = "Profil nicht verfügbar.";
+$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Freundschaftsanfragen erhalten.";
+$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen.";
+$a->strings["Invalid locator"] = "Ungültiger Locator";
+$a->strings["Invalid email address."] = "Ungültige E-Mail Adresse.";
+$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen.";
+$a->strings["Unable to resolve your name at the provided location."] = "Konnte deinen Namen an der angegebenen Stelle nicht finden.";
+$a->strings["You have already introduced yourself here."] = "Du hast dich hier bereits vorgestellt.";
+$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob du bereits mit %s befreundet bist.";
+$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
+$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
+$a->strings["Please login to confirm introduction."] = "Bitte melde dich an, um die Kontaktanfrage zu bestätigen.";
+$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an.";
+$a->strings["Hide this contact"] = "Verberge diesen Kontakt";
+$a->strings["Welcome home %s."] = "Willkommen zurück %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige deine Kontaktanfrage bei %s.";
+$a->strings["Confirm"] = "Bestätigen";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:";
+$a->strings["Connect as an email follower (Coming soon)"] = "Als E-Mail-Kontakt verbinden (In Kürze verfügbar)";
+$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today ."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten.";
+$a->strings["Friend/Connection Request"] = "Freundschafts-/Kontaktanfrage";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Bitte beantworte Folgendes:";
+$a->strings["Does %s know you?"] = "Kennt %s dich?";
+$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
+$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste.";
+$a->strings["Your Identity Address:"] = "Adresse deines Profils:";
+$a->strings["Submit Request"] = "Anfrage abschicken";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
+$a->strings["Global Directory"] = "Weltweites Verzeichnis";
+$a->strings["Find on this site"] = "Auf diesem Server suchen";
+$a->strings["Site Directory"] = "Verzeichnis";
+$a->strings["Gender: "] = "Geschlecht:";
+$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
+$a->strings["Do you really want to delete this suggestion?"] = "Möchtest du wirklich diese Empfehlung löschen?";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
+$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
+$a->strings["People Search"] = "Personensuche";
+$a->strings["No matches"] = "Keine Übereinstimmungen";
$a->strings["Tag removed"] = "Tag entfernt";
$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen";
$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: ";
From 9660117c7037799be2ecd8523edfbb18bc7427c8 Mon Sep 17 00:00:00 2001
From: friendica
Date: Thu, 4 Apr 2013 15:10:14 -0700
Subject: [PATCH 08/67] sync username when changed in either the default
profile or the settings page
---
boot.php | 2 +-
mod/profiles.php | 4 +
mod/settings.php | 2 +
util/messages.po | 2062 +++++++++++++++++++++++-----------------------
4 files changed, 1043 insertions(+), 1027 deletions(-)
diff --git a/boot.php b/boot.php
index 32af50467..22af8ef57 100644
--- a/boot.php
+++ b/boot.php
@@ -12,7 +12,7 @@ require_once('library/Mobile_Detect/Mobile_Detect.php');
require_once('include/features.php');
define ( 'FRIENDICA_PLATFORM', 'Friendica');
-define ( 'FRIENDICA_VERSION', '3.1.1659' );
+define ( 'FRIENDICA_VERSION', '3.1.1660' );
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
define ( 'DB_UPDATE_VERSION', 1163 );
define ( 'EOL', " \r\n" );
diff --git a/mod/profiles.php b/mod/profiles.php
index f517478a1..148c63291 100644
--- a/mod/profiles.php
+++ b/mod/profiles.php
@@ -455,6 +455,10 @@ function profiles_post(&$a) {
dbesc(datetime_convert()),
intval(local_user())
);
+ $r = q("UPDATE `user` set `username` = '%s' where `uid` = %d limit 1",
+ dbesc($name),
+ intval(local_user())
+ );
}
if($is_default) {
diff --git a/mod/settings.php b/mod/settings.php
index 75c11e881..38bfedbb1 100644
--- a/mod/settings.php
+++ b/mod/settings.php
@@ -489,10 +489,12 @@ function settings_post(&$a) {
$r = q("UPDATE `profile`
SET `publish` = %d,
+ `name` = '%s',
`net-publish` = %d,
`hide-friends` = %d
WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
intval($publish),
+ dbesc($username),
intval($net_publish),
intval($hide_friends),
intval(local_user())
diff --git a/util/messages.po b/util/messages.po
index 796c185b5..a8ee559c9 100644
--- a/util/messages.po
+++ b/util/messages.po
@@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: 3.1.1659\n"
+"Project-Id-Version: 3.1.1660\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-04-03 00:02-0700\n"
+"POT-Creation-Date: 2013-04-04 00:02-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -21,7 +21,7 @@ msgstr ""
#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
#: ../../include/nav.php:77 ../../mod/profperm.php:103
#: ../../mod/newmember.php:32 ../../view/theme/diabook/theme.php:88
-#: ../../boot.php:1868
+#: ../../boot.php:1877
msgid "Profile"
msgstr ""
@@ -30,7 +30,7 @@ msgid "Full Name:"
msgstr ""
#: ../../include/profile_advanced.php:17 ../../mod/directory.php:136
-#: ../../boot.php:1408
+#: ../../boot.php:1417
msgid "Gender:"
msgstr ""
@@ -51,7 +51,7 @@ msgid "Age:"
msgstr ""
#: ../../include/profile_advanced.php:37 ../../mod/directory.php:138
-#: ../../boot.php:1411
+#: ../../boot.php:1420
msgid "Status:"
msgstr ""
@@ -65,7 +65,7 @@ msgid "Sexual Preference:"
msgstr ""
#: ../../include/profile_advanced.php:48 ../../mod/directory.php:140
-#: ../../boot.php:1413
+#: ../../boot.php:1422
msgid "Homepage:"
msgstr ""
@@ -401,306 +401,306 @@ msgstr ""
msgid "Send PM"
msgstr ""
-#: ../../include/text.php:276
+#: ../../include/text.php:313
msgid "prev"
msgstr ""
-#: ../../include/text.php:278
+#: ../../include/text.php:315
msgid "first"
msgstr ""
-#: ../../include/text.php:307
+#: ../../include/text.php:344
msgid "last"
msgstr ""
-#: ../../include/text.php:310
+#: ../../include/text.php:347
msgid "next"
msgstr ""
-#: ../../include/text.php:328
+#: ../../include/text.php:371
msgid "newer"
msgstr ""
-#: ../../include/text.php:332
+#: ../../include/text.php:375
msgid "older"
msgstr ""
-#: ../../include/text.php:697
+#: ../../include/text.php:837
msgid "No contacts"
msgstr ""
-#: ../../include/text.php:706
+#: ../../include/text.php:846
#, php-format
msgid "%d Contact"
msgid_plural "%d Contacts"
msgstr[0] ""
msgstr[1] ""
-#: ../../include/text.php:718 ../../mod/viewcontacts.php:76
+#: ../../include/text.php:858 ../../mod/viewcontacts.php:76
msgid "View Contacts"
msgstr ""
-#: ../../include/text.php:778 ../../include/text.php:779
+#: ../../include/text.php:935 ../../include/text.php:936
#: ../../include/nav.php:118 ../../mod/search.php:99
msgid "Search"
msgstr ""
-#: ../../include/text.php:781 ../../mod/notes.php:63 ../../mod/filer.php:31
+#: ../../include/text.php:938 ../../mod/notes.php:63 ../../mod/filer.php:31
msgid "Save"
msgstr ""
-#: ../../include/text.php:819
+#: ../../include/text.php:987
msgid "poke"
msgstr ""
-#: ../../include/text.php:819 ../../include/conversation.php:211
+#: ../../include/text.php:987 ../../include/conversation.php:211
msgid "poked"
msgstr ""
-#: ../../include/text.php:820
+#: ../../include/text.php:988
msgid "ping"
msgstr ""
-#: ../../include/text.php:820
+#: ../../include/text.php:988
msgid "pinged"
msgstr ""
-#: ../../include/text.php:821
+#: ../../include/text.php:989
msgid "prod"
msgstr ""
-#: ../../include/text.php:821
+#: ../../include/text.php:989
msgid "prodded"
msgstr ""
-#: ../../include/text.php:822
+#: ../../include/text.php:990
msgid "slap"
msgstr ""
-#: ../../include/text.php:822
+#: ../../include/text.php:990
msgid "slapped"
msgstr ""
-#: ../../include/text.php:823
+#: ../../include/text.php:991
msgid "finger"
msgstr ""
-#: ../../include/text.php:823
+#: ../../include/text.php:991
msgid "fingered"
msgstr ""
-#: ../../include/text.php:824
+#: ../../include/text.php:992
msgid "rebuff"
msgstr ""
-#: ../../include/text.php:824
+#: ../../include/text.php:992
msgid "rebuffed"
msgstr ""
-#: ../../include/text.php:836
+#: ../../include/text.php:1006
msgid "happy"
msgstr ""
-#: ../../include/text.php:837
+#: ../../include/text.php:1007
msgid "sad"
msgstr ""
-#: ../../include/text.php:838
+#: ../../include/text.php:1008
msgid "mellow"
msgstr ""
-#: ../../include/text.php:839
+#: ../../include/text.php:1009
msgid "tired"
msgstr ""
-#: ../../include/text.php:840
+#: ../../include/text.php:1010
msgid "perky"
msgstr ""
-#: ../../include/text.php:841
+#: ../../include/text.php:1011
msgid "angry"
msgstr ""
-#: ../../include/text.php:842
+#: ../../include/text.php:1012
msgid "stupified"
msgstr ""
-#: ../../include/text.php:843
+#: ../../include/text.php:1013
msgid "puzzled"
msgstr ""
-#: ../../include/text.php:844
+#: ../../include/text.php:1014
msgid "interested"
msgstr ""
-#: ../../include/text.php:845
+#: ../../include/text.php:1015
msgid "bitter"
msgstr ""
-#: ../../include/text.php:846
+#: ../../include/text.php:1016
msgid "cheerful"
msgstr ""
-#: ../../include/text.php:847
+#: ../../include/text.php:1017
msgid "alive"
msgstr ""
-#: ../../include/text.php:848
+#: ../../include/text.php:1018
msgid "annoyed"
msgstr ""
-#: ../../include/text.php:849
+#: ../../include/text.php:1019
msgid "anxious"
msgstr ""
-#: ../../include/text.php:850
+#: ../../include/text.php:1020
msgid "cranky"
msgstr ""
-#: ../../include/text.php:851
+#: ../../include/text.php:1021
msgid "disturbed"
msgstr ""
-#: ../../include/text.php:852
+#: ../../include/text.php:1022
msgid "frustrated"
msgstr ""
-#: ../../include/text.php:853
+#: ../../include/text.php:1023
msgid "motivated"
msgstr ""
-#: ../../include/text.php:854
+#: ../../include/text.php:1024
msgid "relaxed"
msgstr ""
-#: ../../include/text.php:855
+#: ../../include/text.php:1025
msgid "surprised"
msgstr ""
-#: ../../include/text.php:1015
+#: ../../include/text.php:1191
msgid "Monday"
msgstr ""
-#: ../../include/text.php:1015
+#: ../../include/text.php:1191
msgid "Tuesday"
msgstr ""
-#: ../../include/text.php:1015
+#: ../../include/text.php:1191
msgid "Wednesday"
msgstr ""
-#: ../../include/text.php:1015
+#: ../../include/text.php:1191
msgid "Thursday"
msgstr ""
-#: ../../include/text.php:1015
+#: ../../include/text.php:1191
msgid "Friday"
msgstr ""
-#: ../../include/text.php:1015
+#: ../../include/text.php:1191
msgid "Saturday"
msgstr ""
-#: ../../include/text.php:1015
+#: ../../include/text.php:1191
msgid "Sunday"
msgstr ""
-#: ../../include/text.php:1019
+#: ../../include/text.php:1195
msgid "January"
msgstr ""
-#: ../../include/text.php:1019
+#: ../../include/text.php:1195
msgid "February"
msgstr ""
-#: ../../include/text.php:1019
+#: ../../include/text.php:1195
msgid "March"
msgstr ""
-#: ../../include/text.php:1019
+#: ../../include/text.php:1195
msgid "April"
msgstr ""
-#: ../../include/text.php:1019
+#: ../../include/text.php:1195
msgid "May"
msgstr ""
-#: ../../include/text.php:1019
+#: ../../include/text.php:1195
msgid "June"
msgstr ""
-#: ../../include/text.php:1019
+#: ../../include/text.php:1195
msgid "July"
msgstr ""
-#: ../../include/text.php:1019
+#: ../../include/text.php:1195
msgid "August"
msgstr ""
-#: ../../include/text.php:1019
+#: ../../include/text.php:1195
msgid "September"
msgstr ""
-#: ../../include/text.php:1019
+#: ../../include/text.php:1195
msgid "October"
msgstr ""
-#: ../../include/text.php:1019
+#: ../../include/text.php:1195
msgid "November"
msgstr ""
-#: ../../include/text.php:1019
+#: ../../include/text.php:1195
msgid "December"
msgstr ""
-#: ../../include/text.php:1153
+#: ../../include/text.php:1352
msgid "bytes"
msgstr ""
-#: ../../include/text.php:1180 ../../include/text.php:1192
+#: ../../include/text.php:1379 ../../include/text.php:1391
msgid "Click to open/close"
msgstr ""
-#: ../../include/text.php:1333 ../../mod/events.php:335
+#: ../../include/text.php:1553 ../../mod/events.php:335
msgid "link to source"
msgstr ""
-#: ../../include/text.php:1365 ../../include/user.php:237
+#: ../../include/text.php:1596 ../../include/user.php:237
msgid "default"
msgstr ""
-#: ../../include/text.php:1377
+#: ../../include/text.php:1608
msgid "Select an alternate language"
msgstr ""
-#: ../../include/text.php:1583 ../../include/conversation.php:118
+#: ../../include/text.php:1860 ../../include/conversation.php:118
#: ../../include/conversation.php:246 ../../view/theme/diabook/theme.php:456
msgid "event"
msgstr ""
-#: ../../include/text.php:1585 ../../include/diaspora.php:1874
+#: ../../include/text.php:1862 ../../include/diaspora.php:1874
#: ../../include/conversation.php:126 ../../include/conversation.php:254
#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:151
#: ../../view/theme/diabook/theme.php:464
msgid "photo"
msgstr ""
-#: ../../include/text.php:1587
+#: ../../include/text.php:1864
msgid "activity"
msgstr ""
-#: ../../include/text.php:1589 ../../mod/content.php:628
+#: ../../include/text.php:1866 ../../mod/content.php:628
#: ../../object/Item.php:364 ../../object/Item.php:377
msgid "comment"
msgid_plural "comments"
msgstr[0] ""
msgstr[1] ""
-#: ../../include/text.php:1590
+#: ../../include/text.php:1867
msgid "post"
msgstr ""
-#: ../../include/text.php:1745
+#: ../../include/text.php:2022
msgid "Item filed"
msgstr ""
@@ -791,7 +791,7 @@ msgid "Finishes:"
msgstr ""
#: ../../include/bb2diaspora.php:415 ../../include/event.php:40
-#: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1406
+#: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1415
msgid "Location:"
msgstr ""
@@ -956,19 +956,19 @@ msgstr ""
msgid "Reputable, has my trust"
msgstr ""
-#: ../../include/contact_selectors.php:56
+#: ../../include/contact_selectors.php:56 ../../mod/admin.php:452
msgid "Frequently"
msgstr ""
-#: ../../include/contact_selectors.php:57
+#: ../../include/contact_selectors.php:57 ../../mod/admin.php:453
msgid "Hourly"
msgstr ""
-#: ../../include/contact_selectors.php:58
+#: ../../include/contact_selectors.php:58 ../../mod/admin.php:454
msgid "Twice daily"
msgstr ""
-#: ../../include/contact_selectors.php:59
+#: ../../include/contact_selectors.php:59 ../../mod/admin.php:455
msgid "Daily"
msgstr ""
@@ -993,8 +993,8 @@ msgid "RSS/Atom"
msgstr ""
#: ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86 ../../mod/admin.php:754
-#: ../../mod/admin.php:765
+#: ../../include/contact_selectors.php:86 ../../mod/admin.php:766
+#: ../../mod/admin.php:777
msgid "Email"
msgstr ""
@@ -1041,7 +1041,7 @@ msgid "Example: bob@example.com, http://example.com/barbara"
msgstr ""
#: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88
-#: ../../mod/match.php:58 ../../boot.php:1338
+#: ../../mod/match.php:58 ../../boot.php:1347
msgid "Connect"
msgstr ""
@@ -1118,7 +1118,7 @@ msgstr[0] ""
msgstr[1] ""
#: ../../include/contact_widgets.php:204 ../../mod/content.php:629
-#: ../../object/Item.php:365 ../../boot.php:652
+#: ../../object/Item.php:365 ../../boot.php:653
msgid "show more"
msgstr ""
@@ -1145,6 +1145,95 @@ msgstr ""
msgid "Encrypted content"
msgstr ""
+#: ../../include/items.php:1791 ../../include/datetime.php:472
+#, php-format
+msgid "%s's birthday"
+msgstr ""
+
+#: ../../include/items.php:1792 ../../include/datetime.php:473
+#, php-format
+msgid "Happy Birthday %s"
+msgstr ""
+
+#: ../../include/items.php:3466 ../../mod/dfrn_request.php:716
+msgid "[Name Withheld]"
+msgstr ""
+
+#: ../../include/items.php:3473
+msgid "A new person is sharing with you at "
+msgstr ""
+
+#: ../../include/items.php:3473
+msgid "You have a new follower at "
+msgstr ""
+
+#: ../../include/items.php:3957 ../../mod/admin.php:158
+#: ../../mod/admin.php:809 ../../mod/admin.php:1009 ../../mod/viewsrc.php:15
+#: ../../mod/notice.php:15 ../../mod/display.php:51 ../../mod/display.php:213
+msgid "Item not found."
+msgstr ""
+
+#: ../../include/items.php:3996
+msgid "Do you really want to delete this item?"
+msgstr ""
+
+#: ../../include/items.php:3998 ../../mod/profiles.php:606
+#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246
+#: ../../mod/settings.php:934 ../../mod/settings.php:940
+#: ../../mod/settings.php:948 ../../mod/settings.php:952
+#: ../../mod/settings.php:957 ../../mod/settings.php:963
+#: ../../mod/settings.php:969 ../../mod/settings.php:975
+#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
+#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
+#: ../../mod/settings.php:1009 ../../mod/dfrn_request.php:836
+#: ../../mod/suggest.php:29 ../../mod/message.php:209
+msgid "Yes"
+msgstr ""
+
+#: ../../include/items.php:4001 ../../include/conversation.php:1080
+#: ../../mod/contacts.php:249 ../../mod/settings.php:561
+#: ../../mod/settings.php:587 ../../mod/dfrn_request.php:848
+#: ../../mod/suggest.php:32 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
+#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../mod/message.php:212
+#: ../../mod/photos.php:202 ../../mod/photos.php:290
+msgid "Cancel"
+msgstr ""
+
+#: ../../include/items.php:4121 ../../mod/profiles.php:146
+#: ../../mod/profiles.php:567 ../../mod/notes.php:20 ../../mod/nogroup.php:25
+#: ../../mod/item.php:140 ../../mod/item.php:156 ../../mod/allfriends.php:9
+#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/register.php:40
+#: ../../mod/regmod.php:118 ../../mod/attach.php:33 ../../mod/contacts.php:147
+#: ../../mod/settings.php:91 ../../mod/settings.php:542
+#: ../../mod/settings.php:547 ../../mod/crepair.php:115
+#: ../../mod/delegate.php:6 ../../mod/poke.php:135
+#: ../../mod/dfrn_confirm.php:53 ../../mod/suggest.php:56
+#: ../../mod/editpost.php:10 ../../mod/events.php:140 ../../mod/uimport.php:23
+#: ../../mod/follow.php:9 ../../mod/fsuggest.php:78 ../../mod/group.php:19
+#: ../../mod/viewcontacts.php:22 ../../mod/wall_attach.php:55
+#: ../../mod/wall_upload.php:66 ../../mod/invite.php:15
+#: ../../mod/invite.php:101 ../../mod/wallmessage.php:9
+#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
+#: ../../mod/wallmessage.php:103 ../../mod/manage.php:96
+#: ../../mod/message.php:38 ../../mod/message.php:174 ../../mod/mood.php:114
+#: ../../mod/network.php:6 ../../mod/notifications.php:66
+#: ../../mod/photos.php:133 ../../mod/photos.php:1044
+#: ../../mod/display.php:209 ../../mod/install.php:151
+#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
+#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
+#: ../../index.php:346
+msgid "Permission denied."
+msgstr ""
+
+#: ../../include/items.php:4191
+msgid "Archives"
+msgstr ""
+
+#: ../../include/network.php:875
+msgid "view full size"
+msgstr ""
+
#: ../../include/datetime.php:43 ../../include/datetime.php:45
msgid "Miscellaneous"
msgstr ""
@@ -1218,16 +1307,6 @@ msgstr ""
msgid "%1$d %2$s ago"
msgstr ""
-#: ../../include/datetime.php:472 ../../include/items.php:1771
-#, php-format
-msgid "%s's birthday"
-msgstr ""
-
-#: ../../include/datetime.php:473 ../../include/items.php:1772
-#, php-format
-msgid "Happy Birthday %s"
-msgstr ""
-
#: ../../include/plugin.php:439 ../../include/plugin.php:441
msgid "Click here to upgrade."
msgstr ""
@@ -1509,10 +1588,10 @@ msgstr ""
msgid "Select"
msgstr ""
-#: ../../include/conversation.php:588 ../../mod/settings.php:623
-#: ../../mod/admin.php:758 ../../mod/group.php:171 ../../mod/photos.php:1637
-#: ../../mod/content.php:462 ../../mod/content.php:764
-#: ../../object/Item.php:127
+#: ../../include/conversation.php:588 ../../mod/admin.php:770
+#: ../../mod/settings.php:623 ../../mod/group.php:171
+#: ../../mod/photos.php:1637 ../../mod/content.php:462
+#: ../../mod/content.php:764 ../../object/Item.php:127
msgid "Delete"
msgstr ""
@@ -1739,16 +1818,6 @@ msgstr ""
msgid "Preview"
msgstr ""
-#: ../../include/conversation.php:1080 ../../include/items.php:3981
-#: ../../mod/contacts.php:249 ../../mod/settings.php:561
-#: ../../mod/settings.php:587 ../../mod/dfrn_request.php:848
-#: ../../mod/suggest.php:32 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
-#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81
-#: ../../mod/fbrowser.php:116 ../../mod/message.php:212
-#: ../../mod/photos.php:202 ../../mod/photos.php:290
-msgid "Cancel"
-msgstr ""
-
#: ../../include/conversation.php:1086
msgid "Post to Groups"
msgstr ""
@@ -1964,7 +2033,7 @@ msgstr ""
msgid "Clear notifications"
msgstr ""
-#: ../../include/nav.php:73 ../../boot.php:1057
+#: ../../include/nav.php:73 ../../boot.php:1066
msgid "Logout"
msgstr ""
@@ -1972,7 +2041,7 @@ msgstr ""
msgid "End this session"
msgstr ""
-#: ../../include/nav.php:76 ../../boot.php:1861
+#: ../../include/nav.php:76 ../../boot.php:1870
msgid "Status"
msgstr ""
@@ -1986,7 +2055,7 @@ msgid "Your profile page"
msgstr ""
#: ../../include/nav.php:78 ../../mod/fbrowser.php:25
-#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1875
+#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1884
msgid "Photos"
msgstr ""
@@ -1995,7 +2064,7 @@ msgid "Your photos"
msgstr ""
#: ../../include/nav.php:79 ../../mod/events.php:370
-#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1885
+#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1894
msgid "Events"
msgstr ""
@@ -2011,7 +2080,7 @@ msgstr ""
msgid "Your personal photos"
msgstr ""
-#: ../../include/nav.php:91 ../../boot.php:1058
+#: ../../include/nav.php:91 ../../boot.php:1067
msgid "Login"
msgstr ""
@@ -2028,7 +2097,7 @@ msgstr ""
msgid "Home Page"
msgstr ""
-#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1033
+#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1042
msgid "Register"
msgstr ""
@@ -2146,8 +2215,8 @@ msgstr ""
msgid "Delegate Page Management"
msgstr ""
-#: ../../include/nav.php:167 ../../mod/settings.php:74 ../../mod/admin.php:849
-#: ../../mod/admin.php:1057 ../../mod/uexport.php:48
+#: ../../include/nav.php:167 ../../mod/admin.php:861 ../../mod/admin.php:1069
+#: ../../mod/settings.php:74 ../../mod/uexport.php:48
#: ../../mod/newmember.php:22 ../../view/theme/diabook/theme.php:537
#: ../../view/theme/diabook/theme.php:658
msgid "Settings"
@@ -2157,7 +2226,7 @@ msgstr ""
msgid "Account settings"
msgstr ""
-#: ../../include/nav.php:169 ../../boot.php:1360
+#: ../../include/nav.php:169 ../../boot.php:1369
msgid "Profiles"
msgstr ""
@@ -2190,10 +2259,6 @@ msgstr ""
msgid "Site map"
msgstr ""
-#: ../../include/network.php:876
-msgid "view full size"
-msgstr ""
-
#: ../../include/oembed.php:138
msgid "Embedded content"
msgstr ""
@@ -2202,71 +2267,6 @@ msgstr ""
msgid "Embedding disabled"
msgstr ""
-#: ../../include/items.php:3446 ../../mod/dfrn_request.php:716
-msgid "[Name Withheld]"
-msgstr ""
-
-#: ../../include/items.php:3453
-msgid "A new person is sharing with you at "
-msgstr ""
-
-#: ../../include/items.php:3453
-msgid "You have a new follower at "
-msgstr ""
-
-#: ../../include/items.php:3937 ../../mod/admin.php:158
-#: ../../mod/admin.php:797 ../../mod/admin.php:997 ../../mod/viewsrc.php:15
-#: ../../mod/notice.php:15 ../../mod/display.php:51 ../../mod/display.php:213
-msgid "Item not found."
-msgstr ""
-
-#: ../../include/items.php:3976
-msgid "Do you really want to delete this item?"
-msgstr ""
-
-#: ../../include/items.php:3978 ../../mod/profiles.php:606
-#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246
-#: ../../mod/settings.php:934 ../../mod/settings.php:940
-#: ../../mod/settings.php:948 ../../mod/settings.php:952
-#: ../../mod/settings.php:957 ../../mod/settings.php:963
-#: ../../mod/settings.php:969 ../../mod/settings.php:975
-#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
-#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
-#: ../../mod/settings.php:1009 ../../mod/dfrn_request.php:836
-#: ../../mod/suggest.php:29 ../../mod/message.php:209
-msgid "Yes"
-msgstr ""
-
-#: ../../include/items.php:4101 ../../mod/profiles.php:146
-#: ../../mod/profiles.php:567 ../../mod/notes.php:20 ../../mod/nogroup.php:25
-#: ../../mod/item.php:140 ../../mod/item.php:156 ../../mod/allfriends.php:9
-#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/register.php:40
-#: ../../mod/regmod.php:118 ../../mod/attach.php:33 ../../mod/contacts.php:147
-#: ../../mod/settings.php:91 ../../mod/settings.php:542
-#: ../../mod/settings.php:547 ../../mod/crepair.php:115
-#: ../../mod/delegate.php:6 ../../mod/poke.php:135
-#: ../../mod/dfrn_confirm.php:53 ../../mod/suggest.php:56
-#: ../../mod/editpost.php:10 ../../mod/events.php:140 ../../mod/uimport.php:23
-#: ../../mod/follow.php:9 ../../mod/fsuggest.php:78 ../../mod/group.php:19
-#: ../../mod/viewcontacts.php:22 ../../mod/wall_attach.php:55
-#: ../../mod/wall_upload.php:66 ../../mod/invite.php:15
-#: ../../mod/invite.php:101 ../../mod/wallmessage.php:9
-#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
-#: ../../mod/wallmessage.php:103 ../../mod/manage.php:96
-#: ../../mod/message.php:38 ../../mod/message.php:174 ../../mod/mood.php:114
-#: ../../mod/network.php:6 ../../mod/notifications.php:66
-#: ../../mod/photos.php:133 ../../mod/photos.php:1044
-#: ../../mod/display.php:209 ../../mod/install.php:151
-#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
-#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
-#: ../../index.php:346
-msgid "Permission denied."
-msgstr ""
-
-#: ../../include/items.php:4171
-msgid "Archives"
-msgstr ""
-
#: ../../include/security.php:22
msgid "Welcome "
msgstr ""
@@ -2409,11 +2409,11 @@ msgstr ""
msgid "Edit Profile Details"
msgstr ""
-#: ../../mod/profiles.php:626 ../../mod/contacts.php:386
-#: ../../mod/settings.php:560 ../../mod/settings.php:670
-#: ../../mod/settings.php:739 ../../mod/settings.php:811
-#: ../../mod/settings.php:1037 ../../mod/admin.php:480 ../../mod/admin.php:751
-#: ../../mod/admin.php:890 ../../mod/admin.php:1090 ../../mod/admin.php:1177
+#: ../../mod/profiles.php:626 ../../mod/admin.php:491 ../../mod/admin.php:763
+#: ../../mod/admin.php:902 ../../mod/admin.php:1102 ../../mod/admin.php:1189
+#: ../../mod/contacts.php:386 ../../mod/settings.php:560
+#: ../../mod/settings.php:670 ../../mod/settings.php:739
+#: ../../mod/settings.php:811 ../../mod/settings.php:1037
#: ../../mod/crepair.php:166 ../../mod/poke.php:199 ../../mod/events.php:478
#: ../../mod/fsuggest.php:107 ../../mod/group.php:87 ../../mod/invite.php:140
#: ../../mod/localtime.php:45 ../../mod/manage.php:110
@@ -2589,23 +2589,23 @@ msgstr ""
msgid "Edit/Manage Profiles"
msgstr ""
-#: ../../mod/profiles.php:722 ../../boot.php:1366 ../../boot.php:1392
+#: ../../mod/profiles.php:722 ../../boot.php:1375 ../../boot.php:1401
msgid "Change profile photo"
msgstr ""
-#: ../../mod/profiles.php:723 ../../boot.php:1367
+#: ../../mod/profiles.php:723 ../../boot.php:1376
msgid "Create New Profile"
msgstr ""
-#: ../../mod/profiles.php:734 ../../boot.php:1377
+#: ../../mod/profiles.php:734 ../../boot.php:1386
msgid "Profile Image"
msgstr ""
-#: ../../mod/profiles.php:736 ../../boot.php:1380
+#: ../../mod/profiles.php:736 ../../boot.php:1389
msgid "visible to everybody"
msgstr ""
-#: ../../mod/profiles.php:737 ../../boot.php:1381
+#: ../../mod/profiles.php:737 ../../boot.php:1390
msgid "Edit visibility"
msgstr ""
@@ -2633,7 +2633,7 @@ msgstr ""
msgid "All Contacts (with secure profile access)"
msgstr ""
-#: ../../mod/notes.php:44 ../../boot.php:1892
+#: ../../mod/notes.php:44 ../../boot.php:1901
msgid "Personal Notes"
msgstr ""
@@ -2696,6 +2696,803 @@ msgstr ""
msgid "{0} mentioned you in a post"
msgstr ""
+#: ../../mod/admin.php:55
+msgid "Theme settings updated."
+msgstr ""
+
+#: ../../mod/admin.php:96 ../../mod/admin.php:490
+msgid "Site"
+msgstr ""
+
+#: ../../mod/admin.php:97 ../../mod/admin.php:762 ../../mod/admin.php:776
+msgid "Users"
+msgstr ""
+
+#: ../../mod/admin.php:98 ../../mod/admin.php:859 ../../mod/admin.php:901
+msgid "Plugins"
+msgstr ""
+
+#: ../../mod/admin.php:99 ../../mod/admin.php:1067 ../../mod/admin.php:1101
+msgid "Themes"
+msgstr ""
+
+#: ../../mod/admin.php:100
+msgid "DB updates"
+msgstr ""
+
+#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1188
+msgid "Logs"
+msgstr ""
+
+#: ../../mod/admin.php:121
+msgid "Plugin Features"
+msgstr ""
+
+#: ../../mod/admin.php:123
+msgid "User registrations waiting for confirmation"
+msgstr ""
+
+#: ../../mod/admin.php:182 ../../mod/admin.php:733
+msgid "Normal Account"
+msgstr ""
+
+#: ../../mod/admin.php:183 ../../mod/admin.php:734
+msgid "Soapbox Account"
+msgstr ""
+
+#: ../../mod/admin.php:184 ../../mod/admin.php:735
+msgid "Community/Celebrity Account"
+msgstr ""
+
+#: ../../mod/admin.php:185 ../../mod/admin.php:736
+msgid "Automatic Friend Account"
+msgstr ""
+
+#: ../../mod/admin.php:186
+msgid "Blog Account"
+msgstr ""
+
+#: ../../mod/admin.php:187
+msgid "Private Forum"
+msgstr ""
+
+#: ../../mod/admin.php:206
+msgid "Message queues"
+msgstr ""
+
+#: ../../mod/admin.php:211 ../../mod/admin.php:489 ../../mod/admin.php:761
+#: ../../mod/admin.php:858 ../../mod/admin.php:900 ../../mod/admin.php:1066
+#: ../../mod/admin.php:1100 ../../mod/admin.php:1187
+msgid "Administration"
+msgstr ""
+
+#: ../../mod/admin.php:212
+msgid "Summary"
+msgstr ""
+
+#: ../../mod/admin.php:214
+msgid "Registered users"
+msgstr ""
+
+#: ../../mod/admin.php:216
+msgid "Pending registrations"
+msgstr ""
+
+#: ../../mod/admin.php:217
+msgid "Version"
+msgstr ""
+
+#: ../../mod/admin.php:219
+msgid "Active plugins"
+msgstr ""
+
+#: ../../mod/admin.php:405
+msgid "Site settings updated."
+msgstr ""
+
+#: ../../mod/admin.php:434 ../../mod/settings.php:769
+msgid "No special theme for mobile devices"
+msgstr ""
+
+#: ../../mod/admin.php:451 ../../mod/contacts.php:330
+msgid "Never"
+msgstr ""
+
+#: ../../mod/admin.php:460
+msgid "Multi user instance"
+msgstr ""
+
+#: ../../mod/admin.php:476
+msgid "Closed"
+msgstr ""
+
+#: ../../mod/admin.php:477
+msgid "Requires approval"
+msgstr ""
+
+#: ../../mod/admin.php:478
+msgid "Open"
+msgstr ""
+
+#: ../../mod/admin.php:482
+msgid "No SSL policy, links will track page SSL state"
+msgstr ""
+
+#: ../../mod/admin.php:483
+msgid "Force all links to use SSL"
+msgstr ""
+
+#: ../../mod/admin.php:484
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr ""
+
+#: ../../mod/admin.php:492 ../../mod/register.php:261
+msgid "Registration"
+msgstr ""
+
+#: ../../mod/admin.php:493
+msgid "File upload"
+msgstr ""
+
+#: ../../mod/admin.php:494
+msgid "Policies"
+msgstr ""
+
+#: ../../mod/admin.php:495
+msgid "Advanced"
+msgstr ""
+
+#: ../../mod/admin.php:496
+msgid "Performance"
+msgstr ""
+
+#: ../../mod/admin.php:500
+msgid "Site name"
+msgstr ""
+
+#: ../../mod/admin.php:501
+msgid "Banner/Logo"
+msgstr ""
+
+#: ../../mod/admin.php:502
+msgid "System language"
+msgstr ""
+
+#: ../../mod/admin.php:503
+msgid "System theme"
+msgstr ""
+
+#: ../../mod/admin.php:503
+msgid ""
+"Default system theme - may be over-ridden by user profiles - change theme settings "
+msgstr ""
+
+#: ../../mod/admin.php:504
+msgid "Mobile system theme"
+msgstr ""
+
+#: ../../mod/admin.php:504
+msgid "Theme for mobile devices"
+msgstr ""
+
+#: ../../mod/admin.php:505
+msgid "SSL link policy"
+msgstr ""
+
+#: ../../mod/admin.php:505
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr ""
+
+#: ../../mod/admin.php:506
+msgid "'Share' element"
+msgstr ""
+
+#: ../../mod/admin.php:506
+msgid "Activates the bbcode element 'share' for repeating items."
+msgstr ""
+
+#: ../../mod/admin.php:507
+msgid "Hide help entry from navigation menu"
+msgstr ""
+
+#: ../../mod/admin.php:507
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr ""
+
+#: ../../mod/admin.php:508
+msgid "Single user instance"
+msgstr ""
+
+#: ../../mod/admin.php:508
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr ""
+
+#: ../../mod/admin.php:509
+msgid "Maximum image size"
+msgstr ""
+
+#: ../../mod/admin.php:509
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr ""
+
+#: ../../mod/admin.php:510
+msgid "Maximum image length"
+msgstr ""
+
+#: ../../mod/admin.php:510
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr ""
+
+#: ../../mod/admin.php:511
+msgid "JPEG image quality"
+msgstr ""
+
+#: ../../mod/admin.php:511
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr ""
+
+#: ../../mod/admin.php:513
+msgid "Register policy"
+msgstr ""
+
+#: ../../mod/admin.php:514
+msgid "Maximum Daily Registrations"
+msgstr ""
+
+#: ../../mod/admin.php:514
+msgid ""
+"If registration is permitted above, this sets the maximum number of new user "
+"registrations to accept per day. If register is set to closed, this setting "
+"has no effect."
+msgstr ""
+
+#: ../../mod/admin.php:515
+msgid "Register text"
+msgstr ""
+
+#: ../../mod/admin.php:515
+msgid "Will be displayed prominently on the registration page."
+msgstr ""
+
+#: ../../mod/admin.php:516
+msgid "Accounts abandoned after x days"
+msgstr ""
+
+#: ../../mod/admin.php:516
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr ""
+
+#: ../../mod/admin.php:517
+msgid "Allowed friend domains"
+msgstr ""
+
+#: ../../mod/admin.php:517
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr ""
+
+#: ../../mod/admin.php:518
+msgid "Allowed email domains"
+msgstr ""
+
+#: ../../mod/admin.php:518
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr ""
+
+#: ../../mod/admin.php:519
+msgid "Block public"
+msgstr ""
+
+#: ../../mod/admin.php:519
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr ""
+
+#: ../../mod/admin.php:520
+msgid "Force publish"
+msgstr ""
+
+#: ../../mod/admin.php:520
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr ""
+
+#: ../../mod/admin.php:521
+msgid "Global directory update URL"
+msgstr ""
+
+#: ../../mod/admin.php:521
+msgid ""
+"URL to update the global directory. If this is not set, the global directory "
+"is completely unavailable to the application."
+msgstr ""
+
+#: ../../mod/admin.php:522
+msgid "Allow threaded items"
+msgstr ""
+
+#: ../../mod/admin.php:522
+msgid "Allow infinite level threading for items on this site."
+msgstr ""
+
+#: ../../mod/admin.php:523
+msgid "Private posts by default for new users"
+msgstr ""
+
+#: ../../mod/admin.php:523
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr ""
+
+#: ../../mod/admin.php:524
+msgid "Don't include post content in email notifications"
+msgstr ""
+
+#: ../../mod/admin.php:524
+msgid ""
+"Don't include the content of a post/comment/private message/etc. in the "
+"email notifications that are sent out from this site, as a privacy measure."
+msgstr ""
+
+#: ../../mod/admin.php:525
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr ""
+
+#: ../../mod/admin.php:525
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr ""
+
+#: ../../mod/admin.php:526
+msgid "Don't embed private images in posts"
+msgstr ""
+
+#: ../../mod/admin.php:526
+msgid ""
+"Don't replace locally-hosted private photos in posts with an embedded copy "
+"of the image. This means that contacts who receive posts containing private "
+"photos will have to authenticate and load each image, which may take a while."
+msgstr ""
+
+#: ../../mod/admin.php:528
+msgid "Block multiple registrations"
+msgstr ""
+
+#: ../../mod/admin.php:528
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr ""
+
+#: ../../mod/admin.php:529
+msgid "OpenID support"
+msgstr ""
+
+#: ../../mod/admin.php:529
+msgid "OpenID support for registration and logins."
+msgstr ""
+
+#: ../../mod/admin.php:530
+msgid "Fullname check"
+msgstr ""
+
+#: ../../mod/admin.php:530
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr ""
+
+#: ../../mod/admin.php:531
+msgid "UTF-8 Regular expressions"
+msgstr ""
+
+#: ../../mod/admin.php:531
+msgid "Use PHP UTF8 regular expressions"
+msgstr ""
+
+#: ../../mod/admin.php:532
+msgid "Show Community Page"
+msgstr ""
+
+#: ../../mod/admin.php:532
+msgid ""
+"Display a Community page showing all recent public postings on this site."
+msgstr ""
+
+#: ../../mod/admin.php:533
+msgid "Enable OStatus support"
+msgstr ""
+
+#: ../../mod/admin.php:533
+msgid ""
+"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr ""
+
+#: ../../mod/admin.php:534
+msgid "OStatus conversation completion interval"
+msgstr ""
+
+#: ../../mod/admin.php:534
+msgid ""
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr ""
+
+#: ../../mod/admin.php:535
+msgid "Enable Diaspora support"
+msgstr ""
+
+#: ../../mod/admin.php:535
+msgid "Provide built-in Diaspora network compatibility."
+msgstr ""
+
+#: ../../mod/admin.php:536
+msgid "Only allow Friendica contacts"
+msgstr ""
+
+#: ../../mod/admin.php:536
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr ""
+
+#: ../../mod/admin.php:537
+msgid "Verify SSL"
+msgstr ""
+
+#: ../../mod/admin.php:537
+msgid ""
+"If you wish, you can turn on strict certificate checking. This will mean you "
+"cannot connect (at all) to self-signed SSL sites."
+msgstr ""
+
+#: ../../mod/admin.php:538
+msgid "Proxy user"
+msgstr ""
+
+#: ../../mod/admin.php:539
+msgid "Proxy URL"
+msgstr ""
+
+#: ../../mod/admin.php:540
+msgid "Network timeout"
+msgstr ""
+
+#: ../../mod/admin.php:540
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr ""
+
+#: ../../mod/admin.php:541
+msgid "Delivery interval"
+msgstr ""
+
+#: ../../mod/admin.php:541
+msgid ""
+"Delay background delivery processes by this many seconds to reduce system "
+"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
+"for large dedicated servers."
+msgstr ""
+
+#: ../../mod/admin.php:542
+msgid "Poll interval"
+msgstr ""
+
+#: ../../mod/admin.php:542
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr ""
+
+#: ../../mod/admin.php:543
+msgid "Maximum Load Average"
+msgstr ""
+
+#: ../../mod/admin.php:543
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr ""
+
+#: ../../mod/admin.php:545
+msgid "Use MySQL full text engine"
+msgstr ""
+
+#: ../../mod/admin.php:545
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
+msgstr ""
+
+#: ../../mod/admin.php:546
+msgid "Path to item cache"
+msgstr ""
+
+#: ../../mod/admin.php:547
+msgid "Cache duration in seconds"
+msgstr ""
+
+#: ../../mod/admin.php:547
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One "
+"day)."
+msgstr ""
+
+#: ../../mod/admin.php:548
+msgid "Path for lock file"
+msgstr ""
+
+#: ../../mod/admin.php:549
+msgid "Temp path"
+msgstr ""
+
+#: ../../mod/admin.php:550
+msgid "Base path to installation"
+msgstr ""
+
+#: ../../mod/admin.php:567
+msgid "Update has been marked successful"
+msgstr ""
+
+#: ../../mod/admin.php:577
+#, php-format
+msgid "Executing %s failed. Check system logs."
+msgstr ""
+
+#: ../../mod/admin.php:580
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr ""
+
+#: ../../mod/admin.php:584
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr ""
+
+#: ../../mod/admin.php:587
+#, php-format
+msgid "Update function %s could not be found."
+msgstr ""
+
+#: ../../mod/admin.php:602
+msgid "No failed updates."
+msgstr ""
+
+#: ../../mod/admin.php:606
+msgid "Failed Updates"
+msgstr ""
+
+#: ../../mod/admin.php:607
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
+msgstr ""
+
+#: ../../mod/admin.php:608
+msgid "Mark success (if update was manually applied)"
+msgstr ""
+
+#: ../../mod/admin.php:609
+msgid "Attempt to execute this update step automatically"
+msgstr ""
+
+#: ../../mod/admin.php:634
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/admin.php:641
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/admin.php:680
+#, php-format
+msgid "User '%s' deleted"
+msgstr ""
+
+#: ../../mod/admin.php:688
+#, php-format
+msgid "User '%s' unblocked"
+msgstr ""
+
+#: ../../mod/admin.php:688
+#, php-format
+msgid "User '%s' blocked"
+msgstr ""
+
+#: ../../mod/admin.php:764
+msgid "select all"
+msgstr ""
+
+#: ../../mod/admin.php:765
+msgid "User registrations waiting for confirm"
+msgstr ""
+
+#: ../../mod/admin.php:766
+msgid "Request date"
+msgstr ""
+
+#: ../../mod/admin.php:766 ../../mod/admin.php:777 ../../mod/settings.php:562
+#: ../../mod/settings.php:588 ../../mod/crepair.php:148
+msgid "Name"
+msgstr ""
+
+#: ../../mod/admin.php:767
+msgid "No registrations."
+msgstr ""
+
+#: ../../mod/admin.php:768 ../../mod/notifications.php:161
+#: ../../mod/notifications.php:208
+msgid "Approve"
+msgstr ""
+
+#: ../../mod/admin.php:769
+msgid "Deny"
+msgstr ""
+
+#: ../../mod/admin.php:771 ../../mod/contacts.php:353
+#: ../../mod/contacts.php:412
+msgid "Block"
+msgstr ""
+
+#: ../../mod/admin.php:772 ../../mod/contacts.php:353
+#: ../../mod/contacts.php:412
+msgid "Unblock"
+msgstr ""
+
+#: ../../mod/admin.php:773
+msgid "Site admin"
+msgstr ""
+
+#: ../../mod/admin.php:774
+msgid "Account expired"
+msgstr ""
+
+#: ../../mod/admin.php:777
+msgid "Register date"
+msgstr ""
+
+#: ../../mod/admin.php:777
+msgid "Last login"
+msgstr ""
+
+#: ../../mod/admin.php:777
+msgid "Last item"
+msgstr ""
+
+#: ../../mod/admin.php:777
+msgid "Account"
+msgstr ""
+
+#: ../../mod/admin.php:779
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr ""
+
+#: ../../mod/admin.php:780
+msgid ""
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr ""
+
+#: ../../mod/admin.php:821
+#, php-format
+msgid "Plugin %s disabled."
+msgstr ""
+
+#: ../../mod/admin.php:825
+#, php-format
+msgid "Plugin %s enabled."
+msgstr ""
+
+#: ../../mod/admin.php:835 ../../mod/admin.php:1038
+msgid "Disable"
+msgstr ""
+
+#: ../../mod/admin.php:837 ../../mod/admin.php:1040
+msgid "Enable"
+msgstr ""
+
+#: ../../mod/admin.php:860 ../../mod/admin.php:1068
+msgid "Toggle"
+msgstr ""
+
+#: ../../mod/admin.php:868 ../../mod/admin.php:1078
+msgid "Author: "
+msgstr ""
+
+#: ../../mod/admin.php:869 ../../mod/admin.php:1079
+msgid "Maintainer: "
+msgstr ""
+
+#: ../../mod/admin.php:998
+msgid "No themes found."
+msgstr ""
+
+#: ../../mod/admin.php:1060
+msgid "Screenshot"
+msgstr ""
+
+#: ../../mod/admin.php:1106
+msgid "[Experimental]"
+msgstr ""
+
+#: ../../mod/admin.php:1107
+msgid "[Unsupported]"
+msgstr ""
+
+#: ../../mod/admin.php:1134
+msgid "Log settings updated."
+msgstr ""
+
+#: ../../mod/admin.php:1190
+msgid "Clear"
+msgstr ""
+
+#: ../../mod/admin.php:1196
+msgid "Enable Debugging"
+msgstr ""
+
+#: ../../mod/admin.php:1197
+msgid "Log file"
+msgstr ""
+
+#: ../../mod/admin.php:1197
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr ""
+
+#: ../../mod/admin.php:1198
+msgid "Log level"
+msgstr ""
+
+#: ../../mod/admin.php:1247 ../../mod/contacts.php:409
+msgid "Update now"
+msgstr ""
+
+#: ../../mod/admin.php:1248
+msgid "Close"
+msgstr ""
+
+#: ../../mod/admin.php:1254
+msgid "FTP Host"
+msgstr ""
+
+#: ../../mod/admin.php:1255
+msgid "FTP Path"
+msgstr ""
+
+#: ../../mod/admin.php:1256
+msgid "FTP User"
+msgstr ""
+
+#: ../../mod/admin.php:1257
+msgid "FTP Password"
+msgstr ""
+
#: ../../mod/item.php:105
msgid "Unable to locate original post."
msgstr ""
@@ -2834,10 +3631,6 @@ msgstr ""
msgid "Your invitation ID: "
msgstr ""
-#: ../../mod/register.php:261 ../../mod/admin.php:481
-msgid "Registration"
-msgstr ""
-
#: ../../mod/register.php:269
msgid "Your Full Name (e.g. Joe Smith): "
msgstr ""
@@ -3027,10 +3820,6 @@ msgstr ""
msgid "Private communications are not available for this contact."
msgstr ""
-#: ../../mod/contacts.php:330
-msgid "Never"
-msgstr ""
-
#: ../../mod/contacts.php:334
msgid "(Update was successful)"
msgstr ""
@@ -3052,16 +3841,6 @@ msgstr ""
msgid "View all contacts"
msgstr ""
-#: ../../mod/contacts.php:353 ../../mod/contacts.php:412
-#: ../../mod/admin.php:760
-msgid "Unblock"
-msgstr ""
-
-#: ../../mod/contacts.php:353 ../../mod/contacts.php:412
-#: ../../mod/admin.php:759
-msgid "Block"
-msgstr ""
-
#: ../../mod/contacts.php:356
msgid "Toggle Blocked status"
msgstr ""
@@ -3155,10 +3934,6 @@ msgstr ""
msgid "Update public posts"
msgstr ""
-#: ../../mod/contacts.php:409 ../../mod/admin.php:1235
-msgid "Update now"
-msgstr ""
-
#: ../../mod/contacts.php:416
msgid "Currently blocked"
msgstr ""
@@ -3358,11 +4133,6 @@ msgstr ""
msgid "Add application"
msgstr ""
-#: ../../mod/settings.php:562 ../../mod/settings.php:588
-#: ../../mod/admin.php:754 ../../mod/admin.php:765 ../../mod/crepair.php:148
-msgid "Name"
-msgstr ""
-
#: ../../mod/settings.php:563 ../../mod/settings.php:589
msgid "Consumer Key"
msgstr ""
@@ -3511,10 +4281,6 @@ msgstr ""
msgid "Move to folder:"
msgstr ""
-#: ../../mod/settings.php:769 ../../mod/admin.php:432
-msgid "No special theme for mobile devices"
-msgstr ""
-
#: ../../mod/settings.php:809
msgid "Display Settings"
msgstr ""
@@ -3825,762 +4591,6 @@ msgstr ""
msgid "Change the behaviour of this account for special situations"
msgstr ""
-#: ../../mod/admin.php:55
-msgid "Theme settings updated."
-msgstr ""
-
-#: ../../mod/admin.php:96 ../../mod/admin.php:479
-msgid "Site"
-msgstr ""
-
-#: ../../mod/admin.php:97 ../../mod/admin.php:750 ../../mod/admin.php:764
-msgid "Users"
-msgstr ""
-
-#: ../../mod/admin.php:98 ../../mod/admin.php:847 ../../mod/admin.php:889
-msgid "Plugins"
-msgstr ""
-
-#: ../../mod/admin.php:99 ../../mod/admin.php:1055 ../../mod/admin.php:1089
-msgid "Themes"
-msgstr ""
-
-#: ../../mod/admin.php:100
-msgid "DB updates"
-msgstr ""
-
-#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1176
-msgid "Logs"
-msgstr ""
-
-#: ../../mod/admin.php:121
-msgid "Plugin Features"
-msgstr ""
-
-#: ../../mod/admin.php:123
-msgid "User registrations waiting for confirmation"
-msgstr ""
-
-#: ../../mod/admin.php:182 ../../mod/admin.php:721
-msgid "Normal Account"
-msgstr ""
-
-#: ../../mod/admin.php:183 ../../mod/admin.php:722
-msgid "Soapbox Account"
-msgstr ""
-
-#: ../../mod/admin.php:184 ../../mod/admin.php:723
-msgid "Community/Celebrity Account"
-msgstr ""
-
-#: ../../mod/admin.php:185 ../../mod/admin.php:724
-msgid "Automatic Friend Account"
-msgstr ""
-
-#: ../../mod/admin.php:186
-msgid "Blog Account"
-msgstr ""
-
-#: ../../mod/admin.php:187
-msgid "Private Forum"
-msgstr ""
-
-#: ../../mod/admin.php:206
-msgid "Message queues"
-msgstr ""
-
-#: ../../mod/admin.php:211 ../../mod/admin.php:478 ../../mod/admin.php:749
-#: ../../mod/admin.php:846 ../../mod/admin.php:888 ../../mod/admin.php:1054
-#: ../../mod/admin.php:1088 ../../mod/admin.php:1175
-msgid "Administration"
-msgstr ""
-
-#: ../../mod/admin.php:212
-msgid "Summary"
-msgstr ""
-
-#: ../../mod/admin.php:214
-msgid "Registered users"
-msgstr ""
-
-#: ../../mod/admin.php:216
-msgid "Pending registrations"
-msgstr ""
-
-#: ../../mod/admin.php:217
-msgid "Version"
-msgstr ""
-
-#: ../../mod/admin.php:219
-msgid "Active plugins"
-msgstr ""
-
-#: ../../mod/admin.php:403
-msgid "Site settings updated."
-msgstr ""
-
-#: ../../mod/admin.php:449
-msgid "Multi user instance"
-msgstr ""
-
-#: ../../mod/admin.php:465
-msgid "Closed"
-msgstr ""
-
-#: ../../mod/admin.php:466
-msgid "Requires approval"
-msgstr ""
-
-#: ../../mod/admin.php:467
-msgid "Open"
-msgstr ""
-
-#: ../../mod/admin.php:471
-msgid "No SSL policy, links will track page SSL state"
-msgstr ""
-
-#: ../../mod/admin.php:472
-msgid "Force all links to use SSL"
-msgstr ""
-
-#: ../../mod/admin.php:473
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr ""
-
-#: ../../mod/admin.php:482
-msgid "File upload"
-msgstr ""
-
-#: ../../mod/admin.php:483
-msgid "Policies"
-msgstr ""
-
-#: ../../mod/admin.php:484
-msgid "Advanced"
-msgstr ""
-
-#: ../../mod/admin.php:485
-msgid "Performance"
-msgstr ""
-
-#: ../../mod/admin.php:489
-msgid "Site name"
-msgstr ""
-
-#: ../../mod/admin.php:490
-msgid "Banner/Logo"
-msgstr ""
-
-#: ../../mod/admin.php:491
-msgid "System language"
-msgstr ""
-
-#: ../../mod/admin.php:492
-msgid "System theme"
-msgstr ""
-
-#: ../../mod/admin.php:492
-msgid ""
-"Default system theme - may be over-ridden by user profiles - change theme settings "
-msgstr ""
-
-#: ../../mod/admin.php:493
-msgid "Mobile system theme"
-msgstr ""
-
-#: ../../mod/admin.php:493
-msgid "Theme for mobile devices"
-msgstr ""
-
-#: ../../mod/admin.php:494
-msgid "SSL link policy"
-msgstr ""
-
-#: ../../mod/admin.php:494
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr ""
-
-#: ../../mod/admin.php:495
-msgid "'Share' element"
-msgstr ""
-
-#: ../../mod/admin.php:495
-msgid "Activates the bbcode element 'share' for repeating items."
-msgstr ""
-
-#: ../../mod/admin.php:496
-msgid "Hide help entry from navigation menu"
-msgstr ""
-
-#: ../../mod/admin.php:496
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
-msgstr ""
-
-#: ../../mod/admin.php:497
-msgid "Single user instance"
-msgstr ""
-
-#: ../../mod/admin.php:497
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr ""
-
-#: ../../mod/admin.php:498
-msgid "Maximum image size"
-msgstr ""
-
-#: ../../mod/admin.php:498
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr ""
-
-#: ../../mod/admin.php:499
-msgid "Maximum image length"
-msgstr ""
-
-#: ../../mod/admin.php:499
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr ""
-
-#: ../../mod/admin.php:500
-msgid "JPEG image quality"
-msgstr ""
-
-#: ../../mod/admin.php:500
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr ""
-
-#: ../../mod/admin.php:502
-msgid "Register policy"
-msgstr ""
-
-#: ../../mod/admin.php:503
-msgid "Maximum Daily Registrations"
-msgstr ""
-
-#: ../../mod/admin.php:503
-msgid ""
-"If registration is permitted above, this sets the maximum number of new user "
-"registrations to accept per day. If register is set to closed, this setting "
-"has no effect."
-msgstr ""
-
-#: ../../mod/admin.php:504
-msgid "Register text"
-msgstr ""
-
-#: ../../mod/admin.php:504
-msgid "Will be displayed prominently on the registration page."
-msgstr ""
-
-#: ../../mod/admin.php:505
-msgid "Accounts abandoned after x days"
-msgstr ""
-
-#: ../../mod/admin.php:505
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr ""
-
-#: ../../mod/admin.php:506
-msgid "Allowed friend domains"
-msgstr ""
-
-#: ../../mod/admin.php:506
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr ""
-
-#: ../../mod/admin.php:507
-msgid "Allowed email domains"
-msgstr ""
-
-#: ../../mod/admin.php:507
-msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
-msgstr ""
-
-#: ../../mod/admin.php:508
-msgid "Block public"
-msgstr ""
-
-#: ../../mod/admin.php:508
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr ""
-
-#: ../../mod/admin.php:509
-msgid "Force publish"
-msgstr ""
-
-#: ../../mod/admin.php:509
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr ""
-
-#: ../../mod/admin.php:510
-msgid "Global directory update URL"
-msgstr ""
-
-#: ../../mod/admin.php:510
-msgid ""
-"URL to update the global directory. If this is not set, the global directory "
-"is completely unavailable to the application."
-msgstr ""
-
-#: ../../mod/admin.php:511
-msgid "Allow threaded items"
-msgstr ""
-
-#: ../../mod/admin.php:511
-msgid "Allow infinite level threading for items on this site."
-msgstr ""
-
-#: ../../mod/admin.php:512
-msgid "Private posts by default for new users"
-msgstr ""
-
-#: ../../mod/admin.php:512
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr ""
-
-#: ../../mod/admin.php:513
-msgid "Don't include post content in email notifications"
-msgstr ""
-
-#: ../../mod/admin.php:513
-msgid ""
-"Don't include the content of a post/comment/private message/etc. in the "
-"email notifications that are sent out from this site, as a privacy measure."
-msgstr ""
-
-#: ../../mod/admin.php:514
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr ""
-
-#: ../../mod/admin.php:514
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr ""
-
-#: ../../mod/admin.php:515
-msgid "Don't embed private images in posts"
-msgstr ""
-
-#: ../../mod/admin.php:515
-msgid ""
-"Don't replace locally-hosted private photos in posts with an embedded copy "
-"of the image. This means that contacts who receive posts containing private "
-"photos will have to authenticate and load each image, which may take a while."
-msgstr ""
-
-#: ../../mod/admin.php:517
-msgid "Block multiple registrations"
-msgstr ""
-
-#: ../../mod/admin.php:517
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr ""
-
-#: ../../mod/admin.php:518
-msgid "OpenID support"
-msgstr ""
-
-#: ../../mod/admin.php:518
-msgid "OpenID support for registration and logins."
-msgstr ""
-
-#: ../../mod/admin.php:519
-msgid "Fullname check"
-msgstr ""
-
-#: ../../mod/admin.php:519
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr ""
-
-#: ../../mod/admin.php:520
-msgid "UTF-8 Regular expressions"
-msgstr ""
-
-#: ../../mod/admin.php:520
-msgid "Use PHP UTF8 regular expressions"
-msgstr ""
-
-#: ../../mod/admin.php:521
-msgid "Show Community Page"
-msgstr ""
-
-#: ../../mod/admin.php:521
-msgid ""
-"Display a Community page showing all recent public postings on this site."
-msgstr ""
-
-#: ../../mod/admin.php:522
-msgid "Enable OStatus support"
-msgstr ""
-
-#: ../../mod/admin.php:522
-msgid ""
-"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr ""
-
-#: ../../mod/admin.php:523
-msgid "Enable Diaspora support"
-msgstr ""
-
-#: ../../mod/admin.php:523
-msgid "Provide built-in Diaspora network compatibility."
-msgstr ""
-
-#: ../../mod/admin.php:524
-msgid "Only allow Friendica contacts"
-msgstr ""
-
-#: ../../mod/admin.php:524
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr ""
-
-#: ../../mod/admin.php:525
-msgid "Verify SSL"
-msgstr ""
-
-#: ../../mod/admin.php:525
-msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you "
-"cannot connect (at all) to self-signed SSL sites."
-msgstr ""
-
-#: ../../mod/admin.php:526
-msgid "Proxy user"
-msgstr ""
-
-#: ../../mod/admin.php:527
-msgid "Proxy URL"
-msgstr ""
-
-#: ../../mod/admin.php:528
-msgid "Network timeout"
-msgstr ""
-
-#: ../../mod/admin.php:528
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr ""
-
-#: ../../mod/admin.php:529
-msgid "Delivery interval"
-msgstr ""
-
-#: ../../mod/admin.php:529
-msgid ""
-"Delay background delivery processes by this many seconds to reduce system "
-"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
-"for large dedicated servers."
-msgstr ""
-
-#: ../../mod/admin.php:530
-msgid "Poll interval"
-msgstr ""
-
-#: ../../mod/admin.php:530
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr ""
-
-#: ../../mod/admin.php:531
-msgid "Maximum Load Average"
-msgstr ""
-
-#: ../../mod/admin.php:531
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr ""
-
-#: ../../mod/admin.php:533
-msgid "Use MySQL full text engine"
-msgstr ""
-
-#: ../../mod/admin.php:533
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
-msgstr ""
-
-#: ../../mod/admin.php:534
-msgid "Path to item cache"
-msgstr ""
-
-#: ../../mod/admin.php:535
-msgid "Cache duration in seconds"
-msgstr ""
-
-#: ../../mod/admin.php:535
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One "
-"day)."
-msgstr ""
-
-#: ../../mod/admin.php:536
-msgid "Path for lock file"
-msgstr ""
-
-#: ../../mod/admin.php:537
-msgid "Temp path"
-msgstr ""
-
-#: ../../mod/admin.php:538
-msgid "Base path to installation"
-msgstr ""
-
-#: ../../mod/admin.php:555
-msgid "Update has been marked successful"
-msgstr ""
-
-#: ../../mod/admin.php:565
-#, php-format
-msgid "Executing %s failed. Check system logs."
-msgstr ""
-
-#: ../../mod/admin.php:568
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr ""
-
-#: ../../mod/admin.php:572
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr ""
-
-#: ../../mod/admin.php:575
-#, php-format
-msgid "Update function %s could not be found."
-msgstr ""
-
-#: ../../mod/admin.php:590
-msgid "No failed updates."
-msgstr ""
-
-#: ../../mod/admin.php:594
-msgid "Failed Updates"
-msgstr ""
-
-#: ../../mod/admin.php:595
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr ""
-
-#: ../../mod/admin.php:596
-msgid "Mark success (if update was manually applied)"
-msgstr ""
-
-#: ../../mod/admin.php:597
-msgid "Attempt to execute this update step automatically"
-msgstr ""
-
-#: ../../mod/admin.php:622
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/admin.php:629
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/admin.php:668
-#, php-format
-msgid "User '%s' deleted"
-msgstr ""
-
-#: ../../mod/admin.php:676
-#, php-format
-msgid "User '%s' unblocked"
-msgstr ""
-
-#: ../../mod/admin.php:676
-#, php-format
-msgid "User '%s' blocked"
-msgstr ""
-
-#: ../../mod/admin.php:752
-msgid "select all"
-msgstr ""
-
-#: ../../mod/admin.php:753
-msgid "User registrations waiting for confirm"
-msgstr ""
-
-#: ../../mod/admin.php:754
-msgid "Request date"
-msgstr ""
-
-#: ../../mod/admin.php:755
-msgid "No registrations."
-msgstr ""
-
-#: ../../mod/admin.php:756 ../../mod/notifications.php:161
-#: ../../mod/notifications.php:208
-msgid "Approve"
-msgstr ""
-
-#: ../../mod/admin.php:757
-msgid "Deny"
-msgstr ""
-
-#: ../../mod/admin.php:761
-msgid "Site admin"
-msgstr ""
-
-#: ../../mod/admin.php:762
-msgid "Account expired"
-msgstr ""
-
-#: ../../mod/admin.php:765
-msgid "Register date"
-msgstr ""
-
-#: ../../mod/admin.php:765
-msgid "Last login"
-msgstr ""
-
-#: ../../mod/admin.php:765
-msgid "Last item"
-msgstr ""
-
-#: ../../mod/admin.php:765
-msgid "Account"
-msgstr ""
-
-#: ../../mod/admin.php:767
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr ""
-
-#: ../../mod/admin.php:768
-msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
-msgstr ""
-
-#: ../../mod/admin.php:809
-#, php-format
-msgid "Plugin %s disabled."
-msgstr ""
-
-#: ../../mod/admin.php:813
-#, php-format
-msgid "Plugin %s enabled."
-msgstr ""
-
-#: ../../mod/admin.php:823 ../../mod/admin.php:1026
-msgid "Disable"
-msgstr ""
-
-#: ../../mod/admin.php:825 ../../mod/admin.php:1028
-msgid "Enable"
-msgstr ""
-
-#: ../../mod/admin.php:848 ../../mod/admin.php:1056
-msgid "Toggle"
-msgstr ""
-
-#: ../../mod/admin.php:856 ../../mod/admin.php:1066
-msgid "Author: "
-msgstr ""
-
-#: ../../mod/admin.php:857 ../../mod/admin.php:1067
-msgid "Maintainer: "
-msgstr ""
-
-#: ../../mod/admin.php:986
-msgid "No themes found."
-msgstr ""
-
-#: ../../mod/admin.php:1048
-msgid "Screenshot"
-msgstr ""
-
-#: ../../mod/admin.php:1094
-msgid "[Experimental]"
-msgstr ""
-
-#: ../../mod/admin.php:1095
-msgid "[Unsupported]"
-msgstr ""
-
-#: ../../mod/admin.php:1122
-msgid "Log settings updated."
-msgstr ""
-
-#: ../../mod/admin.php:1178
-msgid "Clear"
-msgstr ""
-
-#: ../../mod/admin.php:1184
-msgid "Enable Debugging"
-msgstr ""
-
-#: ../../mod/admin.php:1185
-msgid "Log file"
-msgstr ""
-
-#: ../../mod/admin.php:1185
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr ""
-
-#: ../../mod/admin.php:1186
-msgid "Log level"
-msgstr ""
-
-#: ../../mod/admin.php:1236
-msgid "Close"
-msgstr ""
-
-#: ../../mod/admin.php:1242
-msgid "FTP Host"
-msgstr ""
-
-#: ../../mod/admin.php:1243
-msgid "FTP Path"
-msgstr ""
-
-#: ../../mod/admin.php:1244
-msgid "FTP User"
-msgstr ""
-
-#: ../../mod/admin.php:1245
-msgid "FTP Password"
-msgstr ""
-
#: ../../mod/share.php:44
msgid "link"
msgstr ""
@@ -5510,7 +5520,7 @@ msgid ""
"Password reset failed."
msgstr ""
-#: ../../mod/lostpass.php:84 ../../boot.php:1072
+#: ../../mod/lostpass.php:84 ../../boot.php:1081
msgid "Password Reset"
msgstr ""
@@ -5896,7 +5906,7 @@ msgstr ""
msgid "Home Notifications"
msgstr ""
-#: ../../mod/photos.php:51 ../../boot.php:1878
+#: ../../mod/photos.php:51 ../../boot.php:1887
msgid "Photo Albums"
msgstr ""
@@ -6096,7 +6106,7 @@ msgstr ""
#: ../../mod/photos.php:1551 ../../mod/photos.php:1595
#: ../../mod/photos.php:1678 ../../mod/content.php:732
-#: ../../object/Item.php:338 ../../object/Item.php:652 ../../boot.php:651
+#: ../../object/Item.php:338 ../../object/Item.php:652 ../../boot.php:652
msgid "Comment"
msgstr ""
@@ -6289,7 +6299,7 @@ msgid ""
"features and resources."
msgstr ""
-#: ../../mod/profile.php:21 ../../boot.php:1246
+#: ../../mod/profile.php:21 ../../boot.php:1255
msgid "Requested profile is not available."
msgstr ""
@@ -6932,128 +6942,128 @@ msgstr ""
msgid "Textareas font size"
msgstr ""
-#: ../../boot.php:650
+#: ../../index.php:405
+msgid "toggle mobile"
+msgstr ""
+
+#: ../../boot.php:651
msgid "Delete this item?"
msgstr ""
-#: ../../boot.php:653
+#: ../../boot.php:654
msgid "show fewer"
msgstr ""
-#: ../../boot.php:920
+#: ../../boot.php:929
#, php-format
msgid "Update %s failed. See error logs."
msgstr ""
-#: ../../boot.php:922
+#: ../../boot.php:931
#, php-format
msgid "Update Error at %s"
msgstr ""
-#: ../../boot.php:1032
+#: ../../boot.php:1041
msgid "Create a New Account"
msgstr ""
-#: ../../boot.php:1060
+#: ../../boot.php:1069
msgid "Nickname or Email address: "
msgstr ""
-#: ../../boot.php:1061
+#: ../../boot.php:1070
msgid "Password: "
msgstr ""
-#: ../../boot.php:1062
+#: ../../boot.php:1071
msgid "Remember me"
msgstr ""
-#: ../../boot.php:1065
+#: ../../boot.php:1074
msgid "Or login using OpenID: "
msgstr ""
-#: ../../boot.php:1071
+#: ../../boot.php:1080
msgid "Forgot your password?"
msgstr ""
-#: ../../boot.php:1074
+#: ../../boot.php:1083
msgid "Website Terms of Service"
msgstr ""
-#: ../../boot.php:1075
+#: ../../boot.php:1084
msgid "terms of service"
msgstr ""
-#: ../../boot.php:1077
+#: ../../boot.php:1086
msgid "Website Privacy Policy"
msgstr ""
-#: ../../boot.php:1078
+#: ../../boot.php:1087
msgid "privacy policy"
msgstr ""
-#: ../../boot.php:1207
+#: ../../boot.php:1216
msgid "Requested account is not available."
msgstr ""
-#: ../../boot.php:1286 ../../boot.php:1390
+#: ../../boot.php:1295 ../../boot.php:1399
msgid "Edit profile"
msgstr ""
-#: ../../boot.php:1352
+#: ../../boot.php:1361
msgid "Message"
msgstr ""
-#: ../../boot.php:1360
+#: ../../boot.php:1369
msgid "Manage/edit profiles"
msgstr ""
-#: ../../boot.php:1489 ../../boot.php:1575
+#: ../../boot.php:1498 ../../boot.php:1584
msgid "g A l F d"
msgstr ""
-#: ../../boot.php:1490 ../../boot.php:1576
+#: ../../boot.php:1499 ../../boot.php:1585
msgid "F d"
msgstr ""
-#: ../../boot.php:1535 ../../boot.php:1616
+#: ../../boot.php:1544 ../../boot.php:1625
msgid "[today]"
msgstr ""
-#: ../../boot.php:1547
+#: ../../boot.php:1556
msgid "Birthday Reminders"
msgstr ""
-#: ../../boot.php:1548
+#: ../../boot.php:1557
msgid "Birthdays this week:"
msgstr ""
-#: ../../boot.php:1609
+#: ../../boot.php:1618
msgid "[No description]"
msgstr ""
-#: ../../boot.php:1627
+#: ../../boot.php:1636
msgid "Event Reminders"
msgstr ""
-#: ../../boot.php:1628
+#: ../../boot.php:1637
msgid "Events this week:"
msgstr ""
-#: ../../boot.php:1864
+#: ../../boot.php:1873
msgid "Status Messages and Posts"
msgstr ""
-#: ../../boot.php:1871
+#: ../../boot.php:1880
msgid "Profile Details"
msgstr ""
-#: ../../boot.php:1888
+#: ../../boot.php:1897
msgid "Events and Calendar"
msgstr ""
-#: ../../boot.php:1895
+#: ../../boot.php:1904
msgid "Only You Can See This"
msgstr ""
-
-#: ../../index.php:405
-msgid "toggle mobile"
-msgstr ""
From 2316e0d73128fd8b070004bd575b847879373384 Mon Sep 17 00:00:00 2001
From: Zach Prezkuta
Date: Thu, 4 Apr 2013 16:42:39 -0600
Subject: [PATCH 09/67] update admin options for frost, frost mobile, and decaf
mobile
---
view/theme/decaf-mobile/admin_site.tpl | 4 ++++
view/theme/decaf-mobile/smarty3/admin_site.tpl | 4 ++++
view/theme/frost-mobile/admin_site.tpl | 4 ++++
view/theme/frost-mobile/smarty3/admin_site.tpl | 4 ++++
view/theme/frost/admin_site.tpl | 4 +++-
view/theme/frost/smarty3/admin_site.tpl | 4 +++-
6 files changed, 22 insertions(+), 2 deletions(-)
diff --git a/view/theme/decaf-mobile/admin_site.tpl b/view/theme/decaf-mobile/admin_site.tpl
index 349c8e5a9..61f52b18d 100644
--- a/view/theme/decaf-mobile/admin_site.tpl
+++ b/view/theme/decaf-mobile/admin_site.tpl
@@ -11,6 +11,9 @@
{{ inc field_select.tpl with $field=$theme }}{{ endinc }}
{{ inc field_select.tpl with $field=$theme_mobile }}{{ endinc }}
{{ inc field_select.tpl with $field=$ssl_policy }}{{ endinc }}
+ {{ inc field_checkbox.tpl with $field=$new_share }}{{ endinc }}
+ {{ inc field_checkbox.tpl with $field=$hide_help }}{{ endinc }}
+ {{ inc field_select.tpl with $field=$singleuser }}{{ endinc }}
@@ -36,6 +39,7 @@
{{ inc field_checkbox.tpl with $field=$force_publish }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$no_community_page }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$ostatus_disabled }}{{ endinc }}
+ {{ inc field_select.tpl with $field=$ostatus_poll_interval }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$diaspora_enabled }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$dfrn_only }}{{ endinc }}
{{ inc field_input.tpl with $field=$global_directory }}{{ endinc }}
diff --git a/view/theme/decaf-mobile/smarty3/admin_site.tpl b/view/theme/decaf-mobile/smarty3/admin_site.tpl
index 5856d9792..035024e68 100644
--- a/view/theme/decaf-mobile/smarty3/admin_site.tpl
+++ b/view/theme/decaf-mobile/smarty3/admin_site.tpl
@@ -16,6 +16,9 @@
{{include file="field_select.tpl" field=$theme}}
{{include file="field_select.tpl" field=$theme_mobile}}
{{include file="field_select.tpl" field=$ssl_policy}}
+ {{include file="field_checkbox.tpl" field=$new_share}}
+ {{include file="field_checkbox.tpl" field=$hide_help}}
+ {{include file="field_select.tpl" field=$singleuser}}
@@ -41,6 +44,7 @@
{{include file="field_checkbox.tpl" field=$force_publish}}
{{include file="field_checkbox.tpl" field=$no_community_page}}
{{include file="field_checkbox.tpl" field=$ostatus_disabled}}
+ {{include file="field_select.tpl" field=$ostatus_poll_interval}}
{{include file="field_checkbox.tpl" field=$diaspora_enabled}}
{{include file="field_checkbox.tpl" field=$dfrn_only}}
{{include file="field_input.tpl" field=$global_directory}}
diff --git a/view/theme/frost-mobile/admin_site.tpl b/view/theme/frost-mobile/admin_site.tpl
index 349c8e5a9..61f52b18d 100644
--- a/view/theme/frost-mobile/admin_site.tpl
+++ b/view/theme/frost-mobile/admin_site.tpl
@@ -11,6 +11,9 @@
{{ inc field_select.tpl with $field=$theme }}{{ endinc }}
{{ inc field_select.tpl with $field=$theme_mobile }}{{ endinc }}
{{ inc field_select.tpl with $field=$ssl_policy }}{{ endinc }}
+ {{ inc field_checkbox.tpl with $field=$new_share }}{{ endinc }}
+ {{ inc field_checkbox.tpl with $field=$hide_help }}{{ endinc }}
+ {{ inc field_select.tpl with $field=$singleuser }}{{ endinc }}
@@ -36,6 +39,7 @@
{{ inc field_checkbox.tpl with $field=$force_publish }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$no_community_page }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$ostatus_disabled }}{{ endinc }}
+ {{ inc field_select.tpl with $field=$ostatus_poll_interval }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$diaspora_enabled }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$dfrn_only }}{{ endinc }}
{{ inc field_input.tpl with $field=$global_directory }}{{ endinc }}
diff --git a/view/theme/frost-mobile/smarty3/admin_site.tpl b/view/theme/frost-mobile/smarty3/admin_site.tpl
index 5856d9792..035024e68 100644
--- a/view/theme/frost-mobile/smarty3/admin_site.tpl
+++ b/view/theme/frost-mobile/smarty3/admin_site.tpl
@@ -16,6 +16,9 @@
{{include file="field_select.tpl" field=$theme}}
{{include file="field_select.tpl" field=$theme_mobile}}
{{include file="field_select.tpl" field=$ssl_policy}}
+ {{include file="field_checkbox.tpl" field=$new_share}}
+ {{include file="field_checkbox.tpl" field=$hide_help}}
+ {{include file="field_select.tpl" field=$singleuser}}
@@ -41,6 +44,7 @@
{{include file="field_checkbox.tpl" field=$force_publish}}
{{include file="field_checkbox.tpl" field=$no_community_page}}
{{include file="field_checkbox.tpl" field=$ostatus_disabled}}
+ {{include file="field_select.tpl" field=$ostatus_poll_interval}}
{{include file="field_checkbox.tpl" field=$diaspora_enabled}}
{{include file="field_checkbox.tpl" field=$dfrn_only}}
{{include file="field_input.tpl" field=$global_directory}}
diff --git a/view/theme/frost/admin_site.tpl b/view/theme/frost/admin_site.tpl
index 38cbdb3ce..07a76a827 100644
--- a/view/theme/frost/admin_site.tpl
+++ b/view/theme/frost/admin_site.tpl
@@ -12,7 +12,8 @@
{{ inc field_select.tpl with $field=$theme_mobile }}{{ endinc }}
{{ inc field_select.tpl with $field=$ssl_policy }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$new_share }}{{ endinc }}
-
+ {{ inc field_checkbox.tpl with $field=$hide_help }}{{ endinc }}
+ {{ inc field_select.tpl with $field=$singleuser }}{{ endinc }}
@@ -38,6 +39,7 @@
{{ inc field_checkbox.tpl with $field=$force_publish }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$no_community_page }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$ostatus_disabled }}{{ endinc }}
+ {{ inc field_select.tpl with $field=$ostatus_poll_interval }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$diaspora_enabled }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$dfrn_only }}{{ endinc }}
{{ inc field_input.tpl with $field=$global_directory }}{{ endinc }}
diff --git a/view/theme/frost/smarty3/admin_site.tpl b/view/theme/frost/smarty3/admin_site.tpl
index 247972712..af0eebacc 100644
--- a/view/theme/frost/smarty3/admin_site.tpl
+++ b/view/theme/frost/smarty3/admin_site.tpl
@@ -17,7 +17,8 @@
{{include file="field_select.tpl" field=$theme_mobile}}
{{include file="field_select.tpl" field=$ssl_policy}}
{{include file="field_checkbox.tpl" field=$new_share}}
-
+ {{include file="field_checkbox.tpl" field=$hide_help}}
+ {{include file="field_select.tpl" field=$singleuser}}
@@ -43,6 +44,7 @@
{{include file="field_checkbox.tpl" field=$force_publish}}
{{include file="field_checkbox.tpl" field=$no_community_page}}
{{include file="field_checkbox.tpl" field=$ostatus_disabled}}
+ {{include file="field_select.tpl" field=$ostatus_poll_interval}}
{{include file="field_checkbox.tpl" field=$diaspora_enabled}}
{{include file="field_checkbox.tpl" field=$dfrn_only}}
{{include file="field_input.tpl" field=$global_directory}}
From 17ca6290f5347222ac6170ba7dd34a94ee91a02a Mon Sep 17 00:00:00 2001
From: Tobias Diekershoff
Date: Sat, 6 Apr 2013 08:25:33 +0200
Subject: [PATCH 10/67] DE: update to the strings
---
view/de/messages.po | 2064 ++++++++++++++++++++++---------------------
view/de/strings.php | 392 ++++----
2 files changed, 1234 insertions(+), 1222 deletions(-)
diff --git a/view/de/messages.po b/view/de/messages.po
index 649f79e10..71bd11b1c 100644
--- a/view/de/messages.po
+++ b/view/de/messages.po
@@ -25,8 +25,8 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
-"POT-Creation-Date: 2013-04-03 00:02-0700\n"
-"PO-Revision-Date: 2013-04-04 15:25+0000\n"
+"POT-Creation-Date: 2013-04-04 00:02-0700\n"
+"PO-Revision-Date: 2013-04-06 06:22+0000\n"
"Last-Translator: bavatar \n"
"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n"
"MIME-Version: 1.0\n"
@@ -38,7 +38,7 @@ msgstr ""
#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
#: ../../include/nav.php:77 ../../mod/profperm.php:103
#: ../../mod/newmember.php:32 ../../view/theme/diabook/theme.php:88
-#: ../../boot.php:1868
+#: ../../boot.php:1877
msgid "Profile"
msgstr "Profil"
@@ -47,7 +47,7 @@ msgid "Full Name:"
msgstr "Kompletter Name:"
#: ../../include/profile_advanced.php:17 ../../mod/directory.php:136
-#: ../../boot.php:1408
+#: ../../boot.php:1417
msgid "Gender:"
msgstr "Geschlecht:"
@@ -68,7 +68,7 @@ msgid "Age:"
msgstr "Alter:"
#: ../../include/profile_advanced.php:37 ../../mod/directory.php:138
-#: ../../boot.php:1411
+#: ../../boot.php:1420
msgid "Status:"
msgstr "Status:"
@@ -82,7 +82,7 @@ msgid "Sexual Preference:"
msgstr "Sexuelle Vorlieben:"
#: ../../include/profile_advanced.php:48 ../../mod/directory.php:140
-#: ../../boot.php:1413
+#: ../../boot.php:1422
msgid "Homepage:"
msgstr "Homepage:"
@@ -418,306 +418,306 @@ msgstr "Kontakt bearbeiten"
msgid "Send PM"
msgstr "Private Nachricht senden"
-#: ../../include/text.php:276
+#: ../../include/text.php:313
msgid "prev"
msgstr "vorige"
-#: ../../include/text.php:278
+#: ../../include/text.php:315
msgid "first"
msgstr "erste"
-#: ../../include/text.php:307
+#: ../../include/text.php:344
msgid "last"
msgstr "letzte"
-#: ../../include/text.php:310
+#: ../../include/text.php:347
msgid "next"
msgstr "nächste"
-#: ../../include/text.php:328
+#: ../../include/text.php:371
msgid "newer"
msgstr "neuer"
-#: ../../include/text.php:332
+#: ../../include/text.php:375
msgid "older"
msgstr "älter"
-#: ../../include/text.php:697
+#: ../../include/text.php:837
msgid "No contacts"
msgstr "Keine Kontakte"
-#: ../../include/text.php:706
+#: ../../include/text.php:846
#, php-format
msgid "%d Contact"
msgid_plural "%d Contacts"
msgstr[0] "%d Kontakt"
msgstr[1] "%d Kontakte"
-#: ../../include/text.php:718 ../../mod/viewcontacts.php:76
+#: ../../include/text.php:858 ../../mod/viewcontacts.php:76
msgid "View Contacts"
msgstr "Kontakte anzeigen"
-#: ../../include/text.php:778 ../../include/text.php:779
+#: ../../include/text.php:935 ../../include/text.php:936
#: ../../include/nav.php:118 ../../mod/search.php:99
msgid "Search"
msgstr "Suche"
-#: ../../include/text.php:781 ../../mod/notes.php:63 ../../mod/filer.php:31
+#: ../../include/text.php:938 ../../mod/notes.php:63 ../../mod/filer.php:31
msgid "Save"
msgstr "Speichern"
-#: ../../include/text.php:819
+#: ../../include/text.php:987
msgid "poke"
msgstr "anstupsen"
-#: ../../include/text.php:819 ../../include/conversation.php:211
+#: ../../include/text.php:987 ../../include/conversation.php:211
msgid "poked"
msgstr "stupste"
-#: ../../include/text.php:820
+#: ../../include/text.php:988
msgid "ping"
msgstr "anpingen"
-#: ../../include/text.php:820
+#: ../../include/text.php:988
msgid "pinged"
msgstr "pingte"
-#: ../../include/text.php:821
+#: ../../include/text.php:989
msgid "prod"
msgstr "knuffen"
-#: ../../include/text.php:821
+#: ../../include/text.php:989
msgid "prodded"
msgstr "knuffte"
-#: ../../include/text.php:822
+#: ../../include/text.php:990
msgid "slap"
msgstr "ohrfeigen"
-#: ../../include/text.php:822
+#: ../../include/text.php:990
msgid "slapped"
msgstr "ohrfeigte"
-#: ../../include/text.php:823
+#: ../../include/text.php:991
msgid "finger"
msgstr "befummeln"
-#: ../../include/text.php:823
+#: ../../include/text.php:991
msgid "fingered"
msgstr "befummelte"
-#: ../../include/text.php:824
+#: ../../include/text.php:992
msgid "rebuff"
msgstr "eine Abfuhr erteilen"
-#: ../../include/text.php:824
+#: ../../include/text.php:992
msgid "rebuffed"
msgstr "abfuhrerteilte"
-#: ../../include/text.php:836
+#: ../../include/text.php:1006
msgid "happy"
msgstr "glücklich"
-#: ../../include/text.php:837
+#: ../../include/text.php:1007
msgid "sad"
msgstr "traurig"
-#: ../../include/text.php:838
+#: ../../include/text.php:1008
msgid "mellow"
msgstr "sanft"
-#: ../../include/text.php:839
+#: ../../include/text.php:1009
msgid "tired"
msgstr "müde"
-#: ../../include/text.php:840
+#: ../../include/text.php:1010
msgid "perky"
msgstr "frech"
-#: ../../include/text.php:841
+#: ../../include/text.php:1011
msgid "angry"
msgstr "sauer"
-#: ../../include/text.php:842
+#: ../../include/text.php:1012
msgid "stupified"
msgstr "verblüfft"
-#: ../../include/text.php:843
+#: ../../include/text.php:1013
msgid "puzzled"
msgstr "verwirrt"
-#: ../../include/text.php:844
+#: ../../include/text.php:1014
msgid "interested"
msgstr "interessiert"
-#: ../../include/text.php:845
+#: ../../include/text.php:1015
msgid "bitter"
msgstr "verbittert"
-#: ../../include/text.php:846
+#: ../../include/text.php:1016
msgid "cheerful"
msgstr "fröhlich"
-#: ../../include/text.php:847
+#: ../../include/text.php:1017
msgid "alive"
msgstr "lebendig"
-#: ../../include/text.php:848
+#: ../../include/text.php:1018
msgid "annoyed"
msgstr "verärgert"
-#: ../../include/text.php:849
+#: ../../include/text.php:1019
msgid "anxious"
msgstr "unruhig"
-#: ../../include/text.php:850
+#: ../../include/text.php:1020
msgid "cranky"
msgstr "schrullig"
-#: ../../include/text.php:851
+#: ../../include/text.php:1021
msgid "disturbed"
msgstr "verstört"
-#: ../../include/text.php:852
+#: ../../include/text.php:1022
msgid "frustrated"
msgstr "frustriert"
-#: ../../include/text.php:853
+#: ../../include/text.php:1023
msgid "motivated"
msgstr "motiviert"
-#: ../../include/text.php:854
+#: ../../include/text.php:1024
msgid "relaxed"
msgstr "entspannt"
-#: ../../include/text.php:855
+#: ../../include/text.php:1025
msgid "surprised"
msgstr "überrascht"
-#: ../../include/text.php:1015
+#: ../../include/text.php:1191
msgid "Monday"
msgstr "Montag"
-#: ../../include/text.php:1015
+#: ../../include/text.php:1191
msgid "Tuesday"
msgstr "Dienstag"
-#: ../../include/text.php:1015
+#: ../../include/text.php:1191
msgid "Wednesday"
msgstr "Mittwoch"
-#: ../../include/text.php:1015
+#: ../../include/text.php:1191
msgid "Thursday"
msgstr "Donnerstag"
-#: ../../include/text.php:1015
+#: ../../include/text.php:1191
msgid "Friday"
msgstr "Freitag"
-#: ../../include/text.php:1015
+#: ../../include/text.php:1191
msgid "Saturday"
msgstr "Samstag"
-#: ../../include/text.php:1015
+#: ../../include/text.php:1191
msgid "Sunday"
msgstr "Sonntag"
-#: ../../include/text.php:1019
+#: ../../include/text.php:1195
msgid "January"
msgstr "Januar"
-#: ../../include/text.php:1019
+#: ../../include/text.php:1195
msgid "February"
msgstr "Februar"
-#: ../../include/text.php:1019
+#: ../../include/text.php:1195
msgid "March"
msgstr "März"
-#: ../../include/text.php:1019
+#: ../../include/text.php:1195
msgid "April"
msgstr "April"
-#: ../../include/text.php:1019
+#: ../../include/text.php:1195
msgid "May"
msgstr "Mai"
-#: ../../include/text.php:1019
+#: ../../include/text.php:1195
msgid "June"
msgstr "Juni"
-#: ../../include/text.php:1019
+#: ../../include/text.php:1195
msgid "July"
msgstr "Juli"
-#: ../../include/text.php:1019
+#: ../../include/text.php:1195
msgid "August"
msgstr "August"
-#: ../../include/text.php:1019
+#: ../../include/text.php:1195
msgid "September"
msgstr "September"
-#: ../../include/text.php:1019
+#: ../../include/text.php:1195
msgid "October"
msgstr "Oktober"
-#: ../../include/text.php:1019
+#: ../../include/text.php:1195
msgid "November"
msgstr "November"
-#: ../../include/text.php:1019
+#: ../../include/text.php:1195
msgid "December"
msgstr "Dezember"
-#: ../../include/text.php:1153
+#: ../../include/text.php:1352
msgid "bytes"
msgstr "Byte"
-#: ../../include/text.php:1180 ../../include/text.php:1192
+#: ../../include/text.php:1379 ../../include/text.php:1391
msgid "Click to open/close"
msgstr "Zum öffnen/schließen klicken"
-#: ../../include/text.php:1333 ../../mod/events.php:335
+#: ../../include/text.php:1553 ../../mod/events.php:335
msgid "link to source"
msgstr "Link zum Originalbeitrag"
-#: ../../include/text.php:1365 ../../include/user.php:237
+#: ../../include/text.php:1596 ../../include/user.php:237
msgid "default"
msgstr "Standard"
-#: ../../include/text.php:1377
+#: ../../include/text.php:1608
msgid "Select an alternate language"
msgstr "Alternative Sprache auswählen"
-#: ../../include/text.php:1583 ../../include/conversation.php:118
+#: ../../include/text.php:1860 ../../include/conversation.php:118
#: ../../include/conversation.php:246 ../../view/theme/diabook/theme.php:456
msgid "event"
msgstr "Veranstaltung"
-#: ../../include/text.php:1585 ../../include/diaspora.php:1874
+#: ../../include/text.php:1862 ../../include/diaspora.php:1874
#: ../../include/conversation.php:126 ../../include/conversation.php:254
#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:151
#: ../../view/theme/diabook/theme.php:464
msgid "photo"
msgstr "Foto"
-#: ../../include/text.php:1587
+#: ../../include/text.php:1864
msgid "activity"
msgstr "Aktivität"
-#: ../../include/text.php:1589 ../../mod/content.php:628
+#: ../../include/text.php:1866 ../../mod/content.php:628
#: ../../object/Item.php:364 ../../object/Item.php:377
msgid "comment"
msgid_plural "comments"
msgstr[0] ""
msgstr[1] "Kommentar"
-#: ../../include/text.php:1590
+#: ../../include/text.php:1867
msgid "post"
msgstr "Beitrag"
-#: ../../include/text.php:1745
+#: ../../include/text.php:2022
msgid "Item filed"
msgstr "Beitrag abgelegt"
@@ -808,7 +808,7 @@ msgid "Finishes:"
msgstr "Endet:"
#: ../../include/bb2diaspora.php:415 ../../include/event.php:40
-#: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1406
+#: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1415
msgid "Location:"
msgstr "Ort:"
@@ -973,19 +973,19 @@ msgstr "OK, wahrscheinlich harmlos"
msgid "Reputable, has my trust"
msgstr "Seriös, hat mein Vertrauen"
-#: ../../include/contact_selectors.php:56
+#: ../../include/contact_selectors.php:56 ../../mod/admin.php:452
msgid "Frequently"
msgstr "immer wieder"
-#: ../../include/contact_selectors.php:57
+#: ../../include/contact_selectors.php:57 ../../mod/admin.php:453
msgid "Hourly"
msgstr "Stündlich"
-#: ../../include/contact_selectors.php:58
+#: ../../include/contact_selectors.php:58 ../../mod/admin.php:454
msgid "Twice daily"
msgstr "Zweimal täglich"
-#: ../../include/contact_selectors.php:59
+#: ../../include/contact_selectors.php:59 ../../mod/admin.php:455
msgid "Daily"
msgstr "Täglich"
@@ -1010,8 +1010,8 @@ msgid "RSS/Atom"
msgstr "RSS/Atom"
#: ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86 ../../mod/admin.php:754
-#: ../../mod/admin.php:765
+#: ../../include/contact_selectors.php:86 ../../mod/admin.php:766
+#: ../../mod/admin.php:777
msgid "Email"
msgstr "E-Mail"
@@ -1058,7 +1058,7 @@ msgid "Example: bob@example.com, http://example.com/barbara"
msgstr "Beispiel: bob@example.com, http://example.com/barbara"
#: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88
-#: ../../mod/match.php:58 ../../boot.php:1338
+#: ../../mod/match.php:58 ../../boot.php:1347
msgid "Connect"
msgstr "Verbinden"
@@ -1135,7 +1135,7 @@ msgstr[0] "%d gemeinsamer Kontakt"
msgstr[1] "%d gemeinsame Kontakte"
#: ../../include/contact_widgets.php:204 ../../mod/content.php:629
-#: ../../object/Item.php:365 ../../boot.php:652
+#: ../../object/Item.php:365 ../../boot.php:653
msgid "show more"
msgstr "mehr anzeigen"
@@ -1162,6 +1162,95 @@ msgstr "$1 hat geschrieben:"
msgid "Encrypted content"
msgstr "Verschlüsselter Inhalt"
+#: ../../include/items.php:1791 ../../include/datetime.php:472
+#, php-format
+msgid "%s's birthday"
+msgstr "%ss Geburtstag"
+
+#: ../../include/items.php:1792 ../../include/datetime.php:473
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Herzlichen Glückwunsch %s"
+
+#: ../../include/items.php:3466 ../../mod/dfrn_request.php:716
+msgid "[Name Withheld]"
+msgstr "[Name unterdrückt]"
+
+#: ../../include/items.php:3473
+msgid "A new person is sharing with you at "
+msgstr "Eine neue Person teilt mit dir auf "
+
+#: ../../include/items.php:3473
+msgid "You have a new follower at "
+msgstr "Du hast einen neuen Kontakt auf "
+
+#: ../../include/items.php:3957 ../../mod/admin.php:158
+#: ../../mod/admin.php:809 ../../mod/admin.php:1009 ../../mod/viewsrc.php:15
+#: ../../mod/notice.php:15 ../../mod/display.php:51 ../../mod/display.php:213
+msgid "Item not found."
+msgstr "Beitrag nicht gefunden."
+
+#: ../../include/items.php:3996
+msgid "Do you really want to delete this item?"
+msgstr "Möchtest du wirklich dieses Item löschen?"
+
+#: ../../include/items.php:3998 ../../mod/profiles.php:606
+#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246
+#: ../../mod/settings.php:934 ../../mod/settings.php:940
+#: ../../mod/settings.php:948 ../../mod/settings.php:952
+#: ../../mod/settings.php:957 ../../mod/settings.php:963
+#: ../../mod/settings.php:969 ../../mod/settings.php:975
+#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
+#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
+#: ../../mod/settings.php:1009 ../../mod/dfrn_request.php:836
+#: ../../mod/suggest.php:29 ../../mod/message.php:209
+msgid "Yes"
+msgstr "Ja"
+
+#: ../../include/items.php:4001 ../../include/conversation.php:1080
+#: ../../mod/contacts.php:249 ../../mod/settings.php:561
+#: ../../mod/settings.php:587 ../../mod/dfrn_request.php:848
+#: ../../mod/suggest.php:32 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
+#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../mod/message.php:212
+#: ../../mod/photos.php:202 ../../mod/photos.php:290
+msgid "Cancel"
+msgstr "Abbrechen"
+
+#: ../../include/items.php:4121 ../../mod/profiles.php:146
+#: ../../mod/profiles.php:567 ../../mod/notes.php:20 ../../mod/nogroup.php:25
+#: ../../mod/item.php:140 ../../mod/item.php:156 ../../mod/allfriends.php:9
+#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/register.php:40
+#: ../../mod/regmod.php:118 ../../mod/attach.php:33 ../../mod/contacts.php:147
+#: ../../mod/settings.php:91 ../../mod/settings.php:542
+#: ../../mod/settings.php:547 ../../mod/crepair.php:115
+#: ../../mod/delegate.php:6 ../../mod/poke.php:135
+#: ../../mod/dfrn_confirm.php:53 ../../mod/suggest.php:56
+#: ../../mod/editpost.php:10 ../../mod/events.php:140 ../../mod/uimport.php:23
+#: ../../mod/follow.php:9 ../../mod/fsuggest.php:78 ../../mod/group.php:19
+#: ../../mod/viewcontacts.php:22 ../../mod/wall_attach.php:55
+#: ../../mod/wall_upload.php:66 ../../mod/invite.php:15
+#: ../../mod/invite.php:101 ../../mod/wallmessage.php:9
+#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
+#: ../../mod/wallmessage.php:103 ../../mod/manage.php:96
+#: ../../mod/message.php:38 ../../mod/message.php:174 ../../mod/mood.php:114
+#: ../../mod/network.php:6 ../../mod/notifications.php:66
+#: ../../mod/photos.php:133 ../../mod/photos.php:1044
+#: ../../mod/display.php:209 ../../mod/install.php:151
+#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
+#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
+#: ../../index.php:346
+msgid "Permission denied."
+msgstr "Zugriff verweigert."
+
+#: ../../include/items.php:4191
+msgid "Archives"
+msgstr "Archiv"
+
+#: ../../include/network.php:875
+msgid "view full size"
+msgstr "Volle Größe anzeigen"
+
#: ../../include/datetime.php:43 ../../include/datetime.php:45
msgid "Miscellaneous"
msgstr "Verschiedenes"
@@ -1235,16 +1324,6 @@ msgstr "Sekunden"
msgid "%1$d %2$s ago"
msgstr "%1$d %2$s her"
-#: ../../include/datetime.php:472 ../../include/items.php:1771
-#, php-format
-msgid "%s's birthday"
-msgstr "%ss Geburtstag"
-
-#: ../../include/datetime.php:473 ../../include/items.php:1772
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Herzlichen Glückwunsch %s"
-
#: ../../include/plugin.php:439 ../../include/plugin.php:441
msgid "Click here to upgrade."
msgstr "Zum Upgraden hier klicken."
@@ -1526,10 +1605,10 @@ msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
msgid "Select"
msgstr "Auswählen"
-#: ../../include/conversation.php:588 ../../mod/settings.php:623
-#: ../../mod/admin.php:758 ../../mod/group.php:171 ../../mod/photos.php:1637
-#: ../../mod/content.php:462 ../../mod/content.php:764
-#: ../../object/Item.php:127
+#: ../../include/conversation.php:588 ../../mod/admin.php:770
+#: ../../mod/settings.php:623 ../../mod/group.php:171
+#: ../../mod/photos.php:1637 ../../mod/content.php:462
+#: ../../mod/content.php:764 ../../object/Item.php:127
msgid "Delete"
msgstr "Löschen"
@@ -1756,16 +1835,6 @@ msgstr "Z.B.: bob@example.com, mary@example.com"
msgid "Preview"
msgstr "Vorschau"
-#: ../../include/conversation.php:1080 ../../include/items.php:3981
-#: ../../mod/contacts.php:249 ../../mod/settings.php:561
-#: ../../mod/settings.php:587 ../../mod/dfrn_request.php:848
-#: ../../mod/suggest.php:32 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
-#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81
-#: ../../mod/fbrowser.php:116 ../../mod/message.php:212
-#: ../../mod/photos.php:202 ../../mod/photos.php:290
-msgid "Cancel"
-msgstr "Abbrechen"
-
#: ../../include/conversation.php:1086
msgid "Post to Groups"
msgstr "Poste an Gruppe"
@@ -1982,7 +2051,7 @@ msgstr "Keine Neuigkeiten."
msgid "Clear notifications"
msgstr "Bereinige Benachrichtigungen"
-#: ../../include/nav.php:73 ../../boot.php:1057
+#: ../../include/nav.php:73 ../../boot.php:1066
msgid "Logout"
msgstr "Abmelden"
@@ -1990,7 +2059,7 @@ msgstr "Abmelden"
msgid "End this session"
msgstr "Diese Sitzung beenden"
-#: ../../include/nav.php:76 ../../boot.php:1861
+#: ../../include/nav.php:76 ../../boot.php:1870
msgid "Status"
msgstr "Status"
@@ -2004,7 +2073,7 @@ msgid "Your profile page"
msgstr "Deine Profilseite"
#: ../../include/nav.php:78 ../../mod/fbrowser.php:25
-#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1875
+#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1884
msgid "Photos"
msgstr "Bilder"
@@ -2013,7 +2082,7 @@ msgid "Your photos"
msgstr "Deine Fotos"
#: ../../include/nav.php:79 ../../mod/events.php:370
-#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1885
+#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1894
msgid "Events"
msgstr "Veranstaltungen"
@@ -2029,7 +2098,7 @@ msgstr "Persönliche Notizen"
msgid "Your personal photos"
msgstr "Deine privaten Fotos"
-#: ../../include/nav.php:91 ../../boot.php:1058
+#: ../../include/nav.php:91 ../../boot.php:1067
msgid "Login"
msgstr "Anmeldung"
@@ -2046,7 +2115,7 @@ msgstr "Pinnwand"
msgid "Home Page"
msgstr "Homepage"
-#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1033
+#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1042
msgid "Register"
msgstr "Registrieren"
@@ -2164,8 +2233,8 @@ msgstr "Delegierungen"
msgid "Delegate Page Management"
msgstr "Delegiere das Management für die Seite"
-#: ../../include/nav.php:167 ../../mod/settings.php:74 ../../mod/admin.php:849
-#: ../../mod/admin.php:1057 ../../mod/uexport.php:48
+#: ../../include/nav.php:167 ../../mod/admin.php:861 ../../mod/admin.php:1069
+#: ../../mod/settings.php:74 ../../mod/uexport.php:48
#: ../../mod/newmember.php:22 ../../view/theme/diabook/theme.php:537
#: ../../view/theme/diabook/theme.php:658
msgid "Settings"
@@ -2175,7 +2244,7 @@ msgstr "Einstellungen"
msgid "Account settings"
msgstr "Kontoeinstellungen"
-#: ../../include/nav.php:169 ../../boot.php:1360
+#: ../../include/nav.php:169 ../../boot.php:1369
msgid "Profiles"
msgstr "Profile"
@@ -2208,10 +2277,6 @@ msgstr "Navigation"
msgid "Site map"
msgstr "Sitemap"
-#: ../../include/network.php:876
-msgid "view full size"
-msgstr "Volle Größe anzeigen"
-
#: ../../include/oembed.php:138
msgid "Embedded content"
msgstr "Eingebetteter Inhalt"
@@ -2220,71 +2285,6 @@ msgstr "Eingebetteter Inhalt"
msgid "Embedding disabled"
msgstr "Einbettungen deaktiviert"
-#: ../../include/items.php:3446 ../../mod/dfrn_request.php:716
-msgid "[Name Withheld]"
-msgstr "[Name unterdrückt]"
-
-#: ../../include/items.php:3453
-msgid "A new person is sharing with you at "
-msgstr "Eine neue Person teilt mit dir auf "
-
-#: ../../include/items.php:3453
-msgid "You have a new follower at "
-msgstr "Du hast einen neuen Kontakt auf "
-
-#: ../../include/items.php:3937 ../../mod/admin.php:158
-#: ../../mod/admin.php:797 ../../mod/admin.php:997 ../../mod/viewsrc.php:15
-#: ../../mod/notice.php:15 ../../mod/display.php:51 ../../mod/display.php:213
-msgid "Item not found."
-msgstr "Beitrag nicht gefunden."
-
-#: ../../include/items.php:3976
-msgid "Do you really want to delete this item?"
-msgstr "Möchtest du wirklich dieses Item löschen?"
-
-#: ../../include/items.php:3978 ../../mod/profiles.php:606
-#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246
-#: ../../mod/settings.php:934 ../../mod/settings.php:940
-#: ../../mod/settings.php:948 ../../mod/settings.php:952
-#: ../../mod/settings.php:957 ../../mod/settings.php:963
-#: ../../mod/settings.php:969 ../../mod/settings.php:975
-#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
-#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
-#: ../../mod/settings.php:1009 ../../mod/dfrn_request.php:836
-#: ../../mod/suggest.php:29 ../../mod/message.php:209
-msgid "Yes"
-msgstr "Ja"
-
-#: ../../include/items.php:4101 ../../mod/profiles.php:146
-#: ../../mod/profiles.php:567 ../../mod/notes.php:20 ../../mod/nogroup.php:25
-#: ../../mod/item.php:140 ../../mod/item.php:156 ../../mod/allfriends.php:9
-#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/register.php:40
-#: ../../mod/regmod.php:118 ../../mod/attach.php:33 ../../mod/contacts.php:147
-#: ../../mod/settings.php:91 ../../mod/settings.php:542
-#: ../../mod/settings.php:547 ../../mod/crepair.php:115
-#: ../../mod/delegate.php:6 ../../mod/poke.php:135
-#: ../../mod/dfrn_confirm.php:53 ../../mod/suggest.php:56
-#: ../../mod/editpost.php:10 ../../mod/events.php:140 ../../mod/uimport.php:23
-#: ../../mod/follow.php:9 ../../mod/fsuggest.php:78 ../../mod/group.php:19
-#: ../../mod/viewcontacts.php:22 ../../mod/wall_attach.php:55
-#: ../../mod/wall_upload.php:66 ../../mod/invite.php:15
-#: ../../mod/invite.php:101 ../../mod/wallmessage.php:9
-#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
-#: ../../mod/wallmessage.php:103 ../../mod/manage.php:96
-#: ../../mod/message.php:38 ../../mod/message.php:174 ../../mod/mood.php:114
-#: ../../mod/network.php:6 ../../mod/notifications.php:66
-#: ../../mod/photos.php:133 ../../mod/photos.php:1044
-#: ../../mod/display.php:209 ../../mod/install.php:151
-#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
-#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
-#: ../../index.php:346
-msgid "Permission denied."
-msgstr "Zugriff verweigert."
-
-#: ../../include/items.php:4171
-msgid "Archives"
-msgstr "Archiv"
-
#: ../../include/security.php:22
msgid "Welcome "
msgstr "Willkommen "
@@ -2427,11 +2427,11 @@ msgstr "Nein"
msgid "Edit Profile Details"
msgstr "Profil bearbeiten"
-#: ../../mod/profiles.php:626 ../../mod/contacts.php:386
-#: ../../mod/settings.php:560 ../../mod/settings.php:670
-#: ../../mod/settings.php:739 ../../mod/settings.php:811
-#: ../../mod/settings.php:1037 ../../mod/admin.php:480 ../../mod/admin.php:751
-#: ../../mod/admin.php:890 ../../mod/admin.php:1090 ../../mod/admin.php:1177
+#: ../../mod/profiles.php:626 ../../mod/admin.php:491 ../../mod/admin.php:763
+#: ../../mod/admin.php:902 ../../mod/admin.php:1102 ../../mod/admin.php:1189
+#: ../../mod/contacts.php:386 ../../mod/settings.php:560
+#: ../../mod/settings.php:670 ../../mod/settings.php:739
+#: ../../mod/settings.php:811 ../../mod/settings.php:1037
#: ../../mod/crepair.php:166 ../../mod/poke.php:199 ../../mod/events.php:478
#: ../../mod/fsuggest.php:107 ../../mod/group.php:87 ../../mod/invite.php:140
#: ../../mod/localtime.php:45 ../../mod/manage.php:110
@@ -2607,23 +2607,23 @@ msgstr "Alter: "
msgid "Edit/Manage Profiles"
msgstr "Verwalte/Editiere Profile"
-#: ../../mod/profiles.php:722 ../../boot.php:1366 ../../boot.php:1392
+#: ../../mod/profiles.php:722 ../../boot.php:1375 ../../boot.php:1401
msgid "Change profile photo"
msgstr "Profilbild ändern"
-#: ../../mod/profiles.php:723 ../../boot.php:1367
+#: ../../mod/profiles.php:723 ../../boot.php:1376
msgid "Create New Profile"
msgstr "Neues Profil anlegen"
-#: ../../mod/profiles.php:734 ../../boot.php:1377
+#: ../../mod/profiles.php:734 ../../boot.php:1386
msgid "Profile Image"
msgstr "Profilbild"
-#: ../../mod/profiles.php:736 ../../boot.php:1380
+#: ../../mod/profiles.php:736 ../../boot.php:1389
msgid "visible to everybody"
msgstr "sichtbar für jeden"
-#: ../../mod/profiles.php:737 ../../boot.php:1381
+#: ../../mod/profiles.php:737 ../../boot.php:1390
msgid "Edit visibility"
msgstr "Sichtbarkeit bearbeiten"
@@ -2651,7 +2651,7 @@ msgstr "Sichtbar für"
msgid "All Contacts (with secure profile access)"
msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
-#: ../../mod/notes.php:44 ../../boot.php:1892
+#: ../../mod/notes.php:44 ../../boot.php:1901
msgid "Personal Notes"
msgstr "Persönliche Notizen"
@@ -2714,6 +2714,804 @@ msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen"
msgid "{0} mentioned you in a post"
msgstr "{0} hat dich in einem Beitrag erwähnt"
+#: ../../mod/admin.php:55
+msgid "Theme settings updated."
+msgstr "Themeneinstellungen aktualisiert."
+
+#: ../../mod/admin.php:96 ../../mod/admin.php:490
+msgid "Site"
+msgstr "Seite"
+
+#: ../../mod/admin.php:97 ../../mod/admin.php:762 ../../mod/admin.php:776
+msgid "Users"
+msgstr "Nutzer"
+
+#: ../../mod/admin.php:98 ../../mod/admin.php:859 ../../mod/admin.php:901
+msgid "Plugins"
+msgstr "Plugins"
+
+#: ../../mod/admin.php:99 ../../mod/admin.php:1067 ../../mod/admin.php:1101
+msgid "Themes"
+msgstr "Themen"
+
+#: ../../mod/admin.php:100
+msgid "DB updates"
+msgstr "DB Updates"
+
+#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1188
+msgid "Logs"
+msgstr "Protokolle"
+
+#: ../../mod/admin.php:121
+msgid "Plugin Features"
+msgstr "Plugin Features"
+
+#: ../../mod/admin.php:123
+msgid "User registrations waiting for confirmation"
+msgstr "Nutzeranmeldungen die auf Bestätigung warten"
+
+#: ../../mod/admin.php:182 ../../mod/admin.php:733
+msgid "Normal Account"
+msgstr "Normales Konto"
+
+#: ../../mod/admin.php:183 ../../mod/admin.php:734
+msgid "Soapbox Account"
+msgstr "Marktschreier-Konto"
+
+#: ../../mod/admin.php:184 ../../mod/admin.php:735
+msgid "Community/Celebrity Account"
+msgstr "Forum/Promi-Konto"
+
+#: ../../mod/admin.php:185 ../../mod/admin.php:736
+msgid "Automatic Friend Account"
+msgstr "Automatisches Freundekonto"
+
+#: ../../mod/admin.php:186
+msgid "Blog Account"
+msgstr "Blog Account"
+
+#: ../../mod/admin.php:187
+msgid "Private Forum"
+msgstr "Privates Forum"
+
+#: ../../mod/admin.php:206
+msgid "Message queues"
+msgstr "Nachrichten-Warteschlangen"
+
+#: ../../mod/admin.php:211 ../../mod/admin.php:489 ../../mod/admin.php:761
+#: ../../mod/admin.php:858 ../../mod/admin.php:900 ../../mod/admin.php:1066
+#: ../../mod/admin.php:1100 ../../mod/admin.php:1187
+msgid "Administration"
+msgstr "Administration"
+
+#: ../../mod/admin.php:212
+msgid "Summary"
+msgstr "Zusammenfassung"
+
+#: ../../mod/admin.php:214
+msgid "Registered users"
+msgstr "Registrierte Nutzer"
+
+#: ../../mod/admin.php:216
+msgid "Pending registrations"
+msgstr "Anstehende Anmeldungen"
+
+#: ../../mod/admin.php:217
+msgid "Version"
+msgstr "Version"
+
+#: ../../mod/admin.php:219
+msgid "Active plugins"
+msgstr "Aktive Plugins"
+
+#: ../../mod/admin.php:405
+msgid "Site settings updated."
+msgstr "Seiteneinstellungen aktualisiert."
+
+#: ../../mod/admin.php:434 ../../mod/settings.php:769
+msgid "No special theme for mobile devices"
+msgstr "Kein spezielles Theme für mobile Geräte verwenden."
+
+#: ../../mod/admin.php:451 ../../mod/contacts.php:330
+msgid "Never"
+msgstr "Niemals"
+
+#: ../../mod/admin.php:460
+msgid "Multi user instance"
+msgstr "Mehrbenutzer Instanz"
+
+#: ../../mod/admin.php:476
+msgid "Closed"
+msgstr "Geschlossen"
+
+#: ../../mod/admin.php:477
+msgid "Requires approval"
+msgstr "Bedarf der Zustimmung"
+
+#: ../../mod/admin.php:478
+msgid "Open"
+msgstr "Offen"
+
+#: ../../mod/admin.php:482
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
+
+#: ../../mod/admin.php:483
+msgid "Force all links to use SSL"
+msgstr "SSL für alle Links erzwingen"
+
+#: ../../mod/admin.php:484
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"
+
+#: ../../mod/admin.php:492 ../../mod/register.php:261
+msgid "Registration"
+msgstr "Registrierung"
+
+#: ../../mod/admin.php:493
+msgid "File upload"
+msgstr "Datei hochladen"
+
+#: ../../mod/admin.php:494
+msgid "Policies"
+msgstr "Regeln"
+
+#: ../../mod/admin.php:495
+msgid "Advanced"
+msgstr "Erweitert"
+
+#: ../../mod/admin.php:496
+msgid "Performance"
+msgstr "Performance"
+
+#: ../../mod/admin.php:500
+msgid "Site name"
+msgstr "Seitenname"
+
+#: ../../mod/admin.php:501
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
+
+#: ../../mod/admin.php:502
+msgid "System language"
+msgstr "Systemsprache"
+
+#: ../../mod/admin.php:503
+msgid "System theme"
+msgstr "Systemweites Thema"
+
+#: ../../mod/admin.php:503
+msgid ""
+"Default system theme - may be over-ridden by user profiles - change theme settings "
+msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - Theme-Einstellungen ändern "
+
+#: ../../mod/admin.php:504
+msgid "Mobile system theme"
+msgstr "Systemweites mobiles Thema"
+
+#: ../../mod/admin.php:504
+msgid "Theme for mobile devices"
+msgstr "Thema für mobile Geräte"
+
+#: ../../mod/admin.php:505
+msgid "SSL link policy"
+msgstr "Regeln für SSL Links"
+
+#: ../../mod/admin.php:505
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
+
+#: ../../mod/admin.php:506
+msgid "'Share' element"
+msgstr "'Teilen' Element"
+
+#: ../../mod/admin.php:506
+msgid "Activates the bbcode element 'share' for repeating items."
+msgstr "Aktiviert das bbcode Element 'Teilen' um Einträge zu wiederholen."
+
+#: ../../mod/admin.php:507
+msgid "Hide help entry from navigation menu"
+msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
+
+#: ../../mod/admin.php:507
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden."
+
+#: ../../mod/admin.php:508
+msgid "Single user instance"
+msgstr "Ein-Nutzer Instanz"
+
+#: ../../mod/admin.php:508
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt."
+
+#: ../../mod/admin.php:509
+msgid "Maximum image size"
+msgstr "Maximale Größe von Bildern"
+
+#: ../../mod/admin.php:509
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Maximale Upload-Größe von Bildern in Bytes. Standard ist 0, d.h. ohne Limit."
+
+#: ../../mod/admin.php:510
+msgid "Maximum image length"
+msgstr "Maximale Länge von Bildern"
+
+#: ../../mod/admin.php:510
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet."
+
+#: ../../mod/admin.php:511
+msgid "JPEG image quality"
+msgstr "Qualität des JPEG Bildes"
+
+#: ../../mod/admin.php:511
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust."
+
+#: ../../mod/admin.php:513
+msgid "Register policy"
+msgstr "Registrierungsmethode"
+
+#: ../../mod/admin.php:514
+msgid "Maximum Daily Registrations"
+msgstr "Maximum täglicher Neuanmeldungen"
+
+#: ../../mod/admin.php:514
+msgid ""
+"If registration is permitted above, this sets the maximum number of new user"
+" registrations to accept per day. If register is set to closed, this "
+"setting has no effect."
+msgstr "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt."
+
+#: ../../mod/admin.php:515
+msgid "Register text"
+msgstr "Registrierungstext"
+
+#: ../../mod/admin.php:515
+msgid "Will be displayed prominently on the registration page."
+msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
+
+#: ../../mod/admin.php:516
+msgid "Accounts abandoned after x days"
+msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
+
+#: ../../mod/admin.php:516
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit."
+
+#: ../../mod/admin.php:517
+msgid "Allowed friend domains"
+msgstr "Erlaubte Domains für Kontakte"
+
+#: ../../mod/admin.php:517
+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:518
+msgid "Allowed email domains"
+msgstr "Erlaubte Domains für E-Mails"
+
+#: ../../mod/admin.php:518
+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:519
+msgid "Block public"
+msgstr "Öffentlichen Zugriff blockieren"
+
+#: ../../mod/admin.php:519
+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:520
+msgid "Force publish"
+msgstr "Erzwinge Veröffentlichung"
+
+#: ../../mod/admin.php:520
+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:521
+msgid "Global directory update URL"
+msgstr "URL für Updates beim weltweiten Verzeichnis"
+
+#: ../../mod/admin.php:521
+msgid ""
+"URL to update the global directory. If this is not set, the global directory"
+" is completely unavailable to the application."
+msgstr "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar."
+
+#: ../../mod/admin.php:522
+msgid "Allow threaded items"
+msgstr "Erlaube Threads in Diskussionen"
+
+#: ../../mod/admin.php:522
+msgid "Allow infinite level threading for items on this site."
+msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
+
+#: ../../mod/admin.php:523
+msgid "Private posts by default for new users"
+msgstr "Private Beiträge als Standard für neue Nutzer"
+
+#: ../../mod/admin.php:523
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen."
+
+#: ../../mod/admin.php:524
+msgid "Don't include post content in email notifications"
+msgstr "Inhalte von Beiträgen nicht in Email Benachrichtigungen versenden"
+
+#: ../../mod/admin.php:524
+msgid ""
+"Don't include the content of a post/comment/private message/etc. in the "
+"email notifications that are sent out from this site, as a privacy measure."
+msgstr "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz, nicht in Email-Benachrichtigungen einbinden."
+
+#: ../../mod/admin.php:525
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
+
+#: ../../mod/admin.php:525
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt."
+
+#: ../../mod/admin.php:526
+msgid "Don't embed private images in posts"
+msgstr "Private Bilder nicht in Beiträgen einbetten."
+
+#: ../../mod/admin.php:526
+msgid ""
+"Don't replace locally-hosted private photos in posts with an embedded copy "
+"of the image. This means that contacts who receive posts containing private "
+"photos will have to authenticate and load each image, which may take a "
+"while."
+msgstr "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert."
+
+#: ../../mod/admin.php:528
+msgid "Block multiple registrations"
+msgstr "Unterbinde Mehrfachregistrierung"
+
+#: ../../mod/admin.php:528
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
+
+#: ../../mod/admin.php:529
+msgid "OpenID support"
+msgstr "OpenID Unterstützung"
+
+#: ../../mod/admin.php:529
+msgid "OpenID support for registration and logins."
+msgstr "OpenID-Unterstützung für Registrierung und Login."
+
+#: ../../mod/admin.php:530
+msgid "Fullname check"
+msgstr "Namen auf Vollständigkeit überprüfen"
+
+#: ../../mod/admin.php:530
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden."
+
+#: ../../mod/admin.php:531
+msgid "UTF-8 Regular expressions"
+msgstr "UTF-8 Reguläre Ausdrücke"
+
+#: ../../mod/admin.php:531
+msgid "Use PHP UTF8 regular expressions"
+msgstr "PHP UTF8 Ausdrücke verwenden"
+
+#: ../../mod/admin.php:532
+msgid "Show Community Page"
+msgstr "Gemeinschaftsseite anzeigen"
+
+#: ../../mod/admin.php:532
+msgid ""
+"Display a Community page showing all recent public postings on this site."
+msgstr "Zeige die Gemeinschaftsseite mit allen öffentlichen Beiträgen auf diesem Server."
+
+#: ../../mod/admin.php:533
+msgid "Enable OStatus support"
+msgstr "OStatus Unterstützung aktivieren"
+
+#: ../../mod/admin.php:533
+msgid ""
+"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "Biete die eingebaute OStatus (identi.ca, status.net, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt."
+
+#: ../../mod/admin.php:534
+msgid "OStatus conversation completion interval"
+msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen"
+
+#: ../../mod/admin.php:534
+msgid ""
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr "Wie oft soll der Poller checken ob es neue Nachrichten in OStatus Unterhaltungen gibt die geladen werden müssen. Je nach Anzahl der OStatus Kontakte könnte dies ein sehr Ressourcen lastiger Job sein."
+
+#: ../../mod/admin.php:535
+msgid "Enable Diaspora support"
+msgstr "Diaspora-Support aktivieren"
+
+#: ../../mod/admin.php:535
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
+
+#: ../../mod/admin.php:536
+msgid "Only allow Friendica contacts"
+msgstr "Nur Friendica-Kontakte erlauben"
+
+#: ../../mod/admin.php:536
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert."
+
+#: ../../mod/admin.php:537
+msgid "Verify SSL"
+msgstr "SSL Überprüfen"
+
+#: ../../mod/admin.php:537
+msgid ""
+"If you wish, you can turn on strict certificate checking. This will mean you"
+" cannot connect (at all) to self-signed SSL sites."
+msgstr "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann."
+
+#: ../../mod/admin.php:538
+msgid "Proxy user"
+msgstr "Proxy Nutzer"
+
+#: ../../mod/admin.php:539
+msgid "Proxy URL"
+msgstr "Proxy URL"
+
+#: ../../mod/admin.php:540
+msgid "Network timeout"
+msgstr "Netzwerk Wartezeit"
+
+#: ../../mod/admin.php:540
+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:541
+msgid "Delivery interval"
+msgstr "Zustellungsintervall"
+
+#: ../../mod/admin.php:541
+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:542
+msgid "Poll interval"
+msgstr "Abfrageintervall"
+
+#: ../../mod/admin.php:542
+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:543
+msgid "Maximum Load Average"
+msgstr "Maximum Load Average"
+
+#: ../../mod/admin.php:543
+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:545
+msgid "Use MySQL full text engine"
+msgstr "Nutze MySQL full text engine"
+
+#: ../../mod/admin.php:545
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
+msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden."
+
+#: ../../mod/admin.php:546
+msgid "Path to item cache"
+msgstr "Pfad zum Eintrag Cache"
+
+#: ../../mod/admin.php:547
+msgid "Cache duration in seconds"
+msgstr "Cache-Dauer in Sekunden"
+
+#: ../../mod/admin.php:547
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day)."
+msgstr "Wie lange sollen die Dateien im Cache vorgehalten werden? Standardwert ist 86400 Sekunden (ein Tag)."
+
+#: ../../mod/admin.php:548
+msgid "Path for lock file"
+msgstr "Pfad für die Sperrdatei"
+
+#: ../../mod/admin.php:549
+msgid "Temp path"
+msgstr "Temp Pfad"
+
+#: ../../mod/admin.php:550
+msgid "Base path to installation"
+msgstr "Basis-Pfad zur Installation"
+
+#: ../../mod/admin.php:567
+msgid "Update has been marked successful"
+msgstr "Update wurde als erfolgreich markiert"
+
+#: ../../mod/admin.php:577
+#, php-format
+msgid "Executing %s failed. Check system logs."
+msgstr "Ausführung von %s schlug fehl. Systemprotokolle prüfen."
+
+#: ../../mod/admin.php:580
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Update %s war erfolgreich."
+
+#: ../../mod/admin.php:584
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status."
+
+#: ../../mod/admin.php:587
+#, php-format
+msgid "Update function %s could not be found."
+msgstr "Updatefunktion %s konnte nicht gefunden werden."
+
+#: ../../mod/admin.php:602
+msgid "No failed updates."
+msgstr "Keine fehlgeschlagenen Updates."
+
+#: ../../mod/admin.php:606
+msgid "Failed Updates"
+msgstr "Fehlgeschlagene Updates"
+
+#: ../../mod/admin.php:607
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben."
+
+#: ../../mod/admin.php:608
+msgid "Mark success (if update was manually applied)"
+msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
+
+#: ../../mod/admin.php:609
+msgid "Attempt to execute this update step automatically"
+msgstr "Versuchen, diesen Schritt automatisch auszuführen"
+
+#: ../../mod/admin.php:634
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s Benutzer geblockt/freigegeben"
+msgstr[1] "%s Benutzer geblockt/freigegeben"
+
+#: ../../mod/admin.php:641
+#, 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:680
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Nutzer '%s' gelöscht"
+
+#: ../../mod/admin.php:688
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Nutzer '%s' entsperrt"
+
+#: ../../mod/admin.php:688
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Nutzer '%s' gesperrt"
+
+#: ../../mod/admin.php:764
+msgid "select all"
+msgstr "Alle auswählen"
+
+#: ../../mod/admin.php:765
+msgid "User registrations waiting for confirm"
+msgstr "Neuanmeldungen, die auf deine Bestätigung warten"
+
+#: ../../mod/admin.php:766
+msgid "Request date"
+msgstr "Anfragedatum"
+
+#: ../../mod/admin.php:766 ../../mod/admin.php:777 ../../mod/settings.php:562
+#: ../../mod/settings.php:588 ../../mod/crepair.php:148
+msgid "Name"
+msgstr "Name"
+
+#: ../../mod/admin.php:767
+msgid "No registrations."
+msgstr "Keine Neuanmeldungen."
+
+#: ../../mod/admin.php:768 ../../mod/notifications.php:161
+#: ../../mod/notifications.php:208
+msgid "Approve"
+msgstr "Genehmigen"
+
+#: ../../mod/admin.php:769
+msgid "Deny"
+msgstr "Verwehren"
+
+#: ../../mod/admin.php:771 ../../mod/contacts.php:353
+#: ../../mod/contacts.php:412
+msgid "Block"
+msgstr "Sperren"
+
+#: ../../mod/admin.php:772 ../../mod/contacts.php:353
+#: ../../mod/contacts.php:412
+msgid "Unblock"
+msgstr "Entsperren"
+
+#: ../../mod/admin.php:773
+msgid "Site admin"
+msgstr "Seitenadministrator"
+
+#: ../../mod/admin.php:774
+msgid "Account expired"
+msgstr "Account ist abgelaufen"
+
+#: ../../mod/admin.php:777
+msgid "Register date"
+msgstr "Anmeldedatum"
+
+#: ../../mod/admin.php:777
+msgid "Last login"
+msgstr "Letzte Anmeldung"
+
+#: ../../mod/admin.php:777
+msgid "Last item"
+msgstr "Letzter Beitrag"
+
+#: ../../mod/admin.php:777
+msgid "Account"
+msgstr "Nutzerkonto"
+
+#: ../../mod/admin.php:779
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist du sicher?"
+
+#: ../../mod/admin.php:780
+msgid ""
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist du sicher?"
+
+#: ../../mod/admin.php:821
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Plugin %s deaktiviert."
+
+#: ../../mod/admin.php:825
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Plugin %s aktiviert."
+
+#: ../../mod/admin.php:835 ../../mod/admin.php:1038
+msgid "Disable"
+msgstr "Ausschalten"
+
+#: ../../mod/admin.php:837 ../../mod/admin.php:1040
+msgid "Enable"
+msgstr "Einschalten"
+
+#: ../../mod/admin.php:860 ../../mod/admin.php:1068
+msgid "Toggle"
+msgstr "Umschalten"
+
+#: ../../mod/admin.php:868 ../../mod/admin.php:1078
+msgid "Author: "
+msgstr "Autor:"
+
+#: ../../mod/admin.php:869 ../../mod/admin.php:1079
+msgid "Maintainer: "
+msgstr "Betreuer:"
+
+#: ../../mod/admin.php:998
+msgid "No themes found."
+msgstr "Keine Themen gefunden."
+
+#: ../../mod/admin.php:1060
+msgid "Screenshot"
+msgstr "Bildschirmfoto"
+
+#: ../../mod/admin.php:1106
+msgid "[Experimental]"
+msgstr "[Experimentell]"
+
+#: ../../mod/admin.php:1107
+msgid "[Unsupported]"
+msgstr "[Nicht unterstützt]"
+
+#: ../../mod/admin.php:1134
+msgid "Log settings updated."
+msgstr "Protokolleinstellungen aktualisiert."
+
+#: ../../mod/admin.php:1190
+msgid "Clear"
+msgstr "löschen"
+
+#: ../../mod/admin.php:1196
+msgid "Enable Debugging"
+msgstr "Protokoll führen"
+
+#: ../../mod/admin.php:1197
+msgid "Log file"
+msgstr "Protokolldatei"
+
+#: ../../mod/admin.php:1197
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
+
+#: ../../mod/admin.php:1198
+msgid "Log level"
+msgstr "Protokoll-Level"
+
+#: ../../mod/admin.php:1247 ../../mod/contacts.php:409
+msgid "Update now"
+msgstr "Jetzt aktualisieren"
+
+#: ../../mod/admin.php:1248
+msgid "Close"
+msgstr "Schließen"
+
+#: ../../mod/admin.php:1254
+msgid "FTP Host"
+msgstr "FTP Host"
+
+#: ../../mod/admin.php:1255
+msgid "FTP Path"
+msgstr "FTP Pfad"
+
+#: ../../mod/admin.php:1256
+msgid "FTP User"
+msgstr "FTP Nutzername"
+
+#: ../../mod/admin.php:1257
+msgid "FTP Password"
+msgstr "FTP Passwort"
+
#: ../../mod/item.php:105
msgid "Unable to locate original post."
msgstr "Konnte den Originalbeitrag nicht finden."
@@ -2853,10 +3651,6 @@ msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung mögli
msgid "Your invitation ID: "
msgstr "ID deiner Einladung: "
-#: ../../mod/register.php:261 ../../mod/admin.php:481
-msgid "Registration"
-msgstr "Registrierung"
-
#: ../../mod/register.php:269
msgid "Your Full Name (e.g. Joe Smith): "
msgstr "Vollständiger Name (z.B. Max Mustermann): "
@@ -3046,10 +3840,6 @@ msgstr "%s teilt mit Dir"
msgid "Private communications are not available for this contact."
msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
-#: ../../mod/contacts.php:330
-msgid "Never"
-msgstr "Niemals"
-
#: ../../mod/contacts.php:334
msgid "(Update was successful)"
msgstr "(Aktualisierung war erfolgreich)"
@@ -3071,16 +3861,6 @@ msgstr "Netzwerktyp: %s"
msgid "View all contacts"
msgstr "Alle Kontakte anzeigen"
-#: ../../mod/contacts.php:353 ../../mod/contacts.php:412
-#: ../../mod/admin.php:760
-msgid "Unblock"
-msgstr "Entsperren"
-
-#: ../../mod/contacts.php:353 ../../mod/contacts.php:412
-#: ../../mod/admin.php:759
-msgid "Block"
-msgstr "Sperren"
-
#: ../../mod/contacts.php:356
msgid "Toggle Blocked status"
msgstr "Geblockt-Status ein-/ausschalten"
@@ -3174,10 +3954,6 @@ msgstr "letzte Aktualisierung:"
msgid "Update public posts"
msgstr "Öffentliche Beiträge aktualisieren"
-#: ../../mod/contacts.php:409 ../../mod/admin.php:1235
-msgid "Update now"
-msgstr "Jetzt aktualisieren"
-
#: ../../mod/contacts.php:416
msgid "Currently blocked"
msgstr "Derzeit geblockt"
@@ -3377,11 +4153,6 @@ msgstr "Einstellungen aktualisiert."
msgid "Add application"
msgstr "Programm hinzufügen"
-#: ../../mod/settings.php:562 ../../mod/settings.php:588
-#: ../../mod/admin.php:754 ../../mod/admin.php:765 ../../mod/crepair.php:148
-msgid "Name"
-msgstr "Name"
-
#: ../../mod/settings.php:563 ../../mod/settings.php:589
msgid "Consumer Key"
msgstr "Consumer Key"
@@ -3530,10 +4301,6 @@ msgstr "In einen Ordner verschieben"
msgid "Move to folder:"
msgstr "In diesen Ordner verschieben:"
-#: ../../mod/settings.php:769 ../../mod/admin.php:432
-msgid "No special theme for mobile devices"
-msgstr "Kein spezielles Theme für mobile Geräte verwenden."
-
#: ../../mod/settings.php:809
msgid "Display Settings"
msgstr "Anzeige-Einstellungen"
@@ -3845,763 +4612,6 @@ msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
msgid "Change the behaviour of this account for special situations"
msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
-#: ../../mod/admin.php:55
-msgid "Theme settings updated."
-msgstr "Themeneinstellungen aktualisiert."
-
-#: ../../mod/admin.php:96 ../../mod/admin.php:479
-msgid "Site"
-msgstr "Seite"
-
-#: ../../mod/admin.php:97 ../../mod/admin.php:750 ../../mod/admin.php:764
-msgid "Users"
-msgstr "Nutzer"
-
-#: ../../mod/admin.php:98 ../../mod/admin.php:847 ../../mod/admin.php:889
-msgid "Plugins"
-msgstr "Plugins"
-
-#: ../../mod/admin.php:99 ../../mod/admin.php:1055 ../../mod/admin.php:1089
-msgid "Themes"
-msgstr "Themen"
-
-#: ../../mod/admin.php:100
-msgid "DB updates"
-msgstr "DB Updates"
-
-#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1176
-msgid "Logs"
-msgstr "Protokolle"
-
-#: ../../mod/admin.php:121
-msgid "Plugin Features"
-msgstr "Plugin Features"
-
-#: ../../mod/admin.php:123
-msgid "User registrations waiting for confirmation"
-msgstr "Nutzeranmeldungen die auf Bestätigung warten"
-
-#: ../../mod/admin.php:182 ../../mod/admin.php:721
-msgid "Normal Account"
-msgstr "Normales Konto"
-
-#: ../../mod/admin.php:183 ../../mod/admin.php:722
-msgid "Soapbox Account"
-msgstr "Marktschreier-Konto"
-
-#: ../../mod/admin.php:184 ../../mod/admin.php:723
-msgid "Community/Celebrity Account"
-msgstr "Forum/Promi-Konto"
-
-#: ../../mod/admin.php:185 ../../mod/admin.php:724
-msgid "Automatic Friend Account"
-msgstr "Automatisches Freundekonto"
-
-#: ../../mod/admin.php:186
-msgid "Blog Account"
-msgstr "Blog Account"
-
-#: ../../mod/admin.php:187
-msgid "Private Forum"
-msgstr "Privates Forum"
-
-#: ../../mod/admin.php:206
-msgid "Message queues"
-msgstr "Nachrichten-Warteschlangen"
-
-#: ../../mod/admin.php:211 ../../mod/admin.php:478 ../../mod/admin.php:749
-#: ../../mod/admin.php:846 ../../mod/admin.php:888 ../../mod/admin.php:1054
-#: ../../mod/admin.php:1088 ../../mod/admin.php:1175
-msgid "Administration"
-msgstr "Administration"
-
-#: ../../mod/admin.php:212
-msgid "Summary"
-msgstr "Zusammenfassung"
-
-#: ../../mod/admin.php:214
-msgid "Registered users"
-msgstr "Registrierte Nutzer"
-
-#: ../../mod/admin.php:216
-msgid "Pending registrations"
-msgstr "Anstehende Anmeldungen"
-
-#: ../../mod/admin.php:217
-msgid "Version"
-msgstr "Version"
-
-#: ../../mod/admin.php:219
-msgid "Active plugins"
-msgstr "Aktive Plugins"
-
-#: ../../mod/admin.php:403
-msgid "Site settings updated."
-msgstr "Seiteneinstellungen aktualisiert."
-
-#: ../../mod/admin.php:449
-msgid "Multi user instance"
-msgstr "Mehrbenutzer Instanz"
-
-#: ../../mod/admin.php:465
-msgid "Closed"
-msgstr "Geschlossen"
-
-#: ../../mod/admin.php:466
-msgid "Requires approval"
-msgstr "Bedarf der Zustimmung"
-
-#: ../../mod/admin.php:467
-msgid "Open"
-msgstr "Offen"
-
-#: ../../mod/admin.php:471
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
-
-#: ../../mod/admin.php:472
-msgid "Force all links to use SSL"
-msgstr "SSL für alle Links erzwingen"
-
-#: ../../mod/admin.php:473
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"
-
-#: ../../mod/admin.php:482
-msgid "File upload"
-msgstr "Datei hochladen"
-
-#: ../../mod/admin.php:483
-msgid "Policies"
-msgstr "Regeln"
-
-#: ../../mod/admin.php:484
-msgid "Advanced"
-msgstr "Erweitert"
-
-#: ../../mod/admin.php:485
-msgid "Performance"
-msgstr "Performance"
-
-#: ../../mod/admin.php:489
-msgid "Site name"
-msgstr "Seitenname"
-
-#: ../../mod/admin.php:490
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
-
-#: ../../mod/admin.php:491
-msgid "System language"
-msgstr "Systemsprache"
-
-#: ../../mod/admin.php:492
-msgid "System theme"
-msgstr "Systemweites Thema"
-
-#: ../../mod/admin.php:492
-msgid ""
-"Default system theme - may be over-ridden by user profiles - change theme settings "
-msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - Theme-Einstellungen ändern "
-
-#: ../../mod/admin.php:493
-msgid "Mobile system theme"
-msgstr "Systemweites mobiles Thema"
-
-#: ../../mod/admin.php:493
-msgid "Theme for mobile devices"
-msgstr "Thema für mobile Geräte"
-
-#: ../../mod/admin.php:494
-msgid "SSL link policy"
-msgstr "Regeln für SSL Links"
-
-#: ../../mod/admin.php:494
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
-
-#: ../../mod/admin.php:495
-msgid "'Share' element"
-msgstr "'Teilen' Element"
-
-#: ../../mod/admin.php:495
-msgid "Activates the bbcode element 'share' for repeating items."
-msgstr "Aktiviert das bbcode Element 'Teilen' um Einträge zu wiederholen."
-
-#: ../../mod/admin.php:496
-msgid "Hide help entry from navigation menu"
-msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
-
-#: ../../mod/admin.php:496
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
-msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden."
-
-#: ../../mod/admin.php:497
-msgid "Single user instance"
-msgstr "Ein-Nutzer Instanz"
-
-#: ../../mod/admin.php:497
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt."
-
-#: ../../mod/admin.php:498
-msgid "Maximum image size"
-msgstr "Maximale Größe von Bildern"
-
-#: ../../mod/admin.php:498
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Maximale Upload-Größe von Bildern in Bytes. Standard ist 0, d.h. ohne Limit."
-
-#: ../../mod/admin.php:499
-msgid "Maximum image length"
-msgstr "Maximale Länge von Bildern"
-
-#: ../../mod/admin.php:499
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet."
-
-#: ../../mod/admin.php:500
-msgid "JPEG image quality"
-msgstr "Qualität des JPEG Bildes"
-
-#: ../../mod/admin.php:500
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust."
-
-#: ../../mod/admin.php:502
-msgid "Register policy"
-msgstr "Registrierungsmethode"
-
-#: ../../mod/admin.php:503
-msgid "Maximum Daily Registrations"
-msgstr "Maximum täglicher Neuanmeldungen"
-
-#: ../../mod/admin.php:503
-msgid ""
-"If registration is permitted above, this sets the maximum number of new user"
-" registrations to accept per day. If register is set to closed, this "
-"setting has no effect."
-msgstr "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt."
-
-#: ../../mod/admin.php:504
-msgid "Register text"
-msgstr "Registrierungstext"
-
-#: ../../mod/admin.php:504
-msgid "Will be displayed prominently on the registration page."
-msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
-
-#: ../../mod/admin.php:505
-msgid "Accounts abandoned after x days"
-msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
-
-#: ../../mod/admin.php:505
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit."
-
-#: ../../mod/admin.php:506
-msgid "Allowed friend domains"
-msgstr "Erlaubte Domains für Kontakte"
-
-#: ../../mod/admin.php:506
-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:507
-msgid "Allowed email domains"
-msgstr "Erlaubte Domains für E-Mails"
-
-#: ../../mod/admin.php:507
-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:508
-msgid "Block public"
-msgstr "Öffentlichen Zugriff blockieren"
-
-#: ../../mod/admin.php:508
-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:509
-msgid "Force publish"
-msgstr "Erzwinge Veröffentlichung"
-
-#: ../../mod/admin.php:509
-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:510
-msgid "Global directory update URL"
-msgstr "URL für Updates beim weltweiten Verzeichnis"
-
-#: ../../mod/admin.php:510
-msgid ""
-"URL to update the global directory. If this is not set, the global directory"
-" is completely unavailable to the application."
-msgstr "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar."
-
-#: ../../mod/admin.php:511
-msgid "Allow threaded items"
-msgstr "Erlaube Threads in Diskussionen"
-
-#: ../../mod/admin.php:511
-msgid "Allow infinite level threading for items on this site."
-msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
-
-#: ../../mod/admin.php:512
-msgid "Private posts by default for new users"
-msgstr "Private Beiträge als Standard für neue Nutzer"
-
-#: ../../mod/admin.php:512
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen."
-
-#: ../../mod/admin.php:513
-msgid "Don't include post content in email notifications"
-msgstr "Inhalte von Beiträgen nicht in Email Benachrichtigungen versenden"
-
-#: ../../mod/admin.php:513
-msgid ""
-"Don't include the content of a post/comment/private message/etc. in the "
-"email notifications that are sent out from this site, as a privacy measure."
-msgstr "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz, nicht in Email-Benachrichtigungen einbinden."
-
-#: ../../mod/admin.php:514
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
-
-#: ../../mod/admin.php:514
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt."
-
-#: ../../mod/admin.php:515
-msgid "Don't embed private images in posts"
-msgstr "Private Bilder nicht in Beiträgen einbetten."
-
-#: ../../mod/admin.php:515
-msgid ""
-"Don't replace locally-hosted private photos in posts with an embedded copy "
-"of the image. This means that contacts who receive posts containing private "
-"photos will have to authenticate and load each image, which may take a "
-"while."
-msgstr "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert."
-
-#: ../../mod/admin.php:517
-msgid "Block multiple registrations"
-msgstr "Unterbinde Mehrfachregistrierung"
-
-#: ../../mod/admin.php:517
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
-
-#: ../../mod/admin.php:518
-msgid "OpenID support"
-msgstr "OpenID Unterstützung"
-
-#: ../../mod/admin.php:518
-msgid "OpenID support for registration and logins."
-msgstr "OpenID-Unterstützung für Registrierung und Login."
-
-#: ../../mod/admin.php:519
-msgid "Fullname check"
-msgstr "Namen auf Vollständigkeit überprüfen"
-
-#: ../../mod/admin.php:519
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden."
-
-#: ../../mod/admin.php:520
-msgid "UTF-8 Regular expressions"
-msgstr "UTF-8 Reguläre Ausdrücke"
-
-#: ../../mod/admin.php:520
-msgid "Use PHP UTF8 regular expressions"
-msgstr "PHP UTF8 Ausdrücke verwenden"
-
-#: ../../mod/admin.php:521
-msgid "Show Community Page"
-msgstr "Gemeinschaftsseite anzeigen"
-
-#: ../../mod/admin.php:521
-msgid ""
-"Display a Community page showing all recent public postings on this site."
-msgstr "Zeige die Gemeinschaftsseite mit allen öffentlichen Beiträgen auf diesem Server."
-
-#: ../../mod/admin.php:522
-msgid "Enable OStatus support"
-msgstr "OStatus Unterstützung aktivieren"
-
-#: ../../mod/admin.php:522
-msgid ""
-"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr "Biete die eingebaute OStatus (identi.ca, status.net, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt."
-
-#: ../../mod/admin.php:523
-msgid "Enable Diaspora support"
-msgstr "Diaspora-Support aktivieren"
-
-#: ../../mod/admin.php:523
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
-
-#: ../../mod/admin.php:524
-msgid "Only allow Friendica contacts"
-msgstr "Nur Friendica-Kontakte erlauben"
-
-#: ../../mod/admin.php:524
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert."
-
-#: ../../mod/admin.php:525
-msgid "Verify SSL"
-msgstr "SSL Überprüfen"
-
-#: ../../mod/admin.php:525
-msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you"
-" cannot connect (at all) to self-signed SSL sites."
-msgstr "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann."
-
-#: ../../mod/admin.php:526
-msgid "Proxy user"
-msgstr "Proxy Nutzer"
-
-#: ../../mod/admin.php:527
-msgid "Proxy URL"
-msgstr "Proxy URL"
-
-#: ../../mod/admin.php:528
-msgid "Network timeout"
-msgstr "Netzwerk Wartezeit"
-
-#: ../../mod/admin.php:528
-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:529
-msgid "Delivery interval"
-msgstr "Zustellungsintervall"
-
-#: ../../mod/admin.php:529
-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:530
-msgid "Poll interval"
-msgstr "Abfrageintervall"
-
-#: ../../mod/admin.php:530
-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:531
-msgid "Maximum Load Average"
-msgstr "Maximum Load Average"
-
-#: ../../mod/admin.php:531
-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:533
-msgid "Use MySQL full text engine"
-msgstr "Nutze MySQL full text engine"
-
-#: ../../mod/admin.php:533
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
-msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden."
-
-#: ../../mod/admin.php:534
-msgid "Path to item cache"
-msgstr "Pfad zum Eintrag Cache"
-
-#: ../../mod/admin.php:535
-msgid "Cache duration in seconds"
-msgstr "Cache-Dauer in Sekunden"
-
-#: ../../mod/admin.php:535
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One"
-" day)."
-msgstr "Wie lange sollen die Dateien im Cache vorgehalten werden? Standardwert ist 86400 Sekunden (ein Tag)."
-
-#: ../../mod/admin.php:536
-msgid "Path for lock file"
-msgstr "Pfad für die Sperrdatei"
-
-#: ../../mod/admin.php:537
-msgid "Temp path"
-msgstr "Temp Pfad"
-
-#: ../../mod/admin.php:538
-msgid "Base path to installation"
-msgstr "Basis-Pfad zur Installation"
-
-#: ../../mod/admin.php:555
-msgid "Update has been marked successful"
-msgstr "Update wurde als erfolgreich markiert"
-
-#: ../../mod/admin.php:565
-#, php-format
-msgid "Executing %s failed. Check system logs."
-msgstr "Ausführung von %s schlug fehl. Systemprotokolle prüfen."
-
-#: ../../mod/admin.php:568
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Update %s war erfolgreich."
-
-#: ../../mod/admin.php:572
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status."
-
-#: ../../mod/admin.php:575
-#, php-format
-msgid "Update function %s could not be found."
-msgstr "Updatefunktion %s konnte nicht gefunden werden."
-
-#: ../../mod/admin.php:590
-msgid "No failed updates."
-msgstr "Keine fehlgeschlagenen Updates."
-
-#: ../../mod/admin.php:594
-msgid "Failed Updates"
-msgstr "Fehlgeschlagene Updates"
-
-#: ../../mod/admin.php:595
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben."
-
-#: ../../mod/admin.php:596
-msgid "Mark success (if update was manually applied)"
-msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
-
-#: ../../mod/admin.php:597
-msgid "Attempt to execute this update step automatically"
-msgstr "Versuchen, diesen Schritt automatisch auszuführen"
-
-#: ../../mod/admin.php:622
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s Benutzer geblockt/freigegeben"
-msgstr[1] "%s Benutzer geblockt/freigegeben"
-
-#: ../../mod/admin.php:629
-#, 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:668
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Nutzer '%s' gelöscht"
-
-#: ../../mod/admin.php:676
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Nutzer '%s' entsperrt"
-
-#: ../../mod/admin.php:676
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Nutzer '%s' gesperrt"
-
-#: ../../mod/admin.php:752
-msgid "select all"
-msgstr "Alle auswählen"
-
-#: ../../mod/admin.php:753
-msgid "User registrations waiting for confirm"
-msgstr "Neuanmeldungen, die auf deine Bestätigung warten"
-
-#: ../../mod/admin.php:754
-msgid "Request date"
-msgstr "Anfragedatum"
-
-#: ../../mod/admin.php:755
-msgid "No registrations."
-msgstr "Keine Neuanmeldungen."
-
-#: ../../mod/admin.php:756 ../../mod/notifications.php:161
-#: ../../mod/notifications.php:208
-msgid "Approve"
-msgstr "Genehmigen"
-
-#: ../../mod/admin.php:757
-msgid "Deny"
-msgstr "Verwehren"
-
-#: ../../mod/admin.php:761
-msgid "Site admin"
-msgstr "Seitenadministrator"
-
-#: ../../mod/admin.php:762
-msgid "Account expired"
-msgstr "Account ist abgelaufen"
-
-#: ../../mod/admin.php:765
-msgid "Register date"
-msgstr "Anmeldedatum"
-
-#: ../../mod/admin.php:765
-msgid "Last login"
-msgstr "Letzte Anmeldung"
-
-#: ../../mod/admin.php:765
-msgid "Last item"
-msgstr "Letzter Beitrag"
-
-#: ../../mod/admin.php:765
-msgid "Account"
-msgstr "Nutzerkonto"
-
-#: ../../mod/admin.php:767
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist du sicher?"
-
-#: ../../mod/admin.php:768
-msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist du sicher?"
-
-#: ../../mod/admin.php:809
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plugin %s deaktiviert."
-
-#: ../../mod/admin.php:813
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Plugin %s aktiviert."
-
-#: ../../mod/admin.php:823 ../../mod/admin.php:1026
-msgid "Disable"
-msgstr "Ausschalten"
-
-#: ../../mod/admin.php:825 ../../mod/admin.php:1028
-msgid "Enable"
-msgstr "Einschalten"
-
-#: ../../mod/admin.php:848 ../../mod/admin.php:1056
-msgid "Toggle"
-msgstr "Umschalten"
-
-#: ../../mod/admin.php:856 ../../mod/admin.php:1066
-msgid "Author: "
-msgstr "Autor:"
-
-#: ../../mod/admin.php:857 ../../mod/admin.php:1067
-msgid "Maintainer: "
-msgstr "Betreuer:"
-
-#: ../../mod/admin.php:986
-msgid "No themes found."
-msgstr "Keine Themen gefunden."
-
-#: ../../mod/admin.php:1048
-msgid "Screenshot"
-msgstr "Bildschirmfoto"
-
-#: ../../mod/admin.php:1094
-msgid "[Experimental]"
-msgstr "[Experimentell]"
-
-#: ../../mod/admin.php:1095
-msgid "[Unsupported]"
-msgstr "[Nicht unterstützt]"
-
-#: ../../mod/admin.php:1122
-msgid "Log settings updated."
-msgstr "Protokolleinstellungen aktualisiert."
-
-#: ../../mod/admin.php:1178
-msgid "Clear"
-msgstr "löschen"
-
-#: ../../mod/admin.php:1184
-msgid "Enable Debugging"
-msgstr "Protokoll führen"
-
-#: ../../mod/admin.php:1185
-msgid "Log file"
-msgstr "Protokolldatei"
-
-#: ../../mod/admin.php:1185
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
-
-#: ../../mod/admin.php:1186
-msgid "Log level"
-msgstr "Protokoll-Level"
-
-#: ../../mod/admin.php:1236
-msgid "Close"
-msgstr "Schließen"
-
-#: ../../mod/admin.php:1242
-msgid "FTP Host"
-msgstr "FTP Host"
-
-#: ../../mod/admin.php:1243
-msgid "FTP Path"
-msgstr "FTP Pfad"
-
-#: ../../mod/admin.php:1244
-msgid "FTP User"
-msgstr "FTP Nutzername"
-
-#: ../../mod/admin.php:1245
-msgid "FTP Password"
-msgstr "FTP Passwort"
-
#: ../../mod/share.php:44
msgid "link"
msgstr "Link"
@@ -5531,7 +5541,7 @@ msgid ""
"Password reset failed."
msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."
-#: ../../mod/lostpass.php:84 ../../boot.php:1072
+#: ../../mod/lostpass.php:84 ../../boot.php:1081
msgid "Password Reset"
msgstr "Passwort zurücksetzen"
@@ -5917,7 +5927,7 @@ msgstr "Keine weiteren Pinnwand-Benachrichtigungen"
msgid "Home Notifications"
msgstr "Pinnwand Benachrichtigungen"
-#: ../../mod/photos.php:51 ../../boot.php:1878
+#: ../../mod/photos.php:51 ../../boot.php:1887
msgid "Photo Albums"
msgstr "Fotoalben"
@@ -6118,7 +6128,7 @@ msgstr "Das bist du"
#: ../../mod/photos.php:1551 ../../mod/photos.php:1595
#: ../../mod/photos.php:1678 ../../mod/content.php:732
-#: ../../object/Item.php:338 ../../object/Item.php:652 ../../boot.php:651
+#: ../../object/Item.php:338 ../../object/Item.php:652 ../../boot.php:652
msgid "Comment"
msgstr "Kommentar"
@@ -6311,7 +6321,7 @@ msgid ""
" features and resources."
msgstr "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
-#: ../../mod/profile.php:21 ../../boot.php:1246
+#: ../../mod/profile.php:21 ../../boot.php:1255
msgid "Requested profile is not available."
msgstr "Das angefragte Profil ist nicht vorhanden."
@@ -6955,128 +6965,128 @@ msgstr "Schriftgröße in Beiträgen"
msgid "Textareas font size"
msgstr "Schriftgröße in Eingabefeldern"
-#: ../../boot.php:650
+#: ../../index.php:405
+msgid "toggle mobile"
+msgstr "auf/von Mobile Ansicht wechseln"
+
+#: ../../boot.php:651
msgid "Delete this item?"
msgstr "Diesen Beitrag löschen?"
-#: ../../boot.php:653
+#: ../../boot.php:654
msgid "show fewer"
msgstr "weniger anzeigen"
-#: ../../boot.php:920
+#: ../../boot.php:929
#, php-format
msgid "Update %s failed. See error logs."
msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
-#: ../../boot.php:922
+#: ../../boot.php:931
#, php-format
msgid "Update Error at %s"
msgstr "Updatefehler bei %s"
-#: ../../boot.php:1032
+#: ../../boot.php:1041
msgid "Create a New Account"
msgstr "Neues Konto erstellen"
-#: ../../boot.php:1060
+#: ../../boot.php:1069
msgid "Nickname or Email address: "
msgstr "Spitzname oder E-Mail-Adresse: "
-#: ../../boot.php:1061
+#: ../../boot.php:1070
msgid "Password: "
msgstr "Passwort: "
-#: ../../boot.php:1062
+#: ../../boot.php:1071
msgid "Remember me"
msgstr "Anmeldedaten merken"
-#: ../../boot.php:1065
+#: ../../boot.php:1074
msgid "Or login using OpenID: "
msgstr "Oder melde dich mit deiner OpenID an: "
-#: ../../boot.php:1071
+#: ../../boot.php:1080
msgid "Forgot your password?"
msgstr "Passwort vergessen?"
-#: ../../boot.php:1074
+#: ../../boot.php:1083
msgid "Website Terms of Service"
msgstr "Website Nutzungsbedingungen"
-#: ../../boot.php:1075
+#: ../../boot.php:1084
msgid "terms of service"
msgstr "Nutzungsbedingungen"
-#: ../../boot.php:1077
+#: ../../boot.php:1086
msgid "Website Privacy Policy"
msgstr "Website Datenschutzerklärung"
-#: ../../boot.php:1078
+#: ../../boot.php:1087
msgid "privacy policy"
msgstr "Datenschutzerklärung"
-#: ../../boot.php:1207
+#: ../../boot.php:1216
msgid "Requested account is not available."
msgstr "Das angefragte Profil ist nicht vorhanden."
-#: ../../boot.php:1286 ../../boot.php:1390
+#: ../../boot.php:1295 ../../boot.php:1399
msgid "Edit profile"
msgstr "Profil bearbeiten"
-#: ../../boot.php:1352
+#: ../../boot.php:1361
msgid "Message"
msgstr "Nachricht"
-#: ../../boot.php:1360
+#: ../../boot.php:1369
msgid "Manage/edit profiles"
msgstr "Profile verwalten/editieren"
-#: ../../boot.php:1489 ../../boot.php:1575
+#: ../../boot.php:1498 ../../boot.php:1584
msgid "g A l F d"
msgstr "l, d. F G \\U\\h\\r"
-#: ../../boot.php:1490 ../../boot.php:1576
+#: ../../boot.php:1499 ../../boot.php:1585
msgid "F d"
msgstr "d. F"
-#: ../../boot.php:1535 ../../boot.php:1616
+#: ../../boot.php:1544 ../../boot.php:1625
msgid "[today]"
msgstr "[heute]"
-#: ../../boot.php:1547
+#: ../../boot.php:1556
msgid "Birthday Reminders"
msgstr "Geburtstagserinnerungen"
-#: ../../boot.php:1548
+#: ../../boot.php:1557
msgid "Birthdays this week:"
msgstr "Geburtstage diese Woche:"
-#: ../../boot.php:1609
+#: ../../boot.php:1618
msgid "[No description]"
msgstr "[keine Beschreibung]"
-#: ../../boot.php:1627
+#: ../../boot.php:1636
msgid "Event Reminders"
msgstr "Veranstaltungserinnerungen"
-#: ../../boot.php:1628
+#: ../../boot.php:1637
msgid "Events this week:"
msgstr "Veranstaltungen diese Woche"
-#: ../../boot.php:1864
+#: ../../boot.php:1873
msgid "Status Messages and Posts"
msgstr "Statusnachrichten und Beiträge"
-#: ../../boot.php:1871
+#: ../../boot.php:1880
msgid "Profile Details"
msgstr "Profildetails"
-#: ../../boot.php:1888
+#: ../../boot.php:1897
msgid "Events and Calendar"
msgstr "Ereignisse und Kalender"
-#: ../../boot.php:1895
+#: ../../boot.php:1904
msgid "Only You Can See This"
msgstr "Nur du kannst das sehen"
-
-#: ../../index.php:405
-msgid "toggle mobile"
-msgstr "auf/von Mobile Ansicht wechseln"
diff --git a/view/de/strings.php b/view/de/strings.php
index e5e5e57de..18742d20d 100644
--- a/view/de/strings.php
+++ b/view/de/strings.php
@@ -285,6 +285,18 @@ $a->strings["Image/photo"] = "Bild/Foto";
$a->strings["%s wrote the following post "] = "%s schrieb den folgenden Beitrag ";
$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
+$a->strings["%s's birthday"] = "%ss Geburtstag";
+$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
+$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
+$a->strings["A new person is sharing with you at "] = "Eine neue Person teilt mit dir auf ";
+$a->strings["You have a new follower at "] = "Du hast einen neuen Kontakt auf ";
+$a->strings["Item not found."] = "Beitrag nicht gefunden.";
+$a->strings["Do you really want to delete this item?"] = "Möchtest du wirklich dieses Item löschen?";
+$a->strings["Yes"] = "Ja";
+$a->strings["Cancel"] = "Abbrechen";
+$a->strings["Permission denied."] = "Zugriff verweigert.";
+$a->strings["Archives"] = "Archiv";
+$a->strings["view full size"] = "Volle Größe anzeigen";
$a->strings["Miscellaneous"] = "Verschiedenes";
$a->strings["year"] = "Jahr";
$a->strings["month"] = "Monat";
@@ -303,8 +315,6 @@ $a->strings["minutes"] = "Minuten";
$a->strings["second"] = "Sekunde";
$a->strings["seconds"] = "Sekunden";
$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her";
-$a->strings["%s's birthday"] = "%ss Geburtstag";
-$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken.";
$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze deines Abonnements.";
$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in deinem Abonnement nicht verfügbar.";
@@ -420,7 +430,6 @@ $a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen";
$a->strings["Public post"] = "Öffentlicher Beitrag";
$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com";
$a->strings["Preview"] = "Vorschau";
-$a->strings["Cancel"] = "Abbrechen";
$a->strings["Post to Groups"] = "Poste an Gruppe";
$a->strings["Post to Contacts"] = "Poste an Kontakte";
$a->strings["Private post"] = "Privater Beitrag";
@@ -520,17 +529,8 @@ $a->strings["Admin"] = "Administration";
$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration";
$a->strings["Navigation"] = "Navigation";
$a->strings["Site map"] = "Sitemap";
-$a->strings["view full size"] = "Volle Größe anzeigen";
$a->strings["Embedded content"] = "Eingebetteter Inhalt";
$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
-$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
-$a->strings["A new person is sharing with you at "] = "Eine neue Person teilt mit dir auf ";
-$a->strings["You have a new follower at "] = "Du hast einen neuen Kontakt auf ";
-$a->strings["Item not found."] = "Beitrag nicht gefunden.";
-$a->strings["Do you really want to delete this item?"] = "Möchtest du wirklich dieses Item löschen?";
-$a->strings["Yes"] = "Ja";
-$a->strings["Permission denied."] = "Zugriff verweigert.";
-$a->strings["Archives"] = "Archiv";
$a->strings["Welcome "] = "Willkommen ";
$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
$a->strings["Welcome back "] = "Willkommen zurück ";
@@ -628,6 +628,190 @@ $a->strings["{0} is now friends with %s"] = "{0} ist jetzt mit %s befreundet";
$a->strings["{0} posted"] = "{0} hat etwas veröffentlicht";
$a->strings["{0} tagged %s's post with #%s"] = "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen";
$a->strings["{0} mentioned you in a post"] = "{0} hat dich in einem Beitrag erwähnt";
+$a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
+$a->strings["Site"] = "Seite";
+$a->strings["Users"] = "Nutzer";
+$a->strings["Plugins"] = "Plugins";
+$a->strings["Themes"] = "Themen";
+$a->strings["DB updates"] = "DB Updates";
+$a->strings["Logs"] = "Protokolle";
+$a->strings["Plugin Features"] = "Plugin Features";
+$a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten";
+$a->strings["Normal Account"] = "Normales Konto";
+$a->strings["Soapbox Account"] = "Marktschreier-Konto";
+$a->strings["Community/Celebrity Account"] = "Forum/Promi-Konto";
+$a->strings["Automatic Friend Account"] = "Automatisches Freundekonto";
+$a->strings["Blog Account"] = "Blog Account";
+$a->strings["Private Forum"] = "Privates Forum";
+$a->strings["Message queues"] = "Nachrichten-Warteschlangen";
+$a->strings["Administration"] = "Administration";
+$a->strings["Summary"] = "Zusammenfassung";
+$a->strings["Registered users"] = "Registrierte Nutzer";
+$a->strings["Pending registrations"] = "Anstehende Anmeldungen";
+$a->strings["Version"] = "Version";
+$a->strings["Active plugins"] = "Aktive Plugins";
+$a->strings["Site settings updated."] = "Seiteneinstellungen aktualisiert.";
+$a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden.";
+$a->strings["Never"] = "Niemals";
+$a->strings["Multi user instance"] = "Mehrbenutzer Instanz";
+$a->strings["Closed"] = "Geschlossen";
+$a->strings["Requires approval"] = "Bedarf der Zustimmung";
+$a->strings["Open"] = "Offen";
+$a->strings["No SSL policy, links will track page SSL state"] = "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten";
+$a->strings["Force all links to use SSL"] = "SSL für alle Links erzwingen";
+$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)";
+$a->strings["Registration"] = "Registrierung";
+$a->strings["File upload"] = "Datei hochladen";
+$a->strings["Policies"] = "Regeln";
+$a->strings["Advanced"] = "Erweitert";
+$a->strings["Performance"] = "Performance";
+$a->strings["Site name"] = "Seitenname";
+$a->strings["Banner/Logo"] = "Banner/Logo";
+$a->strings["System language"] = "Systemsprache";
+$a->strings["System theme"] = "Systemweites Thema";
+$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings "] = "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - Theme-Einstellungen ändern ";
+$a->strings["Mobile system theme"] = "Systemweites mobiles Thema";
+$a->strings["Theme for mobile devices"] = "Thema für mobile Geräte";
+$a->strings["SSL link policy"] = "Regeln für SSL Links";
+$a->strings["Determines whether generated links should be forced to use SSL"] = "Bestimmt, ob generierte Links SSL verwenden müssen";
+$a->strings["'Share' element"] = "'Teilen' Element";
+$a->strings["Activates the bbcode element 'share' for repeating items."] = "Aktiviert das bbcode Element 'Teilen' um Einträge zu wiederholen.";
+$a->strings["Hide help entry from navigation menu"] = "Verberge den Menüeintrag für die Hilfe im Navigationsmenü";
+$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden.";
+$a->strings["Single user instance"] = "Ein-Nutzer Instanz";
+$a->strings["Make this instance multi-user or single-user for the named user"] = "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt.";
+$a->strings["Maximum image size"] = "Maximale Größe von Bildern";
+$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Upload-Größe von Bildern in Bytes. Standard ist 0, d.h. ohne Limit.";
+$a->strings["Maximum image length"] = "Maximale Länge von Bildern";
+$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet.";
+$a->strings["JPEG image quality"] = "Qualität des JPEG Bildes";
+$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust.";
+$a->strings["Register policy"] = "Registrierungsmethode";
+$a->strings["Maximum Daily Registrations"] = "Maximum täglicher Neuanmeldungen";
+$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt.";
+$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"] = "Nutzerkonten 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 System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein 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["Force publish"] = "Erzwinge Veröffentlichung";
+$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen.";
+$a->strings["Global directory update URL"] = "URL für Updates beim weltweiten Verzeichnis";
+$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar.";
+$a->strings["Allow threaded items"] = "Erlaube Threads in Diskussionen";
+$a->strings["Allow infinite level threading for items on this site."] = "Erlaube ein unendliches Level für Threads auf dieser Seite.";
+$a->strings["Private posts by default for new users"] = "Private Beiträge als Standard für neue Nutzer";
+$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen.";
+$a->strings["Don't include post content in email notifications"] = "Inhalte von Beiträgen nicht in Email Benachrichtigungen versenden";
+$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz, nicht in Email-Benachrichtigungen einbinden.";
+$a->strings["Disallow public access to addons listed in the apps menu."] = "Öffentlichen Zugriff auf Addons im Apps Menü verbieten.";
+$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt.";
+$a->strings["Don't embed private images in posts"] = "Private Bilder nicht in Beiträgen einbetten.";
+$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert.";
+$a->strings["Block multiple registrations"] = "Unterbinde Mehrfachregistrierung";
+$a->strings["Disallow users to register additional accounts for use as pages."] = "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen.";
+$a->strings["OpenID support"] = "OpenID Unterstützung";
+$a->strings["OpenID support for registration and logins."] = "OpenID-Unterstützung für Registrierung und Login.";
+$a->strings["Fullname check"] = "Namen auf Vollständigkeit überprüfen";
+$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden.";
+$a->strings["UTF-8 Regular expressions"] = "UTF-8 Reguläre Ausdrücke";
+$a->strings["Use PHP UTF8 regular expressions"] = "PHP UTF8 Ausdrücke verwenden";
+$a->strings["Show Community Page"] = "Gemeinschaftsseite anzeigen";
+$a->strings["Display a Community page showing all recent public postings on this site."] = "Zeige die Gemeinschaftsseite mit allen öffentlichen Beiträgen auf diesem Server.";
+$a->strings["Enable OStatus support"] = "OStatus Unterstützung aktivieren";
+$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."] = "Biete die eingebaute OStatus (identi.ca, status.net, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt.";
+$a->strings["OStatus conversation completion interval"] = "Intervall zum Vervollständigen von OStatus Unterhaltungen";
+$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Wie oft soll der Poller checken ob es neue Nachrichten in OStatus Unterhaltungen gibt die geladen werden müssen. Je nach Anzahl der OStatus Kontakte könnte dies ein sehr Ressourcen lastiger Job sein.";
+$a->strings["Enable Diaspora support"] = "Diaspora-Support aktivieren";
+$a->strings["Provide built-in Diaspora network compatibility."] = "Verwende die eingebaute Diaspora-Verknüpfung.";
+$a->strings["Only allow Friendica contacts"] = "Nur Friendica-Kontakte erlauben";
+$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert.";
+$a->strings["Verify SSL"] = "SSL Überprüfen";
+$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."] = "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann.";
+$a->strings["Proxy user"] = "Proxy Nutzer";
+$a->strings["Proxy URL"] = "Proxy URL";
+$a->strings["Network timeout"] = "Netzwerk Wartezeit";
+$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["Delivery interval"] = "Zustellungsintervall";
+$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["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["Use MySQL full text engine"] = "Nutze MySQL full text engine";
+$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden.";
+$a->strings["Path to item cache"] = "Pfad zum Eintrag Cache";
+$a->strings["Cache duration in seconds"] = "Cache-Dauer in Sekunden";
+$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "Wie lange sollen die Dateien im Cache vorgehalten werden? Standardwert ist 86400 Sekunden (ein Tag).";
+$a->strings["Path for lock file"] = "Pfad für die Sperrdatei";
+$a->strings["Temp path"] = "Temp Pfad";
+$a->strings["Base path to installation"] = "Basis-Pfad zur Installation";
+$a->strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert";
+$a->strings["Executing %s failed. Check system logs."] = "Ausführung von %s schlug fehl. Systemprotokolle prüfen.";
+$a->strings["Update %s was successfully applied."] = "Update %s war erfolgreich.";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s hat keinen Status zurückgegeben. Unbekannter Status.";
+$a->strings["Update function %s could not be found."] = "Updatefunktion %s konnte nicht gefunden werden.";
+$a->strings["No failed updates."] = "Keine fehlgeschlagenen Updates.";
+$a->strings["Failed Updates"] = "Fehlgeschlagene Updates";
+$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben.";
+$a->strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (falls das Update manuell installiert wurde)";
+$a->strings["Attempt to execute this update step automatically"] = "Versuchen, diesen Schritt automatisch auszuführen";
+$a->strings["%s user blocked/unblocked"] = array(
+ 0 => "%s Benutzer geblockt/freigegeben",
+ 1 => "%s Benutzer geblockt/freigegeben",
+);
+$a->strings["%s user deleted"] = array(
+ 0 => "%s Nutzer gelöscht",
+ 1 => "%s Nutzer gelöscht",
+);
+$a->strings["User '%s' deleted"] = "Nutzer '%s' gelöscht";
+$a->strings["User '%s' unblocked"] = "Nutzer '%s' entsperrt";
+$a->strings["User '%s' blocked"] = "Nutzer '%s' gesperrt";
+$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"] = "Anfragedatum";
+$a->strings["Name"] = "Name";
+$a->strings["No registrations."] = "Keine Neuanmeldungen.";
+$a->strings["Approve"] = "Genehmigen";
+$a->strings["Deny"] = "Verwehren";
+$a->strings["Block"] = "Sperren";
+$a->strings["Unblock"] = "Entsperren";
+$a->strings["Site admin"] = "Seitenadministrator";
+$a->strings["Account expired"] = "Account ist abgelaufen";
+$a->strings["Register date"] = "Anmeldedatum";
+$a->strings["Last login"] = "Letzte Anmeldung";
+$a->strings["Last item"] = "Letzter Beitrag";
+$a->strings["Account"] = "Nutzerkonto";
+$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\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden 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!\\n\\nBist du sicher?";
+$a->strings["Plugin %s disabled."] = "Plugin %s deaktiviert.";
+$a->strings["Plugin %s enabled."] = "Plugin %s aktiviert.";
+$a->strings["Disable"] = "Ausschalten";
+$a->strings["Enable"] = "Einschalten";
+$a->strings["Toggle"] = "Umschalten";
+$a->strings["Author: "] = "Autor:";
+$a->strings["Maintainer: "] = "Betreuer:";
+$a->strings["No themes found."] = "Keine Themen gefunden.";
+$a->strings["Screenshot"] = "Bildschirmfoto";
+$a->strings["[Experimental]"] = "[Experimentell]";
+$a->strings["[Unsupported]"] = "[Nicht unterstützt]";
+$a->strings["Log settings updated."] = "Protokolleinstellungen aktualisiert.";
+$a->strings["Clear"] = "löschen";
+$a->strings["Enable Debugging"] = "Protokoll führen";
+$a->strings["Log file"] = "Protokolldatei";
+$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis.";
+$a->strings["Log level"] = "Protokoll-Level";
+$a->strings["Update now"] = "Jetzt aktualisieren";
+$a->strings["Close"] = "Schließen";
+$a->strings["FTP Host"] = "FTP Host";
+$a->strings["FTP Path"] = "FTP Pfad";
+$a->strings["FTP User"] = "FTP Nutzername";
+$a->strings["FTP Password"] = "FTP Passwort";
$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden.";
$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen.";
$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden.";
@@ -657,7 +841,6 @@ $a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): ";
$a->strings["Include your profile in member directory?"] = "Soll dein Profil im Nutzerverzeichnis angezeigt werden?";
$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich.";
$a->strings["Your invitation ID: "] = "ID deiner Einladung: ";
-$a->strings["Registration"] = "Registrierung";
$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): ";
$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: ";
$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename '."] = "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird 'spitzname@\$sitename ' sein.";
@@ -703,14 +886,11 @@ $a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige
$a->strings["You are sharing with %s"] = "Du teilst mit %s";
$a->strings["%s is sharing with you"] = "%s teilt mit Dir";
$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar.";
-$a->strings["Never"] = "Niemals";
$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)";
$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)";
$a->strings["Suggest friends"] = "Kontakte vorschlagen";
$a->strings["Network type: %s"] = "Netzwerktyp: %s";
$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
-$a->strings["Unblock"] = "Entsperren";
-$a->strings["Block"] = "Sperren";
$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
$a->strings["Unignore"] = "Ignorieren aufheben";
$a->strings["Ignore"] = "Ignorieren";
@@ -733,7 +913,6 @@ $a->strings["View conversations"] = "Unterhaltungen anzeigen";
$a->strings["Delete contact"] = "Lösche den Kontakt";
$a->strings["Last update:"] = "letzte Aktualisierung:";
$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
-$a->strings["Update now"] = "Jetzt aktualisieren";
$a->strings["Currently blocked"] = "Derzeit geblockt";
$a->strings["Currently ignored"] = "Derzeit ignoriert";
$a->strings["Currently archived"] = "Momentan archiviert";
@@ -783,7 +962,6 @@ $a->strings["Private forum has no privacy permissions. Using default privacy gro
$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte.";
$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
$a->strings["Add application"] = "Programm hinzufügen";
-$a->strings["Name"] = "Name";
$a->strings["Consumer Key"] = "Consumer Key";
$a->strings["Consumer Secret"] = "Consumer Secret";
$a->strings["Redirect"] = "Umleiten";
@@ -820,7 +998,6 @@ $a->strings["Action after import:"] = "Aktion nach Import:";
$a->strings["Mark as seen"] = "Als gelesen markieren";
$a->strings["Move to folder"] = "In einen Ordner verschieben";
$a->strings["Move to folder:"] = "In diesen Ordner verschieben:";
-$a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden.";
$a->strings["Display Settings"] = "Anzeige-Einstellungen";
$a->strings["Display Theme:"] = "Theme:";
$a->strings["Mobile Theme:"] = "Mobiles Theme";
@@ -898,181 +1075,6 @@ $a->strings["You are tagged in a post"] = "– du in einem Beitrag erwähnt wirs
$a->strings["You are poked/prodded/etc. in a post"] = "– du von jemandem angestupst oder sonstwie behandelt wirst";
$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentyp-Einstellungen";
$a->strings["Change the behaviour of this account for special situations"] = "Verhalten dieses Kontos in bestimmten Situationen:";
-$a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
-$a->strings["Site"] = "Seite";
-$a->strings["Users"] = "Nutzer";
-$a->strings["Plugins"] = "Plugins";
-$a->strings["Themes"] = "Themen";
-$a->strings["DB updates"] = "DB Updates";
-$a->strings["Logs"] = "Protokolle";
-$a->strings["Plugin Features"] = "Plugin Features";
-$a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten";
-$a->strings["Normal Account"] = "Normales Konto";
-$a->strings["Soapbox Account"] = "Marktschreier-Konto";
-$a->strings["Community/Celebrity Account"] = "Forum/Promi-Konto";
-$a->strings["Automatic Friend Account"] = "Automatisches Freundekonto";
-$a->strings["Blog Account"] = "Blog Account";
-$a->strings["Private Forum"] = "Privates Forum";
-$a->strings["Message queues"] = "Nachrichten-Warteschlangen";
-$a->strings["Administration"] = "Administration";
-$a->strings["Summary"] = "Zusammenfassung";
-$a->strings["Registered users"] = "Registrierte Nutzer";
-$a->strings["Pending registrations"] = "Anstehende Anmeldungen";
-$a->strings["Version"] = "Version";
-$a->strings["Active plugins"] = "Aktive Plugins";
-$a->strings["Site settings updated."] = "Seiteneinstellungen aktualisiert.";
-$a->strings["Multi user instance"] = "Mehrbenutzer Instanz";
-$a->strings["Closed"] = "Geschlossen";
-$a->strings["Requires approval"] = "Bedarf der Zustimmung";
-$a->strings["Open"] = "Offen";
-$a->strings["No SSL policy, links will track page SSL state"] = "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten";
-$a->strings["Force all links to use SSL"] = "SSL für alle Links erzwingen";
-$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)";
-$a->strings["File upload"] = "Datei hochladen";
-$a->strings["Policies"] = "Regeln";
-$a->strings["Advanced"] = "Erweitert";
-$a->strings["Performance"] = "Performance";
-$a->strings["Site name"] = "Seitenname";
-$a->strings["Banner/Logo"] = "Banner/Logo";
-$a->strings["System language"] = "Systemsprache";
-$a->strings["System theme"] = "Systemweites Thema";
-$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings "] = "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - Theme-Einstellungen ändern ";
-$a->strings["Mobile system theme"] = "Systemweites mobiles Thema";
-$a->strings["Theme for mobile devices"] = "Thema für mobile Geräte";
-$a->strings["SSL link policy"] = "Regeln für SSL Links";
-$a->strings["Determines whether generated links should be forced to use SSL"] = "Bestimmt, ob generierte Links SSL verwenden müssen";
-$a->strings["'Share' element"] = "'Teilen' Element";
-$a->strings["Activates the bbcode element 'share' for repeating items."] = "Aktiviert das bbcode Element 'Teilen' um Einträge zu wiederholen.";
-$a->strings["Hide help entry from navigation menu"] = "Verberge den Menüeintrag für die Hilfe im Navigationsmenü";
-$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden.";
-$a->strings["Single user instance"] = "Ein-Nutzer Instanz";
-$a->strings["Make this instance multi-user or single-user for the named user"] = "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt.";
-$a->strings["Maximum image size"] = "Maximale Größe von Bildern";
-$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Upload-Größe von Bildern in Bytes. Standard ist 0, d.h. ohne Limit.";
-$a->strings["Maximum image length"] = "Maximale Länge von Bildern";
-$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet.";
-$a->strings["JPEG image quality"] = "Qualität des JPEG Bildes";
-$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust.";
-$a->strings["Register policy"] = "Registrierungsmethode";
-$a->strings["Maximum Daily Registrations"] = "Maximum täglicher Neuanmeldungen";
-$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt.";
-$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"] = "Nutzerkonten 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 System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein 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["Force publish"] = "Erzwinge Veröffentlichung";
-$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen.";
-$a->strings["Global directory update URL"] = "URL für Updates beim weltweiten Verzeichnis";
-$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar.";
-$a->strings["Allow threaded items"] = "Erlaube Threads in Diskussionen";
-$a->strings["Allow infinite level threading for items on this site."] = "Erlaube ein unendliches Level für Threads auf dieser Seite.";
-$a->strings["Private posts by default for new users"] = "Private Beiträge als Standard für neue Nutzer";
-$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen.";
-$a->strings["Don't include post content in email notifications"] = "Inhalte von Beiträgen nicht in Email Benachrichtigungen versenden";
-$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz, nicht in Email-Benachrichtigungen einbinden.";
-$a->strings["Disallow public access to addons listed in the apps menu."] = "Öffentlichen Zugriff auf Addons im Apps Menü verbieten.";
-$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt.";
-$a->strings["Don't embed private images in posts"] = "Private Bilder nicht in Beiträgen einbetten.";
-$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert.";
-$a->strings["Block multiple registrations"] = "Unterbinde Mehrfachregistrierung";
-$a->strings["Disallow users to register additional accounts for use as pages."] = "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen.";
-$a->strings["OpenID support"] = "OpenID Unterstützung";
-$a->strings["OpenID support for registration and logins."] = "OpenID-Unterstützung für Registrierung und Login.";
-$a->strings["Fullname check"] = "Namen auf Vollständigkeit überprüfen";
-$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden.";
-$a->strings["UTF-8 Regular expressions"] = "UTF-8 Reguläre Ausdrücke";
-$a->strings["Use PHP UTF8 regular expressions"] = "PHP UTF8 Ausdrücke verwenden";
-$a->strings["Show Community Page"] = "Gemeinschaftsseite anzeigen";
-$a->strings["Display a Community page showing all recent public postings on this site."] = "Zeige die Gemeinschaftsseite mit allen öffentlichen Beiträgen auf diesem Server.";
-$a->strings["Enable OStatus support"] = "OStatus Unterstützung aktivieren";
-$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."] = "Biete die eingebaute OStatus (identi.ca, status.net, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt.";
-$a->strings["Enable Diaspora support"] = "Diaspora-Support aktivieren";
-$a->strings["Provide built-in Diaspora network compatibility."] = "Verwende die eingebaute Diaspora-Verknüpfung.";
-$a->strings["Only allow Friendica contacts"] = "Nur Friendica-Kontakte erlauben";
-$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert.";
-$a->strings["Verify SSL"] = "SSL Überprüfen";
-$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."] = "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann.";
-$a->strings["Proxy user"] = "Proxy Nutzer";
-$a->strings["Proxy URL"] = "Proxy URL";
-$a->strings["Network timeout"] = "Netzwerk Wartezeit";
-$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["Delivery interval"] = "Zustellungsintervall";
-$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["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["Use MySQL full text engine"] = "Nutze MySQL full text engine";
-$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden.";
-$a->strings["Path to item cache"] = "Pfad zum Eintrag Cache";
-$a->strings["Cache duration in seconds"] = "Cache-Dauer in Sekunden";
-$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "Wie lange sollen die Dateien im Cache vorgehalten werden? Standardwert ist 86400 Sekunden (ein Tag).";
-$a->strings["Path for lock file"] = "Pfad für die Sperrdatei";
-$a->strings["Temp path"] = "Temp Pfad";
-$a->strings["Base path to installation"] = "Basis-Pfad zur Installation";
-$a->strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert";
-$a->strings["Executing %s failed. Check system logs."] = "Ausführung von %s schlug fehl. Systemprotokolle prüfen.";
-$a->strings["Update %s was successfully applied."] = "Update %s war erfolgreich.";
-$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s hat keinen Status zurückgegeben. Unbekannter Status.";
-$a->strings["Update function %s could not be found."] = "Updatefunktion %s konnte nicht gefunden werden.";
-$a->strings["No failed updates."] = "Keine fehlgeschlagenen Updates.";
-$a->strings["Failed Updates"] = "Fehlgeschlagene Updates";
-$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben.";
-$a->strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (falls das Update manuell installiert wurde)";
-$a->strings["Attempt to execute this update step automatically"] = "Versuchen, diesen Schritt automatisch auszuführen";
-$a->strings["%s user blocked/unblocked"] = array(
- 0 => "%s Benutzer geblockt/freigegeben",
- 1 => "%s Benutzer geblockt/freigegeben",
-);
-$a->strings["%s user deleted"] = array(
- 0 => "%s Nutzer gelöscht",
- 1 => "%s Nutzer gelöscht",
-);
-$a->strings["User '%s' deleted"] = "Nutzer '%s' gelöscht";
-$a->strings["User '%s' unblocked"] = "Nutzer '%s' entsperrt";
-$a->strings["User '%s' blocked"] = "Nutzer '%s' gesperrt";
-$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"] = "Anfragedatum";
-$a->strings["No registrations."] = "Keine Neuanmeldungen.";
-$a->strings["Approve"] = "Genehmigen";
-$a->strings["Deny"] = "Verwehren";
-$a->strings["Site admin"] = "Seitenadministrator";
-$a->strings["Account expired"] = "Account ist abgelaufen";
-$a->strings["Register date"] = "Anmeldedatum";
-$a->strings["Last login"] = "Letzte Anmeldung";
-$a->strings["Last item"] = "Letzter Beitrag";
-$a->strings["Account"] = "Nutzerkonto";
-$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\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden 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!\\n\\nBist du sicher?";
-$a->strings["Plugin %s disabled."] = "Plugin %s deaktiviert.";
-$a->strings["Plugin %s enabled."] = "Plugin %s aktiviert.";
-$a->strings["Disable"] = "Ausschalten";
-$a->strings["Enable"] = "Einschalten";
-$a->strings["Toggle"] = "Umschalten";
-$a->strings["Author: "] = "Autor:";
-$a->strings["Maintainer: "] = "Betreuer:";
-$a->strings["No themes found."] = "Keine Themen gefunden.";
-$a->strings["Screenshot"] = "Bildschirmfoto";
-$a->strings["[Experimental]"] = "[Experimentell]";
-$a->strings["[Unsupported]"] = "[Nicht unterstützt]";
-$a->strings["Log settings updated."] = "Protokolleinstellungen aktualisiert.";
-$a->strings["Clear"] = "löschen";
-$a->strings["Enable Debugging"] = "Protokoll führen";
-$a->strings["Log file"] = "Protokolldatei";
-$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis.";
-$a->strings["Log level"] = "Protokoll-Level";
-$a->strings["Close"] = "Schließen";
-$a->strings["FTP Host"] = "FTP Host";
-$a->strings["FTP Path"] = "FTP Pfad";
-$a->strings["FTP User"] = "FTP Nutzername";
-$a->strings["FTP Password"] = "FTP Passwort";
$a->strings["link"] = "Link";
$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
@@ -1606,6 +1608,7 @@ $a->strings["Left"] = "Links";
$a->strings["Center"] = "Mitte";
$a->strings["Posts font size"] = "Schriftgröße in Beiträgen";
$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern";
+$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln";
$a->strings["Delete this item?"] = "Diesen Beitrag löschen?";
$a->strings["show fewer"] = "weniger anzeigen";
$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen.";
@@ -1636,4 +1639,3 @@ $a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
$a->strings["Profile Details"] = "Profildetails";
$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
$a->strings["Only You Can See This"] = "Nur du kannst das sehen";
-$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln";
From 2cc73dbef3da678a65cd395b90b39b5c8670144b Mon Sep 17 00:00:00 2001
From: Zach Prezkuta
Date: Sun, 7 Apr 2013 11:38:37 -0600
Subject: [PATCH 11/67] allow visiting other people's display/ links if I have
a copy of the post
---
mod/display.php | 81 ++++++++++++++++++++++++++++++++++---------------
1 file changed, 56 insertions(+), 25 deletions(-)
diff --git a/mod/display.php b/mod/display.php
index bb2733e61..24ce35791 100644
--- a/mod/display.php
+++ b/mod/display.php
@@ -43,7 +43,7 @@ function display_content(&$a, $update = 0) {
$a->profile = array('uid' => intval($update), 'profile_uid' => intval($update));
}
else {
- $item_id = (($a->argc > 2) ? intval($a->argv[2]) : 0);
+ $item_id = (($a->argc > 2) ? $a->argv[2] : 0);
}
if(! $item_id) {
@@ -142,16 +142,46 @@ function display_content(&$a, $update = 0) {
WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
and `item`.`moderated` = 0
AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
- AND `item`.`parent` = ( SELECT `parent` FROM `item` WHERE ( `id` = '%s' OR `uri` = '%s' ))
+ AND `item`.`parent` = ( SELECT `parent` FROM `item` WHERE ( `id` = '%s' OR `uri` = '%s' )
+ AND uid = %d )
$sql_extra
ORDER BY `parent` DESC, `gravity` ASC, `id` ASC ",
intval($a->profile['uid']),
dbesc($item_id),
- dbesc($item_id)
+ dbesc($item_id),
+ intval($a->profile['uid'])
);
+ if(!$r && local_user()) {
+ // Check if this is another person's link to a post that we have
+ $r = q("SELECT `item`.uri FROM `item`
+ WHERE (`item`.`id` = '%s' OR `item`.`uri` = '%s' )
+ LIMIT 1",
+ dbesc($item_id),
+ dbesc($item_id)
+ );
+ if($r) {
+ $item_uri = $r[0]['uri'];
- if(count($r)) {
+ $r = q("SELECT `item`.*, `item`.`id` AS `item_id`,
+ `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`,
+ `contact`.`network`, `contact`.`thumb`, `contact`.`self`, `contact`.`writable`,
+ `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
+ FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
+ WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
+ and `item`.`moderated` = 0
+ AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
+ AND `item`.`parent` = ( SELECT `parent` FROM `item` WHERE `uri` = '%s' AND uid = %d )
+ ORDER BY `parent` DESC, `gravity` ASC, `id` ASC ",
+ intval(local_user()),
+ dbesc($item_uri),
+ intval(local_user())
+ );
+ }
+ }
+
+
+ if($r) {
if((local_user()) && (local_user() == $a->profile['uid'])) {
q("UPDATE `item` SET `unseen` = 0
@@ -171,15 +201,17 @@ function display_content(&$a, $update = 0) {
require_once("include/html2plain.php");
$description = trim(html2plain(bbcode($r[0]["body"], false, false), 0, true));
$title = trim(html2plain(bbcode($r[0]["title"], false, false), 0, true));
+ $author_name = $r[0]["author-name"];
+
+ if ($title == "")
+ $title = $author_name;
$description = htmlspecialchars($description, ENT_COMPAT, 'UTF-8', true); // allow double encoding here
$title = htmlspecialchars($title, ENT_COMPAT, 'UTF-8', true); // allow double encoding here
-
- if ($title == "")
- $title = $r[0]["author-name"];
+ $author_name = htmlspecialchars($author_name, ENT_COMPAT, 'UTF-8', true); // allow double encoding here
//
- $a->page['htmlhead'] .= ' '."\n";
+ $a->page['htmlhead'] .= ' '."\n";
$a->page['htmlhead'] .= ' '."\n";
$a->page['htmlhead'] .= ' '."\n";
$a->page['htmlhead'] .= ' '."\n";
@@ -192,27 +224,26 @@ function display_content(&$a, $update = 0) {
//
$a->page['htmlhead'] .= ' '."\n";
$a->page['htmlhead'] .= ' '."\n";
- $a->page['htmlhead'] .= ' '."\n";
+ $a->page['htmlhead'] .= ' '."\n";
// article:tag
+ return $o;
+ }
+
+ $r = q("SELECT `id`,`deleted` FROM `item` WHERE `id` = '%s' OR `uri` = '%s' LIMIT 1",
+ dbesc($item_id),
+ dbesc($item_id)
+ );
+ if($r) {
+ if($r[0]['deleted']) {
+ notice( t('Item has been removed.') . EOL );
+ }
+ else {
+ notice( t('Permission denied.') . EOL );
+ }
}
else {
- $r = q("SELECT `id`,`deleted` FROM `item` WHERE `id` = '%s' OR `uri` = '%s' LIMIT 1",
- dbesc($item_id),
- dbesc($item_id)
- );
- if(count($r)) {
- if($r[0]['deleted']) {
- notice( t('Item has been removed.') . EOL );
- }
- else {
- notice( t('Permission denied.') . EOL );
- }
- }
- else {
- notice( t('Item not found.') . EOL );
- }
-
+ notice( t('Item not found.') . EOL );
}
return $o;
From 659d0cc1b8bbe39fdbce10a0b97d65897a73ad67 Mon Sep 17 00:00:00 2001
From: Fabrixxm
Date: Mon, 8 Apr 2013 09:03:31 -0400
Subject: [PATCH 12/67] uimport remove db scheme version check
---
include/uimport.php | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/include/uimport.php b/include/uimport.php
index 12e85c61a..4fd91f80a 100644
--- a/include/uimport.php
+++ b/include/uimport.php
@@ -101,11 +101,13 @@ function import_account(&$a, $file) {
return;
}
+ /*
+ // this is not required as we remove columns in json not in current db schema
if ($account['schema'] != DB_UPDATE_VERSION) {
notice(t("Error! I can't import this file: DB schema version is not compatible."));
return;
}
-
+ */
// check for username
$r = q("SELECT uid FROM user WHERE nickname='%s'", $account['user']['nickname']);
From 5827db0ea327827657620b5b668b0741ca0e77bf Mon Sep 17 00:00:00 2001
From: Tobias Diekershoff
Date: Sun, 14 Apr 2013 17:22:42 +0200
Subject: [PATCH 13/67] check current password before changing the password
---
mod/settings.php | 13 +++++++++++--
view/settings.tpl | 2 ++
view/smarty3/settings.tpl | 2 ++
3 files changed, 15 insertions(+), 2 deletions(-)
diff --git a/mod/settings.php b/mod/settings.php
index 38bfedbb1..56526b7e7 100644
--- a/mod/settings.php
+++ b/mod/settings.php
@@ -300,7 +300,8 @@ function settings_post(&$a) {
if((x($_POST,'npassword')) || (x($_POST,'confirm'))) {
$newpass = $_POST['npassword'];
- $confirm = $_POST['confirm'];
+ $confirm = $_POST['confirm'];
+ $oldpass = hash('whirlpool', $_POST['opassword']);
$err = false;
if($newpass != $confirm ) {
@@ -311,7 +312,13 @@ function settings_post(&$a) {
if((! x($newpass)) || (! x($confirm))) {
notice( t('Empty passwords are not allowed. Password unchanged.') . EOL);
$err = true;
- }
+ }
+
+ $r = q("SELECT `password` FROM `user`WHERE `uid` = %d LIMIT 1", intval(local_user()));
+ if( $oldpass != $r[0]['password'] ) {
+ notice( t('Wrong password.') . EOL);
+ $err = true;
+ }
if(! $err) {
$password = hash('whirlpool',$newpass);
@@ -1045,6 +1052,8 @@ function settings_content(&$a) {
'$h_pass' => t('Password Settings'),
'$password1'=> array('npassword', t('New Password:'), '', ''),
'$password2'=> array('confirm', t('Confirm:'), '', t('Leave password fields blank unless changing')),
+ '$password3'=> array('opassword', t('Current Password:'), '', t('Your current password to confirm the changes')),
+ '$password4'=> array('password', t('Password:'), '', t('Your current password to confirm the changes')),
'$oid_enable' => (! get_config('system','no_openid')),
'$openid' => $openid_field,
diff --git a/view/settings.tpl b/view/settings.tpl
index bebd0c12a..569ebcf10 100644
--- a/view/settings.tpl
+++ b/view/settings.tpl
@@ -9,6 +9,7 @@ $nickname_block
{{inc field_password.tpl with $field=$password1 }}{{endinc}}
{{inc field_password.tpl with $field=$password2 }}{{endinc}}
+{{inc field_password.tpl with $field=$password3 }}{{endinc}}
{{ if $oid_enable }}
{{inc field_input.tpl with $field=$openid }}{{endinc}}
@@ -23,6 +24,7 @@ $nickname_block
{{inc field_input.tpl with $field=$username }}{{endinc}}
{{inc field_input.tpl with $field=$email }}{{endinc}}
+{{inc field_password.tpl with $field=$password4 }}{{endinc}}
{{inc field_custom.tpl with $field=$timezone }}{{endinc}}
{{inc field_input.tpl with $field=$defloc }}{{endinc}}
{{inc field_checkbox.tpl with $field=$allowloc }}{{endinc}}
diff --git a/view/smarty3/settings.tpl b/view/smarty3/settings.tpl
index b79b26b79..2ab4bd466 100644
--- a/view/smarty3/settings.tpl
+++ b/view/smarty3/settings.tpl
@@ -14,6 +14,7 @@
{{include file="field_password.tpl" field=$password1}}
{{include file="field_password.tpl" field=$password2}}
+{{include file="field_password.tpl" field=$password3}}
{{if $oid_enable}}
{{include file="field_input.tpl" field=$openid}}
@@ -28,6 +29,7 @@
{{include file="field_input.tpl" field=$username}}
{{include file="field_input.tpl" field=$email}}
+{{include file="field_password.tpl" field=$password4}}
{{include file="field_custom.tpl" field=$timezone}}
{{include file="field_input.tpl" field=$defloc}}
{{include file="field_checkbox.tpl" field=$allowloc}}
From 7be1040a6360d6322901ef609582b9520511f00b Mon Sep 17 00:00:00 2001
From: Tobias Diekershoff
Date: Sun, 14 Apr 2013 17:26:23 +0200
Subject: [PATCH 14/67] DE: update to the strings
---
view/de/messages.po | 4 ++--
view/de/strings.php | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/view/de/messages.po b/view/de/messages.po
index 71bd11b1c..024cdcea1 100644
--- a/view/de/messages.po
+++ b/view/de/messages.po
@@ -26,7 +26,7 @@ msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
"POT-Creation-Date: 2013-04-04 00:02-0700\n"
-"PO-Revision-Date: 2013-04-06 06:22+0000\n"
+"PO-Revision-Date: 2013-04-14 15:25+0000\n"
"Last-Translator: bavatar \n"
"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n"
"MIME-Version: 1.0\n"
@@ -4114,7 +4114,7 @@ msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
#: ../../mod/settings.php:323
msgid "Password changed."
-msgstr "Passwort ändern."
+msgstr "Passwort geändert."
#: ../../mod/settings.php:325
msgid "Password update failed. Please try again."
diff --git a/view/de/strings.php b/view/de/strings.php
index 18742d20d..862d0cf2f 100644
--- a/view/de/strings.php
+++ b/view/de/strings.php
@@ -952,7 +952,7 @@ $a->strings["Email settings updated."] = "E-Mail Einstellungen bearbeitet.";
$a->strings["Features updated"] = "Features aktualisiert";
$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert.";
-$a->strings["Password changed."] = "Passwort ändern.";
+$a->strings["Password changed."] = "Passwort geändert.";
$a->strings["Password update failed. Please try again."] = "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal.";
$a->strings[" Please use a shorter name."] = " Bitte verwende einen kürzeren Namen.";
$a->strings[" Name too short."] = " Name ist zu kurz.";
From 4dd406055c0f6ff86e96d0a38cee3032057f4d85 Mon Sep 17 00:00:00 2001
From: Tobias Diekershoff
Date: Sun, 14 Apr 2013 17:58:16 +0200
Subject: [PATCH 15/67] check password when changing users email
---
mod/settings.php | 15 +++++++++++++--
1 file changed, 13 insertions(+), 2 deletions(-)
diff --git a/mod/settings.php b/mod/settings.php
index 56526b7e7..3d3688e29 100644
--- a/mod/settings.php
+++ b/mod/settings.php
@@ -314,6 +314,8 @@ function settings_post(&$a) {
$err = true;
}
+ // check if the old password was supplied correctly before
+ // changing it to the new value
$r = q("SELECT `password` FROM `user`WHERE `uid` = %d LIMIT 1", intval(local_user()));
if( $oldpass != $r[0]['password'] ) {
notice( t('Wrong password.') . EOL);
@@ -401,8 +403,17 @@ function settings_post(&$a) {
if($email != $a->user['email']) {
$email_changed = true;
- if(! valid_email($email))
- $err .= t(' Not valid email.');
+ // check for the correct password
+ $r = q("SELECT `password` FROM `user`WHERE `uid` = %d LIMIT 1", intval(local_user()));
+ $password = hash('whirlpool', $_POST['password']);
+ if ($password != $r[0]['password']) {
+ $err .= t('Wrong Password') . EOL;
+ $email = $a->user['email'];
+ }
+ // check the email is valid
+ if(! valid_email($email))
+ $err .= t(' Not valid email.');
+ // ensure new email is not the admin mail
if((x($a->config,'admin_email')) && (strcasecmp($email,$a->config['admin_email']) == 0)) {
$err .= t(' Cannot change to that email.');
$email = $a->user['email'];
From b6d1a1f125e44fe6af1c8eff7635e6d509abe262 Mon Sep 17 00:00:00 2001
From: Tobias Diekershoff
Date: Sun, 14 Apr 2013 18:19:01 +0200
Subject: [PATCH 16/67] tabwidth
---
mod/settings.php | 42 +++++++++++++++++++++---------------------
1 file changed, 21 insertions(+), 21 deletions(-)
diff --git a/mod/settings.php b/mod/settings.php
index 3d3688e29..ca688d1a9 100644
--- a/mod/settings.php
+++ b/mod/settings.php
@@ -300,8 +300,8 @@ function settings_post(&$a) {
if((x($_POST,'npassword')) || (x($_POST,'confirm'))) {
$newpass = $_POST['npassword'];
- $confirm = $_POST['confirm'];
- $oldpass = hash('whirlpool', $_POST['opassword']);
+ $confirm = $_POST['confirm'];
+ $oldpass = hash('whirlpool', $_POST['opassword']);
$err = false;
if($newpass != $confirm ) {
@@ -312,15 +312,15 @@ function settings_post(&$a) {
if((! x($newpass)) || (! x($confirm))) {
notice( t('Empty passwords are not allowed. Password unchanged.') . EOL);
$err = true;
- }
+ }
- // check if the old password was supplied correctly before
- // changing it to the new value
- $r = q("SELECT `password` FROM `user`WHERE `uid` = %d LIMIT 1", intval(local_user()));
- if( $oldpass != $r[0]['password'] ) {
- notice( t('Wrong password.') . EOL);
- $err = true;
- }
+ // check if the old password was supplied correctly before
+ // changing it to the new value
+ $r = q("SELECT `password` FROM `user`WHERE `uid` = %d LIMIT 1", intval(local_user()));
+ if( $oldpass != $r[0]['password'] ) {
+ notice( t('Wrong password.') . EOL);
+ $err = true;
+ }
if(! $err) {
$password = hash('whirlpool',$newpass);
@@ -403,17 +403,17 @@ function settings_post(&$a) {
if($email != $a->user['email']) {
$email_changed = true;
- // check for the correct password
- $r = q("SELECT `password` FROM `user`WHERE `uid` = %d LIMIT 1", intval(local_user()));
- $password = hash('whirlpool', $_POST['password']);
- if ($password != $r[0]['password']) {
- $err .= t('Wrong Password') . EOL;
- $email = $a->user['email'];
- }
- // check the email is valid
- if(! valid_email($email))
- $err .= t(' Not valid email.');
- // ensure new email is not the admin mail
+ // check for the correct password
+ $r = q("SELECT `password` FROM `user`WHERE `uid` = %d LIMIT 1", intval(local_user()));
+ $password = hash('whirlpool', $_POST['password']);
+ if ($password != $r[0]['password']) {
+ $err .= t('Wrong Password') . EOL;
+ $email = $a->user['email'];
+ }
+ // check the email is valid
+ if(! valid_email($email))
+ $err .= t(' Not valid email.');
+ // ensure new email is not the admin mail
if((x($a->config,'admin_email')) && (strcasecmp($email,$a->config['admin_email']) == 0)) {
$err .= t(' Cannot change to that email.');
$email = $a->user['email'];
From 960d1d99b28bae6d946ed2feaa44fc0b11b73d3f Mon Sep 17 00:00:00 2001
From: Tobias Diekershoff
Date: Wed, 17 Apr 2013 17:32:31 +0200
Subject: [PATCH 17/67] invalid arguments for a foreach loop found
---
include/tags.php | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/include/tags.php b/include/tags.php
index c81a752d5..6e73f616c 100644
--- a/include/tags.php
+++ b/include/tags.php
@@ -106,8 +106,10 @@ function create_tags_from_item($itemid) {
function create_tags_from_itemuri($itemuri, $uid) {
$messages = q("SELECT `id` FROM `item` WHERE uri ='%s' AND uid=%d", dbesc($itemuri), intval($uid));
- foreach ($messages as $message)
- create_tags_from_item($message["id"]);
+ if(count($messages)) {
+ foreach ($messages as $message)
+ create_tags_from_item($message["id"]);
+ }
}
function update_items() {
From 78e747016fb26b36439a72159c458102d5681d12 Mon Sep 17 00:00:00 2001
From: Zach Prezkuta
Date: Thu, 18 Apr 2013 19:47:27 -0600
Subject: [PATCH 18/67] update mobile theme settings pages
---
view/theme/decaf-mobile/settings.tpl | 3 +++
view/theme/decaf-mobile/smarty3/settings.tpl | 3 +++
view/theme/frost-mobile/settings.tpl | 3 +++
view/theme/frost-mobile/smarty3/settings.tpl | 3 +++
4 files changed, 12 insertions(+)
diff --git a/view/theme/decaf-mobile/settings.tpl b/view/theme/decaf-mobile/settings.tpl
index 3ab464b25..036cc1691 100644
--- a/view/theme/decaf-mobile/settings.tpl
+++ b/view/theme/decaf-mobile/settings.tpl
@@ -9,6 +9,7 @@ $nickname_block
{{inc field_password.tpl with $field=$password1 }}{{endinc}}
{{inc field_password.tpl with $field=$password2 }}{{endinc}}
+{{inc field_password.tpl with $field=$password3 }}{{endinc}}
{{ if $oid_enable }}
{{inc field_input.tpl with $field=$openid }}{{endinc}}
@@ -23,6 +24,7 @@ $nickname_block
{{inc field_input.tpl with $field=$username }}{{endinc}}
{{inc field_input.tpl with $field=$email }}{{endinc}}
+{{inc field_password.tpl with $field=$password4 }}{{endinc}}
{{inc field_custom.tpl with $field=$timezone }}{{endinc}}
{{inc field_input.tpl with $field=$defloc }}{{endinc}}
{{inc field_checkbox.tpl with $field=$allowloc }}{{endinc}}
@@ -127,6 +129,7 @@ $group_select
{{inc field_intcheckbox.tpl with $field=$notify5 }}{{endinc}}
{{inc field_intcheckbox.tpl with $field=$notify6 }}{{endinc}}
{{inc field_intcheckbox.tpl with $field=$notify7 }}{{endinc}}
+{{inc field_intcheckbox.tpl with $field=$notify8 }}{{endinc}}
diff --git a/view/theme/decaf-mobile/smarty3/settings.tpl b/view/theme/decaf-mobile/smarty3/settings.tpl
index d702cd7d1..587b96e28 100644
--- a/view/theme/decaf-mobile/smarty3/settings.tpl
+++ b/view/theme/decaf-mobile/smarty3/settings.tpl
@@ -14,6 +14,7 @@
{{include file="field_password.tpl" field=$password1}}
{{include file="field_password.tpl" field=$password2}}
+{{include file="field_password.tpl" field=$password3}}
{{if $oid_enable}}
{{include file="field_input.tpl" field=$openid}}
@@ -28,6 +29,7 @@
{{include file="field_input.tpl" field=$username}}
{{include file="field_input.tpl" field=$email}}
+{{include file="field_password.tpl" field=$password4}}
{{include file="field_custom.tpl" field=$timezone}}
{{include file="field_input.tpl" field=$defloc}}
{{include file="field_checkbox.tpl" field=$allowloc}}
@@ -132,6 +134,7 @@
{{include file="field_intcheckbox.tpl" field=$notify5}}
{{include file="field_intcheckbox.tpl" field=$notify6}}
{{include file="field_intcheckbox.tpl" field=$notify7}}
+{{include file="field_intcheckbox.tpl" field=$notify8}}
diff --git a/view/theme/frost-mobile/settings.tpl b/view/theme/frost-mobile/settings.tpl
index 3e8b33d7f..8e5aff019 100644
--- a/view/theme/frost-mobile/settings.tpl
+++ b/view/theme/frost-mobile/settings.tpl
@@ -9,6 +9,7 @@ $nickname_block
{{inc field_password.tpl with $field=$password1 }}{{endinc}}
{{inc field_password.tpl with $field=$password2 }}{{endinc}}
+{{inc field_password.tpl with $field=$password3 }}{{endinc}}
{{ if $oid_enable }}
{{inc field_input.tpl with $field=$openid }}{{endinc}}
@@ -23,6 +24,7 @@ $nickname_block
{{inc field_input.tpl with $field=$username }}{{endinc}}
{{inc field_input.tpl with $field=$email }}{{endinc}}
+{{inc field_password.tpl with $field=$password4 }}{{endinc}}
{{inc field_custom.tpl with $field=$timezone }}{{endinc}}
{{inc field_input.tpl with $field=$defloc }}{{endinc}}
{{inc field_checkbox.tpl with $field=$allowloc }}{{endinc}}
@@ -123,6 +125,7 @@ $group_select
{{inc field_intcheckbox.tpl with $field=$notify5 }}{{endinc}}
{{inc field_intcheckbox.tpl with $field=$notify6 }}{{endinc}}
{{inc field_intcheckbox.tpl with $field=$notify7 }}{{endinc}}
+{{inc field_intcheckbox.tpl with $field=$notify8 }}{{endinc}}
diff --git a/view/theme/frost-mobile/smarty3/settings.tpl b/view/theme/frost-mobile/smarty3/settings.tpl
index 73732e453..16a67039b 100644
--- a/view/theme/frost-mobile/smarty3/settings.tpl
+++ b/view/theme/frost-mobile/smarty3/settings.tpl
@@ -14,6 +14,7 @@
{{include file="field_password.tpl" field=$password1}}
{{include file="field_password.tpl" field=$password2}}
+{{include file="field_password.tpl" field=$password3}}
{{if $oid_enable}}
{{include file="field_input.tpl" field=$openid}}
@@ -28,6 +29,7 @@
{{include file="field_input.tpl" field=$username}}
{{include file="field_input.tpl" field=$email}}
+{{include file="field_password.tpl" field=$password4}}
{{include file="field_custom.tpl" field=$timezone}}
{{include file="field_input.tpl" field=$defloc}}
{{include file="field_checkbox.tpl" field=$allowloc}}
@@ -128,6 +130,7 @@
{{include file="field_intcheckbox.tpl" field=$notify5}}
{{include file="field_intcheckbox.tpl" field=$notify6}}
{{include file="field_intcheckbox.tpl" field=$notify7}}
+{{include file="field_intcheckbox.tpl" field=$notify8}}
From a13e7b8a38f6eb61237c79090f144a60ea9fafe1 Mon Sep 17 00:00:00 2001
From: friendica
Date: Fri, 19 Apr 2013 04:51:43 -0700
Subject: [PATCH 19/67] rev update
---
boot.php | 2 +-
util/messages.po | 502 +++++++++++++++++++++++------------------------
2 files changed, 252 insertions(+), 252 deletions(-)
diff --git a/boot.php b/boot.php
index 22af8ef57..e23f05737 100644
--- a/boot.php
+++ b/boot.php
@@ -12,7 +12,7 @@ require_once('library/Mobile_Detect/Mobile_Detect.php');
require_once('include/features.php');
define ( 'FRIENDICA_PLATFORM', 'Friendica');
-define ( 'FRIENDICA_VERSION', '3.1.1660' );
+define ( 'FRIENDICA_VERSION', '3.1.1675' );
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
define ( 'DB_UPDATE_VERSION', 1163 );
define ( 'EOL', " \r\n" );
diff --git a/util/messages.po b/util/messages.po
index a8ee559c9..1ef12493d 100644
--- a/util/messages.po
+++ b/util/messages.po
@@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: 3.1.1660\n"
+"Project-Id-Version: 3.1.1675\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-04-04 00:02-0700\n"
+"POT-Creation-Date: 2013-04-19 00:02-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -25,7 +25,7 @@ msgstr ""
msgid "Profile"
msgstr ""
-#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1050
+#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1052
msgid "Full Name:"
msgstr ""
@@ -60,7 +60,7 @@ msgstr ""
msgid "for %1$d %2$s"
msgstr ""
-#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:646
+#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:650
msgid "Sexual Preference:"
msgstr ""
@@ -69,7 +69,7 @@ msgstr ""
msgid "Homepage:"
msgstr ""
-#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:648
+#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:652
msgid "Hometown:"
msgstr ""
@@ -77,7 +77,7 @@ msgstr ""
msgid "Tags:"
msgstr ""
-#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:649
+#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:653
msgid "Political Views:"
msgstr ""
@@ -93,11 +93,11 @@ msgstr ""
msgid "Hobbies/Interests:"
msgstr ""
-#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:653
+#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:657
msgid "Likes:"
msgstr ""
-#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:654
+#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:658
msgid "Dislikes:"
msgstr ""
@@ -737,46 +737,6 @@ msgstr ""
msgid "The error message was:"
msgstr ""
-#: ../../include/uimport.php:61
-msgid "Error decoding account file"
-msgstr ""
-
-#: ../../include/uimport.php:67
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr ""
-
-#: ../../include/uimport.php:72
-msgid "Error! I can't import this file: DB schema version is not compatible."
-msgstr ""
-
-#: ../../include/uimport.php:81
-msgid "Error! Cannot check nickname"
-msgstr ""
-
-#: ../../include/uimport.php:85
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr ""
-
-#: ../../include/uimport.php:104
-msgid "User creation error"
-msgstr ""
-
-#: ../../include/uimport.php:122
-msgid "User profile creation error"
-msgstr ""
-
-#: ../../include/uimport.php:167
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../include/uimport.php:245
-msgid "Done. You can now login with your username and password"
-msgstr ""
-
#: ../../include/bb2diaspora.php:393 ../../include/event.php:11
#: ../../mod/localtime.php:12
msgid "l F d, Y \\@ g:i A"
@@ -998,7 +958,7 @@ msgstr ""
msgid "Email"
msgstr ""
-#: ../../include/contact_selectors.php:80 ../../mod/settings.php:681
+#: ../../include/contact_selectors.php:80 ../../mod/settings.php:683
#: ../../mod/dfrn_request.php:842
msgid "Diaspora"
msgstr ""
@@ -1177,22 +1137,22 @@ msgstr ""
msgid "Do you really want to delete this item?"
msgstr ""
-#: ../../include/items.php:3998 ../../mod/profiles.php:606
+#: ../../include/items.php:3998 ../../mod/profiles.php:610
#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246
-#: ../../mod/settings.php:934 ../../mod/settings.php:940
-#: ../../mod/settings.php:948 ../../mod/settings.php:952
-#: ../../mod/settings.php:957 ../../mod/settings.php:963
-#: ../../mod/settings.php:969 ../../mod/settings.php:975
-#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
+#: ../../mod/settings.php:936 ../../mod/settings.php:942
+#: ../../mod/settings.php:950 ../../mod/settings.php:954
+#: ../../mod/settings.php:959 ../../mod/settings.php:965
+#: ../../mod/settings.php:971 ../../mod/settings.php:977
#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
-#: ../../mod/settings.php:1009 ../../mod/dfrn_request.php:836
+#: ../../mod/settings.php:1009 ../../mod/settings.php:1010
+#: ../../mod/settings.php:1011 ../../mod/dfrn_request.php:836
#: ../../mod/suggest.php:29 ../../mod/message.php:209
msgid "Yes"
msgstr ""
#: ../../include/items.php:4001 ../../include/conversation.php:1080
-#: ../../mod/contacts.php:249 ../../mod/settings.php:561
-#: ../../mod/settings.php:587 ../../mod/dfrn_request.php:848
+#: ../../mod/contacts.php:249 ../../mod/settings.php:563
+#: ../../mod/settings.php:589 ../../mod/dfrn_request.php:848
#: ../../mod/suggest.php:32 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81
#: ../../mod/fbrowser.php:116 ../../mod/message.php:212
@@ -1201,12 +1161,12 @@ msgid "Cancel"
msgstr ""
#: ../../include/items.php:4121 ../../mod/profiles.php:146
-#: ../../mod/profiles.php:567 ../../mod/notes.php:20 ../../mod/nogroup.php:25
+#: ../../mod/profiles.php:571 ../../mod/notes.php:20 ../../mod/nogroup.php:25
#: ../../mod/item.php:140 ../../mod/item.php:156 ../../mod/allfriends.php:9
#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/register.php:40
#: ../../mod/regmod.php:118 ../../mod/attach.php:33 ../../mod/contacts.php:147
-#: ../../mod/settings.php:91 ../../mod/settings.php:542
-#: ../../mod/settings.php:547 ../../mod/crepair.php:115
+#: ../../mod/settings.php:91 ../../mod/settings.php:544
+#: ../../mod/settings.php:549 ../../mod/crepair.php:115
#: ../../mod/delegate.php:6 ../../mod/poke.php:135
#: ../../mod/dfrn_confirm.php:53 ../../mod/suggest.php:56
#: ../../mod/editpost.php:10 ../../mod/events.php:140 ../../mod/uimport.php:23
@@ -1589,7 +1549,7 @@ msgid "Select"
msgstr ""
#: ../../include/conversation.php:588 ../../mod/admin.php:770
-#: ../../mod/settings.php:623 ../../mod/group.php:171
+#: ../../mod/settings.php:625 ../../mod/group.php:171
#: ../../mod/photos.php:1637 ../../mod/content.php:462
#: ../../mod/content.php:764 ../../object/Item.php:127
msgid "Delete"
@@ -2267,6 +2227,46 @@ msgstr ""
msgid "Embedding disabled"
msgstr ""
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
+msgstr ""
+
+#: ../../include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr ""
+
+#: ../../include/uimport.php:105
+msgid "Error! I can't import this file: DB schema version is not compatible."
+msgstr ""
+
+#: ../../include/uimport.php:114
+msgid "Error! Cannot check nickname"
+msgstr ""
+
+#: ../../include/uimport.php:118
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr ""
+
+#: ../../include/uimport.php:137
+msgid "User creation error"
+msgstr ""
+
+#: ../../include/uimport.php:155
+msgid "User profile creation error"
+msgstr ""
+
+#: ../../include/uimport.php:200
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/uimport.php:270
+msgid "Done. You can now login with your username and password"
+msgstr ""
+
#: ../../include/security.php:22
msgid "Welcome "
msgstr ""
@@ -2286,7 +2286,7 @@ msgid ""
msgstr ""
#: ../../mod/profiles.php:18 ../../mod/profiles.php:133
-#: ../../mod/profiles.php:160 ../../mod/profiles.php:579
+#: ../../mod/profiles.php:160 ../../mod/profiles.php:583
#: ../../mod/dfrn_confirm.php:62
msgid "Profile not found."
msgstr ""
@@ -2367,53 +2367,53 @@ msgstr ""
msgid "Profile updated."
msgstr ""
-#: ../../mod/profiles.php:517
+#: ../../mod/profiles.php:521
msgid " and "
msgstr ""
-#: ../../mod/profiles.php:525
-msgid "public profile"
-msgstr ""
-
-#: ../../mod/profiles.php:528
-#, php-format
-msgid "%1$s changed %2$s to “%3$s”"
-msgstr ""
-
#: ../../mod/profiles.php:529
-#, php-format
-msgid " - Visit %1$s's %2$s"
+msgid "public profile"
msgstr ""
#: ../../mod/profiles.php:532
#, php-format
+msgid "%1$s changed %2$s to “%3$s”"
+msgstr ""
+
+#: ../../mod/profiles.php:533
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr ""
+
+#: ../../mod/profiles.php:536
+#, php-format
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr ""
-#: ../../mod/profiles.php:605
+#: ../../mod/profiles.php:609
msgid "Hide your contact/friend list from viewers of this profile?"
msgstr ""
-#: ../../mod/profiles.php:607 ../../mod/api.php:106 ../../mod/register.php:240
-#: ../../mod/settings.php:934 ../../mod/settings.php:940
-#: ../../mod/settings.php:948 ../../mod/settings.php:952
-#: ../../mod/settings.php:957 ../../mod/settings.php:963
-#: ../../mod/settings.php:969 ../../mod/settings.php:975
-#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
+#: ../../mod/profiles.php:611 ../../mod/api.php:106 ../../mod/register.php:240
+#: ../../mod/settings.php:936 ../../mod/settings.php:942
+#: ../../mod/settings.php:950 ../../mod/settings.php:954
+#: ../../mod/settings.php:959 ../../mod/settings.php:965
+#: ../../mod/settings.php:971 ../../mod/settings.php:977
#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
-#: ../../mod/settings.php:1009 ../../mod/dfrn_request.php:837
+#: ../../mod/settings.php:1009 ../../mod/settings.php:1010
+#: ../../mod/settings.php:1011 ../../mod/dfrn_request.php:837
msgid "No"
msgstr ""
-#: ../../mod/profiles.php:625
+#: ../../mod/profiles.php:629
msgid "Edit Profile Details"
msgstr ""
-#: ../../mod/profiles.php:626 ../../mod/admin.php:491 ../../mod/admin.php:763
+#: ../../mod/profiles.php:630 ../../mod/admin.php:491 ../../mod/admin.php:763
#: ../../mod/admin.php:902 ../../mod/admin.php:1102 ../../mod/admin.php:1189
-#: ../../mod/contacts.php:386 ../../mod/settings.php:560
-#: ../../mod/settings.php:670 ../../mod/settings.php:739
-#: ../../mod/settings.php:811 ../../mod/settings.php:1037
+#: ../../mod/contacts.php:386 ../../mod/settings.php:562
+#: ../../mod/settings.php:672 ../../mod/settings.php:741
+#: ../../mod/settings.php:813 ../../mod/settings.php:1039
#: ../../mod/crepair.php:166 ../../mod/poke.php:199 ../../mod/events.php:478
#: ../../mod/fsuggest.php:107 ../../mod/group.php:87 ../../mod/invite.php:140
#: ../../mod/localtime.php:45 ../../mod/manage.php:110
@@ -2430,182 +2430,182 @@ msgstr ""
msgid "Submit"
msgstr ""
-#: ../../mod/profiles.php:627
+#: ../../mod/profiles.php:631
msgid "Change Profile Photo"
msgstr ""
-#: ../../mod/profiles.php:628
+#: ../../mod/profiles.php:632
msgid "View this profile"
msgstr ""
-#: ../../mod/profiles.php:629
+#: ../../mod/profiles.php:633
msgid "Create a new profile using these settings"
msgstr ""
-#: ../../mod/profiles.php:630
+#: ../../mod/profiles.php:634
msgid "Clone this profile"
msgstr ""
-#: ../../mod/profiles.php:631
+#: ../../mod/profiles.php:635
msgid "Delete this profile"
msgstr ""
-#: ../../mod/profiles.php:632
+#: ../../mod/profiles.php:636
msgid "Profile Name:"
msgstr ""
-#: ../../mod/profiles.php:633
+#: ../../mod/profiles.php:637
msgid "Your Full Name:"
msgstr ""
-#: ../../mod/profiles.php:634
+#: ../../mod/profiles.php:638
msgid "Title/Description:"
msgstr ""
-#: ../../mod/profiles.php:635
+#: ../../mod/profiles.php:639
msgid "Your Gender:"
msgstr ""
-#: ../../mod/profiles.php:636
+#: ../../mod/profiles.php:640
#, php-format
msgid "Birthday (%s):"
msgstr ""
-#: ../../mod/profiles.php:637
+#: ../../mod/profiles.php:641
msgid "Street Address:"
msgstr ""
-#: ../../mod/profiles.php:638
+#: ../../mod/profiles.php:642
msgid "Locality/City:"
msgstr ""
-#: ../../mod/profiles.php:639
+#: ../../mod/profiles.php:643
msgid "Postal/Zip Code:"
msgstr ""
-#: ../../mod/profiles.php:640
+#: ../../mod/profiles.php:644
msgid "Country:"
msgstr ""
-#: ../../mod/profiles.php:641
+#: ../../mod/profiles.php:645
msgid "Region/State:"
msgstr ""
-#: ../../mod/profiles.php:642
+#: ../../mod/profiles.php:646
msgid "♥ Marital Status:"
msgstr ""
-#: ../../mod/profiles.php:643
+#: ../../mod/profiles.php:647
msgid "Who: (if applicable)"
msgstr ""
-#: ../../mod/profiles.php:644
+#: ../../mod/profiles.php:648
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr ""
-#: ../../mod/profiles.php:645
+#: ../../mod/profiles.php:649
msgid "Since [date]:"
msgstr ""
-#: ../../mod/profiles.php:647
+#: ../../mod/profiles.php:651
msgid "Homepage URL:"
msgstr ""
-#: ../../mod/profiles.php:650
+#: ../../mod/profiles.php:654
msgid "Religious Views:"
msgstr ""
-#: ../../mod/profiles.php:651
+#: ../../mod/profiles.php:655
msgid "Public Keywords:"
msgstr ""
-#: ../../mod/profiles.php:652
+#: ../../mod/profiles.php:656
msgid "Private Keywords:"
msgstr ""
-#: ../../mod/profiles.php:655
+#: ../../mod/profiles.php:659
msgid "Example: fishing photography software"
msgstr ""
-#: ../../mod/profiles.php:656
+#: ../../mod/profiles.php:660
msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr ""
-#: ../../mod/profiles.php:657
+#: ../../mod/profiles.php:661
msgid "(Used for searching profiles, never shown to others)"
msgstr ""
-#: ../../mod/profiles.php:658
+#: ../../mod/profiles.php:662
msgid "Tell us about yourself..."
msgstr ""
-#: ../../mod/profiles.php:659
+#: ../../mod/profiles.php:663
msgid "Hobbies/Interests"
msgstr ""
-#: ../../mod/profiles.php:660
+#: ../../mod/profiles.php:664
msgid "Contact information and Social Networks"
msgstr ""
-#: ../../mod/profiles.php:661
+#: ../../mod/profiles.php:665
msgid "Musical interests"
msgstr ""
-#: ../../mod/profiles.php:662
+#: ../../mod/profiles.php:666
msgid "Books, literature"
msgstr ""
-#: ../../mod/profiles.php:663
+#: ../../mod/profiles.php:667
msgid "Television"
msgstr ""
-#: ../../mod/profiles.php:664
+#: ../../mod/profiles.php:668
msgid "Film/dance/culture/entertainment"
msgstr ""
-#: ../../mod/profiles.php:665
+#: ../../mod/profiles.php:669
msgid "Love/romance"
msgstr ""
-#: ../../mod/profiles.php:666
+#: ../../mod/profiles.php:670
msgid "Work/employment"
msgstr ""
-#: ../../mod/profiles.php:667
+#: ../../mod/profiles.php:671
msgid "School/education"
msgstr ""
-#: ../../mod/profiles.php:672
+#: ../../mod/profiles.php:676
msgid ""
"This is your public profile. It may "
"be visible to anybody using the internet."
msgstr ""
-#: ../../mod/profiles.php:682 ../../mod/directory.php:111
+#: ../../mod/profiles.php:686 ../../mod/directory.php:111
msgid "Age: "
msgstr ""
-#: ../../mod/profiles.php:721
+#: ../../mod/profiles.php:725
msgid "Edit/Manage Profiles"
msgstr ""
-#: ../../mod/profiles.php:722 ../../boot.php:1375 ../../boot.php:1401
+#: ../../mod/profiles.php:726 ../../boot.php:1375 ../../boot.php:1401
msgid "Change profile photo"
msgstr ""
-#: ../../mod/profiles.php:723 ../../boot.php:1376
+#: ../../mod/profiles.php:727 ../../boot.php:1376
msgid "Create New Profile"
msgstr ""
-#: ../../mod/profiles.php:734 ../../boot.php:1386
+#: ../../mod/profiles.php:738 ../../boot.php:1386
msgid "Profile Image"
msgstr ""
-#: ../../mod/profiles.php:736 ../../boot.php:1389
+#: ../../mod/profiles.php:740 ../../boot.php:1389
msgid "visible to everybody"
msgstr ""
-#: ../../mod/profiles.php:737 ../../boot.php:1390
+#: ../../mod/profiles.php:741 ../../boot.php:1390
msgid "Edit visibility"
msgstr ""
@@ -2790,7 +2790,7 @@ msgstr ""
msgid "Site settings updated."
msgstr ""
-#: ../../mod/admin.php:434 ../../mod/settings.php:769
+#: ../../mod/admin.php:434 ../../mod/settings.php:771
msgid "No special theme for mobile devices"
msgstr ""
@@ -3333,8 +3333,8 @@ msgstr ""
msgid "Request date"
msgstr ""
-#: ../../mod/admin.php:766 ../../mod/admin.php:777 ../../mod/settings.php:562
-#: ../../mod/settings.php:588 ../../mod/crepair.php:148
+#: ../../mod/admin.php:766 ../../mod/admin.php:777 ../../mod/settings.php:564
+#: ../../mod/settings.php:590 ../../mod/crepair.php:148
msgid "Name"
msgstr ""
@@ -4068,7 +4068,7 @@ msgstr ""
msgid "Missing some important data!"
msgstr ""
-#: ../../mod/settings.php:121 ../../mod/settings.php:586
+#: ../../mod/settings.php:121 ../../mod/settings.php:588
msgid "Update"
msgstr ""
@@ -4128,466 +4128,466 @@ msgstr ""
msgid "Settings updated."
msgstr ""
-#: ../../mod/settings.php:559 ../../mod/settings.php:585
-#: ../../mod/settings.php:621
+#: ../../mod/settings.php:561 ../../mod/settings.php:587
+#: ../../mod/settings.php:623
msgid "Add application"
msgstr ""
-#: ../../mod/settings.php:563 ../../mod/settings.php:589
+#: ../../mod/settings.php:565 ../../mod/settings.php:591
msgid "Consumer Key"
msgstr ""
-#: ../../mod/settings.php:564 ../../mod/settings.php:590
+#: ../../mod/settings.php:566 ../../mod/settings.php:592
msgid "Consumer Secret"
msgstr ""
-#: ../../mod/settings.php:565 ../../mod/settings.php:591
+#: ../../mod/settings.php:567 ../../mod/settings.php:593
msgid "Redirect"
msgstr ""
-#: ../../mod/settings.php:566 ../../mod/settings.php:592
+#: ../../mod/settings.php:568 ../../mod/settings.php:594
msgid "Icon url"
msgstr ""
-#: ../../mod/settings.php:577
+#: ../../mod/settings.php:579
msgid "You can't edit this application."
msgstr ""
-#: ../../mod/settings.php:620
+#: ../../mod/settings.php:622
msgid "Connected Apps"
msgstr ""
-#: ../../mod/settings.php:622 ../../mod/editpost.php:109
+#: ../../mod/settings.php:624 ../../mod/editpost.php:109
#: ../../mod/content.php:751 ../../object/Item.php:117
msgid "Edit"
msgstr ""
-#: ../../mod/settings.php:624
+#: ../../mod/settings.php:626
msgid "Client key starts with"
msgstr ""
-#: ../../mod/settings.php:625
+#: ../../mod/settings.php:627
msgid "No name"
msgstr ""
-#: ../../mod/settings.php:626
+#: ../../mod/settings.php:628
msgid "Remove authorization"
msgstr ""
-#: ../../mod/settings.php:638
+#: ../../mod/settings.php:640
msgid "No Plugin settings configured"
msgstr ""
-#: ../../mod/settings.php:646
+#: ../../mod/settings.php:648
msgid "Plugin Settings"
msgstr ""
-#: ../../mod/settings.php:660
+#: ../../mod/settings.php:662
msgid "Off"
msgstr ""
-#: ../../mod/settings.php:660
+#: ../../mod/settings.php:662
msgid "On"
msgstr ""
-#: ../../mod/settings.php:668
+#: ../../mod/settings.php:670
msgid "Additional Features"
msgstr ""
-#: ../../mod/settings.php:681 ../../mod/settings.php:682
+#: ../../mod/settings.php:683 ../../mod/settings.php:684
#, php-format
msgid "Built-in support for %s connectivity is %s"
msgstr ""
-#: ../../mod/settings.php:681 ../../mod/settings.php:682
+#: ../../mod/settings.php:683 ../../mod/settings.php:684
msgid "enabled"
msgstr ""
-#: ../../mod/settings.php:681 ../../mod/settings.php:682
+#: ../../mod/settings.php:683 ../../mod/settings.php:684
msgid "disabled"
msgstr ""
-#: ../../mod/settings.php:682
+#: ../../mod/settings.php:684
msgid "StatusNet"
msgstr ""
-#: ../../mod/settings.php:714
+#: ../../mod/settings.php:716
msgid "Email access is disabled on this site."
msgstr ""
-#: ../../mod/settings.php:721
+#: ../../mod/settings.php:723
msgid "Connector Settings"
msgstr ""
-#: ../../mod/settings.php:726
+#: ../../mod/settings.php:728
msgid "Email/Mailbox Setup"
msgstr ""
-#: ../../mod/settings.php:727
+#: ../../mod/settings.php:729
msgid ""
"If you wish to communicate with email contacts using this service "
"(optional), please specify how to connect to your mailbox."
msgstr ""
-#: ../../mod/settings.php:728
+#: ../../mod/settings.php:730
msgid "Last successful email check:"
msgstr ""
-#: ../../mod/settings.php:730
+#: ../../mod/settings.php:732
msgid "IMAP server name:"
msgstr ""
-#: ../../mod/settings.php:731
+#: ../../mod/settings.php:733
msgid "IMAP port:"
msgstr ""
-#: ../../mod/settings.php:732
+#: ../../mod/settings.php:734
msgid "Security:"
msgstr ""
-#: ../../mod/settings.php:732 ../../mod/settings.php:737
+#: ../../mod/settings.php:734 ../../mod/settings.php:739
msgid "None"
msgstr ""
-#: ../../mod/settings.php:733
+#: ../../mod/settings.php:735
msgid "Email login name:"
msgstr ""
-#: ../../mod/settings.php:734
+#: ../../mod/settings.php:736
msgid "Email password:"
msgstr ""
-#: ../../mod/settings.php:735
+#: ../../mod/settings.php:737
msgid "Reply-to address:"
msgstr ""
-#: ../../mod/settings.php:736
+#: ../../mod/settings.php:738
msgid "Send public posts to all email contacts:"
msgstr ""
-#: ../../mod/settings.php:737
+#: ../../mod/settings.php:739
msgid "Action after import:"
msgstr ""
-#: ../../mod/settings.php:737
+#: ../../mod/settings.php:739
msgid "Mark as seen"
msgstr ""
-#: ../../mod/settings.php:737
+#: ../../mod/settings.php:739
msgid "Move to folder"
msgstr ""
-#: ../../mod/settings.php:738
+#: ../../mod/settings.php:740
msgid "Move to folder:"
msgstr ""
-#: ../../mod/settings.php:809
+#: ../../mod/settings.php:811
msgid "Display Settings"
msgstr ""
-#: ../../mod/settings.php:815 ../../mod/settings.php:826
+#: ../../mod/settings.php:817 ../../mod/settings.php:828
msgid "Display Theme:"
msgstr ""
-#: ../../mod/settings.php:816
+#: ../../mod/settings.php:818
msgid "Mobile Theme:"
msgstr ""
-#: ../../mod/settings.php:817
+#: ../../mod/settings.php:819
msgid "Update browser every xx seconds"
msgstr ""
-#: ../../mod/settings.php:817
+#: ../../mod/settings.php:819
msgid "Minimum of 10 seconds, no maximum"
msgstr ""
-#: ../../mod/settings.php:818
+#: ../../mod/settings.php:820
msgid "Number of items to display per page:"
msgstr ""
-#: ../../mod/settings.php:818
+#: ../../mod/settings.php:820
msgid "Maximum of 100 items"
msgstr ""
-#: ../../mod/settings.php:819
+#: ../../mod/settings.php:821
msgid "Don't show emoticons"
msgstr ""
-#: ../../mod/settings.php:895
+#: ../../mod/settings.php:897
msgid "Normal Account Page"
msgstr ""
-#: ../../mod/settings.php:896
+#: ../../mod/settings.php:898
msgid "This account is a normal personal profile"
msgstr ""
-#: ../../mod/settings.php:899
+#: ../../mod/settings.php:901
msgid "Soapbox Page"
msgstr ""
-#: ../../mod/settings.php:900
+#: ../../mod/settings.php:902
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr ""
-#: ../../mod/settings.php:903
+#: ../../mod/settings.php:905
msgid "Community Forum/Celebrity Account"
msgstr ""
-#: ../../mod/settings.php:904
+#: ../../mod/settings.php:906
msgid "Automatically approve all connection/friend requests as read-write fans"
msgstr ""
-#: ../../mod/settings.php:907
+#: ../../mod/settings.php:909
msgid "Automatic Friend Page"
msgstr ""
-#: ../../mod/settings.php:908
+#: ../../mod/settings.php:910
msgid "Automatically approve all connection/friend requests as friends"
msgstr ""
-#: ../../mod/settings.php:911
+#: ../../mod/settings.php:913
msgid "Private Forum [Experimental]"
msgstr ""
-#: ../../mod/settings.php:912
+#: ../../mod/settings.php:914
msgid "Private forum - approved members only"
msgstr ""
-#: ../../mod/settings.php:924
+#: ../../mod/settings.php:926
msgid "OpenID:"
msgstr ""
-#: ../../mod/settings.php:924
+#: ../../mod/settings.php:926
msgid "(Optional) Allow this OpenID to login to this account."
msgstr ""
-#: ../../mod/settings.php:934
+#: ../../mod/settings.php:936
msgid "Publish your default profile in your local site directory?"
msgstr ""
-#: ../../mod/settings.php:940
+#: ../../mod/settings.php:942
msgid "Publish your default profile in the global social directory?"
msgstr ""
-#: ../../mod/settings.php:948
+#: ../../mod/settings.php:950
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr ""
-#: ../../mod/settings.php:952
+#: ../../mod/settings.php:954
msgid "Hide your profile details from unknown viewers?"
msgstr ""
-#: ../../mod/settings.php:957
+#: ../../mod/settings.php:959
msgid "Allow friends to post to your profile page?"
msgstr ""
-#: ../../mod/settings.php:963
+#: ../../mod/settings.php:965
msgid "Allow friends to tag your posts?"
msgstr ""
-#: ../../mod/settings.php:969
+#: ../../mod/settings.php:971
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr ""
-#: ../../mod/settings.php:975
+#: ../../mod/settings.php:977
msgid "Permit unknown people to send you private mail?"
msgstr ""
-#: ../../mod/settings.php:983
+#: ../../mod/settings.php:985
msgid "Profile is not published ."
msgstr ""
-#: ../../mod/settings.php:986 ../../mod/profile_photo.php:248
+#: ../../mod/settings.php:988 ../../mod/profile_photo.php:248
msgid "or"
msgstr ""
-#: ../../mod/settings.php:991
+#: ../../mod/settings.php:993
msgid "Your Identity Address is"
msgstr ""
-#: ../../mod/settings.php:1002
+#: ../../mod/settings.php:1004
msgid "Automatically expire posts after this many days:"
msgstr ""
-#: ../../mod/settings.php:1002
+#: ../../mod/settings.php:1004
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr ""
-#: ../../mod/settings.php:1003
+#: ../../mod/settings.php:1005
msgid "Advanced expiration settings"
msgstr ""
-#: ../../mod/settings.php:1004
+#: ../../mod/settings.php:1006
msgid "Advanced Expiration"
msgstr ""
-#: ../../mod/settings.php:1005
+#: ../../mod/settings.php:1007
msgid "Expire posts:"
msgstr ""
-#: ../../mod/settings.php:1006
+#: ../../mod/settings.php:1008
msgid "Expire personal notes:"
msgstr ""
-#: ../../mod/settings.php:1007
+#: ../../mod/settings.php:1009
msgid "Expire starred posts:"
msgstr ""
-#: ../../mod/settings.php:1008
+#: ../../mod/settings.php:1010
msgid "Expire photos:"
msgstr ""
-#: ../../mod/settings.php:1009
+#: ../../mod/settings.php:1011
msgid "Only expire posts by others:"
msgstr ""
-#: ../../mod/settings.php:1035
+#: ../../mod/settings.php:1037
msgid "Account Settings"
msgstr ""
-#: ../../mod/settings.php:1043
+#: ../../mod/settings.php:1045
msgid "Password Settings"
msgstr ""
-#: ../../mod/settings.php:1044
+#: ../../mod/settings.php:1046
msgid "New Password:"
msgstr ""
-#: ../../mod/settings.php:1045
+#: ../../mod/settings.php:1047
msgid "Confirm:"
msgstr ""
-#: ../../mod/settings.php:1045
+#: ../../mod/settings.php:1047
msgid "Leave password fields blank unless changing"
msgstr ""
-#: ../../mod/settings.php:1049
+#: ../../mod/settings.php:1051
msgid "Basic Settings"
msgstr ""
-#: ../../mod/settings.php:1051
+#: ../../mod/settings.php:1053
msgid "Email Address:"
msgstr ""
-#: ../../mod/settings.php:1052
+#: ../../mod/settings.php:1054
msgid "Your Timezone:"
msgstr ""
-#: ../../mod/settings.php:1053
+#: ../../mod/settings.php:1055
msgid "Default Post Location:"
msgstr ""
-#: ../../mod/settings.php:1054
+#: ../../mod/settings.php:1056
msgid "Use Browser Location:"
msgstr ""
-#: ../../mod/settings.php:1057
+#: ../../mod/settings.php:1059
msgid "Security and Privacy Settings"
msgstr ""
-#: ../../mod/settings.php:1059
+#: ../../mod/settings.php:1061
msgid "Maximum Friend Requests/Day:"
msgstr ""
-#: ../../mod/settings.php:1059 ../../mod/settings.php:1089
+#: ../../mod/settings.php:1061 ../../mod/settings.php:1091
msgid "(to prevent spam abuse)"
msgstr ""
-#: ../../mod/settings.php:1060
+#: ../../mod/settings.php:1062
msgid "Default Post Permissions"
msgstr ""
-#: ../../mod/settings.php:1061
+#: ../../mod/settings.php:1063
msgid "(click to open/close)"
msgstr ""
-#: ../../mod/settings.php:1070 ../../mod/photos.php:1140
+#: ../../mod/settings.php:1072 ../../mod/photos.php:1140
#: ../../mod/photos.php:1506
msgid "Show to Groups"
msgstr ""
-#: ../../mod/settings.php:1071 ../../mod/photos.php:1141
+#: ../../mod/settings.php:1073 ../../mod/photos.php:1141
#: ../../mod/photos.php:1507
msgid "Show to Contacts"
msgstr ""
-#: ../../mod/settings.php:1072
+#: ../../mod/settings.php:1074
msgid "Default Private Post"
msgstr ""
-#: ../../mod/settings.php:1073
+#: ../../mod/settings.php:1075
msgid "Default Public Post"
msgstr ""
-#: ../../mod/settings.php:1077
+#: ../../mod/settings.php:1079
msgid "Default Permissions for New Posts"
msgstr ""
-#: ../../mod/settings.php:1089
+#: ../../mod/settings.php:1091
msgid "Maximum private messages per day from unknown people:"
msgstr ""
-#: ../../mod/settings.php:1092
+#: ../../mod/settings.php:1094
msgid "Notification Settings"
msgstr ""
-#: ../../mod/settings.php:1093
+#: ../../mod/settings.php:1095
msgid "By default post a status message when:"
msgstr ""
-#: ../../mod/settings.php:1094
+#: ../../mod/settings.php:1096
msgid "accepting a friend request"
msgstr ""
-#: ../../mod/settings.php:1095
+#: ../../mod/settings.php:1097
msgid "joining a forum/community"
msgstr ""
-#: ../../mod/settings.php:1096
+#: ../../mod/settings.php:1098
msgid "making an interesting profile change"
msgstr ""
-#: ../../mod/settings.php:1097
+#: ../../mod/settings.php:1099
msgid "Send a notification email when:"
msgstr ""
-#: ../../mod/settings.php:1098
+#: ../../mod/settings.php:1100
msgid "You receive an introduction"
msgstr ""
-#: ../../mod/settings.php:1099
+#: ../../mod/settings.php:1101
msgid "Your introductions are confirmed"
msgstr ""
-#: ../../mod/settings.php:1100
+#: ../../mod/settings.php:1102
msgid "Someone writes on your profile wall"
msgstr ""
-#: ../../mod/settings.php:1101
+#: ../../mod/settings.php:1103
msgid "Someone writes a followup comment"
msgstr ""
-#: ../../mod/settings.php:1102
+#: ../../mod/settings.php:1104
msgid "You receive a private message"
msgstr ""
-#: ../../mod/settings.php:1103
+#: ../../mod/settings.php:1105
msgid "You receive a friend suggestion"
msgstr ""
-#: ../../mod/settings.php:1104
+#: ../../mod/settings.php:1106
msgid "You are tagged in a post"
msgstr ""
-#: ../../mod/settings.php:1105
+#: ../../mod/settings.php:1107
msgid "You are poked/prodded/etc. in a post"
msgstr ""
-#: ../../mod/settings.php:1108
+#: ../../mod/settings.php:1110
msgid "Advanced Account/Page Type Settings"
msgstr ""
-#: ../../mod/settings.php:1109
+#: ../../mod/settings.php:1111
msgid "Change the behaviour of this account for special situations"
msgstr ""
From dd02b7bd00824f5282023480b3485fe6db5942c7 Mon Sep 17 00:00:00 2001
From: Fabrixxm
Date: Fri, 19 Apr 2013 09:55:07 -0400
Subject: [PATCH 20/67] drop items to group pages if no mentions in it. should
fix bug 557
---
include/items.php | 52 +++++++++++++++++++++++++++++++++--------------
1 file changed, 37 insertions(+), 15 deletions(-)
diff --git a/include/items.php b/include/items.php
index 210e66bf7..194e19b5c 100755
--- a/include/items.php
+++ b/include/items.php
@@ -1180,19 +1180,23 @@ function item_store($arr,$force_parent = false) {
);
}
- tag_deliver($arr['uid'],$current_post);
+ $deleted = tag_deliver($arr['uid'],$current_post);
- // Store the fresh generated item into the cache
- $cachefile = get_cachefile($arr["guid"]."-".hash("md5", $arr['body']));
+ // current post can be deleted if is for a communuty page and no mention are
+ // in it.
+ if (!$deleted) {
+
+ // Store the fresh generated item into the cache
+ $cachefile = get_cachefile($arr["guid"]."-".hash("md5", $arr['body']));
- if (($cachefile != '') AND !file_exists($cachefile)) {
- $s = prepare_text($arr['body']);
- $a = get_app();
- $stamp1 = microtime(true);
- file_put_contents($cachefile, $s);
- $a->save_timestamp($stamp1, "file");
- logger('item_store: put item '.$current_post.' into cachefile '.$cachefile);
- }
+ if (($cachefile != '') AND !file_exists($cachefile)) {
+ $s = prepare_text($arr['body']);
+ $a = get_app();
+ $stamp1 = microtime(true);
+ file_put_contents($cachefile, $s);
+ $a->save_timestamp($stamp1, "file");
+ logger('item_store: put item '.$current_post.' into cachefile '.$cachefile);
+ }
$r = q('SELECT * FROM `item` WHERE id = %d', intval($current_post));
if (count($r) == 1) {
@@ -1201,7 +1205,7 @@ function item_store($arr,$force_parent = false) {
else {
logger('item_store: new item not found in DB, id ' . $current_post);
}
-
+ }
return $current_post;
}
@@ -1217,10 +1221,15 @@ function get_item_contact($item,$contacts) {
return false;
}
-
+/**
+ * look for mention tags and setup a second delivery chain for forum/community posts if appropriate
+ * @param int $uid
+ * @param int $item_id
+ * @return bool true if item was deleted, else false
+ */
function tag_deliver($uid,$item_id) {
- // look for mention tags and setup a second delivery chain for forum/community posts if appropriate
+ //
$a = get_app();
@@ -1262,8 +1271,21 @@ function tag_deliver($uid,$item_id) {
}
}
- if(! $mention)
+ if(! $mention){
+ if ( ($community_page || $prvgroup) &&
+ (!$item['wall']) && (!$item['origin']) && ($item['id'] == $item['parent'])){
+ // mmh.. no mention.. community page or private group... no wall.. no origin.. top-post (not a comment)
+ // delete it!
+ logger("tag_deliver: no-mention top-level post to communuty or private group. delete.");
+ q("DELETE FROM item WHERE id = %d and uid = %d limit 1",
+ intval($item_id),
+ intval($uid)
+ );
+ return true;
+ }
return;
+ }
+
// send a notification
From bc68892cf9a134a1ba7b1e0f381e52d64f3c27b4 Mon Sep 17 00:00:00 2001
From: friendica
Date: Sun, 21 Apr 2013 16:07:02 -0700
Subject: [PATCH 21/67] rev update
---
boot.php | 2 +-
util/messages.po | 401 ++++++++++++++++++++++++-----------------------
2 files changed, 209 insertions(+), 194 deletions(-)
diff --git a/boot.php b/boot.php
index e23f05737..0475f6ab3 100644
--- a/boot.php
+++ b/boot.php
@@ -12,7 +12,7 @@ require_once('library/Mobile_Detect/Mobile_Detect.php');
require_once('include/features.php');
define ( 'FRIENDICA_PLATFORM', 'Friendica');
-define ( 'FRIENDICA_VERSION', '3.1.1675' );
+define ( 'FRIENDICA_VERSION', '3.1.1677' );
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
define ( 'DB_UPDATE_VERSION', 1163 );
define ( 'EOL', " \r\n" );
diff --git a/util/messages.po b/util/messages.po
index 1ef12493d..0de2f4470 100644
--- a/util/messages.po
+++ b/util/messages.po
@@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: 3.1.1675\n"
+"Project-Id-Version: 3.1.1677\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-04-19 00:02-0700\n"
+"POT-Creation-Date: 2013-04-21 00:02-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -25,7 +25,7 @@ msgstr ""
msgid "Profile"
msgstr ""
-#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1052
+#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1072
msgid "Full Name:"
msgstr ""
@@ -958,7 +958,7 @@ msgstr ""
msgid "Email"
msgstr ""
-#: ../../include/contact_selectors.php:80 ../../mod/settings.php:683
+#: ../../include/contact_selectors.php:80 ../../mod/settings.php:701
#: ../../mod/dfrn_request.php:842
msgid "Diaspora"
msgstr ""
@@ -1127,9 +1127,9 @@ msgstr ""
msgid "You have a new follower at "
msgstr ""
-#: ../../include/items.php:3957 ../../mod/admin.php:158
-#: ../../mod/admin.php:809 ../../mod/admin.php:1009 ../../mod/viewsrc.php:15
-#: ../../mod/notice.php:15 ../../mod/display.php:51 ../../mod/display.php:213
+#: ../../include/items.php:3957 ../../mod/display.php:51
+#: ../../mod/display.php:246 ../../mod/admin.php:158 ../../mod/admin.php:809
+#: ../../mod/admin.php:1009 ../../mod/viewsrc.php:15 ../../mod/notice.php:15
msgid "Item not found."
msgstr ""
@@ -1139,20 +1139,20 @@ msgstr ""
#: ../../include/items.php:3998 ../../mod/profiles.php:610
#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246
-#: ../../mod/settings.php:936 ../../mod/settings.php:942
-#: ../../mod/settings.php:950 ../../mod/settings.php:954
-#: ../../mod/settings.php:959 ../../mod/settings.php:965
-#: ../../mod/settings.php:971 ../../mod/settings.php:977
-#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
-#: ../../mod/settings.php:1009 ../../mod/settings.php:1010
-#: ../../mod/settings.php:1011 ../../mod/dfrn_request.php:836
+#: ../../mod/settings.php:954 ../../mod/settings.php:960
+#: ../../mod/settings.php:968 ../../mod/settings.php:972
+#: ../../mod/settings.php:977 ../../mod/settings.php:983
+#: ../../mod/settings.php:989 ../../mod/settings.php:995
+#: ../../mod/settings.php:1025 ../../mod/settings.php:1026
+#: ../../mod/settings.php:1027 ../../mod/settings.php:1028
+#: ../../mod/settings.php:1029 ../../mod/dfrn_request.php:836
#: ../../mod/suggest.php:29 ../../mod/message.php:209
msgid "Yes"
msgstr ""
#: ../../include/items.php:4001 ../../include/conversation.php:1080
-#: ../../mod/contacts.php:249 ../../mod/settings.php:563
-#: ../../mod/settings.php:589 ../../mod/dfrn_request.php:848
+#: ../../mod/contacts.php:249 ../../mod/settings.php:581
+#: ../../mod/settings.php:607 ../../mod/dfrn_request.php:848
#: ../../mod/suggest.php:32 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81
#: ../../mod/fbrowser.php:116 ../../mod/message.php:212
@@ -1161,13 +1161,13 @@ msgid "Cancel"
msgstr ""
#: ../../include/items.php:4121 ../../mod/profiles.php:146
-#: ../../mod/profiles.php:571 ../../mod/notes.php:20 ../../mod/nogroup.php:25
-#: ../../mod/item.php:140 ../../mod/item.php:156 ../../mod/allfriends.php:9
-#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/register.php:40
-#: ../../mod/regmod.php:118 ../../mod/attach.php:33 ../../mod/contacts.php:147
-#: ../../mod/settings.php:91 ../../mod/settings.php:544
-#: ../../mod/settings.php:549 ../../mod/crepair.php:115
-#: ../../mod/delegate.php:6 ../../mod/poke.php:135
+#: ../../mod/profiles.php:571 ../../mod/notes.php:20 ../../mod/display.php:242
+#: ../../mod/nogroup.php:25 ../../mod/item.php:140 ../../mod/item.php:156
+#: ../../mod/allfriends.php:9 ../../mod/api.php:26 ../../mod/api.php:31
+#: ../../mod/register.php:40 ../../mod/regmod.php:118 ../../mod/attach.php:33
+#: ../../mod/contacts.php:147 ../../mod/settings.php:91
+#: ../../mod/settings.php:562 ../../mod/settings.php:567
+#: ../../mod/crepair.php:115 ../../mod/delegate.php:6 ../../mod/poke.php:135
#: ../../mod/dfrn_confirm.php:53 ../../mod/suggest.php:56
#: ../../mod/editpost.php:10 ../../mod/events.php:140 ../../mod/uimport.php:23
#: ../../mod/follow.php:9 ../../mod/fsuggest.php:78 ../../mod/group.php:19
@@ -1179,10 +1179,9 @@ msgstr ""
#: ../../mod/message.php:38 ../../mod/message.php:174 ../../mod/mood.php:114
#: ../../mod/network.php:6 ../../mod/notifications.php:66
#: ../../mod/photos.php:133 ../../mod/photos.php:1044
-#: ../../mod/display.php:209 ../../mod/install.php:151
-#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
-#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
-#: ../../index.php:346
+#: ../../mod/install.php:151 ../../mod/profile_photo.php:19
+#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180
+#: ../../mod/profile_photo.php:193 ../../index.php:346
msgid "Permission denied."
msgstr ""
@@ -1549,7 +1548,7 @@ msgid "Select"
msgstr ""
#: ../../include/conversation.php:588 ../../mod/admin.php:770
-#: ../../mod/settings.php:625 ../../mod/group.php:171
+#: ../../mod/settings.php:643 ../../mod/group.php:171
#: ../../mod/photos.php:1637 ../../mod/content.php:462
#: ../../mod/content.php:764 ../../object/Item.php:127
msgid "Delete"
@@ -2235,35 +2234,31 @@ msgstr ""
msgid "Error! No version data in file! This is not a Friendica account file?"
msgstr ""
-#: ../../include/uimport.php:105
-msgid "Error! I can't import this file: DB schema version is not compatible."
-msgstr ""
-
-#: ../../include/uimport.php:114
+#: ../../include/uimport.php:116
msgid "Error! Cannot check nickname"
msgstr ""
-#: ../../include/uimport.php:118
+#: ../../include/uimport.php:120
#, php-format
msgid "User '%s' already exists on this server!"
msgstr ""
-#: ../../include/uimport.php:137
+#: ../../include/uimport.php:139
msgid "User creation error"
msgstr ""
-#: ../../include/uimport.php:155
+#: ../../include/uimport.php:157
msgid "User profile creation error"
msgstr ""
-#: ../../include/uimport.php:200
+#: ../../include/uimport.php:202
#, php-format
msgid "%d contact not imported"
msgid_plural "%d contacts not imported"
msgstr[0] ""
msgstr[1] ""
-#: ../../include/uimport.php:270
+#: ../../include/uimport.php:272
msgid "Done. You can now login with your username and password"
msgstr ""
@@ -2395,13 +2390,13 @@ msgid "Hide your contact/friend list from viewers of this profile?"
msgstr ""
#: ../../mod/profiles.php:611 ../../mod/api.php:106 ../../mod/register.php:240
-#: ../../mod/settings.php:936 ../../mod/settings.php:942
-#: ../../mod/settings.php:950 ../../mod/settings.php:954
-#: ../../mod/settings.php:959 ../../mod/settings.php:965
-#: ../../mod/settings.php:971 ../../mod/settings.php:977
-#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
-#: ../../mod/settings.php:1009 ../../mod/settings.php:1010
-#: ../../mod/settings.php:1011 ../../mod/dfrn_request.php:837
+#: ../../mod/settings.php:954 ../../mod/settings.php:960
+#: ../../mod/settings.php:968 ../../mod/settings.php:972
+#: ../../mod/settings.php:977 ../../mod/settings.php:983
+#: ../../mod/settings.php:989 ../../mod/settings.php:995
+#: ../../mod/settings.php:1025 ../../mod/settings.php:1026
+#: ../../mod/settings.php:1027 ../../mod/settings.php:1028
+#: ../../mod/settings.php:1029 ../../mod/dfrn_request.php:837
msgid "No"
msgstr ""
@@ -2411,9 +2406,9 @@ msgstr ""
#: ../../mod/profiles.php:630 ../../mod/admin.php:491 ../../mod/admin.php:763
#: ../../mod/admin.php:902 ../../mod/admin.php:1102 ../../mod/admin.php:1189
-#: ../../mod/contacts.php:386 ../../mod/settings.php:562
-#: ../../mod/settings.php:672 ../../mod/settings.php:741
-#: ../../mod/settings.php:813 ../../mod/settings.php:1039
+#: ../../mod/contacts.php:386 ../../mod/settings.php:580
+#: ../../mod/settings.php:690 ../../mod/settings.php:759
+#: ../../mod/settings.php:831 ../../mod/settings.php:1057
#: ../../mod/crepair.php:166 ../../mod/poke.php:199 ../../mod/events.php:478
#: ../../mod/fsuggest.php:107 ../../mod/group.php:87 ../../mod/invite.php:140
#: ../../mod/localtime.php:45 ../../mod/manage.php:110
@@ -2637,6 +2632,21 @@ msgstr ""
msgid "Personal Notes"
msgstr ""
+#: ../../mod/display.php:19 ../../mod/search.php:89
+#: ../../mod/dfrn_request.php:761 ../../mod/directory.php:31
+#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:914
+#: ../../mod/community.php:18
+msgid "Public access denied."
+msgstr ""
+
+#: ../../mod/display.php:99 ../../mod/profile.php:155
+msgid "Access to this profile has been restricted."
+msgstr ""
+
+#: ../../mod/display.php:239
+msgid "Item has been removed."
+msgstr ""
+
#: ../../mod/nogroup.php:40 ../../mod/contacts.php:395
#: ../../mod/contacts.php:585 ../../mod/viewcontacts.php:62
#, php-format
@@ -2790,7 +2800,7 @@ msgstr ""
msgid "Site settings updated."
msgstr ""
-#: ../../mod/admin.php:434 ../../mod/settings.php:771
+#: ../../mod/admin.php:434 ../../mod/settings.php:789
msgid "No special theme for mobile devices"
msgstr ""
@@ -3333,8 +3343,8 @@ msgstr ""
msgid "Request date"
msgstr ""
-#: ../../mod/admin.php:766 ../../mod/admin.php:777 ../../mod/settings.php:564
-#: ../../mod/settings.php:590 ../../mod/crepair.php:148
+#: ../../mod/admin.php:766 ../../mod/admin.php:777 ../../mod/settings.php:582
+#: ../../mod/settings.php:608 ../../mod/crepair.php:148
msgid "Name"
msgstr ""
@@ -3540,13 +3550,6 @@ msgstr ""
msgid "Remove term"
msgstr ""
-#: ../../mod/search.php:89 ../../mod/dfrn_request.php:761
-#: ../../mod/directory.php:31 ../../mod/viewcontacts.php:17
-#: ../../mod/photos.php:914 ../../mod/display.php:19
-#: ../../mod/community.php:18
-msgid "Public access denied."
-msgstr ""
-
#: ../../mod/search.php:180 ../../mod/search.php:206
#: ../../mod/community.php:61 ../../mod/community.php:89
msgid "No results."
@@ -4068,7 +4071,7 @@ msgstr ""
msgid "Missing some important data!"
msgstr ""
-#: ../../mod/settings.php:121 ../../mod/settings.php:588
+#: ../../mod/settings.php:121 ../../mod/settings.php:606
msgid "Update"
msgstr ""
@@ -4084,510 +4087,530 @@ msgstr ""
msgid "Features updated"
msgstr ""
-#: ../../mod/settings.php:307
+#: ../../mod/settings.php:308
msgid "Passwords do not match. Password unchanged."
msgstr ""
-#: ../../mod/settings.php:312
+#: ../../mod/settings.php:313
msgid "Empty passwords are not allowed. Password unchanged."
msgstr ""
-#: ../../mod/settings.php:323
+#: ../../mod/settings.php:321
+msgid "Wrong password."
+msgstr ""
+
+#: ../../mod/settings.php:332
msgid "Password changed."
msgstr ""
-#: ../../mod/settings.php:325
+#: ../../mod/settings.php:334
msgid "Password update failed. Please try again."
msgstr ""
-#: ../../mod/settings.php:390
+#: ../../mod/settings.php:399
msgid " Please use a shorter name."
msgstr ""
-#: ../../mod/settings.php:392
+#: ../../mod/settings.php:401
msgid " Name too short."
msgstr ""
-#: ../../mod/settings.php:398
+#: ../../mod/settings.php:410
+msgid "Wrong Password"
+msgstr ""
+
+#: ../../mod/settings.php:415
msgid " Not valid email."
msgstr ""
-#: ../../mod/settings.php:400
+#: ../../mod/settings.php:418
msgid " Cannot change to that email."
msgstr ""
-#: ../../mod/settings.php:454
+#: ../../mod/settings.php:472
msgid "Private forum has no privacy permissions. Using default privacy group."
msgstr ""
-#: ../../mod/settings.php:458
+#: ../../mod/settings.php:476
msgid "Private forum has no privacy permissions and no default privacy group."
msgstr ""
-#: ../../mod/settings.php:488
+#: ../../mod/settings.php:506
msgid "Settings updated."
msgstr ""
-#: ../../mod/settings.php:561 ../../mod/settings.php:587
-#: ../../mod/settings.php:623
+#: ../../mod/settings.php:579 ../../mod/settings.php:605
+#: ../../mod/settings.php:641
msgid "Add application"
msgstr ""
-#: ../../mod/settings.php:565 ../../mod/settings.php:591
+#: ../../mod/settings.php:583 ../../mod/settings.php:609
msgid "Consumer Key"
msgstr ""
-#: ../../mod/settings.php:566 ../../mod/settings.php:592
+#: ../../mod/settings.php:584 ../../mod/settings.php:610
msgid "Consumer Secret"
msgstr ""
-#: ../../mod/settings.php:567 ../../mod/settings.php:593
+#: ../../mod/settings.php:585 ../../mod/settings.php:611
msgid "Redirect"
msgstr ""
-#: ../../mod/settings.php:568 ../../mod/settings.php:594
+#: ../../mod/settings.php:586 ../../mod/settings.php:612
msgid "Icon url"
msgstr ""
-#: ../../mod/settings.php:579
+#: ../../mod/settings.php:597
msgid "You can't edit this application."
msgstr ""
-#: ../../mod/settings.php:622
+#: ../../mod/settings.php:640
msgid "Connected Apps"
msgstr ""
-#: ../../mod/settings.php:624 ../../mod/editpost.php:109
+#: ../../mod/settings.php:642 ../../mod/editpost.php:109
#: ../../mod/content.php:751 ../../object/Item.php:117
msgid "Edit"
msgstr ""
-#: ../../mod/settings.php:626
+#: ../../mod/settings.php:644
msgid "Client key starts with"
msgstr ""
-#: ../../mod/settings.php:627
+#: ../../mod/settings.php:645
msgid "No name"
msgstr ""
-#: ../../mod/settings.php:628
+#: ../../mod/settings.php:646
msgid "Remove authorization"
msgstr ""
-#: ../../mod/settings.php:640
+#: ../../mod/settings.php:658
msgid "No Plugin settings configured"
msgstr ""
-#: ../../mod/settings.php:648
+#: ../../mod/settings.php:666
msgid "Plugin Settings"
msgstr ""
-#: ../../mod/settings.php:662
+#: ../../mod/settings.php:680
msgid "Off"
msgstr ""
-#: ../../mod/settings.php:662
+#: ../../mod/settings.php:680
msgid "On"
msgstr ""
-#: ../../mod/settings.php:670
+#: ../../mod/settings.php:688
msgid "Additional Features"
msgstr ""
-#: ../../mod/settings.php:683 ../../mod/settings.php:684
+#: ../../mod/settings.php:701 ../../mod/settings.php:702
#, php-format
msgid "Built-in support for %s connectivity is %s"
msgstr ""
-#: ../../mod/settings.php:683 ../../mod/settings.php:684
+#: ../../mod/settings.php:701 ../../mod/settings.php:702
msgid "enabled"
msgstr ""
-#: ../../mod/settings.php:683 ../../mod/settings.php:684
+#: ../../mod/settings.php:701 ../../mod/settings.php:702
msgid "disabled"
msgstr ""
-#: ../../mod/settings.php:684
+#: ../../mod/settings.php:702
msgid "StatusNet"
msgstr ""
-#: ../../mod/settings.php:716
+#: ../../mod/settings.php:734
msgid "Email access is disabled on this site."
msgstr ""
-#: ../../mod/settings.php:723
+#: ../../mod/settings.php:741
msgid "Connector Settings"
msgstr ""
-#: ../../mod/settings.php:728
+#: ../../mod/settings.php:746
msgid "Email/Mailbox Setup"
msgstr ""
-#: ../../mod/settings.php:729
+#: ../../mod/settings.php:747
msgid ""
"If you wish to communicate with email contacts using this service "
"(optional), please specify how to connect to your mailbox."
msgstr ""
-#: ../../mod/settings.php:730
+#: ../../mod/settings.php:748
msgid "Last successful email check:"
msgstr ""
-#: ../../mod/settings.php:732
+#: ../../mod/settings.php:750
msgid "IMAP server name:"
msgstr ""
-#: ../../mod/settings.php:733
+#: ../../mod/settings.php:751
msgid "IMAP port:"
msgstr ""
-#: ../../mod/settings.php:734
+#: ../../mod/settings.php:752
msgid "Security:"
msgstr ""
-#: ../../mod/settings.php:734 ../../mod/settings.php:739
+#: ../../mod/settings.php:752 ../../mod/settings.php:757
msgid "None"
msgstr ""
-#: ../../mod/settings.php:735
+#: ../../mod/settings.php:753
msgid "Email login name:"
msgstr ""
-#: ../../mod/settings.php:736
+#: ../../mod/settings.php:754
msgid "Email password:"
msgstr ""
-#: ../../mod/settings.php:737
+#: ../../mod/settings.php:755
msgid "Reply-to address:"
msgstr ""
-#: ../../mod/settings.php:738
+#: ../../mod/settings.php:756
msgid "Send public posts to all email contacts:"
msgstr ""
-#: ../../mod/settings.php:739
+#: ../../mod/settings.php:757
msgid "Action after import:"
msgstr ""
-#: ../../mod/settings.php:739
+#: ../../mod/settings.php:757
msgid "Mark as seen"
msgstr ""
-#: ../../mod/settings.php:739
+#: ../../mod/settings.php:757
msgid "Move to folder"
msgstr ""
-#: ../../mod/settings.php:740
+#: ../../mod/settings.php:758
msgid "Move to folder:"
msgstr ""
-#: ../../mod/settings.php:811
+#: ../../mod/settings.php:829
msgid "Display Settings"
msgstr ""
-#: ../../mod/settings.php:817 ../../mod/settings.php:828
+#: ../../mod/settings.php:835 ../../mod/settings.php:846
msgid "Display Theme:"
msgstr ""
-#: ../../mod/settings.php:818
+#: ../../mod/settings.php:836
msgid "Mobile Theme:"
msgstr ""
-#: ../../mod/settings.php:819
+#: ../../mod/settings.php:837
msgid "Update browser every xx seconds"
msgstr ""
-#: ../../mod/settings.php:819
+#: ../../mod/settings.php:837
msgid "Minimum of 10 seconds, no maximum"
msgstr ""
-#: ../../mod/settings.php:820
+#: ../../mod/settings.php:838
msgid "Number of items to display per page:"
msgstr ""
-#: ../../mod/settings.php:820
+#: ../../mod/settings.php:838
msgid "Maximum of 100 items"
msgstr ""
-#: ../../mod/settings.php:821
+#: ../../mod/settings.php:839
msgid "Don't show emoticons"
msgstr ""
-#: ../../mod/settings.php:897
+#: ../../mod/settings.php:915
msgid "Normal Account Page"
msgstr ""
-#: ../../mod/settings.php:898
+#: ../../mod/settings.php:916
msgid "This account is a normal personal profile"
msgstr ""
-#: ../../mod/settings.php:901
+#: ../../mod/settings.php:919
msgid "Soapbox Page"
msgstr ""
-#: ../../mod/settings.php:902
+#: ../../mod/settings.php:920
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr ""
-#: ../../mod/settings.php:905
+#: ../../mod/settings.php:923
msgid "Community Forum/Celebrity Account"
msgstr ""
-#: ../../mod/settings.php:906
+#: ../../mod/settings.php:924
msgid "Automatically approve all connection/friend requests as read-write fans"
msgstr ""
-#: ../../mod/settings.php:909
+#: ../../mod/settings.php:927
msgid "Automatic Friend Page"
msgstr ""
-#: ../../mod/settings.php:910
+#: ../../mod/settings.php:928
msgid "Automatically approve all connection/friend requests as friends"
msgstr ""
-#: ../../mod/settings.php:913
+#: ../../mod/settings.php:931
msgid "Private Forum [Experimental]"
msgstr ""
-#: ../../mod/settings.php:914
+#: ../../mod/settings.php:932
msgid "Private forum - approved members only"
msgstr ""
-#: ../../mod/settings.php:926
+#: ../../mod/settings.php:944
msgid "OpenID:"
msgstr ""
-#: ../../mod/settings.php:926
+#: ../../mod/settings.php:944
msgid "(Optional) Allow this OpenID to login to this account."
msgstr ""
-#: ../../mod/settings.php:936
+#: ../../mod/settings.php:954
msgid "Publish your default profile in your local site directory?"
msgstr ""
-#: ../../mod/settings.php:942
+#: ../../mod/settings.php:960
msgid "Publish your default profile in the global social directory?"
msgstr ""
-#: ../../mod/settings.php:950
+#: ../../mod/settings.php:968
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr ""
-#: ../../mod/settings.php:954
+#: ../../mod/settings.php:972
msgid "Hide your profile details from unknown viewers?"
msgstr ""
-#: ../../mod/settings.php:959
+#: ../../mod/settings.php:977
msgid "Allow friends to post to your profile page?"
msgstr ""
-#: ../../mod/settings.php:965
+#: ../../mod/settings.php:983
msgid "Allow friends to tag your posts?"
msgstr ""
-#: ../../mod/settings.php:971
+#: ../../mod/settings.php:989
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr ""
-#: ../../mod/settings.php:977
+#: ../../mod/settings.php:995
msgid "Permit unknown people to send you private mail?"
msgstr ""
-#: ../../mod/settings.php:985
+#: ../../mod/settings.php:1003
msgid "Profile is not published ."
msgstr ""
-#: ../../mod/settings.php:988 ../../mod/profile_photo.php:248
+#: ../../mod/settings.php:1006 ../../mod/profile_photo.php:248
msgid "or"
msgstr ""
-#: ../../mod/settings.php:993
+#: ../../mod/settings.php:1011
msgid "Your Identity Address is"
msgstr ""
-#: ../../mod/settings.php:1004
+#: ../../mod/settings.php:1022
msgid "Automatically expire posts after this many days:"
msgstr ""
-#: ../../mod/settings.php:1004
+#: ../../mod/settings.php:1022
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr ""
-#: ../../mod/settings.php:1005
+#: ../../mod/settings.php:1023
msgid "Advanced expiration settings"
msgstr ""
-#: ../../mod/settings.php:1006
+#: ../../mod/settings.php:1024
msgid "Advanced Expiration"
msgstr ""
-#: ../../mod/settings.php:1007
+#: ../../mod/settings.php:1025
msgid "Expire posts:"
msgstr ""
-#: ../../mod/settings.php:1008
+#: ../../mod/settings.php:1026
msgid "Expire personal notes:"
msgstr ""
-#: ../../mod/settings.php:1009
+#: ../../mod/settings.php:1027
msgid "Expire starred posts:"
msgstr ""
-#: ../../mod/settings.php:1010
+#: ../../mod/settings.php:1028
msgid "Expire photos:"
msgstr ""
-#: ../../mod/settings.php:1011
+#: ../../mod/settings.php:1029
msgid "Only expire posts by others:"
msgstr ""
-#: ../../mod/settings.php:1037
+#: ../../mod/settings.php:1055
msgid "Account Settings"
msgstr ""
-#: ../../mod/settings.php:1045
+#: ../../mod/settings.php:1063
msgid "Password Settings"
msgstr ""
-#: ../../mod/settings.php:1046
+#: ../../mod/settings.php:1064
msgid "New Password:"
msgstr ""
-#: ../../mod/settings.php:1047
+#: ../../mod/settings.php:1065
msgid "Confirm:"
msgstr ""
-#: ../../mod/settings.php:1047
+#: ../../mod/settings.php:1065
msgid "Leave password fields blank unless changing"
msgstr ""
-#: ../../mod/settings.php:1051
+#: ../../mod/settings.php:1066
+msgid "Current Password:"
+msgstr ""
+
+#: ../../mod/settings.php:1066 ../../mod/settings.php:1067
+msgid "Your current password to confirm the changes"
+msgstr ""
+
+#: ../../mod/settings.php:1067
+msgid "Password:"
+msgstr ""
+
+#: ../../mod/settings.php:1071
msgid "Basic Settings"
msgstr ""
-#: ../../mod/settings.php:1053
+#: ../../mod/settings.php:1073
msgid "Email Address:"
msgstr ""
-#: ../../mod/settings.php:1054
+#: ../../mod/settings.php:1074
msgid "Your Timezone:"
msgstr ""
-#: ../../mod/settings.php:1055
+#: ../../mod/settings.php:1075
msgid "Default Post Location:"
msgstr ""
-#: ../../mod/settings.php:1056
+#: ../../mod/settings.php:1076
msgid "Use Browser Location:"
msgstr ""
-#: ../../mod/settings.php:1059
+#: ../../mod/settings.php:1079
msgid "Security and Privacy Settings"
msgstr ""
-#: ../../mod/settings.php:1061
+#: ../../mod/settings.php:1081
msgid "Maximum Friend Requests/Day:"
msgstr ""
-#: ../../mod/settings.php:1061 ../../mod/settings.php:1091
+#: ../../mod/settings.php:1081 ../../mod/settings.php:1111
msgid "(to prevent spam abuse)"
msgstr ""
-#: ../../mod/settings.php:1062
+#: ../../mod/settings.php:1082
msgid "Default Post Permissions"
msgstr ""
-#: ../../mod/settings.php:1063
+#: ../../mod/settings.php:1083
msgid "(click to open/close)"
msgstr ""
-#: ../../mod/settings.php:1072 ../../mod/photos.php:1140
+#: ../../mod/settings.php:1092 ../../mod/photos.php:1140
#: ../../mod/photos.php:1506
msgid "Show to Groups"
msgstr ""
-#: ../../mod/settings.php:1073 ../../mod/photos.php:1141
+#: ../../mod/settings.php:1093 ../../mod/photos.php:1141
#: ../../mod/photos.php:1507
msgid "Show to Contacts"
msgstr ""
-#: ../../mod/settings.php:1074
+#: ../../mod/settings.php:1094
msgid "Default Private Post"
msgstr ""
-#: ../../mod/settings.php:1075
+#: ../../mod/settings.php:1095
msgid "Default Public Post"
msgstr ""
-#: ../../mod/settings.php:1079
+#: ../../mod/settings.php:1099
msgid "Default Permissions for New Posts"
msgstr ""
-#: ../../mod/settings.php:1091
+#: ../../mod/settings.php:1111
msgid "Maximum private messages per day from unknown people:"
msgstr ""
-#: ../../mod/settings.php:1094
+#: ../../mod/settings.php:1114
msgid "Notification Settings"
msgstr ""
-#: ../../mod/settings.php:1095
+#: ../../mod/settings.php:1115
msgid "By default post a status message when:"
msgstr ""
-#: ../../mod/settings.php:1096
+#: ../../mod/settings.php:1116
msgid "accepting a friend request"
msgstr ""
-#: ../../mod/settings.php:1097
+#: ../../mod/settings.php:1117
msgid "joining a forum/community"
msgstr ""
-#: ../../mod/settings.php:1098
+#: ../../mod/settings.php:1118
msgid "making an interesting profile change"
msgstr ""
-#: ../../mod/settings.php:1099
+#: ../../mod/settings.php:1119
msgid "Send a notification email when:"
msgstr ""
-#: ../../mod/settings.php:1100
+#: ../../mod/settings.php:1120
msgid "You receive an introduction"
msgstr ""
-#: ../../mod/settings.php:1101
+#: ../../mod/settings.php:1121
msgid "Your introductions are confirmed"
msgstr ""
-#: ../../mod/settings.php:1102
+#: ../../mod/settings.php:1122
msgid "Someone writes on your profile wall"
msgstr ""
-#: ../../mod/settings.php:1103
+#: ../../mod/settings.php:1123
msgid "Someone writes a followup comment"
msgstr ""
-#: ../../mod/settings.php:1104
+#: ../../mod/settings.php:1124
msgid "You receive a private message"
msgstr ""
-#: ../../mod/settings.php:1105
+#: ../../mod/settings.php:1125
msgid "You receive a friend suggestion"
msgstr ""
-#: ../../mod/settings.php:1106
+#: ../../mod/settings.php:1126
msgid "You are tagged in a post"
msgstr ""
-#: ../../mod/settings.php:1107
+#: ../../mod/settings.php:1127
msgid "You are poked/prodded/etc. in a post"
msgstr ""
-#: ../../mod/settings.php:1110
+#: ../../mod/settings.php:1130
msgid "Advanced Account/Page Type Settings"
msgstr ""
-#: ../../mod/settings.php:1111
+#: ../../mod/settings.php:1131
msgid "Change the behaviour of this account for special situations"
msgstr ""
@@ -6303,18 +6326,10 @@ msgstr ""
msgid "Requested profile is not available."
msgstr ""
-#: ../../mod/profile.php:155 ../../mod/display.php:99
-msgid "Access to this profile has been restricted."
-msgstr ""
-
#: ../../mod/profile.php:180
msgid "Tips for New Members"
msgstr ""
-#: ../../mod/display.php:206
-msgid "Item has been removed."
-msgstr ""
-
#: ../../mod/install.php:117
msgid "Friendica Social Communications Server - Setup"
msgstr ""
From ddf1caf0fd9ea4fc97147ba7b45587bcf7a6fab4 Mon Sep 17 00:00:00 2001
From: Fabrixxm
Date: Wed, 27 Mar 2013 10:37:59 -0400
Subject: [PATCH 22/67] template engine rework - use smarty3 as default engine
- new pluggable template engine system
---
boot.php | 74 ++++++++++++++++++++++++++++++++--
include/friendica_smarty.php | 32 +++++++++++++--
include/template_processor.php | 21 +++++++---
include/text.php | 32 +++++----------
object/TemplateEngine.php | 11 +++++
5 files changed, 136 insertions(+), 34 deletions(-)
create mode 100644 object/TemplateEngine.php
diff --git a/boot.php b/boot.php
index 0475f6ab3..477b8331c 100644
--- a/boot.php
+++ b/boot.php
@@ -385,6 +385,11 @@ if(! class_exists('App')) {
'stylesheet' => '',
'template_engine' => 'internal',
);
+
+ // array of registered template engines ('name'=>'class name')
+ public $template_engines = array();
+ // array of instanced template engines ('name'=>'instance')
+ public $template_engine_instance = array();
private $ldelim = array(
'internal' => '',
@@ -539,6 +544,17 @@ if(! class_exists('App')) {
$mobile_detect = new Mobile_Detect();
$this->is_mobile = $mobile_detect->isMobile();
$this->is_tablet = $mobile_detect->isTablet();
+
+ /**
+ * register template engines
+ */
+ $dc = get_declared_classes();
+ foreach ($dc as $k) {
+ if (in_array("ITemplateEngine", class_implements($k))){
+ $this->register_template_engine($k);
+ }
+ }
+
}
function get_basepath() {
@@ -712,13 +728,63 @@ if(! class_exists('App')) {
return $this->cached_profile_image[$avatar_image];
}
+
+ /**
+ * register template engine class
+ * if $name is "", is used class static property $class::$name
+ * @param string $class
+ * @param string $name
+ */
+ function register_template_engine($class, $name = '') {
+ if ($name===""){
+ $v = get_class_vars( $class );
+ if(x($v,"name")) $name = $v['name'];
+ }
+ if ($name===""){
+ echo "template engine $class cannot be registered without a name.\n";
+ killme();
+ }
+ $this->template_engines[$name] = $class;
+ }
+
+ /**
+ * return template engine instance. If $name is not defined,
+ * return engine defined by theme, or default
+ *
+ * @param strin $name Template engine name
+ * @return object Template Engine instance
+ */
+ function template_engine($name = ''){
+
+ if ($name!=="") {
+ $template_engine = $name;
+ } else {
+ $template_engine = 'smarty3';
+ if (x($this->theme, 'template_engine')) {
+ $template_engine = $this->theme['template_engine'];
+ }
+ }
+ if (isset($this->template_engines[$template_engine])){
+ if(isset($this->template_engine_instance[$template_engine])){
+ return $this->template_engine_instance[$template_engine];
+ } else {
+ $class = $this->template_engines[$template_engine];
+ $obj = new $class;
+ $this->template_engine_instance[$template_engine] = $obj;
+ return $obj;
+ }
+ }
+
+ echo "template engine $template_engine is not registered!\n"; killme();
+ }
+
function get_template_engine() {
return $this->theme['template_engine'];
}
- function set_template_engine($engine = 'internal') {
+ function set_template_engine($engine = 'smarty3') {
- $this->theme['template_engine'] = 'internal';
+ $this->theme['template_engine'] = 'smarty3';
switch($engine) {
case 'smarty3':
@@ -730,11 +796,11 @@ if(! class_exists('App')) {
}
}
- function get_template_ldelim($engine = 'internal') {
+ function get_template_ldelim($engine = 'smarty3') {
return $this->ldelim[$engine];
}
- function get_template_rdelim($engine = 'internal') {
+ function get_template_rdelim($engine = 'smarty3') {
return $this->rdelim[$engine];
}
diff --git a/include/friendica_smarty.php b/include/friendica_smarty.php
index b3f0d18a0..f9d91a827 100644
--- a/include/friendica_smarty.php
+++ b/include/friendica_smarty.php
@@ -1,9 +1,9 @@
fetch('file:' . $this->filename);
}
+
+
}
-
-
+class FriendicaSmartyEngine implements ITemplateEngine {
+ static $name ="smarty3";
+ // ITemplateEngine interface
+ public function replace_macros($s, $r) {
+ $template = '';
+ if(gettype($s) === 'string') {
+ $template = $s;
+ $s = new FriendicaSmarty();
+ }
+ foreach($r as $key=>$value) {
+ if($key[0] === '$') {
+ $key = substr($key, 1);
+ }
+ $s->assign($key, $value);
+ }
+ return $s->parsed($template);
+ }
+
+ public function get_template_file($file, $root=''){
+ $a = get_app();
+ $template_file = get_template_file($a, 'smarty3/' . $file, $root);
+ $template = new FriendicaSmarty();
+ $template->filename = $template_file;
+ return $template;
+ }
+}
diff --git a/include/template_processor.php b/include/template_processor.php
index ebc03b8d8..49d37488f 100644
--- a/include/template_processor.php
+++ b/include/template_processor.php
@@ -1,9 +1,11 @@
r = $r;
// remove comments block
@@ -276,12 +279,18 @@ class Template {
$count++;
$s = $this->var_replace($s);
}
- return $s;
+ return template_unescape($s);
}
-
+
+ public function get_template_file($file, $root='') {
+ $a = get_app();
+ $template_file = get_template_file($a, $file, $root);
+ $content = file_get_contents($template_file);
+ return $content;
+ }
+
}
-$t = new Template;
function template_escape($s) {
diff --git a/include/text.php b/include/text.php
index 3d244c61f..628b4fc2d 100644
--- a/include/text.php
+++ b/include/text.php
@@ -15,39 +15,20 @@ if(! function_exists('replace_macros')) {
/**
* This is our template processor
*
- * @global Template $t
* @param string|FriendicaSmarty $s the string requiring macro substitution,
* or an instance of FriendicaSmarty
* @param array $r key value pairs (search => replace)
* @return string substituted string
*/
function replace_macros($s,$r) {
- global $t;
$stamp1 = microtime(true);
$a = get_app();
- if($a->theme['template_engine'] === 'smarty3') {
- $template = '';
- if(gettype($s) === 'string') {
- $template = $s;
- $s = new FriendicaSmarty();
- }
- foreach($r as $key=>$value) {
- if($key[0] === '$') {
- $key = substr($key, 1);
- }
- $s->assign($key, $value);
- }
- $output = $s->parsed($template);
- }
- else {
- $r = $t->replace($s,$r);
+ $t = $a->template_engine();
+ $output = $t->replace_macros($s,$r);
- $output = template_unescape($r);
- }
- $a = get_app();
$a->save_timestamp($stamp1, "rendering");
return $output;
@@ -582,6 +563,14 @@ function get_markup_template($s, $root = '') {
$stamp1 = microtime(true);
$a = get_app();
+ $t = $a->template_engine();
+
+ $template = $t->get_template_file($s, $root);
+
+ $a->save_timestamp($stamp1, "file");
+
+ return $template;
+ /*
if($a->theme['template_engine'] === 'smarty3') {
$template_file = get_template_file($a, 'smarty3/' . $s, $root);
@@ -602,6 +591,7 @@ function get_markup_template($s, $root = '') {
return $content;
}
+ */
}}
if(! function_exists("get_template_file")) {
diff --git a/object/TemplateEngine.php b/object/TemplateEngine.php
new file mode 100644
index 000000000..cbd74aaec
--- /dev/null
+++ b/object/TemplateEngine.php
@@ -0,0 +1,11 @@
+
Date: Wed, 27 Mar 2013 10:41:23 -0400
Subject: [PATCH 23/67] template: remove old 'internal' template files, move
smarty3 templates into 'templates' subdir
---
include/friendica_smarty.php | 10 +-
view/404.tpl | 1 -
view/acl_selector.tpl | 26 --
view/admin_aside.tpl | 42 --
view/admin_logs.tpl | 19 -
view/admin_plugins.tpl | 15 -
view/admin_plugins_details.tpl | 36 --
view/admin_remoteupdate.tpl | 98 -----
view/admin_site.tpl | 116 ------
view/admin_summary.tpl | 40 --
view/admin_users.tpl | 98 -----
view/album_edit.tpl | 15 -
view/api_config_xml.tpl | 66 ---
view/api_friends_xml.tpl | 7 -
view/api_ratelimit_xml.tpl | 6 -
view/api_status_xml.tpl | 46 ---
view/api_test_xml.tpl | 1 -
view/api_timeline_atom.tpl | 90 -----
view/api_timeline_rss.tpl | 26 --
view/api_timeline_xml.tpl | 20 -
view/api_user_xml.tpl | 46 ---
view/apps.tpl | 7 -
view/atom_feed.tpl | 29 --
view/atom_feed_dfrn.tpl | 29 --
view/atom_mail.tpl | 17 -
view/atom_relocate.tpl | 17 -
view/atom_suggest.tpl | 11 -
view/auto_request.tpl | 37 --
view/birthdays_reminder.tpl | 10 -
view/categories_widget.tpl | 12 -
view/comment_item.tpl | 39 --
view/common_friends.tpl | 12 -
view/common_tabs.tpl | 5 -
view/confirm.tpl | 14 -
view/contact_block.tpl | 12 -
view/contact_edit.tpl | 88 ----
view/contact_end.tpl | 0
view/contact_head.tpl | 30 --
view/contact_template.tpl | 31 --
view/contacts-end.tpl | 0
view/contacts-head.tpl | 17 -
view/contacts-template.tpl | 26 --
view/contacts-widget-sidebar.tpl | 6 -
view/content.tpl | 2 -
view/conversation.tpl | 29 --
view/crepair.tpl | 46 ---
view/cropbody.tpl | 58 ---
view/cropend.tpl | 0
view/crophead.tpl | 4 -
view/delegate.tpl | 57 ---
view/dfrn_req_confirm.tpl | 21 -
view/dfrn_request.tpl | 65 ---
view/diasp_dec_hdr.tpl | 8 -
view/diaspora_comment.tpl | 11 -
view/diaspora_comment_relay.tpl | 12 -
view/diaspora_conversation.tpl | 29 --
view/diaspora_like.tpl | 12 -
view/diaspora_like_relay.tpl | 13 -
view/diaspora_message.tpl | 13 -
view/diaspora_photo.tpl | 13 -
view/diaspora_post.tpl | 11 -
view/diaspora_profile.tpl | 16 -
view/diaspora_relay_retraction.tpl | 10 -
view/diaspora_relayable_retraction.tpl | 11 -
view/diaspora_retract.tpl | 9 -
view/diaspora_share.tpl | 8 -
view/diaspora_signed_retract.tpl | 10 -
view/diaspora_vcard.tpl | 57 ---
view/directory_header.tpl | 16 -
view/directory_item.tpl | 11 -
view/display-head.tpl | 8 -
view/email_notify_html.tpl | 30 --
view/email_notify_text.tpl | 16 -
view/end.tpl | 0
view/event.tpl | 10 -
view/event_end.tpl | 0
view/event_form.tpl | 49 ---
view/event_head.tpl | 139 -------
view/events-js.tpl | 6 -
view/events.tpl | 24 --
view/events_reminder.tpl | 10 -
view/failed_updates.tpl | 17 -
view/fake_feed.tpl | 13 -
view/field.tpl | 4 -
view/field_checkbox.tpl | 6 -
view/field_combobox.tpl | 18 -
view/field_custom.tpl | 6 -
view/field_input.tpl | 6 -
view/field_intcheckbox.tpl | 6 -
view/field_openid.tpl | 6 -
view/field_password.tpl | 6 -
view/field_radio.tpl | 6 -
view/field_richtext.tpl | 6 -
view/field_select.tpl | 8 -
view/field_select_raw.tpl | 8 -
view/field_textarea.tpl | 6 -
view/field_themeselect.tpl | 9 -
view/field_yesno.tpl | 13 -
view/fileas_widget.tpl | 12 -
view/filebrowser.tpl | 84 ----
view/filer_dialog.tpl | 4 -
view/follow.tpl | 8 -
view/follow_slap.tpl | 25 --
view/generic_links_widget.tpl | 11 -
view/group_drop.tpl | 9 -
view/group_edit.tpl | 23 --
view/group_selection.tpl | 8 -
view/group_side.tpl | 33 --
view/groupeditor.tpl | 16 -
view/head.tpl | 112 ------
view/hide_comments.tpl | 4 -
view/install.tpl | 10 -
view/install_checks.tpl | 24 --
view/install_db.tpl | 30 --
view/install_settings.tpl | 25 --
view/intros.tpl | 28 --
view/invite.tpl | 30 --
view/jot-end.tpl | 0
view/jot-header.tpl | 322 ---------------
view/jot.tpl | 88 ----
view/jot_geotag.tpl | 8 -
view/lang_selector.tpl | 10 -
view/like_noshare.tpl | 7 -
view/login.tpl | 35 --
view/login_head.tpl | 0
view/logout.tpl | 6 -
view/lostpass.tpl | 18 -
view/magicsig.tpl | 9 -
view/mail_conv.tpl | 14 -
view/mail_display.tpl | 10 -
view/mail_head.tpl | 3 -
view/mail_list.tpl | 16 -
view/maintenance.tpl | 1 -
view/manage.tpl | 17 -
view/match.tpl | 16 -
view/message-end.tpl | 0
view/message-head.tpl | 17 -
view/message_side.tpl | 10 -
view/moderated_comment.tpl | 34 --
view/mood_content.tpl | 20 -
view/msg-end.tpl | 0
view/msg-header.tpl | 97 -----
view/nav.tpl | 68 ----
view/navigation.tpl | 103 -----
view/netfriend.tpl | 14 -
view/nets.tpl | 10 -
view/nogroup-template.tpl | 12 -
view/notifications.tpl | 8 -
view/notifications_comments_item.tpl | 3 -
view/notifications_dislikes_item.tpl | 3 -
view/notifications_friends_item.tpl | 3 -
view/notifications_likes_item.tpl | 3 -
view/notifications_network_item.tpl | 3 -
view/notifications_posts_item.tpl | 3 -
view/notify.tpl | 3 -
view/oauth_authorize.tpl | 10 -
view/oauth_authorize_done.tpl | 4 -
view/oembed_video.tpl | 4 -
view/oexchange_xrd.tpl | 33 --
view/opensearch.tpl | 13 -
view/pagetypes.tpl | 5 -
view/peoplefind.tpl | 14 -
view/photo_album.tpl | 7 -
view/photo_drop.tpl | 4 -
view/photo_edit.tpl | 50 ---
view/photo_edit_head.tpl | 11 -
view/photo_item.tpl | 22 -
view/photo_top.tpl | 8 -
view/photo_view.tpl | 37 --
view/photos_default_uploader_box.tpl | 1 -
view/photos_default_uploader_submit.tpl | 3 -
view/photos_head.tpl | 26 --
view/photos_recent.tpl | 11 -
view/photos_upload.tpl | 49 ---
view/poco_entry_xml.tpl | 7 -
view/poco_xml.tpl | 18 -
view/poke_content.tpl | 32 --
view/posted_date_widget.tpl | 9 -
view/profed_end.tpl | 0
view/profed_head.tpl | 38 --
view/profile-hide-friends.tpl | 16 -
view/profile-hide-wall.tpl | 16 -
view/profile-in-directory.tpl | 16 -
view/profile-in-netdir.tpl | 16 -
view/profile_advanced.tpl | 170 --------
view/profile_edit.tpl | 323 ---------------
view/profile_edlink.tpl | 2 -
view/profile_entry.tpl | 11 -
view/profile_listing_header.tpl | 8 -
view/profile_photo.tpl | 26 --
view/profile_publish.tpl | 16 -
view/profile_vcard.tpl | 50 ---
view/prv_message.tpl | 33 --
view/pwdreset.tpl | 17 -
view/register.tpl | 65 ---
view/remote_friends_common.tpl | 21 -
view/removeme.tpl | 20 -
view/saved_searches_aside.tpl | 14 -
view/search_item.tpl | 64 ---
view/settings-end.tpl | 0
view/settings-head.tpl | 25 --
view/settings.tpl | 147 -------
view/settings_addons.tpl | 10 -
view/settings_connectors.tpl | 35 --
view/settings_display.tpl | 22 -
view/settings_display_end.tpl | 0
view/settings_features.tpl | 20 -
view/settings_nick_set.tpl | 5 -
view/settings_nick_subdir.tpl | 6 -
view/settings_oauth.tpl | 31 --
view/settings_oauth_edit.tpl | 17 -
view/smarty3/404.tpl | 6 -
view/smarty3/acl_selector.tpl | 31 --
view/smarty3/admin_aside.tpl | 47 ---
view/smarty3/admin_logs.tpl | 24 --
view/smarty3/admin_plugins.tpl | 20 -
view/smarty3/admin_plugins_details.tpl | 41 --
view/smarty3/admin_remoteupdate.tpl | 103 -----
view/smarty3/admin_site.tpl | 121 ------
view/smarty3/admin_summary.tpl | 45 ---
view/smarty3/admin_users.tpl | 103 -----
view/smarty3/album_edit.tpl | 20 -
view/smarty3/api_config_xml.tpl | 71 ----
view/smarty3/api_friends_xml.tpl | 12 -
view/smarty3/api_ratelimit_xml.tpl | 11 -
view/smarty3/api_status_xml.tpl | 51 ---
view/smarty3/api_test_xml.tpl | 6 -
view/smarty3/api_timeline_atom.tpl | 95 -----
view/smarty3/api_timeline_rss.tpl | 31 --
view/smarty3/api_timeline_xml.tpl | 25 --
view/smarty3/api_user_xml.tpl | 51 ---
view/smarty3/apps.tpl | 12 -
view/smarty3/atom_feed.tpl | 34 --
view/smarty3/atom_feed_dfrn.tpl | 34 --
view/smarty3/atom_mail.tpl | 22 -
view/smarty3/atom_relocate.tpl | 22 -
view/smarty3/atom_suggest.tpl | 16 -
view/smarty3/auto_request.tpl | 42 --
view/smarty3/birthdays_reminder.tpl | 15 -
view/smarty3/categories_widget.tpl | 17 -
view/smarty3/comment_item.tpl | 44 --
view/smarty3/common_friends.tpl | 17 -
view/smarty3/common_tabs.tpl | 10 -
view/smarty3/confirm.tpl | 19 -
view/smarty3/contact_block.tpl | 17 -
view/smarty3/contact_edit.tpl | 93 -----
view/smarty3/contact_end.tpl | 5 -
view/smarty3/contact_head.tpl | 35 --
view/smarty3/contact_template.tpl | 36 --
view/smarty3/contacts-end.tpl | 5 -
view/smarty3/contacts-head.tpl | 22 -
view/smarty3/contacts-template.tpl | 31 --
view/smarty3/contacts-widget-sidebar.tpl | 11 -
view/smarty3/content.tpl | 7 -
view/smarty3/conversation.tpl | 34 --
view/smarty3/crepair.tpl | 51 ---
view/smarty3/cropbody.tpl | 63 ---
view/smarty3/cropend.tpl | 5 -
view/smarty3/crophead.tpl | 9 -
view/smarty3/delegate.tpl | 62 ---
view/smarty3/dfrn_req_confirm.tpl | 26 --
view/smarty3/dfrn_request.tpl | 70 ----
view/smarty3/diasp_dec_hdr.tpl | 13 -
view/smarty3/diaspora_comment.tpl | 16 -
view/smarty3/diaspora_comment_relay.tpl | 17 -
view/smarty3/diaspora_conversation.tpl | 34 --
view/smarty3/diaspora_like.tpl | 17 -
view/smarty3/diaspora_like_relay.tpl | 18 -
view/smarty3/diaspora_message.tpl | 18 -
view/smarty3/diaspora_photo.tpl | 18 -
view/smarty3/diaspora_post.tpl | 16 -
view/smarty3/diaspora_profile.tpl | 21 -
view/smarty3/diaspora_relay_retraction.tpl | 15 -
.../smarty3/diaspora_relayable_retraction.tpl | 16 -
view/smarty3/diaspora_retract.tpl | 14 -
view/smarty3/diaspora_share.tpl | 13 -
view/smarty3/diaspora_signed_retract.tpl | 15 -
view/smarty3/diaspora_vcard.tpl | 62 ---
view/smarty3/directory_header.tpl | 21 -
view/smarty3/directory_item.tpl | 16 -
view/smarty3/display-head.tpl | 13 -
view/smarty3/email_notify_html.tpl | 35 --
view/smarty3/email_notify_text.tpl | 21 -
view/smarty3/end.tpl | 5 -
view/smarty3/event.tpl | 15 -
view/smarty3/event_end.tpl | 5 -
view/smarty3/event_form.tpl | 54 ---
view/smarty3/event_head.tpl | 144 -------
view/smarty3/events-js.tpl | 11 -
view/smarty3/events.tpl | 29 --
view/smarty3/events_reminder.tpl | 15 -
view/smarty3/failed_updates.tpl | 22 -
view/smarty3/fake_feed.tpl | 18 -
view/smarty3/field.tpl | 9 -
view/smarty3/field_checkbox.tpl | 11 -
view/smarty3/field_combobox.tpl | 23 --
view/smarty3/field_custom.tpl | 11 -
view/smarty3/field_input.tpl | 11 -
view/smarty3/field_intcheckbox.tpl | 11 -
view/smarty3/field_openid.tpl | 11 -
view/smarty3/field_password.tpl | 11 -
view/smarty3/field_radio.tpl | 11 -
view/smarty3/field_richtext.tpl | 11 -
view/smarty3/field_select.tpl | 13 -
view/smarty3/field_select_raw.tpl | 13 -
view/smarty3/field_textarea.tpl | 11 -
view/smarty3/field_themeselect.tpl | 14 -
view/smarty3/field_yesno.tpl | 18 -
view/smarty3/fileas_widget.tpl | 17 -
view/smarty3/filebrowser.tpl | 89 ----
view/smarty3/filer_dialog.tpl | 9 -
view/smarty3/follow.tpl | 13 -
view/smarty3/follow_slap.tpl | 30 --
view/smarty3/generic_links_widget.tpl | 16 -
view/smarty3/group_drop.tpl | 14 -
view/smarty3/group_edit.tpl | 28 --
view/smarty3/group_selection.tpl | 13 -
view/smarty3/group_side.tpl | 38 --
view/smarty3/groupeditor.tpl | 21 -
view/smarty3/head.tpl | 117 ------
view/smarty3/hide_comments.tpl | 9 -
view/smarty3/install.tpl | 15 -
view/smarty3/install_checks.tpl | 29 --
view/smarty3/install_db.tpl | 35 --
view/smarty3/install_settings.tpl | 30 --
view/smarty3/intros.tpl | 33 --
view/smarty3/invite.tpl | 35 --
view/smarty3/jot-end.tpl | 5 -
view/smarty3/jot-header.tpl | 327 ---------------
view/smarty3/jot.tpl | 93 -----
view/smarty3/jot_geotag.tpl | 13 -
view/smarty3/lang_selector.tpl | 15 -
view/smarty3/like_noshare.tpl | 12 -
view/smarty3/login.tpl | 40 --
view/smarty3/login_head.tpl | 5 -
view/smarty3/logout.tpl | 11 -
view/smarty3/lostpass.tpl | 23 --
view/smarty3/magicsig.tpl | 14 -
view/smarty3/mail_conv.tpl | 19 -
view/smarty3/mail_display.tpl | 15 -
view/smarty3/mail_head.tpl | 8 -
view/smarty3/mail_list.tpl | 21 -
view/smarty3/maintenance.tpl | 6 -
view/smarty3/manage.tpl | 22 -
view/smarty3/match.tpl | 21 -
view/smarty3/message-end.tpl | 5 -
view/smarty3/message-head.tpl | 22 -
view/smarty3/message_side.tpl | 15 -
view/smarty3/moderated_comment.tpl | 39 --
view/smarty3/mood_content.tpl | 25 --
view/smarty3/msg-end.tpl | 5 -
view/smarty3/msg-header.tpl | 102 -----
view/smarty3/nav.tpl | 73 ----
view/smarty3/navigation.tpl | 108 -----
view/smarty3/netfriend.tpl | 19 -
view/smarty3/nets.tpl | 15 -
view/smarty3/nogroup-template.tpl | 17 -
view/smarty3/notifications.tpl | 13 -
view/smarty3/notifications_comments_item.tpl | 8 -
view/smarty3/notifications_dislikes_item.tpl | 8 -
view/smarty3/notifications_friends_item.tpl | 8 -
view/smarty3/notifications_likes_item.tpl | 8 -
view/smarty3/notifications_network_item.tpl | 8 -
view/smarty3/notifications_posts_item.tpl | 8 -
view/smarty3/notify.tpl | 8 -
view/smarty3/oauth_authorize.tpl | 15 -
view/smarty3/oauth_authorize_done.tpl | 9 -
view/smarty3/oembed_video.tpl | 9 -
view/smarty3/oexchange_xrd.tpl | 38 --
view/smarty3/opensearch.tpl | 18 -
view/smarty3/pagetypes.tpl | 10 -
view/smarty3/peoplefind.tpl | 19 -
view/smarty3/photo_album.tpl | 12 -
view/smarty3/photo_drop.tpl | 9 -
view/smarty3/photo_edit.tpl | 55 ---
view/smarty3/photo_edit_head.tpl | 16 -
view/smarty3/photo_item.tpl | 27 --
view/smarty3/photo_top.tpl | 13 -
view/smarty3/photo_view.tpl | 42 --
view/smarty3/photos_default_uploader_box.tpl | 6 -
.../photos_default_uploader_submit.tpl | 8 -
view/smarty3/photos_head.tpl | 31 --
view/smarty3/photos_recent.tpl | 16 -
view/smarty3/photos_upload.tpl | 54 ---
view/smarty3/poco_entry_xml.tpl | 12 -
view/smarty3/poco_xml.tpl | 23 --
view/smarty3/poke_content.tpl | 37 --
view/smarty3/posted_date_widget.tpl | 14 -
view/smarty3/profed_end.tpl | 5 -
view/smarty3/profed_head.tpl | 43 --
view/smarty3/profile-hide-friends.tpl | 21 -
view/smarty3/profile-hide-wall.tpl | 21 -
view/smarty3/profile-in-directory.tpl | 21 -
view/smarty3/profile-in-netdir.tpl | 21 -
view/smarty3/profile_advanced.tpl | 175 --------
view/smarty3/profile_edit.tpl | 328 ---------------
view/smarty3/profile_edlink.tpl | 7 -
view/smarty3/profile_entry.tpl | 16 -
view/smarty3/profile_listing_header.tpl | 13 -
view/smarty3/profile_photo.tpl | 31 --
view/smarty3/profile_publish.tpl | 21 -
view/smarty3/profile_vcard.tpl | 55 ---
view/smarty3/prv_message.tpl | 38 --
view/smarty3/pwdreset.tpl | 22 -
view/smarty3/register.tpl | 70 ----
view/smarty3/remote_friends_common.tpl | 26 --
view/smarty3/removeme.tpl | 25 --
view/smarty3/saved_searches_aside.tpl | 19 -
view/smarty3/search_item.tpl | 69 ----
view/smarty3/settings-end.tpl | 5 -
view/smarty3/settings-head.tpl | 30 --
view/smarty3/settings.tpl | 152 -------
view/smarty3/settings_addons.tpl | 15 -
view/smarty3/settings_connectors.tpl | 40 --
view/smarty3/settings_display.tpl | 27 --
view/smarty3/settings_display_end.tpl | 5 -
view/smarty3/settings_features.tpl | 25 --
view/smarty3/settings_nick_set.tpl | 10 -
view/smarty3/settings_nick_subdir.tpl | 11 -
view/smarty3/settings_oauth.tpl | 36 --
view/smarty3/settings_oauth_edit.tpl | 22 -
view/smarty3/suggest_friends.tpl | 21 -
view/smarty3/suggestions.tpl | 26 --
view/smarty3/tag_slap.tpl | 35 --
view/smarty3/threaded_conversation.tpl | 21 -
view/smarty3/toggle_mobile_footer.tpl | 7 -
view/smarty3/uexport.tpl | 14 -
view/smarty3/uimport.tpl | 18 -
view/smarty3/vcard-widget.tpl | 10 -
view/smarty3/viewcontact_template.tpl | 14 -
view/smarty3/voting_fakelink.tpl | 6 -
view/smarty3/wall_thread.tpl | 125 ------
view/smarty3/wallmessage.tpl | 37 --
view/smarty3/wallmsg-end.tpl | 5 -
view/smarty3/wallmsg-header.tpl | 87 ----
view/smarty3/xrd_diaspora.tpl | 8 -
view/smarty3/xrd_host.tpl | 23 --
view/smarty3/xrd_person.tpl | 43 --
view/suggest_friends.tpl | 16 -
view/suggestions.tpl | 21 -
view/tag_slap.tpl | 30 --
view/theme/cleanzero/nav.tpl | 85 ----
view/theme/cleanzero/smarty3/nav.tpl | 90 -----
.../cleanzero/smarty3/theme_settings.tpl | 15 -
view/theme/cleanzero/theme_settings.tpl | 10 -
view/theme/comix-plain/comment_item.tpl | 33 --
view/theme/comix-plain/search_item.tpl | 54 ---
.../comix-plain/smarty3/comment_item.tpl | 38 --
.../theme/comix-plain/smarty3/search_item.tpl | 59 ---
view/theme/comix/comment_item.tpl | 33 --
view/theme/comix/search_item.tpl | 54 ---
view/theme/comix/smarty3/comment_item.tpl | 38 --
view/theme/comix/smarty3/search_item.tpl | 59 ---
view/theme/decaf-mobile/acl_html_selector.tpl | 29 --
view/theme/decaf-mobile/acl_selector.tpl | 23 --
view/theme/decaf-mobile/admin_aside.tpl | 31 --
view/theme/decaf-mobile/admin_site.tpl | 67 ----
view/theme/decaf-mobile/admin_users.tpl | 98 -----
view/theme/decaf-mobile/album_edit.tpl | 15 -
view/theme/decaf-mobile/categories_widget.tpl | 12 -
view/theme/decaf-mobile/comment_item.tpl | 79 ----
view/theme/decaf-mobile/common_tabs.tpl | 6 -
view/theme/decaf-mobile/contact_block.tpl | 12 -
view/theme/decaf-mobile/contact_edit.tpl | 93 -----
view/theme/decaf-mobile/contact_head.tpl | 0
view/theme/decaf-mobile/contact_template.tpl | 38 --
view/theme/decaf-mobile/contacts-end.tpl | 4 -
view/theme/decaf-mobile/contacts-head.tpl | 5 -
view/theme/decaf-mobile/contacts-template.tpl | 28 --
.../decaf-mobile/contacts-widget-sidebar.tpl | 2 -
view/theme/decaf-mobile/conversation.tpl | 29 --
view/theme/decaf-mobile/cropbody.tpl | 27 --
view/theme/decaf-mobile/cropend.tpl | 4 -
view/theme/decaf-mobile/crophead.tpl | 1 -
view/theme/decaf-mobile/display-head.tpl | 4 -
view/theme/decaf-mobile/end.tpl | 25 --
view/theme/decaf-mobile/event_end.tpl | 4 -
view/theme/decaf-mobile/event_head.tpl | 6 -
view/theme/decaf-mobile/field_checkbox.tpl | 6 -
view/theme/decaf-mobile/field_input.tpl | 6 -
view/theme/decaf-mobile/field_openid.tpl | 6 -
view/theme/decaf-mobile/field_password.tpl | 6 -
view/theme/decaf-mobile/field_themeselect.tpl | 9 -
view/theme/decaf-mobile/field_yesno.tpl | 14 -
.../decaf-mobile/generic_links_widget.tpl | 12 -
view/theme/decaf-mobile/group_drop.tpl | 9 -
view/theme/decaf-mobile/group_side.tpl | 33 --
view/theme/decaf-mobile/head.tpl | 30 --
view/theme/decaf-mobile/jot-end.tpl | 5 -
view/theme/decaf-mobile/jot-header.tpl | 17 -
view/theme/decaf-mobile/jot.tpl | 99 -----
view/theme/decaf-mobile/jot_geotag.tpl | 11 -
view/theme/decaf-mobile/lang_selector.tpl | 10 -
view/theme/decaf-mobile/like_noshare.tpl | 7 -
view/theme/decaf-mobile/login.tpl | 45 ---
view/theme/decaf-mobile/login_head.tpl | 2 -
view/theme/decaf-mobile/lostpass.tpl | 21 -
view/theme/decaf-mobile/mail_conv.tpl | 18 -
view/theme/decaf-mobile/mail_list.tpl | 16 -
view/theme/decaf-mobile/manage.tpl | 18 -
view/theme/decaf-mobile/message-end.tpl | 4 -
view/theme/decaf-mobile/message-head.tpl | 0
view/theme/decaf-mobile/msg-end.tpl | 2 -
view/theme/decaf-mobile/msg-header.tpl | 10 -
view/theme/decaf-mobile/nav.tpl | 155 -------
view/theme/decaf-mobile/photo_drop.tpl | 4 -
view/theme/decaf-mobile/photo_edit.tpl | 60 ---
view/theme/decaf-mobile/photo_edit_head.tpl | 7 -
view/theme/decaf-mobile/photo_view.tpl | 42 --
view/theme/decaf-mobile/photos_head.tpl | 5 -
view/theme/decaf-mobile/photos_upload.tpl | 51 ---
view/theme/decaf-mobile/profed_end.tpl | 8 -
view/theme/decaf-mobile/profed_head.tpl | 5 -
view/theme/decaf-mobile/profile_edit.tpl | 324 ---------------
view/theme/decaf-mobile/profile_photo.tpl | 19 -
view/theme/decaf-mobile/profile_vcard.tpl | 51 ---
view/theme/decaf-mobile/prv_message.tpl | 43 --
view/theme/decaf-mobile/register.tpl | 80 ----
view/theme/decaf-mobile/search_item.tpl | 64 ---
view/theme/decaf-mobile/settings-head.tpl | 5 -
view/theme/decaf-mobile/settings.tpl | 151 -------
.../decaf-mobile/settings_display_end.tpl | 2 -
.../smarty3/acl_html_selector.tpl | 34 --
.../decaf-mobile/smarty3/acl_selector.tpl | 28 --
.../decaf-mobile/smarty3/admin_aside.tpl | 36 --
.../theme/decaf-mobile/smarty3/admin_site.tpl | 72 ----
.../decaf-mobile/smarty3/admin_users.tpl | 103 -----
.../theme/decaf-mobile/smarty3/album_edit.tpl | 20 -
.../smarty3/categories_widget.tpl | 17 -
.../decaf-mobile/smarty3/comment_item.tpl | 84 ----
.../decaf-mobile/smarty3/common_tabs.tpl | 11 -
.../decaf-mobile/smarty3/contact_block.tpl | 17 -
.../decaf-mobile/smarty3/contact_edit.tpl | 98 -----
.../decaf-mobile/smarty3/contact_head.tpl | 5 -
.../decaf-mobile/smarty3/contact_template.tpl | 43 --
.../decaf-mobile/smarty3/contacts-end.tpl | 9 -
.../decaf-mobile/smarty3/contacts-head.tpl | 10 -
.../smarty3/contacts-template.tpl | 33 --
.../smarty3/contacts-widget-sidebar.tpl | 7 -
.../decaf-mobile/smarty3/conversation.tpl | 34 --
view/theme/decaf-mobile/smarty3/cropbody.tpl | 32 --
view/theme/decaf-mobile/smarty3/cropend.tpl | 9 -
view/theme/decaf-mobile/smarty3/crophead.tpl | 6 -
.../decaf-mobile/smarty3/display-head.tpl | 9 -
view/theme/decaf-mobile/smarty3/end.tpl | 30 --
view/theme/decaf-mobile/smarty3/event_end.tpl | 9 -
.../theme/decaf-mobile/smarty3/event_head.tpl | 11 -
.../decaf-mobile/smarty3/field_checkbox.tpl | 11 -
.../decaf-mobile/smarty3/field_input.tpl | 11 -
.../decaf-mobile/smarty3/field_openid.tpl | 11 -
.../decaf-mobile/smarty3/field_password.tpl | 11 -
.../smarty3/field_themeselect.tpl | 14 -
.../decaf-mobile/smarty3/field_yesno.tpl | 19 -
.../smarty3/generic_links_widget.tpl | 17 -
.../theme/decaf-mobile/smarty3/group_drop.tpl | 14 -
.../theme/decaf-mobile/smarty3/group_side.tpl | 38 --
view/theme/decaf-mobile/smarty3/head.tpl | 35 --
view/theme/decaf-mobile/smarty3/jot-end.tpl | 10 -
.../theme/decaf-mobile/smarty3/jot-header.tpl | 22 -
view/theme/decaf-mobile/smarty3/jot.tpl | 104 -----
.../theme/decaf-mobile/smarty3/jot_geotag.tpl | 16 -
.../decaf-mobile/smarty3/lang_selector.tpl | 15 -
.../decaf-mobile/smarty3/like_noshare.tpl | 12 -
view/theme/decaf-mobile/smarty3/login.tpl | 50 ---
.../theme/decaf-mobile/smarty3/login_head.tpl | 7 -
view/theme/decaf-mobile/smarty3/lostpass.tpl | 26 --
view/theme/decaf-mobile/smarty3/mail_conv.tpl | 23 --
view/theme/decaf-mobile/smarty3/mail_list.tpl | 21 -
view/theme/decaf-mobile/smarty3/manage.tpl | 23 --
.../decaf-mobile/smarty3/message-end.tpl | 9 -
.../decaf-mobile/smarty3/message-head.tpl | 5 -
.../smarty3/moderated_comment.tpl | 66 ---
view/theme/decaf-mobile/smarty3/msg-end.tpl | 7 -
.../theme/decaf-mobile/smarty3/msg-header.tpl | 15 -
view/theme/decaf-mobile/smarty3/nav.tpl | 160 --------
.../theme/decaf-mobile/smarty3/photo_drop.tpl | 9 -
.../theme/decaf-mobile/smarty3/photo_edit.tpl | 65 ---
.../decaf-mobile/smarty3/photo_edit_head.tpl | 12 -
.../theme/decaf-mobile/smarty3/photo_view.tpl | 47 ---
.../decaf-mobile/smarty3/photos_head.tpl | 10 -
.../decaf-mobile/smarty3/photos_upload.tpl | 56 ---
.../theme/decaf-mobile/smarty3/profed_end.tpl | 13 -
.../decaf-mobile/smarty3/profed_head.tpl | 10 -
.../decaf-mobile/smarty3/profile_edit.tpl | 329 ---------------
.../decaf-mobile/smarty3/profile_photo.tpl | 24 --
.../decaf-mobile/smarty3/profile_vcard.tpl | 56 ---
.../decaf-mobile/smarty3/prv_message.tpl | 48 ---
view/theme/decaf-mobile/smarty3/register.tpl | 85 ----
.../decaf-mobile/smarty3/search_item.tpl | 69 ----
.../decaf-mobile/smarty3/settings-head.tpl | 10 -
view/theme/decaf-mobile/smarty3/settings.tpl | 156 -------
.../smarty3/settings_display_end.tpl | 7 -
.../decaf-mobile/smarty3/suggest_friends.tpl | 21 -
.../smarty3/threaded_conversation.tpl | 17 -
.../decaf-mobile/smarty3/voting_fakelink.tpl | 6 -
.../decaf-mobile/smarty3/wall_thread.tpl | 124 ------
.../smarty3/wall_thread_toponly.tpl | 106 -----
.../decaf-mobile/smarty3/wallmessage.tpl | 37 --
.../decaf-mobile/smarty3/wallmsg-end.tpl | 7 -
.../decaf-mobile/smarty3/wallmsg-header.tpl | 12 -
view/theme/decaf-mobile/suggest_friends.tpl | 16 -
.../decaf-mobile/threaded_conversation.tpl | 12 -
view/theme/decaf-mobile/voting_fakelink.tpl | 1 -
view/theme/decaf-mobile/wall_thread.tpl | 119 ------
.../decaf-mobile/wall_thread_toponly.tpl | 101 -----
view/theme/decaf-mobile/wallmessage.tpl | 32 --
view/theme/decaf-mobile/wallmsg-end.tpl | 2 -
view/theme/decaf-mobile/wallmsg-header.tpl | 7 -
view/theme/diabook/admin_users.tpl | 88 ----
view/theme/diabook/bottom.tpl | 155 -------
view/theme/diabook/ch_directory_item.tpl | 10 -
view/theme/diabook/comment_item.tpl | 43 --
view/theme/diabook/communityhome.tpl | 172 --------
view/theme/diabook/contact_template.tpl | 31 --
view/theme/diabook/directory_item.tpl | 42 --
view/theme/diabook/footer.tpl | 3 -
view/theme/diabook/generic_links_widget.tpl | 11 -
view/theme/diabook/group_side.tpl | 34 --
view/theme/diabook/jot.tpl | 87 ----
view/theme/diabook/login.tpl | 33 --
view/theme/diabook/mail_conv.tpl | 60 ---
view/theme/diabook/mail_display.tpl | 12 -
view/theme/diabook/mail_list.tpl | 8 -
view/theme/diabook/message_side.tpl | 10 -
view/theme/diabook/nav.tpl | 188 ---------
view/theme/diabook/nets.tpl | 17 -
view/theme/diabook/oembed_video.tpl | 4 -
view/theme/diabook/photo_item.tpl | 65 ---
view/theme/diabook/photo_view.tpl | 33 --
view/theme/diabook/profile_side.tpl | 21 -
view/theme/diabook/profile_vcard.tpl | 64 ---
view/theme/diabook/prv_message.tpl | 40 --
view/theme/diabook/right_aside.tpl | 20 -
view/theme/diabook/search_item.tpl | 111 -----
view/theme/diabook/smarty3/admin_users.tpl | 93 -----
view/theme/diabook/smarty3/bottom.tpl | 160 --------
.../diabook/smarty3/ch_directory_item.tpl | 15 -
view/theme/diabook/smarty3/comment_item.tpl | 48 ---
view/theme/diabook/smarty3/communityhome.tpl | 177 --------
.../diabook/smarty3/contact_template.tpl | 36 --
view/theme/diabook/smarty3/directory_item.tpl | 47 ---
view/theme/diabook/smarty3/footer.tpl | 8 -
.../diabook/smarty3/generic_links_widget.tpl | 16 -
view/theme/diabook/smarty3/group_side.tpl | 39 --
view/theme/diabook/smarty3/jot.tpl | 92 -----
view/theme/diabook/smarty3/login.tpl | 38 --
view/theme/diabook/smarty3/mail_conv.tpl | 65 ---
view/theme/diabook/smarty3/mail_display.tpl | 17 -
view/theme/diabook/smarty3/mail_list.tpl | 13 -
view/theme/diabook/smarty3/message_side.tpl | 15 -
view/theme/diabook/smarty3/nav.tpl | 193 ---------
view/theme/diabook/smarty3/nets.tpl | 22 -
view/theme/diabook/smarty3/oembed_video.tpl | 9 -
view/theme/diabook/smarty3/photo_item.tpl | 70 ----
view/theme/diabook/smarty3/photo_view.tpl | 38 --
view/theme/diabook/smarty3/profile_side.tpl | 26 --
view/theme/diabook/smarty3/profile_vcard.tpl | 69 ----
view/theme/diabook/smarty3/prv_message.tpl | 45 ---
view/theme/diabook/smarty3/right_aside.tpl | 25 --
view/theme/diabook/smarty3/search_item.tpl | 116 ------
view/theme/diabook/smarty3/theme_settings.tpl | 46 ---
view/theme/diabook/smarty3/wall_thread.tpl | 146 -------
view/theme/diabook/theme_settings.tpl | 41 --
view/theme/diabook/wall_thread.tpl | 141 -------
view/theme/dispy/bottom.tpl | 71 ----
view/theme/dispy/comment_item.tpl | 70 ----
view/theme/dispy/communityhome.tpl | 35 --
view/theme/dispy/contact_template.tpl | 36 --
view/theme/dispy/conversation.tpl | 29 --
view/theme/dispy/group_side.tpl | 29 --
view/theme/dispy/header.tpl | 0
view/theme/dispy/jot-header.tpl | 345 ----------------
view/theme/dispy/jot.tpl | 79 ----
view/theme/dispy/lang_selector.tpl | 10 -
view/theme/dispy/mail_head.tpl | 5 -
view/theme/dispy/nav.tpl | 145 -------
view/theme/dispy/photo_edit.tpl | 53 ---
view/theme/dispy/photo_view.tpl | 36 --
view/theme/dispy/profile_vcard.tpl | 82 ----
view/theme/dispy/saved_searches_aside.tpl | 14 -
view/theme/dispy/search_item.tpl | 64 ---
view/theme/dispy/smarty3/bottom.tpl | 76 ----
view/theme/dispy/smarty3/comment_item.tpl | 75 ----
view/theme/dispy/smarty3/communityhome.tpl | 40 --
view/theme/dispy/smarty3/contact_template.tpl | 41 --
view/theme/dispy/smarty3/conversation.tpl | 34 --
view/theme/dispy/smarty3/group_side.tpl | 34 --
view/theme/dispy/smarty3/header.tpl | 5 -
view/theme/dispy/smarty3/jot-header.tpl | 350 ----------------
view/theme/dispy/smarty3/jot.tpl | 84 ----
view/theme/dispy/smarty3/lang_selector.tpl | 15 -
view/theme/dispy/smarty3/mail_head.tpl | 10 -
view/theme/dispy/smarty3/nav.tpl | 150 -------
view/theme/dispy/smarty3/photo_edit.tpl | 58 ---
view/theme/dispy/smarty3/photo_view.tpl | 41 --
view/theme/dispy/smarty3/profile_vcard.tpl | 87 ----
.../dispy/smarty3/saved_searches_aside.tpl | 19 -
view/theme/dispy/smarty3/search_item.tpl | 69 ----
view/theme/dispy/smarty3/theme_settings.tpl | 15 -
.../dispy/smarty3/threaded_conversation.tpl | 20 -
view/theme/dispy/smarty3/wall_thread.tpl | 144 -------
view/theme/dispy/theme_settings.tpl | 10 -
view/theme/dispy/threaded_conversation.tpl | 15 -
view/theme/dispy/wall_thread.tpl | 139 -------
view/theme/duepuntozero/comment_item.tpl | 66 ---
view/theme/duepuntozero/lang_selector.tpl | 10 -
view/theme/duepuntozero/moderated_comment.tpl | 61 ---
view/theme/duepuntozero/nav.tpl | 70 ----
view/theme/duepuntozero/profile_vcard.tpl | 51 ---
view/theme/duepuntozero/prv_message.tpl | 39 --
.../duepuntozero/smarty3/comment_item.tpl | 71 ----
.../duepuntozero/smarty3/lang_selector.tpl | 15 -
.../smarty3/moderated_comment.tpl | 66 ---
view/theme/duepuntozero/smarty3/nav.tpl | 75 ----
.../duepuntozero/smarty3/profile_vcard.tpl | 56 ---
.../duepuntozero/smarty3/prv_message.tpl | 44 --
view/theme/facepark/comment_item.tpl | 33 --
view/theme/facepark/group_side.tpl | 28 --
view/theme/facepark/jot.tpl | 85 ----
view/theme/facepark/nav.tpl | 68 ----
view/theme/facepark/profile_vcard.tpl | 47 ---
view/theme/facepark/search_item.tpl | 54 ---
view/theme/facepark/smarty3/comment_item.tpl | 38 --
view/theme/facepark/smarty3/group_side.tpl | 33 --
view/theme/facepark/smarty3/jot.tpl | 90 -----
view/theme/facepark/smarty3/nav.tpl | 73 ----
view/theme/facepark/smarty3/profile_vcard.tpl | 52 ---
view/theme/facepark/smarty3/search_item.tpl | 59 ---
view/theme/frost-mobile/acl_selector.tpl | 23 --
view/theme/frost-mobile/admin_aside.tpl | 31 --
view/theme/frost-mobile/admin_site.tpl | 67 ----
view/theme/frost-mobile/admin_users.tpl | 98 -----
view/theme/frost-mobile/categories_widget.tpl | 12 -
view/theme/frost-mobile/comment_item.tpl | 78 ----
view/theme/frost-mobile/common_tabs.tpl | 6 -
view/theme/frost-mobile/contact_block.tpl | 12 -
view/theme/frost-mobile/contact_edit.tpl | 93 -----
view/theme/frost-mobile/contact_head.tpl | 0
view/theme/frost-mobile/contact_template.tpl | 36 --
view/theme/frost-mobile/contacts-end.tpl | 4 -
view/theme/frost-mobile/contacts-head.tpl | 5 -
view/theme/frost-mobile/contacts-template.tpl | 28 --
.../frost-mobile/contacts-widget-sidebar.tpl | 2 -
view/theme/frost-mobile/conversation.tpl | 29 --
view/theme/frost-mobile/cropbody.tpl | 27 --
view/theme/frost-mobile/cropend.tpl | 4 -
view/theme/frost-mobile/crophead.tpl | 1 -
view/theme/frost-mobile/display-head.tpl | 4 -
view/theme/frost-mobile/end.tpl | 22 -
view/theme/frost-mobile/event.tpl | 10 -
view/theme/frost-mobile/event_end.tpl | 4 -
view/theme/frost-mobile/event_head.tpl | 6 -
view/theme/frost-mobile/field_checkbox.tpl | 6 -
view/theme/frost-mobile/field_input.tpl | 6 -
view/theme/frost-mobile/field_openid.tpl | 6 -
view/theme/frost-mobile/field_password.tpl | 6 -
view/theme/frost-mobile/field_themeselect.tpl | 9 -
.../frost-mobile/generic_links_widget.tpl | 12 -
view/theme/frost-mobile/group_drop.tpl | 9 -
view/theme/frost-mobile/head.tpl | 31 --
view/theme/frost-mobile/jot-end.tpl | 5 -
view/theme/frost-mobile/jot-header.tpl | 18 -
view/theme/frost-mobile/jot.tpl | 91 -----
view/theme/frost-mobile/jot_geotag.tpl | 11 -
view/theme/frost-mobile/lang_selector.tpl | 10 -
view/theme/frost-mobile/like_noshare.tpl | 7 -
view/theme/frost-mobile/login.tpl | 45 ---
view/theme/frost-mobile/login_head.tpl | 2 -
view/theme/frost-mobile/lostpass.tpl | 21 -
view/theme/frost-mobile/mail_conv.tpl | 18 -
view/theme/frost-mobile/mail_list.tpl | 16 -
view/theme/frost-mobile/message-end.tpl | 4 -
view/theme/frost-mobile/message-head.tpl | 0
view/theme/frost-mobile/moderated_comment.tpl | 61 ---
view/theme/frost-mobile/msg-end.tpl | 2 -
view/theme/frost-mobile/msg-header.tpl | 10 -
view/theme/frost-mobile/nav.tpl | 146 -------
view/theme/frost-mobile/photo_drop.tpl | 4 -
view/theme/frost-mobile/photo_edit.tpl | 58 ---
view/theme/frost-mobile/photo_edit_head.tpl | 7 -
view/theme/frost-mobile/photo_view.tpl | 42 --
view/theme/frost-mobile/photos_head.tpl | 5 -
view/theme/frost-mobile/photos_upload.tpl | 50 ---
view/theme/frost-mobile/profed_end.tpl | 8 -
view/theme/frost-mobile/profed_head.tpl | 5 -
view/theme/frost-mobile/profile_edit.tpl | 322 ---------------
view/theme/frost-mobile/profile_photo.tpl | 19 -
view/theme/frost-mobile/profile_vcard.tpl | 51 ---
view/theme/frost-mobile/prv_message.tpl | 39 --
view/theme/frost-mobile/register.tpl | 80 ----
view/theme/frost-mobile/search_item.tpl | 64 ---
view/theme/frost-mobile/settings-head.tpl | 5 -
view/theme/frost-mobile/settings.tpl | 147 -------
.../frost-mobile/settings_display_end.tpl | 2 -
.../frost-mobile/smarty3/acl_selector.tpl | 28 --
.../frost-mobile/smarty3/admin_aside.tpl | 36 --
.../theme/frost-mobile/smarty3/admin_site.tpl | 72 ----
.../frost-mobile/smarty3/admin_users.tpl | 103 -----
.../smarty3/categories_widget.tpl | 17 -
.../frost-mobile/smarty3/comment_item.tpl | 83 ----
.../frost-mobile/smarty3/common_tabs.tpl | 11 -
.../frost-mobile/smarty3/contact_block.tpl | 17 -
.../frost-mobile/smarty3/contact_edit.tpl | 98 -----
.../frost-mobile/smarty3/contact_head.tpl | 5 -
.../frost-mobile/smarty3/contact_template.tpl | 41 --
.../frost-mobile/smarty3/contacts-end.tpl | 9 -
.../frost-mobile/smarty3/contacts-head.tpl | 10 -
.../smarty3/contacts-template.tpl | 33 --
.../smarty3/contacts-widget-sidebar.tpl | 7 -
.../frost-mobile/smarty3/conversation.tpl | 34 --
view/theme/frost-mobile/smarty3/cropbody.tpl | 32 --
view/theme/frost-mobile/smarty3/cropend.tpl | 9 -
view/theme/frost-mobile/smarty3/crophead.tpl | 6 -
.../frost-mobile/smarty3/display-head.tpl | 9 -
view/theme/frost-mobile/smarty3/end.tpl | 27 --
view/theme/frost-mobile/smarty3/event.tpl | 15 -
view/theme/frost-mobile/smarty3/event_end.tpl | 9 -
.../theme/frost-mobile/smarty3/event_head.tpl | 11 -
.../frost-mobile/smarty3/field_checkbox.tpl | 11 -
.../frost-mobile/smarty3/field_input.tpl | 11 -
.../frost-mobile/smarty3/field_openid.tpl | 11 -
.../frost-mobile/smarty3/field_password.tpl | 11 -
.../smarty3/field_themeselect.tpl | 14 -
.../smarty3/generic_links_widget.tpl | 17 -
.../theme/frost-mobile/smarty3/group_drop.tpl | 14 -
view/theme/frost-mobile/smarty3/head.tpl | 36 --
view/theme/frost-mobile/smarty3/jot-end.tpl | 10 -
.../theme/frost-mobile/smarty3/jot-header.tpl | 23 --
view/theme/frost-mobile/smarty3/jot.tpl | 96 -----
.../theme/frost-mobile/smarty3/jot_geotag.tpl | 16 -
.../frost-mobile/smarty3/lang_selector.tpl | 15 -
.../frost-mobile/smarty3/like_noshare.tpl | 12 -
view/theme/frost-mobile/smarty3/login.tpl | 50 ---
.../theme/frost-mobile/smarty3/login_head.tpl | 7 -
view/theme/frost-mobile/smarty3/lostpass.tpl | 26 --
view/theme/frost-mobile/smarty3/mail_conv.tpl | 23 --
view/theme/frost-mobile/smarty3/mail_list.tpl | 21 -
.../frost-mobile/smarty3/message-end.tpl | 9 -
.../frost-mobile/smarty3/message-head.tpl | 5 -
.../smarty3/moderated_comment.tpl | 66 ---
view/theme/frost-mobile/smarty3/msg-end.tpl | 7 -
.../theme/frost-mobile/smarty3/msg-header.tpl | 15 -
view/theme/frost-mobile/smarty3/nav.tpl | 151 -------
.../theme/frost-mobile/smarty3/photo_drop.tpl | 9 -
.../theme/frost-mobile/smarty3/photo_edit.tpl | 63 ---
.../frost-mobile/smarty3/photo_edit_head.tpl | 12 -
.../theme/frost-mobile/smarty3/photo_view.tpl | 47 ---
.../frost-mobile/smarty3/photos_head.tpl | 10 -
.../frost-mobile/smarty3/photos_upload.tpl | 55 ---
.../theme/frost-mobile/smarty3/profed_end.tpl | 13 -
.../frost-mobile/smarty3/profed_head.tpl | 10 -
.../frost-mobile/smarty3/profile_edit.tpl | 327 ---------------
.../frost-mobile/smarty3/profile_photo.tpl | 24 --
.../frost-mobile/smarty3/profile_vcard.tpl | 56 ---
.../frost-mobile/smarty3/prv_message.tpl | 44 --
view/theme/frost-mobile/smarty3/register.tpl | 85 ----
.../frost-mobile/smarty3/search_item.tpl | 69 ----
.../frost-mobile/smarty3/settings-head.tpl | 10 -
view/theme/frost-mobile/smarty3/settings.tpl | 152 -------
.../smarty3/settings_display_end.tpl | 7 -
.../frost-mobile/smarty3/suggest_friends.tpl | 21 -
.../smarty3/threaded_conversation.tpl | 20 -
.../frost-mobile/smarty3/voting_fakelink.tpl | 6 -
.../frost-mobile/smarty3/wall_thread.tpl | 131 ------
.../frost-mobile/smarty3/wallmsg-end.tpl | 7 -
.../frost-mobile/smarty3/wallmsg-header.tpl | 12 -
view/theme/frost-mobile/suggest_friends.tpl | 16 -
.../frost-mobile/threaded_conversation.tpl | 15 -
view/theme/frost-mobile/voting_fakelink.tpl | 1 -
view/theme/frost-mobile/wall_thread.tpl | 126 ------
view/theme/frost-mobile/wallmsg-end.tpl | 2 -
view/theme/frost-mobile/wallmsg-header.tpl | 7 -
view/theme/frost/acl_selector.tpl | 23 --
view/theme/frost/admin_aside.tpl | 31 --
view/theme/frost/admin_site.tpl | 76 ----
view/theme/frost/admin_users.tpl | 98 -----
view/theme/frost/comment_item.tpl | 77 ----
view/theme/frost/contact_edit.tpl | 88 ----
view/theme/frost/contact_end.tpl | 2 -
view/theme/frost/contact_head.tpl | 4 -
view/theme/frost/contact_template.tpl | 33 --
view/theme/frost/contacts-end.tpl | 4 -
view/theme/frost/contacts-head.tpl | 5 -
view/theme/frost/contacts-template.tpl | 28 --
view/theme/frost/cropbody.tpl | 27 --
view/theme/frost/cropend.tpl | 4 -
view/theme/frost/crophead.tpl | 1 -
view/theme/frost/display-head.tpl | 4 -
view/theme/frost/end.tpl | 25 --
view/theme/frost/event.tpl | 10 -
view/theme/frost/event_end.tpl | 5 -
view/theme/frost/event_form.tpl | 50 ---
view/theme/frost/event_head.tpl | 7 -
view/theme/frost/field_combobox.tpl | 18 -
view/theme/frost/field_input.tpl | 6 -
view/theme/frost/field_openid.tpl | 6 -
view/theme/frost/field_password.tpl | 6 -
view/theme/frost/field_themeselect.tpl | 9 -
view/theme/frost/filebrowser.tpl | 84 ----
view/theme/frost/group_drop.tpl | 9 -
view/theme/frost/head.tpl | 23 --
view/theme/frost/jot-end.tpl | 3 -
view/theme/frost/jot-header.tpl | 17 -
view/theme/frost/jot.tpl | 91 -----
view/theme/frost/jot_geotag.tpl | 11 -
view/theme/frost/lang_selector.tpl | 10 -
view/theme/frost/like_noshare.tpl | 7 -
view/theme/frost/login.tpl | 45 ---
view/theme/frost/login_head.tpl | 2 -
view/theme/frost/lostpass.tpl | 21 -
view/theme/frost/mail_conv.tpl | 14 -
view/theme/frost/mail_list.tpl | 16 -
view/theme/frost/message-end.tpl | 4 -
view/theme/frost/message-head.tpl | 0
view/theme/frost/moderated_comment.tpl | 61 ---
view/theme/frost/msg-end.tpl | 3 -
view/theme/frost/msg-header.tpl | 10 -
view/theme/frost/nav.tpl | 150 -------
view/theme/frost/photo_drop.tpl | 4 -
view/theme/frost/photo_edit.tpl | 58 ---
view/theme/frost/photo_edit_head.tpl | 7 -
view/theme/frost/photo_view.tpl | 42 --
view/theme/frost/photos_head.tpl | 5 -
view/theme/frost/photos_upload.tpl | 52 ---
view/theme/frost/posted_date_widget.tpl | 9 -
view/theme/frost/profed_end.tpl | 8 -
view/theme/frost/profed_head.tpl | 5 -
view/theme/frost/profile_edit.tpl | 322 ---------------
view/theme/frost/profile_vcard.tpl | 51 ---
view/theme/frost/prv_message.tpl | 39 --
view/theme/frost/register.tpl | 80 ----
view/theme/frost/search_item.tpl | 64 ---
view/theme/frost/settings-head.tpl | 5 -
view/theme/frost/settings_display_end.tpl | 2 -
view/theme/frost/smarty3/acl_selector.tpl | 28 --
view/theme/frost/smarty3/admin_aside.tpl | 36 --
view/theme/frost/smarty3/admin_site.tpl | 81 ----
view/theme/frost/smarty3/admin_users.tpl | 103 -----
view/theme/frost/smarty3/comment_item.tpl | 82 ----
view/theme/frost/smarty3/contact_edit.tpl | 93 -----
view/theme/frost/smarty3/contact_end.tpl | 7 -
view/theme/frost/smarty3/contact_head.tpl | 9 -
view/theme/frost/smarty3/contact_template.tpl | 38 --
view/theme/frost/smarty3/contacts-end.tpl | 9 -
view/theme/frost/smarty3/contacts-head.tpl | 10 -
.../theme/frost/smarty3/contacts-template.tpl | 33 --
view/theme/frost/smarty3/cropbody.tpl | 32 --
view/theme/frost/smarty3/cropend.tpl | 9 -
view/theme/frost/smarty3/crophead.tpl | 6 -
view/theme/frost/smarty3/display-head.tpl | 9 -
view/theme/frost/smarty3/end.tpl | 30 --
view/theme/frost/smarty3/event.tpl | 15 -
view/theme/frost/smarty3/event_end.tpl | 10 -
view/theme/frost/smarty3/event_form.tpl | 55 ---
view/theme/frost/smarty3/event_head.tpl | 12 -
view/theme/frost/smarty3/field_combobox.tpl | 23 --
view/theme/frost/smarty3/field_input.tpl | 11 -
view/theme/frost/smarty3/field_openid.tpl | 11 -
view/theme/frost/smarty3/field_password.tpl | 11 -
.../theme/frost/smarty3/field_themeselect.tpl | 14 -
view/theme/frost/smarty3/filebrowser.tpl | 89 ----
view/theme/frost/smarty3/group_drop.tpl | 14 -
view/theme/frost/smarty3/head.tpl | 28 --
view/theme/frost/smarty3/jot-end.tpl | 8 -
view/theme/frost/smarty3/jot-header.tpl | 22 -
view/theme/frost/smarty3/jot.tpl | 96 -----
view/theme/frost/smarty3/jot_geotag.tpl | 16 -
view/theme/frost/smarty3/lang_selector.tpl | 15 -
view/theme/frost/smarty3/like_noshare.tpl | 12 -
view/theme/frost/smarty3/login.tpl | 50 ---
view/theme/frost/smarty3/login_head.tpl | 7 -
view/theme/frost/smarty3/lostpass.tpl | 26 --
view/theme/frost/smarty3/mail_conv.tpl | 19 -
view/theme/frost/smarty3/mail_list.tpl | 21 -
view/theme/frost/smarty3/message-end.tpl | 9 -
view/theme/frost/smarty3/message-head.tpl | 5 -
.../theme/frost/smarty3/moderated_comment.tpl | 66 ---
view/theme/frost/smarty3/msg-end.tpl | 8 -
view/theme/frost/smarty3/msg-header.tpl | 15 -
view/theme/frost/smarty3/nav.tpl | 155 -------
view/theme/frost/smarty3/photo_drop.tpl | 9 -
view/theme/frost/smarty3/photo_edit.tpl | 63 ---
view/theme/frost/smarty3/photo_edit_head.tpl | 12 -
view/theme/frost/smarty3/photo_view.tpl | 47 ---
view/theme/frost/smarty3/photos_head.tpl | 10 -
view/theme/frost/smarty3/photos_upload.tpl | 57 ---
.../frost/smarty3/posted_date_widget.tpl | 14 -
view/theme/frost/smarty3/profed_end.tpl | 13 -
view/theme/frost/smarty3/profed_head.tpl | 10 -
view/theme/frost/smarty3/profile_edit.tpl | 327 ---------------
view/theme/frost/smarty3/profile_vcard.tpl | 56 ---
view/theme/frost/smarty3/prv_message.tpl | 44 --
view/theme/frost/smarty3/register.tpl | 85 ----
view/theme/frost/smarty3/search_item.tpl | 69 ----
view/theme/frost/smarty3/settings-head.tpl | 10 -
.../frost/smarty3/settings_display_end.tpl | 7 -
view/theme/frost/smarty3/suggest_friends.tpl | 21 -
.../frost/smarty3/threaded_conversation.tpl | 33 --
view/theme/frost/smarty3/voting_fakelink.tpl | 6 -
view/theme/frost/smarty3/wall_thread.tpl | 130 ------
view/theme/frost/smarty3/wallmsg-end.tpl | 9 -
view/theme/frost/smarty3/wallmsg-header.tpl | 12 -
view/theme/frost/suggest_friends.tpl | 16 -
view/theme/frost/threaded_conversation.tpl | 28 --
view/theme/frost/voting_fakelink.tpl | 1 -
view/theme/frost/wall_thread.tpl | 125 ------
view/theme/frost/wallmsg-end.tpl | 4 -
view/theme/frost/wallmsg-header.tpl | 7 -
view/theme/quattro/birthdays_reminder.tpl | 1 -
view/theme/quattro/comment_item.tpl | 63 ---
view/theme/quattro/contact_template.tpl | 32 --
view/theme/quattro/conversation.tpl | 49 ---
view/theme/quattro/events_reminder.tpl | 39 --
view/theme/quattro/fileas_widget.tpl | 12 -
view/theme/quattro/generic_links_widget.tpl | 11 -
view/theme/quattro/group_side.tpl | 29 --
view/theme/quattro/jot.tpl | 56 ---
view/theme/quattro/mail_conv.tpl | 63 ---
view/theme/quattro/mail_display.tpl | 12 -
view/theme/quattro/mail_list.tpl | 8 -
view/theme/quattro/message_side.tpl | 10 -
view/theme/quattro/nav.tpl | 95 -----
view/theme/quattro/nets.tpl | 12 -
view/theme/quattro/photo_view.tpl | 37 --
view/theme/quattro/profile_vcard.tpl | 68 ----
view/theme/quattro/prv_message.tpl | 38 --
view/theme/quattro/saved_searches_aside.tpl | 15 -
view/theme/quattro/search_item.tpl | 93 -----
.../quattro/smarty3/birthdays_reminder.tpl | 6 -
view/theme/quattro/smarty3/comment_item.tpl | 68 ----
.../quattro/smarty3/contact_template.tpl | 37 --
view/theme/quattro/smarty3/conversation.tpl | 54 ---
.../theme/quattro/smarty3/events_reminder.tpl | 44 --
view/theme/quattro/smarty3/fileas_widget.tpl | 17 -
.../quattro/smarty3/generic_links_widget.tpl | 16 -
view/theme/quattro/smarty3/group_side.tpl | 34 --
view/theme/quattro/smarty3/jot.tpl | 61 ---
view/theme/quattro/smarty3/mail_conv.tpl | 68 ----
view/theme/quattro/smarty3/mail_display.tpl | 17 -
view/theme/quattro/smarty3/mail_list.tpl | 13 -
view/theme/quattro/smarty3/message_side.tpl | 15 -
view/theme/quattro/smarty3/nav.tpl | 100 -----
view/theme/quattro/smarty3/nets.tpl | 17 -
view/theme/quattro/smarty3/photo_view.tpl | 42 --
view/theme/quattro/smarty3/profile_vcard.tpl | 73 ----
view/theme/quattro/smarty3/prv_message.tpl | 43 --
.../quattro/smarty3/saved_searches_aside.tpl | 20 -
view/theme/quattro/smarty3/search_item.tpl | 98 -----
view/theme/quattro/smarty3/theme_settings.tpl | 37 --
.../quattro/smarty3/threaded_conversation.tpl | 45 ---
view/theme/quattro/smarty3/wall_item_tag.tpl | 72 ----
view/theme/quattro/smarty3/wall_thread.tpl | 177 --------
view/theme/quattro/theme_settings.tpl | 32 --
view/theme/quattro/threaded_conversation.tpl | 40 --
view/theme/quattro/wall_item_tag.tpl | 67 ----
view/theme/quattro/wall_thread.tpl | 172 --------
view/theme/slackr/birthdays_reminder.tpl | 8 -
view/theme/slackr/events_reminder.tpl | 39 --
.../slackr/smarty3/birthdays_reminder.tpl | 13 -
view/theme/slackr/smarty3/events_reminder.tpl | 44 --
view/theme/smoothly/bottom.tpl | 52 ---
view/theme/smoothly/follow.tpl | 8 -
view/theme/smoothly/jot-header.tpl | 374 -----------------
view/theme/smoothly/jot.tpl | 84 ----
view/theme/smoothly/lang_selector.tpl | 10 -
view/theme/smoothly/nav.tpl | 81 ----
view/theme/smoothly/search_item.tpl | 53 ---
view/theme/smoothly/smarty3/bottom.tpl | 57 ---
view/theme/smoothly/smarty3/follow.tpl | 13 -
view/theme/smoothly/smarty3/jot-header.tpl | 379 ------------------
view/theme/smoothly/smarty3/jot.tpl | 89 ----
view/theme/smoothly/smarty3/lang_selector.tpl | 15 -
view/theme/smoothly/smarty3/nav.tpl | 86 ----
view/theme/smoothly/smarty3/search_item.tpl | 58 ---
view/theme/smoothly/smarty3/wall_thread.tpl | 165 --------
view/theme/smoothly/wall_thread.tpl | 160 --------
view/theme/testbubble/comment_item.tpl | 33 --
view/theme/testbubble/group_drop.tpl | 8 -
view/theme/testbubble/group_edit.tpl | 16 -
view/theme/testbubble/group_side.tpl | 28 --
view/theme/testbubble/jot-header.tpl | 366 -----------------
view/theme/testbubble/jot.tpl | 75 ----
view/theme/testbubble/match.tpl | 13 -
view/theme/testbubble/nav.tpl | 66 ---
view/theme/testbubble/photo_album.tpl | 8 -
view/theme/testbubble/photo_top.tpl | 8 -
view/theme/testbubble/photo_view.tpl | 40 --
view/theme/testbubble/profile_entry.tpl | 11 -
view/theme/testbubble/profile_vcard.tpl | 45 ---
.../theme/testbubble/saved_searches_aside.tpl | 14 -
view/theme/testbubble/search_item.tpl | 53 ---
.../theme/testbubble/smarty3/comment_item.tpl | 38 --
view/theme/testbubble/smarty3/group_drop.tpl | 13 -
view/theme/testbubble/smarty3/group_edit.tpl | 21 -
view/theme/testbubble/smarty3/group_side.tpl | 33 --
view/theme/testbubble/smarty3/jot-header.tpl | 371 -----------------
view/theme/testbubble/smarty3/jot.tpl | 80 ----
view/theme/testbubble/smarty3/match.tpl | 18 -
view/theme/testbubble/smarty3/nav.tpl | 71 ----
view/theme/testbubble/smarty3/photo_album.tpl | 13 -
view/theme/testbubble/smarty3/photo_top.tpl | 13 -
view/theme/testbubble/smarty3/photo_view.tpl | 45 ---
.../testbubble/smarty3/profile_entry.tpl | 16 -
.../testbubble/smarty3/profile_vcard.tpl | 50 ---
.../smarty3/saved_searches_aside.tpl | 19 -
view/theme/testbubble/smarty3/search_item.tpl | 58 ---
view/theme/testbubble/smarty3/wall_thread.tpl | 112 ------
view/theme/testbubble/wall_thread.tpl | 107 -----
view/theme/vier/comment_item.tpl | 51 ---
view/theme/vier/mail_list.tpl | 8 -
view/theme/vier/nav.tpl | 145 -------
view/theme/vier/profile_edlink.tpl | 1 -
view/theme/vier/profile_vcard.tpl | 65 ---
view/theme/vier/search_item.tpl | 92 -----
view/theme/vier/smarty3/comment_item.tpl | 56 ---
view/theme/vier/smarty3/mail_list.tpl | 13 -
view/theme/vier/smarty3/nav.tpl | 150 -------
view/theme/vier/smarty3/profile_edlink.tpl | 6 -
view/theme/vier/smarty3/profile_vcard.tpl | 70 ----
view/theme/vier/smarty3/search_item.tpl | 97 -----
.../vier/smarty3/threaded_conversation.tpl | 45 ---
view/theme/vier/smarty3/wall_thread.tpl | 177 --------
view/theme/vier/threaded_conversation.tpl | 40 --
view/theme/vier/wall_thread.tpl | 172 --------
view/threaded_conversation.tpl | 16 -
view/toggle_mobile_footer.tpl | 2 -
view/uexport.tpl | 9 -
view/uimport.tpl | 13 -
view/vcard-widget.tpl | 5 -
view/viewcontact_template.tpl | 9 -
view/voting_fakelink.tpl | 1 -
view/wall_thread.tpl | 120 ------
view/wallmessage.tpl | 32 --
view/wallmsg-end.tpl | 0
view/wallmsg-header.tpl | 82 ----
view/xrd_diaspora.tpl | 3 -
view/xrd_host.tpl | 18 -
view/xrd_person.tpl | 38 --
1138 files changed, 6 insertions(+), 42288 deletions(-)
delete mode 100644 view/404.tpl
delete mode 100644 view/acl_selector.tpl
delete mode 100644 view/admin_aside.tpl
delete mode 100644 view/admin_logs.tpl
delete mode 100644 view/admin_plugins.tpl
delete mode 100644 view/admin_plugins_details.tpl
delete mode 100644 view/admin_remoteupdate.tpl
delete mode 100644 view/admin_site.tpl
delete mode 100644 view/admin_summary.tpl
delete mode 100644 view/admin_users.tpl
delete mode 100644 view/album_edit.tpl
delete mode 100644 view/api_config_xml.tpl
delete mode 100644 view/api_friends_xml.tpl
delete mode 100644 view/api_ratelimit_xml.tpl
delete mode 100644 view/api_status_xml.tpl
delete mode 100644 view/api_test_xml.tpl
delete mode 100644 view/api_timeline_atom.tpl
delete mode 100644 view/api_timeline_rss.tpl
delete mode 100644 view/api_timeline_xml.tpl
delete mode 100644 view/api_user_xml.tpl
delete mode 100644 view/apps.tpl
delete mode 100644 view/atom_feed.tpl
delete mode 100644 view/atom_feed_dfrn.tpl
delete mode 100644 view/atom_mail.tpl
delete mode 100644 view/atom_relocate.tpl
delete mode 100644 view/atom_suggest.tpl
delete mode 100644 view/auto_request.tpl
delete mode 100644 view/birthdays_reminder.tpl
delete mode 100644 view/categories_widget.tpl
delete mode 100644 view/comment_item.tpl
delete mode 100644 view/common_friends.tpl
delete mode 100644 view/common_tabs.tpl
delete mode 100644 view/confirm.tpl
delete mode 100644 view/contact_block.tpl
delete mode 100644 view/contact_edit.tpl
delete mode 100644 view/contact_end.tpl
delete mode 100644 view/contact_head.tpl
delete mode 100644 view/contact_template.tpl
delete mode 100644 view/contacts-end.tpl
delete mode 100644 view/contacts-head.tpl
delete mode 100644 view/contacts-template.tpl
delete mode 100644 view/contacts-widget-sidebar.tpl
delete mode 100644 view/content.tpl
delete mode 100644 view/conversation.tpl
delete mode 100644 view/crepair.tpl
delete mode 100644 view/cropbody.tpl
delete mode 100644 view/cropend.tpl
delete mode 100644 view/crophead.tpl
delete mode 100644 view/delegate.tpl
delete mode 100644 view/dfrn_req_confirm.tpl
delete mode 100644 view/dfrn_request.tpl
delete mode 100644 view/diasp_dec_hdr.tpl
delete mode 100644 view/diaspora_comment.tpl
delete mode 100644 view/diaspora_comment_relay.tpl
delete mode 100644 view/diaspora_conversation.tpl
delete mode 100644 view/diaspora_like.tpl
delete mode 100755 view/diaspora_like_relay.tpl
delete mode 100644 view/diaspora_message.tpl
delete mode 100644 view/diaspora_photo.tpl
delete mode 100644 view/diaspora_post.tpl
delete mode 100644 view/diaspora_profile.tpl
delete mode 100644 view/diaspora_relay_retraction.tpl
delete mode 100755 view/diaspora_relayable_retraction.tpl
delete mode 100644 view/diaspora_retract.tpl
delete mode 100644 view/diaspora_share.tpl
delete mode 100644 view/diaspora_signed_retract.tpl
delete mode 100644 view/diaspora_vcard.tpl
delete mode 100644 view/directory_header.tpl
delete mode 100644 view/directory_item.tpl
delete mode 100644 view/display-head.tpl
delete mode 100644 view/email_notify_html.tpl
delete mode 100644 view/email_notify_text.tpl
delete mode 100644 view/end.tpl
delete mode 100644 view/event.tpl
delete mode 100644 view/event_end.tpl
delete mode 100644 view/event_form.tpl
delete mode 100644 view/event_head.tpl
delete mode 100644 view/events-js.tpl
delete mode 100644 view/events.tpl
delete mode 100644 view/events_reminder.tpl
delete mode 100644 view/failed_updates.tpl
delete mode 100644 view/fake_feed.tpl
delete mode 100644 view/field.tpl
delete mode 100644 view/field_checkbox.tpl
delete mode 100644 view/field_combobox.tpl
delete mode 100644 view/field_custom.tpl
delete mode 100644 view/field_input.tpl
delete mode 100644 view/field_intcheckbox.tpl
delete mode 100644 view/field_openid.tpl
delete mode 100644 view/field_password.tpl
delete mode 100644 view/field_radio.tpl
delete mode 100644 view/field_richtext.tpl
delete mode 100644 view/field_select.tpl
delete mode 100644 view/field_select_raw.tpl
delete mode 100644 view/field_textarea.tpl
delete mode 100644 view/field_themeselect.tpl
delete mode 100644 view/field_yesno.tpl
delete mode 100644 view/fileas_widget.tpl
delete mode 100644 view/filebrowser.tpl
delete mode 100644 view/filer_dialog.tpl
delete mode 100644 view/follow.tpl
delete mode 100644 view/follow_slap.tpl
delete mode 100644 view/generic_links_widget.tpl
delete mode 100644 view/group_drop.tpl
delete mode 100644 view/group_edit.tpl
delete mode 100644 view/group_selection.tpl
delete mode 100644 view/group_side.tpl
delete mode 100644 view/groupeditor.tpl
delete mode 100644 view/head.tpl
delete mode 100644 view/hide_comments.tpl
delete mode 100644 view/install.tpl
delete mode 100644 view/install_checks.tpl
delete mode 100644 view/install_db.tpl
delete mode 100644 view/install_settings.tpl
delete mode 100644 view/intros.tpl
delete mode 100644 view/invite.tpl
delete mode 100644 view/jot-end.tpl
delete mode 100644 view/jot-header.tpl
delete mode 100644 view/jot.tpl
delete mode 100644 view/jot_geotag.tpl
delete mode 100644 view/lang_selector.tpl
delete mode 100644 view/like_noshare.tpl
delete mode 100644 view/login.tpl
delete mode 100644 view/login_head.tpl
delete mode 100644 view/logout.tpl
delete mode 100644 view/lostpass.tpl
delete mode 100644 view/magicsig.tpl
delete mode 100644 view/mail_conv.tpl
delete mode 100644 view/mail_display.tpl
delete mode 100644 view/mail_head.tpl
delete mode 100644 view/mail_list.tpl
delete mode 100644 view/maintenance.tpl
delete mode 100644 view/manage.tpl
delete mode 100644 view/match.tpl
delete mode 100644 view/message-end.tpl
delete mode 100644 view/message-head.tpl
delete mode 100644 view/message_side.tpl
delete mode 100644 view/moderated_comment.tpl
delete mode 100644 view/mood_content.tpl
delete mode 100644 view/msg-end.tpl
delete mode 100644 view/msg-header.tpl
delete mode 100644 view/nav.tpl
delete mode 100644 view/navigation.tpl
delete mode 100644 view/netfriend.tpl
delete mode 100644 view/nets.tpl
delete mode 100644 view/nogroup-template.tpl
delete mode 100644 view/notifications.tpl
delete mode 100644 view/notifications_comments_item.tpl
delete mode 100644 view/notifications_dislikes_item.tpl
delete mode 100644 view/notifications_friends_item.tpl
delete mode 100644 view/notifications_likes_item.tpl
delete mode 100644 view/notifications_network_item.tpl
delete mode 100644 view/notifications_posts_item.tpl
delete mode 100644 view/notify.tpl
delete mode 100644 view/oauth_authorize.tpl
delete mode 100644 view/oauth_authorize_done.tpl
delete mode 100755 view/oembed_video.tpl
delete mode 100644 view/oexchange_xrd.tpl
delete mode 100644 view/opensearch.tpl
delete mode 100644 view/pagetypes.tpl
delete mode 100644 view/peoplefind.tpl
delete mode 100644 view/photo_album.tpl
delete mode 100644 view/photo_drop.tpl
delete mode 100644 view/photo_edit.tpl
delete mode 100644 view/photo_edit_head.tpl
delete mode 100644 view/photo_item.tpl
delete mode 100644 view/photo_top.tpl
delete mode 100644 view/photo_view.tpl
delete mode 100644 view/photos_default_uploader_box.tpl
delete mode 100644 view/photos_default_uploader_submit.tpl
delete mode 100644 view/photos_head.tpl
delete mode 100644 view/photos_recent.tpl
delete mode 100644 view/photos_upload.tpl
delete mode 100644 view/poco_entry_xml.tpl
delete mode 100644 view/poco_xml.tpl
delete mode 100644 view/poke_content.tpl
delete mode 100644 view/posted_date_widget.tpl
delete mode 100644 view/profed_end.tpl
delete mode 100644 view/profed_head.tpl
delete mode 100644 view/profile-hide-friends.tpl
delete mode 100644 view/profile-hide-wall.tpl
delete mode 100644 view/profile-in-directory.tpl
delete mode 100644 view/profile-in-netdir.tpl
delete mode 100644 view/profile_advanced.tpl
delete mode 100644 view/profile_edit.tpl
delete mode 100644 view/profile_edlink.tpl
delete mode 100644 view/profile_entry.tpl
delete mode 100644 view/profile_listing_header.tpl
delete mode 100644 view/profile_photo.tpl
delete mode 100644 view/profile_publish.tpl
delete mode 100644 view/profile_vcard.tpl
delete mode 100644 view/prv_message.tpl
delete mode 100644 view/pwdreset.tpl
delete mode 100644 view/register.tpl
delete mode 100644 view/remote_friends_common.tpl
delete mode 100644 view/removeme.tpl
delete mode 100644 view/saved_searches_aside.tpl
delete mode 100644 view/search_item.tpl
delete mode 100644 view/settings-end.tpl
delete mode 100644 view/settings-head.tpl
delete mode 100644 view/settings.tpl
delete mode 100644 view/settings_addons.tpl
delete mode 100644 view/settings_connectors.tpl
delete mode 100644 view/settings_display.tpl
delete mode 100644 view/settings_display_end.tpl
delete mode 100644 view/settings_features.tpl
delete mode 100644 view/settings_nick_set.tpl
delete mode 100644 view/settings_nick_subdir.tpl
delete mode 100644 view/settings_oauth.tpl
delete mode 100644 view/settings_oauth_edit.tpl
delete mode 100644 view/smarty3/404.tpl
delete mode 100644 view/smarty3/acl_selector.tpl
delete mode 100644 view/smarty3/admin_aside.tpl
delete mode 100644 view/smarty3/admin_logs.tpl
delete mode 100644 view/smarty3/admin_plugins.tpl
delete mode 100644 view/smarty3/admin_plugins_details.tpl
delete mode 100644 view/smarty3/admin_remoteupdate.tpl
delete mode 100644 view/smarty3/admin_site.tpl
delete mode 100644 view/smarty3/admin_summary.tpl
delete mode 100644 view/smarty3/admin_users.tpl
delete mode 100644 view/smarty3/album_edit.tpl
delete mode 100644 view/smarty3/api_config_xml.tpl
delete mode 100644 view/smarty3/api_friends_xml.tpl
delete mode 100644 view/smarty3/api_ratelimit_xml.tpl
delete mode 100644 view/smarty3/api_status_xml.tpl
delete mode 100644 view/smarty3/api_test_xml.tpl
delete mode 100644 view/smarty3/api_timeline_atom.tpl
delete mode 100644 view/smarty3/api_timeline_rss.tpl
delete mode 100644 view/smarty3/api_timeline_xml.tpl
delete mode 100644 view/smarty3/api_user_xml.tpl
delete mode 100644 view/smarty3/apps.tpl
delete mode 100644 view/smarty3/atom_feed.tpl
delete mode 100644 view/smarty3/atom_feed_dfrn.tpl
delete mode 100644 view/smarty3/atom_mail.tpl
delete mode 100644 view/smarty3/atom_relocate.tpl
delete mode 100644 view/smarty3/atom_suggest.tpl
delete mode 100644 view/smarty3/auto_request.tpl
delete mode 100644 view/smarty3/birthdays_reminder.tpl
delete mode 100644 view/smarty3/categories_widget.tpl
delete mode 100644 view/smarty3/comment_item.tpl
delete mode 100644 view/smarty3/common_friends.tpl
delete mode 100644 view/smarty3/common_tabs.tpl
delete mode 100644 view/smarty3/confirm.tpl
delete mode 100644 view/smarty3/contact_block.tpl
delete mode 100644 view/smarty3/contact_edit.tpl
delete mode 100644 view/smarty3/contact_end.tpl
delete mode 100644 view/smarty3/contact_head.tpl
delete mode 100644 view/smarty3/contact_template.tpl
delete mode 100644 view/smarty3/contacts-end.tpl
delete mode 100644 view/smarty3/contacts-head.tpl
delete mode 100644 view/smarty3/contacts-template.tpl
delete mode 100644 view/smarty3/contacts-widget-sidebar.tpl
delete mode 100644 view/smarty3/content.tpl
delete mode 100644 view/smarty3/conversation.tpl
delete mode 100644 view/smarty3/crepair.tpl
delete mode 100644 view/smarty3/cropbody.tpl
delete mode 100644 view/smarty3/cropend.tpl
delete mode 100644 view/smarty3/crophead.tpl
delete mode 100644 view/smarty3/delegate.tpl
delete mode 100644 view/smarty3/dfrn_req_confirm.tpl
delete mode 100644 view/smarty3/dfrn_request.tpl
delete mode 100644 view/smarty3/diasp_dec_hdr.tpl
delete mode 100644 view/smarty3/diaspora_comment.tpl
delete mode 100644 view/smarty3/diaspora_comment_relay.tpl
delete mode 100644 view/smarty3/diaspora_conversation.tpl
delete mode 100644 view/smarty3/diaspora_like.tpl
delete mode 100644 view/smarty3/diaspora_like_relay.tpl
delete mode 100644 view/smarty3/diaspora_message.tpl
delete mode 100644 view/smarty3/diaspora_photo.tpl
delete mode 100644 view/smarty3/diaspora_post.tpl
delete mode 100644 view/smarty3/diaspora_profile.tpl
delete mode 100644 view/smarty3/diaspora_relay_retraction.tpl
delete mode 100644 view/smarty3/diaspora_relayable_retraction.tpl
delete mode 100644 view/smarty3/diaspora_retract.tpl
delete mode 100644 view/smarty3/diaspora_share.tpl
delete mode 100644 view/smarty3/diaspora_signed_retract.tpl
delete mode 100644 view/smarty3/diaspora_vcard.tpl
delete mode 100644 view/smarty3/directory_header.tpl
delete mode 100644 view/smarty3/directory_item.tpl
delete mode 100644 view/smarty3/display-head.tpl
delete mode 100644 view/smarty3/email_notify_html.tpl
delete mode 100644 view/smarty3/email_notify_text.tpl
delete mode 100644 view/smarty3/end.tpl
delete mode 100644 view/smarty3/event.tpl
delete mode 100644 view/smarty3/event_end.tpl
delete mode 100644 view/smarty3/event_form.tpl
delete mode 100644 view/smarty3/event_head.tpl
delete mode 100644 view/smarty3/events-js.tpl
delete mode 100644 view/smarty3/events.tpl
delete mode 100644 view/smarty3/events_reminder.tpl
delete mode 100644 view/smarty3/failed_updates.tpl
delete mode 100644 view/smarty3/fake_feed.tpl
delete mode 100644 view/smarty3/field.tpl
delete mode 100644 view/smarty3/field_checkbox.tpl
delete mode 100644 view/smarty3/field_combobox.tpl
delete mode 100644 view/smarty3/field_custom.tpl
delete mode 100644 view/smarty3/field_input.tpl
delete mode 100644 view/smarty3/field_intcheckbox.tpl
delete mode 100644 view/smarty3/field_openid.tpl
delete mode 100644 view/smarty3/field_password.tpl
delete mode 100644 view/smarty3/field_radio.tpl
delete mode 100644 view/smarty3/field_richtext.tpl
delete mode 100644 view/smarty3/field_select.tpl
delete mode 100644 view/smarty3/field_select_raw.tpl
delete mode 100644 view/smarty3/field_textarea.tpl
delete mode 100644 view/smarty3/field_themeselect.tpl
delete mode 100644 view/smarty3/field_yesno.tpl
delete mode 100644 view/smarty3/fileas_widget.tpl
delete mode 100644 view/smarty3/filebrowser.tpl
delete mode 100644 view/smarty3/filer_dialog.tpl
delete mode 100644 view/smarty3/follow.tpl
delete mode 100644 view/smarty3/follow_slap.tpl
delete mode 100644 view/smarty3/generic_links_widget.tpl
delete mode 100644 view/smarty3/group_drop.tpl
delete mode 100644 view/smarty3/group_edit.tpl
delete mode 100644 view/smarty3/group_selection.tpl
delete mode 100644 view/smarty3/group_side.tpl
delete mode 100644 view/smarty3/groupeditor.tpl
delete mode 100644 view/smarty3/head.tpl
delete mode 100644 view/smarty3/hide_comments.tpl
delete mode 100644 view/smarty3/install.tpl
delete mode 100644 view/smarty3/install_checks.tpl
delete mode 100644 view/smarty3/install_db.tpl
delete mode 100644 view/smarty3/install_settings.tpl
delete mode 100644 view/smarty3/intros.tpl
delete mode 100644 view/smarty3/invite.tpl
delete mode 100644 view/smarty3/jot-end.tpl
delete mode 100644 view/smarty3/jot-header.tpl
delete mode 100644 view/smarty3/jot.tpl
delete mode 100644 view/smarty3/jot_geotag.tpl
delete mode 100644 view/smarty3/lang_selector.tpl
delete mode 100644 view/smarty3/like_noshare.tpl
delete mode 100644 view/smarty3/login.tpl
delete mode 100644 view/smarty3/login_head.tpl
delete mode 100644 view/smarty3/logout.tpl
delete mode 100644 view/smarty3/lostpass.tpl
delete mode 100644 view/smarty3/magicsig.tpl
delete mode 100644 view/smarty3/mail_conv.tpl
delete mode 100644 view/smarty3/mail_display.tpl
delete mode 100644 view/smarty3/mail_head.tpl
delete mode 100644 view/smarty3/mail_list.tpl
delete mode 100644 view/smarty3/maintenance.tpl
delete mode 100644 view/smarty3/manage.tpl
delete mode 100644 view/smarty3/match.tpl
delete mode 100644 view/smarty3/message-end.tpl
delete mode 100644 view/smarty3/message-head.tpl
delete mode 100644 view/smarty3/message_side.tpl
delete mode 100644 view/smarty3/moderated_comment.tpl
delete mode 100644 view/smarty3/mood_content.tpl
delete mode 100644 view/smarty3/msg-end.tpl
delete mode 100644 view/smarty3/msg-header.tpl
delete mode 100644 view/smarty3/nav.tpl
delete mode 100644 view/smarty3/navigation.tpl
delete mode 100644 view/smarty3/netfriend.tpl
delete mode 100644 view/smarty3/nets.tpl
delete mode 100644 view/smarty3/nogroup-template.tpl
delete mode 100644 view/smarty3/notifications.tpl
delete mode 100644 view/smarty3/notifications_comments_item.tpl
delete mode 100644 view/smarty3/notifications_dislikes_item.tpl
delete mode 100644 view/smarty3/notifications_friends_item.tpl
delete mode 100644 view/smarty3/notifications_likes_item.tpl
delete mode 100644 view/smarty3/notifications_network_item.tpl
delete mode 100644 view/smarty3/notifications_posts_item.tpl
delete mode 100644 view/smarty3/notify.tpl
delete mode 100644 view/smarty3/oauth_authorize.tpl
delete mode 100644 view/smarty3/oauth_authorize_done.tpl
delete mode 100644 view/smarty3/oembed_video.tpl
delete mode 100644 view/smarty3/oexchange_xrd.tpl
delete mode 100644 view/smarty3/opensearch.tpl
delete mode 100644 view/smarty3/pagetypes.tpl
delete mode 100644 view/smarty3/peoplefind.tpl
delete mode 100644 view/smarty3/photo_album.tpl
delete mode 100644 view/smarty3/photo_drop.tpl
delete mode 100644 view/smarty3/photo_edit.tpl
delete mode 100644 view/smarty3/photo_edit_head.tpl
delete mode 100644 view/smarty3/photo_item.tpl
delete mode 100644 view/smarty3/photo_top.tpl
delete mode 100644 view/smarty3/photo_view.tpl
delete mode 100644 view/smarty3/photos_default_uploader_box.tpl
delete mode 100644 view/smarty3/photos_default_uploader_submit.tpl
delete mode 100644 view/smarty3/photos_head.tpl
delete mode 100644 view/smarty3/photos_recent.tpl
delete mode 100644 view/smarty3/photos_upload.tpl
delete mode 100644 view/smarty3/poco_entry_xml.tpl
delete mode 100644 view/smarty3/poco_xml.tpl
delete mode 100644 view/smarty3/poke_content.tpl
delete mode 100644 view/smarty3/posted_date_widget.tpl
delete mode 100644 view/smarty3/profed_end.tpl
delete mode 100644 view/smarty3/profed_head.tpl
delete mode 100644 view/smarty3/profile-hide-friends.tpl
delete mode 100644 view/smarty3/profile-hide-wall.tpl
delete mode 100644 view/smarty3/profile-in-directory.tpl
delete mode 100644 view/smarty3/profile-in-netdir.tpl
delete mode 100644 view/smarty3/profile_advanced.tpl
delete mode 100644 view/smarty3/profile_edit.tpl
delete mode 100644 view/smarty3/profile_edlink.tpl
delete mode 100644 view/smarty3/profile_entry.tpl
delete mode 100644 view/smarty3/profile_listing_header.tpl
delete mode 100644 view/smarty3/profile_photo.tpl
delete mode 100644 view/smarty3/profile_publish.tpl
delete mode 100644 view/smarty3/profile_vcard.tpl
delete mode 100644 view/smarty3/prv_message.tpl
delete mode 100644 view/smarty3/pwdreset.tpl
delete mode 100644 view/smarty3/register.tpl
delete mode 100644 view/smarty3/remote_friends_common.tpl
delete mode 100644 view/smarty3/removeme.tpl
delete mode 100644 view/smarty3/saved_searches_aside.tpl
delete mode 100644 view/smarty3/search_item.tpl
delete mode 100644 view/smarty3/settings-end.tpl
delete mode 100644 view/smarty3/settings-head.tpl
delete mode 100644 view/smarty3/settings.tpl
delete mode 100644 view/smarty3/settings_addons.tpl
delete mode 100644 view/smarty3/settings_connectors.tpl
delete mode 100644 view/smarty3/settings_display.tpl
delete mode 100644 view/smarty3/settings_display_end.tpl
delete mode 100644 view/smarty3/settings_features.tpl
delete mode 100644 view/smarty3/settings_nick_set.tpl
delete mode 100644 view/smarty3/settings_nick_subdir.tpl
delete mode 100644 view/smarty3/settings_oauth.tpl
delete mode 100644 view/smarty3/settings_oauth_edit.tpl
delete mode 100644 view/smarty3/suggest_friends.tpl
delete mode 100644 view/smarty3/suggestions.tpl
delete mode 100644 view/smarty3/tag_slap.tpl
delete mode 100644 view/smarty3/threaded_conversation.tpl
delete mode 100644 view/smarty3/toggle_mobile_footer.tpl
delete mode 100644 view/smarty3/uexport.tpl
delete mode 100644 view/smarty3/uimport.tpl
delete mode 100644 view/smarty3/vcard-widget.tpl
delete mode 100644 view/smarty3/viewcontact_template.tpl
delete mode 100644 view/smarty3/voting_fakelink.tpl
delete mode 100644 view/smarty3/wall_thread.tpl
delete mode 100644 view/smarty3/wallmessage.tpl
delete mode 100644 view/smarty3/wallmsg-end.tpl
delete mode 100644 view/smarty3/wallmsg-header.tpl
delete mode 100644 view/smarty3/xrd_diaspora.tpl
delete mode 100644 view/smarty3/xrd_host.tpl
delete mode 100644 view/smarty3/xrd_person.tpl
delete mode 100644 view/suggest_friends.tpl
delete mode 100644 view/suggestions.tpl
delete mode 100644 view/tag_slap.tpl
delete mode 100644 view/theme/cleanzero/nav.tpl
delete mode 100644 view/theme/cleanzero/smarty3/nav.tpl
delete mode 100644 view/theme/cleanzero/smarty3/theme_settings.tpl
delete mode 100644 view/theme/cleanzero/theme_settings.tpl
delete mode 100644 view/theme/comix-plain/comment_item.tpl
delete mode 100644 view/theme/comix-plain/search_item.tpl
delete mode 100644 view/theme/comix-plain/smarty3/comment_item.tpl
delete mode 100644 view/theme/comix-plain/smarty3/search_item.tpl
delete mode 100644 view/theme/comix/comment_item.tpl
delete mode 100644 view/theme/comix/search_item.tpl
delete mode 100644 view/theme/comix/smarty3/comment_item.tpl
delete mode 100644 view/theme/comix/smarty3/search_item.tpl
delete mode 100644 view/theme/decaf-mobile/acl_html_selector.tpl
delete mode 100644 view/theme/decaf-mobile/acl_selector.tpl
delete mode 100644 view/theme/decaf-mobile/admin_aside.tpl
delete mode 100644 view/theme/decaf-mobile/admin_site.tpl
delete mode 100644 view/theme/decaf-mobile/admin_users.tpl
delete mode 100644 view/theme/decaf-mobile/album_edit.tpl
delete mode 100644 view/theme/decaf-mobile/categories_widget.tpl
delete mode 100755 view/theme/decaf-mobile/comment_item.tpl
delete mode 100644 view/theme/decaf-mobile/common_tabs.tpl
delete mode 100644 view/theme/decaf-mobile/contact_block.tpl
delete mode 100644 view/theme/decaf-mobile/contact_edit.tpl
delete mode 100644 view/theme/decaf-mobile/contact_head.tpl
delete mode 100644 view/theme/decaf-mobile/contact_template.tpl
delete mode 100644 view/theme/decaf-mobile/contacts-end.tpl
delete mode 100644 view/theme/decaf-mobile/contacts-head.tpl
delete mode 100644 view/theme/decaf-mobile/contacts-template.tpl
delete mode 100644 view/theme/decaf-mobile/contacts-widget-sidebar.tpl
delete mode 100644 view/theme/decaf-mobile/conversation.tpl
delete mode 100644 view/theme/decaf-mobile/cropbody.tpl
delete mode 100644 view/theme/decaf-mobile/cropend.tpl
delete mode 100644 view/theme/decaf-mobile/crophead.tpl
delete mode 100644 view/theme/decaf-mobile/display-head.tpl
delete mode 100644 view/theme/decaf-mobile/end.tpl
delete mode 100644 view/theme/decaf-mobile/event_end.tpl
delete mode 100644 view/theme/decaf-mobile/event_head.tpl
delete mode 100644 view/theme/decaf-mobile/field_checkbox.tpl
delete mode 100644 view/theme/decaf-mobile/field_input.tpl
delete mode 100644 view/theme/decaf-mobile/field_openid.tpl
delete mode 100644 view/theme/decaf-mobile/field_password.tpl
delete mode 100644 view/theme/decaf-mobile/field_themeselect.tpl
delete mode 100644 view/theme/decaf-mobile/field_yesno.tpl
delete mode 100644 view/theme/decaf-mobile/generic_links_widget.tpl
delete mode 100644 view/theme/decaf-mobile/group_drop.tpl
delete mode 100644 view/theme/decaf-mobile/group_side.tpl
delete mode 100644 view/theme/decaf-mobile/head.tpl
delete mode 100644 view/theme/decaf-mobile/jot-end.tpl
delete mode 100644 view/theme/decaf-mobile/jot-header.tpl
delete mode 100644 view/theme/decaf-mobile/jot.tpl
delete mode 100644 view/theme/decaf-mobile/jot_geotag.tpl
delete mode 100644 view/theme/decaf-mobile/lang_selector.tpl
delete mode 100644 view/theme/decaf-mobile/like_noshare.tpl
delete mode 100644 view/theme/decaf-mobile/login.tpl
delete mode 100644 view/theme/decaf-mobile/login_head.tpl
delete mode 100644 view/theme/decaf-mobile/lostpass.tpl
delete mode 100644 view/theme/decaf-mobile/mail_conv.tpl
delete mode 100644 view/theme/decaf-mobile/mail_list.tpl
delete mode 100644 view/theme/decaf-mobile/manage.tpl
delete mode 100644 view/theme/decaf-mobile/message-end.tpl
delete mode 100644 view/theme/decaf-mobile/message-head.tpl
delete mode 100644 view/theme/decaf-mobile/msg-end.tpl
delete mode 100644 view/theme/decaf-mobile/msg-header.tpl
delete mode 100644 view/theme/decaf-mobile/nav.tpl
delete mode 100644 view/theme/decaf-mobile/photo_drop.tpl
delete mode 100644 view/theme/decaf-mobile/photo_edit.tpl
delete mode 100644 view/theme/decaf-mobile/photo_edit_head.tpl
delete mode 100644 view/theme/decaf-mobile/photo_view.tpl
delete mode 100644 view/theme/decaf-mobile/photos_head.tpl
delete mode 100644 view/theme/decaf-mobile/photos_upload.tpl
delete mode 100644 view/theme/decaf-mobile/profed_end.tpl
delete mode 100644 view/theme/decaf-mobile/profed_head.tpl
delete mode 100644 view/theme/decaf-mobile/profile_edit.tpl
delete mode 100644 view/theme/decaf-mobile/profile_photo.tpl
delete mode 100644 view/theme/decaf-mobile/profile_vcard.tpl
delete mode 100644 view/theme/decaf-mobile/prv_message.tpl
delete mode 100644 view/theme/decaf-mobile/register.tpl
delete mode 100644 view/theme/decaf-mobile/search_item.tpl
delete mode 100644 view/theme/decaf-mobile/settings-head.tpl
delete mode 100644 view/theme/decaf-mobile/settings.tpl
delete mode 100644 view/theme/decaf-mobile/settings_display_end.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/acl_html_selector.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/acl_selector.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/admin_aside.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/admin_site.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/admin_users.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/album_edit.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/categories_widget.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/comment_item.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/common_tabs.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/contact_block.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/contact_edit.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/contact_head.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/contact_template.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/contacts-end.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/contacts-head.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/contacts-template.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/contacts-widget-sidebar.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/conversation.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/cropbody.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/cropend.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/crophead.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/display-head.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/end.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/event_end.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/event_head.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/field_checkbox.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/field_input.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/field_openid.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/field_password.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/field_themeselect.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/field_yesno.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/generic_links_widget.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/group_drop.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/group_side.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/head.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/jot-end.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/jot-header.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/jot.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/jot_geotag.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/lang_selector.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/like_noshare.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/login.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/login_head.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/lostpass.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/mail_conv.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/mail_list.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/manage.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/message-end.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/message-head.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/moderated_comment.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/msg-end.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/msg-header.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/nav.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/photo_drop.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/photo_edit.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/photo_edit_head.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/photo_view.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/photos_head.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/photos_upload.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/profed_end.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/profed_head.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/profile_edit.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/profile_photo.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/profile_vcard.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/prv_message.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/register.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/search_item.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/settings-head.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/settings.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/settings_display_end.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/suggest_friends.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/threaded_conversation.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/voting_fakelink.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/wall_thread.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/wall_thread_toponly.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/wallmessage.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/wallmsg-end.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/wallmsg-header.tpl
delete mode 100644 view/theme/decaf-mobile/suggest_friends.tpl
delete mode 100644 view/theme/decaf-mobile/threaded_conversation.tpl
delete mode 100644 view/theme/decaf-mobile/voting_fakelink.tpl
delete mode 100644 view/theme/decaf-mobile/wall_thread.tpl
delete mode 100644 view/theme/decaf-mobile/wall_thread_toponly.tpl
delete mode 100644 view/theme/decaf-mobile/wallmessage.tpl
delete mode 100644 view/theme/decaf-mobile/wallmsg-end.tpl
delete mode 100644 view/theme/decaf-mobile/wallmsg-header.tpl
delete mode 100644 view/theme/diabook/admin_users.tpl
delete mode 100644 view/theme/diabook/bottom.tpl
delete mode 100644 view/theme/diabook/ch_directory_item.tpl
delete mode 100644 view/theme/diabook/comment_item.tpl
delete mode 100644 view/theme/diabook/communityhome.tpl
delete mode 100644 view/theme/diabook/contact_template.tpl
delete mode 100644 view/theme/diabook/directory_item.tpl
delete mode 100644 view/theme/diabook/footer.tpl
delete mode 100644 view/theme/diabook/generic_links_widget.tpl
delete mode 100644 view/theme/diabook/group_side.tpl
delete mode 100644 view/theme/diabook/jot.tpl
delete mode 100644 view/theme/diabook/login.tpl
delete mode 100644 view/theme/diabook/mail_conv.tpl
delete mode 100644 view/theme/diabook/mail_display.tpl
delete mode 100644 view/theme/diabook/mail_list.tpl
delete mode 100644 view/theme/diabook/message_side.tpl
delete mode 100644 view/theme/diabook/nav.tpl
delete mode 100644 view/theme/diabook/nets.tpl
delete mode 100644 view/theme/diabook/oembed_video.tpl
delete mode 100644 view/theme/diabook/photo_item.tpl
delete mode 100644 view/theme/diabook/photo_view.tpl
delete mode 100644 view/theme/diabook/profile_side.tpl
delete mode 100644 view/theme/diabook/profile_vcard.tpl
delete mode 100644 view/theme/diabook/prv_message.tpl
delete mode 100644 view/theme/diabook/right_aside.tpl
delete mode 100644 view/theme/diabook/search_item.tpl
delete mode 100644 view/theme/diabook/smarty3/admin_users.tpl
delete mode 100644 view/theme/diabook/smarty3/bottom.tpl
delete mode 100644 view/theme/diabook/smarty3/ch_directory_item.tpl
delete mode 100644 view/theme/diabook/smarty3/comment_item.tpl
delete mode 100644 view/theme/diabook/smarty3/communityhome.tpl
delete mode 100644 view/theme/diabook/smarty3/contact_template.tpl
delete mode 100644 view/theme/diabook/smarty3/directory_item.tpl
delete mode 100644 view/theme/diabook/smarty3/footer.tpl
delete mode 100644 view/theme/diabook/smarty3/generic_links_widget.tpl
delete mode 100644 view/theme/diabook/smarty3/group_side.tpl
delete mode 100644 view/theme/diabook/smarty3/jot.tpl
delete mode 100644 view/theme/diabook/smarty3/login.tpl
delete mode 100644 view/theme/diabook/smarty3/mail_conv.tpl
delete mode 100644 view/theme/diabook/smarty3/mail_display.tpl
delete mode 100644 view/theme/diabook/smarty3/mail_list.tpl
delete mode 100644 view/theme/diabook/smarty3/message_side.tpl
delete mode 100644 view/theme/diabook/smarty3/nav.tpl
delete mode 100644 view/theme/diabook/smarty3/nets.tpl
delete mode 100644 view/theme/diabook/smarty3/oembed_video.tpl
delete mode 100644 view/theme/diabook/smarty3/photo_item.tpl
delete mode 100644 view/theme/diabook/smarty3/photo_view.tpl
delete mode 100644 view/theme/diabook/smarty3/profile_side.tpl
delete mode 100644 view/theme/diabook/smarty3/profile_vcard.tpl
delete mode 100644 view/theme/diabook/smarty3/prv_message.tpl
delete mode 100644 view/theme/diabook/smarty3/right_aside.tpl
delete mode 100644 view/theme/diabook/smarty3/search_item.tpl
delete mode 100644 view/theme/diabook/smarty3/theme_settings.tpl
delete mode 100644 view/theme/diabook/smarty3/wall_thread.tpl
delete mode 100644 view/theme/diabook/theme_settings.tpl
delete mode 100644 view/theme/diabook/wall_thread.tpl
delete mode 100644 view/theme/dispy/bottom.tpl
delete mode 100644 view/theme/dispy/comment_item.tpl
delete mode 100644 view/theme/dispy/communityhome.tpl
delete mode 100644 view/theme/dispy/contact_template.tpl
delete mode 100644 view/theme/dispy/conversation.tpl
delete mode 100644 view/theme/dispy/group_side.tpl
delete mode 100644 view/theme/dispy/header.tpl
delete mode 100644 view/theme/dispy/jot-header.tpl
delete mode 100644 view/theme/dispy/jot.tpl
delete mode 100644 view/theme/dispy/lang_selector.tpl
delete mode 100644 view/theme/dispy/mail_head.tpl
delete mode 100644 view/theme/dispy/nav.tpl
delete mode 100644 view/theme/dispy/photo_edit.tpl
delete mode 100644 view/theme/dispy/photo_view.tpl
delete mode 100644 view/theme/dispy/profile_vcard.tpl
delete mode 100644 view/theme/dispy/saved_searches_aside.tpl
delete mode 100644 view/theme/dispy/search_item.tpl
delete mode 100644 view/theme/dispy/smarty3/bottom.tpl
delete mode 100644 view/theme/dispy/smarty3/comment_item.tpl
delete mode 100644 view/theme/dispy/smarty3/communityhome.tpl
delete mode 100644 view/theme/dispy/smarty3/contact_template.tpl
delete mode 100644 view/theme/dispy/smarty3/conversation.tpl
delete mode 100644 view/theme/dispy/smarty3/group_side.tpl
delete mode 100644 view/theme/dispy/smarty3/header.tpl
delete mode 100644 view/theme/dispy/smarty3/jot-header.tpl
delete mode 100644 view/theme/dispy/smarty3/jot.tpl
delete mode 100644 view/theme/dispy/smarty3/lang_selector.tpl
delete mode 100644 view/theme/dispy/smarty3/mail_head.tpl
delete mode 100644 view/theme/dispy/smarty3/nav.tpl
delete mode 100644 view/theme/dispy/smarty3/photo_edit.tpl
delete mode 100644 view/theme/dispy/smarty3/photo_view.tpl
delete mode 100644 view/theme/dispy/smarty3/profile_vcard.tpl
delete mode 100644 view/theme/dispy/smarty3/saved_searches_aside.tpl
delete mode 100644 view/theme/dispy/smarty3/search_item.tpl
delete mode 100644 view/theme/dispy/smarty3/theme_settings.tpl
delete mode 100644 view/theme/dispy/smarty3/threaded_conversation.tpl
delete mode 100644 view/theme/dispy/smarty3/wall_thread.tpl
delete mode 100644 view/theme/dispy/theme_settings.tpl
delete mode 100644 view/theme/dispy/threaded_conversation.tpl
delete mode 100644 view/theme/dispy/wall_thread.tpl
delete mode 100755 view/theme/duepuntozero/comment_item.tpl
delete mode 100644 view/theme/duepuntozero/lang_selector.tpl
delete mode 100755 view/theme/duepuntozero/moderated_comment.tpl
delete mode 100644 view/theme/duepuntozero/nav.tpl
delete mode 100644 view/theme/duepuntozero/profile_vcard.tpl
delete mode 100644 view/theme/duepuntozero/prv_message.tpl
delete mode 100644 view/theme/duepuntozero/smarty3/comment_item.tpl
delete mode 100644 view/theme/duepuntozero/smarty3/lang_selector.tpl
delete mode 100644 view/theme/duepuntozero/smarty3/moderated_comment.tpl
delete mode 100644 view/theme/duepuntozero/smarty3/nav.tpl
delete mode 100644 view/theme/duepuntozero/smarty3/profile_vcard.tpl
delete mode 100644 view/theme/duepuntozero/smarty3/prv_message.tpl
delete mode 100644 view/theme/facepark/comment_item.tpl
delete mode 100644 view/theme/facepark/group_side.tpl
delete mode 100644 view/theme/facepark/jot.tpl
delete mode 100644 view/theme/facepark/nav.tpl
delete mode 100644 view/theme/facepark/profile_vcard.tpl
delete mode 100644 view/theme/facepark/search_item.tpl
delete mode 100644 view/theme/facepark/smarty3/comment_item.tpl
delete mode 100644 view/theme/facepark/smarty3/group_side.tpl
delete mode 100644 view/theme/facepark/smarty3/jot.tpl
delete mode 100644 view/theme/facepark/smarty3/nav.tpl
delete mode 100644 view/theme/facepark/smarty3/profile_vcard.tpl
delete mode 100644 view/theme/facepark/smarty3/search_item.tpl
delete mode 100644 view/theme/frost-mobile/acl_selector.tpl
delete mode 100644 view/theme/frost-mobile/admin_aside.tpl
delete mode 100644 view/theme/frost-mobile/admin_site.tpl
delete mode 100644 view/theme/frost-mobile/admin_users.tpl
delete mode 100644 view/theme/frost-mobile/categories_widget.tpl
delete mode 100755 view/theme/frost-mobile/comment_item.tpl
delete mode 100644 view/theme/frost-mobile/common_tabs.tpl
delete mode 100644 view/theme/frost-mobile/contact_block.tpl
delete mode 100644 view/theme/frost-mobile/contact_edit.tpl
delete mode 100644 view/theme/frost-mobile/contact_head.tpl
delete mode 100644 view/theme/frost-mobile/contact_template.tpl
delete mode 100644 view/theme/frost-mobile/contacts-end.tpl
delete mode 100644 view/theme/frost-mobile/contacts-head.tpl
delete mode 100644 view/theme/frost-mobile/contacts-template.tpl
delete mode 100644 view/theme/frost-mobile/contacts-widget-sidebar.tpl
delete mode 100644 view/theme/frost-mobile/conversation.tpl
delete mode 100644 view/theme/frost-mobile/cropbody.tpl
delete mode 100644 view/theme/frost-mobile/cropend.tpl
delete mode 100644 view/theme/frost-mobile/crophead.tpl
delete mode 100644 view/theme/frost-mobile/display-head.tpl
delete mode 100644 view/theme/frost-mobile/end.tpl
delete mode 100644 view/theme/frost-mobile/event.tpl
delete mode 100644 view/theme/frost-mobile/event_end.tpl
delete mode 100644 view/theme/frost-mobile/event_head.tpl
delete mode 100644 view/theme/frost-mobile/field_checkbox.tpl
delete mode 100644 view/theme/frost-mobile/field_input.tpl
delete mode 100644 view/theme/frost-mobile/field_openid.tpl
delete mode 100644 view/theme/frost-mobile/field_password.tpl
delete mode 100644 view/theme/frost-mobile/field_themeselect.tpl
delete mode 100644 view/theme/frost-mobile/generic_links_widget.tpl
delete mode 100644 view/theme/frost-mobile/group_drop.tpl
delete mode 100644 view/theme/frost-mobile/head.tpl
delete mode 100644 view/theme/frost-mobile/jot-end.tpl
delete mode 100644 view/theme/frost-mobile/jot-header.tpl
delete mode 100644 view/theme/frost-mobile/jot.tpl
delete mode 100644 view/theme/frost-mobile/jot_geotag.tpl
delete mode 100644 view/theme/frost-mobile/lang_selector.tpl
delete mode 100644 view/theme/frost-mobile/like_noshare.tpl
delete mode 100644 view/theme/frost-mobile/login.tpl
delete mode 100644 view/theme/frost-mobile/login_head.tpl
delete mode 100644 view/theme/frost-mobile/lostpass.tpl
delete mode 100644 view/theme/frost-mobile/mail_conv.tpl
delete mode 100644 view/theme/frost-mobile/mail_list.tpl
delete mode 100644 view/theme/frost-mobile/message-end.tpl
delete mode 100644 view/theme/frost-mobile/message-head.tpl
delete mode 100755 view/theme/frost-mobile/moderated_comment.tpl
delete mode 100644 view/theme/frost-mobile/msg-end.tpl
delete mode 100644 view/theme/frost-mobile/msg-header.tpl
delete mode 100644 view/theme/frost-mobile/nav.tpl
delete mode 100644 view/theme/frost-mobile/photo_drop.tpl
delete mode 100644 view/theme/frost-mobile/photo_edit.tpl
delete mode 100644 view/theme/frost-mobile/photo_edit_head.tpl
delete mode 100644 view/theme/frost-mobile/photo_view.tpl
delete mode 100644 view/theme/frost-mobile/photos_head.tpl
delete mode 100644 view/theme/frost-mobile/photos_upload.tpl
delete mode 100644 view/theme/frost-mobile/profed_end.tpl
delete mode 100644 view/theme/frost-mobile/profed_head.tpl
delete mode 100644 view/theme/frost-mobile/profile_edit.tpl
delete mode 100644 view/theme/frost-mobile/profile_photo.tpl
delete mode 100644 view/theme/frost-mobile/profile_vcard.tpl
delete mode 100644 view/theme/frost-mobile/prv_message.tpl
delete mode 100644 view/theme/frost-mobile/register.tpl
delete mode 100644 view/theme/frost-mobile/search_item.tpl
delete mode 100644 view/theme/frost-mobile/settings-head.tpl
delete mode 100644 view/theme/frost-mobile/settings.tpl
delete mode 100644 view/theme/frost-mobile/settings_display_end.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/acl_selector.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/admin_aside.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/admin_site.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/admin_users.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/categories_widget.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/comment_item.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/common_tabs.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/contact_block.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/contact_edit.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/contact_head.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/contact_template.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/contacts-end.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/contacts-head.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/contacts-template.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/contacts-widget-sidebar.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/conversation.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/cropbody.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/cropend.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/crophead.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/display-head.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/end.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/event.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/event_end.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/event_head.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/field_checkbox.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/field_input.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/field_openid.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/field_password.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/field_themeselect.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/generic_links_widget.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/group_drop.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/head.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/jot-end.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/jot-header.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/jot.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/jot_geotag.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/lang_selector.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/like_noshare.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/login.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/login_head.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/lostpass.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/mail_conv.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/mail_list.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/message-end.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/message-head.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/moderated_comment.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/msg-end.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/msg-header.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/nav.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/photo_drop.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/photo_edit.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/photo_edit_head.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/photo_view.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/photos_head.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/photos_upload.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/profed_end.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/profed_head.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/profile_edit.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/profile_photo.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/profile_vcard.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/prv_message.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/register.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/search_item.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/settings-head.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/settings.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/settings_display_end.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/suggest_friends.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/threaded_conversation.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/voting_fakelink.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/wall_thread.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/wallmsg-end.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/wallmsg-header.tpl
delete mode 100644 view/theme/frost-mobile/suggest_friends.tpl
delete mode 100644 view/theme/frost-mobile/threaded_conversation.tpl
delete mode 100644 view/theme/frost-mobile/voting_fakelink.tpl
delete mode 100644 view/theme/frost-mobile/wall_thread.tpl
delete mode 100644 view/theme/frost-mobile/wallmsg-end.tpl
delete mode 100644 view/theme/frost-mobile/wallmsg-header.tpl
delete mode 100644 view/theme/frost/acl_selector.tpl
delete mode 100644 view/theme/frost/admin_aside.tpl
delete mode 100644 view/theme/frost/admin_site.tpl
delete mode 100644 view/theme/frost/admin_users.tpl
delete mode 100755 view/theme/frost/comment_item.tpl
delete mode 100644 view/theme/frost/contact_edit.tpl
delete mode 100644 view/theme/frost/contact_end.tpl
delete mode 100644 view/theme/frost/contact_head.tpl
delete mode 100644 view/theme/frost/contact_template.tpl
delete mode 100644 view/theme/frost/contacts-end.tpl
delete mode 100644 view/theme/frost/contacts-head.tpl
delete mode 100644 view/theme/frost/contacts-template.tpl
delete mode 100644 view/theme/frost/cropbody.tpl
delete mode 100644 view/theme/frost/cropend.tpl
delete mode 100644 view/theme/frost/crophead.tpl
delete mode 100644 view/theme/frost/display-head.tpl
delete mode 100644 view/theme/frost/end.tpl
delete mode 100644 view/theme/frost/event.tpl
delete mode 100644 view/theme/frost/event_end.tpl
delete mode 100644 view/theme/frost/event_form.tpl
delete mode 100644 view/theme/frost/event_head.tpl
delete mode 100644 view/theme/frost/field_combobox.tpl
delete mode 100644 view/theme/frost/field_input.tpl
delete mode 100644 view/theme/frost/field_openid.tpl
delete mode 100644 view/theme/frost/field_password.tpl
delete mode 100644 view/theme/frost/field_themeselect.tpl
delete mode 100644 view/theme/frost/filebrowser.tpl
delete mode 100644 view/theme/frost/group_drop.tpl
delete mode 100644 view/theme/frost/head.tpl
delete mode 100644 view/theme/frost/jot-end.tpl
delete mode 100644 view/theme/frost/jot-header.tpl
delete mode 100644 view/theme/frost/jot.tpl
delete mode 100644 view/theme/frost/jot_geotag.tpl
delete mode 100644 view/theme/frost/lang_selector.tpl
delete mode 100644 view/theme/frost/like_noshare.tpl
delete mode 100644 view/theme/frost/login.tpl
delete mode 100644 view/theme/frost/login_head.tpl
delete mode 100644 view/theme/frost/lostpass.tpl
delete mode 100644 view/theme/frost/mail_conv.tpl
delete mode 100644 view/theme/frost/mail_list.tpl
delete mode 100644 view/theme/frost/message-end.tpl
delete mode 100644 view/theme/frost/message-head.tpl
delete mode 100755 view/theme/frost/moderated_comment.tpl
delete mode 100644 view/theme/frost/msg-end.tpl
delete mode 100644 view/theme/frost/msg-header.tpl
delete mode 100644 view/theme/frost/nav.tpl
delete mode 100644 view/theme/frost/photo_drop.tpl
delete mode 100644 view/theme/frost/photo_edit.tpl
delete mode 100644 view/theme/frost/photo_edit_head.tpl
delete mode 100644 view/theme/frost/photo_view.tpl
delete mode 100644 view/theme/frost/photos_head.tpl
delete mode 100644 view/theme/frost/photos_upload.tpl
delete mode 100644 view/theme/frost/posted_date_widget.tpl
delete mode 100644 view/theme/frost/profed_end.tpl
delete mode 100644 view/theme/frost/profed_head.tpl
delete mode 100644 view/theme/frost/profile_edit.tpl
delete mode 100644 view/theme/frost/profile_vcard.tpl
delete mode 100644 view/theme/frost/prv_message.tpl
delete mode 100644 view/theme/frost/register.tpl
delete mode 100644 view/theme/frost/search_item.tpl
delete mode 100644 view/theme/frost/settings-head.tpl
delete mode 100644 view/theme/frost/settings_display_end.tpl
delete mode 100644 view/theme/frost/smarty3/acl_selector.tpl
delete mode 100644 view/theme/frost/smarty3/admin_aside.tpl
delete mode 100644 view/theme/frost/smarty3/admin_site.tpl
delete mode 100644 view/theme/frost/smarty3/admin_users.tpl
delete mode 100644 view/theme/frost/smarty3/comment_item.tpl
delete mode 100644 view/theme/frost/smarty3/contact_edit.tpl
delete mode 100644 view/theme/frost/smarty3/contact_end.tpl
delete mode 100644 view/theme/frost/smarty3/contact_head.tpl
delete mode 100644 view/theme/frost/smarty3/contact_template.tpl
delete mode 100644 view/theme/frost/smarty3/contacts-end.tpl
delete mode 100644 view/theme/frost/smarty3/contacts-head.tpl
delete mode 100644 view/theme/frost/smarty3/contacts-template.tpl
delete mode 100644 view/theme/frost/smarty3/cropbody.tpl
delete mode 100644 view/theme/frost/smarty3/cropend.tpl
delete mode 100644 view/theme/frost/smarty3/crophead.tpl
delete mode 100644 view/theme/frost/smarty3/display-head.tpl
delete mode 100644 view/theme/frost/smarty3/end.tpl
delete mode 100644 view/theme/frost/smarty3/event.tpl
delete mode 100644 view/theme/frost/smarty3/event_end.tpl
delete mode 100644 view/theme/frost/smarty3/event_form.tpl
delete mode 100644 view/theme/frost/smarty3/event_head.tpl
delete mode 100644 view/theme/frost/smarty3/field_combobox.tpl
delete mode 100644 view/theme/frost/smarty3/field_input.tpl
delete mode 100644 view/theme/frost/smarty3/field_openid.tpl
delete mode 100644 view/theme/frost/smarty3/field_password.tpl
delete mode 100644 view/theme/frost/smarty3/field_themeselect.tpl
delete mode 100644 view/theme/frost/smarty3/filebrowser.tpl
delete mode 100644 view/theme/frost/smarty3/group_drop.tpl
delete mode 100644 view/theme/frost/smarty3/head.tpl
delete mode 100644 view/theme/frost/smarty3/jot-end.tpl
delete mode 100644 view/theme/frost/smarty3/jot-header.tpl
delete mode 100644 view/theme/frost/smarty3/jot.tpl
delete mode 100644 view/theme/frost/smarty3/jot_geotag.tpl
delete mode 100644 view/theme/frost/smarty3/lang_selector.tpl
delete mode 100644 view/theme/frost/smarty3/like_noshare.tpl
delete mode 100644 view/theme/frost/smarty3/login.tpl
delete mode 100644 view/theme/frost/smarty3/login_head.tpl
delete mode 100644 view/theme/frost/smarty3/lostpass.tpl
delete mode 100644 view/theme/frost/smarty3/mail_conv.tpl
delete mode 100644 view/theme/frost/smarty3/mail_list.tpl
delete mode 100644 view/theme/frost/smarty3/message-end.tpl
delete mode 100644 view/theme/frost/smarty3/message-head.tpl
delete mode 100644 view/theme/frost/smarty3/moderated_comment.tpl
delete mode 100644 view/theme/frost/smarty3/msg-end.tpl
delete mode 100644 view/theme/frost/smarty3/msg-header.tpl
delete mode 100644 view/theme/frost/smarty3/nav.tpl
delete mode 100644 view/theme/frost/smarty3/photo_drop.tpl
delete mode 100644 view/theme/frost/smarty3/photo_edit.tpl
delete mode 100644 view/theme/frost/smarty3/photo_edit_head.tpl
delete mode 100644 view/theme/frost/smarty3/photo_view.tpl
delete mode 100644 view/theme/frost/smarty3/photos_head.tpl
delete mode 100644 view/theme/frost/smarty3/photos_upload.tpl
delete mode 100644 view/theme/frost/smarty3/posted_date_widget.tpl
delete mode 100644 view/theme/frost/smarty3/profed_end.tpl
delete mode 100644 view/theme/frost/smarty3/profed_head.tpl
delete mode 100644 view/theme/frost/smarty3/profile_edit.tpl
delete mode 100644 view/theme/frost/smarty3/profile_vcard.tpl
delete mode 100644 view/theme/frost/smarty3/prv_message.tpl
delete mode 100644 view/theme/frost/smarty3/register.tpl
delete mode 100644 view/theme/frost/smarty3/search_item.tpl
delete mode 100644 view/theme/frost/smarty3/settings-head.tpl
delete mode 100644 view/theme/frost/smarty3/settings_display_end.tpl
delete mode 100644 view/theme/frost/smarty3/suggest_friends.tpl
delete mode 100644 view/theme/frost/smarty3/threaded_conversation.tpl
delete mode 100644 view/theme/frost/smarty3/voting_fakelink.tpl
delete mode 100644 view/theme/frost/smarty3/wall_thread.tpl
delete mode 100644 view/theme/frost/smarty3/wallmsg-end.tpl
delete mode 100644 view/theme/frost/smarty3/wallmsg-header.tpl
delete mode 100644 view/theme/frost/suggest_friends.tpl
delete mode 100644 view/theme/frost/threaded_conversation.tpl
delete mode 100644 view/theme/frost/voting_fakelink.tpl
delete mode 100644 view/theme/frost/wall_thread.tpl
delete mode 100644 view/theme/frost/wallmsg-end.tpl
delete mode 100644 view/theme/frost/wallmsg-header.tpl
delete mode 100644 view/theme/quattro/birthdays_reminder.tpl
delete mode 100644 view/theme/quattro/comment_item.tpl
delete mode 100644 view/theme/quattro/contact_template.tpl
delete mode 100644 view/theme/quattro/conversation.tpl
delete mode 100644 view/theme/quattro/events_reminder.tpl
delete mode 100644 view/theme/quattro/fileas_widget.tpl
delete mode 100644 view/theme/quattro/generic_links_widget.tpl
delete mode 100644 view/theme/quattro/group_side.tpl
delete mode 100644 view/theme/quattro/jot.tpl
delete mode 100644 view/theme/quattro/mail_conv.tpl
delete mode 100644 view/theme/quattro/mail_display.tpl
delete mode 100644 view/theme/quattro/mail_list.tpl
delete mode 100644 view/theme/quattro/message_side.tpl
delete mode 100644 view/theme/quattro/nav.tpl
delete mode 100644 view/theme/quattro/nets.tpl
delete mode 100644 view/theme/quattro/photo_view.tpl
delete mode 100644 view/theme/quattro/profile_vcard.tpl
delete mode 100644 view/theme/quattro/prv_message.tpl
delete mode 100644 view/theme/quattro/saved_searches_aside.tpl
delete mode 100644 view/theme/quattro/search_item.tpl
delete mode 100644 view/theme/quattro/smarty3/birthdays_reminder.tpl
delete mode 100644 view/theme/quattro/smarty3/comment_item.tpl
delete mode 100644 view/theme/quattro/smarty3/contact_template.tpl
delete mode 100644 view/theme/quattro/smarty3/conversation.tpl
delete mode 100644 view/theme/quattro/smarty3/events_reminder.tpl
delete mode 100644 view/theme/quattro/smarty3/fileas_widget.tpl
delete mode 100644 view/theme/quattro/smarty3/generic_links_widget.tpl
delete mode 100644 view/theme/quattro/smarty3/group_side.tpl
delete mode 100644 view/theme/quattro/smarty3/jot.tpl
delete mode 100644 view/theme/quattro/smarty3/mail_conv.tpl
delete mode 100644 view/theme/quattro/smarty3/mail_display.tpl
delete mode 100644 view/theme/quattro/smarty3/mail_list.tpl
delete mode 100644 view/theme/quattro/smarty3/message_side.tpl
delete mode 100644 view/theme/quattro/smarty3/nav.tpl
delete mode 100644 view/theme/quattro/smarty3/nets.tpl
delete mode 100644 view/theme/quattro/smarty3/photo_view.tpl
delete mode 100644 view/theme/quattro/smarty3/profile_vcard.tpl
delete mode 100644 view/theme/quattro/smarty3/prv_message.tpl
delete mode 100644 view/theme/quattro/smarty3/saved_searches_aside.tpl
delete mode 100644 view/theme/quattro/smarty3/search_item.tpl
delete mode 100644 view/theme/quattro/smarty3/theme_settings.tpl
delete mode 100644 view/theme/quattro/smarty3/threaded_conversation.tpl
delete mode 100644 view/theme/quattro/smarty3/wall_item_tag.tpl
delete mode 100644 view/theme/quattro/smarty3/wall_thread.tpl
delete mode 100644 view/theme/quattro/theme_settings.tpl
delete mode 100644 view/theme/quattro/threaded_conversation.tpl
delete mode 100644 view/theme/quattro/wall_item_tag.tpl
delete mode 100644 view/theme/quattro/wall_thread.tpl
delete mode 100644 view/theme/slackr/birthdays_reminder.tpl
delete mode 100644 view/theme/slackr/events_reminder.tpl
delete mode 100644 view/theme/slackr/smarty3/birthdays_reminder.tpl
delete mode 100644 view/theme/slackr/smarty3/events_reminder.tpl
delete mode 100644 view/theme/smoothly/bottom.tpl
delete mode 100644 view/theme/smoothly/follow.tpl
delete mode 100644 view/theme/smoothly/jot-header.tpl
delete mode 100644 view/theme/smoothly/jot.tpl
delete mode 100644 view/theme/smoothly/lang_selector.tpl
delete mode 100644 view/theme/smoothly/nav.tpl
delete mode 100644 view/theme/smoothly/search_item.tpl
delete mode 100644 view/theme/smoothly/smarty3/bottom.tpl
delete mode 100644 view/theme/smoothly/smarty3/follow.tpl
delete mode 100644 view/theme/smoothly/smarty3/jot-header.tpl
delete mode 100644 view/theme/smoothly/smarty3/jot.tpl
delete mode 100644 view/theme/smoothly/smarty3/lang_selector.tpl
delete mode 100644 view/theme/smoothly/smarty3/nav.tpl
delete mode 100644 view/theme/smoothly/smarty3/search_item.tpl
delete mode 100644 view/theme/smoothly/smarty3/wall_thread.tpl
delete mode 100644 view/theme/smoothly/wall_thread.tpl
delete mode 100644 view/theme/testbubble/comment_item.tpl
delete mode 100644 view/theme/testbubble/group_drop.tpl
delete mode 100644 view/theme/testbubble/group_edit.tpl
delete mode 100644 view/theme/testbubble/group_side.tpl
delete mode 100644 view/theme/testbubble/jot-header.tpl
delete mode 100644 view/theme/testbubble/jot.tpl
delete mode 100644 view/theme/testbubble/match.tpl
delete mode 100644 view/theme/testbubble/nav.tpl
delete mode 100644 view/theme/testbubble/photo_album.tpl
delete mode 100644 view/theme/testbubble/photo_top.tpl
delete mode 100644 view/theme/testbubble/photo_view.tpl
delete mode 100644 view/theme/testbubble/profile_entry.tpl
delete mode 100644 view/theme/testbubble/profile_vcard.tpl
delete mode 100644 view/theme/testbubble/saved_searches_aside.tpl
delete mode 100644 view/theme/testbubble/search_item.tpl
delete mode 100644 view/theme/testbubble/smarty3/comment_item.tpl
delete mode 100644 view/theme/testbubble/smarty3/group_drop.tpl
delete mode 100644 view/theme/testbubble/smarty3/group_edit.tpl
delete mode 100644 view/theme/testbubble/smarty3/group_side.tpl
delete mode 100644 view/theme/testbubble/smarty3/jot-header.tpl
delete mode 100644 view/theme/testbubble/smarty3/jot.tpl
delete mode 100644 view/theme/testbubble/smarty3/match.tpl
delete mode 100644 view/theme/testbubble/smarty3/nav.tpl
delete mode 100644 view/theme/testbubble/smarty3/photo_album.tpl
delete mode 100644 view/theme/testbubble/smarty3/photo_top.tpl
delete mode 100644 view/theme/testbubble/smarty3/photo_view.tpl
delete mode 100644 view/theme/testbubble/smarty3/profile_entry.tpl
delete mode 100644 view/theme/testbubble/smarty3/profile_vcard.tpl
delete mode 100644 view/theme/testbubble/smarty3/saved_searches_aside.tpl
delete mode 100644 view/theme/testbubble/smarty3/search_item.tpl
delete mode 100644 view/theme/testbubble/smarty3/wall_thread.tpl
delete mode 100644 view/theme/testbubble/wall_thread.tpl
delete mode 100644 view/theme/vier/comment_item.tpl
delete mode 100644 view/theme/vier/mail_list.tpl
delete mode 100644 view/theme/vier/nav.tpl
delete mode 100644 view/theme/vier/profile_edlink.tpl
delete mode 100644 view/theme/vier/profile_vcard.tpl
delete mode 100644 view/theme/vier/search_item.tpl
delete mode 100644 view/theme/vier/smarty3/comment_item.tpl
delete mode 100644 view/theme/vier/smarty3/mail_list.tpl
delete mode 100644 view/theme/vier/smarty3/nav.tpl
delete mode 100644 view/theme/vier/smarty3/profile_edlink.tpl
delete mode 100644 view/theme/vier/smarty3/profile_vcard.tpl
delete mode 100644 view/theme/vier/smarty3/search_item.tpl
delete mode 100644 view/theme/vier/smarty3/threaded_conversation.tpl
delete mode 100644 view/theme/vier/smarty3/wall_thread.tpl
delete mode 100644 view/theme/vier/threaded_conversation.tpl
delete mode 100644 view/theme/vier/wall_thread.tpl
delete mode 100644 view/threaded_conversation.tpl
delete mode 100644 view/toggle_mobile_footer.tpl
delete mode 100644 view/uexport.tpl
delete mode 100644 view/uimport.tpl
delete mode 100644 view/vcard-widget.tpl
delete mode 100644 view/viewcontact_template.tpl
delete mode 100644 view/voting_fakelink.tpl
delete mode 100644 view/wall_thread.tpl
delete mode 100644 view/wallmessage.tpl
delete mode 100644 view/wallmsg-end.tpl
delete mode 100644 view/wallmsg-header.tpl
delete mode 100644 view/xrd_diaspora.tpl
delete mode 100644 view/xrd_host.tpl
delete mode 100644 view/xrd_person.tpl
diff --git a/include/friendica_smarty.php b/include/friendica_smarty.php
index f9d91a827..1326b0aca 100644
--- a/include/friendica_smarty.php
+++ b/include/friendica_smarty.php
@@ -3,6 +3,8 @@
require_once "object/TemplateEngine.php";
require_once("library/Smarty/libs/Smarty.class.php");
+define('SMARTY3_TEMPLATE_FOLDER','templates');
+
class FriendicaSmarty extends Smarty {
public $filename;
@@ -14,10 +16,10 @@ class FriendicaSmarty extends Smarty {
// setTemplateDir can be set to an array, which Smarty will parse in order.
// The order is thus very important here
- $template_dirs = array('theme' => "view/theme/$theme/smarty3/");
+ $template_dirs = array('theme' => "view/theme/$theme/".SMARTY3_TEMPLATE_FOLDER."/");
if( x($a->theme_info,"extends") )
- $template_dirs = $template_dirs + array('extends' => "view/theme/".$a->theme_info["extends"]."/smarty3/");
- $template_dirs = $template_dirs + array('base' => 'view/smarty3/');
+ $template_dirs = $template_dirs + array('extends' => "view/theme/".$a->theme_info["extends"]."/".SMARTY3_TEMPLATE_FOLDER."/");
+ $template_dirs = $template_dirs + array('base' => "view/".SMARTY3_TEMPLATE_FOLDER."/");
$this->setTemplateDir($template_dirs);
$this->setCompileDir('view/smarty3/compiled/');
@@ -61,7 +63,7 @@ class FriendicaSmartyEngine implements ITemplateEngine {
public function get_template_file($file, $root=''){
$a = get_app();
- $template_file = get_template_file($a, 'smarty3/' . $file, $root);
+ $template_file = get_template_file($a, SMARTY3_TEMPLATE_FOLDER.'/'.$file, $root);
$template = new FriendicaSmarty();
$template->filename = $template_file;
return $template;
diff --git a/view/404.tpl b/view/404.tpl
deleted file mode 100644
index bf4d4e949..000000000
--- a/view/404.tpl
+++ /dev/null
@@ -1 +0,0 @@
-$message
diff --git a/view/acl_selector.tpl b/view/acl_selector.tpl
deleted file mode 100644
index 837225a5b..000000000
--- a/view/acl_selector.tpl
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
diff --git a/view/admin_aside.tpl b/view/admin_aside.tpl
deleted file mode 100644
index 2f43562bd..000000000
--- a/view/admin_aside.tpl
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
-{{ if $admin.update }}
-
-{{ endif }}
-
-
-{{ if $admin.plugins_admin }}$plugadmtxt {{ endif }}
-
- {{ for $admin.plugins_admin as $l }}
- $l.1
- {{ endfor }}
-
-
-
-$logtxt
-
-
diff --git a/view/admin_logs.tpl b/view/admin_logs.tpl
deleted file mode 100644
index b777cf420..000000000
--- a/view/admin_logs.tpl
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
$title - $page
-
-
-
-
$logname
-
-
-
-
diff --git a/view/admin_plugins.tpl b/view/admin_plugins.tpl
deleted file mode 100644
index 74b56bb4e..000000000
--- a/view/admin_plugins.tpl
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
$title - $page
-
-
- {{ for $plugins as $p }}
-
-
- $p.2.name - $p.2.version
- {{ if $p.2.experimental }} $experimental {{ endif }}{{ if $p.2.unsupported }} $unsupported {{ endif }}
-
- $p.2.description
-
- {{ endfor }}
-
-
diff --git a/view/admin_plugins_details.tpl b/view/admin_plugins_details.tpl
deleted file mode 100644
index 931c7b83c..000000000
--- a/view/admin_plugins_details.tpl
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
$title - $page
-
-
$info.name - $info.version : $action
-
$info.description
-
-
$str_author
- {{ for $info.author as $a }}
- {{ if $a.link }}$a.name {{ else }}$a.name{{ endif }},
- {{ endfor }}
-
-
-
$str_maintainer
- {{ for $info.maintainer as $a }}
- {{ if $a.link }}$a.name {{ else }}$a.name{{ endif }},
- {{ endfor }}
-
-
- {{ if $screenshot }}
-
- {{ endif }}
-
- {{ if $admin_form }}
-
$settings
-
- {{ endif }}
-
- {{ if $readme }}
-
Readme
-
- $readme
-
- {{ endif }}
-
diff --git a/view/admin_remoteupdate.tpl b/view/admin_remoteupdate.tpl
deleted file mode 100644
index 874c6e626..000000000
--- a/view/admin_remoteupdate.tpl
+++ /dev/null
@@ -1,98 +0,0 @@
-
-
-
-
-
Your version: $localversion
-{{ if $needupdate }}
-
New version: $remoteversion
-
-
-{{ else }}
-
No updates
-{{ endif }}
-
diff --git a/view/admin_site.tpl b/view/admin_site.tpl
deleted file mode 100644
index 0f0fdd426..000000000
--- a/view/admin_site.tpl
+++ /dev/null
@@ -1,116 +0,0 @@
-
-
diff --git a/view/admin_summary.tpl b/view/admin_summary.tpl
deleted file mode 100644
index 4efe1960c..000000000
--- a/view/admin_summary.tpl
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
$title - $page
-
-
- $queues.label
- $queues.deliverq - $queues.queue
-
-
- $pending.0
- $pending.1
-
-
-
- $users.0
- $users.1
-
- {{ for $accounts as $p }}
-
- $p.0
- {{ if $p.1 }}$p.1{{ else }}0{{ endif }}
-
- {{ endfor }}
-
-
-
- $plugins.0
-
- {{ for $plugins.1 as $p }}
- $p
- {{ endfor }}
-
-
-
-
- $version.0
- $version.1 - $build
-
-
-
-
diff --git a/view/admin_users.tpl b/view/admin_users.tpl
deleted file mode 100644
index d9a96d7df..000000000
--- a/view/admin_users.tpl
+++ /dev/null
@@ -1,98 +0,0 @@
-
-
diff --git a/view/album_edit.tpl b/view/album_edit.tpl
deleted file mode 100644
index 56a7b73fc..000000000
--- a/view/album_edit.tpl
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
diff --git a/view/api_config_xml.tpl b/view/api_config_xml.tpl
deleted file mode 100644
index 3281e59dd..000000000
--- a/view/api_config_xml.tpl
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
- $config.site.name
- $config.site.server
- default
-
- $config.site.logo
-
- true
- en
- $config.site.email
-
-
- UTC
- $config.site.closed
-
- false
- $config.site.private
- $config.site.textlimit
- $config.site.ssl
- $config.site.sslserver
- 30
-
-
-
- cc
-
- http://creativecommons.org/licenses/by/3.0/
- Creative Commons Attribution 3.0
- http://i.creativecommons.org/l/by/3.0/80x15.png
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- false
- 20
- 600
-
-
-
- false
- INVALID SERVER
- 5222
- update
-
-
- StatusNet
-
-
-
- false
- 0
-
-
diff --git a/view/api_friends_xml.tpl b/view/api_friends_xml.tpl
deleted file mode 100644
index 9bdf53222..000000000
--- a/view/api_friends_xml.tpl
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
- {{for $users as $u }}
- {{inc api_user_xml.tpl with $user=$u }}{{endinc}}
- {{endfor}}
-
diff --git a/view/api_ratelimit_xml.tpl b/view/api_ratelimit_xml.tpl
deleted file mode 100644
index 36ec1993d..000000000
--- a/view/api_ratelimit_xml.tpl
+++ /dev/null
@@ -1,6 +0,0 @@
-
- $hash.remaining_hits
- $hash.hourly_limit
- $hash.reset_time
- $hash.resettime_in_seconds
-
diff --git a/view/api_status_xml.tpl b/view/api_status_xml.tpl
deleted file mode 100644
index f6cd9c2c0..000000000
--- a/view/api_status_xml.tpl
+++ /dev/null
@@ -1,46 +0,0 @@
-{{ if $status }}
- $status.created_at
- $status.id
- $status.text
- $status.source
- $status.truncated
- $status.in_reply_to_status_id
- $status.in_reply_to_user_id
- $status.favorited
- $status.in_reply_to_screen_name
- $status.geo
- $status.coordinates
- $status.place
- $status.contributors
-
- $status.user.id
- $status.user.name
- $status.user.screen_name
- $status.user.location
- $status.user.description
- $status.user.profile_image_url
- $status.user.url
- $status.user.protected
- $status.user.followers
- $status.user.profile_background_color
- $status.user.profile_text_color
- $status.user.profile_link_color
- $status.user.profile_sidebar_fill_color
- $status.user.profile_sidebar_border_color
- $status.user.friends_count
- $status.user.created_at
- $status.user.favourites_count
- $status.user.utc_offset
- $status.user.time_zone
- $status.user.profile_background_image_url
- $status.user.profile_background_tile
- $status.user.profile_use_background_image
-
- $status.user.geo_enabled
- $status.user.verified
-
- $status.user.statuses_count
- $status.user.lang
- $status.user.contributors_enabled
-
-{{ endif }}
diff --git a/view/api_test_xml.tpl b/view/api_test_xml.tpl
deleted file mode 100644
index 7509a2dc1..000000000
--- a/view/api_test_xml.tpl
+++ /dev/null
@@ -1 +0,0 @@
-$ok
diff --git a/view/api_timeline_atom.tpl b/view/api_timeline_atom.tpl
deleted file mode 100644
index 3db91573e..000000000
--- a/view/api_timeline_atom.tpl
+++ /dev/null
@@ -1,90 +0,0 @@
-
- StatusNet
- $rss.self
- Friendica
- Friendica API feed
- $rss.logo
- $rss.atom_updated
-
-
-
-
-
- http://activitystrea.ms/schema/1.0/person
- $user.url
- $user.name
-
-
-
-
-
-
- $user.screen_name
- $user.name
-
- homepage
- $user.url
- true
-
-
-
-
-
-
- http://activitystrea.ms/schema/1.0/person
- $user.contact_url
- $user.name
-
-
-
-
-
- $user.screen_name
- $user.name
-
- homepage
- $user.url
- true
-
-
-
-
-
- {{ for $statuses as $status }}
-
- $status.objecttype
- $status.message_id
- $status.text
- $status.statusnet_html
-
- $status.verb
- $status.published
- $status.updated
-
-
-
-
-
-
-
- http://activitystrea.ms/schema/1.0/person
- $status.user.url
- $status.user.name
-
-
-
-
- $status.user.screen_name
- $status.user.name
-
-
- homepage
- $status.user.url
- true
-
-
-
-
-
- {{ endfor }}
-
diff --git a/view/api_timeline_rss.tpl b/view/api_timeline_rss.tpl
deleted file mode 100644
index 99279ec37..000000000
--- a/view/api_timeline_rss.tpl
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
- Friendica
- $rss.alternate
-
- Friendica timeline
- $rss.language
- 40
-
- $user.link
- $user.name's items
- $user.profile_image_url
-
-
-{{ for $statuses as $status }}
- -
-
$status.user.name: $status.text
- $status.text
- $status.created_at
- $status.url
- $status.url
- $status.source
-
-{{ endfor }}
-
-
diff --git a/view/api_timeline_xml.tpl b/view/api_timeline_xml.tpl
deleted file mode 100644
index 4a32b411b..000000000
--- a/view/api_timeline_xml.tpl
+++ /dev/null
@@ -1,20 +0,0 @@
-
-{{ for $statuses as $status }}
- $status.text
- $status.truncated
- $status.created_at
- $status.in_reply_to_status_id
- $status.source
- $status.id
- $status.in_reply_to_user_id
- $status.in_reply_to_screen_name
- $status.geo
- $status.favorited
-{{ inc api_user_xml.tpl with $user=$status.user }}{{ endinc }} $status.statusnet_html
- $status.statusnet_conversation_id
- $status.url
- $status.coordinates
- $status.place
- $status.contributors
-
-{{ endfor }}
diff --git a/view/api_user_xml.tpl b/view/api_user_xml.tpl
deleted file mode 100644
index d286652c0..000000000
--- a/view/api_user_xml.tpl
+++ /dev/null
@@ -1,46 +0,0 @@
-
- $user.id
- $user.name
- $user.screen_name
- $user.location
- $user.description
- $user.profile_image_url
- $user.url
- $user.protected
- $user.followers_count
- $user.friends_count
- $user.created_at
- $user.favourites_count
- $user.utc_offset
- $user.time_zone
- $user.statuses_count
- $user.following
- $user.profile_background_color
- $user.profile_text_color
- $user.profile_link_color
- $user.profile_sidebar_fill_color
- $user.profile_sidebar_border_color
- $user.profile_background_image_url
- $user.profile_background_tile
- $user.profile_use_background_image
- $user.notifications
- $user.geo_enabled
- $user.verified
- $user.lang
- $user.contributors_enabled
- {{ if $user.status }}
- $user.status.created_at
- $user.status.id
- $user.status.text
- $user.status.source
- $user.status.truncated
- $user.status.in_reply_to_status_id
- $user.status.in_reply_to_user_id
- $user.status.favorited
- $user.status.in_reply_to_screen_name
- $user.status.geo
- $user.status.coordinates
- $user.status.place
- $user.status.contributors
- {{ endif }}
-
diff --git a/view/apps.tpl b/view/apps.tpl
deleted file mode 100644
index 4c7f8c94c..000000000
--- a/view/apps.tpl
+++ /dev/null
@@ -1,7 +0,0 @@
-$title
-
-
- {{ for $apps as $ap }}
- $ap
- {{ endfor }}
-
diff --git a/view/atom_feed.tpl b/view/atom_feed.tpl
deleted file mode 100644
index 2feb547ee..000000000
--- a/view/atom_feed.tpl
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
- $feed_id
- $feed_title
- Friendica
-
- $hub
- $salmon
- $community
-
- $feed_updated
-
-
- $name
- $profile_page
-
-
- $birthday
-
diff --git a/view/atom_feed_dfrn.tpl b/view/atom_feed_dfrn.tpl
deleted file mode 100644
index 0bae62b52..000000000
--- a/view/atom_feed_dfrn.tpl
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
- $feed_id
- $feed_title
- Friendica
-
- $hub
- $salmon
- $community
-
- $feed_updated
-
-
- $name
- $profile_page
-
-
- $birthday
-
diff --git a/view/atom_mail.tpl b/view/atom_mail.tpl
deleted file mode 100644
index bf7c3efc8..000000000
--- a/view/atom_mail.tpl
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
- $name
- $profile_page
- $thumb
-
-
- $item_id
- $parent_id
- $created
- $subject
- $content
-
-
-
diff --git a/view/atom_relocate.tpl b/view/atom_relocate.tpl
deleted file mode 100644
index f7db934d7..000000000
--- a/view/atom_relocate.tpl
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
- $url
- $name
- $photo
- $thumb
- $micro
- $request
- $confirm
- $notify
- $poll
- $sitepubkey
-
-
-
-
diff --git a/view/atom_suggest.tpl b/view/atom_suggest.tpl
deleted file mode 100644
index 66c61f9b6..000000000
--- a/view/atom_suggest.tpl
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
- $url
- $name
- $photo
- $request
- $note
-
-
-
diff --git a/view/auto_request.tpl b/view/auto_request.tpl
deleted file mode 100644
index 961de9bb3..000000000
--- a/view/auto_request.tpl
+++ /dev/null
@@ -1,37 +0,0 @@
-
-$header
-
-
-$page_desc
-
-
- {{ for $tabs as $tab }} -- $tab.label
- {{ endfor }}
-
diff --git a/view/confirm.tpl b/view/confirm.tpl deleted file mode 100644 index 5e7e641c4..000000000 --- a/view/confirm.tpl +++ /dev/null @@ -1,14 +0,0 @@ -$contacts
-{{ if $micropro }} - $viewcontacts -$header
- --$relation_text
- $nettype
- {{ if $lost_contact }}
- $lost_contact
- {{ endif }}
- {{ if $insecure }}
- $insecure
- {{ endif }}
- {{ if $blocked }}
- $blocked
- {{ endif }}
- {{ if $ignored }}
- $ignored
- {{ endif }}
- {{ if $archived }}
- $archived
- {{ endif }}
-
- -
-
- {{ if $common_text }}
- $common_text
- {{ endif }}
- {{ if $all_friends }}
- $all_friends
- {{ endif }}
-
-
- - $lblrecent
- {{ if $lblsuggest }}
- - $lblsuggest
- {{ endif }}
-
-
-- {{ for $contact.photo_menu as $c }} - {{ if $c.2 }} -- $c.0
- {{ else }}
- - $c.0
- {{ endif }}
- {{ endfor }}
-
-$header{{ if $total }} ($total){{ endif }}
- -{{ if $finding }}$finding
{{ endif }} - -$title
--$desc -
-$header
- -$head_managers
- -{{ for $managers as $x }} - --{{ endif }} - - -
$head_delegates
- -{{ if $delegates }} -{{ for $delegates as $x }} - -- - -
$head_potentials
-{{ if $potentials }} -{{ for $potentials as $x }} - -- diff --git a/view/dfrn_req_confirm.tpl b/view/dfrn_req_confirm.tpl deleted file mode 100644 index 6c916323c..000000000 --- a/view/dfrn_req_confirm.tpl +++ /dev/null @@ -1,21 +0,0 @@ - -
-$welcome -
- \ No newline at end of file diff --git a/view/dfrn_request.tpl b/view/dfrn_request.tpl deleted file mode 100644 index bd3bcbc42..000000000 --- a/view/dfrn_request.tpl +++ /dev/null @@ -1,65 +0,0 @@ - --$please - -
$header
- --$page_desc
-
-- $friendica
-- $diaspora $diasnote
-- $statusnet
-{{ if $emailnet }}- $emailnet
{{ endif }}
-
-$invite_desc - --$desc -
- - - --$pls_answer -
- --$does_know -
- --$add_note -
-$sitedir
- -$globaldir -$admin - -$finding - -$title
- --$desc -
- - - - diff --git a/view/event_head.tpl b/view/event_head.tpl deleted file mode 100644 index 559de24e3..000000000 --- a/view/event_head.tpl +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - - - - diff --git a/view/events-js.tpl b/view/events-js.tpl deleted file mode 100644 index b0e182c56..000000000 --- a/view/events-js.tpl +++ /dev/null @@ -1,6 +0,0 @@ -$tabs -$title
- -$title
- -$banner
- -$f
--- $mark
-- $apply
-
- --{{ endfor }} -{{ endif }} - diff --git a/view/fake_feed.tpl b/view/fake_feed.tpl deleted file mode 100644 index c37071cf4..000000000 --- a/view/fake_feed.tpl +++ /dev/null @@ -1,13 +0,0 @@ - -
$title
--- $all
- {{ for $terms as $term }}
- - $term.name
- {{ endfor }}
-
- --- FileBrowser
-
-- {{ for $folders as $f }}- $f.1
{{ endfor }}
-
-- {{ for $files as $f }} -- $f.1
- {{ endfor }}
-
-$connect
-$title
{{endif}} - {{if $desc}}- {{ for $items as $item }} -- $item.label
- {{ endfor }}
-
- -$title
- - -$title
- -- {{ for $groups as $group }} --
- {{ if $group.cid }}
-
- {{ endif }}
- {{ if $group.edit }}
-
- {{ endif }}
- $group.text
-
- {{ endfor }}
-
-$groupeditor.label_members
--
$groupeditor.label_contacts
-$title
-$pass
- - -{{ if $status }} -$status
-{{ endif }} - -$text diff --git a/view/install_checks.tpl b/view/install_checks.tpl deleted file mode 100644 index a3aa2b266..000000000 --- a/view/install_checks.tpl +++ /dev/null @@ -1,24 +0,0 @@ -$title
-$pass
- diff --git a/view/install_db.tpl b/view/install_db.tpl deleted file mode 100644 index 1302b5a70..000000000 --- a/view/install_db.tpl +++ /dev/null @@ -1,30 +0,0 @@ - -$title
-$pass
- - --$info_01
- -{{ if $status }} --$info_02
-$info_03 -
$status
-{{ endif }} - - - diff --git a/view/install_settings.tpl b/view/install_settings.tpl deleted file mode 100644 index 05b87f904..000000000 --- a/view/install_settings.tpl +++ /dev/null @@ -1,25 +0,0 @@ - -$title
-$pass
- - -{{ if $status }} -$status
-{{ endif }} - - - diff --git a/view/intros.tpl b/view/intros.tpl deleted file mode 100644 index e7fd53ca4..000000000 --- a/view/intros.tpl +++ /dev/null @@ -1,28 +0,0 @@ - -$str_notifytype $notify_type
-$title
- --$desc -
- - - diff --git a/view/magicsig.tpl b/view/magicsig.tpl deleted file mode 100644 index 75f9bc475..000000000 --- a/view/magicsig.tpl +++ /dev/null @@ -1,9 +0,0 @@ - -diff --git a/view/mail_display.tpl b/view/mail_display.tpl deleted file mode 100644 index b328d32a2..000000000 --- a/view/mail_display.tpl +++ /dev/null @@ -1,10 +0,0 @@ - -{{ for $mails as $mail }} - {{ inc mail_conv.tpl }}{{endinc}} -{{ endfor }} - -{{ if $canreply }} -{{ inc prv_message.tpl }}{{ endinc }} -{{ else }} -$unknown_text -{{endif }} diff --git a/view/mail_head.tpl b/view/mail_head.tpl deleted file mode 100644 index afb65f537..000000000 --- a/view/mail_head.tpl +++ /dev/null @@ -1,3 +0,0 @@ -
$messages
- -$tab_content diff --git a/view/mail_list.tpl b/view/mail_list.tpl deleted file mode 100644 index 22e35dec8..000000000 --- a/view/mail_list.tpl +++ /dev/null @@ -1,16 +0,0 @@ -$title
-$title
- -{{ endif }} -{{ if $nav.register }}$nav.register.1
{{ endif }} -{{ if $nav.login }} -
-$nav.net_reset.1
-{{ endif }} -{{ if $nav.home }} -$nav.home.1
-{{ endif }} -{{ if $nav.community }} -$nav.community.1
-{{ endif }} -{{ if $nav.network }} -
-
{{ endif }} -$nav.directory.1
-{{ if $nav.introductions }} -$nav.introductions.1
-{{ endif }} -
-
{{ endif }} -{{ if $nav.manage }}$nav.manage.1
{{ endif }} -{{ if $nav.profiles }}$nav.profiles.1
{{ endif }} -{{ if $nav.admin }}$nav.admin.1
{{ endif }} -$nav.search.1
-{{ if $nav.apps }}$nav.apps.1
{{ endif }} -{{ if $nav.help }} $nav.help.1
{{ endif }} -
{{ endif }} -
$title
-- {{ for $nets as $net }} -- $net.name
- {{ endfor }}
-
-$header
- -{{ for $contacts as $contact }} - {{ inc contact_template.tpl }}{{ endinc }} -{{ endfor }} - - -$paginate - - - - diff --git a/view/notifications.tpl b/view/notifications.tpl deleted file mode 100644 index 1a13b68b9..000000000 --- a/view/notifications.tpl +++ /dev/null @@ -1,8 +0,0 @@ - -$notif_header
- -{{ inc common_tabs.tpl }}{{ endinc }} - -$title
- -$app.name
-$authorize
- diff --git a/view/oauth_authorize_done.tpl b/view/oauth_authorize_done.tpl deleted file mode 100644 index 51eaea248..000000000 --- a/view/oauth_authorize_done.tpl +++ /dev/null @@ -1,4 +0,0 @@ -$title
- -$info
-$code
diff --git a/view/oembed_video.tpl b/view/oembed_video.tpl deleted file mode 100755 index d3a9a9311..000000000 --- a/view/oembed_video.tpl +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/view/oexchange_xrd.tpl b/view/oexchange_xrd.tpl deleted file mode 100644 index 6735a3e04..000000000 --- a/view/oexchange_xrd.tpl +++ /dev/null @@ -1,33 +0,0 @@ - -$findpeople
-$desc
- -$album.1
- -$title
-{{ if $can_post }} -$upload.0 -{{ endif }} - -$pagename
- -$title
- -$title
- - --$desc -
- --$desc -
- --$desc -
- --$desc -
- -$title
- --- $profile.fullname.0
- - $profile.fullname.1
-
- -{{ if $profile.gender }} --- $profile.gender.0
- - $profile.gender.1
-
-{{ endif }} - -{{ if $profile.birthday }} --- $profile.birthday.0
- - $profile.birthday.1
-
-{{ endif }} - -{{ if $profile.age }} --- $profile.age.0
- - $profile.age.1
-
-{{ endif }} - -{{ if $profile.marital }} --- ♥ $profile.marital.0
- - $profile.marital.1{{ if $profile.marital.with }} ($profile.marital.with){{ endif }}{{ if $profile.howlong }} $profile.howlong{{ endif }}
-
-{{ endif }} - -{{ if $profile.sexual }} --- $profile.sexual.0
- - $profile.sexual.1
-
-{{ endif }} - -{{ if $profile.pub_keywords }} --- $profile.pub_keywords.0
- - $profile.pub_keywords.1
-
-{{ endif }} - -{{ if $profile.homepage }} --- $profile.homepage.0
- - $profile.homepage.1
-
-{{ endif }} - -{{ if $profile.hometown }} --- $profile.hometown.0
- - $profile.hometown.1
-
-{{ endif }} - -{{ if $profile.politic }} --- $profile.politic.0
- - $profile.politic.1
-
-{{ endif }} - -{{ if $profile.religion }} --- $profile.religion.0
- - $profile.religion.1
-
-{{ endif }} - -{{ if $profile.about }} --- $profile.about.0
- - $profile.about.1
-
-{{ endif }} - -{{ if $profile.interest }} --- $profile.interest.0
- - $profile.interest.1
-
-{{ endif }} - -{{ if $profile.likes }} --- $profile.likes.0
- - $profile.likes.1
-
-{{ endif }} - -{{ if $profile.dislikes }} --- $profile.dislikes.0
- - $profile.dislikes.1
-
-{{ endif }} - -{{ if $profile.contact }} --- $profile.contact.0
- - $profile.contact.1
-
-{{ endif }} - - -{{ if $profile.music }} --- $profile.music.0
- - $profile.music.1
-
-{{ endif }} - - -{{ if $profile.book }} --- $profile.book.0
- - $profile.book.1
-
-{{ endif }} - - -{{ if $profile.tv }} --- $profile.tv.0
- - $profile.tv.1
-
-{{ endif }} - - -{{ if $profile.film }} --- $profile.film.0
- - $profile.film.1
-
-{{ endif }} - - -{{ if $profile.romance }} --- $profile.romance.0
- - $profile.romance.1
-
-{{ endif }} - - -{{ if $profile.work }} --- $profile.work.0
- - $profile.work.1
-
-{{ endif }} - -{{ if $profile.education }} --- $profile.education.0
- - $profile.education.1
-
-{{ endif }} - - - - diff --git a/view/profile_edit.tpl b/view/profile_edit.tpl deleted file mode 100644 index 4df6ecc69..000000000 --- a/view/profile_edit.tpl +++ /dev/null @@ -1,323 +0,0 @@ -$default - -$banner
- --- $profpic
-- $viewprof
-- $cl_prof
-
-- $del_prof
-
-
-$header
--$chg_photo -
-$title
- - - --$pubdesc -
- -- $location
- -
- {{ if $profile.address }}
$profile.address {{ endif }}
-
- $profile.locality{{ if $profile.locality }}, {{ endif }}
- $profile.region
- $profile.postal_code
-
- {{ if $profile.country_name }}$profile.country_name{{ endif }}
-
-
- {{ endif }} - - {{ if $gender }}- $gender
- $profile.gender
{{ endif }} - - {{ if $profile.pubkey }} {{ endif }} - - {{ if $marital }}- ♥$marital
- $profile.marital
{{ endif }} - - {{ if $homepage }}- $homepage
- $profile.homepage
{{ endif }} - - {{ inc diaspora_vcard.tpl }}{{ endinc }} - -- {{ if $connect }} -- $connect
- {{ endif }}
- {{ if $wallmessage }}
- - $wallmessage
- {{ endif }}
-
-$header
- -$lbl1
- --$lbl2 -
--$lbl3 -
--$newpass -
--$lbl4 $lbl5 -
--$lbl6 -
diff --git a/view/register.tpl b/view/register.tpl deleted file mode 100644 index 2275356a2..000000000 --- a/view/register.tpl +++ /dev/null @@ -1,65 +0,0 @@ -$regtitle
- - - -$license - - diff --git a/view/remote_friends_common.tpl b/view/remote_friends_common.tpl deleted file mode 100644 index 9e0562878..000000000 --- a/view/remote_friends_common.tpl +++ /dev/null @@ -1,21 +0,0 @@ -$title
- -$title
- $searchbox - -- {{ for $saved as $search }} --
-
- $search.term
-
- {{ endfor }}
-
- -- $item.item_photo_menu -
-$ptitle
- -$nickname_block - - - diff --git a/view/settings_connectors.tpl b/view/settings_connectors.tpl deleted file mode 100644 index bd3d60f0f..000000000 --- a/view/settings_connectors.tpl +++ /dev/null @@ -1,35 +0,0 @@ -$title
- -$ptitle
- - diff --git a/view/settings_display_end.tpl b/view/settings_display_end.tpl deleted file mode 100644 index e69de29bb..000000000 diff --git a/view/settings_features.tpl b/view/settings_features.tpl deleted file mode 100644 index 1b106d411..000000000 --- a/view/settings_features.tpl +++ /dev/null @@ -1,20 +0,0 @@ -$title
- - - - diff --git a/view/settings_nick_set.tpl b/view/settings_nick_set.tpl deleted file mode 100644 index eb4721d50..000000000 --- a/view/settings_nick_set.tpl +++ /dev/null @@ -1,5 +0,0 @@ - --It appears that your website is located in a subdirectory of the
--$hostname website, so this setting may not work reliably.
-
If you have any issues, you may have better results using the profile
\ No newline at end of file diff --git a/view/settings_oauth.tpl b/view/settings_oauth.tpl deleted file mode 100644 index 890c4ee6c..000000000 --- a/view/settings_oauth.tpl +++ /dev/null @@ -1,31 +0,0 @@ -address '$baseurl/profile/$nickname'. -
$title
- - - diff --git a/view/settings_oauth_edit.tpl b/view/settings_oauth_edit.tpl deleted file mode 100644 index e6f2abdc2..000000000 --- a/view/settings_oauth_edit.tpl +++ /dev/null @@ -1,17 +0,0 @@ -$title
- - diff --git a/view/smarty3/404.tpl b/view/smarty3/404.tpl deleted file mode 100644 index 2d581ab8d..000000000 --- a/view/smarty3/404.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$message}}
diff --git a/view/smarty3/acl_selector.tpl b/view/smarty3/acl_selector.tpl deleted file mode 100644 index 5fd11e756..000000000 --- a/view/smarty3/acl_selector.tpl +++ /dev/null @@ -1,31 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$admtxt}}
--- {{$admin.site.1}}
- - {{$admin.users.1}}
- - {{$admin.plugins.1}}
- - {{$admin.themes.1}}
- - {{$admin.dbsync.1}}
-
- -{{if $admin.update}} --- {{$admin.update.1}}
- - Important Changes
-
-{{/if}} - - -{{if $admin.plugins_admin}}{{$plugadmtxt}}
{{/if}} -- {{foreach $admin.plugins_admin as $l}} -- {{$l.1}}
- {{/foreach}}
-
- - -{{$logtxt}}
--- {{$admin.logs.1}}
-
- diff --git a/view/smarty3/admin_logs.tpl b/view/smarty3/admin_logs.tpl deleted file mode 100644 index 6a2259500..000000000 --- a/view/smarty3/admin_logs.tpl +++ /dev/null @@ -1,24 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$title}} - {{$page}}
- - - -{{$logname}}
-{{$title}} - {{$page}}
- -- {{foreach $plugins as $p}} --
-
- {{$p.2.name}} - {{$p.2.version}}
- {{if $p.2.experimental}} {{$experimental}} {{/if}}{{if $p.2.unsupported}} {{$unsupported}} {{/if}}
-
-
{{$p.2.description}}
-
- {{/foreach}}
-
-{{$title}} - {{$page}}
- -{{$info.name}} - {{$info.version}} : {{$action}}
-{{$info.description}}
- -{{$str_author}} - {{foreach $info.author as $a}} - {{if $a.link}}{{$a.name}}{{else}}{{$a.name}}{{/if}}, - {{/foreach}} -
- -{{$str_maintainer}} - {{foreach $info.maintainer as $a}} - {{if $a.link}}{{$a.name}}{{else}}{{$a.name}}{{/if}}, - {{/foreach}} -
- - {{if $screenshot}} - - {{/if}} - - {{if $admin_form}} -{{$settings}}
- - {{/if}} - - {{if $readme}} -Readme
-Friendica Update
- -No updates
-{{/if}} -{{$title}} - {{$page}}
- - -{{$title}} - {{$page}}
- --- {{$queues.label}}
- - {{$queues.deliverq}} - {{$queues.queue}}
-
--- {{$pending.0}}
- - {{$pending.1}}
-
- --- {{$users.0}}
- - {{$users.1}}
-
- {{foreach $accounts as $p}} --- {{$p.0}}
- - {{if $p.1}}{{$p.1}}{{else}}0{{/if}}
-
- {{/foreach}} - - --- {{$plugins.0}}
-
- {{foreach $plugins.1 as $p}}
- - {{$p}}
- {{/foreach}}
-
-
- --- {{$version.0}}
- - {{$version.1}} - {{$build}}
-
- - -{{$title}} - {{$page}}
- - -{{$title}}
- -- {{foreach $apps as $ap}} -- {{$ap}}
- {{/foreach}}
-
diff --git a/view/smarty3/atom_feed.tpl b/view/smarty3/atom_feed.tpl deleted file mode 100644 index db553d99f..000000000 --- a/view/smarty3/atom_feed.tpl +++ /dev/null @@ -1,34 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -{{$header}}
- --{{$page_desc}}
-
-- {{$friendica}}
-- {{$diaspora}} {{$diasnote}}
-- {{$statusnet}}
-{{if $emailnet}}- {{$emailnet}}
{{/if}}
-
- --{{$invite_desc}} -
--{{$desc}} -
- - - -{{$title}}
--- {{$all}}
- {{foreach $terms as $term}}
- - {{$term.name}}
- {{/foreach}}
-
- -- {{foreach $tabs as $tab}} -- {{$tab.label}}
- {{/foreach}}
-
diff --git a/view/smarty3/confirm.tpl b/view/smarty3/confirm.tpl deleted file mode 100644 index df8d26eaa..000000000 --- a/view/smarty3/confirm.tpl +++ /dev/null @@ -1,19 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$contacts}}
-{{if $micropro}} - {{$viewcontacts}} -{{$header}}
- --{{$relation_text}}
- {{$nettype}}
- {{if $lost_contact}}
- {{$lost_contact}}
- {{/if}}
- {{if $insecure}}
- {{$insecure}}
- {{/if}}
- {{if $blocked}}
- {{$blocked}}
- {{/if}}
- {{if $ignored}}
- {{$ignored}}
- {{/if}}
- {{if $archived}}
- {{$archived}}
- {{/if}}
-
- -
-
- {{if $common_text}}
- {{$common_text}}
- {{/if}}
- {{if $all_friends}}
- {{$all_friends}}
- {{/if}}
-
-
- - {{$lblrecent}}
- {{if $lblsuggest}}
- - {{$lblsuggest}}
- {{/if}}
-
-
-- {{foreach $contact.photo_menu as $c}} - {{if $c.2}} -- {{$c.0}}
- {{else}}
- - {{$c.0}}
- {{/if}}
- {{/foreach}}
-
-{{$header}}{{if $total}} ({{$total}}){{/if}}
- -{{if $finding}}{{$finding}}
{{/if}} - -{{$title}}
--{{$desc}} -
-{{$header}}
- -{{$head_managers}}
- -{{foreach $managers as $x}} - --{{/if}} - - -
{{$head_delegates}}
- -{{if $delegates}} -{{foreach $delegates as $x}} - -- - -
{{$head_potentials}}
-{{if $potentials}} -{{foreach $potentials as $x}} - -- diff --git a/view/smarty3/dfrn_req_confirm.tpl b/view/smarty3/dfrn_req_confirm.tpl deleted file mode 100644 index c941a201d..000000000 --- a/view/smarty3/dfrn_req_confirm.tpl +++ /dev/null @@ -1,26 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -
-{{$welcome}} -
- \ No newline at end of file diff --git a/view/smarty3/dfrn_request.tpl b/view/smarty3/dfrn_request.tpl deleted file mode 100644 index 29173a1d7..000000000 --- a/view/smarty3/dfrn_request.tpl +++ /dev/null @@ -1,70 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - --{{$please}} - -
{{$header}}
- --{{$page_desc}}
-
-- {{$friendica}}
-- {{$diaspora}} {{$diasnote}}
-- {{$statusnet}}
-{{if $emailnet}}- {{$emailnet}}
{{/if}}
-
-{{$invite_desc}} - --{{$desc}} -
- - - --{{$pls_answer}} -
- --{{$does_know}} -
- --{{$add_note}} -
-{{$sitedir}}
- -{{$globaldir}} -{{$admin}} - -{{$finding}} - -{{$title}}
- --{{$desc}} -
- - - - diff --git a/view/smarty3/event_head.tpl b/view/smarty3/event_head.tpl deleted file mode 100644 index 3d7091fb7..000000000 --- a/view/smarty3/event_head.tpl +++ /dev/null @@ -1,144 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - - - - - - - - - diff --git a/view/smarty3/events-js.tpl b/view/smarty3/events-js.tpl deleted file mode 100644 index 5fa046f5a..000000000 --- a/view/smarty3/events-js.tpl +++ /dev/null @@ -1,11 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$tabs}} -{{$title}}
- -{{$title}}
- -{{$banner}}
- -{{$f}}
--- {{$mark}}
-- {{$apply}}
-
- --{{/foreach}} -{{/if}} - diff --git a/view/smarty3/fake_feed.tpl b/view/smarty3/fake_feed.tpl deleted file mode 100644 index fd875de71..000000000 --- a/view/smarty3/fake_feed.tpl +++ /dev/null @@ -1,18 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -
{{$title}}
--- {{$all}}
- {{foreach $terms as $term}}
- - {{$term.name}}
- {{/foreach}}
-
- --- FileBrowser
-
-- {{foreach $folders as $f}}- {{$f.1}}
{{/foreach}}
-
-- {{foreach $files as $f}} -- {{$f.1}}
- {{/foreach}}
-
-{{$connect}}
-{{$title}}
{{/if}} - {{if $desc}}- {{foreach $items as $item}} -- {{$item.label}}
- {{/foreach}}
-
- -{{$title}}
- - -{{$title}}
- -- {{foreach $groups as $group}} --
- {{if $group.cid}}
-
- {{/if}}
- {{if $group.edit}}
-
- {{/if}}
- {{$group.text}}
-
- {{/foreach}}
-
-{{$groupeditor.label_members}}
--
{{$groupeditor.label_contacts}}
-{{$title}}
-{{$pass}}
- - -{{if $status}} -{{$status}}
-{{/if}} - -{{$text}} diff --git a/view/smarty3/install_checks.tpl b/view/smarty3/install_checks.tpl deleted file mode 100644 index 44852b410..000000000 --- a/view/smarty3/install_checks.tpl +++ /dev/null @@ -1,29 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$title}}
-{{$pass}}
- diff --git a/view/smarty3/install_db.tpl b/view/smarty3/install_db.tpl deleted file mode 100644 index 944666c6a..000000000 --- a/view/smarty3/install_db.tpl +++ /dev/null @@ -1,35 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -{{$title}}
-{{$pass}}
- - --{{$info_01}}
- -{{if $status}} --{{$info_02}}
-{{$info_03}} -
{{$status}}
-{{/if}} - - - diff --git a/view/smarty3/install_settings.tpl b/view/smarty3/install_settings.tpl deleted file mode 100644 index 2e97d0696..000000000 --- a/view/smarty3/install_settings.tpl +++ /dev/null @@ -1,30 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -{{$title}}
-{{$pass}}
- - -{{if $status}} -{{$status}}
-{{/if}} - - - diff --git a/view/smarty3/intros.tpl b/view/smarty3/intros.tpl deleted file mode 100644 index bafdb07a0..000000000 --- a/view/smarty3/intros.tpl +++ /dev/null @@ -1,33 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -{{$str_notifytype}} {{$notify_type}}
-{{$title}}
- --{{$desc}} -
- - - diff --git a/view/smarty3/magicsig.tpl b/view/smarty3/magicsig.tpl deleted file mode 100644 index af8dbb5bc..000000000 --- a/view/smarty3/magicsig.tpl +++ /dev/null @@ -1,14 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -diff --git a/view/smarty3/mail_display.tpl b/view/smarty3/mail_display.tpl deleted file mode 100644 index 23d05bdeb..000000000 --- a/view/smarty3/mail_display.tpl +++ /dev/null @@ -1,15 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -{{foreach $mails as $mail}} - {{include file="mail_conv.tpl"}} -{{/foreach}} - -{{if $canreply}} -{{include file="prv_message.tpl"}} -{{else}} -{{$unknown_text}} -{{/if}} diff --git a/view/smarty3/mail_head.tpl b/view/smarty3/mail_head.tpl deleted file mode 100644 index f7a39fa8b..000000000 --- a/view/smarty3/mail_head.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -
{{$messages}}
- -{{$tab_content}} diff --git a/view/smarty3/mail_list.tpl b/view/smarty3/mail_list.tpl deleted file mode 100644 index 9dbfb6a14..000000000 --- a/view/smarty3/mail_list.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$title}}
-{{$title}}
- -{{/if}} -{{if $nav.register}}{{$nav.register.1}}
{{/if}} -{{if $nav.login}} -
-{{$nav.net_reset.1}}
-{{/if}} -{{if $nav.home}} -{{$nav.home.1}}
-{{/if}} -{{if $nav.community}} -{{$nav.community.1}}
-{{/if}} -{{if $nav.network}} -
-
{{/if}} -{{$nav.directory.1}}
-{{if $nav.introductions}} -{{$nav.introductions.1}}
-{{/if}} -
-
{{/if}} -{{if $nav.manage}}{{$nav.manage.1}}
{{/if}} -{{if $nav.profiles}}{{$nav.profiles.1}}
{{/if}} -{{if $nav.admin}}{{$nav.admin.1}}
{{/if}} -{{$nav.search.1}}
-{{if $nav.apps}}{{$nav.apps.1}}
{{/if}} -{{if $nav.help}} {{$nav.help.1}}
{{/if}} -
{{/if}} -
{{$title}}
-- {{foreach $nets as $net}} -- {{$net.name}}
- {{/foreach}}
-
-{{$header}}
- -{{foreach $contacts as $contact}} - {{include file="contact_template.tpl"}} -{{/foreach}} - - -{{$paginate}} - - - - diff --git a/view/smarty3/notifications.tpl b/view/smarty3/notifications.tpl deleted file mode 100644 index 834a7a016..000000000 --- a/view/smarty3/notifications.tpl +++ /dev/null @@ -1,13 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -{{$notif_header}}
- -{{include file="common_tabs.tpl"}} - -{{$title}}
- -{{$app.name}}
-{{$authorize}}
- diff --git a/view/smarty3/oauth_authorize_done.tpl b/view/smarty3/oauth_authorize_done.tpl deleted file mode 100644 index 12d4c6f48..000000000 --- a/view/smarty3/oauth_authorize_done.tpl +++ /dev/null @@ -1,9 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$title}}
- -{{$info}}
-{{$code}}
diff --git a/view/smarty3/oembed_video.tpl b/view/smarty3/oembed_video.tpl deleted file mode 100644 index bdfa11509..000000000 --- a/view/smarty3/oembed_video.tpl +++ /dev/null @@ -1,9 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - - - - diff --git a/view/smarty3/oexchange_xrd.tpl b/view/smarty3/oexchange_xrd.tpl deleted file mode 100644 index 5af749182..000000000 --- a/view/smarty3/oexchange_xrd.tpl +++ /dev/null @@ -1,38 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -{{$findpeople}}
-{{$desc}}
- -{{$album.1}}
- -{{$title}}
-{{if $can_post}} -{{$upload.0}} -{{/if}} - -{{$pagename}}
- -{{$title}}
- -{{$title}}
- - --{{$desc}} -
- --{{$desc}} -
- --{{$desc}} -
- --{{$desc}} -
- -{{$title}}
- --- {{$profile.fullname.0}}
- - {{$profile.fullname.1}}
-
- -{{if $profile.gender}} --- {{$profile.gender.0}}
- - {{$profile.gender.1}}
-
-{{/if}} - -{{if $profile.birthday}} --- {{$profile.birthday.0}}
- - {{$profile.birthday.1}}
-
-{{/if}} - -{{if $profile.age}} --- {{$profile.age.0}}
- - {{$profile.age.1}}
-
-{{/if}} - -{{if $profile.marital}} --- ♥ {{$profile.marital.0}}
- - {{$profile.marital.1}}{{if $profile.marital.with}} ({{$profile.marital.with}}){{/if}}{{if $profile.howlong}} {{$profile.howlong}}{{/if}}
-
-{{/if}} - -{{if $profile.sexual}} --- {{$profile.sexual.0}}
- - {{$profile.sexual.1}}
-
-{{/if}} - -{{if $profile.pub_keywords}} --- {{$profile.pub_keywords.0}}
- - {{$profile.pub_keywords.1}}
-
-{{/if}} - -{{if $profile.homepage}} --- {{$profile.homepage.0}}
- - {{$profile.homepage.1}}
-
-{{/if}} - -{{if $profile.hometown}} --- {{$profile.hometown.0}}
- - {{$profile.hometown.1}}
-
-{{/if}} - -{{if $profile.politic}} --- {{$profile.politic.0}}
- - {{$profile.politic.1}}
-
-{{/if}} - -{{if $profile.religion}} --- {{$profile.religion.0}}
- - {{$profile.religion.1}}
-
-{{/if}} - -{{if $profile.about}} --- {{$profile.about.0}}
- - {{$profile.about.1}}
-
-{{/if}} - -{{if $profile.interest}} --- {{$profile.interest.0}}
- - {{$profile.interest.1}}
-
-{{/if}} - -{{if $profile.likes}} --- {{$profile.likes.0}}
- - {{$profile.likes.1}}
-
-{{/if}} - -{{if $profile.dislikes}} --- {{$profile.dislikes.0}}
- - {{$profile.dislikes.1}}
-
-{{/if}} - -{{if $profile.contact}} --- {{$profile.contact.0}}
- - {{$profile.contact.1}}
-
-{{/if}} - - -{{if $profile.music}} --- {{$profile.music.0}}
- - {{$profile.music.1}}
-
-{{/if}} - - -{{if $profile.book}} --- {{$profile.book.0}}
- - {{$profile.book.1}}
-
-{{/if}} - - -{{if $profile.tv}} --- {{$profile.tv.0}}
- - {{$profile.tv.1}}
-
-{{/if}} - - -{{if $profile.film}} --- {{$profile.film.0}}
- - {{$profile.film.1}}
-
-{{/if}} - - -{{if $profile.romance}} --- {{$profile.romance.0}}
- - {{$profile.romance.1}}
-
-{{/if}} - - -{{if $profile.work}} --- {{$profile.work.0}}
- - {{$profile.work.1}}
-
-{{/if}} - -{{if $profile.education}} --- {{$profile.education.0}}
- - {{$profile.education.1}}
-
-{{/if}} - - - - diff --git a/view/smarty3/profile_edit.tpl b/view/smarty3/profile_edit.tpl deleted file mode 100644 index 4b7c4d0b1..000000000 --- a/view/smarty3/profile_edit.tpl +++ /dev/null @@ -1,328 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$default}} - -{{$banner}}
- --- {{$profpic}}
-- {{$viewprof}}
-- {{$cl_prof}}
-
-- {{$del_prof}}
-
-
-{{$header}}
--{{$chg_photo}} -
-{{$title}}
- - - --{{$pubdesc}} -
- -- {{$location}}
- -
- {{if $profile.address}}
{{$profile.address}} {{/if}}
-
- {{$profile.locality}}{{if $profile.locality}}, {{/if}}
- {{$profile.region}}
- {{$profile.postal_code}}
-
- {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
-
-
- {{/if}} - - {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} - - {{if $profile.pubkey}} {{/if}} - - {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} - - {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} - - {{include file="diaspora_vcard.tpl"}} - -- {{if $connect}} -- {{$connect}}
- {{/if}}
- {{if $wallmessage}}
- - {{$wallmessage}}
- {{/if}}
-
-{{$header}}
- -{{$lbl1}}
- --{{$lbl2}} -
--{{$lbl3}} -
--{{$newpass}} -
--{{$lbl4}} {{$lbl5}} -
--{{$lbl6}} -
diff --git a/view/smarty3/register.tpl b/view/smarty3/register.tpl deleted file mode 100644 index 5e655cd82..000000000 --- a/view/smarty3/register.tpl +++ /dev/null @@ -1,70 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$regtitle}}
- - - -{{$license}} - - diff --git a/view/smarty3/remote_friends_common.tpl b/view/smarty3/remote_friends_common.tpl deleted file mode 100644 index 5844aac87..000000000 --- a/view/smarty3/remote_friends_common.tpl +++ /dev/null @@ -1,26 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$title}}
- -{{$title}}
- {{$searchbox}} - -- {{foreach $saved as $search}} --
-
- {{$search.term}}
-
- {{/foreach}}
-
- -- {{$item.item_photo_menu}} -
-{{$ptitle}}
- -{{$nickname_block}} - - - diff --git a/view/smarty3/settings_connectors.tpl b/view/smarty3/settings_connectors.tpl deleted file mode 100644 index 0b0d78299..000000000 --- a/view/smarty3/settings_connectors.tpl +++ /dev/null @@ -1,40 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$title}}
- -{{$ptitle}}
- - diff --git a/view/smarty3/settings_display_end.tpl b/view/smarty3/settings_display_end.tpl deleted file mode 100644 index a7fb96108..000000000 --- a/view/smarty3/settings_display_end.tpl +++ /dev/null @@ -1,5 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} diff --git a/view/smarty3/settings_features.tpl b/view/smarty3/settings_features.tpl deleted file mode 100644 index f5c5c5096..000000000 --- a/view/smarty3/settings_features.tpl +++ /dev/null @@ -1,25 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$title}}
- - - - diff --git a/view/smarty3/settings_nick_set.tpl b/view/smarty3/settings_nick_set.tpl deleted file mode 100644 index fb886695e..000000000 --- a/view/smarty3/settings_nick_set.tpl +++ /dev/null @@ -1,10 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - --It appears that your website is located in a subdirectory of the
--{{$hostname}} website, so this setting may not work reliably.
-
If you have any issues, you may have better results using the profile
\ No newline at end of file diff --git a/view/smarty3/settings_oauth.tpl b/view/smarty3/settings_oauth.tpl deleted file mode 100644 index feab78210..000000000 --- a/view/smarty3/settings_oauth.tpl +++ /dev/null @@ -1,36 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -address '{{$baseurl}}/profile/{{$nickname}}'. -
{{$title}}
- - - diff --git a/view/smarty3/settings_oauth_edit.tpl b/view/smarty3/settings_oauth_edit.tpl deleted file mode 100644 index e3960bf75..000000000 --- a/view/smarty3/settings_oauth_edit.tpl +++ /dev/null @@ -1,22 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$title}}
- - diff --git a/view/smarty3/suggest_friends.tpl b/view/smarty3/suggest_friends.tpl deleted file mode 100644 index 060db0005..000000000 --- a/view/smarty3/suggest_friends.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$str_notifytype}} {{$notify_type}}
-{{$title}}
- - -{{foreach $options as $o}} --- {{$o.1}}
- - {{$o.2}}
-
-{{/foreach}} \ No newline at end of file diff --git a/view/smarty3/uimport.tpl b/view/smarty3/uimport.tpl deleted file mode 100644 index cc137514a..000000000 --- a/view/smarty3/uimport.tpl +++ /dev/null @@ -1,18 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - diff --git a/view/smarty3/vcard-widget.tpl b/view/smarty3/vcard-widget.tpl deleted file mode 100644 index 6ccd2ae1d..000000000 --- a/view/smarty3/vcard-widget.tpl +++ /dev/null @@ -1,10 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$title}}
- -{{foreach $contacts as $contact}} - {{include file="contact_template.tpl"}} -{{/foreach}} - - - -{{$paginate}} diff --git a/view/smarty3/voting_fakelink.tpl b/view/smarty3/voting_fakelink.tpl deleted file mode 100644 index 3d14ba48b..000000000 --- a/view/smarty3/voting_fakelink.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$phrase}} diff --git a/view/smarty3/wall_thread.tpl b/view/smarty3/wall_thread.tpl deleted file mode 100644 index c0e30c4cb..000000000 --- a/view/smarty3/wall_thread.tpl +++ /dev/null @@ -1,125 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{if $item.comment_firstcollapsed}} -- {{$item.item_photo_menu}} -
--
{{$header}}
- -{{$subheader}}
- -$str_notifytype $notify_type
-- $item.item_photo_menu -
-- {{$item.item_photo_menu}} -
-- $item.item_photo_menu -
-- {{$item.item_photo_menu}} -
-- -
- -
$admtxt
--- $admin.site.1
- - $admin.users.1
- - $admin.plugins.1
- - $admin.themes.1
- - $admin.dbsync.1
-
- -{{ if $admin.update }} --- $admin.update.1
- - Important Changes
-
-{{ endif }} - - -{{ if $admin.plugins_admin }}$plugadmtxt
{{ endif }} -- {{ for $admin.plugins_admin as $l }} -- $l.1
- {{ endfor }}
-
- - -$logtxt
--- $admin.logs.1
-
- diff --git a/view/theme/decaf-mobile/admin_site.tpl b/view/theme/decaf-mobile/admin_site.tpl deleted file mode 100644 index 61f52b18d..000000000 --- a/view/theme/decaf-mobile/admin_site.tpl +++ /dev/null @@ -1,67 +0,0 @@ - -$title - $page
- - -$title - $page
- - -- {{ for $tabs as $tab }} -- $tab.label
- {{ endfor }}
-
-
diff --git a/view/theme/decaf-mobile/contact_block.tpl b/view/theme/decaf-mobile/contact_block.tpl deleted file mode 100644 index a8e34fce1..000000000 --- a/view/theme/decaf-mobile/contact_block.tpl +++ /dev/null @@ -1,12 +0,0 @@ -{##} diff --git a/view/theme/decaf-mobile/contact_edit.tpl b/view/theme/decaf-mobile/contact_edit.tpl deleted file mode 100644 index e113018b3..000000000 --- a/view/theme/decaf-mobile/contact_edit.tpl +++ /dev/null @@ -1,93 +0,0 @@ - -$header
- --$relation_text
- $nettype
- {{ if $lost_contact }}
- $lost_contact
- {{ endif }}
- {{ if $insecure }}
- $insecure
- {{ endif }}
- {{ if $blocked }}
- $blocked
- {{ endif }}
- {{ if $ignored }}
- $ignored
- {{ endif }}
- {{ if $archived }}
- $archived
- {{ endif }}
-
- -
-
- {{ if $common_text }}
- $common_text
- {{ endif }}
- {{ if $all_friends }}
- $all_friends
- {{ endif }}
-
-
- - $lblrecent
- {{ if $lblsuggest }}
- - $lblsuggest
- {{ endif }}
-
-
--{{ if $contact.alt_text }}
$header{{ if $total }} ($total){{ endif }}
- -{{ if $finding }}$finding
{{ endif }} - -$title
--$desc -
-- $field.3 -
- - $field.3 -
- - $field.3 -
- - $field.3 -
- {{ for $items as $item }} -- $item.label
- {{ endfor }}
-
-
- -$title
- -- {{ for $groups as $group }} --
- {{ if $group.cid }}
-
- {{ endif }}
- {{ if $group.edit }}
-
- {{ endif }}
- $group.text
-
- {{ endfor }}
-
-$title
-- - -
diff --git a/view/theme/decaf-mobile/mail_list.tpl b/view/theme/decaf-mobile/mail_list.tpl deleted file mode 100644 index 74274a246..000000000 --- a/view/theme/decaf-mobile/mail_list.tpl +++ /dev/null @@ -1,16 +0,0 @@ -
$title
-$album.1
- -$pagename
- -$banner
- --- $viewprof
-- $cl_prof
-
-- $del_prof
-
-
-$title
- - - -- $location
- -
- {{ if $profile.address }}
$profile.address {{ endif }}
-
- $profile.locality{{ if $profile.locality }}, {{ endif }}
- $profile.region
- $profile.postal_code
-
- {{ if $profile.country_name }}$profile.country_name{{ endif }}
-
-
- {{ endif }} - - {{ if $gender }}- $gender
- $profile.gender
{{ endif }} - - {{ if $profile.pubkey }} {{ endif }} - - {{ if $marital }}- ♥$marital
- $profile.marital
{{ endif }} - - {{ if $homepage }}- $homepage
- $profile.homepage
{{ endif }} - - {{ inc diaspora_vcard.tpl }}{{ endinc }} - - -- {{ if $connect }} -- $connect
- {{ endif }}
- {{ if $wallmessage }}
- - $wallmessage
- {{ endif }}
-
-$header
- -$regtitle
-- - -
- -$license - -
$ptitle
- -$nickname_block - -- {{$field.3}} -
- - {{$field.3}} -
- - {{$field.3}} -
- - {{$field.3}} -
- {{foreach $items as $item}} -- {{$item.label}}
- {{/foreach}}
-
-
- -{{$title}}
- -- {{foreach $groups as $group}} --
- {{if $group.cid}}
-
- {{/if}}
- {{if $group.edit}}
-
- {{/if}}
- {{$group.text}}
-
- {{/foreach}}
-
--
- {{include file="field_checkbox.tpl" field=$lremember}} - -
-
{{$title}}
-- -
- -
-{{$desc}} -
-- -
diff --git a/view/theme/decaf-mobile/smarty3/mail_list.tpl b/view/theme/decaf-mobile/smarty3/mail_list.tpl deleted file mode 100644 index 538f6affb..000000000 --- a/view/theme/decaf-mobile/smarty3/mail_list.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -
{{$title}}
--
-
-
-
-
-
-
-
-
- - - - --
{{$album.1}}
- -{{$pagename}}
- -{{$banner}}
- --- {{$viewprof}}
-- {{$cl_prof}}
-
-- {{$del_prof}}
-
-
--{{$lbl_about}} -
- - - --{{$lbl_hobbies}} -
- - - --{{$lbl_likes}} -
- - - --{{$lbl_dislikes}} -
- - - --{{$lbl_social}} -
- - - --{{$lbl_music}} -
- - - --{{$lbl_book}} -
- - - --{{$lbl_tv}} -
- - - --{{$lbl_film}} -
- - - --{{$lbl_love}} -
- - - --{{$lbl_work}} -
- - - --{{$lbl_school}} -
- - - -{{$title}}
- -- {{$location}}
- -
- {{if $profile.address}}
{{$profile.address}} {{/if}}
-
- {{$profile.locality}}{{if $profile.locality}}, {{/if}}
- {{$profile.region}}
- {{$profile.postal_code}}
-
- {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
-
-
- {{/if}} - - {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} - - {{if $profile.pubkey}} {{/if}} - - {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} - - {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} - - {{include file="diaspora_vcard.tpl"}} - - -- {{if $connect}} -- {{$connect}}
- {{/if}}
- {{if $wallmessage}}
- - {{$wallmessage}}
- {{/if}}
-
-{{$header}}
- -{{$regtitle}}
-- -
{{$realpeople}}
- --{{if $oidlabel}} -
{{$fillwith}} {{$fillext}}
-- -{{if $invitations}} - -
{{$invite_desc}}
-- -
- -
- -
{{$nickdesc}}
-- -
- -{{$license}} - -
{{$ptitle}}
- -{{$nickname_block}} - -{{$h_pass}}
- -{{include file="field_password.tpl" field=$password1}} -{{include file="field_password.tpl" field=$password2}} -{{include file="field_password.tpl" field=$password3}} - -{{if $oid_enable}} -{{include file="field_input.tpl" field=$openid}} -{{/if}} - -{{$h_basic}}
- -{{include file="field_input.tpl" field=$username}} -{{include file="field_input.tpl" field=$email}} -{{include file="field_password.tpl" field=$password4}} -{{include file="field_custom.tpl" field=$timezone}} -{{include file="field_input.tpl" field=$defloc}} -{{include file="field_checkbox.tpl" field=$allowloc}} - - -{{$h_prv}}
- - - - -{{include file="field_input.tpl" field=$maxreq}} - -{{$profile_in_dir}} - -{{$profile_in_net_dir}} - -{{$hide_friends}} - -{{$hide_wall}} - -{{$blockwall}} - -{{$blocktags}} - -{{$suggestme}} - -{{$unkmail}} - - -{{include file="field_input.tpl" field=$cntunkmail}} - -{{include file="field_input.tpl" field=$expire.days}} - - -{{$expire.advanced}}
- {{include file="field_yesno.tpl" field=$expire.items}} - {{include file="field_yesno.tpl" field=$expire.notes}} - {{include file="field_yesno.tpl" field=$expire.starred}} - {{include file="field_yesno.tpl" field=$expire.network_only}} --
- - -{{$group_select}} - - -
{{$h_not}}
-{{$h_advn}}
--
-
{{$header}}
- -{{$subheader}}
- --
-
$header
- -$subheader
- -$title - $page
- -$h_pending
- {{ if $pending }} -$no_pending
- {{ endif }} - - - - -$h_users
- {{ if $users }} -$comunity_profiles_title
-$helpers.title.1
-How-To Guides-NewHere
-Friendica Support
-Let's talk
-Local Friendica -{{ endif }} -
$con_services.title.1
-$nv.title.1
-$nv.directory.1-$nv.global_directory.1
-$nv.match.1
-$nv.suggest.1
-$nv.invite.1 -$nv.search -{{ endif }} -
$lastusers_title
-$activeusers_title
-$photos_title
-$like_title
--{{ for $like_items as $i }} -- $i
-{{ endfor }}
-
-{{ endif }} -$twitter.title.1
-$mapquery.title.1
-- {{ for $contact.photo_menu as $c }} - {{ if $c.2 }} -- $c.0
- {{ else }}
- - $c.0
- {{ endif }}
- {{ endfor }}
-
-- $location
- -
- {{ if $profile.address }}
$profile.address {{ endif }}
-
- $profile.locality{{ if $profile.locality }}, {{ endif }}
- $profile.region
- $profile.postal_code
-
- {{ if $profile.country_name }}$profile.country_name{{ endif }}
-
-
- {{ endif }} - - {{ if $gender }}- $gender
- $profile.gender
{{ endif }} -- ♥$marital
- $profile.marital
{{ endif }} - - {{ if $homepage }}- $homepage
- $profile.homepage
{{ endif }} -- $about
- $profile.about
{{ endif }} -$title
{{endif}} - {{if $desc}}- {{ for $items as $item }} -- $item.label
- {{ endfor }}
-
- -$title
-- {{ for $groups as $group }} --
-
-
- $group.text
-
- {{ if $group.edit }}
-
- {{ endif }}
- {{ if $group.cid }}
-
- {{ endif }}
-
- {{ endfor }}
-
--
- -#} diff --git a/view/theme/diabook/mail_display.tpl b/view/theme/diabook/mail_display.tpl deleted file mode 100644 index 2b680ae42..000000000 --- a/view/theme/diabook/mail_display.tpl +++ /dev/null @@ -1,12 +0,0 @@ -
$title
---
-
- $all
- {{ for $nets as $net }}
- -
-
-
- $net.name
-
- {{ endfor }}
-
-- $photo_menu -
- -$title
{{ endif }} - $body -$album.1
- --- $ps.usermenu.status.1
- - $ps.usermenu.photos.1
- - $ps.usermenu.contacts.1
- - $ps.usermenu.events.1
- - $ps.usermenu.notes.1
- - $ps.usermenu.pgroups.1
- - $ps.usermenu.community.1
-
- -- {{ for $profile.menu.entries as $e }} --
- $e.profile_name
-
- {{ endfor }}
- - $profile.menu.chg_photo
- - $profile.menu.cr_new
- - $profile.edit.3
-
-
-- $location
-
- {{ if $profile.address }}
$profile.address {{ endif }}
-
- $profile.locality{{ if $profile.locality }}, {{ endif }}
- $profile.region
- $profile.postal_code
-
- {{ if $profile.country_name }}$profile.country_name{{ endif }}
-
-
- {{ endif }} - - {{ if $gender }}-
- $gender
- $profile.gender
{{ endif }} - - {{ if $profile.pubkey }} {{ endif }} - - {{ if $marital }}- ♥$marital
- $profile.marital
{{ endif }} - - {{ if $homepage }}- $homepage
- $profile.homepage
{{ endif }} - - {{ inc diaspora_vcard.tpl }}{{ endinc }} - -- {{ if $connect }} -- $connect
- {{ endif }}
-
-$header
- --- $ps.usermenu.status.1
- - $ps.usermenu.photos.1
- - $ps.usermenu.events.1
- - $ps.usermenu.notes.1
- - Public Groups
- - $ps.usermenu.community.1
-
- -- $item.item_photo_menu -
- -$item.title
{{ endif }} - $item.body - {{ if $item.has_cats }} -{{$title}} - {{$page}}
- -{{$h_pending}}
- {{if $pending}} -{{$no_pending}}
- {{/if}} - - - - -{{$h_users}}
- {{if $users}} -{{$comunity_profiles_title}}
-{{$helpers.title.1}}
-How-To Guides-NewHere
-Friendica Support
-Let's talk
-Local Friendica -{{/if}} -
{{$con_services.title.1}}
-{{$nv.title.1}}
-{{$nv.directory.1}}-{{$nv.global_directory.1}}
-{{$nv.match.1}}
-{{$nv.suggest.1}}
-{{$nv.invite.1}} -{{$nv.search}} -{{/if}} -
{{$lastusers_title}}
-{{$activeusers_title}}
-{{$photos_title}}
-{{$like_title}}
--{{foreach $like_items as $i}} -- {{$i}}
-{{/foreach}}
-
-{{/if}} -{{$twitter.title.1}}
-{{$mapquery.title.1}}
-- {{foreach $contact.photo_menu as $c}} - {{if $c.2}} -- {{$c.0}}
- {{else}}
- - {{$c.0}}
- {{/if}}
- {{/foreach}}
-
-- {{$location}}
- -
- {{if $profile.address}}
{{$profile.address}} {{/if}}
-
- {{$profile.locality}}{{if $profile.locality}}, {{/if}}
- {{$profile.region}}
- {{$profile.postal_code}}
-
- {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
-
-
- {{/if}} - - {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} -- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} - - {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} -- {{$about}}
- {{$profile.about}}
{{/if}} -{{$title}}
{{/if}} - {{if $desc}}- {{foreach $items as $item}} -- {{$item.label}}
- {{/foreach}}
-
- -{{$title}}
-- {{foreach $groups as $group}} --
-
-
- {{$group.text}}
-
- {{if $group.edit}}
-
- {{/if}}
- {{if $group.cid}}
-
- {{/if}}
-
- {{/foreach}}
-
--
- -*}} diff --git a/view/theme/diabook/smarty3/mail_display.tpl b/view/theme/diabook/smarty3/mail_display.tpl deleted file mode 100644 index dc1fbbc6f..000000000 --- a/view/theme/diabook/smarty3/mail_display.tpl +++ /dev/null @@ -1,17 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -
{{$title}}
---
-
- {{$all}}
- {{foreach $nets as $net}}
- -
-
-
- {{$net.name}}
-
- {{/foreach}}
-
-- {{$photo_menu}} -
- -{{$title}}
{{/if}} - {{$body}} -{{$album.1}}
- --- {{$ps.usermenu.status.1}}
- - {{$ps.usermenu.photos.1}}
- - {{$ps.usermenu.contacts.1}}
- - {{$ps.usermenu.events.1}}
- - {{$ps.usermenu.notes.1}}
- - {{$ps.usermenu.pgroups.1}}
- - {{$ps.usermenu.community.1}}
-
- -- {{foreach $profile.menu.entries as $e}} --
- {{$e.profile_name}}
-
- {{/foreach}}
- - {{$profile.menu.chg_photo}}
- - {{$profile.menu.cr_new}}
- - {{$profile.edit.3}}
-
-
-- {{$location}}
-
- {{if $profile.address}}
{{$profile.address}} {{/if}}
-
- {{$profile.locality}}{{if $profile.locality}}, {{/if}}
- {{$profile.region}}
- {{$profile.postal_code}}
-
- {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
-
-
- {{/if}} - - {{if $gender}}-
- {{$gender}}
- {{$profile.gender}}
{{/if}} - - {{if $profile.pubkey}} {{/if}} - - {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} - - {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} - - {{include file="diaspora_vcard.tpl"}} - -- {{if $connect}} -- {{$connect}}
- {{/if}}
-
-{{$header}}
- --- {{$ps.usermenu.status.1}}
- - {{$ps.usermenu.photos.1}}
- - {{$ps.usermenu.events.1}}
- - {{$ps.usermenu.notes.1}}
- - Public Groups
- - {{$ps.usermenu.community.1}}
-
- -- {{$item.item_photo_menu}} -
- -{{$item.title}}
{{/if}} - {{$item.body}} - {{if $item.has_cats}} --
Show/hide boxes at right-hand column
-{{include file="field_select.tpl" field=$close_pages}} -{{include file="field_select.tpl" field=$close_profiles}} -{{include file="field_select.tpl" field=$close_helpers}} -{{include file="field_select.tpl" field=$close_services}} -{{include file="field_select.tpl" field=$close_friends}} -{{include file="field_select.tpl" field=$close_lastusers}} -{{include file="field_select.tpl" field=$close_lastphotos}} -{{include file="field_select.tpl" field=$close_lastlikes}} -{{include file="field_select.tpl" field=$close_twitter}} -{{include file="field_input.tpl" field=$TSearchTerm}} -{{include file="field_select.tpl" field=$close_mapquery}} - -{{include file="field_input.tpl" field=$ELPosX}} - -{{include file="field_input.tpl" field=$ELPosY}} - -{{include file="field_input.tpl" field=$ELZoom}} - -- -
- {{$item.item_photo_menu}} -
- -{{$item.title}}
{{/if}} - {{$item.body}} - {{if $item.has_cats}} --
Show/hide boxes at right-hand column
-{{inc field_select.tpl with $field=$close_pages}}{{endinc}} -{{inc field_select.tpl with $field=$close_profiles}}{{endinc}} -{{inc field_select.tpl with $field=$close_helpers}}{{endinc}} -{{inc field_select.tpl with $field=$close_services}}{{endinc}} -{{inc field_select.tpl with $field=$close_friends}}{{endinc}} -{{inc field_select.tpl with $field=$close_lastusers}}{{endinc}} -{{inc field_select.tpl with $field=$close_lastphotos}}{{endinc}} -{{inc field_select.tpl with $field=$close_lastlikes}}{{endinc}} -{{inc field_select.tpl with $field=$close_twitter}}{{endinc}} -{{inc field_input.tpl with $field=$TSearchTerm}}{{endinc}} -{{inc field_select.tpl with $field=$close_mapquery}}{{endinc}} - -{{inc field_input.tpl with $field=$ELPosX}}{{endinc}} - -{{inc field_input.tpl with $field=$ELPosY}}{{endinc}} - -{{inc field_input.tpl with $field=$ELZoom}}{{endinc}} - -- -
- $item.item_photo_menu -
- -$item.title
{{ endif }} - $item.body - {{ if $item.has_cats }} --
-
-
-
-
-
-
-
-
- - - {{ if $qcomment }} -Help or '@NewHere'?
--Let's talk
-Local Friendica
-NewHere -
Connectable Services
--
-
-
-
-
-
-
-
-
- diff --git a/view/theme/dispy/contact_template.tpl b/view/theme/dispy/contact_template.tpl deleted file mode 100644 index e656ea552..000000000 --- a/view/theme/dispy/contact_template.tpl +++ /dev/null @@ -1,36 +0,0 @@ - -- {{ for $contact.photo_menu as $c }} - {{ if $c.2 }} -- $c.0
- {{ else }}
- - $c.0
- {{ endif }}
- {{ endfor }}
-
-$title
- -- {{ for $groups as $group }} --
- $group.text
- {{ if $group.edit }}
-
- {{ endif }}
- {{ if $group.cid }}
-
- {{ endif }}
-
- {{ endfor }}
-
--
$messages
- -$album.1
- -- {{ for $profile.menu.entries as $e }} --
- $e.profile_name
-
- {{ endfor }}
- - $profile.menu.chg_photo
- - $profile.menu.cr_new
-
-- {{ if $connect }} -- $connect
- {{ endif }}
-
-$title
- $searchbox - -- {{ for $saved as $search }} --
-
- $search.term
-
- {{ endfor }}
-
- -- $item.item_photo_menu -
--
-
-
-
-
-
-
-
-
- - - {{if $qcomment}} -Help or '@NewHere'?
--Let's talk
-Local Friendica
-NewHere -
Connectable Services
--
-
-
-
-
-
-
-
-
- diff --git a/view/theme/dispy/smarty3/contact_template.tpl b/view/theme/dispy/smarty3/contact_template.tpl deleted file mode 100644 index d22acd5a6..000000000 --- a/view/theme/dispy/smarty3/contact_template.tpl +++ /dev/null @@ -1,41 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -- {{foreach $contact.photo_menu as $c}} - {{if $c.2}} -- {{$c.0}}
- {{else}}
- - {{$c.0}}
- {{/if}}
- {{/foreach}}
-
-{{$title}}
- -- {{foreach $groups as $group}} --
- {{$group.text}}
- {{if $group.edit}}
-
- {{/if}}
- {{if $group.cid}}
-
- {{/if}}
-
- {{/foreach}}
-
--
{{$messages}}
- -{{$album.1}}
- -- {{foreach $profile.menu.entries as $e}} --
- {{$e.profile_name}}
-
- {{/foreach}}
- - {{$profile.menu.chg_photo}}
- - {{$profile.menu.cr_new}}
-
-- {{if $connect}} -- {{$connect}}
- {{/if}}
-
-{{$title}}
- {{$searchbox}} - -- {{foreach $saved as $search}} --
-
- {{$search.term}}
-
- {{/foreach}}
-
- -- {{$item.item_photo_menu}} -
-- {{$item.item_photo_menu}} -
-- {{if $item.star}} --
-
-
- {{/if}}
- {{if $item.tagger}}
- -
-
-
- {{/if}}
- {{if $item.vote}}
- -
-
- {{if $item.vote.dislike}}
-
- {{/if}}
- {{if $item.vote.share}}
- {{/if}}
-
-
- {{/if}}
-
-
- {{if $item.filer}} -
- {{/if}}
- {{if $item.plink}}
-
- {{/if}}
- {{if $item.edpost}}
-
- {{/if}}
-
- -
- {{if $item.drop.dropping}}{{/if}}
- {{if $item.drop.pagedrop}}{{/if}}
-
-
- -- $item.item_photo_menu -
-- {{ if $item.star }} --
-
-
- {{ endif }}
- {{ if $item.tagger }}
- -
-
-
- {{ endif }}
- {{ if $item.vote }}
- -
-
- {{ if $item.vote.dislike }}
-
- {{ endif }}
- {{ if $item.vote.share }}
- {{ endif }}
-
-
- {{ endif }}
-
-
- {{ if $item.filer }} -
- {{ endif }}
- {{ if $item.plink }}
-
- {{ endif }}
- {{ if $item.edpost }}
-
- {{ endif }}
-
- -
- {{ if $item.drop.dropping }}{{ endif }}
- {{ if $item.drop.pagedrop }}{{ endif }}
-
-
- --
-
-
-
-
-
-
-
-
- - - {{ if $qcomment }} - - {{ endif }} - - --
-
-
-
-
-
-
-
-
- - - - -- $location
- -
- {{ if $profile.address }}
$profile.address {{ endif }}
-
- $profile.locality{{ if $profile.locality }}, {{ endif }}
- $profile.region
- $profile.postal_code
-
- {{ if $profile.country_name }}$profile.country_name{{ endif }}
-
-
- {{ endif }} - - {{ if $gender }}- $gender
- $profile.gender
{{ endif }} - - {{ if $profile.pubkey }} {{ endif }} - - {{ if $marital }}- ♥$marital
- $profile.marital
{{ endif }} - - {{ if $homepage }}- $homepage
- $profile.homepage
{{ endif }} - - {{ inc diaspora_vcard.tpl }}{{ endinc }} - - -- {{ if $connect }} -- $connect
- {{ endif }}
- {{ if $wallmessage }}
- - $wallmessage
- {{ endif }}
-
-$header
- --
-
-
-
-
-
-
-
-
- - - {{if $qcomment}} - - {{/if}} - - --
-
-
-
-
-
-
-
-
- - - - -- {{$location}}
- -
- {{if $profile.address}}
{{$profile.address}} {{/if}}
-
- {{$profile.locality}}{{if $profile.locality}}, {{/if}}
- {{$profile.region}}
- {{$profile.postal_code}}
-
- {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
-
-
- {{/if}} - - {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} - - {{if $profile.pubkey}} {{/if}} - - {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} - - {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} - - {{include file="diaspora_vcard.tpl"}} - - -- {{if $connect}} -- {{$connect}}
- {{/if}}
- {{if $wallmessage}}
- - {{$wallmessage}}
- {{/if}}
-
-{{$header}}
- -$title
- -- {{ for $groups as $group }} --
- {{ if $group.cid }}
-
- {{ endif }}
- {{ if $group.edit }}
-
- {{ endif }}
- $group.text
-
- {{ endfor }}
-
--
- $location
- -
- {{ if $profile.address }}
$profile.address {{ endif }}
-
- $profile.locality{{ if $profile.locality }}, {{ endif }}
- $profile.region
- $profile.postal_code
-
- {{ if $profile.country_name }}$profile.country_name{{ endif }}
-
-
- {{ endif }} - - {{ if $gender }}- $gender
- $profile.gender
{{ endif }} - - {{ if $profile.pubkey }} {{ endif }} - - {{ if $marital }}- ♥$marital
- $profile.marital
{{ endif }} - - {{ if $homepage }}- $homepage
- $profile.homepage
{{ endif }} - - {{ inc diaspora_vcard.tpl }}{{ endinc }} - -- {{ if $connect }} -- $connect
- {{ endif }}
-
-- $item.item_photo_menu -
-{{$title}}
- -- {{foreach $groups as $group}} --
- {{if $group.cid}}
-
- {{/if}}
- {{if $group.edit}}
-
- {{/if}}
- {{$group.text}}
-
- {{/foreach}}
-
--
- {{$location}}
- -
- {{if $profile.address}}
{{$profile.address}} {{/if}}
-
- {{$profile.locality}}{{if $profile.locality}}, {{/if}}
- {{$profile.region}}
- {{$profile.postal_code}}
-
- {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
-
-
- {{/if}} - - {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} - - {{if $profile.pubkey}} {{/if}} - - {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} - - {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} - - {{include file="diaspora_vcard.tpl"}} - -- {{if $connect}} -- {{$connect}}
- {{/if}}
-
-- {{$item.item_photo_menu}} -
-$admtxt
--- $admin.site.1
- - $admin.users.1
- - $admin.plugins.1
- - $admin.themes.1
- - $admin.dbsync.1
-
- -{{ if $admin.update }} --- $admin.update.1
- - Important Changes
-
-{{ endif }} - - -{{ if $admin.plugins_admin }}$plugadmtxt
{{ endif }} -- {{ for $admin.plugins_admin as $l }} -- $l.1
- {{ endfor }}
-
- - -$logtxt
--- $admin.logs.1
-
- diff --git a/view/theme/frost-mobile/admin_site.tpl b/view/theme/frost-mobile/admin_site.tpl deleted file mode 100644 index 61f52b18d..000000000 --- a/view/theme/frost-mobile/admin_site.tpl +++ /dev/null @@ -1,67 +0,0 @@ - -$title - $page
- -$registration
- {{ inc field_input.tpl with $field=$register_text }}{{ endinc }} - {{ inc field_select.tpl with $field=$register_policy }}{{ endinc }} - - {{ inc field_checkbox.tpl with $field=$no_multi_reg }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$no_openid }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$no_regfullname }}{{ endinc }} - - - -$upload
- {{ inc field_input.tpl with $field=$maximagesize }}{{ endinc }} - {{ inc field_input.tpl with $field=$maximagelength }}{{ endinc }} - {{ inc field_input.tpl with $field=$jpegimagequality }}{{ endinc }} - -$corporate
- {{ inc field_input.tpl with $field=$allowed_sites }}{{ endinc }} - {{ inc field_input.tpl with $field=$allowed_email }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$block_public }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$force_publish }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$no_community_page }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$ostatus_disabled }}{{ endinc }} - {{ inc field_select.tpl with $field=$ostatus_poll_interval }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$diaspora_enabled }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$dfrn_only }}{{ endinc }} - {{ inc field_input.tpl with $field=$global_directory }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$thread_allow }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$newuser_private }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$enotify_no_content }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$private_addons }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$disable_embedded }}{{ endinc }} - - -$advanced
- {{ inc field_checkbox.tpl with $field=$no_utf }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$verifyssl }}{{ endinc }} - {{ inc field_input.tpl with $field=$proxy }}{{ endinc }} - {{ inc field_input.tpl with $field=$proxyuser }}{{ endinc }} - {{ inc field_input.tpl with $field=$timeout }}{{ endinc }} - {{ inc field_input.tpl with $field=$delivery_interval }}{{ endinc }} - {{ inc field_input.tpl with $field=$poll_interval }}{{ endinc }} - {{ inc field_input.tpl with $field=$maxloadavg }}{{ endinc }} - {{ inc field_input.tpl with $field=$abandon_days }}{{ endinc }} - - - -$title - $page
- -$h_pending
- {{ if $pending }} -$no_pending
- {{ endif }} - - - - -$h_users
- {{ if $users }} --
-
-
-
-
-{##}
-
- {##} -{##} - - {{ if $qcomment }} - - {{ endif }} - - -- {{ for $tabs as $tab }} -- $tab.label
- {{ endfor }}
-
-
diff --git a/view/theme/frost-mobile/contact_block.tpl b/view/theme/frost-mobile/contact_block.tpl deleted file mode 100644 index a8e34fce1..000000000 --- a/view/theme/frost-mobile/contact_block.tpl +++ /dev/null @@ -1,12 +0,0 @@ -{##} diff --git a/view/theme/frost-mobile/contact_edit.tpl b/view/theme/frost-mobile/contact_edit.tpl deleted file mode 100644 index e5f12950c..000000000 --- a/view/theme/frost-mobile/contact_edit.tpl +++ /dev/null @@ -1,93 +0,0 @@ - -$header
- --$relation_text
- $nettype
- {{ if $lost_contact }}
- $lost_contact
- {{ endif }}
- {{ if $insecure }}
- $insecure
- {{ endif }}
- {{ if $blocked }}
- $blocked
- {{ endif }}
- {{ if $ignored }}
- $ignored
- {{ endif }}
- {{ if $archived }}
- $archived
- {{ endif }}
-
- -
-
- {{ if $common_text }}
- $common_text
- {{ endif }}
- {{ if $all_friends }}
- $all_friends
- {{ endif }}
-
-
- - $lblrecent
- {{ if $lblsuggest }}
- - $lblsuggest
- {{ endif }}
-
-
-$lbl_info1
- - -$lbl_vis1
-$lbl_vis2
-- {{ for $contact.photo_menu as $c }} - {{ if $c.2 }} -- $c.0
- {{ else }}
- - $c.0
- {{ endif }}
- {{ endfor }}
-
--{{ if $contact.alt_text }}
$header{{ if $total }} ($total){{ endif }}
- -{{ if $finding }}$finding
{{ endif }} - -$title
--$desc -
-- $field.3 -
- - $field.3 -
- - $field.3 -
- - $field.3 -
- {{ for $items as $item }} -- $item.label
- {{ endfor }}
-
-
- --
-
- {{ inc field_checkbox.tpl with $field=$lremember }}{{ endinc }} - -
-
$title
-- -
- -
-$desc -
-- -
diff --git a/view/theme/frost-mobile/mail_list.tpl b/view/theme/frost-mobile/mail_list.tpl deleted file mode 100644 index 5be7f3862..000000000 --- a/view/theme/frost-mobile/mail_list.tpl +++ /dev/null @@ -1,16 +0,0 @@ -
-
-
-
-
-
-
-
-
-
- - - - --
$album.1
- -$pagename
- -$banner
- --- $viewprof
-- $cl_prof
-
-- $del_prof
-
-
--$lbl_about -
- - - --$lbl_hobbies -
- - - --$lbl_likes -
- - - --$lbl_dislikes -
- - - --$lbl_social -
- - - --$lbl_music -
- - - --$lbl_book -
- - - --$lbl_tv -
- - - --$lbl_film -
- - - --$lbl_love -
- - - --$lbl_work -
- - - --$lbl_school -
- - - -$title
- -- $location
- -
- {{ if $profile.address }}
$profile.address {{ endif }}
-
- $profile.locality{{ if $profile.locality }}, {{ endif }}
- $profile.region
- $profile.postal_code
-
- {{ if $profile.country_name }}$profile.country_name{{ endif }}
-
-
- {{ endif }} - - {{ if $gender }}- $gender
- $profile.gender
{{ endif }} - - {{ if $profile.pubkey }} {{ endif }} - - {{ if $marital }}- ♥$marital
- $profile.marital
{{ endif }} - - {{ if $homepage }}- $homepage
- $profile.homepage
{{ endif }} - - {{ inc diaspora_vcard.tpl }}{{ endinc }} - - -- {{ if $connect }} -- $connect
- {{ endif }}
- {{ if $wallmessage }}
- - $wallmessage
- {{ endif }}
-
-$header
- -$regtitle
-- -
$realpeople
- --{{ if $oidlabel }} -
$fillwith $fillext
-- -{{ if $invitations }} - -
$invite_desc
-- -
- -
- -
$nickdesc
-- -
- -$license - -
$ptitle
- -$nickname_block - -$h_pass
- -{{inc field_password.tpl with $field=$password1 }}{{endinc}} -{{inc field_password.tpl with $field=$password2 }}{{endinc}} -{{inc field_password.tpl with $field=$password3 }}{{endinc}} - -{{ if $oid_enable }} -{{inc field_input.tpl with $field=$openid }}{{endinc}} -{{ endif }} - -$h_basic
- -{{inc field_input.tpl with $field=$username }}{{endinc}} -{{inc field_input.tpl with $field=$email }}{{endinc}} -{{inc field_password.tpl with $field=$password4 }}{{endinc}} -{{inc field_custom.tpl with $field=$timezone }}{{endinc}} -{{inc field_input.tpl with $field=$defloc }}{{endinc}} -{{inc field_checkbox.tpl with $field=$allowloc }}{{endinc}} - - -$h_prv
- - - - -{{inc field_input.tpl with $field=$maxreq }}{{endinc}} - -$profile_in_dir - -$profile_in_net_dir - -$hide_friends - -$hide_wall - -$blockwall - -$blocktags - -$suggestme - -$unkmail - - -{{inc field_input.tpl with $field=$cntunkmail }}{{endinc}} - -{{inc field_input.tpl with $field=$expire.days }}{{endinc}} - - -$expire.advanced
- {{ inc field_yesno.tpl with $field=$expire.items }}{{endinc}} - {{ inc field_yesno.tpl with $field=$expire.notes }}{{endinc}} - {{ inc field_yesno.tpl with $field=$expire.starred }}{{endinc}} - {{ inc field_yesno.tpl with $field=$expire.network_only }}{{endinc}} -- - -$group_select - - -
$h_not
-$h_advn
-{{$admtxt}}
--- {{$admin.site.1}}
- - {{$admin.users.1}}
- - {{$admin.plugins.1}}
- - {{$admin.themes.1}}
- - {{$admin.dbsync.1}}
-
- -{{if $admin.update}} --- {{$admin.update.1}}
- - Important Changes
-
-{{/if}} - - -{{if $admin.plugins_admin}}{{$plugadmtxt}}
{{/if}} -- {{foreach $admin.plugins_admin as $l}} -- {{$l.1}}
- {{/foreach}}
-
- - -{{$logtxt}}
--- {{$admin.logs.1}}
-
- diff --git a/view/theme/frost-mobile/smarty3/admin_site.tpl b/view/theme/frost-mobile/smarty3/admin_site.tpl deleted file mode 100644 index 035024e68..000000000 --- a/view/theme/frost-mobile/smarty3/admin_site.tpl +++ /dev/null @@ -1,72 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -{{$title}} - {{$page}}
- -{{$registration}}
- {{include file="field_input.tpl" field=$register_text}} - {{include file="field_select.tpl" field=$register_policy}} - - {{include file="field_checkbox.tpl" field=$no_multi_reg}} - {{include file="field_checkbox.tpl" field=$no_openid}} - {{include file="field_checkbox.tpl" field=$no_regfullname}} - - - -{{$upload}}
- {{include file="field_input.tpl" field=$maximagesize}} - {{include file="field_input.tpl" field=$maximagelength}} - {{include file="field_input.tpl" field=$jpegimagequality}} - -{{$corporate}}
- {{include file="field_input.tpl" field=$allowed_sites}} - {{include file="field_input.tpl" field=$allowed_email}} - {{include file="field_checkbox.tpl" field=$block_public}} - {{include file="field_checkbox.tpl" field=$force_publish}} - {{include file="field_checkbox.tpl" field=$no_community_page}} - {{include file="field_checkbox.tpl" field=$ostatus_disabled}} - {{include file="field_select.tpl" field=$ostatus_poll_interval}} - {{include file="field_checkbox.tpl" field=$diaspora_enabled}} - {{include file="field_checkbox.tpl" field=$dfrn_only}} - {{include file="field_input.tpl" field=$global_directory}} - {{include file="field_checkbox.tpl" field=$thread_allow}} - {{include file="field_checkbox.tpl" field=$newuser_private}} - {{include file="field_checkbox.tpl" field=$enotify_no_content}} - {{include file="field_checkbox.tpl" field=$private_addons}} - {{include file="field_checkbox.tpl" field=$disable_embedded}} - - -{{$advanced}}
- {{include file="field_checkbox.tpl" field=$no_utf}} - {{include file="field_checkbox.tpl" field=$verifyssl}} - {{include file="field_input.tpl" field=$proxy}} - {{include file="field_input.tpl" field=$proxyuser}} - {{include file="field_input.tpl" field=$timeout}} - {{include file="field_input.tpl" field=$delivery_interval}} - {{include file="field_input.tpl" field=$poll_interval}} - {{include file="field_input.tpl" field=$maxloadavg}} - {{include file="field_input.tpl" field=$abandon_days}} - - - -{{$title}} - {{$page}}
- -{{$h_pending}}
- {{if $pending}} -{{$no_pending}}
- {{/if}} - - - - -{{$h_users}}
- {{if $users}} --
-
-
-
-
-{{**}}
-
- {{**}} -{{**}} - - {{if $qcomment}} - - {{/if}} - - -- {{foreach $tabs as $tab}} -- {{$tab.label}}
- {{/foreach}}
-
-
diff --git a/view/theme/frost-mobile/smarty3/contact_block.tpl b/view/theme/frost-mobile/smarty3/contact_block.tpl deleted file mode 100644 index 5a0a26b87..000000000 --- a/view/theme/frost-mobile/smarty3/contact_block.tpl +++ /dev/null @@ -1,17 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{**}} diff --git a/view/theme/frost-mobile/smarty3/contact_edit.tpl b/view/theme/frost-mobile/smarty3/contact_edit.tpl deleted file mode 100644 index 924acb0c1..000000000 --- a/view/theme/frost-mobile/smarty3/contact_edit.tpl +++ /dev/null @@ -1,98 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -{{$header}}
- --{{$relation_text}}
- {{$nettype}}
- {{if $lost_contact}}
- {{$lost_contact}}
- {{/if}}
- {{if $insecure}}
- {{$insecure}}
- {{/if}}
- {{if $blocked}}
- {{$blocked}}
- {{/if}}
- {{if $ignored}}
- {{$ignored}}
- {{/if}}
- {{if $archived}}
- {{$archived}}
- {{/if}}
-
- -
-
- {{if $common_text}}
- {{$common_text}}
- {{/if}}
- {{if $all_friends}}
- {{$all_friends}}
- {{/if}}
-
-
- - {{$lblrecent}}
- {{if $lblsuggest}}
- - {{$lblsuggest}}
- {{/if}}
-
-
-{{$lbl_info1}}
- - -{{$lbl_vis1}}
-{{$lbl_vis2}}
-- {{foreach $contact.photo_menu as $c}} - {{if $c.2}} -- {{$c.0}}
- {{else}}
- - {{$c.0}}
- {{/if}}
- {{/foreach}}
-
--{{if $contact.alt_text}}
{{$header}}{{if $total}} ({{$total}}){{/if}}
- -{{if $finding}}{{$finding}}
{{/if}} - -{{$title}}
--{{$desc}} -
-- {{$field.3}} -
- - {{$field.3}} -
- - {{$field.3}} -
- - {{$field.3}} -
- {{foreach $items as $item}} -- {{$item.label}}
- {{/foreach}}
-
-
- --
-
- {{include file="field_checkbox.tpl" field=$lremember}} - -
-
{{$title}}
-- -
- -
-{{$desc}} -
-- -
diff --git a/view/theme/frost-mobile/smarty3/mail_list.tpl b/view/theme/frost-mobile/smarty3/mail_list.tpl deleted file mode 100644 index 0607c15c7..000000000 --- a/view/theme/frost-mobile/smarty3/mail_list.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -
-
-
-
-
-
-
-
-
-
- - - - --
{{$album.1}}
- -{{$pagename}}
- -{{$banner}}
- --- {{$viewprof}}
-- {{$cl_prof}}
-
-- {{$del_prof}}
-
-
--{{$lbl_about}} -
- - - --{{$lbl_hobbies}} -
- - - --{{$lbl_likes}} -
- - - --{{$lbl_dislikes}} -
- - - --{{$lbl_social}} -
- - - --{{$lbl_music}} -
- - - --{{$lbl_book}} -
- - - --{{$lbl_tv}} -
- - - --{{$lbl_film}} -
- - - --{{$lbl_love}} -
- - - --{{$lbl_work}} -
- - - --{{$lbl_school}} -
- - - -{{$title}}
- -- {{$location}}
- -
- {{if $profile.address}}
{{$profile.address}} {{/if}}
-
- {{$profile.locality}}{{if $profile.locality}}, {{/if}}
- {{$profile.region}}
- {{$profile.postal_code}}
-
- {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
-
-
- {{/if}} - - {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} - - {{if $profile.pubkey}} {{/if}} - - {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} - - {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} - - {{include file="diaspora_vcard.tpl"}} - - -- {{if $connect}} -- {{$connect}}
- {{/if}}
- {{if $wallmessage}}
- - {{$wallmessage}}
- {{/if}}
-
-{{$header}}
- -{{$regtitle}}
-- -
{{$realpeople}}
- --{{if $oidlabel}} -
{{$fillwith}} {{$fillext}}
-- -{{if $invitations}} - -
{{$invite_desc}}
-- -
- -
- -
{{$nickdesc}}
-- -
- -{{$license}} - -
{{$ptitle}}
- -{{$nickname_block}} - -{{$h_pass}}
- -{{include file="field_password.tpl" field=$password1}} -{{include file="field_password.tpl" field=$password2}} -{{include file="field_password.tpl" field=$password3}} - -{{if $oid_enable}} -{{include file="field_input.tpl" field=$openid}} -{{/if}} - -{{$h_basic}}
- -{{include file="field_input.tpl" field=$username}} -{{include file="field_input.tpl" field=$email}} -{{include file="field_password.tpl" field=$password4}} -{{include file="field_custom.tpl" field=$timezone}} -{{include file="field_input.tpl" field=$defloc}} -{{include file="field_checkbox.tpl" field=$allowloc}} - - -{{$h_prv}}
- - - - -{{include file="field_input.tpl" field=$maxreq}} - -{{$profile_in_dir}} - -{{$profile_in_net_dir}} - -{{$hide_friends}} - -{{$hide_wall}} - -{{$blockwall}} - -{{$blocktags}} - -{{$suggestme}} - -{{$unkmail}} - - -{{include file="field_input.tpl" field=$cntunkmail}} - -{{include file="field_input.tpl" field=$expire.days}} - - -{{$expire.advanced}}
- {{include file="field_yesno.tpl" field=$expire.items}} - {{include file="field_yesno.tpl" field=$expire.notes}} - {{include file="field_yesno.tpl" field=$expire.starred}} - {{include file="field_yesno.tpl" field=$expire.network_only}} -- - -{{$group_select}} - - -
{{$h_not}}
-{{$h_advn}}
--
-
$admtxt
--- $admin.site.1
- - $admin.users.1
- - $admin.plugins.1
- - $admin.themes.1
- - $admin.dbsync.1
-
- -{{ if $admin.update }} --- $admin.update.1
- - Important Changes
-
-{{ endif }} - - -{{ if $admin.plugins_admin }}$plugadmtxt
{{ endif }} -- {{ for $admin.plugins_admin as $l }} -- $l.1
- {{ endfor }}
-
- - -$logtxt
--- $admin.logs.1
-
- diff --git a/view/theme/frost/admin_site.tpl b/view/theme/frost/admin_site.tpl deleted file mode 100644 index 07a76a827..000000000 --- a/view/theme/frost/admin_site.tpl +++ /dev/null @@ -1,76 +0,0 @@ - -$title - $page
- -$registration
- {{ inc field_input.tpl with $field=$register_text }}{{ endinc }} - {{ inc field_select.tpl with $field=$register_policy }}{{ endinc }} - {{ inc field_input.tpl with $field=$daily_registrations }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$no_multi_reg }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$no_openid }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$no_regfullname }}{{ endinc }} - - - -$upload
- {{ inc field_input.tpl with $field=$maximagesize }}{{ endinc }} - {{ inc field_input.tpl with $field=$maximagelength }}{{ endinc }} - {{ inc field_input.tpl with $field=$jpegimagequality }}{{ endinc }} - -$corporate
- {{ inc field_input.tpl with $field=$allowed_sites }}{{ endinc }} - {{ inc field_input.tpl with $field=$allowed_email }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$block_public }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$force_publish }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$no_community_page }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$ostatus_disabled }}{{ endinc }} - {{ inc field_select.tpl with $field=$ostatus_poll_interval }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$diaspora_enabled }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$dfrn_only }}{{ endinc }} - {{ inc field_input.tpl with $field=$global_directory }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$thread_allow }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$newuser_private }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$enotify_no_content }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$private_addons }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$disable_embedded }}{{ endinc }} - - -$advanced
- {{ inc field_checkbox.tpl with $field=$no_utf }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$verifyssl }}{{ endinc }} - {{ inc field_input.tpl with $field=$proxy }}{{ endinc }} - {{ inc field_input.tpl with $field=$proxyuser }}{{ endinc }} - {{ inc field_input.tpl with $field=$timeout }}{{ endinc }} - {{ inc field_input.tpl with $field=$delivery_interval }}{{ endinc }} - {{ inc field_input.tpl with $field=$poll_interval }}{{ endinc }} - {{ inc field_input.tpl with $field=$maxloadavg }}{{ endinc }} - {{ inc field_input.tpl with $field=$abandon_days }}{{ endinc }} - {{ inc field_input.tpl with $field=$lockpath }}{{ endinc }} - {{ inc field_input.tpl with $field=$temppath }}{{ endinc }} - {{ inc field_input.tpl with $field=$basepath }}{{ endinc }} - -$performance
- {{ inc field_checkbox.tpl with $field=$use_fulltext_engine }}{{ endinc }} - {{ inc field_input.tpl with $field=$itemcache }}{{ endinc }} - {{ inc field_input.tpl with $field=$itemcache_duration }}{{ endinc }} - - - - -$title - $page
- -$h_pending
- {{ if $pending }} -$no_pending
- {{ endif }} - - - - -$h_users
- {{ if $users }} --
-
-
-
-
-
-
-
-
-{##} -{##} - - {{ if $qcomment }} - - {{ endif }} - - -$header
- --$relation_text
- $nettype
- {{ if $lost_contact }}
- $lost_contact
- {{ endif }}
- {{ if $insecure }}
- $insecure
- {{ endif }}
- {{ if $blocked }}
- $blocked
- {{ endif }}
- {{ if $ignored }}
- $ignored
- {{ endif }}
- {{ if $archived }}
- $archived
- {{ endif }}
-
- -
-
- {{ if $common_text }}
- $common_text
- {{ endif }}
- {{ if $all_friends }}
- $all_friends
- {{ endif }}
-
-
- - $lblrecent
- {{ if $lblsuggest }}
- - $lblsuggest
- {{ endif }}
-
-
-$lbl_info1
- - -$lbl_vis1
-$lbl_vis2
-- {{ for $contact.photo_menu as $c }} - {{ if $c.2 }} -- $c.0
- {{ else }}
- - $c.0
- {{ endif }}
- {{ endfor }}
-
--{{ if $contact.alt_text }}
$header{{ if $total }} ($total){{ endif }}
- -{{ if $finding }}$finding
{{ endif }} - -$tabs - -$title
--$desc -
-$title
- --$desc -
- -- -
-- FileBrowser
-
-- {{ for $folders as $f }}- $f.1
{{ endfor }}
-
-- {{ for $files as $f }} -- $f.1
- {{ endfor }}
-
--
-
- {{ inc field_checkbox.tpl with $field=$lremember }}{{ endinc }} - -
- -
$title
-- -
-$desc -
-- -
diff --git a/view/theme/frost/mail_list.tpl b/view/theme/frost/mail_list.tpl deleted file mode 100644 index 5be7f3862..000000000 --- a/view/theme/frost/mail_list.tpl +++ /dev/null @@ -1,16 +0,0 @@ -
-
-
-
-
-
-
-
-
-
- - - - -- -
$album.1
- -$pagename
- -$title
- - -$banner
- --- $viewprof
-- $cl_prof
-
-- $del_prof
-
-
--$lbl_about -
- - - --$lbl_hobbies -
- - - --$lbl_likes -
- - - --$lbl_dislikes -
- - - --$lbl_social -
- - - --$lbl_music -
- - - --$lbl_book -
- - - --$lbl_tv -
- - - --$lbl_film -
- - - --$lbl_love -
- - - --$lbl_work -
- - - --$lbl_school -
- - - -- $location
- -
- {{ if $profile.address }}
$profile.address {{ endif }}
-
- $profile.locality{{ if $profile.locality }}, {{ endif }}
- $profile.region
- $profile.postal_code
-
- {{ if $profile.country_name }}$profile.country_name{{ endif }}
-
-
- {{ endif }} - - {{ if $gender }}- $gender
- $profile.gender
{{ endif }} - - {{ if $profile.pubkey }} {{ endif }} - - {{ if $marital }}- ♥$marital
- $profile.marital
{{ endif }} - - {{ if $homepage }}- $homepage
- $profile.homepage
{{ endif }} - - {{ inc diaspora_vcard.tpl }}{{ endinc }} - - -- {{ if $connect }} -- $connect
- {{ endif }}
- {{ if $wallmessage }}
- - $wallmessage
- {{ endif }}
-
-$header
- -$regtitle
-- -
$realpeople
- --{{ if $oidlabel }} -
$fillwith $fillext
-- -{{ if $invitations }} - -
$invite_desc
-- -
$nickdesc
-- -
- -
- $item.item_photo_menu -
- {##} -{{$admtxt}}
--- {{$admin.site.1}}
- - {{$admin.users.1}}
- - {{$admin.plugins.1}}
- - {{$admin.themes.1}}
- - {{$admin.dbsync.1}}
-
- -{{if $admin.update}} --- {{$admin.update.1}}
- - Important Changes
-
-{{/if}} - - -{{if $admin.plugins_admin}}{{$plugadmtxt}}
{{/if}} -- {{foreach $admin.plugins_admin as $l}} -- {{$l.1}}
- {{/foreach}}
-
- - -{{$logtxt}}
--- {{$admin.logs.1}}
-
- diff --git a/view/theme/frost/smarty3/admin_site.tpl b/view/theme/frost/smarty3/admin_site.tpl deleted file mode 100644 index af0eebacc..000000000 --- a/view/theme/frost/smarty3/admin_site.tpl +++ /dev/null @@ -1,81 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -{{$title}} - {{$page}}
- -{{$registration}}
- {{include file="field_input.tpl" field=$register_text}} - {{include file="field_select.tpl" field=$register_policy}} - {{include file="field_input.tpl" field=$daily_registrations}} - {{include file="field_checkbox.tpl" field=$no_multi_reg}} - {{include file="field_checkbox.tpl" field=$no_openid}} - {{include file="field_checkbox.tpl" field=$no_regfullname}} - - - -{{$upload}}
- {{include file="field_input.tpl" field=$maximagesize}} - {{include file="field_input.tpl" field=$maximagelength}} - {{include file="field_input.tpl" field=$jpegimagequality}} - -{{$corporate}}
- {{include file="field_input.tpl" field=$allowed_sites}} - {{include file="field_input.tpl" field=$allowed_email}} - {{include file="field_checkbox.tpl" field=$block_public}} - {{include file="field_checkbox.tpl" field=$force_publish}} - {{include file="field_checkbox.tpl" field=$no_community_page}} - {{include file="field_checkbox.tpl" field=$ostatus_disabled}} - {{include file="field_select.tpl" field=$ostatus_poll_interval}} - {{include file="field_checkbox.tpl" field=$diaspora_enabled}} - {{include file="field_checkbox.tpl" field=$dfrn_only}} - {{include file="field_input.tpl" field=$global_directory}} - {{include file="field_checkbox.tpl" field=$thread_allow}} - {{include file="field_checkbox.tpl" field=$newuser_private}} - {{include file="field_checkbox.tpl" field=$enotify_no_content}} - {{include file="field_checkbox.tpl" field=$private_addons}} - {{include file="field_checkbox.tpl" field=$disable_embedded}} - - -{{$advanced}}
- {{include file="field_checkbox.tpl" field=$no_utf}} - {{include file="field_checkbox.tpl" field=$verifyssl}} - {{include file="field_input.tpl" field=$proxy}} - {{include file="field_input.tpl" field=$proxyuser}} - {{include file="field_input.tpl" field=$timeout}} - {{include file="field_input.tpl" field=$delivery_interval}} - {{include file="field_input.tpl" field=$poll_interval}} - {{include file="field_input.tpl" field=$maxloadavg}} - {{include file="field_input.tpl" field=$abandon_days}} - {{include file="field_input.tpl" field=$lockpath}} - {{include file="field_input.tpl" field=$temppath}} - {{include file="field_input.tpl" field=$basepath}} - -{{$performance}}
- {{include file="field_checkbox.tpl" field=$use_fulltext_engine}} - {{include file="field_input.tpl" field=$itemcache}} - {{include file="field_input.tpl" field=$itemcache_duration}} - - - - -{{$title}} - {{$page}}
- -{{$h_pending}}
- {{if $pending}} -{{$no_pending}}
- {{/if}} - - - - -{{$h_users}}
- {{if $users}} --
-
-
-
-
-
-
-
-
-{{**}} -{{**}} - - {{if $qcomment}} - - {{/if}} - - -{{$header}}
- --{{$relation_text}}
- {{$nettype}}
- {{if $lost_contact}}
- {{$lost_contact}}
- {{/if}}
- {{if $insecure}}
- {{$insecure}}
- {{/if}}
- {{if $blocked}}
- {{$blocked}}
- {{/if}}
- {{if $ignored}}
- {{$ignored}}
- {{/if}}
- {{if $archived}}
- {{$archived}}
- {{/if}}
-
- -
-
- {{if $common_text}}
- {{$common_text}}
- {{/if}}
- {{if $all_friends}}
- {{$all_friends}}
- {{/if}}
-
-
- - {{$lblrecent}}
- {{if $lblsuggest}}
- - {{$lblsuggest}}
- {{/if}}
-
-
-{{$lbl_info1}}
- - -{{$lbl_vis1}}
-{{$lbl_vis2}}
-- {{foreach $contact.photo_menu as $c}} - {{if $c.2}} -- {{$c.0}}
- {{else}}
- - {{$c.0}}
- {{/if}}
- {{/foreach}}
-
--{{if $contact.alt_text}}
{{$header}}{{if $total}} ({{$total}}){{/if}}
- -{{if $finding}}{{$finding}}
{{/if}} - -{{$tabs}} - -{{$title}}
--{{$desc}} -
-{{$title}}
- --{{$desc}} -
- -- -
-- FileBrowser
-
-- {{foreach $folders as $f}}- {{$f.1}}
{{/foreach}}
-
-- {{foreach $files as $f}} -- {{$f.1}}
- {{/foreach}}
-
--
-
- {{include file="field_checkbox.tpl" field=$lremember}} - -
- -
{{$title}}
-- -
-{{$desc}} -
-- -
diff --git a/view/theme/frost/smarty3/mail_list.tpl b/view/theme/frost/smarty3/mail_list.tpl deleted file mode 100644 index 0607c15c7..000000000 --- a/view/theme/frost/smarty3/mail_list.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -
-
-
-
-
-
-
-
-
-
- - - - -- -
{{$album.1}}
- -{{$pagename}}
- -{{$title}}
- - -{{$banner}}
- --- {{$viewprof}}
-- {{$cl_prof}}
-
-- {{$del_prof}}
-
-
--{{$lbl_about}} -
- - - --{{$lbl_hobbies}} -
- - - --{{$lbl_likes}} -
- - - --{{$lbl_dislikes}} -
- - - --{{$lbl_social}} -
- - - --{{$lbl_music}} -
- - - --{{$lbl_book}} -
- - - --{{$lbl_tv}} -
- - - --{{$lbl_film}} -
- - - --{{$lbl_love}} -
- - - --{{$lbl_work}} -
- - - --{{$lbl_school}} -
- - - -- {{$location}}
- -
- {{if $profile.address}}
{{$profile.address}} {{/if}}
-
- {{$profile.locality}}{{if $profile.locality}}, {{/if}}
- {{$profile.region}}
- {{$profile.postal_code}}
-
- {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
-
-
- {{/if}} - - {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} - - {{if $profile.pubkey}} {{/if}} - - {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} - - {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} - - {{include file="diaspora_vcard.tpl"}} - - -- {{if $connect}} -- {{$connect}}
- {{/if}}
- {{if $wallmessage}}
- - {{$wallmessage}}
- {{/if}}
-
-{{$header}}
- -{{$regtitle}}
-- -
{{$realpeople}}
- --{{if $oidlabel}} -
{{$fillwith}} {{$fillext}}
-- -{{if $invitations}} - -
{{$invite_desc}}
-- -
{{$nickdesc}}
-- -
- -
- {{$item.item_photo_menu}} -
- {{**}} -- {{$item.item_photo_menu}} -
-{{**}} - --
- $item.item_photo_menu -
-{##} - --
-
-
-
-
-
-
-
-
-
- - {{ if $qcomment }} - - {{ endif }} - -- {{ for $contact.photo_menu as $c }} - {{ if $c.2 }} -- $c.0
- {{ else }}
- - $c.0
- {{ endif }}
- {{ endfor }}
-
- {{ endif }} -diff --git a/view/theme/quattro/fileas_widget.tpl b/view/theme/quattro/fileas_widget.tpl deleted file mode 100644 index 1e5a76044..000000000 --- a/view/theme/quattro/fileas_widget.tpl +++ /dev/null @@ -1,12 +0,0 @@ -
$title
--- $all
- {{ for $terms as $term }}
- - $term.name
- {{ endfor }}
-
- -$title
{{endif}} - {{if $desc}}- {{ for $items as $item }} -- $item.label
- {{ endfor }}
-
- -$title
- $add -- {{ for $groups as $group }} --
-
- $group.text
-
- {{ if $group.edit }}
- $group.edit.title
- {{ endif }}
- {{ if $group.cid }}
-
- {{ endif }}
-
- {{ endfor }}
-
--
- -#} diff --git a/view/theme/quattro/mail_display.tpl b/view/theme/quattro/mail_display.tpl deleted file mode 100644 index 2b680ae42..000000000 --- a/view/theme/quattro/mail_display.tpl +++ /dev/null @@ -1,12 +0,0 @@ -
$title
--- $all
- {{ for $nets as $net }}
-
- $net.name
- {{ endfor }}
-
- -$album.1
- -- {{ for $profile.menu.entries as $e }} --
- $e.profile_name
-
- {{ endfor }}
- - $profile.menu.chg_photo
- - $profile.menu.cr_new
-
-
-- $location
- -
- {{ if $profile.address }}
$profile.address {{ endif }}
-
- $profile.locality{{ if $profile.locality }}, {{ endif }}
- $profile.region
- $profile.postal_code
-
- {{ if $profile.country_name }}$profile.country_name{{ endif }}
-
-
- {{ endif }} - - {{ if $gender }}- $gender
- $profile.gender
{{ endif }} - - {{ if $profile.pubkey }} {{ endif }} - - {{ if $marital }}- ♥$marital
- $profile.marital
{{ endif }} - - {{ if $homepage }}- $homepage
- $profile.homepage
{{ endif }} - - {{ inc diaspora_vcard.tpl }}{{ endinc }} - -- {{ if $connect }} -- $connect
- {{ endif }}
- {{ if $wallmessage }}
- - $wallmessage
- {{ endif }}
-
-$header
- -$title
- -- {{ for $saved as $search }} --
- $search.term
-
-
- {{ endfor }}
-
- - $searchbox - -- $item.item_photo_menu -
- -$item.title
{{ endif }} - $item.body --
-
-
-
-
-
-
-
-
- - {{if $qcomment}} - - {{/if}} - -- {{foreach $contact.photo_menu as $c}} - {{if $c.2}} -- {{$c.0}}
- {{else}}
- - {{$c.0}}
- {{/if}}
- {{/foreach}}
-
- {{/if}} -diff --git a/view/theme/quattro/smarty3/fileas_widget.tpl b/view/theme/quattro/smarty3/fileas_widget.tpl deleted file mode 100644 index 555ac5feb..000000000 --- a/view/theme/quattro/smarty3/fileas_widget.tpl +++ /dev/null @@ -1,17 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -
{{$title}}
--- {{$all}}
- {{foreach $terms as $term}}
- - {{$term.name}}
- {{/foreach}}
-
- -{{$title}}
{{/if}} - {{if $desc}}- {{foreach $items as $item}} -- {{$item.label}}
- {{/foreach}}
-
- -{{$title}}
- {{$add}} -- {{foreach $groups as $group}} --
-
- {{$group.text}}
-
- {{if $group.edit}}
- {{$group.edit.title}}
- {{/if}}
- {{if $group.cid}}
-
- {{/if}}
-
- {{/foreach}}
-
--
- -*}} diff --git a/view/theme/quattro/smarty3/mail_display.tpl b/view/theme/quattro/smarty3/mail_display.tpl deleted file mode 100644 index dc1fbbc6f..000000000 --- a/view/theme/quattro/smarty3/mail_display.tpl +++ /dev/null @@ -1,17 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -
{{$title}}
--- {{$all}}
- {{foreach $nets as $net}}
-
- {{$net.name}}
- {{/foreach}}
-
- -{{$album.1}}
- -- {{foreach $profile.menu.entries as $e}} --
- {{$e.profile_name}}
-
- {{/foreach}}
- - {{$profile.menu.chg_photo}}
- - {{$profile.menu.cr_new}}
-
-
-- {{$location}}
- -
- {{if $profile.address}}
{{$profile.address}} {{/if}}
-
- {{$profile.locality}}{{if $profile.locality}}, {{/if}}
- {{$profile.region}}
- {{$profile.postal_code}}
-
- {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
-
-
- {{/if}} - - {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} - - {{if $profile.pubkey}} {{/if}} - - {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} - - {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} - - {{include file="diaspora_vcard.tpl"}} - -- {{if $connect}} -- {{$connect}}
- {{/if}}
- {{if $wallmessage}}
- - {{$wallmessage}}
- {{/if}}
-
-{{$header}}
- -{{$title}}
- -- {{foreach $saved as $search}} --
- {{$search.term}}
-
-
- {{/foreach}}
-
- - {{$searchbox}} - -- {{$item.item_photo_menu}} -
- -{{$item.title}}
{{/if}} - {{$item.body}} -- {{$item.item_photo_menu}} -
- -- {{$item.item_photo_menu}} -
- -{{$item.title}}
{{/if}} - {{$item.body}} -{{$item.to}} {{$item.owner_name}} {{$item.vwall}} - {{/if}} -
- $item.item_photo_menu -
- -- $item.item_photo_menu -
- -$item.title
{{ endif }} - $item.body -$item.to $item.owner_name $item.vwall - {{ endif }} -
diff --git a/view/theme/slackr/smarty3/birthdays_reminder.tpl b/view/theme/slackr/smarty3/birthdays_reminder.tpl deleted file mode 100644 index 8af03b33a..000000000 --- a/view/theme/slackr/smarty3/birthdays_reminder.tpl +++ /dev/null @@ -1,13 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{if $classtoday}} - -{{/if}} - diff --git a/view/theme/slackr/smarty3/events_reminder.tpl b/view/theme/slackr/smarty3/events_reminder.tpl deleted file mode 100644 index 0f699a302..000000000 --- a/view/theme/slackr/smarty3/events_reminder.tpl +++ /dev/null @@ -1,44 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - - - - -
diff --git a/view/theme/smoothly/bottom.tpl b/view/theme/smoothly/bottom.tpl deleted file mode 100644 index 347d87094..000000000 --- a/view/theme/smoothly/bottom.tpl +++ /dev/null @@ -1,52 +0,0 @@ - - diff --git a/view/theme/smoothly/follow.tpl b/view/theme/smoothly/follow.tpl deleted file mode 100644 index 09258b9c3..000000000 --- a/view/theme/smoothly/follow.tpl +++ /dev/null @@ -1,8 +0,0 @@ -
$connect
-- -
-
- -
- $item.item_photo_menu -
-{{$connect}}
-- -
-
- -
- {{$item.item_photo_menu}} -
-- {{$item.item_photo_menu}} -
--
- $item.item_photo_menu -
--
$title
- - -$title
- -- {{ for $groups as $group }} --
- {{ if $group.cid }}
-
- {{ endif }}
- {{ if $group.edit }}
-
- {{ endif }}
- $group.text
-
- {{ endfor }}
-
--
$tags - - {{ if $connlnk }} -
$desc
- -$album.1
- -- $location
- -
- {{ if $profile.address }}
$profile.address {{ endif }}
-
- $profile.locality{{ if $profile.locality }}, {{ endif }}
- $profile.region
- $profile.postal_code
-
- {{ if $profile.country_name }}$profile.country_name{{ endif }}
-
-
- {{ endif }} - - {{ if $gender }}- $gender
- $profile.gender
{{ endif }} - - {{ if $profile.pubkey }} {{ endif }} - - {{ if $marital }}- ♥$marital
- $profile.marital
{{ endif }} - - {{ if $homepage }}- $homepage
- $profile.homepage
{{ endif }} - - {{ inc diaspora_vcard.tpl }}{{ endinc }} - -- {{ if $connect }} -- $connect
- {{ endif }}
-
-$title
- $searchbox - -- {{ for $saved as $search }} --
-
- $search.term
-
- {{ endfor }}
-
- -- $item.item_photo_menu -
-{{$title}}
- - -{{$title}}
- -- {{foreach $groups as $group}} --
- {{if $group.cid}}
-
- {{/if}}
- {{if $group.edit}}
-
- {{/if}}
- {{$group.text}}
-
- {{/foreach}}
-
--
{{$tags}} - - {{if $connlnk}} -
{{$desc}}
- -{{$album.1}}
- -- {{$location}}
- -
- {{if $profile.address}}
{{$profile.address}} {{/if}}
-
- {{$profile.locality}}{{if $profile.locality}}, {{/if}}
- {{$profile.region}}
- {{$profile.postal_code}}
-
- {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
-
-
- {{/if}} - - {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} - - {{if $profile.pubkey}} {{/if}} - - {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} - - {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} - - {{include file="diaspora_vcard.tpl"}} - -- {{if $connect}} -- {{$connect}}
- {{/if}}
-
-{{$title}}
- {{$searchbox}} - -- {{foreach $saved as $search}} --
-
- {{$search.term}}
-
- {{/foreach}}
-
- -- {{$item.item_photo_menu}} -
-- {{$item.item_photo_menu}} -
-- $item.item_photo_menu -
-- {{ for $profile.menu.entries as $e }} --
- $e.profile_name
-
- {{ endfor }}
- - $profile.menu.chg_photo
- - $profile.menu.cr_new
- - $profile.edit.3
-
-
-- $location
-
- {{ if $profile.address }}
$profile.address {{ endif }}
-
- $profile.locality{{ if $profile.locality }}, {{ endif }}
- $profile.region
- $profile.postal-code
-
- {{ if $profile.country-name }}$profile.country-name{{ endif }}
-
-
- {{ endif }} - - {{ if $gender }}-
- $gender
- $profile.gender
{{ endif }} - - {{ if $profile.pubkey }} {{ endif }} - - {{ if $marital }}- ♥$marital
- $profile.marital
{{ endif }} - - {{ if $homepage }}- $homepage
- $profile.homepage
{{ endif }} - - {{ inc diaspora_vcard.tpl }}{{ endinc }} - -- {{ if $connect }} -- $connect
- {{ endif }}
-
-- $item.item_photo_menu -
- -$item.title
{{ endif }} - $item.body -- {{foreach $profile.menu.entries as $e}} --
- {{$e.profile_name}}
-
- {{/foreach}}
- - {{$profile.menu.chg_photo}}
- - {{$profile.menu.cr_new}}
- - {{$profile.edit.3}}
-
-
-- {{$location}}
-
- {{if $profile.address}}
{{$profile.address}} {{/if}}
-
- {{$profile.locality}}{{if $profile.locality}}, {{/if}}
- {{$profile.region}}
- {{$profile.postal-code}}
-
- {{if $profile.country-name}}{{$profile.country-name}}{{/if}}
-
-
- {{/if}} - - {{if $gender}}-
- {{$gender}}
- {{$profile.gender}}
{{/if}} - - {{if $profile.pubkey}} {{/if}} - - {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} - - {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} - - {{include file="diaspora_vcard.tpl"}} - -- {{if $connect}} -- {{$connect}}
- {{/if}}
-
-- {{$item.item_photo_menu}} -
- -{{$item.title}}
{{/if}} - {{$item.body}} -- {{$item.item_photo_menu}} -
- -{{$item.title}}
{{/if}} - {{$item.body}} -- $item.item_photo_menu -
- -$item.title
{{ endif }} - $item.body -$title
- - -{{ for $options as $o }} --- $o.1
- - $o.2
-
-{{ endfor }} \ No newline at end of file diff --git a/view/uimport.tpl b/view/uimport.tpl deleted file mode 100644 index 8950c8b54..000000000 --- a/view/uimport.tpl +++ /dev/null @@ -1,13 +0,0 @@ -$import.title
-$import.intro
-$import.instruct
-$import.warn
- {{inc field_custom.tpl with $field=$import.field }}{{ endinc }} - - -$title
- -{{ for $contacts as $contact }} - {{ inc contact_template.tpl }}{{ endinc }} -{{ endfor }} - - - -$paginate diff --git a/view/voting_fakelink.tpl b/view/voting_fakelink.tpl deleted file mode 100644 index a1ff04a70..000000000 --- a/view/voting_fakelink.tpl +++ /dev/null @@ -1 +0,0 @@ -$phrase diff --git a/view/wall_thread.tpl b/view/wall_thread.tpl deleted file mode 100644 index 716956c65..000000000 --- a/view/wall_thread.tpl +++ /dev/null @@ -1,120 +0,0 @@ -{{if $item.comment_firstcollapsed}} -- $item.item_photo_menu -
--
$header
- -$subheader
- -{{$message}}
diff --git a/view/templates/acl_selector.tpl b/view/templates/acl_selector.tpl new file mode 100644 index 000000000..5fd11e756 --- /dev/null +++ b/view/templates/acl_selector.tpl @@ -0,0 +1,31 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +{{$admtxt}}
++- {{$admin.site.1}}
+ - {{$admin.users.1}}
+ - {{$admin.plugins.1}}
+ - {{$admin.themes.1}}
+ - {{$admin.dbsync.1}}
+
+ +{{if $admin.update}} ++- {{$admin.update.1}}
+ - Important Changes
+
+{{/if}} + + +{{if $admin.plugins_admin}}{{$plugadmtxt}}
{{/if}} ++ {{foreach $admin.plugins_admin as $l}} +- {{$l.1}}
+ {{/foreach}}
+
+ + +{{$logtxt}}
++- {{$admin.logs.1}}
+
+ diff --git a/view/templates/admin_logs.tpl b/view/templates/admin_logs.tpl new file mode 100644 index 000000000..6a2259500 --- /dev/null +++ b/view/templates/admin_logs.tpl @@ -0,0 +1,24 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +{{$title}} - {{$page}}
+ +{{$logname}}
+{{$title}} - {{$page}}
+ ++ {{foreach $plugins as $p}} +-
+
+ {{$p.2.name}} - {{$p.2.version}}
+ {{if $p.2.experimental}} {{$experimental}} {{/if}}{{if $p.2.unsupported}} {{$unsupported}} {{/if}}
+
+
{{$p.2.description}}
+
+ {{/foreach}}
+
+{{$title}} - {{$page}}
+ +{{$info.name}} - {{$info.version}} : {{$action}}
+{{$info.description}}
+ +{{$str_author}} + {{foreach $info.author as $a}} + {{if $a.link}}{{$a.name}}{{else}}{{$a.name}}{{/if}}, + {{/foreach}} +
+ +{{$str_maintainer}} + {{foreach $info.maintainer as $a}} + {{if $a.link}}{{$a.name}}{{else}}{{$a.name}}{{/if}}, + {{/foreach}} +
+ + {{if $screenshot}} + + {{/if}} + + {{if $admin_form}} +{{$settings}}
+Readme
+Friendica Update
+ +Your friendica installation is not writable by web server.
+ {{if $canftp}} +You can try to update via FTP
+ {{include file="field_input.tpl" field=$ftphost}} + {{include file="field_input.tpl" field=$ftppath}} + {{include file="field_input.tpl" field=$ftpuser}} + {{include file="field_password.tpl" field=$ftppwd}} + + {{/if}} + {{/if}} +No updates
+{{/if}} +{{$title}} - {{$page}}
+ +{{$registration}}
+ {{include file="field_input.tpl" field=$register_text}} + {{include file="field_select.tpl" field=$register_policy}} + {{include file="field_input.tpl" field=$daily_registrations}} + {{include file="field_checkbox.tpl" field=$no_multi_reg}} + {{include file="field_checkbox.tpl" field=$no_openid}} + {{include file="field_checkbox.tpl" field=$no_regfullname}} + + + +{{$upload}}
+ {{include file="field_input.tpl" field=$maximagesize}} + {{include file="field_input.tpl" field=$maximagelength}} + {{include file="field_input.tpl" field=$jpegimagequality}} + +{{$corporate}}
+ {{include file="field_input.tpl" field=$allowed_sites}} + {{include file="field_input.tpl" field=$allowed_email}} + {{include file="field_checkbox.tpl" field=$block_public}} + {{include file="field_checkbox.tpl" field=$force_publish}} + {{include file="field_checkbox.tpl" field=$no_community_page}} + {{include file="field_checkbox.tpl" field=$ostatus_disabled}} + {{include file="field_select.tpl" field=$ostatus_poll_interval}} + {{include file="field_checkbox.tpl" field=$diaspora_enabled}} + {{include file="field_checkbox.tpl" field=$dfrn_only}} + {{include file="field_input.tpl" field=$global_directory}} + {{include file="field_checkbox.tpl" field=$thread_allow}} + {{include file="field_checkbox.tpl" field=$newuser_private}} + {{include file="field_checkbox.tpl" field=$enotify_no_content}} + {{include file="field_checkbox.tpl" field=$private_addons}} + {{include file="field_checkbox.tpl" field=$disable_embedded}} + + +{{$advanced}}
+ {{include file="field_checkbox.tpl" field=$no_utf}} + {{include file="field_checkbox.tpl" field=$verifyssl}} + {{include file="field_input.tpl" field=$proxy}} + {{include file="field_input.tpl" field=$proxyuser}} + {{include file="field_input.tpl" field=$timeout}} + {{include file="field_input.tpl" field=$delivery_interval}} + {{include file="field_input.tpl" field=$poll_interval}} + {{include file="field_input.tpl" field=$maxloadavg}} + {{include file="field_input.tpl" field=$abandon_days}} + {{include file="field_input.tpl" field=$lockpath}} + {{include file="field_input.tpl" field=$temppath}} + {{include file="field_input.tpl" field=$basepath}} + +{{$performance}}
+ {{include file="field_checkbox.tpl" field=$use_fulltext_engine}} + {{include file="field_input.tpl" field=$itemcache}} + {{include file="field_input.tpl" field=$itemcache_duration}} + + + + +{{$title}} - {{$page}}
+ ++- {{$queues.label}}
+ - {{$queues.deliverq}} - {{$queues.queue}}
+
++- {{$pending.0}}
+ - {{$pending.1}}
+
+ ++- {{$users.0}}
+ - {{$users.1}}
+
+ {{foreach $accounts as $p}} ++- {{$p.0}}
+ - {{if $p.1}}{{$p.1}}{{else}}0{{/if}}
+
+ {{/foreach}} + + ++- {{$plugins.0}}
+
+ {{foreach $plugins.1 as $p}}
+ - {{$p}}
+ {{/foreach}}
+
+
+ ++- {{$version.0}}
+ - {{$version.1}} - {{$build}}
+
+ + +{{$title}} - {{$page}}
+ +{{$h_pending}}
+ {{if $pending}} +{{$no_pending}}
+ {{/if}} + + + + +{{$h_users}}
+ {{if $users}} +{{$title}}
+ ++ {{foreach $apps as $ap}} +- {{$ap}}
+ {{/foreach}}
+
diff --git a/view/templates/atom_feed.tpl b/view/templates/atom_feed.tpl new file mode 100644 index 000000000..db553d99f --- /dev/null +++ b/view/templates/atom_feed.tpl @@ -0,0 +1,34 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + +{{$header}}
+ ++{{$page_desc}}
+
+- {{$friendica}}
+- {{$diaspora}} {{$diasnote}}
+- {{$statusnet}}
+{{if $emailnet}}- {{$emailnet}}
{{/if}}
+
+ ++{{$invite_desc}} +
++{{$desc}} +
+ +{{$title}}
++- {{$all}}
+ {{foreach $terms as $term}}
+ - {{$term.name}}
+ {{/foreach}}
+
+ ++ {{foreach $tabs as $tab}} +- {{$tab.label}}
+ {{/foreach}}
+
diff --git a/view/templates/confirm.tpl b/view/templates/confirm.tpl new file mode 100644 index 000000000..df8d26eaa --- /dev/null +++ b/view/templates/confirm.tpl @@ -0,0 +1,19 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +{{$contacts}}
+{{if $micropro}} + {{$viewcontacts}} +{{$header}}
+ ++{{$relation_text}}
+ {{$nettype}}
+ {{if $lost_contact}}
+ {{$lost_contact}}
+ {{/if}}
+ {{if $insecure}}
+ {{$insecure}}
+ {{/if}}
+ {{if $blocked}}
+ {{$blocked}}
+ {{/if}}
+ {{if $ignored}}
+ {{$ignored}}
+ {{/if}}
+ {{if $archived}}
+ {{$archived}}
+ {{/if}}
+
+ -
+
+ {{if $common_text}}
+ {{$common_text}}
+ {{/if}}
+ {{if $all_friends}}
+ {{$all_friends}}
+ {{/if}}
+
+
+ - {{$lblrecent}}
+ {{if $lblsuggest}}
+ - {{$lblsuggest}}
+ {{/if}}
+
+
+{{$lbl_info1}}
+ + +{{$lbl_vis1}}
+{{$lbl_vis2}}
++ {{foreach $contact.photo_menu as $c}} + {{if $c.2}} +- {{$c.0}}
+ {{else}}
+ - {{$c.0}}
+ {{/if}}
+ {{/foreach}}
+
+{{$header}}{{if $total}} ({{$total}}){{/if}}
+ +{{if $finding}}{{$finding}}
{{/if}} + +{{$contact_name}}
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +{{$title}}
++{{$desc}} +
+{{$header}}
+ +{{$head_managers}}
+ +{{foreach $managers as $x}} + ++{{/if}} + + +
{{$head_delegates}}
+ +{{if $delegates}} +{{foreach $delegates as $x}} + ++ + +
{{$head_potentials}}
+{{if $potentials}} +{{foreach $potentials as $x}} + ++ diff --git a/view/templates/dfrn_req_confirm.tpl b/view/templates/dfrn_req_confirm.tpl new file mode 100644 index 000000000..c941a201d --- /dev/null +++ b/view/templates/dfrn_req_confirm.tpl @@ -0,0 +1,26 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + +
+{{$welcome}} +
++{{$please}} + +
{{$header}}
+ ++{{$page_desc}}
+
+- {{$friendica}}
+- {{$diaspora}} {{$diasnote}}
+- {{$statusnet}}
+{{if $emailnet}}- {{$emailnet}}
{{/if}}
+
+{{$invite_desc}} + ++{{$desc}} +
+ ++{{$pls_answer}} +
+ ++{{$does_know}} +
+ ++{{$add_note}} +
+{{$sitedir}}
+ +{{$globaldir}} +{{$admin}} + +{{$finding}} + +{{$title}}
+ ++{{$desc}} +
+ +{{$title}}
+ +{{$title}}
+ +{{$banner}}
+ +{{$f}}
++- {{$mark}}
+- {{$apply}}
+
+ ++{{/foreach}} +{{/if}} + diff --git a/view/templates/fake_feed.tpl b/view/templates/fake_feed.tpl new file mode 100644 index 000000000..fd875de71 --- /dev/null +++ b/view/templates/fake_feed.tpl @@ -0,0 +1,18 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + +
{{$title}}
++- {{$all}}
+ {{foreach $terms as $term}}
+ - {{$term.name}}
+ {{/foreach}}
+
+ ++- FileBrowser
+
++ {{foreach $folders as $f}}- {{$f.1}}
{{/foreach}}
+
++ {{foreach $files as $f}} +- {{$f.1}}
+ {{/foreach}}
+
+{{$connect}}
+{{$title}}
{{/if}} + {{if $desc}}+ {{foreach $items as $item}} +- {{$item.label}}
+ {{/foreach}}
+
+ +{{$title}}
+ + +{{$title}}
+ ++ {{foreach $groups as $group}} +-
+ {{if $group.cid}}
+
+ {{/if}}
+ {{if $group.edit}}
+
+ {{/if}}
+ {{$group.text}}
+
+ {{/foreach}}
+
+{{$groupeditor.label_members}}
++
{{$groupeditor.label_contacts}}
+{{$title}}
+{{$pass}}
+ + +{{if $status}} +{{$status}}
+{{/if}} + +{{$text}} diff --git a/view/templates/install_checks.tpl b/view/templates/install_checks.tpl new file mode 100644 index 000000000..44852b410 --- /dev/null +++ b/view/templates/install_checks.tpl @@ -0,0 +1,29 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +{{$title}}
+{{$pass}}
+{{$title}}
+{{$pass}}
+ + ++{{$info_01}}
+ +{{if $status}} ++{{$info_02}}
+{{$info_03}} +
{{$status}}
+{{/if}} + +{{$title}}
+{{$pass}}
+ + +{{if $status}} +{{$status}}
+{{/if}} + +{{$str_notifytype}} {{$notify_type}}
+{{$invite}}
+ ++
{{$title}}
+ ++{{$desc}} +
+ +diff --git a/view/templates/mail_display.tpl b/view/templates/mail_display.tpl new file mode 100644 index 000000000..23d05bdeb --- /dev/null +++ b/view/templates/mail_display.tpl @@ -0,0 +1,15 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + +{{foreach $mails as $mail}} + {{include file="mail_conv.tpl"}} +{{/foreach}} + +{{if $canreply}} +{{include file="prv_message.tpl"}} +{{else}} +{{$unknown_text}} +{{/if}} diff --git a/view/templates/mail_head.tpl b/view/templates/mail_head.tpl new file mode 100644 index 000000000..f7a39fa8b --- /dev/null +++ b/view/templates/mail_head.tpl @@ -0,0 +1,8 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
{{$messages}}
+ +{{$tab_content}} diff --git a/view/templates/mail_list.tpl b/view/templates/mail_list.tpl new file mode 100644 index 000000000..9dbfb6a14 --- /dev/null +++ b/view/templates/mail_list.tpl @@ -0,0 +1,21 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +{{$title}}
+{{$title}}
+ ++
+ + + + +
+
+ +
{{/if}} +{{if $nav.register}}{{$nav.register.1}}
{{/if}} +{{if $nav.login}} +
+{{$nav.net_reset.1}}
+{{/if}} +{{if $nav.home}} +{{$nav.home.1}}
+{{/if}} +{{if $nav.community}} +{{$nav.community.1}}
+{{/if}} +{{if $nav.network}} +
+
{{/if}} +{{$nav.directory.1}}
+{{if $nav.introductions}} +{{$nav.introductions.1}}
+{{/if}} +
+
{{/if}} +{{if $nav.manage}}{{$nav.manage.1}}
{{/if}} +{{if $nav.profiles}}{{$nav.profiles.1}}
{{/if}} +{{if $nav.admin}}{{$nav.admin.1}}
{{/if}} +{{$nav.search.1}}
+{{if $nav.apps}}{{$nav.apps.1}}
{{/if}} +{{if $nav.help}} {{$nav.help.1}}
{{/if}} +
{{/if}} +
{{$title}}
++ {{foreach $nets as $net}} +- {{$net.name}}
+ {{/foreach}}
+
+{{$header}}
+ +{{foreach $contacts as $contact}} + {{include file="contact_template.tpl"}} +{{/foreach}} + + +{{$paginate}} + + + + diff --git a/view/templates/notifications.tpl b/view/templates/notifications.tpl new file mode 100644 index 000000000..834a7a016 --- /dev/null +++ b/view/templates/notifications.tpl @@ -0,0 +1,13 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + +{{$notif_header}}
+ +{{include file="common_tabs.tpl"}} + +{{$title}}
+ +{{$app.name}}
+{{$authorize}}
+{{$title}}
+ +{{$info}}
+{{$code}}
diff --git a/view/templates/oembed_video.tpl b/view/templates/oembed_video.tpl new file mode 100644 index 000000000..bdfa11509 --- /dev/null +++ b/view/templates/oembed_video.tpl @@ -0,0 +1,9 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + + + + diff --git a/view/templates/oexchange_xrd.tpl b/view/templates/oexchange_xrd.tpl new file mode 100644 index 000000000..5af749182 --- /dev/null +++ b/view/templates/oexchange_xrd.tpl @@ -0,0 +1,38 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + +{{$findpeople}}
+{{$desc}}
+ ++ {{$rotateccw}} +
+ +
{{$album.1}}
+ +{{$title}}
+{{if $can_post}} +{{$upload.0}} +{{/if}} + +{{$pagename}}
+ +{{$title}}
+ ++
+ +
+ + + +
+
+
+
+ +
+
+
+
+ +
{{$title}}
+ + ++{{$desc}} +
+ ++{{$desc}} +
+ ++{{$desc}} +
+ ++{{$desc}} +
+ +{{$title}}
+ ++- {{$profile.fullname.0}}
+ - {{$profile.fullname.1}}
+
+ +{{if $profile.gender}} ++- {{$profile.gender.0}}
+ - {{$profile.gender.1}}
+
+{{/if}} + +{{if $profile.birthday}} ++- {{$profile.birthday.0}}
+ - {{$profile.birthday.1}}
+
+{{/if}} + +{{if $profile.age}} ++- {{$profile.age.0}}
+ - {{$profile.age.1}}
+
+{{/if}} + +{{if $profile.marital}} ++- ♥ {{$profile.marital.0}}
+ - {{$profile.marital.1}}{{if $profile.marital.with}} ({{$profile.marital.with}}){{/if}}{{if $profile.howlong}} {{$profile.howlong}}{{/if}}
+
+{{/if}} + +{{if $profile.sexual}} ++- {{$profile.sexual.0}}
+ - {{$profile.sexual.1}}
+
+{{/if}} + +{{if $profile.pub_keywords}} ++- {{$profile.pub_keywords.0}}
+ - {{$profile.pub_keywords.1}}
+
+{{/if}} + +{{if $profile.homepage}} ++- {{$profile.homepage.0}}
+ - {{$profile.homepage.1}}
+
+{{/if}} + +{{if $profile.hometown}} ++- {{$profile.hometown.0}}
+ - {{$profile.hometown.1}}
+
+{{/if}} + +{{if $profile.politic}} ++- {{$profile.politic.0}}
+ - {{$profile.politic.1}}
+
+{{/if}} + +{{if $profile.religion}} ++- {{$profile.religion.0}}
+ - {{$profile.religion.1}}
+
+{{/if}} + +{{if $profile.about}} ++- {{$profile.about.0}}
+ - {{$profile.about.1}}
+
+{{/if}} + +{{if $profile.interest}} ++- {{$profile.interest.0}}
+ - {{$profile.interest.1}}
+
+{{/if}} + +{{if $profile.likes}} ++- {{$profile.likes.0}}
+ - {{$profile.likes.1}}
+
+{{/if}} + +{{if $profile.dislikes}} ++- {{$profile.dislikes.0}}
+ - {{$profile.dislikes.1}}
+
+{{/if}} + +{{if $profile.contact}} ++- {{$profile.contact.0}}
+ - {{$profile.contact.1}}
+
+{{/if}} + + +{{if $profile.music}} ++- {{$profile.music.0}}
+ - {{$profile.music.1}}
+
+{{/if}} + + +{{if $profile.book}} ++- {{$profile.book.0}}
+ - {{$profile.book.1}}
+
+{{/if}} + + +{{if $profile.tv}} ++- {{$profile.tv.0}}
+ - {{$profile.tv.1}}
+
+{{/if}} + + +{{if $profile.film}} ++- {{$profile.film.0}}
+ - {{$profile.film.1}}
+
+{{/if}} + + +{{if $profile.romance}} ++- {{$profile.romance.0}}
+ - {{$profile.romance.1}}
+
+{{/if}} + + +{{if $profile.work}} ++- {{$profile.work.0}}
+ - {{$profile.work.1}}
+
+{{/if}} + +{{if $profile.education}} ++- {{$profile.education.0}}
+ - {{$profile.education.1}}
+
+{{/if}} + + + + diff --git a/view/templates/profile_edit.tpl b/view/templates/profile_edit.tpl new file mode 100644 index 000000000..4b7c4d0b1 --- /dev/null +++ b/view/templates/profile_edit.tpl @@ -0,0 +1,328 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +{{$default}} + +{{$banner}}
+ ++- {{$profpic}}
+- {{$viewprof}}
+- {{$cl_prof}}
+
+- {{$del_prof}}
+
+
++{{$lbl_about}} +
+ + + ++{{$lbl_hobbies}} +
+ + + ++{{$lbl_likes}} +
+ + + ++{{$lbl_dislikes}} +
+ + + ++{{$lbl_social}} +
+ + + ++{{$lbl_music}} +
+ + + ++{{$lbl_book}} +
+ + + ++{{$lbl_tv}} +
+ + + ++{{$lbl_film}} +
+ + + ++{{$lbl_love}} +
+ + + ++{{$lbl_work}} +
+ + + ++{{$lbl_school}} +
+ + + +{{$header}}
++{{$chg_photo}} +
+{{$title}}
+ ++{{$pubdesc}} +
+ +- {{$location}}
+ -
+ {{if $profile.address}}
{{$profile.address}} {{/if}}
+
+ {{$profile.locality}}{{if $profile.locality}}, {{/if}}
+ {{$profile.region}}
+ {{$profile.postal_code}}
+
+ {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
+
+
+ {{/if}} + + {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} + + {{if $profile.pubkey}} {{/if}} + + {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} + + {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} + + {{include file="diaspora_vcard.tpl"}} + ++ {{if $connect}} +- {{$connect}}
+ {{/if}}
+ {{if $wallmessage}}
+ - {{$wallmessage}}
+ {{/if}}
+
+{{$header}}
+ +{{$lbl1}}
+ ++{{$lbl2}} +
++{{$lbl3}} +
++{{$newpass}} +
++{{$lbl4}} {{$lbl5}} +
++{{$lbl6}} +
diff --git a/view/templates/register.tpl b/view/templates/register.tpl new file mode 100644 index 000000000..5e655cd82 --- /dev/null +++ b/view/templates/register.tpl @@ -0,0 +1,70 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +{{$regtitle}}
+ +{{$realpeople}}
+ +{{$fillwith}}
+{{$fillext}}
+ +{{if $oidlabel}} +{{$invite_desc}}
+{{$nickdesc}}
+ +{{$title}}
+ +{{$title}}
+ {{$searchbox}} + ++ {{foreach $saved as $search}} +-
+
+ {{$search.term}}
+
+ {{/foreach}}
+
+ ++ {{$item.item_photo_menu}} +
+{{$ptitle}}
+ +{{$nickname_block}} + +{{$h_pass}}
+ +{{include file="field_password.tpl" field=$password1}} +{{include file="field_password.tpl" field=$password2}} +{{include file="field_password.tpl" field=$password3}} + +{{if $oid_enable}} +{{include file="field_input.tpl" field=$openid}} +{{/if}} + +{{$h_basic}}
+ +{{include file="field_input.tpl" field=$username}} +{{include file="field_input.tpl" field=$email}} +{{include file="field_password.tpl" field=$password4}} +{{include file="field_custom.tpl" field=$timezone}} +{{include file="field_input.tpl" field=$defloc}} +{{include file="field_checkbox.tpl" field=$allowloc}} + + +{{$h_prv}}
+ + + + +{{include file="field_input.tpl" field=$maxreq}} + +{{$profile_in_dir}} + +{{$profile_in_net_dir}} + +{{$hide_friends}} + +{{$hide_wall}} + +{{$blockwall}} + +{{$blocktags}} + +{{$suggestme}} + +{{$unkmail}} + + +{{include file="field_input.tpl" field=$cntunkmail}} + +{{include file="field_input.tpl" field=$expire.days}} + + +{{$expire.advanced}}
+ {{include file="field_yesno.tpl" field=$expire.items}} + {{include file="field_yesno.tpl" field=$expire.notes}} + {{include file="field_yesno.tpl" field=$expire.starred}} + {{include file="field_yesno.tpl" field=$expire.network_only}} ++ + +{{$group_select}} + + +
{{$h_not}}
+{{$h_advn}}
+{{$title}}
+ + +{{$title}}
+ +{{$h_imap}}
+{{$imap_desc}}
+ {{include file="field_custom.tpl" field=$imap_lastcheck}} + {{include file="field_input.tpl" field=$mail_server}} + {{include file="field_input.tpl" field=$mail_port}} + {{include file="field_select.tpl" field=$mail_ssl}} + {{include file="field_input.tpl" field=$mail_user}} + {{include file="field_password.tpl" field=$mail_pass}} + {{include file="field_input.tpl" field=$mail_replyto}} + {{include file="field_checkbox.tpl" field=$mail_pubmail}} + {{include file="field_select.tpl" field=$mail_action}} + {{include file="field_input.tpl" field=$mail_movetofolder}} + +{{$ptitle}}
+ +Theme settings
+{{$theme_config}} +{{/if}} + +{{$title}}
+ + +{{$f.0}}
+ +{{foreach $f.1 as $fcat}} + {{include file="field_yesno.tpl" field=$fcat}} +{{/foreach}} +{{/foreach}} + ++It appears that your website is located in a subdirectory of the
++{{$hostname}} website, so this setting may not work reliably.
+
If you have any issues, you may have better results using the profile
\ No newline at end of file diff --git a/view/templates/settings_oauth.tpl b/view/templates/settings_oauth.tpl new file mode 100644 index 000000000..feab78210 --- /dev/null +++ b/view/templates/settings_oauth.tpl @@ -0,0 +1,36 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +address '{{$baseurl}}/profile/{{$nickname}}'. +
{{$title}}
+ + ++-
+ {{$add}}
+
+
+{{$app.name}}
{{else}}{{$noname}}
{{/if}} + {{if $app.my}} + {{if $app.oauth_token}} + + {{/if}} + {{/if}} + {{if $app.my}} + + + {{/if}} +{{$title}}
+ +{{$str_notifytype}} {{$notify_type}}
+{{$title}}
+ + +{{foreach $options as $o}} ++- {{$o.1}}
+ - {{$o.2}}
+
+{{/foreach}} \ No newline at end of file diff --git a/view/templates/uimport.tpl b/view/templates/uimport.tpl new file mode 100644 index 000000000..cc137514a --- /dev/null +++ b/view/templates/uimport.tpl @@ -0,0 +1,18 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +{{$import.title}}
+{{$import.intro}}
+{{$import.instruct}}
+{{$import.warn}}
+ {{include file="field_custom.tpl" field=$import.field}} + + +{{$title}}
+ +{{foreach $contacts as $contact}} + {{include file="contact_template.tpl"}} +{{/foreach}} + + + +{{$paginate}} diff --git a/view/templates/voting_fakelink.tpl b/view/templates/voting_fakelink.tpl new file mode 100644 index 000000000..3d14ba48b --- /dev/null +++ b/view/templates/voting_fakelink.tpl @@ -0,0 +1,6 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +{{$phrase}} diff --git a/view/templates/wall_thread.tpl b/view/templates/wall_thread.tpl new file mode 100644 index 000000000..c0e30c4cb --- /dev/null +++ b/view/templates/wall_thread.tpl @@ -0,0 +1,125 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +{{if $item.comment_firstcollapsed}} ++ {{$item.item_photo_menu}} +
++
{{$header}}
+ +{{$subheader}}
+ ++ {{$item.item_photo_menu}} +
++ {{$item.item_photo_menu}} +
++ +
+ +
{{$admtxt}}
++- {{$admin.site.1}}
+ - {{$admin.users.1}}
+ - {{$admin.plugins.1}}
+ - {{$admin.themes.1}}
+ - {{$admin.dbsync.1}}
+
+ +{{if $admin.update}} ++- {{$admin.update.1}}
+ - Important Changes
+
+{{/if}} + + +{{if $admin.plugins_admin}}{{$plugadmtxt}}
{{/if}} ++ {{foreach $admin.plugins_admin as $l}} +- {{$l.1}}
+ {{/foreach}}
+
+ + +{{$logtxt}}
++- {{$admin.logs.1}}
+
+ diff --git a/view/theme/decaf-mobile/templates/admin_site.tpl b/view/theme/decaf-mobile/templates/admin_site.tpl new file mode 100644 index 000000000..035024e68 --- /dev/null +++ b/view/theme/decaf-mobile/templates/admin_site.tpl @@ -0,0 +1,72 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + +{{$title}} - {{$page}}
+ +{{$registration}}
+ {{include file="field_input.tpl" field=$register_text}} + {{include file="field_select.tpl" field=$register_policy}} + + {{include file="field_checkbox.tpl" field=$no_multi_reg}} + {{include file="field_checkbox.tpl" field=$no_openid}} + {{include file="field_checkbox.tpl" field=$no_regfullname}} + + + +{{$upload}}
+ {{include file="field_input.tpl" field=$maximagesize}} + {{include file="field_input.tpl" field=$maximagelength}} + {{include file="field_input.tpl" field=$jpegimagequality}} + +{{$corporate}}
+ {{include file="field_input.tpl" field=$allowed_sites}} + {{include file="field_input.tpl" field=$allowed_email}} + {{include file="field_checkbox.tpl" field=$block_public}} + {{include file="field_checkbox.tpl" field=$force_publish}} + {{include file="field_checkbox.tpl" field=$no_community_page}} + {{include file="field_checkbox.tpl" field=$ostatus_disabled}} + {{include file="field_select.tpl" field=$ostatus_poll_interval}} + {{include file="field_checkbox.tpl" field=$diaspora_enabled}} + {{include file="field_checkbox.tpl" field=$dfrn_only}} + {{include file="field_input.tpl" field=$global_directory}} + {{include file="field_checkbox.tpl" field=$thread_allow}} + {{include file="field_checkbox.tpl" field=$newuser_private}} + {{include file="field_checkbox.tpl" field=$enotify_no_content}} + {{include file="field_checkbox.tpl" field=$private_addons}} + {{include file="field_checkbox.tpl" field=$disable_embedded}} + + +{{$advanced}}
+ {{include file="field_checkbox.tpl" field=$no_utf}} + {{include file="field_checkbox.tpl" field=$verifyssl}} + {{include file="field_input.tpl" field=$proxy}} + {{include file="field_input.tpl" field=$proxyuser}} + {{include file="field_input.tpl" field=$timeout}} + {{include file="field_input.tpl" field=$delivery_interval}} + {{include file="field_input.tpl" field=$poll_interval}} + {{include file="field_input.tpl" field=$maxloadavg}} + {{include file="field_input.tpl" field=$abandon_days}} + + + +{{$title}} - {{$page}}
+ +{{$h_pending}}
+ {{if $pending}} +{{$no_pending}}
+ {{/if}} + + + + +{{$h_users}}
+ {{if $users}} ++ {{foreach $tabs as $tab}} +- {{$tab.label}}
+ {{/foreach}}
+
+
diff --git a/view/theme/decaf-mobile/templates/contact_block.tpl b/view/theme/decaf-mobile/templates/contact_block.tpl new file mode 100644 index 000000000..5a0a26b87 --- /dev/null +++ b/view/theme/decaf-mobile/templates/contact_block.tpl @@ -0,0 +1,17 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +{{**}} diff --git a/view/theme/decaf-mobile/templates/contact_edit.tpl b/view/theme/decaf-mobile/templates/contact_edit.tpl new file mode 100644 index 000000000..0f028d590 --- /dev/null +++ b/view/theme/decaf-mobile/templates/contact_edit.tpl @@ -0,0 +1,98 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + +{{$header}}
+ ++{{$relation_text}}
+ {{$nettype}}
+ {{if $lost_contact}}
+ {{$lost_contact}}
+ {{/if}}
+ {{if $insecure}}
+ {{$insecure}}
+ {{/if}}
+ {{if $blocked}}
+ {{$blocked}}
+ {{/if}}
+ {{if $ignored}}
+ {{$ignored}}
+ {{/if}}
+ {{if $archived}}
+ {{$archived}}
+ {{/if}}
+
+ -
+
+ {{if $common_text}}
+ {{$common_text}}
+ {{/if}}
+ {{if $all_friends}}
+ {{$all_friends}}
+ {{/if}}
+
+
+ - {{$lblrecent}}
+ {{if $lblsuggest}}
+ - {{$lblsuggest}}
+ {{/if}}
+
+
+{{$lbl_info1}}
+ + +{{$lbl_vis1}}
+{{$lbl_vis2}}
++{{if $contact.alt_text}}
{{$header}}{{if $total}} ({{$total}}){{/if}}
+ +{{if $finding}}{{$finding}}
{{/if}} + +{{$title}}
++{{$desc}} +
++ {{$field.3}} +
+ + {{$field.3}} +
+ + {{$field.3}} +
+ + {{$field.3}} +
+ {{foreach $items as $item}} +- {{$item.label}}
+ {{/foreach}}
+
+
+ +{{$title}}
+ ++ {{foreach $groups as $group}} +-
+ {{if $group.cid}}
+
+ {{/if}}
+ {{if $group.edit}}
+
+ {{/if}}
+ {{$group.text}}
+
+ {{/foreach}}
+
++
+ {{include file="field_checkbox.tpl" field=$lremember}} + +
+
{{$title}}
++ +
+ +
+{{$desc}} +
++ +
diff --git a/view/theme/decaf-mobile/templates/mail_list.tpl b/view/theme/decaf-mobile/templates/mail_list.tpl new file mode 100644 index 000000000..538f6affb --- /dev/null +++ b/view/theme/decaf-mobile/templates/mail_list.tpl @@ -0,0 +1,21 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
{{$title}}
++
+
+
+
+
+
+
+
+
+ + + + ++
{{$album.1}}
+ +{{$pagename}}
+ +{{$banner}}
+ ++- {{$viewprof}}
+- {{$cl_prof}}
+
+- {{$del_prof}}
+
+
++{{$lbl_about}} +
+ + + ++{{$lbl_hobbies}} +
+ + + ++{{$lbl_likes}} +
+ + + ++{{$lbl_dislikes}} +
+ + + ++{{$lbl_social}} +
+ + + ++{{$lbl_music}} +
+ + + ++{{$lbl_book}} +
+ + + ++{{$lbl_tv}} +
+ + + ++{{$lbl_film}} +
+ + + ++{{$lbl_love}} +
+ + + ++{{$lbl_work}} +
+ + + ++{{$lbl_school}} +
+ + + +{{$title}}
+ +- {{$location}}
+ -
+ {{if $profile.address}}
{{$profile.address}} {{/if}}
+
+ {{$profile.locality}}{{if $profile.locality}}, {{/if}}
+ {{$profile.region}}
+ {{$profile.postal_code}}
+
+ {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
+
+
+ {{/if}} + + {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} + + {{if $profile.pubkey}} {{/if}} + + {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} + + {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} + + {{include file="diaspora_vcard.tpl"}} + + ++ {{if $connect}} +- {{$connect}}
+ {{/if}}
+ {{if $wallmessage}}
+ - {{$wallmessage}}
+ {{/if}}
+
+{{$header}}
+ +{{$regtitle}}
++ +
{{$realpeople}}
+ ++{{if $oidlabel}} +
{{$fillwith}} {{$fillext}}
++ +{{if $invitations}} + +
{{$invite_desc}}
++ +
+ +
+ +
{{$nickdesc}}
++ +
+ +{{$license}} + +
{{$ptitle}}
+ +{{$nickname_block}} + +{{$h_pass}}
+ +{{include file="field_password.tpl" field=$password1}} +{{include file="field_password.tpl" field=$password2}} +{{include file="field_password.tpl" field=$password3}} + +{{if $oid_enable}} +{{include file="field_input.tpl" field=$openid}} +{{/if}} + +{{$h_basic}}
+ +{{include file="field_input.tpl" field=$username}} +{{include file="field_input.tpl" field=$email}} +{{include file="field_password.tpl" field=$password4}} +{{include file="field_custom.tpl" field=$timezone}} +{{include file="field_input.tpl" field=$defloc}} +{{include file="field_checkbox.tpl" field=$allowloc}} + + +{{$h_prv}}
+ + + + +{{include file="field_input.tpl" field=$maxreq}} + +{{$profile_in_dir}} + +{{$profile_in_net_dir}} + +{{$hide_friends}} + +{{$hide_wall}} + +{{$blockwall}} + +{{$blocktags}} + +{{$suggestme}} + +{{$unkmail}} + + +{{include file="field_input.tpl" field=$cntunkmail}} + +{{include file="field_input.tpl" field=$expire.days}} + + +{{$expire.advanced}}
+ {{include file="field_yesno.tpl" field=$expire.items}} + {{include file="field_yesno.tpl" field=$expire.notes}} + {{include file="field_yesno.tpl" field=$expire.starred}} + {{include file="field_yesno.tpl" field=$expire.network_only}} ++
+ + +{{$group_select}} + + +
{{$h_not}}
+{{$h_advn}}
++
+
{{$header}}
+ +{{$subheader}}
+ +{{$title}} - {{$page}}
+ +{{$h_pending}}
+ {{if $pending}} +{{$no_pending}}
+ {{/if}} + + + + +{{$h_users}}
+ {{if $users}} +{{$comunity_profiles_title}}
+{{$helpers.title.1}}
+How-To Guides+NewHere
+Friendica Support
+Let's talk
+Local Friendica +{{/if}} +
{{$con_services.title.1}}
+{{$nv.title.1}}
+{{$nv.directory.1}}+{{$nv.global_directory.1}}
+{{$nv.match.1}}
+{{$nv.suggest.1}}
+{{$nv.invite.1}} +{{$nv.search}} +{{/if}} +
{{$lastusers_title}}
+{{$activeusers_title}}
+{{$photos_title}}
+{{$like_title}}
++{{foreach $like_items as $i}} +- {{$i}}
+{{/foreach}}
+
+{{/if}} +{{$twitter.title.1}}
+{{$mapquery.title.1}}
++ {{foreach $contact.photo_menu as $c}} + {{if $c.2}} +- {{$c.0}}
+ {{else}}
+ - {{$c.0}}
+ {{/if}}
+ {{/foreach}}
+
+- {{$location}}
+ -
+ {{if $profile.address}}
{{$profile.address}} {{/if}}
+
+ {{$profile.locality}}{{if $profile.locality}}, {{/if}}
+ {{$profile.region}}
+ {{$profile.postal_code}}
+
+ {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
+
+
+ {{/if}} + + {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} +- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} + + {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} +- {{$about}}
- {{$profile.about}}
{{/if}} +{{$title}}
{{/if}} + {{if $desc}}+ {{foreach $items as $item}} +- {{$item.label}}
+ {{/foreach}}
+
+ +{{$title}}
++ {{foreach $groups as $group}} +-
+
+
+ {{$group.text}}
+
+ {{if $group.edit}}
+
+ {{/if}}
+ {{if $group.cid}}
+
+ {{/if}}
+
+ {{/foreach}}
+
++
+ +*}} diff --git a/view/theme/diabook/templates/mail_display.tpl b/view/theme/diabook/templates/mail_display.tpl new file mode 100644 index 000000000..dc1fbbc6f --- /dev/null +++ b/view/theme/diabook/templates/mail_display.tpl @@ -0,0 +1,17 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
{{$title}}
++-
+
+ {{$all}}
+ {{foreach $nets as $net}}
+ -
+
+
+ {{$net.name}}
+
+ {{/foreach}}
+
++ {{$photo_menu}} +
+ +{{$title}}
{{/if}} + {{$body}} +{{$album.1}}
+ ++- {{$ps.usermenu.status.1}}
+ - {{$ps.usermenu.photos.1}}
+ - {{$ps.usermenu.contacts.1}}
+ - {{$ps.usermenu.events.1}}
+ - {{$ps.usermenu.notes.1}}
+ - {{$ps.usermenu.pgroups.1}}
+ - {{$ps.usermenu.community.1}}
+
+ ++ {{foreach $profile.menu.entries as $e}} +-
+ {{$e.profile_name}}
+
+ {{/foreach}}
+ - {{$profile.menu.chg_photo}}
+ - {{$profile.menu.cr_new}}
+ - {{$profile.edit.3}}
+
+
+- {{$location}}
-
+ {{if $profile.address}}
{{$profile.address}} {{/if}}
+
+ {{$profile.locality}}{{if $profile.locality}}, {{/if}}
+ {{$profile.region}}
+ {{$profile.postal_code}}
+
+ {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
+
+
+ {{/if}} + + {{if $gender}}+
- {{$gender}}
- {{$profile.gender}}
{{/if}} + + {{if $profile.pubkey}} {{/if}} + + {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} + + {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} + + {{include file="diaspora_vcard.tpl"}} + ++ {{if $connect}} +- {{$connect}}
+ {{/if}}
+
+{{$header}}
+ ++- {{$ps.usermenu.status.1}}
+ - {{$ps.usermenu.photos.1}}
+ - {{$ps.usermenu.events.1}}
+ - {{$ps.usermenu.notes.1}}
+ - Public Groups
+ - {{$ps.usermenu.community.1}}
+
+ ++ {{$item.item_photo_menu}} +
+ +{{$item.title}}
{{/if}} + {{$item.body}} + {{if $item.has_cats}} ++
Show/hide boxes at right-hand column
+{{include file="field_select.tpl" field=$close_pages}} +{{include file="field_select.tpl" field=$close_profiles}} +{{include file="field_select.tpl" field=$close_helpers}} +{{include file="field_select.tpl" field=$close_services}} +{{include file="field_select.tpl" field=$close_friends}} +{{include file="field_select.tpl" field=$close_lastusers}} +{{include file="field_select.tpl" field=$close_lastphotos}} +{{include file="field_select.tpl" field=$close_lastlikes}} +{{include file="field_select.tpl" field=$close_twitter}} +{{include file="field_input.tpl" field=$TSearchTerm}} +{{include file="field_select.tpl" field=$close_mapquery}} + +{{include file="field_input.tpl" field=$ELPosX}} + +{{include file="field_input.tpl" field=$ELPosY}} + +{{include file="field_input.tpl" field=$ELZoom}} + ++ +
+ {{$item.item_photo_menu}} +
+ +{{$item.title}}
{{/if}} + {{$item.body}} + {{if $item.has_cats}} ++
+
+
+
+
+
+
+
+
+ + + {{if $qcomment}} +Help or '@NewHere'?
++Let's talk
+Local Friendica
+NewHere +
Connectable Services
++
+
+
+
+
+
+
+
+
+ diff --git a/view/theme/dispy/templates/contact_template.tpl b/view/theme/dispy/templates/contact_template.tpl new file mode 100644 index 000000000..d22acd5a6 --- /dev/null +++ b/view/theme/dispy/templates/contact_template.tpl @@ -0,0 +1,41 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + ++ {{foreach $contact.photo_menu as $c}} + {{if $c.2}} +- {{$c.0}}
+ {{else}}
+ - {{$c.0}}
+ {{/if}}
+ {{/foreach}}
+
+{{$title}}
+ ++ {{foreach $groups as $group}} +-
+ {{$group.text}}
+ {{if $group.edit}}
+
+ {{/if}}
+ {{if $group.cid}}
+
+ {{/if}}
+
+ {{/foreach}}
+
++
{{$messages}}
+ +{{$album.1}}
+ ++ {{foreach $profile.menu.entries as $e}} +-
+ {{$e.profile_name}}
+
+ {{/foreach}}
+ - {{$profile.menu.chg_photo}}
+ - {{$profile.menu.cr_new}}
+
++ {{if $connect}} +- {{$connect}}
+ {{/if}}
+
+{{$title}}
+ {{$searchbox}} + ++ {{foreach $saved as $search}} +-
+
+ {{$search.term}}
+
+ {{/foreach}}
+
+ ++ {{$item.item_photo_menu}} +
++ {{$item.item_photo_menu}} +
++ {{if $item.star}} +-
+
+
+ {{/if}}
+ {{if $item.tagger}}
+ -
+
+
+ {{/if}}
+ {{if $item.vote}}
+ -
+
+ {{if $item.vote.dislike}}
+
+ {{/if}}
+ {{if $item.vote.share}}
+ {{/if}}
+
+
+ {{/if}}
+
+
+ {{if $item.filer}} +
+ {{/if}}
+ {{if $item.plink}}
+
+ {{/if}}
+ {{if $item.edpost}}
+
+ {{/if}}
+
+ -
+ {{if $item.drop.dropping}}{{/if}}
+ {{if $item.drop.pagedrop}}{{/if}}
+
+
+ ++
+
+
+
+
+
+
+
+
+ + + {{if $qcomment}} + + {{/if}} + + ++
+
+
+
+
+
+
+
+
+ + + + +- {{$location}}
+ -
+ {{if $profile.address}}
{{$profile.address}} {{/if}}
+
+ {{$profile.locality}}{{if $profile.locality}}, {{/if}}
+ {{$profile.region}}
+ {{$profile.postal_code}}
+
+ {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
+
+
+ {{/if}} + + {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} + + {{if $profile.pubkey}} {{/if}} + + {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} + + {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} + + {{include file="diaspora_vcard.tpl"}} + + ++ {{if $connect}} +- {{$connect}}
+ {{/if}}
+ {{if $wallmessage}}
+ - {{$wallmessage}}
+ {{/if}}
+
+{{$header}}
+ +{{$title}}
+ ++ {{foreach $groups as $group}} +-
+ {{if $group.cid}}
+
+ {{/if}}
+ {{if $group.edit}}
+
+ {{/if}}
+ {{$group.text}}
+
+ {{/foreach}}
+
++
- {{$location}}
+ -
+ {{if $profile.address}}
{{$profile.address}} {{/if}}
+
+ {{$profile.locality}}{{if $profile.locality}}, {{/if}}
+ {{$profile.region}}
+ {{$profile.postal_code}}
+
+ {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
+
+
+ {{/if}} + + {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} + + {{if $profile.pubkey}} {{/if}} + + {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} + + {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} + + {{include file="diaspora_vcard.tpl"}} + ++ {{if $connect}} +- {{$connect}}
+ {{/if}}
+
++ {{$item.item_photo_menu}} +
+$ptitle
+ +$nickname_block + +$h_pass
+ +{{inc field_password.tpl with $field=$password1 }}{{endinc}} +{{inc field_password.tpl with $field=$password2 }}{{endinc}} + +{{ if $oid_enable }} +{{inc field_input.tpl with $field=$openid }}{{endinc}} +{{ endif }} + +$h_basic
+ +{{inc field_input.tpl with $field=$username }}{{endinc}} +{{inc field_input.tpl with $field=$email }}{{endinc}} +{{inc field_custom.tpl with $field=$timezone }}{{endinc}} +{{inc field_input.tpl with $field=$defloc }}{{endinc}} +{{inc field_checkbox.tpl with $field=$allowloc }}{{endinc}} + + +$h_prv
+ + + + +{{inc field_input.tpl with $field=$maxreq }}{{endinc}} + +$profile_in_dir + +$profile_in_net_dir + +$hide_friends + +$hide_wall + +$blockwall + +$blocktags + +$suggestme + +$unkmail + + +{{inc field_input.tpl with $field=$cntunkmail }}{{endinc}} + +{{inc field_input.tpl with $field=$expire.days }}{{endinc}} + + +$expire.advanced
+ {{ inc field_yesno.tpl with $field=$expire.items }}{{endinc}} + {{ inc field_yesno.tpl with $field=$expire.notes }}{{endinc}} + {{ inc field_yesno.tpl with $field=$expire.starred }}{{endinc}} + {{ inc field_yesno.tpl with $field=$expire.network_only }}{{endinc}} ++ + +$group_select + + +
$h_not
+$h_advn
+$ptitle
+ +$nickname_block + +$h_pass
+ +{{inc field_password.tpl with $field=$password1 }}{{endinc}} +{{inc field_password.tpl with $field=$password2 }}{{endinc}} +{{inc field_password.tpl with $field=$password3 }}{{endinc}} + +{{ if $oid_enable }} +{{inc field_input.tpl with $field=$openid }}{{endinc}} +{{ endif }} + +$h_basic
+ +{{inc field_input.tpl with $field=$username }}{{endinc}} +{{inc field_input.tpl with $field=$email }}{{endinc}} +{{inc field_password.tpl with $field=$password4 }}{{endinc}} +{{inc field_custom.tpl with $field=$timezone }}{{endinc}} +{{inc field_input.tpl with $field=$defloc }}{{endinc}} +{{inc field_checkbox.tpl with $field=$allowloc }}{{endinc}} + + +$h_prv
+ + + + +{{inc field_input.tpl with $field=$maxreq }}{{endinc}} + +$profile_in_dir + +$profile_in_net_dir + +$hide_friends + +$hide_wall + +$blockwall + +$blocktags + +$suggestme + +$unkmail + + +{{inc field_input.tpl with $field=$cntunkmail }}{{endinc}} + +{{inc field_input.tpl with $field=$expire.days }}{{endinc}} + + +$expire.advanced
+ {{ inc field_yesno.tpl with $field=$expire.items }}{{endinc}} + {{ inc field_yesno.tpl with $field=$expire.notes }}{{endinc}} + {{ inc field_yesno.tpl with $field=$expire.starred }}{{endinc}} + {{ inc field_yesno.tpl with $field=$expire.network_only }}{{endinc}} ++ + +$group_select + + +
$h_not
+$h_advn
+{{$admtxt}}
++- {{$admin.site.1}}
+ - {{$admin.users.1}}
+ - {{$admin.plugins.1}}
+ - {{$admin.themes.1}}
+ - {{$admin.dbsync.1}}
+
+ +{{if $admin.update}} ++- {{$admin.update.1}}
+ - Important Changes
+
+{{/if}} + + +{{if $admin.plugins_admin}}{{$plugadmtxt}}
{{/if}} ++ {{foreach $admin.plugins_admin as $l}} +- {{$l.1}}
+ {{/foreach}}
+
+ + +{{$logtxt}}
++- {{$admin.logs.1}}
+
+ diff --git a/view/theme/frost-mobile/templates/admin_site.tpl b/view/theme/frost-mobile/templates/admin_site.tpl new file mode 100644 index 000000000..035024e68 --- /dev/null +++ b/view/theme/frost-mobile/templates/admin_site.tpl @@ -0,0 +1,72 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + +{{$title}} - {{$page}}
+ +{{$registration}}
+ {{include file="field_input.tpl" field=$register_text}} + {{include file="field_select.tpl" field=$register_policy}} + + {{include file="field_checkbox.tpl" field=$no_multi_reg}} + {{include file="field_checkbox.tpl" field=$no_openid}} + {{include file="field_checkbox.tpl" field=$no_regfullname}} + + + +{{$upload}}
+ {{include file="field_input.tpl" field=$maximagesize}} + {{include file="field_input.tpl" field=$maximagelength}} + {{include file="field_input.tpl" field=$jpegimagequality}} + +{{$corporate}}
+ {{include file="field_input.tpl" field=$allowed_sites}} + {{include file="field_input.tpl" field=$allowed_email}} + {{include file="field_checkbox.tpl" field=$block_public}} + {{include file="field_checkbox.tpl" field=$force_publish}} + {{include file="field_checkbox.tpl" field=$no_community_page}} + {{include file="field_checkbox.tpl" field=$ostatus_disabled}} + {{include file="field_select.tpl" field=$ostatus_poll_interval}} + {{include file="field_checkbox.tpl" field=$diaspora_enabled}} + {{include file="field_checkbox.tpl" field=$dfrn_only}} + {{include file="field_input.tpl" field=$global_directory}} + {{include file="field_checkbox.tpl" field=$thread_allow}} + {{include file="field_checkbox.tpl" field=$newuser_private}} + {{include file="field_checkbox.tpl" field=$enotify_no_content}} + {{include file="field_checkbox.tpl" field=$private_addons}} + {{include file="field_checkbox.tpl" field=$disable_embedded}} + + +{{$advanced}}
+ {{include file="field_checkbox.tpl" field=$no_utf}} + {{include file="field_checkbox.tpl" field=$verifyssl}} + {{include file="field_input.tpl" field=$proxy}} + {{include file="field_input.tpl" field=$proxyuser}} + {{include file="field_input.tpl" field=$timeout}} + {{include file="field_input.tpl" field=$delivery_interval}} + {{include file="field_input.tpl" field=$poll_interval}} + {{include file="field_input.tpl" field=$maxloadavg}} + {{include file="field_input.tpl" field=$abandon_days}} + + + +{{$title}} - {{$page}}
+ +{{$h_pending}}
+ {{if $pending}} +{{$no_pending}}
+ {{/if}} + + + + +{{$h_users}}
+ {{if $users}} ++
+
+
+
+
+{{**}}
+
+ {{**}} +{{**}} + + {{if $qcomment}} + + {{/if}} + + ++ {{foreach $tabs as $tab}} +- {{$tab.label}}
+ {{/foreach}}
+
+
diff --git a/view/theme/frost-mobile/templates/contact_block.tpl b/view/theme/frost-mobile/templates/contact_block.tpl new file mode 100644 index 000000000..5a0a26b87 --- /dev/null +++ b/view/theme/frost-mobile/templates/contact_block.tpl @@ -0,0 +1,17 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +{{**}} diff --git a/view/theme/frost-mobile/templates/contact_edit.tpl b/view/theme/frost-mobile/templates/contact_edit.tpl new file mode 100644 index 000000000..924acb0c1 --- /dev/null +++ b/view/theme/frost-mobile/templates/contact_edit.tpl @@ -0,0 +1,98 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + +{{$header}}
+ ++{{$relation_text}}
+ {{$nettype}}
+ {{if $lost_contact}}
+ {{$lost_contact}}
+ {{/if}}
+ {{if $insecure}}
+ {{$insecure}}
+ {{/if}}
+ {{if $blocked}}
+ {{$blocked}}
+ {{/if}}
+ {{if $ignored}}
+ {{$ignored}}
+ {{/if}}
+ {{if $archived}}
+ {{$archived}}
+ {{/if}}
+
+ -
+
+ {{if $common_text}}
+ {{$common_text}}
+ {{/if}}
+ {{if $all_friends}}
+ {{$all_friends}}
+ {{/if}}
+
+
+ - {{$lblrecent}}
+ {{if $lblsuggest}}
+ - {{$lblsuggest}}
+ {{/if}}
+
+
+{{$lbl_info1}}
+ + +{{$lbl_vis1}}
+{{$lbl_vis2}}
++ {{foreach $contact.photo_menu as $c}} + {{if $c.2}} +- {{$c.0}}
+ {{else}}
+ - {{$c.0}}
+ {{/if}}
+ {{/foreach}}
+
++{{if $contact.alt_text}}
{{$header}}{{if $total}} ({{$total}}){{/if}}
+ +{{if $finding}}{{$finding}}
{{/if}} + +{{$title}}
++{{$desc}} +
++ {{$field.3}} +
+ + {{$field.3}} +
+ + {{$field.3}} +
+ + {{$field.3}} +
+ {{foreach $items as $item}} +- {{$item.label}}
+ {{/foreach}}
+
+
+ ++
+
+ {{include file="field_checkbox.tpl" field=$lremember}} + +
+
{{$title}}
++ +
+ +
+{{$desc}} +
++ +
diff --git a/view/theme/frost-mobile/templates/mail_list.tpl b/view/theme/frost-mobile/templates/mail_list.tpl new file mode 100644 index 000000000..0607c15c7 --- /dev/null +++ b/view/theme/frost-mobile/templates/mail_list.tpl @@ -0,0 +1,21 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+
+
+
+
+
+
+
+
+
+ + + + ++
{{$album.1}}
+ +{{$pagename}}
+ +{{$banner}}
+ ++- {{$viewprof}}
+- {{$cl_prof}}
+
+- {{$del_prof}}
+
+
++{{$lbl_about}} +
+ + + ++{{$lbl_hobbies}} +
+ + + ++{{$lbl_likes}} +
+ + + ++{{$lbl_dislikes}} +
+ + + ++{{$lbl_social}} +
+ + + ++{{$lbl_music}} +
+ + + ++{{$lbl_book}} +
+ + + ++{{$lbl_tv}} +
+ + + ++{{$lbl_film}} +
+ + + ++{{$lbl_love}} +
+ + + ++{{$lbl_work}} +
+ + + ++{{$lbl_school}} +
+ + + +{{$title}}
+ +- {{$location}}
+ -
+ {{if $profile.address}}
{{$profile.address}} {{/if}}
+
+ {{$profile.locality}}{{if $profile.locality}}, {{/if}}
+ {{$profile.region}}
+ {{$profile.postal_code}}
+
+ {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
+
+
+ {{/if}} + + {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} + + {{if $profile.pubkey}} {{/if}} + + {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} + + {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} + + {{include file="diaspora_vcard.tpl"}} + + ++ {{if $connect}} +- {{$connect}}
+ {{/if}}
+ {{if $wallmessage}}
+ - {{$wallmessage}}
+ {{/if}}
+
+{{$header}}
+ +{{$regtitle}}
++ +
{{$realpeople}}
+ ++{{if $oidlabel}} +
{{$fillwith}} {{$fillext}}
++ +{{if $invitations}} + +
{{$invite_desc}}
++ +
+ +
+ +
{{$nickdesc}}
++ +
+ +{{$license}} + +
{{$ptitle}}
+ +{{$nickname_block}} + +{{$h_pass}}
+ +{{include file="field_password.tpl" field=$password1}} +{{include file="field_password.tpl" field=$password2}} +{{include file="field_password.tpl" field=$password3}} + +{{if $oid_enable}} +{{include file="field_input.tpl" field=$openid}} +{{/if}} + +{{$h_basic}}
+ +{{include file="field_input.tpl" field=$username}} +{{include file="field_input.tpl" field=$email}} +{{include file="field_password.tpl" field=$password4}} +{{include file="field_custom.tpl" field=$timezone}} +{{include file="field_input.tpl" field=$defloc}} +{{include file="field_checkbox.tpl" field=$allowloc}} + + +{{$h_prv}}
+ + + + +{{include file="field_input.tpl" field=$maxreq}} + +{{$profile_in_dir}} + +{{$profile_in_net_dir}} + +{{$hide_friends}} + +{{$hide_wall}} + +{{$blockwall}} + +{{$blocktags}} + +{{$suggestme}} + +{{$unkmail}} + + +{{include file="field_input.tpl" field=$cntunkmail}} + +{{include file="field_input.tpl" field=$expire.days}} + + +{{$expire.advanced}}
+ {{include file="field_yesno.tpl" field=$expire.items}} + {{include file="field_yesno.tpl" field=$expire.notes}} + {{include file="field_yesno.tpl" field=$expire.starred}} + {{include file="field_yesno.tpl" field=$expire.network_only}} ++ + +{{$group_select}} + + +
{{$h_not}}
+{{$h_advn}}
++
{{$admtxt}}
++- {{$admin.site.1}}
+ - {{$admin.users.1}}
+ - {{$admin.plugins.1}}
+ - {{$admin.themes.1}}
+ - {{$admin.dbsync.1}}
+
+ +{{if $admin.update}} ++- {{$admin.update.1}}
+ - Important Changes
+
+{{/if}} + + +{{if $admin.plugins_admin}}{{$plugadmtxt}}
{{/if}} ++ {{foreach $admin.plugins_admin as $l}} +- {{$l.1}}
+ {{/foreach}}
+
+ + +{{$logtxt}}
++- {{$admin.logs.1}}
+
+ diff --git a/view/theme/frost/templates/admin_site.tpl b/view/theme/frost/templates/admin_site.tpl new file mode 100644 index 000000000..af0eebacc --- /dev/null +++ b/view/theme/frost/templates/admin_site.tpl @@ -0,0 +1,81 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + +{{$title}} - {{$page}}
+ +{{$registration}}
+ {{include file="field_input.tpl" field=$register_text}} + {{include file="field_select.tpl" field=$register_policy}} + {{include file="field_input.tpl" field=$daily_registrations}} + {{include file="field_checkbox.tpl" field=$no_multi_reg}} + {{include file="field_checkbox.tpl" field=$no_openid}} + {{include file="field_checkbox.tpl" field=$no_regfullname}} + + + +{{$upload}}
+ {{include file="field_input.tpl" field=$maximagesize}} + {{include file="field_input.tpl" field=$maximagelength}} + {{include file="field_input.tpl" field=$jpegimagequality}} + +{{$corporate}}
+ {{include file="field_input.tpl" field=$allowed_sites}} + {{include file="field_input.tpl" field=$allowed_email}} + {{include file="field_checkbox.tpl" field=$block_public}} + {{include file="field_checkbox.tpl" field=$force_publish}} + {{include file="field_checkbox.tpl" field=$no_community_page}} + {{include file="field_checkbox.tpl" field=$ostatus_disabled}} + {{include file="field_select.tpl" field=$ostatus_poll_interval}} + {{include file="field_checkbox.tpl" field=$diaspora_enabled}} + {{include file="field_checkbox.tpl" field=$dfrn_only}} + {{include file="field_input.tpl" field=$global_directory}} + {{include file="field_checkbox.tpl" field=$thread_allow}} + {{include file="field_checkbox.tpl" field=$newuser_private}} + {{include file="field_checkbox.tpl" field=$enotify_no_content}} + {{include file="field_checkbox.tpl" field=$private_addons}} + {{include file="field_checkbox.tpl" field=$disable_embedded}} + + +{{$advanced}}
+ {{include file="field_checkbox.tpl" field=$no_utf}} + {{include file="field_checkbox.tpl" field=$verifyssl}} + {{include file="field_input.tpl" field=$proxy}} + {{include file="field_input.tpl" field=$proxyuser}} + {{include file="field_input.tpl" field=$timeout}} + {{include file="field_input.tpl" field=$delivery_interval}} + {{include file="field_input.tpl" field=$poll_interval}} + {{include file="field_input.tpl" field=$maxloadavg}} + {{include file="field_input.tpl" field=$abandon_days}} + {{include file="field_input.tpl" field=$lockpath}} + {{include file="field_input.tpl" field=$temppath}} + {{include file="field_input.tpl" field=$basepath}} + +{{$performance}}
+ {{include file="field_checkbox.tpl" field=$use_fulltext_engine}} + {{include file="field_input.tpl" field=$itemcache}} + {{include file="field_input.tpl" field=$itemcache_duration}} + + + + +{{$title}} - {{$page}}
+ +{{$h_pending}}
+ {{if $pending}} +{{$no_pending}}
+ {{/if}} + + + + +{{$h_users}}
+ {{if $users}} ++
+
+
+
+
+
+
+
+
+{{**}} +{{**}} + + {{if $qcomment}} + + {{/if}} + + +{{$header}}
+ ++{{$relation_text}}
+ {{$nettype}}
+ {{if $lost_contact}}
+ {{$lost_contact}}
+ {{/if}}
+ {{if $insecure}}
+ {{$insecure}}
+ {{/if}}
+ {{if $blocked}}
+ {{$blocked}}
+ {{/if}}
+ {{if $ignored}}
+ {{$ignored}}
+ {{/if}}
+ {{if $archived}}
+ {{$archived}}
+ {{/if}}
+
+ -
+
+ {{if $common_text}}
+ {{$common_text}}
+ {{/if}}
+ {{if $all_friends}}
+ {{$all_friends}}
+ {{/if}}
+
+
+ - {{$lblrecent}}
+ {{if $lblsuggest}}
+ - {{$lblsuggest}}
+ {{/if}}
+
+
+{{$lbl_info1}}
+ + +{{$lbl_vis1}}
+{{$lbl_vis2}}
++ {{foreach $contact.photo_menu as $c}} + {{if $c.2}} +- {{$c.0}}
+ {{else}}
+ - {{$c.0}}
+ {{/if}}
+ {{/foreach}}
+
++{{if $contact.alt_text}}
{{$header}}{{if $total}} ({{$total}}){{/if}}
+ +{{if $finding}}{{$finding}}
{{/if}} + +{{$tabs}} + +{{$title}}
++{{$desc}} +
+{{$title}}
+ ++{{$desc}} +
+ ++ +
+- FileBrowser
+
++ {{foreach $folders as $f}}- {{$f.1}}
{{/foreach}}
+
++ {{foreach $files as $f}} +- {{$f.1}}
+ {{/foreach}}
+
++
+
+ {{include file="field_checkbox.tpl" field=$lremember}} + +
+ +
{{$title}}
++ +
+{{$desc}} +
++ +
diff --git a/view/theme/frost/templates/mail_list.tpl b/view/theme/frost/templates/mail_list.tpl new file mode 100644 index 000000000..0607c15c7 --- /dev/null +++ b/view/theme/frost/templates/mail_list.tpl @@ -0,0 +1,21 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+
+
+
+
+
+
+
+
+
+ + + + ++ +
{{$album.1}}
+ +{{$pagename}}
+ +{{$title}}
+ + +{{$banner}}
+ ++- {{$viewprof}}
+- {{$cl_prof}}
+
+- {{$del_prof}}
+
+
++{{$lbl_about}} +
+ + + ++{{$lbl_hobbies}} +
+ + + ++{{$lbl_likes}} +
+ + + ++{{$lbl_dislikes}} +
+ + + ++{{$lbl_social}} +
+ + + ++{{$lbl_music}} +
+ + + ++{{$lbl_book}} +
+ + + ++{{$lbl_tv}} +
+ + + ++{{$lbl_film}} +
+ + + ++{{$lbl_love}} +
+ + + ++{{$lbl_work}} +
+ + + ++{{$lbl_school}} +
+ + + +- {{$location}}
+ -
+ {{if $profile.address}}
{{$profile.address}} {{/if}}
+
+ {{$profile.locality}}{{if $profile.locality}}, {{/if}}
+ {{$profile.region}}
+ {{$profile.postal_code}}
+
+ {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
+
+
+ {{/if}} + + {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} + + {{if $profile.pubkey}} {{/if}} + + {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} + + {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} + + {{include file="diaspora_vcard.tpl"}} + + ++ {{if $connect}} +- {{$connect}}
+ {{/if}}
+ {{if $wallmessage}}
+ - {{$wallmessage}}
+ {{/if}}
+
+{{$header}}
+ +{{$regtitle}}
++ +
{{$realpeople}}
+ ++{{if $oidlabel}} +
{{$fillwith}} {{$fillext}}
++ +{{if $invitations}} + +
{{$invite_desc}}
++ +
{{$nickdesc}}
++ +
+ +
+ {{$item.item_photo_menu}} +
+ {{**}} ++ {{$item.item_photo_menu}} +
+{{**}} + ++
`J(M1%E(;~=tG;`Z+nyGtxlJE-d-zOXHRCo0rTJb{~ z%0_R(b{q?)$jUAE0}_k8T5|4QGYTd{34ea~R%}smBb`u;0)O^pPWO#J@_d%L`ColF zkCd62NVyX{eZiTzp~p?`$p1BesKc87yzd!W91W+hWhchcO;y
z@ocQqGhcb%_7@H8oz?UI);g$B`+hxp>9#Ixhk+u9-^{I_oCk{v|NYpx>{Am#uKj%R
z@bmfx{_{Ixt#26hl(-3rnfL17iQp_4AZ5!$mb6>3)ndY@Lzkx0Id+jD^I5F?C6SEC
zDlFmevDVU3>{2N{6Y
zn^XTQ4{ET6-&X95coe6ep1jbLrtj}|02`Ol4mhNO>HaJ}htgE>avc|O_T0zTrg^;haDLue=hOum1SSdMGt7WzvI}T){`aHCh
z5fk#9Ad`uiDvLHFi#u_$+6ic|c|IkSBKI!<5yCWPc4`F1?9A-k3y>k5kQUq>n!%nG
z(A|-tE@WqBrU#foInzyfTms;kkXDhw9@q^q5kor>z*SDuJBZ8#YTK)`E?^8o(H7{0
zZo$|PkV-e*U2lL!H$83UeKVNMw#E!HYS!su2$gj<7@D!kBd?ntIm1kJ-au>#0%nnU
zVCIfUwWn3a6%`f?D&m)%~;RlXo^0eOm-`8cIdfvXT|REjO|6@h8OmH*ckd1TV-2OQB$;i
zQ|+0l!Z)p`gm7|VQ5b|G@5DoeCUt4UBUc^+K7nL{^&vGhoMiqadcuNJf12Dx1TCpC
zTMj@nQ(Ad!ijf|J9MU|%2!x6a9L4fxy?hv^4B{--sW?=&94&xo=A;{%&N0fNH6tEM
z`y-QRA}3Snr5QH62#q)ZC@bukuACw{-!aO-jQSx_vkKD&^AGn*4V#{vLzDv_PJC+V
z)fu$F9~1g%tZ80b;IoDEa)8C~SmDO9O5*uVZ>_ORfAQ!521_=IrL_e?d@NZ(V1Yj*
z=q5xuA7!78dNKV38N{7QK!6*>x&mm3Y8FS^Y62FHBAW6r^&M>-(`=OD0t@m9ND$N0
zC>42r?Oapm5H6iS)Ye=;IS}VpfY?@iOrsO+8bqK77z9dv%?}Q?XeZ+)C{@#i7_t4um6?=~txEzv2g!N`Bw&)5hHE1B^!hDh@YOHLeqURz;Xu_(m^kkHGnH#6WdNFfwx<#GHt
z=#-gElq4M!;|~N}!S((GFaw}DSmqm|5)QzLJOmXf{pHMFU)b;u!|;0Z3EMz-FcL=v
z0CX~mLPyA;KNyaiO-l`=yfC6&N{5c@kZ4#9NsRkl4KYlcB_$LbLa1QZgAJQiVsnjfelZN`*u<_dhwl#3#;eYKK-*w9Vwsy^&w(5Bg6{c18PCx!I0^6S(aN=nsJ{b@
zSJ?L$x^8MH&U0J!GY{2EI?ts~H(5boBV_qOutHl(bvol>i?a0Oy9S)F(pVl9stFO?
z5Vdb<2RP-_nMoH5v^i7?jId+M3VMVoJ))D9Q<+KsK-tYA=3O_n4Sd+
zK~V*hae>B6Yu;pOi6T5k7;LaNOv$@PqQamRnjsK|XFPFvN)R3oIhxclx9V{hl^bJM
zcC0V>lXAQV14GMIov<|bQg8e5autKSyEFuz1x8mVD;$ryfo9~+)8@@o>^9@vW#xYT
zUbN3_d=%$Y^^;lI2lcF8@snw~D&cF-d9T3}*Eb@bf`&*8>ad*q=4N9ZLYYBsdOAFT
zb2(j+!%694W@wJ2Eo7Q1XGYj$Cb#O*yxd*LHBI9l6r5fn&r1+`$_v9_WPZ2Z128SG
zq)R^|Yrh*Ak(uUwVAYfXjBVZp`)O#ZBO(9S?XI1JJ#sQKI6Wz-W{R#z<5+zxainev
zE=#E$ZKuUX5}xzCF3DpW(?5pBiYv#H;@5R!QO#S
z&LN3a1`?^6WO4+dVv&$aVP)jA+8Utds<}H)RY!|h+pdXymHUwGTAP0n8rT_7CI^8&
zHV4DI+~cVDG~*sY6KlQN^`bZGoR>jp0GQ;Bwir7>cr$=~L))QJ1$wv??u_?V1|O!n-H(GU$&_v=rW7bH6J
z1!t*hGCJ5P3fBwGkjtJ{K7?3v1b$BxG%6+9!B$b}{YMMM%~SJKyS#faA8eRREfbLg
z-rr+4i*3bt{+7FacqX4W^NgY9
z@kx<$>~lwUtgu|#=Q`6XR#wYMY6%X6-#aAa&+T^?R@>Bea(vRtz*$i4GJHOwWF?nu
z`9|iPLd`4dx@PfZfbL_jA<#F`l2Q9~8C^M(`KXEKECUtPhRD*`VI&HR@!~)ewSh+u
zmja*Y126PJ*YvU`O0kIV?tK2sb{l+Kk*%p)`c6I@u4Mp2>dh24mOJiUxU8`tOZZQ6
zQihl`!iy~&JVRy5rA-}0l@r<5@-v(!OIAVdd2HM$ZP(
z>3{rWPVZM#&U4g8OyL~;#dc2wZWjpRCMc!NRwyP+w=cM9tCH9X#!Iqiz`N}Qm9M=i
z#x7h6rAFn*)kqBO_TCo5Lz1k*Pc|)0{5b8eMPi;lOWzmdxOHBtO52pPd{?+k^}Wa?
z^%xpP_5m7aMUW@7S}L^t;05%PA8Ju-N9?>Tq}lDOD(X9kMp%1I_*q8$HLpQYoBrN)
z8Xx@mL&w_jWCTtOv^&h~#Q(Y!{Nhsy%8nTGEW^w)%k6BM_PW>04T*Ox
zssVdEcWM$cg|&7DSb6aTL+0ecA;@h2_&oFx5c*}HsmX4r*HH`e{Wo_vL{~jr*nL*b
z6x>05@t8Io=i6Pb
z&f7377|$Z;d-F)8EE@l%+19m20Gg@ox+WhztmNNe>;00j<8aB!dO*TXKLY%FL~M!W
z74aA>K1__ZB%wHwD1k6516h{*=>E}iKTd3fJalvxT>sbVC5Rp
z@<6UY)%8=sYInserQtafpav;{_YHQ1v;zPm)`@4UqBn
z&MVmnN6Ww~2w>QBc^f*ub^>SY;ZVvl1L8@i4`t+-92)S@q=RxybfGQ`F+iRYYy>|s
zn6qgJ`BRC+hL(D5SDgqJhw*_a?f^-Iuz6BnWOAxNK2bzr1C2Zo1;V-g9ffk9MfS}4
z)ZWiU5)75YpkgyoQVtwL_BC?mwDol|wil#e_8sUD4Ljtip5gtOw+v|;%LT0ui9qe-
zrch~1Lq)AOih-@94rxm}#mrBN0qvxSZF97ejCiDO+DM3=W{MO(skez4R$+1gg8wp4BzGXBdxrMh{@8`)ZoNIG9=>IqQv1$x;56!
z#KL(MEC-<|`g0g`{NX=t9SyXW_#q?)cNc^JobfnN*tDa<;<3f?9a3m#Nqh_!X(Qx=
z5HW@aM7@`KbRr{P!z-QOGpSSVJnDAno{bBke%a?^DVFxo5rzCCN%0Zw%V;hV7Kj8M
zg#nNXdamv6Z5icXSJ7TAbZIl+T~l-o+-^yL4gKwn(>{f!;mf21Fm!2HI9Rx-y}q@g
z#vZC1xSOWQdxDV^gn%dtf@C0t0WsdRxevY<;>Smm;pT@{0cW1c0COTMaxp7o$!0C_
zG*9@#2N*#Q7D&oEf(h-FiD|ibMOKq1E}Wjpm5h-)HC7;uw-8dwEC3w&W-j5w%hSbn
z7hsCaKMlmUQKBfZK+xq_5Wy7KM{t>G(0QGT294Cd5yaF8zM!kkfrJ6G90a^>bh|1JcrMuIJ
zEk-ezMJIWiLtR#DtH4tWa%EXP0;L}@v>HZB$yrV()QT_E-8vc3DL1#aGfrF?9^w^N
zH8VynIy1iC5a7;U5x``KYMH+Lga?b!-fK!a
zob|71vS`mgOcFiL{u{zmzAoe0#XiVN9mV+Agx9A5eDSRndoH|KIw3FImBNl$MH`
zu#HHsHFG_^jE3MKuge(xFD>x#E60$AH70wK&R@&xgo>{_i7>504tqFsbbPtAiSav$
z;MesFB4B>%r)@O&wTkoVkqr3B>~$wQI~ar
z2aIObkUZ*XK&RWi{Vg@rJzzJJg%eFEV@y@SbGI=h-6dnbd(0ZKN
zLctU)E((wh?9&L4=WR0yt>vlDl}vQd*wM3L7bj5{*Jw4VnUR*KOvCnINn
zTzuZXUVGCa(RzMO1r33~6cQl;)SvlU9teSGlrP+A
z)do2}Xj|Qb{KP+c$=N8=rTt_SL6qw@ds~X`JLXDO3wL#
z=4dc$$^zP;MVtz1vj#?5Vd;W6s4d($9r$!iT-UPU^mChRMPu+4&Hx!%CD~?*Up@||
z?Q9`~4o6X1y&hP?U>5c*L5Z=Ee>FZz5l4Roc!wh->1H#T7r^XOCMVh%D93a6t`D`T
zi8icglplamlrl8shB5bwZ}fD@~6_?-S1l4~&ufJ=42-
zQT=t?+V@FdXR!Y+Fy2j$qx*ENF@nEYgz7#0YCn2U>Jb!DRw
zQcV+v8c7vRw4oGUPO^@D87$Bnpaqy^FDL-mf*dCq=16J8epj}J*K~k|*-uoP9waX6
zd1G1T6Mph90?K)4*dl{iG}|*DZQ=Gm#{9=ldQaPX!wn3Z8CpogUKhW*L)DqT=!XJ00XwdK}_COrQ#Pxj1&!`A4gf6?h2sh$<&MUzqB)Y4_Ssz~PXKH&-a>4a4hEL@iHZ-R
zBu~L0=!{1g4e(+`)R9TsdkYzwEBPjR#?9caaRj>uuVL_yRD^{+A^2rtIw!1*L6z`a
zA>FL=^eSY7ig|R)|7q51(*r3i=%5GjkjLOL|6%A!dX6XSZ;q+H*w1Sb^fUJ|g@^T*>C%tJkT~&x1iOKG%Sc=7bvYd&g7(M2|Tzxtr
zMh;k(;z>H+kj2a?Ph3$W-UC1?HlG9@2ZubP1p{ty3w3Btpl}&K9tE#k{q74Fuz{_k
z&NM8c{Fc1I^$Nq94>Sy
zw2ZwAc#)ZdI40P+uQ?Z;C}H{b=D=Xd^{k5{0x9Cf+peM5t-lEId9(Y^s(Vfo2$Ul5Wn!jI4}DM$;qbL~#MjgcpA
z%-M;so1qQYINXK9&KWZXA5{{3%^1XiF`^zGzY^BUS@EZOs+7mK&)3k
zVhMpqR6ac#0*Pv<1|*W+Lmt%aVm!k!n!#n!B{)C6oD%344fqCgiCxk%7vWiS*>?ZB
zzTEX@JY#k`-vo-_Th|+7RA}fz!cX62+^k?`AakAuhsnYQ_boIg#8k%2YR3ieo$)&X
zod5>g=h3?{L`{8_KPT&elbPE!`?VdukjADexwRy&_tp}Hao5L<7D97@uBR55svlr>
zhVJ9d7{c3Nt^3{;_v>I*AQSEuYuOEth<2DmsoMyq+*z-vDbdW;g?pAPgx|rFCzEdU
zSv9XOUt3k*O|I~ra@oq~1qzO8iSDCq8+^pSYs~0w!v=YUDXorwmn0er?2evvPu8to
z6xtlidr7PVGd08(6mN%OVjkYTLOs{&B{cd
z1EX8dvkb}(qXtHe?YF|QgRH^96+1EBU50T4H?Jz^B@VO(#R|RujL~Ycfst_+(AX@y
z@7y%n8&MgAL5k%s!lA3;-o2`VNCDo}S;4rB`9X!e$8C;V82vdm)ZLWQh)gM8P3Ki?=IJ_9HSf?uwHgg84
z;7uYm8Mi@>8n&b9+((%+5p97Cn_3-n3^gifJfYhfjjTdJNg3me$i(Mx!mp^EXP~&z
zr!RBvg4B!wKHQX6MjSCgd@hJ#45~Mu3*#TRx7W
z#=)*2qV8@lbv#}QC37nzazJ*$vV%;|wM)<`roONo`?ta+KZn8cjgKTFY1F22GIkVEbl)Kwzcx}wT5uc~I_D%Jm1MZ;
z{J$6~Qs~ThMhO-YZE`cQKD1`?qqvVyG9)=IR?*)SGn@C_~PNfnVl
zrY?s5iAs?ibLO2$r6M)byNjl2yu)HxYjf)}n;LdvE!ShgOt?R=NC{p8I|VN6q9gNu
z-g1a=nt|q-8sK+i{8*;mnhix6WG3y_t73-r(wzr=i*P1N#R|i1lrA9|R0?)W^@bCT
zQB%KQ=yc0CPqjfrulNHL+w!-BD3YudgCxPiWSuO}W1Gg4i9?+HwZ{>mKUlMJ;fg>f
z*B{OynNdmFena1LR-T5&=jz$MSzEJTTfd5`Q>uvZb%I2g(^}7aZ|1;cEZHNhR@s%$
z0NQ@^%*Rw8k3d0w1L83m=4L#FM@FvOgfW;7DLU(ADPt4)VHR>99HkC>aRe2U+~wI6
z2urz(3(EgZNAgCbaK$|al-#n|q0Dv(#8Wm>3OG(IGaS;c(ncKX&n<7wfj>|0n*El#
z`o7<2QJqEzIwwvTb{eLHjFB?R6cO>Kh|^5+8u!}yr}L`ShD3hL4Y1`}sQw9E`0*Md
zrd$T)DsJ;W*(&Nx^AxHkuTj}4M12DrAE&1qgL|-tg(`>Xm1@WQ9&n!b8A!b-imzT!
z$r>w;#cEO==^#3iO&}>Eo)MAMAdbp&I&GQhKC*j^Tyw=VnC_xwccb;<8N%L
z8(|kVeskA;L_fsH9+PdYu+M^TX)`#abNfwz145pEH6aNQKCG+ZLmcn*H#mCsf|X66
z@}&WU3J|ekU9@+t!K9I(oTbU#)0gkB_Sy(c-MMYrtBog*VCh=qwLffmC(}t@SEYsX7ihky==Sa3Vu!ge6iA>
z2%g1Akru^#ck91wS8nD=R*79myML3~4=;B7Y^RsJd36{fG@U5vVy7S`-SvXq2h2Gs
zysdi9vgZ&E)+O%D*bkgRz2$$Lm+vad(>`#n*dF7q_4wPKeEi$;`}J|1^hM_6((50~hQ_I$>&>l58Kcp3y2UYk_IUIPpbEKMUWk3BYK
z%C=DlJq;bg5mT3I5k>1KCd_Pfzj0F29-n^UzyTsnwN8zlI9_jGPmuNt$|DN;fWCln
z8HxB?aC0N>-wVL9H#|n`uh1!o%0xOx^(2S$_T(bjPA;G*XD{+BkMC
zCNDof2p$F#joXt0!RN$@LpzhIz<^>?Mx_2=|1qoHgK>dZz1Y4mCfvp>2~gSdp>iyAZ;^u&Q87c?`0AL*nVJxU
zj~n7ESE2Ss#wf^nQ*Tx>8P+re+eoP4h;xadgmWlhAXY1CG9ntXxD)SY>v>bL9{VLt
zA_Kt^&!a7|cs|Gq9)ISC^y1Yz58K{lj=mj8G`(URThk79x70J$eXY>lu5{i!bNglX
zElZJVY8b?d3E_mR?y`K&Y;$iKoobXNMNc)r9JVtsf_<6x(>P_`cr5sY%PEeOrMzPC
zyl9!6ec0YIg-TB-&AG=Of9?}K_cjP=1*vSzy#0dzip-ut8qz?zCwmGKNPR+HQ8-7L
za7rt6TXRw;vhO;m;CNecQi}j@$`2^kh2;J~z@gZtotmHRR>Oah$$c7@lgWExhEN(_
z1YJ^pb=6ouC&aRU2iw&+7aHT*BCZp%kRFZJPHh!KP+SSS!7z7hBXp;G&Z%?<|53WK
zF)@wLk1Qs7Z|Aw8G?dtj-r_$p?EUB30D34~85Ld*rylW^7R(Y2LEV%EVVGZ6)kE2g
ztc@RD5eDC{RGf$ec155qWVhE*g+f?{WTxeWpJu*SnWsx;j4Cs$9V+8EpVc)%S`qVO
zXGc9~x1iX@D}*RQfhQGOIa`WOgxLu!d(n^{P4Cn!lA2@9znw9*7aV*DPH-qNEf*R=
z)CO!-XB9gXj1|(xAP2t3g#h*dL1LYA1ohI8#58NW-|Yfg^%V@ReqCZ
za38h8WN2xIpO%GNlicIUm8_0mp<%pDuxU;m1N9uVaKU-eouyvQHGn2Qfu0OARUh9&
zOwz+Rk2x2|gANCD#e)`m*T;)Sw1N?a19=z4gG%)G(zN0XfAUvijAcF6m7d7@s3@%%
z+Vxw)<1c1tT8~^vlm-b$+dyPO#gb%RX@6nmH5L+wA@-fyu)Eo!?Jc$Akd%~7mUiGI
zd0&UBO_o)iEJoH_WDhruIj-I6)JCxoN_|S&c``?dv_e(2+k2Kao^0RBh#)$6hEkJN
zV8m4fXg=BHVfKnI4_ro7V9dNnS7RXUqG!PiwT`v?@gqj1UnWU%RHpZiD8!}B7SBv~
zhy}^<=G3ux&^7>B9;hwFT%dDPw~H#RH>vjK$zEfLv`s6c<~+6`x+5&m<`OT|23yW%
zlO?egm`(~KSfE3OfzApgz1WTRRgv>gmVm9NEz;(?WUSME9RrRMC(HB}CllACBAHg9
z;d{c!ErP`4c&s{3!75hJ|I~YDn`p{VL#7@r
zWXMCH`~cI0s-n?|D|Jhkk~N*EQd^%9r=k=l6sT|&ee>&2J)9r3SEzXEBc~2%2RNsK
zfE*3h!WO8R>G;NrQt15q{%(=hBhny*QKOy$j3#yn*HdL0iD67MUIoT8SpVc%s)@G!
zN^8AN^7OAZnz|L*W1HO7X`ur_p?aq%k$R{q&hu2U6<=?1c>WSi5;T-Y7|EsH(d>0s
zfgkz{bOTMXdZ!gbz526s>X=%^0%a``SC5nut*DT)?IQ8VK#_3WR;uc)gWb_w#Q?b|
zuSPB1_uyW;TNWBKo?=4B+_l+dni3;H(8wPk^Z{xa^nuEq5)l;bhsp%D#{`&2B`Ia%
zE6E>s5|mF1HK=;pGLf}e#sZPGxyBYK#o(xra_|}T8ZpV@hNJA1C>)bDAiVU)!xbub
zkP!QMhBL`3jQu_7Imn$w=IbF6#kaMfEG|9YV#Z6C7a6abig5vcX7K)Px{bjgj=*{%
zOpH5jcDy4Y;di)A!$3C{#7nl9CF|=YX+ko|sD<*w_9(?%Oi39P$%%%7#&RMjJo%-i
zc+fA(D>b&^i&+o7Az$GD*n#q60{PicDwY!-TtMV;=L}?~*h53{Gad_c3zBS~UgzYm
zpiXzxLXPf7&$yNl?HUKsaA49)2u3z-sN+MdKWr>M+0c;ivdF)RRv5AZFU{il
zm8JJ>3vA)~WL@lXJ003ljN$sDEx0f8;$EkZ7#eT1-hRgdr$J(g6W3LOg(G`@WB7MC
zgJQi(JOpix3@brsB>A~un-O%9cA~t!XpW@<#Q;{iBOVZ<3d+HU1Yw5fTrdte!;HD~
zH?HRyAI&~xdylU8gz{f^nn?+7OIUVzW4KHa16bbDy>GX@Bi^DU_w6HNwFrIXdI$6|
zKoc7MLs1`t#NSg1WuB_F#bmyBhVLCOO}}M|oT&Zi){wZCl?bE9SHVOjORckn+$`u8
zg&>$Tgk`ZNiQKZiP0}wBc`A(RpadhP)ve&fj7rjPP5vM)4449R=eh(LOwzO8{1a~O
zM?6LRS_6V$X?odkXNvYQEe9Q$$(~}NH#lV!cQcIqNG-zk7A130zBG_IwUZ)d=Vc~v
zb6$UM)g5~tIH6$uS*=z2$=;m-S}4h4CsF>GNez#Ac9A2c%*FCMN^w-h;XeO!^zR90
zp+Y(xoRHluEmJ~)K<$0(?l6W;=l;)tqU@D9MG`7*>V4KTy0i6kE>amj-=DEubhfBe
z1PCEzY^X*?%VQShY&0J9o5tG`NwGL|R?8twMA@c4o;1{sVdXTpd=3i0BA
z-!KTOqDe8yqxecIBT)8TfEwd(;`{oIeXkFSkB9sdAhykSGaObTB33>&FesAw2e8u=#{3
zd@8kn$by6p;+_b2u;eUp@G}u(K9CADg2mws6k`VR74*O&I*m?=uFJwWBP*TWUF
zp9EtTzWw~U3aUTEe_w749WnUG&`>yxn{BcHaB!#LAp<5VSW?z@unqh@GwIR4Y@%d=
z#+>FmGA$uggxi%mRFJ~z;RrdgeToyQ7Aj6nn04u*IwYI^6Qd$1H!+`TwCgOf?5nSn
zx*(34Q&N^2&OZU6&L{FT`NVJ?zdzS_j!P@)>z7~xG^v1gvf^3}s#Remfw
z98VB;6K^K14j9>uqH8n;3oAg@HRCB$PaiF}%O{}LFq#LoZa){t@
zGkhgANuo~(q-^7NUNEp*jN@R%X`4ber;ub6U{S*>_*am|N1Zj>g3%Y$(R~&haZHG!
zlF(eNGlpbDoiW2eZSRio+~lNpI|X{!1KI#ZKJ)a$#`9I0ER5REIC~kbW!BE|g)@rx
zZGE5ZxND_YS=YKTdhe!M2#Kt4Qgr=hvG+2WZWRS8RwtOHSR3F$qyx{e_1VTNtG(Ml
z@##Mp41!3IdZeoxwS2R!?%2x8;+hYR7Ch|te1He-9%a#k5b
zfm%fBK*2+q{EMg_mR*O)>B&^Vkc4t{E3v}h+PxgExB=b6{meW~L6)(QKJ5sbsiM5G
z>Ms1t)C4)~Y*rE&_Y23^nO%?l4XXSeGzNRDcO*ziGp%xqcrpgAekW?^Rs@Ebq6l24F`i!^=5*0LM33qh`sP&pd|y{@S~O#3x}xh&?vR5Z56)@`6u=U
z#7|B1f#u|za2!yHxeH<&KIg7dm=1Ghz{0wLfu0bV`iW9f_|=Fs2qCQ^R-l4{RX*`g
z&7Y&Y@PhDR#Ei(3c7n$#8+2L$Uy+JkroAfr~5JuO>I{hIOlezPp7ltl8yA}kE3}TEU
z#41Gm6%$5O-y-)Y5LJ3PRUY@621SSJ?oKEvOr%{;r8Y4p&EFOrbl|6qJkFwj6*M=Z
zZllvmL|8;;*HtC?6^sP_Eo>EBYLe--U;
zmqhW-b%hJCn#a3ke`YsA{7u;eHad=M`aCO9v6kAbuY5jGCw&qz1;I)0y|;0D+_`_q|y848u;PU5KAq;`44V4uLUDZc=Xte@%Jt<-hT7BsYZc
zEi_&=LMiCGU3{I^V9{ThrPAaglPk5VutWJM*P~b78%#=0tekY(-Bvb5JdaDzF5q4?
zR9Cl9J(+@XKV8knYJEEGmxJNgtt3J6p-PCO4oW*;dKJS-`Re+P|RDz06
zPhRc{J?0?o;E3S91L0%B*zLjnxXn4j5F0|_u$KKH
zK@-s+gBlVGkF>oD(`!d$bm%*liQ(>^oYMdMm}adaqQ8=IFb|9D;>g<
zoyEW2>?@{A@cjT8Di85@xvwodIN3?tKd|i*=O2FV<})9ZL0lLjsUj!TJq-gFF;pXyFtY0qBWK2<-oK!9GAIa=
z$EKlOsuSkYTtQ?vNf(cc(vJhTL+PpB{(?oa7y|%b4qV1FC0V}hi{C#9?CgF9_icvW
zZXh^TIe=iO>@uZULlO+d0{LRF@c6pg7s=~uG_W&hOB^MdFX0_n}NW=ki
z)eON@@wao+-<5ynPvF9&Kd=2k>R5pmo&FwYG_G6cJ_AU_-3~iC!GVgU{y6s|!3*b_&zec3{W5WW
zkSOFMRjJSRk?k|6Z8Bk$*;Rve(39BBmM9BH?yNnQLz{`tJE-~%m_889r#Yu=xkg~@
z9ISTu_*`q7=uVE=eMckr?45y#?iJ)qX!tue_hvtsuUelDm`ArBoJZ
z7JIYe+Lh=^Pb%NJCSl%@*77^9Oa$z5wDWg?PD8id>S?mp96K0kx8u$<9wrlDFagF+
zj&c2)M|ehEYoC6Xy{=w}qg)$C=YHTZc^GguROIt^BLF}ky~T>>bC5WH{d8eqJf_B7
zdJo4$&-44rVwkqnf{H{INrb#BIr@zRHvR;~(fN8I8ehqydFW#1C{w1|5~h`+J617V
z=G{)mV0jcQzRkT$H8FR`$MR-_cQBA)qjDb0kNEE7%&&D?+!m(TDq-PSv}il^d5D1F
zx^SK(YSL>wx;$0oOBRp@#H`PPYJ45QWAt2LsyXUBQ8u0EK9v`SYkVQYP|r@JJU%p(
zc6c8Q8)UgaG?sF&$reA*s5uSVj!LDOqM)~%UGuRPP$XZKK
zb6|_)>VZE=KuSuV&-*fy!rfGV76Hq?h@&;_>V+V`d_^N~fjBV@8PHp0RoW$8>fQ3(
zgmp%WTY9JAU5&?X_ZTdt*yw&~aoi9gjkzC#^|Q7!ux{j8C8-@S%{qW^`3h4=R5)OG
z_?k(B;#ntql6pQ_#mX!)*Nk-(G%d_M+-y5+$vyRngyhVIEut>+qL!Qv_x@WP;
z^?DeK&-O5f+>6h__gDt3yLWD6(Y<|N(~F%aTTe}1^{3>Quo;H=_Ep^O$6&=pJQX4E
z$daz*oyKhX5anYjMbtJ!;d@y
z|I+K;I8-D=Ao~W@@X0CC`U_pfS^NAisjYopm=mq;h6)W?CXi(F|FIxMK6VqwNXmJ_
z^b=bWO!~AH*tMpBG0BBAVR}BNfH}MyZ1nRR~jorb<9*r6Kk{B|phUdF&B;@^wBD!w>^gDIw%H2k4f)$ba8w93bg(aR*MKn+1ONJ7a)7J;elEVTyGRK*!V|nZ3WhkNPMsB_R3C
z(^ksfr}rcYfr{m>vq-&U)d|R7Uo5uN#r>DV0sw?EZco-VULySXGR$D-l-Rb}xTEog
zaa4K}uh4Dm3hZqDCh}Ilwc)|Y(5x|B5i+q}6!>Oyd~g`ITC9va)X?)N*P!WdJtGVP
z50V*s#DOpuV#=PQ4-9YM2#rvkK_G9V#5C;jM5LAd)lD84>h}%2_g|pmht~u4VK*%B
zr^&+ViD>26UG-=V
z!P^L~iA|XGAc;+l
zsVq#SFYfyeXmh%#Rx!c59QmT~c&(@)*wcXfIe#Lhp&i#Oroj|Sob{S6ZiW!>Ir4e1
zH;L4w-_G0Kwr;Y+!EIG*DPbsQ)^aBWg$k
zI9ASf*N#Y_^2})kMA1!mqn*K;ozqFE3}y!gz^
ztWmF2NXt=^<2C%{)WAOaojwvLIP`kFUnhU^X6-=7xKuHUweqBNg}=-)I&3l3_YCZ<
zl-V0e#QD6BLl{%c_DB$UUuCG{Lg-RSq~djG_1hItx)tQzZ%Y%mE^
zl3an8r_9&sIreV1@`m}r&w9Z`7_*o$Lo10vrOLtN^ qd$xw8juIHl1QthmE#H zl#HjY^es(mVz#(_D{6Fp#E6A&Wyw9`W*f2OIMP<*2B|A*@AQZSuIm72L74P#u?azi zCBUgOTt?GGsJyE$O^$2chL^*3McWfI`%c^!Tn!W9<161*4TX
zoy3LsuGw1g=o1N(IWD;i$v%+~7MA7#l!Iw}bF>agMz6+qw2>TAyqcwl=O#n^Dvhqe
zILO*~!WnCp5#3)re|J`om}F+Yp^(>{nmZG)*|cce4?K}%Z#KyTH^kO4qY5YyQqD8Z
zmo|Ueyv%s7fe~8$DRr&@vIZkvR-{@H;<$qY92@6eT-X{WmRT*5M!Nh!mv%*v#
%X(SMRf4|pRfnuJDV*tR1 zc3ShCS6ak?lz9LT4W`H9-qFS&{7aMLMOxlj)2?^9VJ~Qt{Uv~#sXL4hK}2J;tO<09 zH)oAH1U0k>kQxHix#pu5u+^F&VV{de^V?V_V(op9EQwto+
zzgB{msMY$mpz<8HC(?|9C6jtzKd@Vbf~LmsgA>Jx?1v8D)iWi7+xB6)nqNJr-BhFM
zs|lwuSww?Dm3Y(c*ZkH`KD_7$mVWHY&i*lT>$glOwMi{<(D|}3Xrg_@8WK2+DD{M_
zJA2aH#TJ>%aOvj4L(Ou~887tTUKh7W-vLC)dxZStx*g0PYs72?*$m&iB8_M-_00-*
z)JihKOlf{yhLZ%iPG`%xJK10#E81jer~moN_3U3N8<}9Ax>)+`a%X+
zgoYToK#zGA&|IvV?>%0o?eZ7B^0nF}E9!jKYds~>B@(Yq)|^$RY!JZR>>Hr-=W-j&
z38pmoe@4n+E)<~@VyM(=dy=@*$zNYz&
zXUqT?!BOFw5@UWD+ZP&TKmNM2%z8-1-2%Ce%4wXs9A75&)T7gU3L6g4I;uWFZe+$1
zN5>6T?xyFE_!oZ->tFmetbg&L{N-|BG#GHof8RTQaXq+}g%HUr%iVCnnu0iN_BNU~
zZXo{bIUNVjl@=qdQQ+eCgd}3`9^C(}-#40B$wHjkPu{f&b%xP5pB$*0ES_}!>3ZUoxmcT;ZwzrIC~QdWw4>VzXwxZ%6^{9
z>#y-*b(d&IaTqNF0f1(IZvBQYD+KT~*gAt*8%>|G%(8MXyKytDXzE_di((kj-j4z@
z>dNCiYhzT=RsaRw$*p-~S+hEdqKMj;$S{l+wGY3LZF3*?VHF+RNVeLrJ?-+OZVu@D
zIQ#^%1@h(d6)PF?&BXTxR>76s%wSR2tQH8|^{o`G}LtJoVYYZrxgS8u47o$7sX8R24gHgcMCD*@%mCq7TL)
z1JTprU3z8$N4{dGq8svcIdG!<(ajHD6rX&k{&~=Xr2yX~bl@nt_g_WH##8gn|75{S
zemst9b>$P#bE6Rp}Tx`fWBe5T6mi)Nm|&3XHIny}gGA)>OSmJ{$6^
zf>=>dI_K1D1p$9_*^Pcq`XSY2C3$_^SJ+l`nI1{OYMk7=RD%l(vvy;xd~^Q5ZBORW
zVQB4Q#guMJ%sND~m~P<=>mO|IJeHNbxRjgw54lAs<$Pn|=W+}meg#Oy1%t7{hGaGc
zxmE}2FU%N`FQD2?yAP>ZSxYdeowi{h>0=8roQA>cWrC{j==Z#VTde-gvYW7UQQOds
zto_xEvO0#8#PL9eoFO-3A0qMgo`eDT59o^a&f@F-3CB?a>_YEd4rwb7o_uR0rYfn5
z&oI-jrUo_UI)34j+CJzpT5uwy;0G{ZW@&m=1KZ3+4KVrvx%_9M12rZn*0fsdV~uS2
zkA56)5~J_g`ftJi4f*-6fD$E9#zEx2GD?fNz(9omAIQ)DN%H-V;`{#t{e1lc{lHya
zrycoTD2G~4ZCxGwPtMQBK2ZEif=ZbTw*oc0w`-^5T!3H?>u)%g(kdHAA7j|-q_GGh
z>=>f|KtErd0pI0k`j5SUYgaz}3BO0?T(jhm(z_!;w~yKI6Kj{K1up60pUYb)iXVaQo-PwO4tUX?brFqQZj=-q(cAoSItErcDu(TE7cBK%b8$>vQ$6?b8cRY?j7+Qw@EQ
zl79GiF8pHIV9%lYwY%JF)w}U}&CJ!$CFka^pPv#iv6`j%qsq&?4ezNW@qtoC`Nz}y
zDH;GS^sIzoW#zHO}A26MPC
zd=`JTXwhz}Phs`vJl#)QT`%>(pjy3BkAXDkdGP$9=lcsc^ZR5JS&nZ>j;DrgMSnAl
z+(6@WFfkVYL!n_+%B^F!8M$h!7AqNi+E$n0QiBz??Y%?Xv@eOeFm=Qta9PoA&&kG1
z{78#m6Bj}>M#Bb-BAhnkRMa`Mztn7d$zFUV$SqGKk@~R8zzvePp*VX_vn#=!&dZB<
z0`tIDY&jxZiCR`D^OwO-Lv3|g%(LB`(Sldv!w{!4-j7T3wnwY8#b-u~o5eP8X
zA=Q%YxCBuhn4MN<1d6u?AC#;R9LX_awrKaa@@$m%KunJhYHIo7K5yO!hxfztbgLc%
zqF_#zs_sXjcpF$gTX;oEAgT6Pz}NTmt_+7z4Z?ID@t2jQ|HBCJ=Lx`aF)@Sx+uy=v
zLHyisK;p!7mBX&jfDR-6<34hlxkk|61ZMKIE&SeeRc#eDzrP`rDJ^+JYsz{Rb+SZgZ+MibZ&%QXj$cDQYWW#JXumK|(diog7520&I#T|8jr#E`6}td$UP*n*ZCyRT
zR@qVCA^Z7ZFgu`nGoBr@>WuNJ!=II7*xm2DF=5bjx$4)*Hyuz3WsqHUi5ti)AL{mliX{ci-3UK
zi$zF7axR*5{Hz${h#)K9gGMsFkL$2St4>E{c)9tTJ|9ZH^gBkjq00C{M6l&m09Z~J
z_~0he5xr1TWc5kk6+7Z+6jzxS1#3jh<ZKt_tQh?Y73|x0esOD*{lh
zRl%B#dr#ldur0rFigH+7`pHF5Mm(L)7})p*gUSkeN&^mGi#(=F7j1%(QB>60<&4-G
zR8_a*C9!+J^5&`7n(=2d6b`E?Ra;hfG!(g>_j{R8L@~
z%!JQ-sLX`-eTTxuxFrqs-|@?L%7SkI3W<1Dbxm%ftynno(gvIiLg)j?8I}n)gLX>}5MW-Mi=?Sg
zoKltR71|KU)jA5sCUkg4mY@yrmFx)iWU^fOXmRGrhjYHXX18(P9Ky>SvOJ52E06ka
zy(i9V<88dS@;jTw7W9iuEE4%gn3I;Ws$G|!7id+MY)W!y6lLp%+KhA+IFELtq>P=&czT|l@s
z51WLK5_mZWAU5@?A?NMSEYd+d;9~YyO<#}1LM%uA*OZWa$gx?1E|~2!7EeCWSY9)o
z<;*mkQEEBAskXujE1z}=12U@uWiq(guAM_gLk)M$VT@5N_GYtm9M;-H
znz?z|re`zM$@4?M*|jm;tcbW0OF6H15;4KEnij%D!-a?fuXK)LLdHyua~LQQ0S24;
zO-8~{8xJpeLn9qH5o;5etqdK7)vGLh5nTYxn^^LrhIgWTg6k2-o84~!Kl!;X>ysVG
z5XU$shJ0H5t5`Gf^NN>&oKfl(&FsTC$d_bdJ6yz@Sy+`_qS;%7EEy)o4$N#>GDxg8
z#~U?4(YV5p`*aLF9uca26tju4#J$mV?X9Z-a4}o4QDXiKMeuugY^^m*Ch>YZH3dgB
zRniU&W;C?ej71xIKTu6&c!48!&^noLag`|Rpq|Vavgt*=D@%|Go}~gXbKZrNfbNO4
zfbew7KN|{ZluJ@c`-B${bZj9VZnh1W^Q1+d!rX20X4NPVQnD1m=?;wL8`!i}+m<LD9D?fU~h#F{p{NyDSVLvmb`
z0Ef*+E*1Fs^TMUNuvdgOde=^b+oe*+D5*0<9(Ij@1#6XSzKfRIJ@0>ON^126uc|s)
zr!ddB-4K#ni$
zBaKD+rl88uiZB&k_sS(VB6dmf*mx8md|G=j+%<-Uo?#tPC??iCW$D)TkMT8F$a|J^
zOv3okQAX9o#Ge^bK_6w8NsrcQ(SGeJp)q4=UK)9aCnsA%q+-pkKV=!Ubl0V`ESWqi
zQROADxTHowQGtp)U6Y~EEHZy|Ppc?!lp%vwwJuxC;WnP*
z%}Oj@>N5aFLNAV=pV3nVP*LwNuo+XE+!Q5^Bf1XQff@>5+8l2b)?*+kWSWQ
z3m(DVteK8;e>sNch+4ux+HBF%n1-r6tJ^QOhEAvTcBtagK-yJX0B()(Zc24(-oZ61KUkKyGG+b$qx!}
z+~|WWyLS#)mxrc;On*IFDHh&-AC5V;oA_E~6GVRfnH~k5Wenx-Ml*7+yb6nU*C3DjkES?CrPn8Vb1a1rIXkn$izIBTs}W=7{8xBlXNMW
zno6nK;g`VynIdQ~`z>6t*|tuYeRx<7pPe!?C4+proR4t4L%m~?x^}r^6)YaDkTPeGR-UTtozbWgWGNvh#=^K!TK)@
z(iT(voiUyun#Y%pDv!R@fKlSOTMt`zyRq1kY#o!%%HigLCm-CAKk;49_opt=k6G!d
z@qd`o!>y7CB>BY?Xl$SHx~{pkUW&0g(z3NeTv4&RV^A}@OCVWVyL^Pk;K)DJ#Qlb)
z`H5IsIFPhuC?oI+vBdz+M`c=4#Z>=FKgNwz;ES`zN#`P)a4SlVy9&rOQzuWq>AJ|1
z`Ik5(eY)Mzx#2kbSk}2HB`#W?>11qGD~t5Jf^tHq%%?@ivYCdT*Mg6CgLWq)fL!ukQCu9C1~A0@1R)_e0wUOX9|}m8PKdm$U1RJ%FcU
z%uoB08Df1>)E|(En)GQ-{1pOI2q6}-p~ms$TQUp+A87rqE0suWsF=)1W($D6w(P?{
zs_*2!h@u0-_em2f&kF~C=_?9&qm`w38}9C%{q_5WZ9MPU!pVAG?Osvxvj1zB7v1^g
z#5|zU-zvceAeSa*HsDzlb#MH~-
zPNKDyVk|W*na?YzcDP^Kx|})d5y2T%n6oQi_};GC=9W&8YXTD~PJE}##Oe4eTEtE{
z!VhhVKbN|!p$`m$!1ph?V6N%oKQxTbTx@`E%)BL*--$41-W>*LIhNmrFsHyB#tTf0
zf#=*bK3TLIx5O;}*#@FOt5&-4<5X~7VQrznc9KB;Eq1Sm?lWEg-FR$A61b&Z9S`Oa
zQmJYpXNq*!F8YK>Yj?ZvdvsV55)qR;U6jRyyOb#t^WCPJeX|%sOwE4RcxtBb2N>(z
zvouP0srq)^mz~o)Sg>gl11I*&=VRJGgJO|A>kMeY{7016+=opVf~*|pnC&>~@t8Tl
znJymESLyRePXWpp$voURoW*gz3fUlOBZtCe84xq07Hy_j*BuDE`oIp;l;&I1RqxEm
zHU`?Ai+&)61#u&xqnGFqGP}EAVrum$->Qcm{hryWl`tTi(2e4_o@2*_>%m+9YFexb
zVwza`f_36%al@Pd!jQuVDFFn2xEcTz*lNff;0^P1)-yrDZg`S-LDg(!p5oOu6K?ae
zK*IE3F5L@Z4_RCOgmq5@hP>o*zW1TR&xo;3;+L2w3&SY^UC;Q3KP~u{MSRD+_^HuLYd)5JG*tG4Zqht(!~v$W@`h6)If?^b_QuzIkd)cG
zvbl>!1_ccSyR#J>8?CBmFrOp$el$2ql3{F;5=Y~1!HA;MT?Iw=!S<8Q5NGa%K)=aW
zxMVOA0wStdzweozWbdqK!nENizeO?ADR5M=g_5~!Nx~K>$8>AW<5xj(2j?HndT6xE
zwh7@KBpXy%ifoe)imJFY(Wk2weR
z@o|rnMHYLs!sAW`7d(ww7Mvpm`VPy>0(EGg5eMIoUNB*uy&2i`_Hb_)*NX+*JRjf`$CfPQ`dAwhb4I+jKEK`Z`c_WC
z$DBLU#lDe)+y%&SXAIamA`G+gTchL*YDWaHVWgfOlFRp>x;!I3S62o2OVuBt9VaNW
zVphi08HVG@X_udETBN}`@4v(D?wKJlmX7;0QRP+UtQ<;t(<*=56A+g9a2dS}+#iYj
zW&@&_{*Bl@kq0O*Z!2ryFG$}s&rY$@jmr&-CR%V9G`F)(FFr2PNrSaKSH^gI#5p0b
zql?pHQg}}s6B)^)WgtH4IB=uDY`^@@jpdfhhezV)P;e=)vS1rE*VV&Mlt9hO|{8YmPuR(hN6db?vSM8Hes`=i_^eN
z3Nt4+U$M@Ji{VfcU!EcsZE=8X1BWyQyF$js14Sb(ghwny6kpS)kM|Q=bznJ?egV&(
zA4%4sCoD}Q0xqX9)}2o})UE;yO)IH9k4jMzv;YL2QkMzUX266_0y#(Wi(T9UJZ{Xp
ziP#eE=?$&~
zEZNn|Vxtk}Z>-Kj?hE-;cV~4jm1ssB53q>!S0*wEtgu^Fhq-Yma>rd!kS_W=281^M
zY${yU3UHOXtV8b^v3$r>R5^j}Ci5SAs@xf21Oiboq+Am!^=|aF2p%Qs
zirDctVMkii`}IhuLsisPM)_uc=-iS`OcDLEACYgnIt}0qJ8s*@8AF|HV+WudQXMpb
z0|%{pc@QcE+ch6Sae3!4HgnNmovI8X;wReE=e7tANo1{nQjag-AQwL*XH5{cT74iK
z4MKXLb7*f*U}+}@aVX)#I-%_ewi_uC+@|H&328UJLYI0bdn#O;~SH
zHs$FRS&|(E?uA`&QF#zQcL8zh-5ZVmyOq#I-3j>Jnfvfk6tH)t-3;nQHGu69i8>4Y
zu8^0f5**5LGR40+EZ3K$bqP#&pogqUC_q5e!ZO|hwmpExS>#w)1S(Qu4{5waSfm6ko^p7Fkcc^QY>HF~hRMYi
zF}+iyBrr-xLj(;ZUU1~z4_#x`Fm=j0t~s2zF=*~L(<*b-FcaZ#Cq$h(EY$n)GM}3CJZT}<AcB_v@E39m_pcZKHFEuEKlmPOpX9mhDuCCUc1x73pCK6QZ+{tm9ge5H;S$@~AwIeG4+z2IFB4EBO_$yaCvc#LrtA!W&tCOz~^;?eZq^k@>
zZ!Wp#&Qf+e!kjx-Hu4LG)EjkZM)jQ<g*9(F4eJkTUzQ9#|A5+zLPvY(H2=
zA{a^JqdjuWrV7ir3b16>Zb%em*cE`p;B)uZ90|zO^#bGXaO7@<3}k3|TDV4D{7h6x
zX1Qi@^w7l84i)GFMA)1>dCIG4*W~bvIBZ7>cAc>~
zP^OU9F#MjTg^}Pand^C5Ys%BsP+E)CD|mIBNNj8-N!8-3hN}gtFNeQL4m&s#h4OCD
zt7)>W#c#;sLiir(w@=J=;2=kc>A;r2g77+;po?Gu_liO3j;NWs!dN2tK`f91xi5gH
zo3^Hn2iK&4&H;U!w-~hq;qh^)e0#S
z$zI{RM#@V%3Rd~n?3D{|2+MyUbZ^vPd5f8cvx~v(wXWN#x8%2LkY&LjOolrNiuwRv
z4^<_~y8x27rGuT&{qWd}W09qt0qgA5V9x0dLsoQ^8>y;>%eP}WFH7%tm0yFmCRld>
z;fX0p!6blh+qaDQcEFR-2U4aO;4Nt_|DL2LC3Os>xPbd+Cl{(fm$w7F-<-UUH3D%c1p~tEXh8Q-vw}g4F6Gy_j>@9vgl?IFUu{#)-($m=_|?(4
z3c?gm0~GSyGN<){WNz4`VgULpSzhJ6%8WVn5bOb~SsJoy!wmRP>soM}!}~P*bn&(3
z6qhL3qlU{sP!f;Q1Suj
z+^^PYe9jp#0ubP|nb|m+r*^bNut)qvDh&nnYovU8i}zJq2=t5I&*gd&&^LNr&mRTE
z-rj+!{)y{0eC{
z<@r9`2+HJ+)?=@BtrVo@T}&2Mu6@%wHE<3EWw1#CGt-zQh2l5ePsM$5NW>;QKNnea
z3$^QsVwQyf;5|KM_iBp7K{^KQxd?*oZ$24U;glGOJzm#*^?*5P?l4CfUG6;b#&h@@
z)qZm&RNF1cv=u2jhl%MpNpTd3&={D#@fb;wR-1ZL;h)HqySu?#x`M$Kq1tN>W!J>t
zlNCh(gW@Bdbfuc^oY?0f-j~0{{aBgA#QlvHkdNRhr|2+xU)JV|zqXku55s>mnw{bc
z?D1wQw#${t-XK>N0TQ7)ls#b|$-?TmgX_*?M_L>P=4+Y$7TggvQc=lg=`#YDPe>il
zIjhG?NM5K&LcSZr4l#LOx`k~YJi=|uEzzNQZ(V*HfaEaYi3*+zyES+wcB&~VQ-~^a
z%%2LokiYKlK7nT~*D|Ljwn=2YemcJu+vY
z1-LlsD}}zb=kdq5j^cN5LHu6URNyA@AWcUSorbxghfSR%BP|rL6(G=QuIiscoeYnmOc%e5Z
z;vf;jC_r#?u57nAM6K>!2)=sRiT-4
zT-)%h)^y~aQqp~!Fk}8NUHH!>UUfQ&9v7bV(Ie(iIf8IhR*Z`2P=7%8yEl4Z;uBi4=ku3%b_*9{j=
zqTXiyuM%%)i==J%y)9T_6NT9OkK4e`NPggxySs7p_Dz^~5#`TjqnpV9vywTzW)~CF
z-@6Kltxh-GvJkU7tPv<0UGK2x{p9U#Z?i*WdBOyJ<8Qi^Pvi{MZL$8H^0fWkkXj!k
z@`K!!v=TidMY4=0QxYfwC}(bdAg)x;lYhO~24l8MXp&*IWFrYf8FRN(Bwb_r$-dMi?EHm?NoD)_F+w;f$W-B>i@1
z(KcPdz7Sq*aA=upslubx6*gEg;ha>e7`b>OioMYqr%!c9j72$)M0*HGP|+2=x_zHg)Yiv(*1`usgvr#xhLO5Qq^
zNgs}yq(-gDezj#aioZhq-+0D@a}Q-_h+^GCi}YuyYMPgoxpTwzEL7==2~j0e(Z8{3
z@(Zebvf@w=q5BC9BmIub0mECfu4l5E%2805|K@q=Uvjr;i&sGJQe+&}to8Hdmdd
z{n7UECGHj2i^eAG`D_BoRP_Yrc(p|!5JYykL^=P>oN%Rkl=|iDc@5QwvnsW63>w
zKvgiPw|d6LLBpebY#Mkbj-x{QejgDgcl5(2cnWZgr)G0CHjzm
zmuuCx(DrzrUx?;On=Qq@Yp)cQHy^w_