Merge remote branch 'upstream/master'
This commit is contained in:
commit
3aa516ccab
29 changed files with 980 additions and 761 deletions
3
boot.php
3
boot.php
|
|
@ -9,7 +9,7 @@ require_once('include/nav.php');
|
||||||
require_once('include/cache.php');
|
require_once('include/cache.php');
|
||||||
|
|
||||||
define ( 'FRIENDICA_PLATFORM', 'Friendica');
|
define ( 'FRIENDICA_PLATFORM', 'Friendica');
|
||||||
define ( 'FRIENDICA_VERSION', '3.0.1349' );
|
define ( 'FRIENDICA_VERSION', '3.0.1350' );
|
||||||
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
|
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
|
||||||
define ( 'DB_UPDATE_VERSION', 1144 );
|
define ( 'DB_UPDATE_VERSION', 1144 );
|
||||||
|
|
||||||
|
|
@ -511,6 +511,7 @@ if(! class_exists('App')) {
|
||||||
$tpl = file_get_contents('view/head.tpl');
|
$tpl = file_get_contents('view/head.tpl');
|
||||||
$this->page['htmlhead'] = replace_macros($tpl,array(
|
$this->page['htmlhead'] = replace_macros($tpl,array(
|
||||||
'$baseurl' => $this->get_baseurl(), // FIXME for z_path!!!!
|
'$baseurl' => $this->get_baseurl(), // FIXME for z_path!!!!
|
||||||
|
'$local_user' => local_user(),
|
||||||
'$generator' => 'Friendica' . ' ' . FRIENDICA_VERSION,
|
'$generator' => 'Friendica' . ' ' . FRIENDICA_VERSION,
|
||||||
'$delitem' => t('Delete this item?'),
|
'$delitem' => t('Delete this item?'),
|
||||||
'$comment' => t('Comment'),
|
'$comment' => t('Comment'),
|
||||||
|
|
|
||||||
|
|
@ -87,6 +87,12 @@ class Photo {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function rotate($degrees) {
|
||||||
|
$this->image = imagerotate($this->image,$degrees,0);
|
||||||
|
$this->width = imagesx($this->image);
|
||||||
|
$this->height = imagesy($this->image);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public function scaleImageUp($min) {
|
public function scaleImageUp($min) {
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,13 @@ function nuke_session() {
|
||||||
unset($_SESSION['cid']);
|
unset($_SESSION['cid']);
|
||||||
unset($_SESSION['theme']);
|
unset($_SESSION['theme']);
|
||||||
unset($_SESSION['page_flags']);
|
unset($_SESSION['page_flags']);
|
||||||
|
unset($_SESSION['submanage']);
|
||||||
|
unset($_SESSION['my_url']);
|
||||||
|
unset($_SESSION['my_address']);
|
||||||
|
unset($_SESSION['addr']);
|
||||||
|
unset($_SESSION['return_url']);
|
||||||
|
unset($_SESSION['theme']);
|
||||||
|
unset($_SESSION['page_flags']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -77,11 +77,9 @@ function get_config($family, $key, $instore = false) {
|
||||||
if(! function_exists('set_config')) {
|
if(! function_exists('set_config')) {
|
||||||
function set_config($family,$key,$value) {
|
function set_config($family,$key,$value) {
|
||||||
global $a;
|
global $a;
|
||||||
|
|
||||||
// manage array value
|
// manage array value
|
||||||
$dbvalue = (is_array($value)?serialize($value):$value);
|
$dbvalue = (is_array($value)?serialize($value):$value);
|
||||||
$dbvalue = (is_bool($value) ? intval($value) : $value);
|
$dbvalue = (is_bool($dbvalue) ? intval($dbvalue) : $dbvalue);
|
||||||
|
|
||||||
if(get_config($family,$key,true) === false) {
|
if(get_config($family,$key,true) === false) {
|
||||||
$a->config[$family][$key] = $value;
|
$a->config[$family][$key] = $value;
|
||||||
$ret = q("INSERT INTO `config` ( `cat`, `k`, `v` ) VALUES ( '%s', '%s', '%s' ) ",
|
$ret = q("INSERT INTO `config` ( `cat`, `k`, `v` ) VALUES ( '%s', '%s', '%s' ) ",
|
||||||
|
|
|
||||||
|
|
@ -1010,7 +1010,7 @@ function tag_deliver($uid,$item_id) {
|
||||||
'otype' => 'item'
|
'otype' => 'item'
|
||||||
));
|
));
|
||||||
|
|
||||||
if((! $community_page) && (! prvgroup))
|
if((! $community_page) && (! $prvgroup))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -71,6 +71,7 @@ function poco_load($cid,$uid = 0,$zcid = 0,$url = null) {
|
||||||
|
|
||||||
$name = $entry->displayName;
|
$name = $entry->displayName;
|
||||||
|
|
||||||
|
if(isset($entry->urls)) {
|
||||||
foreach($entry->urls as $url) {
|
foreach($entry->urls as $url) {
|
||||||
if($url->type == 'profile') {
|
if($url->type == 'profile') {
|
||||||
$profile_url = $url->value;
|
$profile_url = $url->value;
|
||||||
|
|
@ -81,12 +82,15 @@ function poco_load($cid,$uid = 0,$zcid = 0,$url = null) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
if(isset($entry->photos)) {
|
||||||
foreach($entry->photos as $photo) {
|
foreach($entry->photos as $photo) {
|
||||||
if($photo->type == 'profile') {
|
if($photo->type == 'profile') {
|
||||||
$profile_photo = $photo->value;
|
$profile_photo = $photo->value;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if((! $name) || (! $profile_url) || (! $profile_photo))
|
if((! $name) || (! $profile_url) || (! $profile_photo))
|
||||||
continue;
|
continue;
|
||||||
|
|
|
||||||
|
|
@ -117,6 +117,9 @@
|
||||||
|
|
||||||
/* nav update event */
|
/* nav update event */
|
||||||
$('nav').bind('nav-update', function(e,data){;
|
$('nav').bind('nav-update', function(e,data){;
|
||||||
|
var invalid = $(data).find('invalid').text();
|
||||||
|
if(invalid == 1) { window.location.href=window.location.href }
|
||||||
|
|
||||||
var net = $(data).find('net').text();
|
var net = $(data).find('net').text();
|
||||||
if(net == 0) { net = ''; $('#net-update').removeClass('show') } else { $('#net-update').addClass('show') }
|
if(net == 0) { net = ''; $('#net-update').removeClass('show') } else { $('#net-update').addClass('show') }
|
||||||
$('#net-update').html(net);
|
$('#net-update').html(net);
|
||||||
|
|
@ -211,7 +214,8 @@
|
||||||
function NavUpdate() {
|
function NavUpdate() {
|
||||||
|
|
||||||
if(! stopped) {
|
if(! stopped) {
|
||||||
$.get("ping",function(data) {
|
var pingCmd = 'ping' + ((localUser != 0) ? '?f=&uid=' + localUser : '');
|
||||||
|
$.get(pingCmd,function(data) {
|
||||||
$(data).find('result').each(function() {
|
$(data).find('result').each(function() {
|
||||||
// send nav-update event
|
// send nav-update event
|
||||||
$('nav').trigger('nav-update', this);
|
$('nav').trigger('nav-update', this);
|
||||||
|
|
|
||||||
|
|
@ -115,7 +115,7 @@ function admin_content(&$a) {
|
||||||
$aside['logs'] = Array($a->get_baseurl(true)."/admin/logs/", t("Logs"), "logs");
|
$aside['logs'] = Array($a->get_baseurl(true)."/admin/logs/", t("Logs"), "logs");
|
||||||
|
|
||||||
$t = get_markup_template("admin_aside.tpl");
|
$t = get_markup_template("admin_aside.tpl");
|
||||||
$a->page['aside'] = replace_macros( $t, array(
|
$a->page['aside'] .= replace_macros( $t, array(
|
||||||
'$admin' => $aside,
|
'$admin' => $aside,
|
||||||
'$h_pending' => t('User registrations waiting for confirmation'),
|
'$h_pending' => t('User registrations waiting for confirmation'),
|
||||||
'$admurl'=> $a->get_baseurl(true)."/admin/"
|
'$admurl'=> $a->get_baseurl(true)."/admin/"
|
||||||
|
|
@ -182,6 +182,7 @@ function admin_page_summary(&$a) {
|
||||||
Array( t('Community/Celebrity Account'), 0),
|
Array( t('Community/Celebrity Account'), 0),
|
||||||
Array( t('Automatic Friend Account'), 0)
|
Array( t('Automatic Friend Account'), 0)
|
||||||
);
|
);
|
||||||
|
|
||||||
$users=0;
|
$users=0;
|
||||||
foreach ($r as $u){ $accounts[$u['page-flags']][1] = $u['count']; $users+= $u['count']; }
|
foreach ($r as $u){ $accounts[$u['page-flags']][1] = $u['count']; $users+= $u['count']; }
|
||||||
|
|
||||||
|
|
@ -190,10 +191,22 @@ function admin_page_summary(&$a) {
|
||||||
$r = q("SELECT COUNT(id) as `count` FROM `register`");
|
$r = q("SELECT COUNT(id) as `count` FROM `register`");
|
||||||
$pending = $r[0]['count'];
|
$pending = $r[0]['count'];
|
||||||
|
|
||||||
|
$r = q("select count(*) as total from deliverq where 1");
|
||||||
|
$deliverq = (($r) ? $r[0]['total'] : 0);
|
||||||
|
|
||||||
|
$r = q("select count(*) as total from queue where 1");
|
||||||
|
$queue = (($r) ? $r[0]['total'] : 0);
|
||||||
|
|
||||||
|
// We can do better, but this is a quick queue status
|
||||||
|
|
||||||
|
$queues = array( 'label' => t('Message queues'), 'deliverq' => $deliverq, 'queue' => $queue );
|
||||||
|
|
||||||
|
|
||||||
$t = get_markup_template("admin_summary.tpl");
|
$t = get_markup_template("admin_summary.tpl");
|
||||||
return replace_macros($t, array(
|
return replace_macros($t, array(
|
||||||
'$title' => t('Administration'),
|
'$title' => t('Administration'),
|
||||||
'$page' => t('Summary'),
|
'$page' => t('Summary'),
|
||||||
|
'$queues' => $queues,
|
||||||
'$users' => Array( t('Registered users'), $users),
|
'$users' => Array( t('Registered users'), $users),
|
||||||
'$accounts' => $accounts,
|
'$accounts' => $accounts,
|
||||||
'$pending' => Array( t('Pending registrations'), $pending),
|
'$pending' => Array( t('Pending registrations'), $pending),
|
||||||
|
|
|
||||||
|
|
@ -108,6 +108,10 @@ function network_content(&$a, $update = 0) {
|
||||||
return login(false);
|
return login(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$arr = array('query' => $a->query_string);
|
||||||
|
|
||||||
|
call_hooks('network_content_init', $arr);
|
||||||
|
|
||||||
$o = '';
|
$o = '';
|
||||||
|
|
||||||
// item filter tabs
|
// item filter tabs
|
||||||
|
|
|
||||||
|
|
@ -81,7 +81,7 @@ function notes_content(&$a,$update = false) {
|
||||||
$r = q("SELECT COUNT(*) AS `total`
|
$r = q("SELECT COUNT(*) AS `total`
|
||||||
FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
|
FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
|
||||||
WHERE `item`.`uid` = %d AND `item`.`visible` = 1 and `item`.`moderated` = 0 AND `item`.`deleted` = 0
|
WHERE `item`.`uid` = %d AND `item`.`visible` = 1 and `item`.`moderated` = 0 AND `item`.`deleted` = 0
|
||||||
AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
|
AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 AND `contact`.`self` = 1
|
||||||
AND `item`.`id` = `item`.`parent` AND `item`.`wall` = 0
|
AND `item`.`id` = `item`.`parent` AND `item`.`wall` = 0
|
||||||
$sql_extra ",
|
$sql_extra ",
|
||||||
intval(local_user())
|
intval(local_user())
|
||||||
|
|
@ -96,7 +96,7 @@ function notes_content(&$a,$update = false) {
|
||||||
$r = q("SELECT `item`.`id` AS `item_id`, `contact`.`uid` AS `contact-uid`
|
$r = q("SELECT `item`.`id` AS `item_id`, `contact`.`uid` AS `contact-uid`
|
||||||
FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
|
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
|
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 `contact`.`blocked` = 0 AND `contact`.`pending` = 0 AND `contact`.`self` = 1
|
||||||
AND `item`.`id` = `item`.`parent` AND `item`.`wall` = 0
|
AND `item`.`id` = `item`.`parent` AND `item`.`wall` = 0
|
||||||
$sql_extra
|
$sql_extra
|
||||||
ORDER BY `item`.`created` DESC LIMIT %d ,%d ",
|
ORDER BY `item`.`created` DESC LIMIT %d ,%d ",
|
||||||
|
|
|
||||||
|
|
@ -287,6 +287,7 @@ function photos_post(&$a) {
|
||||||
|
|
||||||
if(($a->argc > 2) && ((x($_POST,'desc') !== false) || (x($_POST,'newtag') !== false)) || (x($_POST,'albname') !== false)) {
|
if(($a->argc > 2) && ((x($_POST,'desc') !== false) || (x($_POST,'newtag') !== false)) || (x($_POST,'albname') !== false)) {
|
||||||
|
|
||||||
|
|
||||||
$desc = ((x($_POST,'desc')) ? notags(trim($_POST['desc'])) : '');
|
$desc = ((x($_POST,'desc')) ? notags(trim($_POST['desc'])) : '');
|
||||||
$rawtags = ((x($_POST,'newtag')) ? notags(trim($_POST['newtag'])) : '');
|
$rawtags = ((x($_POST,'newtag')) ? notags(trim($_POST['newtag'])) : '');
|
||||||
$item_id = ((x($_POST,'item_id')) ? intval($_POST['item_id']) : 0);
|
$item_id = ((x($_POST,'item_id')) ? intval($_POST['item_id']) : 0);
|
||||||
|
|
@ -302,6 +303,60 @@ function photos_post(&$a) {
|
||||||
$albname = datetime_convert('UTC',date_default_timezone_get(),'now', 'Y');
|
$albname = datetime_convert('UTC',date_default_timezone_get(),'now', 'Y');
|
||||||
|
|
||||||
|
|
||||||
|
if((x($_POST,'rotate') !== false) && (intval($_POST['rotate']) == 1)) {
|
||||||
|
logger('rotate');
|
||||||
|
|
||||||
|
$r = q("select * from photo where `resource-id` = '%s' and uid = %d and scale = 0 limit 1",
|
||||||
|
dbesc($resource_id),
|
||||||
|
intval($page_owner_uid)
|
||||||
|
);
|
||||||
|
if(count($r)) {
|
||||||
|
$ph = new Photo($r[0]['data']);
|
||||||
|
if($ph->is_valid()) {
|
||||||
|
$ph->rotate(270);
|
||||||
|
|
||||||
|
$width = $ph->getWidth();
|
||||||
|
$height = $ph->getHeight();
|
||||||
|
|
||||||
|
$x = q("update photo set data = '%s', height = %d, width = %d where `resource-id` = '%s' and uid = %d and scale = 0 limit 1",
|
||||||
|
dbesc($ph->imageString()),
|
||||||
|
intval($height),
|
||||||
|
intval($width),
|
||||||
|
dbesc($resource_id),
|
||||||
|
intval($page_owner_uid)
|
||||||
|
);
|
||||||
|
|
||||||
|
if($width > 640 || $height > 640) {
|
||||||
|
$ph->scaleImage(640);
|
||||||
|
$width = $ph->getWidth();
|
||||||
|
$height = $ph->getHeight();
|
||||||
|
|
||||||
|
$x = q("update photo set data = '%s', height = %d, width = %d where `resource-id` = '%s' and uid = %d and scale = 1 limit 1",
|
||||||
|
dbesc($ph->imageString()),
|
||||||
|
intval($height),
|
||||||
|
intval($width),
|
||||||
|
dbesc($resource_id),
|
||||||
|
intval($page_owner_uid)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if($width > 320 || $height > 320) {
|
||||||
|
$ph->scaleImage(320);
|
||||||
|
$width = $ph->getWidth();
|
||||||
|
$height = $ph->getHeight();
|
||||||
|
|
||||||
|
$x = q("update photo set data = '%s', height = %d, width = %d where `resource-id` = '%s' and uid = %d and scale = 2 limit 1",
|
||||||
|
dbesc($ph->imageString()),
|
||||||
|
intval($height),
|
||||||
|
intval($width),
|
||||||
|
dbesc($resource_id),
|
||||||
|
intval($page_owner_uid)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$p = q("SELECT * FROM `photo` WHERE `resource-id` = '%s' AND `uid` = %d ORDER BY `scale` DESC",
|
$p = q("SELECT * FROM `photo` WHERE `resource-id` = '%s' AND `uid` = %d ORDER BY `scale` DESC",
|
||||||
dbesc($resource_id),
|
dbesc($resource_id),
|
||||||
intval($page_owner_uid)
|
intval($page_owner_uid)
|
||||||
|
|
@ -1105,7 +1160,7 @@ function photos_content(&$a) {
|
||||||
$photo = array(
|
$photo = array(
|
||||||
'href' => $a->get_baseurl() . '/photo/' . $hires['resource-id'] . '-' . $hires['scale'] . '.jpg',
|
'href' => $a->get_baseurl() . '/photo/' . $hires['resource-id'] . '-' . $hires['scale'] . '.jpg',
|
||||||
'title'=> t('View Full Size'),
|
'title'=> t('View Full Size'),
|
||||||
'src' => $a->get_baseurl() . '/photo/' . $lores['resource-id'] . '-' . $lores['scale'] . '.jpg'
|
'src' => $a->get_baseurl() . '/photo/' . $lores['resource-id'] . '-' . $lores['scale'] . '.jpg' . '?f=&_u=' . datetime_convert('','','','ymdhis')
|
||||||
);
|
);
|
||||||
|
|
||||||
if($nextlink)
|
if($nextlink)
|
||||||
|
|
@ -1185,6 +1240,7 @@ function photos_content(&$a) {
|
||||||
$edit_tpl = get_markup_template('photo_edit.tpl');
|
$edit_tpl = get_markup_template('photo_edit.tpl');
|
||||||
$edit = replace_macros($edit_tpl, array(
|
$edit = replace_macros($edit_tpl, array(
|
||||||
'$id' => $ph[0]['id'],
|
'$id' => $ph[0]['id'],
|
||||||
|
'$rotate' => t('Rotate CW'),
|
||||||
'$album' => template_escape($ph[0]['album']),
|
'$album' => template_escape($ph[0]['album']),
|
||||||
'$newalbum' => t('New album name'),
|
'$newalbum' => t('New album name'),
|
||||||
'$nickname' => $a->data['user']['nickname'],
|
'$nickname' => $a->data['user']['nickname'],
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,16 @@ function ping_init(&$a) {
|
||||||
<result>";
|
<result>";
|
||||||
|
|
||||||
$xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
|
$xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
|
||||||
|
|
||||||
if(local_user()){
|
if(local_user()){
|
||||||
|
|
||||||
|
// Different login session than the page that is calling us.
|
||||||
|
|
||||||
|
if(intval($_GET['uid']) && intval($_GET['uid']) != local_user()) {
|
||||||
|
echo '<invalid>1</invalid></result>';
|
||||||
|
killme();
|
||||||
|
}
|
||||||
|
|
||||||
$firehose = intval(get_pconfig(local_user(),'system','notify_full'));
|
$firehose = intval(get_pconfig(local_user(),'system','notify_full'));
|
||||||
|
|
||||||
$t = q("select count(*) as total from notify where uid = %d and seen = 0",
|
$t = q("select count(*) as total from notify where uid = %d and seen = 0",
|
||||||
|
|
|
||||||
498
util/messages.po
498
util/messages.po
|
|
@ -6,9 +6,9 @@
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: 3.0.1349\n"
|
"Project-Id-Version: 3.0.1350\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2012-05-21 10:00-0700\n"
|
"POT-Creation-Date: 2012-05-22 10:00-0700\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
|
@ -85,7 +85,7 @@ msgid "Return to contact editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/crepair.php:148 ../../mod/settings.php:555
|
#: ../../mod/crepair.php:148 ../../mod/settings.php:555
|
||||||
#: ../../mod/settings.php:581 ../../mod/admin.php:643 ../../mod/admin.php:652
|
#: ../../mod/settings.php:581 ../../mod/admin.php:656 ../../mod/admin.php:665
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -129,9 +129,9 @@ msgstr ""
|
||||||
#: ../../mod/localtime.php:45 ../../mod/contacts.php:322
|
#: ../../mod/localtime.php:45 ../../mod/contacts.php:322
|
||||||
#: ../../mod/settings.php:553 ../../mod/settings.php:699
|
#: ../../mod/settings.php:553 ../../mod/settings.php:699
|
||||||
#: ../../mod/settings.php:760 ../../mod/settings.php:964
|
#: ../../mod/settings.php:760 ../../mod/settings.php:964
|
||||||
#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:404
|
#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:417
|
||||||
#: ../../mod/admin.php:640 ../../mod/admin.php:776 ../../mod/admin.php:975
|
#: ../../mod/admin.php:653 ../../mod/admin.php:789 ../../mod/admin.php:988
|
||||||
#: ../../mod/admin.php:1062 ../../mod/profiles.php:534
|
#: ../../mod/admin.php:1075 ../../mod/profiles.php:534
|
||||||
#: ../../mod/invite.php:119 ../../addon/facebook/facebook.php:605
|
#: ../../mod/invite.php:119 ../../addon/facebook/facebook.php:605
|
||||||
#: ../../addon/yourls/yourls.php:76 ../../addon/ljpost/ljpost.php:93
|
#: ../../addon/yourls/yourls.php:76 ../../addon/ljpost/ljpost.php:93
|
||||||
#: ../../addon/nsfw/nsfw.php:57 ../../addon/planets/planets.php:158
|
#: ../../addon/nsfw/nsfw.php:57 ../../addon/planets/planets.php:158
|
||||||
|
|
@ -161,7 +161,7 @@ msgstr ""
|
||||||
#: ../../view/theme/diabook/theme.php:752
|
#: ../../view/theme/diabook/theme.php:752
|
||||||
#: ../../view/theme/diabook/config.php:190
|
#: ../../view/theme/diabook/config.php:190
|
||||||
#: ../../view/theme/quattro/config.php:52 ../../view/theme/dispy/config.php:70
|
#: ../../view/theme/quattro/config.php:52 ../../view/theme/dispy/config.php:70
|
||||||
#: ../../include/conversation.php:558
|
#: ../../include/conversation.php:559
|
||||||
msgid "Submit"
|
msgid "Submit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -215,7 +215,7 @@ msgstr ""
|
||||||
msgid "Edit event"
|
msgid "Edit event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/events.php:300 ../../include/text.php:1054
|
#: ../../mod/events.php:300 ../../include/text.php:1060
|
||||||
msgid "link to source"
|
msgid "link to source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -397,7 +397,7 @@ msgstr ""
|
||||||
|
|
||||||
#: ../../mod/photos.php:528 ../../mod/like.php:127 ../../mod/tagger.php:70
|
#: ../../mod/photos.php:528 ../../mod/like.php:127 ../../mod/tagger.php:70
|
||||||
#: ../../addon/communityhome/communityhome.php:163
|
#: ../../addon/communityhome/communityhome.php:163
|
||||||
#: ../../view/theme/diabook/theme.php:565 ../../include/text.php:1305
|
#: ../../view/theme/diabook/theme.php:565 ../../include/text.php:1311
|
||||||
#: ../../include/diaspora.php:1662 ../../include/conversation.php:53
|
#: ../../include/diaspora.php:1662 ../../include/conversation.php:53
|
||||||
#: ../../include/conversation.php:126
|
#: ../../include/conversation.php:126
|
||||||
msgid "photo"
|
msgid "photo"
|
||||||
|
|
@ -487,7 +487,7 @@ msgstr ""
|
||||||
msgid "Use as profile photo"
|
msgid "Use as profile photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/photos.php:1085 ../../include/conversation.php:483
|
#: ../../mod/photos.php:1085 ../../include/conversation.php:484
|
||||||
msgid "Private Message"
|
msgid "Private Message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -519,44 +519,44 @@ msgstr ""
|
||||||
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/photos.php:1218 ../../include/conversation.php:532
|
#: ../../mod/photos.php:1218 ../../include/conversation.php:533
|
||||||
msgid "I like this (toggle)"
|
msgid "I like this (toggle)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/photos.php:1219 ../../include/conversation.php:533
|
#: ../../mod/photos.php:1219 ../../include/conversation.php:534
|
||||||
msgid "I don't like this (toggle)"
|
msgid "I don't like this (toggle)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/photos.php:1220 ../../include/conversation.php:967
|
#: ../../mod/photos.php:1220 ../../include/conversation.php:968
|
||||||
msgid "Share"
|
msgid "Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/photos.php:1221 ../../mod/editpost.php:104
|
#: ../../mod/photos.php:1221 ../../mod/editpost.php:104
|
||||||
#: ../../mod/wallmessage.php:145 ../../mod/message.php:214
|
#: ../../mod/wallmessage.php:145 ../../mod/message.php:214
|
||||||
#: ../../mod/message.php:408 ../../include/conversation.php:364
|
#: ../../mod/message.php:408 ../../include/conversation.php:365
|
||||||
#: ../../include/conversation.php:709 ../../include/conversation.php:986
|
#: ../../include/conversation.php:710 ../../include/conversation.php:987
|
||||||
msgid "Please wait"
|
msgid "Please wait"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/photos.php:1237 ../../mod/photos.php:1277
|
#: ../../mod/photos.php:1237 ../../mod/photos.php:1277
|
||||||
#: ../../mod/photos.php:1308 ../../include/conversation.php:555
|
#: ../../mod/photos.php:1308 ../../include/conversation.php:556
|
||||||
msgid "This is you"
|
msgid "This is you"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/photos.php:1239 ../../mod/photos.php:1279
|
#: ../../mod/photos.php:1239 ../../mod/photos.php:1279
|
||||||
#: ../../mod/photos.php:1310 ../../include/conversation.php:557
|
#: ../../mod/photos.php:1310 ../../include/conversation.php:558
|
||||||
#: ../../boot.php:516
|
#: ../../boot.php:516
|
||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/photos.php:1241 ../../mod/editpost.php:125
|
#: ../../mod/photos.php:1241 ../../mod/editpost.php:125
|
||||||
#: ../../include/conversation.php:567 ../../include/conversation.php:1004
|
#: ../../include/conversation.php:568 ../../include/conversation.php:1005
|
||||||
msgid "Preview"
|
msgid "Preview"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/photos.php:1338 ../../mod/settings.php:616
|
#: ../../mod/photos.php:1338 ../../mod/settings.php:616
|
||||||
#: ../../mod/settings.php:697 ../../mod/group.php:168 ../../mod/admin.php:647
|
#: ../../mod/settings.php:697 ../../mod/group.php:168 ../../mod/admin.php:660
|
||||||
#: ../../include/conversation.php:321 ../../include/conversation.php:587
|
#: ../../include/conversation.php:322 ../../include/conversation.php:588
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -621,28 +621,28 @@ msgstr ""
|
||||||
msgid "Edit post"
|
msgid "Edit post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/editpost.php:80 ../../include/conversation.php:953
|
#: ../../mod/editpost.php:80 ../../include/conversation.php:954
|
||||||
msgid "Post to Email"
|
msgid "Post to Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/editpost.php:95 ../../mod/settings.php:615
|
#: ../../mod/editpost.php:95 ../../mod/settings.php:615
|
||||||
#: ../../include/conversation.php:574
|
#: ../../include/conversation.php:575
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/editpost.php:96 ../../mod/wallmessage.php:143
|
#: ../../mod/editpost.php:96 ../../mod/wallmessage.php:143
|
||||||
#: ../../mod/message.php:212 ../../mod/message.php:406
|
#: ../../mod/message.php:212 ../../mod/message.php:406
|
||||||
#: ../../include/conversation.php:968
|
#: ../../include/conversation.php:969
|
||||||
msgid "Upload photo"
|
msgid "Upload photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/editpost.php:97 ../../include/conversation.php:970
|
#: ../../mod/editpost.php:97 ../../include/conversation.php:971
|
||||||
msgid "Attach file"
|
msgid "Attach file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/editpost.php:98 ../../mod/wallmessage.php:144
|
#: ../../mod/editpost.php:98 ../../mod/wallmessage.php:144
|
||||||
#: ../../mod/message.php:213 ../../mod/message.php:407
|
#: ../../mod/message.php:213 ../../mod/message.php:407
|
||||||
#: ../../include/conversation.php:972
|
#: ../../include/conversation.php:973
|
||||||
msgid "Insert web link"
|
msgid "Insert web link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -658,35 +658,35 @@ msgstr ""
|
||||||
msgid "Insert Vorbis [.ogg] audio"
|
msgid "Insert Vorbis [.ogg] audio"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/editpost.php:102 ../../include/conversation.php:978
|
#: ../../mod/editpost.php:102 ../../include/conversation.php:979
|
||||||
msgid "Set your location"
|
msgid "Set your location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/editpost.php:103 ../../include/conversation.php:980
|
#: ../../mod/editpost.php:103 ../../include/conversation.php:981
|
||||||
msgid "Clear browser location"
|
msgid "Clear browser location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/editpost.php:105 ../../include/conversation.php:987
|
#: ../../mod/editpost.php:105 ../../include/conversation.php:988
|
||||||
msgid "Permission settings"
|
msgid "Permission settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/editpost.php:113 ../../include/conversation.php:996
|
#: ../../mod/editpost.php:113 ../../include/conversation.php:997
|
||||||
msgid "CC: email addresses"
|
msgid "CC: email addresses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/editpost.php:114 ../../include/conversation.php:997
|
#: ../../mod/editpost.php:114 ../../include/conversation.php:998
|
||||||
msgid "Public post"
|
msgid "Public post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/editpost.php:117 ../../include/conversation.php:983
|
#: ../../mod/editpost.php:117 ../../include/conversation.php:984
|
||||||
msgid "Set title"
|
msgid "Set title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/editpost.php:119 ../../include/conversation.php:985
|
#: ../../mod/editpost.php:119 ../../include/conversation.php:986
|
||||||
msgid "Categories (comma-separated list)"
|
msgid "Categories (comma-separated list)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/editpost.php:120 ../../include/conversation.php:999
|
#: ../../mod/editpost.php:120 ../../include/conversation.php:1000
|
||||||
msgid "Example: bob@example.com, mary@example.com"
|
msgid "Example: bob@example.com, mary@example.com"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1263,7 +1263,7 @@ msgid "if applicable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
|
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
|
||||||
#: ../../mod/admin.php:645
|
#: ../../mod/admin.php:658
|
||||||
msgid "Approve"
|
msgid "Approve"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1464,12 +1464,12 @@ msgid "View all contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/contacts.php:290 ../../mod/contacts.php:347
|
#: ../../mod/contacts.php:290 ../../mod/contacts.php:347
|
||||||
#: ../../mod/admin.php:649
|
#: ../../mod/admin.php:662
|
||||||
msgid "Unblock"
|
msgid "Unblock"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/contacts.php:290 ../../mod/contacts.php:347
|
#: ../../mod/contacts.php:290 ../../mod/contacts.php:347
|
||||||
#: ../../mod/admin.php:648
|
#: ../../mod/admin.php:661
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1562,7 +1562,7 @@ msgstr ""
|
||||||
msgid "Update public posts"
|
msgid "Update public posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/contacts.php:344 ../../mod/admin.php:1120
|
#: ../../mod/contacts.php:344 ../../mod/admin.php:1133
|
||||||
msgid "Update now"
|
msgid "Update now"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1775,7 +1775,7 @@ msgstr ""
|
||||||
msgid "Remove account"
|
msgid "Remove account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:88 ../../mod/admin.php:735 ../../mod/admin.php:940
|
#: ../../mod/settings.php:88 ../../mod/admin.php:748 ../../mod/admin.php:953
|
||||||
#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:638
|
#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:638
|
||||||
#: ../../view/theme/diabook/theme.php:768 ../../include/nav.php:137
|
#: ../../view/theme/diabook/theme.php:768 ../../include/nav.php:137
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
|
|
@ -2011,7 +2011,7 @@ msgstr ""
|
||||||
msgid "Don't show emoticons"
|
msgid "Don't show emoticons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:835 ../../mod/admin.php:180 ../../mod/admin.php:621
|
#: ../../mod/settings.php:835 ../../mod/admin.php:180 ../../mod/admin.php:634
|
||||||
msgid "Normal Account"
|
msgid "Normal Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2019,7 +2019,7 @@ msgstr ""
|
||||||
msgid "This account is a normal personal profile"
|
msgid "This account is a normal personal profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:839 ../../mod/admin.php:181 ../../mod/admin.php:622
|
#: ../../mod/settings.php:839 ../../mod/admin.php:181 ../../mod/admin.php:635
|
||||||
msgid "Soapbox Account"
|
msgid "Soapbox Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2027,7 +2027,7 @@ msgstr ""
|
||||||
msgid "Automatically approve all connection/friend requests as read-only fans"
|
msgid "Automatically approve all connection/friend requests as read-only fans"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:843 ../../mod/admin.php:182 ../../mod/admin.php:623
|
#: ../../mod/settings.php:843 ../../mod/admin.php:182 ../../mod/admin.php:636
|
||||||
msgid "Community/Celebrity Account"
|
msgid "Community/Celebrity Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2035,7 +2035,7 @@ msgstr ""
|
||||||
msgid "Automatically approve all connection/friend requests as read-write fans"
|
msgid "Automatically approve all connection/friend requests as read-write fans"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/settings.php:847 ../../mod/admin.php:183 ../../mod/admin.php:624
|
#: ../../mod/settings.php:847 ../../mod/admin.php:183 ../../mod/admin.php:637
|
||||||
msgid "Automatic Friend Account"
|
msgid "Automatic Friend Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2410,7 +2410,7 @@ msgid "No recipient."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/wallmessage.php:124 ../../mod/message.php:171
|
#: ../../mod/wallmessage.php:124 ../../mod/message.php:171
|
||||||
#: ../../include/conversation.php:921
|
#: ../../include/conversation.php:922
|
||||||
msgid "Please enter a link URL:"
|
msgid "Please enter a link URL:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2769,7 +2769,7 @@ msgstr ""
|
||||||
msgid "Your invitation ID: "
|
msgid "Your invitation ID: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/register.php:532 ../../mod/admin.php:405
|
#: ../../mod/register.php:532 ../../mod/admin.php:418
|
||||||
msgid "Registration"
|
msgid "Registration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2825,7 +2825,7 @@ msgid "%1$s doesn't like %2$s's %3$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:156
|
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:156
|
||||||
#: ../../mod/admin.php:684 ../../mod/admin.php:883 ../../mod/display.php:37
|
#: ../../mod/admin.php:697 ../../mod/admin.php:896 ../../mod/display.php:37
|
||||||
#: ../../mod/display.php:142 ../../include/items.php:3096
|
#: ../../mod/display.php:142 ../../include/items.php:3096
|
||||||
msgid "Item not found."
|
msgid "Item not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2864,34 +2864,34 @@ msgstr ""
|
||||||
msgid "Empty post discarded."
|
msgid "Empty post discarded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/item.php:381 ../../mod/wall_upload.php:99
|
#: ../../mod/item.php:377 ../../mod/wall_upload.php:99
|
||||||
#: ../../mod/wall_upload.php:108 ../../mod/wall_upload.php:115
|
#: ../../mod/wall_upload.php:108 ../../mod/wall_upload.php:115
|
||||||
#: ../../include/message.php:144
|
#: ../../include/message.php:144
|
||||||
msgid "Wall Photos"
|
msgid "Wall Photos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/item.php:790
|
#: ../../mod/item.php:786
|
||||||
msgid "System error. Post not saved."
|
msgid "System error. Post not saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/item.php:815
|
#: ../../mod/item.php:811
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"This message was sent to you by %s, a member of the Friendica social network."
|
"This message was sent to you by %s, a member of the Friendica social network."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/item.php:817
|
#: ../../mod/item.php:813
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "You may visit them online at %s"
|
msgid "You may visit them online at %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/item.php:818
|
#: ../../mod/item.php:814
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please contact the sender by replying to this post if you do not wish to "
|
"Please contact the sender by replying to this post if you do not wish to "
|
||||||
"receive these messages."
|
"receive these messages."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/item.php:820
|
#: ../../mod/item.php:816
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s posted an update."
|
msgid "%s posted an update."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -3056,19 +3056,19 @@ msgstr ""
|
||||||
msgid "Theme settings updated."
|
msgid "Theme settings updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:96 ../../mod/admin.php:403
|
#: ../../mod/admin.php:96 ../../mod/admin.php:416
|
||||||
msgid "Site"
|
msgid "Site"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:97 ../../mod/admin.php:639 ../../mod/admin.php:651
|
#: ../../mod/admin.php:97 ../../mod/admin.php:652 ../../mod/admin.php:664
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:98 ../../mod/admin.php:733 ../../mod/admin.php:775
|
#: ../../mod/admin.php:98 ../../mod/admin.php:746 ../../mod/admin.php:788
|
||||||
msgid "Plugins"
|
msgid "Plugins"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:99 ../../mod/admin.php:938 ../../mod/admin.php:974
|
#: ../../mod/admin.php:99 ../../mod/admin.php:951 ../../mod/admin.php:987
|
||||||
msgid "Themes"
|
msgid "Themes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3080,7 +3080,7 @@ msgstr ""
|
||||||
msgid "Software Update"
|
msgid "Software Update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:115 ../../mod/admin.php:1061
|
#: ../../mod/admin.php:115 ../../mod/admin.php:1074
|
||||||
msgid "Logs"
|
msgid "Logs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3088,529 +3088,533 @@ msgstr ""
|
||||||
msgid "User registrations waiting for confirmation"
|
msgid "User registrations waiting for confirmation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:195 ../../mod/admin.php:402 ../../mod/admin.php:638
|
#: ../../mod/admin.php:202
|
||||||
#: ../../mod/admin.php:732 ../../mod/admin.php:774 ../../mod/admin.php:937
|
msgid "Message queues"
|
||||||
#: ../../mod/admin.php:973 ../../mod/admin.php:1060
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../mod/admin.php:207 ../../mod/admin.php:415 ../../mod/admin.php:651
|
||||||
|
#: ../../mod/admin.php:745 ../../mod/admin.php:787 ../../mod/admin.php:950
|
||||||
|
#: ../../mod/admin.php:986 ../../mod/admin.php:1073
|
||||||
msgid "Administration"
|
msgid "Administration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:196
|
#: ../../mod/admin.php:208
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:197
|
#: ../../mod/admin.php:210
|
||||||
msgid "Registered users"
|
msgid "Registered users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:199
|
#: ../../mod/admin.php:212
|
||||||
msgid "Pending registrations"
|
msgid "Pending registrations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:200
|
#: ../../mod/admin.php:213
|
||||||
msgid "Version"
|
msgid "Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:202
|
#: ../../mod/admin.php:215
|
||||||
msgid "Active plugins"
|
msgid "Active plugins"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:341
|
#: ../../mod/admin.php:354
|
||||||
msgid "Site settings updated."
|
msgid "Site settings updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:389
|
#: ../../mod/admin.php:402
|
||||||
msgid "Closed"
|
msgid "Closed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:390
|
#: ../../mod/admin.php:403
|
||||||
msgid "Requires approval"
|
msgid "Requires approval"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:391
|
#: ../../mod/admin.php:404
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:395
|
#: ../../mod/admin.php:408
|
||||||
msgid "No SSL policy, links will track page SSL state"
|
msgid "No SSL policy, links will track page SSL state"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:396
|
#: ../../mod/admin.php:409
|
||||||
msgid "Force all links to use SSL"
|
msgid "Force all links to use SSL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:397
|
#: ../../mod/admin.php:410
|
||||||
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
|
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:406
|
#: ../../mod/admin.php:419
|
||||||
msgid "File upload"
|
msgid "File upload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:407
|
#: ../../mod/admin.php:420
|
||||||
msgid "Policies"
|
msgid "Policies"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:408
|
#: ../../mod/admin.php:421
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:412 ../../addon/statusnet/statusnet.php:552
|
#: ../../mod/admin.php:425 ../../addon/statusnet/statusnet.php:552
|
||||||
msgid "Site name"
|
msgid "Site name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:413
|
#: ../../mod/admin.php:426
|
||||||
msgid "Banner/Logo"
|
msgid "Banner/Logo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:414
|
#: ../../mod/admin.php:427
|
||||||
msgid "System language"
|
msgid "System language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:415
|
#: ../../mod/admin.php:428
|
||||||
msgid "System theme"
|
msgid "System theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:415
|
#: ../../mod/admin.php:428
|
||||||
msgid ""
|
msgid ""
|
||||||
"Default system theme - may be over-ridden by user profiles - <a href='#' "
|
"Default system theme - may be over-ridden by user profiles - <a href='#' "
|
||||||
"id='cnftheme'>change theme settings</a>"
|
"id='cnftheme'>change theme settings</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:416
|
#: ../../mod/admin.php:429
|
||||||
msgid "SSL link policy"
|
msgid "SSL link policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:416
|
#: ../../mod/admin.php:429
|
||||||
msgid "Determines whether generated links should be forced to use SSL"
|
msgid "Determines whether generated links should be forced to use SSL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:417
|
#: ../../mod/admin.php:430
|
||||||
msgid "Maximum image size"
|
msgid "Maximum image size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:417
|
#: ../../mod/admin.php:430
|
||||||
msgid ""
|
msgid ""
|
||||||
"Maximum size in bytes of uploaded images. Default is 0, which means no "
|
"Maximum size in bytes of uploaded images. Default is 0, which means no "
|
||||||
"limits."
|
"limits."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:419
|
#: ../../mod/admin.php:432
|
||||||
msgid "Register policy"
|
msgid "Register policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:420
|
#: ../../mod/admin.php:433
|
||||||
msgid "Register text"
|
msgid "Register text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:420
|
#: ../../mod/admin.php:433
|
||||||
msgid "Will be displayed prominently on the registration page."
|
msgid "Will be displayed prominently on the registration page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:421
|
#: ../../mod/admin.php:434
|
||||||
msgid "Accounts abandoned after x days"
|
msgid "Accounts abandoned after x days"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:421
|
#: ../../mod/admin.php:434
|
||||||
msgid ""
|
msgid ""
|
||||||
"Will not waste system resources polling external sites for abandonded "
|
"Will not waste system resources polling external sites for abandonded "
|
||||||
"accounts. Enter 0 for no time limit."
|
"accounts. Enter 0 for no time limit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:422
|
#: ../../mod/admin.php:435
|
||||||
msgid "Allowed friend domains"
|
msgid "Allowed friend domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:422
|
#: ../../mod/admin.php:435
|
||||||
msgid ""
|
msgid ""
|
||||||
"Comma separated list of domains which are allowed to establish friendships "
|
"Comma separated list of domains which are allowed to establish friendships "
|
||||||
"with this site. Wildcards are accepted. Empty to allow any domains"
|
"with this site. Wildcards are accepted. Empty to allow any domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:423
|
#: ../../mod/admin.php:436
|
||||||
msgid "Allowed email domains"
|
msgid "Allowed email domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:423
|
#: ../../mod/admin.php:436
|
||||||
msgid ""
|
msgid ""
|
||||||
"Comma separated list of domains which are allowed in email addresses for "
|
"Comma separated list of domains which are allowed in email addresses for "
|
||||||
"registrations to this site. Wildcards are accepted. Empty to allow any "
|
"registrations to this site. Wildcards are accepted. Empty to allow any "
|
||||||
"domains"
|
"domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:424
|
#: ../../mod/admin.php:437
|
||||||
msgid "Block public"
|
msgid "Block public"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:424
|
#: ../../mod/admin.php:437
|
||||||
msgid ""
|
msgid ""
|
||||||
"Check to block public access to all otherwise public personal pages on this "
|
"Check to block public access to all otherwise public personal pages on this "
|
||||||
"site unless you are currently logged in."
|
"site unless you are currently logged in."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:425
|
#: ../../mod/admin.php:438
|
||||||
msgid "Force publish"
|
msgid "Force publish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:425
|
#: ../../mod/admin.php:438
|
||||||
msgid ""
|
msgid ""
|
||||||
"Check to force all profiles on this site to be listed in the site directory."
|
"Check to force all profiles on this site to be listed in the site directory."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:426
|
#: ../../mod/admin.php:439
|
||||||
msgid "Global directory update URL"
|
msgid "Global directory update URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:426
|
#: ../../mod/admin.php:439
|
||||||
msgid ""
|
msgid ""
|
||||||
"URL to update the global directory. If this is not set, the global directory "
|
"URL to update the global directory. If this is not set, the global directory "
|
||||||
"is completely unavailable to the application."
|
"is completely unavailable to the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:428
|
#: ../../mod/admin.php:441
|
||||||
msgid "Block multiple registrations"
|
msgid "Block multiple registrations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:428
|
#: ../../mod/admin.php:441
|
||||||
msgid "Disallow users to register additional accounts for use as pages."
|
msgid "Disallow users to register additional accounts for use as pages."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:429
|
#: ../../mod/admin.php:442
|
||||||
msgid "OpenID support"
|
msgid "OpenID support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:429
|
#: ../../mod/admin.php:442
|
||||||
msgid "OpenID support for registration and logins."
|
msgid "OpenID support for registration and logins."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:430
|
#: ../../mod/admin.php:443
|
||||||
msgid "Fullname check"
|
msgid "Fullname check"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:430
|
#: ../../mod/admin.php:443
|
||||||
msgid ""
|
msgid ""
|
||||||
"Force users to register with a space between firstname and lastname in Full "
|
"Force users to register with a space between firstname and lastname in Full "
|
||||||
"name, as an antispam measure"
|
"name, as an antispam measure"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:431
|
#: ../../mod/admin.php:444
|
||||||
msgid "UTF-8 Regular expressions"
|
msgid "UTF-8 Regular expressions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:431
|
#: ../../mod/admin.php:444
|
||||||
msgid "Use PHP UTF8 regular expressions"
|
msgid "Use PHP UTF8 regular expressions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:432
|
#: ../../mod/admin.php:445
|
||||||
msgid "Show Community Page"
|
msgid "Show Community Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:432
|
#: ../../mod/admin.php:445
|
||||||
msgid ""
|
msgid ""
|
||||||
"Display a Community page showing all recent public postings on this site."
|
"Display a Community page showing all recent public postings on this site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:433
|
#: ../../mod/admin.php:446
|
||||||
msgid "Enable OStatus support"
|
msgid "Enable OStatus support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:433
|
#: ../../mod/admin.php:446
|
||||||
msgid ""
|
msgid ""
|
||||||
"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
|
"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
|
||||||
"communications in OStatus are public, so privacy warnings will be "
|
"communications in OStatus are public, so privacy warnings will be "
|
||||||
"occasionally displayed."
|
"occasionally displayed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:434
|
#: ../../mod/admin.php:447
|
||||||
msgid "Enable Diaspora support"
|
msgid "Enable Diaspora support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:434
|
#: ../../mod/admin.php:447
|
||||||
msgid "Provide built-in Diaspora network compatibility."
|
msgid "Provide built-in Diaspora network compatibility."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:435
|
#: ../../mod/admin.php:448
|
||||||
msgid "Only allow Friendica contacts"
|
msgid "Only allow Friendica contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:435
|
#: ../../mod/admin.php:448
|
||||||
msgid ""
|
msgid ""
|
||||||
"All contacts must use Friendica protocols. All other built-in communication "
|
"All contacts must use Friendica protocols. All other built-in communication "
|
||||||
"protocols disabled."
|
"protocols disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:436
|
#: ../../mod/admin.php:449
|
||||||
msgid "Verify SSL"
|
msgid "Verify SSL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:436
|
#: ../../mod/admin.php:449
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you wish, you can turn on strict certificate checking. This will mean you "
|
"If you wish, you can turn on strict certificate checking. This will mean you "
|
||||||
"cannot connect (at all) to self-signed SSL sites."
|
"cannot connect (at all) to self-signed SSL sites."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:437
|
#: ../../mod/admin.php:450
|
||||||
msgid "Proxy user"
|
msgid "Proxy user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:438
|
#: ../../mod/admin.php:451
|
||||||
msgid "Proxy URL"
|
msgid "Proxy URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:439
|
#: ../../mod/admin.php:452
|
||||||
msgid "Network timeout"
|
msgid "Network timeout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:439
|
#: ../../mod/admin.php:452
|
||||||
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
|
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:440
|
#: ../../mod/admin.php:453
|
||||||
msgid "Delivery interval"
|
msgid "Delivery interval"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:440
|
#: ../../mod/admin.php:453
|
||||||
msgid ""
|
msgid ""
|
||||||
"Delay background delivery processes by this many seconds to reduce system "
|
"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 "
|
"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
|
||||||
"for large dedicated servers."
|
"for large dedicated servers."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:441
|
#: ../../mod/admin.php:454
|
||||||
msgid "Poll interval"
|
msgid "Poll interval"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:441
|
#: ../../mod/admin.php:454
|
||||||
msgid ""
|
msgid ""
|
||||||
"Delay background polling processes by this many seconds to reduce system "
|
"Delay background polling processes by this many seconds to reduce system "
|
||||||
"load. If 0, use delivery interval."
|
"load. If 0, use delivery interval."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:442
|
#: ../../mod/admin.php:455
|
||||||
msgid "Maximum Load Average"
|
msgid "Maximum Load Average"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:442
|
#: ../../mod/admin.php:455
|
||||||
msgid ""
|
msgid ""
|
||||||
"Maximum system load before delivery and poll processes are deferred - "
|
"Maximum system load before delivery and poll processes are deferred - "
|
||||||
"default 50."
|
"default 50."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:456
|
#: ../../mod/admin.php:469
|
||||||
msgid "Update has been marked successful"
|
msgid "Update has been marked successful"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:466
|
#: ../../mod/admin.php:479
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Executing %s failed. Check system logs."
|
msgid "Executing %s failed. Check system logs."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:469
|
#: ../../mod/admin.php:482
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Update %s was successfully applied."
|
msgid "Update %s was successfully applied."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:473
|
#: ../../mod/admin.php:486
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Update %s did not return a status. Unknown if it succeeded."
|
msgid "Update %s did not return a status. Unknown if it succeeded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:476
|
#: ../../mod/admin.php:489
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Update function %s could not be found."
|
msgid "Update function %s could not be found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:491
|
#: ../../mod/admin.php:504
|
||||||
msgid "No failed updates."
|
msgid "No failed updates."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:495
|
#: ../../mod/admin.php:508
|
||||||
msgid "Failed Updates"
|
msgid "Failed Updates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:496
|
#: ../../mod/admin.php:509
|
||||||
msgid ""
|
msgid ""
|
||||||
"This does not include updates prior to 1139, which did not return a status."
|
"This does not include updates prior to 1139, which did not return a status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:497
|
#: ../../mod/admin.php:510
|
||||||
msgid "Mark success (if update was manually applied)"
|
msgid "Mark success (if update was manually applied)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:498
|
#: ../../mod/admin.php:511
|
||||||
msgid "Attempt to execute this update step automatically"
|
msgid "Attempt to execute this update step automatically"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:523
|
#: ../../mod/admin.php:536
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s user blocked/unblocked"
|
msgid "%s user blocked/unblocked"
|
||||||
msgid_plural "%s users blocked/unblocked"
|
msgid_plural "%s users blocked/unblocked"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:530
|
#: ../../mod/admin.php:543
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s user deleted"
|
msgid "%s user deleted"
|
||||||
msgid_plural "%s users deleted"
|
msgid_plural "%s users deleted"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:569
|
#: ../../mod/admin.php:582
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "User '%s' deleted"
|
msgid "User '%s' deleted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:577
|
#: ../../mod/admin.php:590
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "User '%s' unblocked"
|
msgid "User '%s' unblocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:577
|
#: ../../mod/admin.php:590
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "User '%s' blocked"
|
msgid "User '%s' blocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:641
|
#: ../../mod/admin.php:654
|
||||||
msgid "select all"
|
msgid "select all"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:642
|
#: ../../mod/admin.php:655
|
||||||
msgid "User registrations waiting for confirm"
|
msgid "User registrations waiting for confirm"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:643
|
#: ../../mod/admin.php:656
|
||||||
msgid "Request date"
|
msgid "Request date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:643 ../../mod/admin.php:652
|
#: ../../mod/admin.php:656 ../../mod/admin.php:665
|
||||||
#: ../../include/contact_selectors.php:79
|
#: ../../include/contact_selectors.php:79
|
||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:644
|
#: ../../mod/admin.php:657
|
||||||
msgid "No registrations."
|
msgid "No registrations."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:646
|
#: ../../mod/admin.php:659
|
||||||
msgid "Deny"
|
msgid "Deny"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:652
|
#: ../../mod/admin.php:665
|
||||||
msgid "Register date"
|
msgid "Register date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:652
|
#: ../../mod/admin.php:665
|
||||||
msgid "Last login"
|
msgid "Last login"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:652
|
#: ../../mod/admin.php:665
|
||||||
msgid "Last item"
|
msgid "Last item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:652
|
#: ../../mod/admin.php:665
|
||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:654
|
#: ../../mod/admin.php:667
|
||||||
msgid ""
|
msgid ""
|
||||||
"Selected users will be deleted!\\n\\nEverything these users had posted on "
|
"Selected users will be deleted!\\n\\nEverything these users had posted on "
|
||||||
"this site will be permanently deleted!\\n\\nAre you sure?"
|
"this site will be permanently deleted!\\n\\nAre you sure?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:655
|
#: ../../mod/admin.php:668
|
||||||
msgid ""
|
msgid ""
|
||||||
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
|
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
|
||||||
"site will be permanently deleted!\\n\\nAre you sure?"
|
"site will be permanently deleted!\\n\\nAre you sure?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:696
|
#: ../../mod/admin.php:709
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Plugin %s disabled."
|
msgid "Plugin %s disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:700
|
#: ../../mod/admin.php:713
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Plugin %s enabled."
|
msgid "Plugin %s enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:710 ../../mod/admin.php:908
|
#: ../../mod/admin.php:723 ../../mod/admin.php:921
|
||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:712 ../../mod/admin.php:910
|
#: ../../mod/admin.php:725 ../../mod/admin.php:923
|
||||||
msgid "Enable"
|
msgid "Enable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:734 ../../mod/admin.php:939
|
#: ../../mod/admin.php:747 ../../mod/admin.php:952
|
||||||
msgid "Toggle"
|
msgid "Toggle"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:742 ../../mod/admin.php:949
|
#: ../../mod/admin.php:755 ../../mod/admin.php:962
|
||||||
msgid "Author: "
|
msgid "Author: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:743 ../../mod/admin.php:950
|
#: ../../mod/admin.php:756 ../../mod/admin.php:963
|
||||||
msgid "Maintainer: "
|
msgid "Maintainer: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:872
|
#: ../../mod/admin.php:885
|
||||||
msgid "No themes found."
|
msgid "No themes found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:931
|
#: ../../mod/admin.php:944
|
||||||
msgid "Screenshot"
|
msgid "Screenshot"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:979
|
#: ../../mod/admin.php:992
|
||||||
msgid "[Experimental]"
|
msgid "[Experimental]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:980
|
#: ../../mod/admin.php:993
|
||||||
msgid "[Unsupported]"
|
msgid "[Unsupported]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:1007
|
#: ../../mod/admin.php:1020
|
||||||
msgid "Log settings updated."
|
msgid "Log settings updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:1063
|
#: ../../mod/admin.php:1076
|
||||||
msgid "Clear"
|
msgid "Clear"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:1069
|
#: ../../mod/admin.php:1082
|
||||||
msgid "Debugging"
|
msgid "Debugging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:1070
|
#: ../../mod/admin.php:1083
|
||||||
msgid "Log file"
|
msgid "Log file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:1070
|
#: ../../mod/admin.php:1083
|
||||||
msgid ""
|
msgid ""
|
||||||
"Must be writable by web server. Relative to your Friendica top-level "
|
"Must be writable by web server. Relative to your Friendica top-level "
|
||||||
"directory."
|
"directory."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:1071
|
#: ../../mod/admin.php:1084
|
||||||
msgid "Log level"
|
msgid "Log level"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:1121
|
#: ../../mod/admin.php:1134
|
||||||
msgid "Close"
|
msgid "Close"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:1127
|
#: ../../mod/admin.php:1140
|
||||||
msgid "FTP Host"
|
msgid "FTP Host"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:1128
|
#: ../../mod/admin.php:1141
|
||||||
msgid "FTP Path"
|
msgid "FTP Path"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:1129
|
#: ../../mod/admin.php:1142
|
||||||
msgid "FTP User"
|
msgid "FTP User"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/admin.php:1130
|
#: ../../mod/admin.php:1143
|
||||||
msgid "FTP Password"
|
msgid "FTP Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -4047,7 +4051,7 @@ msgstr ""
|
||||||
msgid "Edit visibility"
|
msgid "Edit visibility"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/filer.php:29 ../../include/conversation.php:925
|
#: ../../mod/filer.php:29 ../../include/conversation.php:926
|
||||||
msgid "Save to Folder:"
|
msgid "Save to Folder:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -4650,7 +4654,7 @@ msgid "Forums"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../addon/page/page.php:63 ../../addon/showmore/showmore.php:87
|
#: ../../addon/page/page.php:63 ../../addon/showmore/showmore.php:87
|
||||||
#: ../../include/contact_widgets.php:188 ../../include/conversation.php:469
|
#: ../../include/contact_widgets.php:188 ../../include/conversation.php:470
|
||||||
#: ../../boot.php:517
|
#: ../../boot.php:517
|
||||||
msgid "show more"
|
msgid "show more"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -4695,7 +4699,7 @@ msgid "Latest likes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../addon/communityhome/communityhome.php:155
|
#: ../../addon/communityhome/communityhome.php:155
|
||||||
#: ../../view/theme/diabook/theme.php:557 ../../include/text.php:1303
|
#: ../../view/theme/diabook/theme.php:557 ../../include/text.php:1309
|
||||||
#: ../../include/conversation.php:45 ../../include/conversation.php:118
|
#: ../../include/conversation.php:45 ../../include/conversation.php:118
|
||||||
msgid "event"
|
msgid "event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -6333,51 +6337,51 @@ msgstr ""
|
||||||
msgid "December"
|
msgid "December"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/text.php:919
|
#: ../../include/text.php:920
|
||||||
msgid "bytes"
|
msgid "bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/text.php:934 ../../include/text.php:949
|
#: ../../include/text.php:940 ../../include/text.php:955
|
||||||
msgid "remove"
|
msgid "remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/text.php:934 ../../include/text.php:949
|
#: ../../include/text.php:940 ../../include/text.php:955
|
||||||
msgid "[remove]"
|
msgid "[remove]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/text.php:937
|
#: ../../include/text.php:943
|
||||||
msgid "Categories:"
|
msgid "Categories:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/text.php:952
|
#: ../../include/text.php:958
|
||||||
msgid "Filed under:"
|
msgid "Filed under:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/text.php:968 ../../include/text.php:980
|
#: ../../include/text.php:974 ../../include/text.php:986
|
||||||
msgid "Click to open/close"
|
msgid "Click to open/close"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/text.php:1085
|
#: ../../include/text.php:1091
|
||||||
msgid "default"
|
msgid "default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/text.php:1097
|
#: ../../include/text.php:1103
|
||||||
msgid "Select an alternate language"
|
msgid "Select an alternate language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/text.php:1307
|
#: ../../include/text.php:1313
|
||||||
msgid "activity"
|
msgid "activity"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/text.php:1309
|
#: ../../include/text.php:1315
|
||||||
msgid "comment"
|
msgid "comment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/text.php:1310
|
#: ../../include/text.php:1316
|
||||||
msgid "post"
|
msgid "post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/text.php:1465
|
#: ../../include/text.php:1471
|
||||||
msgid "Item filed"
|
msgid "Item filed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -6951,30 +6955,30 @@ msgstr ""
|
||||||
msgid "stopped following"
|
msgid "stopped following"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/Contact.php:203 ../../include/conversation.php:820
|
#: ../../include/Contact.php:203 ../../include/conversation.php:821
|
||||||
msgid "View Status"
|
msgid "View Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/Contact.php:204 ../../include/conversation.php:821
|
#: ../../include/Contact.php:204 ../../include/conversation.php:822
|
||||||
msgid "View Profile"
|
msgid "View Profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/Contact.php:205 ../../include/conversation.php:822
|
#: ../../include/Contact.php:205 ../../include/conversation.php:823
|
||||||
msgid "View Photos"
|
msgid "View Photos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/Contact.php:206 ../../include/Contact.php:219
|
#: ../../include/Contact.php:206 ../../include/Contact.php:219
|
||||||
#: ../../include/conversation.php:823
|
#: ../../include/conversation.php:824
|
||||||
msgid "Network Posts"
|
msgid "Network Posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/Contact.php:207 ../../include/Contact.php:219
|
#: ../../include/Contact.php:207 ../../include/Contact.php:219
|
||||||
#: ../../include/conversation.php:824
|
#: ../../include/conversation.php:825
|
||||||
msgid "Edit Contact"
|
msgid "Edit Contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/Contact.php:208 ../../include/Contact.php:219
|
#: ../../include/Contact.php:208 ../../include/Contact.php:219
|
||||||
#: ../../include/conversation.php:825
|
#: ../../include/conversation.php:826
|
||||||
msgid "Send PM"
|
msgid "Send PM"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -6987,216 +6991,216 @@ msgstr ""
|
||||||
msgid "%1$s marked %2$s's %3$s as favorite"
|
msgid "%1$s marked %2$s's %3$s as favorite"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:320 ../../include/conversation.php:586
|
#: ../../include/conversation.php:321 ../../include/conversation.php:587
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:337 ../../include/conversation.php:679
|
#: ../../include/conversation.php:338 ../../include/conversation.php:680
|
||||||
#: ../../include/conversation.php:680
|
#: ../../include/conversation.php:681
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "View %s's profile @ %s"
|
msgid "View %s's profile @ %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:347 ../../include/conversation.php:691
|
#: ../../include/conversation.php:348 ../../include/conversation.php:692
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s from %s"
|
msgid "%s from %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:362
|
#: ../../include/conversation.php:363
|
||||||
msgid "View in context"
|
msgid "View in context"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:468
|
#: ../../include/conversation.php:469
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%d comment"
|
msgid "%d comment"
|
||||||
msgid_plural "%d comments"
|
msgid_plural "%d comments"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:532
|
#: ../../include/conversation.php:533
|
||||||
msgid "like"
|
msgid "like"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:533
|
#: ../../include/conversation.php:534
|
||||||
msgid "dislike"
|
msgid "dislike"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:535
|
#: ../../include/conversation.php:536
|
||||||
msgid "Share this"
|
msgid "Share this"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:535
|
#: ../../include/conversation.php:536
|
||||||
msgid "share"
|
msgid "share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:559
|
#: ../../include/conversation.php:560
|
||||||
msgid "Bold"
|
msgid "Bold"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:560
|
#: ../../include/conversation.php:561
|
||||||
msgid "Italic"
|
msgid "Italic"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:561
|
#: ../../include/conversation.php:562
|
||||||
msgid "Underline"
|
msgid "Underline"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:562
|
#: ../../include/conversation.php:563
|
||||||
msgid "Quote"
|
msgid "Quote"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:563
|
#: ../../include/conversation.php:564
|
||||||
msgid "Code"
|
msgid "Code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:564
|
#: ../../include/conversation.php:565
|
||||||
msgid "Image"
|
msgid "Image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:565
|
#: ../../include/conversation.php:566
|
||||||
msgid "Link"
|
msgid "Link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:566
|
#: ../../include/conversation.php:567
|
||||||
msgid "Video"
|
msgid "Video"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:599
|
#: ../../include/conversation.php:600
|
||||||
msgid "add star"
|
msgid "add star"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:600
|
#: ../../include/conversation.php:601
|
||||||
msgid "remove star"
|
msgid "remove star"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:601
|
#: ../../include/conversation.php:602
|
||||||
msgid "toggle star status"
|
msgid "toggle star status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:604
|
#: ../../include/conversation.php:605
|
||||||
msgid "starred"
|
msgid "starred"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:605
|
#: ../../include/conversation.php:606
|
||||||
msgid "add tag"
|
msgid "add tag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:609
|
#: ../../include/conversation.php:610
|
||||||
msgid "save to folder"
|
msgid "save to folder"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:681
|
#: ../../include/conversation.php:682
|
||||||
msgid "to"
|
msgid "to"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:682
|
#: ../../include/conversation.php:683
|
||||||
msgid "Wall-to-Wall"
|
msgid "Wall-to-Wall"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:683
|
#: ../../include/conversation.php:684
|
||||||
msgid "via Wall-To-Wall:"
|
msgid "via Wall-To-Wall:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:728
|
#: ../../include/conversation.php:729
|
||||||
msgid "Delete Selected Items"
|
msgid "Delete Selected Items"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:879
|
#: ../../include/conversation.php:880
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s likes this."
|
msgid "%s likes this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:879
|
#: ../../include/conversation.php:880
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s doesn't like this."
|
msgid "%s doesn't like this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:883
|
#: ../../include/conversation.php:884
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "<span %1$s>%2$d people</span> like this."
|
msgid "<span %1$s>%2$d people</span> like this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:885
|
#: ../../include/conversation.php:886
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "<span %1$s>%2$d people</span> don't like this."
|
msgid "<span %1$s>%2$d people</span> don't like this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:891
|
#: ../../include/conversation.php:892
|
||||||
msgid "and"
|
msgid "and"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:894
|
#: ../../include/conversation.php:895
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ", and %d other people"
|
msgid ", and %d other people"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:895
|
#: ../../include/conversation.php:896
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s like this."
|
msgid "%s like this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:895
|
#: ../../include/conversation.php:896
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s don't like this."
|
msgid "%s don't like this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:920
|
#: ../../include/conversation.php:921
|
||||||
msgid "Visible to <strong>everybody</strong>"
|
msgid "Visible to <strong>everybody</strong>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:922
|
#: ../../include/conversation.php:923
|
||||||
msgid "Please enter a video link/URL:"
|
msgid "Please enter a video link/URL:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:923
|
#: ../../include/conversation.php:924
|
||||||
msgid "Please enter an audio link/URL:"
|
msgid "Please enter an audio link/URL:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:924
|
#: ../../include/conversation.php:925
|
||||||
msgid "Tag term:"
|
msgid "Tag term:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:926
|
#: ../../include/conversation.php:927
|
||||||
msgid "Where are you right now?"
|
msgid "Where are you right now?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:969
|
#: ../../include/conversation.php:970
|
||||||
msgid "upload photo"
|
msgid "upload photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:971
|
#: ../../include/conversation.php:972
|
||||||
msgid "attach file"
|
msgid "attach file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:973
|
#: ../../include/conversation.php:974
|
||||||
msgid "web link"
|
msgid "web link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:974
|
#: ../../include/conversation.php:975
|
||||||
msgid "Insert video link"
|
msgid "Insert video link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:975
|
#: ../../include/conversation.php:976
|
||||||
msgid "video link"
|
msgid "video link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:976
|
#: ../../include/conversation.php:977
|
||||||
msgid "Insert audio link"
|
msgid "Insert audio link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:977
|
#: ../../include/conversation.php:978
|
||||||
msgid "audio link"
|
msgid "audio link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:979
|
#: ../../include/conversation.php:980
|
||||||
msgid "set location"
|
msgid "set location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:981
|
#: ../../include/conversation.php:982
|
||||||
msgid "clear location"
|
msgid "clear location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:988
|
#: ../../include/conversation.php:989
|
||||||
msgid "permissions"
|
msgid "permissions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,10 @@
|
||||||
<div id='adminpage'>
|
<div id='adminpage'>
|
||||||
<h1>$title - $page</h1>
|
<h1>$title - $page</h1>
|
||||||
|
|
||||||
|
<dl>
|
||||||
|
<dt>$queues.label</dt>
|
||||||
|
<dd>$queues.deliverq - $queues.queue</dd>
|
||||||
|
</dl>
|
||||||
<dl>
|
<dl>
|
||||||
<dt>$pending.0</dt>
|
<dt>$pending.0</dt>
|
||||||
<dd>$pending.1</dt>
|
<dd>$pending.1</dt>
|
||||||
|
|
|
||||||
|
|
@ -1,19 +1,19 @@
|
||||||
|
|
||||||
Hallo $[username],
|
Hallo $[username],
|
||||||
|
|
||||||
'$[fn]' auf '$[dfrn_url]' wurde akzeptiert
|
'$[fn]' auf '$[dfrn_url]' hat deine Verbindungsanfrage
|
||||||
Deine Verbindungsanfrage auf '$[sitename]'.
|
auf '$[sitename]' akzeptiert.
|
||||||
|
|
||||||
'$[fn]' hat entschieden Dich als "Fan" zu akzeptieren, was ein
|
'$[fn]' hat entschieden Dich als "Fan" zu akzeptieren, was zu einigen
|
||||||
paar Formen der Kommunikation einschränkt - wie das schreiben von privaten Nachrichten und einige Profil
|
Einschränkungen bei der Kommunikation führt - wie zB das Schreiben von privaten Nachrichten und einige Profil
|
||||||
Interaktionen. Wenn das ein Promi-Konto oder eine Forum-Seite ist, werden die Einstellungen
|
Interaktionen. Sollte dies ein Promi-Konto oder eine Forum-Seite sein, werden die Einstellungen
|
||||||
automatisch angewendet.
|
automatisch angewandt.
|
||||||
|
|
||||||
'$[fn]' kann wählen, ob die Freundschaft in eine beidseitige oder alles erlaubende
|
'$[fn]' kann wählen, ob die Freundschaft in eine beidseitige oder alles erlaubende
|
||||||
Beziehung in der Zukunft erweitert wird.
|
Beziehung in der Zukunft erweitert wird.
|
||||||
|
|
||||||
Du empfängst jetzt die öffentlichen Beiträge von '$[fn]',
|
Du empfängst ab sofort die öffentlichen Beiträge von '$[fn]',
|
||||||
welche auf der "Netzwerk" Seite erscheinen werden
|
auf deiner "Netzwerk" Seite.
|
||||||
|
|
||||||
$[siteurl]
|
$[siteurl]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
# Fabian Dost <friends@dostmusik.de>, 2012.
|
# Fabian Dost <friends@dostmusik.de>, 2012.
|
||||||
# <friends@dostmusik.de>, 2012.
|
# <friends@dostmusik.de>, 2012.
|
||||||
# <greeneyedred@googlemail.com>, 2012.
|
# <greeneyedred@googlemail.com>, 2012.
|
||||||
# <hzuehl@phone-talk.de>, 2011.
|
# <hzuehl@phone-talk.de>, 2011, 2012.
|
||||||
# <leberwurscht@hoegners.de>, 2012.
|
# <leberwurscht@hoegners.de>, 2012.
|
||||||
# <marmor69@web.de>, 2012.
|
# <marmor69@web.de>, 2012.
|
||||||
# Martin Schmitt <mas@scsy.de>, 2012.
|
# Martin Schmitt <mas@scsy.de>, 2012.
|
||||||
|
|
@ -19,8 +19,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: friendica\n"
|
"Project-Id-Version: friendica\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
|
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
|
||||||
"POT-Creation-Date: 2012-05-14 10:00-0700\n"
|
"POT-Creation-Date: 2012-05-21 10:00-0700\n"
|
||||||
"PO-Revision-Date: 2012-05-15 08:40+0000\n"
|
"PO-Revision-Date: 2012-05-22 07:02+0000\n"
|
||||||
"Last-Translator: bavatar <tobias.diekershoff@gmx.net>\n"
|
"Last-Translator: bavatar <tobias.diekershoff@gmx.net>\n"
|
||||||
"Language-Team: German (http://www.transifex.net/projects/p/friendica/language/de/)\n"
|
"Language-Team: German (http://www.transifex.net/projects/p/friendica/language/de/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -51,8 +51,8 @@ msgstr "Konnte den Kontakt nicht aktualisieren."
|
||||||
#: ../../mod/api.php:31 ../../mod/photos.php:130 ../../mod/photos.php:865
|
#: ../../mod/api.php:31 ../../mod/photos.php:130 ../../mod/photos.php:865
|
||||||
#: ../../mod/editpost.php:10 ../../mod/install.php:171
|
#: ../../mod/editpost.php:10 ../../mod/install.php:171
|
||||||
#: ../../mod/notifications.php:66 ../../mod/contacts.php:125
|
#: ../../mod/notifications.php:66 ../../mod/contacts.php:125
|
||||||
#: ../../mod/settings.php:104 ../../mod/settings.php:521
|
#: ../../mod/settings.php:104 ../../mod/settings.php:535
|
||||||
#: ../../mod/settings.php:526 ../../mod/manage.php:86 ../../mod/network.php:6
|
#: ../../mod/settings.php:540 ../../mod/manage.php:86 ../../mod/network.php:6
|
||||||
#: ../../mod/notes.php:20 ../../mod/wallmessage.php:9
|
#: ../../mod/notes.php:20 ../../mod/wallmessage.php:9
|
||||||
#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
|
#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
|
||||||
#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33
|
#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33
|
||||||
|
|
@ -66,8 +66,8 @@ msgstr "Konnte den Kontakt nicht aktualisieren."
|
||||||
#: ../../mod/follow.php:8 ../../mod/display.php:138 ../../mod/profiles.php:7
|
#: ../../mod/follow.php:8 ../../mod/display.php:138 ../../mod/profiles.php:7
|
||||||
#: ../../mod/profiles.php:365 ../../mod/delegate.php:6
|
#: ../../mod/profiles.php:365 ../../mod/delegate.php:6
|
||||||
#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81
|
#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81
|
||||||
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:495
|
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:503
|
||||||
#: ../../include/items.php:3202 ../../index.php:306
|
#: ../../include/items.php:3214 ../../index.php:306
|
||||||
msgid "Permission denied."
|
msgid "Permission denied."
|
||||||
msgstr "Zugriff verweigert."
|
msgstr "Zugriff verweigert."
|
||||||
|
|
||||||
|
|
@ -78,7 +78,7 @@ msgstr "Kontakt nicht gefunden."
|
||||||
|
|
||||||
#: ../../mod/crepair.php:135
|
#: ../../mod/crepair.php:135
|
||||||
msgid "Repair Contact Settings"
|
msgid "Repair Contact Settings"
|
||||||
msgstr "Kontakt-Einstellungen reparieren"
|
msgstr "Kontakteinstellungen reparieren"
|
||||||
|
|
||||||
#: ../../mod/crepair.php:137
|
#: ../../mod/crepair.php:137
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -96,8 +96,8 @@ msgstr "Bitte nutze den Zurück-Button deines Browsers <strong>jetzt</strong>, w
|
||||||
msgid "Return to contact editor"
|
msgid "Return to contact editor"
|
||||||
msgstr "Zurück zum Kontakteditor"
|
msgstr "Zurück zum Kontakteditor"
|
||||||
|
|
||||||
#: ../../mod/crepair.php:148 ../../mod/settings.php:541
|
#: ../../mod/crepair.php:148 ../../mod/settings.php:555
|
||||||
#: ../../mod/settings.php:567 ../../mod/admin.php:643 ../../mod/admin.php:652
|
#: ../../mod/settings.php:581 ../../mod/admin.php:643 ../../mod/admin.php:652
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Name"
|
msgstr "Name"
|
||||||
|
|
||||||
|
|
@ -135,16 +135,16 @@ msgstr "Neues Foto von dieser URL"
|
||||||
|
|
||||||
#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
|
#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
|
||||||
#: ../../mod/events.php:428 ../../mod/photos.php:900 ../../mod/photos.php:958
|
#: ../../mod/events.php:428 ../../mod/photos.php:900 ../../mod/photos.php:958
|
||||||
#: ../../mod/photos.php:1193 ../../mod/photos.php:1233
|
#: ../../mod/photos.php:1200 ../../mod/photos.php:1240
|
||||||
#: ../../mod/photos.php:1273 ../../mod/photos.php:1304
|
#: ../../mod/photos.php:1280 ../../mod/photos.php:1311
|
||||||
#: ../../mod/install.php:251 ../../mod/install.php:289
|
#: ../../mod/install.php:251 ../../mod/install.php:289
|
||||||
#: ../../mod/localtime.php:45 ../../mod/contacts.php:322
|
#: ../../mod/localtime.php:45 ../../mod/contacts.php:322
|
||||||
#: ../../mod/settings.php:539 ../../mod/settings.php:685
|
#: ../../mod/settings.php:553 ../../mod/settings.php:699
|
||||||
#: ../../mod/settings.php:746 ../../mod/settings.php:940
|
#: ../../mod/settings.php:760 ../../mod/settings.php:964
|
||||||
#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:404
|
#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:404
|
||||||
#: ../../mod/admin.php:640 ../../mod/admin.php:776 ../../mod/admin.php:975
|
#: ../../mod/admin.php:640 ../../mod/admin.php:776 ../../mod/admin.php:975
|
||||||
#: ../../mod/admin.php:1062 ../../mod/profiles.php:534
|
#: ../../mod/admin.php:1062 ../../mod/profiles.php:534
|
||||||
#: ../../mod/invite.php:119 ../../addon/facebook/facebook.php:597
|
#: ../../mod/invite.php:119 ../../addon/facebook/facebook.php:605
|
||||||
#: ../../addon/yourls/yourls.php:76 ../../addon/ljpost/ljpost.php:93
|
#: ../../addon/yourls/yourls.php:76 ../../addon/ljpost/ljpost.php:93
|
||||||
#: ../../addon/nsfw/nsfw.php:57 ../../addon/planets/planets.php:158
|
#: ../../addon/nsfw/nsfw.php:57 ../../addon/planets/planets.php:158
|
||||||
#: ../../addon/uhremotestorage/uhremotestorage.php:89
|
#: ../../addon/uhremotestorage/uhremotestorage.php:89
|
||||||
|
|
@ -162,11 +162,11 @@ msgstr "Neues Foto von dieser URL"
|
||||||
#: ../../addon/statusnet/statusnet.php:318
|
#: ../../addon/statusnet/statusnet.php:318
|
||||||
#: ../../addon/statusnet/statusnet.php:325
|
#: ../../addon/statusnet/statusnet.php:325
|
||||||
#: ../../addon/statusnet/statusnet.php:353
|
#: ../../addon/statusnet/statusnet.php:353
|
||||||
#: ../../addon/statusnet/statusnet.php:553 ../../addon/tumblr/tumblr.php:90
|
#: ../../addon/statusnet/statusnet.php:561 ../../addon/tumblr/tumblr.php:90
|
||||||
#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88
|
#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88
|
||||||
#: ../../addon/wppost/wppost.php:102 ../../addon/showmore/showmore.php:48
|
#: ../../addon/wppost/wppost.php:109 ../../addon/showmore/showmore.php:48
|
||||||
#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180
|
#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180
|
||||||
#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:375
|
#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:381
|
||||||
#: ../../addon/irc/irc.php:55 ../../addon/blogger/blogger.php:102
|
#: ../../addon/irc/irc.php:55 ../../addon/blogger/blogger.php:102
|
||||||
#: ../../addon/posterous/posterous.php:103
|
#: ../../addon/posterous/posterous.php:103
|
||||||
#: ../../view/theme/cleanzero/config.php:80
|
#: ../../view/theme/cleanzero/config.php:80
|
||||||
|
|
@ -217,7 +217,7 @@ msgstr "Schlage %s einen Kontakt vor"
|
||||||
|
|
||||||
#: ../../mod/events.php:65
|
#: ../../mod/events.php:65
|
||||||
msgid "Event description and start time are required."
|
msgid "Event description and start time are required."
|
||||||
msgstr "Ereignis Beschreibung und Startzeit sind erforderlich."
|
msgstr "Ereignisbeschreibung und Startzeit sind erforderlich."
|
||||||
|
|
||||||
#: ../../mod/events.php:258
|
#: ../../mod/events.php:258
|
||||||
msgid "l, F j"
|
msgid "l, F j"
|
||||||
|
|
@ -232,7 +232,7 @@ msgid "link to source"
|
||||||
msgstr "Link zum Originalbeitrag"
|
msgstr "Link zum Originalbeitrag"
|
||||||
|
|
||||||
#: ../../mod/events.php:324 ../../view/theme/diabook/theme.php:126
|
#: ../../mod/events.php:324 ../../view/theme/diabook/theme.php:126
|
||||||
#: ../../include/nav.php:52 ../../boot.php:1503
|
#: ../../include/nav.php:52 ../../boot.php:1522
|
||||||
msgid "Events"
|
msgid "Events"
|
||||||
msgstr "Veranstaltungen"
|
msgstr "Veranstaltungen"
|
||||||
|
|
||||||
|
|
@ -291,8 +291,8 @@ msgid "Share this event"
|
||||||
msgstr "Veranstaltung teilen"
|
msgstr "Veranstaltung teilen"
|
||||||
|
|
||||||
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
|
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
|
||||||
#: ../../mod/dfrn_request.php:818 ../../mod/settings.php:540
|
#: ../../mod/dfrn_request.php:826 ../../mod/settings.php:554
|
||||||
#: ../../mod/settings.php:566 ../../addon/js_upload/js_upload.php:45
|
#: ../../mod/settings.php:580 ../../addon/js_upload/js_upload.php:45
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Abbrechen"
|
msgstr "Abbrechen"
|
||||||
|
|
||||||
|
|
@ -335,40 +335,40 @@ msgid ""
|
||||||
" and/or create new posts for you?"
|
" and/or create new posts for you?"
|
||||||
msgstr "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?"
|
msgstr "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?"
|
||||||
|
|
||||||
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:806
|
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:814
|
||||||
#: ../../mod/settings.php:854 ../../mod/settings.php:860
|
#: ../../mod/settings.php:875 ../../mod/settings.php:881
|
||||||
#: ../../mod/settings.php:868 ../../mod/settings.php:872
|
#: ../../mod/settings.php:889 ../../mod/settings.php:893
|
||||||
#: ../../mod/settings.php:877 ../../mod/settings.php:883
|
#: ../../mod/settings.php:898 ../../mod/settings.php:904
|
||||||
#: ../../mod/settings.php:889 ../../mod/settings.php:895
|
#: ../../mod/settings.php:910 ../../mod/settings.php:916
|
||||||
#: ../../mod/settings.php:931 ../../mod/settings.php:932
|
#: ../../mod/settings.php:952 ../../mod/settings.php:953
|
||||||
#: ../../mod/settings.php:933 ../../mod/settings.php:934
|
#: ../../mod/settings.php:954 ../../mod/settings.php:955
|
||||||
#: ../../mod/register.php:532 ../../mod/profiles.php:511
|
#: ../../mod/register.php:511 ../../mod/profiles.php:511
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr "Ja"
|
msgstr "Ja"
|
||||||
|
|
||||||
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:807
|
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:815
|
||||||
#: ../../mod/settings.php:854 ../../mod/settings.php:860
|
#: ../../mod/settings.php:875 ../../mod/settings.php:881
|
||||||
#: ../../mod/settings.php:868 ../../mod/settings.php:872
|
#: ../../mod/settings.php:889 ../../mod/settings.php:893
|
||||||
#: ../../mod/settings.php:877 ../../mod/settings.php:883
|
#: ../../mod/settings.php:898 ../../mod/settings.php:904
|
||||||
#: ../../mod/settings.php:889 ../../mod/settings.php:895
|
#: ../../mod/settings.php:910 ../../mod/settings.php:916
|
||||||
#: ../../mod/settings.php:931 ../../mod/settings.php:932
|
#: ../../mod/settings.php:952 ../../mod/settings.php:953
|
||||||
#: ../../mod/settings.php:933 ../../mod/settings.php:934
|
#: ../../mod/settings.php:954 ../../mod/settings.php:955
|
||||||
#: ../../mod/register.php:533 ../../mod/profiles.php:512
|
#: ../../mod/register.php:512 ../../mod/profiles.php:512
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Nein"
|
msgstr "Nein"
|
||||||
|
|
||||||
#: ../../mod/photos.php:43 ../../boot.php:1497
|
#: ../../mod/photos.php:43 ../../boot.php:1516
|
||||||
msgid "Photo Albums"
|
msgid "Photo Albums"
|
||||||
msgstr "Fotoalben"
|
msgstr "Fotoalben"
|
||||||
|
|
||||||
#: ../../mod/photos.php:51 ../../mod/photos.php:151 ../../mod/photos.php:879
|
#: ../../mod/photos.php:51 ../../mod/photos.php:151 ../../mod/photos.php:879
|
||||||
#: ../../mod/photos.php:950 ../../mod/photos.php:965 ../../mod/photos.php:1382
|
#: ../../mod/photos.php:950 ../../mod/photos.php:965 ../../mod/photos.php:1389
|
||||||
#: ../../mod/photos.php:1394 ../../addon/communityhome/communityhome.php:110
|
#: ../../mod/photos.php:1401 ../../addon/communityhome/communityhome.php:110
|
||||||
#: ../../view/theme/diabook/theme.php:593
|
#: ../../view/theme/diabook/theme.php:593
|
||||||
msgid "Contact Photos"
|
msgid "Contact Photos"
|
||||||
msgstr "Kontaktbilder"
|
msgstr "Kontaktbilder"
|
||||||
|
|
||||||
#: ../../mod/photos.php:58 ../../mod/photos.php:975 ../../mod/photos.php:1424
|
#: ../../mod/photos.php:58 ../../mod/photos.php:975 ../../mod/photos.php:1438
|
||||||
msgid "Upload New Photos"
|
msgid "Upload New Photos"
|
||||||
msgstr "Weitere Fotos hochladen"
|
msgstr "Weitere Fotos hochladen"
|
||||||
|
|
||||||
|
|
@ -381,8 +381,8 @@ msgid "Contact information unavailable"
|
||||||
msgstr "Kontaktinformationen nicht verfügbar"
|
msgstr "Kontaktinformationen nicht verfügbar"
|
||||||
|
|
||||||
#: ../../mod/photos.php:151 ../../mod/photos.php:597 ../../mod/photos.php:950
|
#: ../../mod/photos.php:151 ../../mod/photos.php:597 ../../mod/photos.php:950
|
||||||
#: ../../mod/photos.php:965 ../../mod/register.php:335
|
#: ../../mod/photos.php:965 ../../mod/register.php:314
|
||||||
#: ../../mod/register.php:342 ../../mod/register.php:349
|
#: ../../mod/register.php:321 ../../mod/register.php:328
|
||||||
#: ../../mod/profile_photo.php:60 ../../mod/profile_photo.php:67
|
#: ../../mod/profile_photo.php:60 ../../mod/profile_photo.php:67
|
||||||
#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:174
|
#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:174
|
||||||
#: ../../mod/profile_photo.php:252 ../../mod/profile_photo.php:261
|
#: ../../mod/profile_photo.php:252 ../../mod/profile_photo.php:261
|
||||||
|
|
@ -399,7 +399,7 @@ msgstr "Album nicht gefunden."
|
||||||
msgid "Delete Album"
|
msgid "Delete Album"
|
||||||
msgstr "Album löschen"
|
msgstr "Album löschen"
|
||||||
|
|
||||||
#: ../../mod/photos.php:242 ../../mod/photos.php:1194
|
#: ../../mod/photos.php:242 ../../mod/photos.php:1201
|
||||||
msgid "Delete Photo"
|
msgid "Delete Photo"
|
||||||
msgstr "Foto löschen"
|
msgstr "Foto löschen"
|
||||||
|
|
||||||
|
|
@ -410,7 +410,7 @@ msgstr "wurde getaggt in einem"
|
||||||
#: ../../mod/photos.php:528 ../../mod/like.php:127 ../../mod/tagger.php:70
|
#: ../../mod/photos.php:528 ../../mod/like.php:127 ../../mod/tagger.php:70
|
||||||
#: ../../addon/communityhome/communityhome.php:163
|
#: ../../addon/communityhome/communityhome.php:163
|
||||||
#: ../../view/theme/diabook/theme.php:565 ../../include/text.php:1305
|
#: ../../view/theme/diabook/theme.php:565 ../../include/text.php:1305
|
||||||
#: ../../include/diaspora.php:1654 ../../include/conversation.php:53
|
#: ../../include/diaspora.php:1662 ../../include/conversation.php:53
|
||||||
#: ../../include/conversation.php:126
|
#: ../../include/conversation.php:126
|
||||||
msgid "photo"
|
msgid "photo"
|
||||||
msgstr "Foto"
|
msgstr "Foto"
|
||||||
|
|
@ -438,7 +438,7 @@ msgid "Image upload failed."
|
||||||
msgstr "Hochladen des Bildes gescheitert."
|
msgstr "Hochladen des Bildes gescheitert."
|
||||||
|
|
||||||
#: ../../mod/photos.php:759 ../../mod/community.php:16
|
#: ../../mod/photos.php:759 ../../mod/community.php:16
|
||||||
#: ../../mod/dfrn_request.php:732 ../../mod/viewcontacts.php:17
|
#: ../../mod/dfrn_request.php:740 ../../mod/viewcontacts.php:17
|
||||||
#: ../../mod/display.php:7 ../../mod/search.php:71 ../../mod/directory.php:29
|
#: ../../mod/display.php:7 ../../mod/search.php:71 ../../mod/directory.php:29
|
||||||
msgid "Public access denied."
|
msgid "Public access denied."
|
||||||
msgstr "Öffentlicher Zugriff verweigert."
|
msgstr "Öffentlicher Zugriff verweigert."
|
||||||
|
|
@ -467,7 +467,7 @@ msgstr "oder existierender Albumname: "
|
||||||
msgid "Do not show a status post for this upload"
|
msgid "Do not show a status post for this upload"
|
||||||
msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
|
msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
|
||||||
|
|
||||||
#: ../../mod/photos.php:914 ../../mod/photos.php:1189
|
#: ../../mod/photos.php:914 ../../mod/photos.php:1196
|
||||||
msgid "Permissions"
|
msgid "Permissions"
|
||||||
msgstr "Berechtigungen"
|
msgstr "Berechtigungen"
|
||||||
|
|
||||||
|
|
@ -475,109 +475,109 @@ msgstr "Berechtigungen"
|
||||||
msgid "Edit Album"
|
msgid "Edit Album"
|
||||||
msgstr "Album bearbeiten"
|
msgstr "Album bearbeiten"
|
||||||
|
|
||||||
#: ../../mod/photos.php:984 ../../mod/photos.php:1407
|
#: ../../mod/photos.php:991 ../../mod/photos.php:1421
|
||||||
msgid "View Photo"
|
msgid "View Photo"
|
||||||
msgstr "Fotos betrachten"
|
msgstr "Fotos betrachten"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1019
|
#: ../../mod/photos.php:1026
|
||||||
msgid "Permission denied. Access to this item may be restricted."
|
msgid "Permission denied. Access to this item may be restricted."
|
||||||
msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
|
msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
|
||||||
|
|
||||||
#: ../../mod/photos.php:1021
|
#: ../../mod/photos.php:1028
|
||||||
msgid "Photo not available"
|
msgid "Photo not available"
|
||||||
msgstr "Foto nicht verfügbar"
|
msgstr "Foto nicht verfügbar"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1071
|
#: ../../mod/photos.php:1078
|
||||||
msgid "View photo"
|
msgid "View photo"
|
||||||
msgstr "Fotos ansehen"
|
msgstr "Fotos ansehen"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1071
|
#: ../../mod/photos.php:1078
|
||||||
msgid "Edit photo"
|
msgid "Edit photo"
|
||||||
msgstr "Foto bearbeiten"
|
msgstr "Foto bearbeiten"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1072
|
#: ../../mod/photos.php:1079
|
||||||
msgid "Use as profile photo"
|
msgid "Use as profile photo"
|
||||||
msgstr "Als Profilbild verwenden"
|
msgstr "Als Profilbild verwenden"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1078 ../../include/conversation.php:483
|
#: ../../mod/photos.php:1085 ../../include/conversation.php:483
|
||||||
msgid "Private Message"
|
msgid "Private Message"
|
||||||
msgstr "Private Nachricht"
|
msgstr "Private Nachricht"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1100
|
#: ../../mod/photos.php:1107
|
||||||
msgid "View Full Size"
|
msgid "View Full Size"
|
||||||
msgstr "Betrachte Originalgröße"
|
msgstr "Betrachte Originalgröße"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1168
|
#: ../../mod/photos.php:1175
|
||||||
msgid "Tags: "
|
msgid "Tags: "
|
||||||
msgstr "Tags: "
|
msgstr "Tags: "
|
||||||
|
|
||||||
#: ../../mod/photos.php:1171
|
#: ../../mod/photos.php:1178
|
||||||
msgid "[Remove any tag]"
|
msgid "[Remove any tag]"
|
||||||
msgstr "[Tag entfernen]"
|
msgstr "[Tag entfernen]"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1182
|
#: ../../mod/photos.php:1189
|
||||||
msgid "New album name"
|
msgid "New album name"
|
||||||
msgstr "Name des neuen Albums"
|
msgstr "Name des neuen Albums"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1185
|
#: ../../mod/photos.php:1192
|
||||||
msgid "Caption"
|
msgid "Caption"
|
||||||
msgstr "Bildunterschrift"
|
msgstr "Bildunterschrift"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1187
|
#: ../../mod/photos.php:1194
|
||||||
msgid "Add a Tag"
|
msgid "Add a Tag"
|
||||||
msgstr "Tag hinzufügen"
|
msgstr "Tag hinzufügen"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1191
|
#: ../../mod/photos.php:1198
|
||||||
msgid ""
|
msgid ""
|
||||||
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
||||||
msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1211 ../../include/conversation.php:532
|
#: ../../mod/photos.php:1218 ../../include/conversation.php:532
|
||||||
msgid "I like this (toggle)"
|
msgid "I like this (toggle)"
|
||||||
msgstr "Ich mag das (toggle)"
|
msgstr "Ich mag das (toggle)"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1212 ../../include/conversation.php:533
|
#: ../../mod/photos.php:1219 ../../include/conversation.php:533
|
||||||
msgid "I don't like this (toggle)"
|
msgid "I don't like this (toggle)"
|
||||||
msgstr "Ich mag das nicht (toggle)"
|
msgstr "Ich mag das nicht (toggle)"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1213 ../../include/conversation.php:967
|
#: ../../mod/photos.php:1220 ../../include/conversation.php:967
|
||||||
msgid "Share"
|
msgid "Share"
|
||||||
msgstr "Teilen"
|
msgstr "Teilen"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1214 ../../mod/editpost.php:104
|
#: ../../mod/photos.php:1221 ../../mod/editpost.php:104
|
||||||
#: ../../mod/wallmessage.php:145 ../../mod/message.php:214
|
#: ../../mod/wallmessage.php:145 ../../mod/message.php:214
|
||||||
#: ../../mod/message.php:408 ../../include/conversation.php:364
|
#: ../../mod/message.php:408 ../../include/conversation.php:364
|
||||||
#: ../../include/conversation.php:709 ../../include/conversation.php:986
|
#: ../../include/conversation.php:709 ../../include/conversation.php:986
|
||||||
msgid "Please wait"
|
msgid "Please wait"
|
||||||
msgstr "Bitte warten"
|
msgstr "Bitte warten"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1230 ../../mod/photos.php:1270
|
#: ../../mod/photos.php:1237 ../../mod/photos.php:1277
|
||||||
#: ../../mod/photos.php:1301 ../../include/conversation.php:555
|
#: ../../mod/photos.php:1308 ../../include/conversation.php:555
|
||||||
msgid "This is you"
|
msgid "This is you"
|
||||||
msgstr "Das bist du"
|
msgstr "Das bist du"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1232 ../../mod/photos.php:1272
|
#: ../../mod/photos.php:1239 ../../mod/photos.php:1279
|
||||||
#: ../../mod/photos.php:1303 ../../include/conversation.php:557
|
#: ../../mod/photos.php:1310 ../../include/conversation.php:557
|
||||||
#: ../../boot.php:516
|
#: ../../boot.php:516
|
||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr "Kommentar"
|
msgstr "Kommentar"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1234 ../../mod/editpost.php:125
|
#: ../../mod/photos.php:1241 ../../mod/editpost.php:125
|
||||||
#: ../../include/conversation.php:567 ../../include/conversation.php:1004
|
#: ../../include/conversation.php:567 ../../include/conversation.php:1004
|
||||||
msgid "Preview"
|
msgid "Preview"
|
||||||
msgstr "Vorschau"
|
msgstr "Vorschau"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1331 ../../mod/settings.php:602
|
#: ../../mod/photos.php:1338 ../../mod/settings.php:616
|
||||||
#: ../../mod/settings.php:683 ../../mod/group.php:168 ../../mod/admin.php:647
|
#: ../../mod/settings.php:697 ../../mod/group.php:168 ../../mod/admin.php:647
|
||||||
#: ../../include/conversation.php:321 ../../include/conversation.php:587
|
#: ../../include/conversation.php:321 ../../include/conversation.php:587
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "Löschen"
|
msgstr "Löschen"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1413
|
#: ../../mod/photos.php:1427
|
||||||
msgid "View Album"
|
msgid "View Album"
|
||||||
msgstr "Album betrachten"
|
msgstr "Album betrachten"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1422
|
#: ../../mod/photos.php:1436
|
||||||
msgid "Recent Photos"
|
msgid "Recent Photos"
|
||||||
msgstr "Neueste Fotos"
|
msgstr "Neueste Fotos"
|
||||||
|
|
||||||
|
|
@ -590,7 +590,7 @@ msgstr "Nicht verfügbar."
|
||||||
msgid "Community"
|
msgid "Community"
|
||||||
msgstr "Gemeinschaft"
|
msgstr "Gemeinschaft"
|
||||||
|
|
||||||
#: ../../mod/community.php:61 ../../mod/search.php:128
|
#: ../../mod/community.php:61 ../../mod/search.php:138
|
||||||
msgid "No results."
|
msgid "No results."
|
||||||
msgstr "Keine Ergebnisse."
|
msgstr "Keine Ergebnisse."
|
||||||
|
|
||||||
|
|
@ -606,7 +606,7 @@ msgstr "die unter folgender Webadresse zu finden ist"
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
|
"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
|
||||||
"more about the Friendica project."
|
"more about the Friendica project."
|
||||||
msgstr "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a> um mehr über das Friendica Projekt zu erfahren."
|
msgstr "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren."
|
||||||
|
|
||||||
#: ../../mod/friendica.php:60
|
#: ../../mod/friendica.php:60
|
||||||
msgid "Bug reports and issues: please visit"
|
msgid "Bug reports and issues: please visit"
|
||||||
|
|
@ -638,7 +638,7 @@ msgstr "Beitrag bearbeiten"
|
||||||
msgid "Post to Email"
|
msgid "Post to Email"
|
||||||
msgstr "An E-Mail senden"
|
msgstr "An E-Mail senden"
|
||||||
|
|
||||||
#: ../../mod/editpost.php:95 ../../mod/settings.php:601
|
#: ../../mod/editpost.php:95 ../../mod/settings.php:615
|
||||||
#: ../../include/conversation.php:574
|
#: ../../include/conversation.php:574
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Bearbeiten"
|
msgstr "Bearbeiten"
|
||||||
|
|
@ -707,19 +707,19 @@ msgstr "Z.B.: bob@example.com, mary@example.com"
|
||||||
msgid "This introduction has already been accepted."
|
msgid "This introduction has already been accepted."
|
||||||
msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
|
msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:117 ../../mod/dfrn_request.php:487
|
#: ../../mod/dfrn_request.php:117 ../../mod/dfrn_request.php:495
|
||||||
msgid "Profile location is not valid or does not contain profile information."
|
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."
|
msgstr "Profiladresse ist ungültig oder stellt einige Profildaten nicht zur Verfügung."
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:122 ../../mod/dfrn_request.php:492
|
#: ../../mod/dfrn_request.php:122 ../../mod/dfrn_request.php:500
|
||||||
msgid "Warning: profile location has no identifiable owner name."
|
msgid "Warning: profile location has no identifiable owner name."
|
||||||
msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
|
msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:124 ../../mod/dfrn_request.php:494
|
#: ../../mod/dfrn_request.php:124 ../../mod/dfrn_request.php:502
|
||||||
msgid "Warning: profile location has no profile photo."
|
msgid "Warning: profile location has no profile photo."
|
||||||
msgstr "Warnung: Es konnte kein Profilbild bei der angegebenen Profiladresse gefunden werden."
|
msgstr "Warnung: Es konnte kein Profilbild bei der angegebenen Profiladresse gefunden werden."
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:497
|
#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:505
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%d required parameter was not found at the given location"
|
msgid "%d required parameter was not found at the given location"
|
||||||
msgid_plural "%d required parameters were not found at the given location"
|
msgid_plural "%d required parameters were not found at the given location"
|
||||||
|
|
@ -763,128 +763,128 @@ msgstr "Ungültige E-Mail Adresse."
|
||||||
msgid "This account has not been configured for email. Request failed."
|
msgid "This account has not been configured for email. Request failed."
|
||||||
msgstr "Dieses Konto ist nicht für Email konfiguriert. Anfrage fehlgeschlagen."
|
msgstr "Dieses Konto ist nicht für Email konfiguriert. Anfrage fehlgeschlagen."
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:432
|
#: ../../mod/dfrn_request.php:440
|
||||||
msgid "Unable to resolve your name at the provided location."
|
msgid "Unable to resolve your name at the provided location."
|
||||||
msgstr "Konnte deinen Namen an der angegebenen Stelle nicht finden."
|
msgstr "Konnte deinen Namen an der angegebenen Stelle nicht finden."
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:445
|
#: ../../mod/dfrn_request.php:453
|
||||||
msgid "You have already introduced yourself here."
|
msgid "You have already introduced yourself here."
|
||||||
msgstr "Du hast dich hier bereits vorgestellt."
|
msgstr "Du hast dich hier bereits vorgestellt."
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:449
|
#: ../../mod/dfrn_request.php:457
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Apparently you are already friends with %s."
|
msgid "Apparently you are already friends with %s."
|
||||||
msgstr "Es scheint so, als ob du bereits mit %s befreundet bist."
|
msgstr "Es scheint so, als ob du bereits mit %s befreundet bist."
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:470
|
#: ../../mod/dfrn_request.php:478
|
||||||
msgid "Invalid profile URL."
|
msgid "Invalid profile URL."
|
||||||
msgstr "Ungültige Profil-URL."
|
msgstr "Ungültige Profil-URL."
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:476 ../../mod/follow.php:23
|
#: ../../mod/dfrn_request.php:484 ../../mod/follow.php:23
|
||||||
msgid "Disallowed profile URL."
|
msgid "Disallowed profile URL."
|
||||||
msgstr "Nicht erlaubte Profil-URL."
|
msgstr "Nicht erlaubte Profil-URL."
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:545 ../../mod/contacts.php:102
|
#: ../../mod/dfrn_request.php:553 ../../mod/contacts.php:102
|
||||||
msgid "Failed to update contact record."
|
msgid "Failed to update contact record."
|
||||||
msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
|
msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:566
|
#: ../../mod/dfrn_request.php:574
|
||||||
msgid "Your introduction has been sent."
|
msgid "Your introduction has been sent."
|
||||||
msgstr "Deine Kontaktanfrage wurde gesendet."
|
msgstr "Deine Kontaktanfrage wurde gesendet."
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:619
|
#: ../../mod/dfrn_request.php:627
|
||||||
msgid "Please login to confirm introduction."
|
msgid "Please login to confirm introduction."
|
||||||
msgstr "Bitte melde dich an, um die Kontaktanfrage zu bestätigen."
|
msgstr "Bitte melde dich an, um die Kontaktanfrage zu bestätigen."
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:633
|
#: ../../mod/dfrn_request.php:641
|
||||||
msgid ""
|
msgid ""
|
||||||
"Incorrect identity currently logged in. Please login to "
|
"Incorrect identity currently logged in. Please login to "
|
||||||
"<strong>this</strong> profile."
|
"<strong>this</strong> profile."
|
||||||
msgstr "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an."
|
msgstr "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an."
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:645
|
#: ../../mod/dfrn_request.php:653
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Welcome home %s."
|
msgid "Welcome home %s."
|
||||||
msgstr "Willkommen zurück %s."
|
msgstr "Willkommen zurück %s."
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:646
|
#: ../../mod/dfrn_request.php:654
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Please confirm your introduction/connection request to %s."
|
msgid "Please confirm your introduction/connection request to %s."
|
||||||
msgstr "Bitte bestätige deine Kontaktanfrage bei %s."
|
msgstr "Bitte bestätige deine Kontaktanfrage bei %s."
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:647
|
#: ../../mod/dfrn_request.php:655
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr "Bestätigen"
|
msgstr "Bestätigen"
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:688 ../../include/items.php:2717
|
#: ../../mod/dfrn_request.php:696 ../../include/items.php:2729
|
||||||
msgid "[Name Withheld]"
|
msgid "[Name Withheld]"
|
||||||
msgstr "[Name unterdrückt]"
|
msgstr "[Name unterdrückt]"
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:781
|
#: ../../mod/dfrn_request.php:789
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please enter your 'Identity Address' from one of the following supported "
|
"Please enter your 'Identity Address' from one of the following supported "
|
||||||
"communications networks:"
|
"communications networks:"
|
||||||
msgstr "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:"
|
msgstr "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:"
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:797
|
#: ../../mod/dfrn_request.php:805
|
||||||
msgid "<strike>Connect as an email follower</strike> (Coming soon)"
|
msgid "<strike>Connect as an email follower</strike> (Coming soon)"
|
||||||
msgstr "<strike>Als E-Mail-Kontakt verbinden</strike> (In Kürze verfügbar)"
|
msgstr "<strike>Als E-Mail-Kontakt verbinden</strike> (In Kürze verfügbar)"
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:799
|
#: ../../mod/dfrn_request.php:807
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you are not yet a member of the free social web, <a "
|
"If you are not yet a member of the free social web, <a "
|
||||||
"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
|
"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
|
||||||
" Friendica site and join us today</a>."
|
" Friendica site and join us today</a>."
|
||||||
msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
|
msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:802
|
#: ../../mod/dfrn_request.php:810
|
||||||
msgid "Friend/Connection Request"
|
msgid "Friend/Connection Request"
|
||||||
msgstr "Freundschafts-/Kontaktanfrage"
|
msgstr "Freundschafts-/Kontaktanfrage"
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:803
|
#: ../../mod/dfrn_request.php:811
|
||||||
msgid ""
|
msgid ""
|
||||||
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
|
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
|
||||||
"testuser@identi.ca"
|
"testuser@identi.ca"
|
||||||
msgstr "Beispiele: 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:804
|
#: ../../mod/dfrn_request.php:812
|
||||||
msgid "Please answer the following:"
|
msgid "Please answer the following:"
|
||||||
msgstr "Bitte beantworte Folgendes:"
|
msgstr "Bitte beantworte Folgendes:"
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:805
|
#: ../../mod/dfrn_request.php:813
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Does %s know you?"
|
msgid "Does %s know you?"
|
||||||
msgstr "Kennt %s dich?"
|
msgstr "Kennt %s dich?"
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:808
|
#: ../../mod/dfrn_request.php:816
|
||||||
msgid "Add a personal note:"
|
msgid "Add a personal note:"
|
||||||
msgstr "Eine persönliche Notiz beifügen:"
|
msgstr "Eine persönliche Notiz beifügen:"
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:810 ../../include/contact_selectors.php:76
|
#: ../../mod/dfrn_request.php:818 ../../include/contact_selectors.php:76
|
||||||
msgid "Friendica"
|
msgid "Friendica"
|
||||||
msgstr "Friendica"
|
msgstr "Friendica"
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:811
|
#: ../../mod/dfrn_request.php:819
|
||||||
msgid "StatusNet/Federated Social Web"
|
msgid "StatusNet/Federated Social Web"
|
||||||
msgstr "StatusNet/Federated Social Web"
|
msgstr "StatusNet/Federated Social Web"
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:812 ../../mod/settings.php:636
|
#: ../../mod/dfrn_request.php:820 ../../mod/settings.php:650
|
||||||
#: ../../include/contact_selectors.php:80
|
#: ../../include/contact_selectors.php:80
|
||||||
msgid "Diaspora"
|
msgid "Diaspora"
|
||||||
msgstr "Diaspora"
|
msgstr "Diaspora"
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:813
|
#: ../../mod/dfrn_request.php:821
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
" - please do not use this form. Instead, enter %s into your Diaspora search"
|
" - please do not use this form. Instead, enter %s into your Diaspora search"
|
||||||
" bar."
|
" bar."
|
||||||
msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste."
|
msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste."
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:814
|
#: ../../mod/dfrn_request.php:822
|
||||||
msgid "Your Identity Address:"
|
msgid "Your Identity Address:"
|
||||||
msgstr "Adresse deines Profils:"
|
msgstr "Adresse deines Profils:"
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:817
|
#: ../../mod/dfrn_request.php:825
|
||||||
msgid "Submit Request"
|
msgid "Submit Request"
|
||||||
msgstr "Anfrage abschicken"
|
msgstr "Anfrage abschicken"
|
||||||
|
|
||||||
|
|
@ -895,7 +895,7 @@ msgstr "Friendica-Server für soziale Netzwerke – Setup"
|
||||||
#: ../../mod/install.php:117 ../../mod/install.php:157
|
#: ../../mod/install.php:117 ../../mod/install.php:157
|
||||||
#: ../../mod/install.php:230
|
#: ../../mod/install.php:230
|
||||||
msgid "Database connection"
|
msgid "Database connection"
|
||||||
msgstr "Datenbank-Verbindung"
|
msgstr "Datenbankverbindung"
|
||||||
|
|
||||||
#: ../../mod/install.php:124
|
#: ../../mod/install.php:124
|
||||||
msgid "Could not connect to database."
|
msgid "Could not connect to database."
|
||||||
|
|
@ -1127,7 +1127,7 @@ msgid ""
|
||||||
"The database configuration file \".htconfig.php\" could not be written. "
|
"The database configuration file \".htconfig.php\" could not be written. "
|
||||||
"Please use the enclosed text to create a configuration file in your web "
|
"Please use the enclosed text to create a configuration file in your web "
|
||||||
"server root."
|
"server root."
|
||||||
msgstr "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text um die Datei im Stammverzeichnis deiner Friendica-Installation zu erzeugen."
|
msgstr "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis deiner Friendica-Installation zu erzeugen."
|
||||||
|
|
||||||
#: ../../mod/install.php:461
|
#: ../../mod/install.php:461
|
||||||
msgid "Errors encountered creating database tables."
|
msgid "Errors encountered creating database tables."
|
||||||
|
|
@ -1184,7 +1184,7 @@ msgstr "ist interessiert an:"
|
||||||
msgid "Connect"
|
msgid "Connect"
|
||||||
msgstr "Verbinden"
|
msgstr "Verbinden"
|
||||||
|
|
||||||
#: ../../mod/match.php:65 ../../mod/dirfind.php:57
|
#: ../../mod/match.php:65 ../../mod/dirfind.php:60
|
||||||
msgid "No matches"
|
msgid "No matches"
|
||||||
msgstr "Keine Übereinstimmungen"
|
msgstr "Keine Übereinstimmungen"
|
||||||
|
|
||||||
|
|
@ -1364,11 +1364,11 @@ msgstr "Netzwerk Benachrichtigungen"
|
||||||
|
|
||||||
#: ../../mod/notifications.php:328 ../../mod/notify.php:61
|
#: ../../mod/notifications.php:328 ../../mod/notify.php:61
|
||||||
msgid "No more system notifications."
|
msgid "No more system notifications."
|
||||||
msgstr "Keine weiteren System Benachrichtigungen."
|
msgstr "Keine weiteren Systembenachrichtigungen."
|
||||||
|
|
||||||
#: ../../mod/notifications.php:332 ../../mod/notify.php:65
|
#: ../../mod/notifications.php:332 ../../mod/notify.php:65
|
||||||
msgid "System Notifications"
|
msgid "System Notifications"
|
||||||
msgstr "System Benachrichtigungen"
|
msgstr "Systembenachrichtigungen"
|
||||||
|
|
||||||
#: ../../mod/notifications.php:423
|
#: ../../mod/notifications.php:423
|
||||||
msgid "No more personal notifications."
|
msgid "No more personal notifications."
|
||||||
|
|
@ -1489,7 +1489,7 @@ msgstr "Sperren"
|
||||||
|
|
||||||
#: ../../mod/contacts.php:293
|
#: ../../mod/contacts.php:293
|
||||||
msgid "Toggle Blocked status"
|
msgid "Toggle Blocked status"
|
||||||
msgstr "Geblockt-Sttaus ein-/ausschalten"
|
msgstr "Geblockt-Status ein-/ausschalten"
|
||||||
|
|
||||||
#: ../../mod/contacts.php:296 ../../mod/contacts.php:348
|
#: ../../mod/contacts.php:296 ../../mod/contacts.php:348
|
||||||
msgid "Unignore"
|
msgid "Unignore"
|
||||||
|
|
@ -1525,7 +1525,7 @@ msgstr "Kontakt Editor"
|
||||||
|
|
||||||
#: ../../mod/contacts.php:323
|
#: ../../mod/contacts.php:323
|
||||||
msgid "Profile Visibility"
|
msgid "Profile Visibility"
|
||||||
msgstr "Profil Anzeige"
|
msgstr "Profil-Sichtbarkeit"
|
||||||
|
|
||||||
#: ../../mod/contacts.php:324
|
#: ../../mod/contacts.php:324
|
||||||
#, php-format
|
#, php-format
|
||||||
|
|
@ -1701,11 +1701,12 @@ msgid "Password reset requested at %s"
|
||||||
msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
|
msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
|
||||||
|
|
||||||
#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107
|
#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107
|
||||||
#: ../../mod/register.php:388 ../../mod/register.php:442
|
#: ../../mod/register.php:367 ../../mod/register.php:421
|
||||||
#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:742
|
#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:745
|
||||||
#: ../../addon/facebook/facebook.php:680
|
#: ../../addon/facebook/facebook.php:688
|
||||||
#: ../../addon/facebook/facebook.php:1170
|
#: ../../addon/facebook/facebook.php:1178
|
||||||
#: ../../addon/testdrive/testdrive.php:58 ../../include/items.php:2726
|
#: ../../addon/public_server/public_server.php:62
|
||||||
|
#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:2738
|
||||||
#: ../../boot.php:696
|
#: ../../boot.php:696
|
||||||
msgid "Administrator"
|
msgid "Administrator"
|
||||||
msgstr "Administrator"
|
msgstr "Administrator"
|
||||||
|
|
@ -1762,11 +1763,11 @@ msgstr "Zurücksetzen"
|
||||||
|
|
||||||
#: ../../mod/settings.php:49 ../../include/nav.php:137
|
#: ../../mod/settings.php:49 ../../include/nav.php:137
|
||||||
msgid "Account settings"
|
msgid "Account settings"
|
||||||
msgstr "Account Einstellungen"
|
msgstr "Account-Einstellungen"
|
||||||
|
|
||||||
#: ../../mod/settings.php:54
|
#: ../../mod/settings.php:54
|
||||||
msgid "Display settings"
|
msgid "Display settings"
|
||||||
msgstr "Anzeige Einstellungen"
|
msgstr "Anzeige-Einstellungen"
|
||||||
|
|
||||||
#: ../../mod/settings.php:60
|
#: ../../mod/settings.php:60
|
||||||
msgid "Connector settings"
|
msgid "Connector settings"
|
||||||
|
|
@ -1798,7 +1799,7 @@ msgstr "Einstellungen"
|
||||||
msgid "Missing some important data!"
|
msgid "Missing some important data!"
|
||||||
msgstr "Wichtige Daten fehlen!"
|
msgstr "Wichtige Daten fehlen!"
|
||||||
|
|
||||||
#: ../../mod/settings.php:134 ../../mod/settings.php:565
|
#: ../../mod/settings.php:134 ../../mod/settings.php:579
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Aktualisierungen"
|
msgstr "Aktualisierungen"
|
||||||
|
|
||||||
|
|
@ -1842,418 +1843,434 @@ msgstr " Keine gültige E-Mail."
|
||||||
msgid " Cannot change to that email."
|
msgid " Cannot change to that email."
|
||||||
msgstr "Ändern der E-Mail nicht möglich. "
|
msgstr "Ändern der E-Mail nicht möglich. "
|
||||||
|
|
||||||
#: ../../mod/settings.php:468 ../../addon/facebook/facebook.php:480
|
#: ../../mod/settings.php:448
|
||||||
|
msgid "Private forum has no privacy permissions. Using default privacy group."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../mod/settings.php:452
|
||||||
|
msgid "Private forum has no privacy permissions and no default privacy group."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../mod/settings.php:482 ../../addon/facebook/facebook.php:488
|
||||||
#: ../../addon/impressum/impressum.php:77
|
#: ../../addon/impressum/impressum.php:77
|
||||||
#: ../../addon/openstreetmap/openstreetmap.php:80
|
#: ../../addon/openstreetmap/openstreetmap.php:80
|
||||||
#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105
|
#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105
|
||||||
#: ../../addon/twitter/twitter.php:370
|
#: ../../addon/twitter/twitter.php:376
|
||||||
msgid "Settings updated."
|
msgid "Settings updated."
|
||||||
msgstr "Einstellungen aktualisiert."
|
msgstr "Einstellungen aktualisiert."
|
||||||
|
|
||||||
#: ../../mod/settings.php:538 ../../mod/settings.php:564
|
#: ../../mod/settings.php:552 ../../mod/settings.php:578
|
||||||
#: ../../mod/settings.php:600
|
#: ../../mod/settings.php:614
|
||||||
msgid "Add application"
|
msgid "Add application"
|
||||||
msgstr "Programm hinzufügen"
|
msgstr "Programm hinzufügen"
|
||||||
|
|
||||||
#: ../../mod/settings.php:542 ../../mod/settings.php:568
|
#: ../../mod/settings.php:556 ../../mod/settings.php:582
|
||||||
#: ../../addon/statusnet/statusnet.php:547
|
#: ../../addon/statusnet/statusnet.php:555
|
||||||
msgid "Consumer Key"
|
msgid "Consumer Key"
|
||||||
msgstr "Consumer Key"
|
msgstr "Consumer Key"
|
||||||
|
|
||||||
#: ../../mod/settings.php:543 ../../mod/settings.php:569
|
#: ../../mod/settings.php:557 ../../mod/settings.php:583
|
||||||
#: ../../addon/statusnet/statusnet.php:546
|
#: ../../addon/statusnet/statusnet.php:554
|
||||||
msgid "Consumer Secret"
|
msgid "Consumer Secret"
|
||||||
msgstr "Consumer Secret"
|
msgstr "Consumer Secret"
|
||||||
|
|
||||||
#: ../../mod/settings.php:544 ../../mod/settings.php:570
|
#: ../../mod/settings.php:558 ../../mod/settings.php:584
|
||||||
msgid "Redirect"
|
msgid "Redirect"
|
||||||
msgstr "Umleiten"
|
msgstr "Umleiten"
|
||||||
|
|
||||||
#: ../../mod/settings.php:545 ../../mod/settings.php:571
|
#: ../../mod/settings.php:559 ../../mod/settings.php:585
|
||||||
msgid "Icon url"
|
msgid "Icon url"
|
||||||
msgstr "Icon URL"
|
msgstr "Icon URL"
|
||||||
|
|
||||||
#: ../../mod/settings.php:556
|
#: ../../mod/settings.php:570
|
||||||
msgid "You can't edit this application."
|
msgid "You can't edit this application."
|
||||||
msgstr "Du kannst dieses Programm nicht bearbeiten."
|
msgstr "Du kannst dieses Programm nicht bearbeiten."
|
||||||
|
|
||||||
#: ../../mod/settings.php:599
|
#: ../../mod/settings.php:613
|
||||||
msgid "Connected Apps"
|
msgid "Connected Apps"
|
||||||
msgstr "Verbundene Programme"
|
msgstr "Verbundene Programme"
|
||||||
|
|
||||||
#: ../../mod/settings.php:603
|
#: ../../mod/settings.php:617
|
||||||
msgid "Client key starts with"
|
msgid "Client key starts with"
|
||||||
msgstr "Anwender Schlüssel beginnt mit"
|
msgstr "Anwenderschlüssel beginnt mit"
|
||||||
|
|
||||||
#: ../../mod/settings.php:604
|
#: ../../mod/settings.php:618
|
||||||
msgid "No name"
|
msgid "No name"
|
||||||
msgstr "Kein Name"
|
msgstr "Kein Name"
|
||||||
|
|
||||||
#: ../../mod/settings.php:605
|
#: ../../mod/settings.php:619
|
||||||
msgid "Remove authorization"
|
msgid "Remove authorization"
|
||||||
msgstr "Autorisierung entziehen"
|
msgstr "Autorisierung entziehen"
|
||||||
|
|
||||||
#: ../../mod/settings.php:616
|
#: ../../mod/settings.php:630
|
||||||
msgid "No Plugin settings configured"
|
msgid "No Plugin settings configured"
|
||||||
msgstr "Keine Plugin-Einstellungen konfiguriert"
|
msgstr "Keine Plugin-Einstellungen konfiguriert"
|
||||||
|
|
||||||
#: ../../mod/settings.php:624 ../../addon/widgets/widgets.php:123
|
#: ../../mod/settings.php:638 ../../addon/widgets/widgets.php:123
|
||||||
msgid "Plugin Settings"
|
msgid "Plugin Settings"
|
||||||
msgstr "Plugin-Einstellungen"
|
msgstr "Plugin-Einstellungen"
|
||||||
|
|
||||||
#: ../../mod/settings.php:636 ../../mod/settings.php:637
|
#: ../../mod/settings.php:650 ../../mod/settings.php:651
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Built-in support for %s connectivity is %s"
|
msgid "Built-in support for %s connectivity is %s"
|
||||||
msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s"
|
msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s"
|
||||||
|
|
||||||
#: ../../mod/settings.php:636 ../../mod/settings.php:637
|
#: ../../mod/settings.php:650 ../../mod/settings.php:651
|
||||||
msgid "enabled"
|
msgid "enabled"
|
||||||
msgstr "eingeschaltet"
|
msgstr "eingeschaltet"
|
||||||
|
|
||||||
#: ../../mod/settings.php:636 ../../mod/settings.php:637
|
#: ../../mod/settings.php:650 ../../mod/settings.php:651
|
||||||
msgid "disabled"
|
msgid "disabled"
|
||||||
msgstr "ausgeschaltet"
|
msgstr "ausgeschaltet"
|
||||||
|
|
||||||
#: ../../mod/settings.php:637
|
#: ../../mod/settings.php:651
|
||||||
msgid "StatusNet"
|
msgid "StatusNet"
|
||||||
msgstr "StatusNet"
|
msgstr "StatusNet"
|
||||||
|
|
||||||
#: ../../mod/settings.php:667
|
#: ../../mod/settings.php:681
|
||||||
msgid "Connector Settings"
|
msgid "Connector Settings"
|
||||||
msgstr "Verbindungs-Einstellungen"
|
msgstr "Verbindungs-Einstellungen"
|
||||||
|
|
||||||
#: ../../mod/settings.php:672
|
#: ../../mod/settings.php:686
|
||||||
msgid "Email/Mailbox Setup"
|
msgid "Email/Mailbox Setup"
|
||||||
msgstr "E-Mail/Postfach-Einstellungen"
|
msgstr "E-Mail/Postfach-Einstellungen"
|
||||||
|
|
||||||
#: ../../mod/settings.php:673
|
#: ../../mod/settings.php:687
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you wish to communicate with email contacts using this service "
|
"If you wish to communicate with email contacts using this service "
|
||||||
"(optional), please specify how to connect to your mailbox."
|
"(optional), please specify how to connect to your mailbox."
|
||||||
msgstr "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an."
|
msgstr "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an."
|
||||||
|
|
||||||
#: ../../mod/settings.php:674
|
#: ../../mod/settings.php:688
|
||||||
msgid "Last successful email check:"
|
msgid "Last successful email check:"
|
||||||
msgstr "Letzter erfolgreicher Email Check"
|
msgstr "Letzter erfolgreicher Email Check"
|
||||||
|
|
||||||
#: ../../mod/settings.php:675
|
#: ../../mod/settings.php:689
|
||||||
msgid "Email access is disabled on this site."
|
msgid "Email access is disabled on this site."
|
||||||
msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
|
msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
|
||||||
|
|
||||||
#: ../../mod/settings.php:676
|
#: ../../mod/settings.php:690
|
||||||
msgid "IMAP server name:"
|
msgid "IMAP server name:"
|
||||||
msgstr "IMAP-Server-Name:"
|
msgstr "IMAP-Server-Name:"
|
||||||
|
|
||||||
#: ../../mod/settings.php:677
|
#: ../../mod/settings.php:691
|
||||||
msgid "IMAP port:"
|
msgid "IMAP port:"
|
||||||
msgstr "IMAP-Port:"
|
msgstr "IMAP-Port:"
|
||||||
|
|
||||||
#: ../../mod/settings.php:678
|
#: ../../mod/settings.php:692
|
||||||
msgid "Security:"
|
msgid "Security:"
|
||||||
msgstr "Sicherheit:"
|
msgstr "Sicherheit:"
|
||||||
|
|
||||||
#: ../../mod/settings.php:678 ../../mod/settings.php:683
|
#: ../../mod/settings.php:692 ../../mod/settings.php:697
|
||||||
msgid "None"
|
msgid "None"
|
||||||
msgstr "Keine"
|
msgstr "Keine"
|
||||||
|
|
||||||
#: ../../mod/settings.php:679
|
#: ../../mod/settings.php:693
|
||||||
msgid "Email login name:"
|
msgid "Email login name:"
|
||||||
msgstr "E-Mail-Login-Name:"
|
msgstr "E-Mail-Login-Name:"
|
||||||
|
|
||||||
#: ../../mod/settings.php:680
|
#: ../../mod/settings.php:694
|
||||||
msgid "Email password:"
|
msgid "Email password:"
|
||||||
msgstr "E-Mail-Passwort:"
|
msgstr "E-Mail-Passwort:"
|
||||||
|
|
||||||
#: ../../mod/settings.php:681
|
#: ../../mod/settings.php:695
|
||||||
msgid "Reply-to address:"
|
msgid "Reply-to address:"
|
||||||
msgstr "Reply-to Adresse:"
|
msgstr "Reply-to Adresse:"
|
||||||
|
|
||||||
#: ../../mod/settings.php:682
|
#: ../../mod/settings.php:696
|
||||||
msgid "Send public posts to all email contacts:"
|
msgid "Send public posts to all email contacts:"
|
||||||
msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
|
msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
|
||||||
|
|
||||||
#: ../../mod/settings.php:683
|
#: ../../mod/settings.php:697
|
||||||
msgid "Action after import:"
|
msgid "Action after import:"
|
||||||
msgstr "Aktion nach Import:"
|
msgstr "Aktion nach Import:"
|
||||||
|
|
||||||
#: ../../mod/settings.php:683
|
#: ../../mod/settings.php:697
|
||||||
msgid "Mark as seen"
|
msgid "Mark as seen"
|
||||||
msgstr "Als gelesen markieren"
|
msgstr "Als gelesen markieren"
|
||||||
|
|
||||||
#: ../../mod/settings.php:683
|
#: ../../mod/settings.php:697
|
||||||
msgid "Move to folder"
|
msgid "Move to folder"
|
||||||
msgstr "In einen Ordner verschieben"
|
msgstr "In einen Ordner verschieben"
|
||||||
|
|
||||||
#: ../../mod/settings.php:684
|
#: ../../mod/settings.php:698
|
||||||
msgid "Move to folder:"
|
msgid "Move to folder:"
|
||||||
msgstr "In diesen Ordner verschieben:"
|
msgstr "In diesen Ordner verschieben:"
|
||||||
|
|
||||||
#: ../../mod/settings.php:744
|
#: ../../mod/settings.php:758
|
||||||
msgid "Display Settings"
|
msgid "Display Settings"
|
||||||
msgstr "Anzeige Einstellungen"
|
msgstr "Anzeige-Einstellungen"
|
||||||
|
|
||||||
#: ../../mod/settings.php:750
|
#: ../../mod/settings.php:764
|
||||||
msgid "Display Theme:"
|
msgid "Display Theme:"
|
||||||
msgstr "Theme:"
|
msgstr "Theme:"
|
||||||
|
|
||||||
#: ../../mod/settings.php:751
|
#: ../../mod/settings.php:765
|
||||||
msgid "Update browser every xx seconds"
|
msgid "Update browser every xx seconds"
|
||||||
msgstr "Browser alle xx Sekunden aktualisieren"
|
msgstr "Browser alle xx Sekunden aktualisieren"
|
||||||
|
|
||||||
#: ../../mod/settings.php:751
|
#: ../../mod/settings.php:765
|
||||||
msgid "Minimum of 10 seconds, no maximum"
|
msgid "Minimum of 10 seconds, no maximum"
|
||||||
msgstr "Minimal 10 Sekunden, kein Maximum"
|
msgstr "Minimal 10 Sekunden, kein Maximum"
|
||||||
|
|
||||||
#: ../../mod/settings.php:752
|
#: ../../mod/settings.php:766
|
||||||
msgid "Number of items to display on the network page:"
|
msgid "Number of items to display on the network page:"
|
||||||
msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
|
msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
|
||||||
|
|
||||||
#: ../../mod/settings.php:752
|
#: ../../mod/settings.php:766
|
||||||
msgid "Maximum of 100 items"
|
msgid "Maximum of 100 items"
|
||||||
msgstr "Maximal 100 Beiträge"
|
msgstr "Maximal 100 Beiträge"
|
||||||
|
|
||||||
#: ../../mod/settings.php:753
|
#: ../../mod/settings.php:767
|
||||||
msgid "Don't show emoticons"
|
msgid "Don't show emoticons"
|
||||||
msgstr "Keine Smilies anzeigen"
|
msgstr "Keine Smilies anzeigen"
|
||||||
|
|
||||||
#: ../../mod/settings.php:821 ../../mod/admin.php:180 ../../mod/admin.php:621
|
#: ../../mod/settings.php:835 ../../mod/admin.php:180 ../../mod/admin.php:621
|
||||||
msgid "Normal Account"
|
msgid "Normal Account"
|
||||||
msgstr "Normaler Account"
|
msgstr "Normaler Account"
|
||||||
|
|
||||||
#: ../../mod/settings.php:822
|
#: ../../mod/settings.php:836
|
||||||
msgid "This account is a normal personal profile"
|
msgid "This account is a normal personal profile"
|
||||||
msgstr "Dieser Account ist ein normales persönliches Profil"
|
msgstr "Dieser Account ist ein normales persönliches Profil"
|
||||||
|
|
||||||
#: ../../mod/settings.php:825 ../../mod/admin.php:181 ../../mod/admin.php:622
|
#: ../../mod/settings.php:839 ../../mod/admin.php:181 ../../mod/admin.php:622
|
||||||
msgid "Soapbox Account"
|
msgid "Soapbox Account"
|
||||||
msgstr "Sandkasten-Account"
|
msgstr "Sandkasten-Account"
|
||||||
|
|
||||||
#: ../../mod/settings.php:826
|
#: ../../mod/settings.php:840
|
||||||
msgid "Automatically approve all connection/friend requests as read-only fans"
|
msgid "Automatically approve all connection/friend requests as read-only fans"
|
||||||
msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
|
msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
|
||||||
|
|
||||||
#: ../../mod/settings.php:829 ../../mod/admin.php:182 ../../mod/admin.php:623
|
#: ../../mod/settings.php:843 ../../mod/admin.php:182 ../../mod/admin.php:623
|
||||||
msgid "Community/Celebrity Account"
|
msgid "Community/Celebrity Account"
|
||||||
msgstr "Gemeinschafts/Promi-Account"
|
msgstr "Gemeinschafts-/Promi-Account"
|
||||||
|
|
||||||
#: ../../mod/settings.php:830
|
#: ../../mod/settings.php:844
|
||||||
msgid ""
|
msgid ""
|
||||||
"Automatically approve all connection/friend requests as read-write fans"
|
"Automatically approve all connection/friend requests as read-write fans"
|
||||||
msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert"
|
msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert"
|
||||||
|
|
||||||
#: ../../mod/settings.php:833 ../../mod/admin.php:183 ../../mod/admin.php:624
|
#: ../../mod/settings.php:847 ../../mod/admin.php:183 ../../mod/admin.php:624
|
||||||
msgid "Automatic Friend Account"
|
msgid "Automatic Friend Account"
|
||||||
msgstr "Automatischer Freundesaccount"
|
msgstr "Automatischer Freundesaccount"
|
||||||
|
|
||||||
#: ../../mod/settings.php:834
|
#: ../../mod/settings.php:848
|
||||||
msgid "Automatically approve all connection/friend requests as friends"
|
msgid "Automatically approve all connection/friend requests as friends"
|
||||||
msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
|
msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
|
||||||
|
|
||||||
#: ../../mod/settings.php:844
|
#: ../../mod/settings.php:851
|
||||||
|
msgid "Private Forum"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../mod/settings.php:852
|
||||||
|
msgid "Private forum - approved members only [Experimental]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../mod/settings.php:865
|
||||||
msgid "OpenID:"
|
msgid "OpenID:"
|
||||||
msgstr "OpenID:"
|
msgstr "OpenID:"
|
||||||
|
|
||||||
#: ../../mod/settings.php:844
|
#: ../../mod/settings.php:865
|
||||||
msgid "(Optional) Allow this OpenID to login to this account."
|
msgid "(Optional) Allow this OpenID to login to this account."
|
||||||
msgstr "(Optional) Erlaube die Anmeldung für diesen Account mit dieser OpenID."
|
msgstr "(Optional) Erlaube die Anmeldung für diesen Account mit dieser OpenID."
|
||||||
|
|
||||||
#: ../../mod/settings.php:854
|
#: ../../mod/settings.php:875
|
||||||
msgid "Publish your default profile in your local site directory?"
|
msgid "Publish your default profile in your local site directory?"
|
||||||
msgstr "Veröffentliche dein Standardprofil im Verzeichnis der lokalen Seite?"
|
msgstr "Veröffentliche dein Standardprofil im Verzeichnis der lokalen Seite?"
|
||||||
|
|
||||||
#: ../../mod/settings.php:860
|
#: ../../mod/settings.php:881
|
||||||
msgid "Publish your default profile in the global social directory?"
|
msgid "Publish your default profile in the global social directory?"
|
||||||
msgstr "Veröffentliche dein Standardprofil im weltweiten Verzeichnis?"
|
msgstr "Veröffentliche dein Standardprofil im weltweiten Verzeichnis?"
|
||||||
|
|
||||||
#: ../../mod/settings.php:868
|
#: ../../mod/settings.php:889
|
||||||
msgid "Hide your contact/friend list from viewers of your default profile?"
|
msgid "Hide your contact/friend list from viewers of your default profile?"
|
||||||
msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
|
msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
|
||||||
|
|
||||||
#: ../../mod/settings.php:872
|
#: ../../mod/settings.php:893
|
||||||
msgid "Hide your profile details from unknown viewers?"
|
msgid "Hide your profile details from unknown viewers?"
|
||||||
msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
|
msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
|
||||||
|
|
||||||
#: ../../mod/settings.php:877
|
#: ../../mod/settings.php:898
|
||||||
msgid "Allow friends to post to your profile page?"
|
msgid "Allow friends to post to your profile page?"
|
||||||
msgstr "Deinen Kontakten erlauben, auf deine Pinnwand zu schreiben?"
|
msgstr "Deinen Kontakten erlauben, auf deine Pinnwand zu schreiben?"
|
||||||
|
|
||||||
#: ../../mod/settings.php:883
|
#: ../../mod/settings.php:904
|
||||||
msgid "Allow friends to tag your posts?"
|
msgid "Allow friends to tag your posts?"
|
||||||
msgstr "Deinen Kontakten erlauben, deine Beiträge mit Schlagwörtern zu versehen?"
|
msgstr "Deinen Kontakten erlauben, deine Beiträge mit Schlagwörtern zu versehen?"
|
||||||
|
|
||||||
#: ../../mod/settings.php:889
|
#: ../../mod/settings.php:910
|
||||||
msgid "Allow us to suggest you as a potential friend to new members?"
|
msgid "Allow us to suggest you as a potential friend to new members?"
|
||||||
msgstr "Erlaube uns dich als potentiellen Kontakt für neue Mitglieder vorzuschlagen?"
|
msgstr "Erlaube uns dich als potentiellen Kontakt für neue Mitglieder vorzuschlagen?"
|
||||||
|
|
||||||
#: ../../mod/settings.php:895
|
#: ../../mod/settings.php:916
|
||||||
msgid "Permit unknown people to send you private mail?"
|
msgid "Permit unknown people to send you private mail?"
|
||||||
msgstr "Erlaube es Unbekannten dir private Nachrichten zu schicken?"
|
msgstr "Erlaube es Unbekannten dir private Nachrichten zu schicken?"
|
||||||
|
|
||||||
#: ../../mod/settings.php:906
|
#: ../../mod/settings.php:927
|
||||||
msgid "Profile is <strong>not published</strong>."
|
msgid "Profile is <strong>not published</strong>."
|
||||||
msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
|
msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
|
||||||
|
|
||||||
#: ../../mod/settings.php:912 ../../mod/profile_photo.php:211
|
#: ../../mod/settings.php:933 ../../mod/profile_photo.php:211
|
||||||
msgid "or"
|
msgid "or"
|
||||||
msgstr "oder"
|
msgstr "oder"
|
||||||
|
|
||||||
#: ../../mod/settings.php:917
|
#: ../../mod/settings.php:938
|
||||||
msgid "Your Identity Address is"
|
msgid "Your Identity Address is"
|
||||||
msgstr "Die Adresse deines Profils lautet:"
|
msgstr "Die Adresse deines Profils lautet:"
|
||||||
|
|
||||||
#: ../../mod/settings.php:928
|
#: ../../mod/settings.php:949
|
||||||
msgid "Automatically expire posts after this many days:"
|
msgid "Automatically expire posts after this many days:"
|
||||||
msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen"
|
msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen"
|
||||||
|
|
||||||
#: ../../mod/settings.php:928
|
#: ../../mod/settings.php:949
|
||||||
msgid "If empty, posts will not expire. Expired posts will be deleted"
|
msgid "If empty, posts will not expire. Expired posts will be deleted"
|
||||||
msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht."
|
msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht."
|
||||||
|
|
||||||
#: ../../mod/settings.php:929
|
#: ../../mod/settings.php:950
|
||||||
msgid "Advanced expiration settings"
|
msgid "Advanced expiration settings"
|
||||||
msgstr "Erweiterte Verfallseinstellungen"
|
msgstr "Erweiterte Verfallseinstellungen"
|
||||||
|
|
||||||
#: ../../mod/settings.php:930
|
#: ../../mod/settings.php:951
|
||||||
msgid "Advanced Expiration"
|
msgid "Advanced Expiration"
|
||||||
msgstr "Erweitertes Verfallen"
|
msgstr "Erweitertes Verfallen"
|
||||||
|
|
||||||
#: ../../mod/settings.php:931
|
#: ../../mod/settings.php:952
|
||||||
msgid "Expire posts:"
|
msgid "Expire posts:"
|
||||||
msgstr "Beiträge verfallen lassen:"
|
msgstr "Beiträge verfallen lassen:"
|
||||||
|
|
||||||
#: ../../mod/settings.php:932
|
#: ../../mod/settings.php:953
|
||||||
msgid "Expire personal notes:"
|
msgid "Expire personal notes:"
|
||||||
msgstr "Persönliche Notizen verfallen lassen:"
|
msgstr "Persönliche Notizen verfallen lassen:"
|
||||||
|
|
||||||
#: ../../mod/settings.php:933
|
#: ../../mod/settings.php:954
|
||||||
msgid "Expire starred posts:"
|
msgid "Expire starred posts:"
|
||||||
msgstr "Markierte Beiträge verfallen lassen:"
|
msgstr "Markierte Beiträge verfallen lassen:"
|
||||||
|
|
||||||
#: ../../mod/settings.php:934
|
#: ../../mod/settings.php:955
|
||||||
msgid "Expire photos:"
|
msgid "Expire photos:"
|
||||||
msgstr "Fotos verfallen lassen:"
|
msgstr "Fotos verfallen lassen:"
|
||||||
|
|
||||||
#: ../../mod/settings.php:938
|
#: ../../mod/settings.php:962
|
||||||
msgid "Account Settings"
|
msgid "Account Settings"
|
||||||
msgstr "Account-Einstellungen"
|
msgstr "Account-Einstellungen"
|
||||||
|
|
||||||
#: ../../mod/settings.php:947
|
#: ../../mod/settings.php:970
|
||||||
msgid "Password Settings"
|
msgid "Password Settings"
|
||||||
msgstr "Passwort-Einstellungen"
|
msgstr "Passwort-Einstellungen"
|
||||||
|
|
||||||
#: ../../mod/settings.php:948
|
#: ../../mod/settings.php:971
|
||||||
msgid "New Password:"
|
msgid "New Password:"
|
||||||
msgstr "Neues Passwort:"
|
msgstr "Neues Passwort:"
|
||||||
|
|
||||||
#: ../../mod/settings.php:949
|
#: ../../mod/settings.php:972
|
||||||
msgid "Confirm:"
|
msgid "Confirm:"
|
||||||
msgstr "Bestätigen:"
|
msgstr "Bestätigen:"
|
||||||
|
|
||||||
#: ../../mod/settings.php:949
|
#: ../../mod/settings.php:972
|
||||||
msgid "Leave password fields blank unless changing"
|
msgid "Leave password fields blank unless changing"
|
||||||
msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern"
|
msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern"
|
||||||
|
|
||||||
#: ../../mod/settings.php:953
|
#: ../../mod/settings.php:976
|
||||||
msgid "Basic Settings"
|
msgid "Basic Settings"
|
||||||
msgstr "Grundeinstellungen"
|
msgstr "Grundeinstellungen"
|
||||||
|
|
||||||
#: ../../mod/settings.php:954 ../../include/profile_advanced.php:15
|
#: ../../mod/settings.php:977 ../../include/profile_advanced.php:15
|
||||||
msgid "Full Name:"
|
msgid "Full Name:"
|
||||||
msgstr "Kompletter Name:"
|
msgstr "Kompletter Name:"
|
||||||
|
|
||||||
#: ../../mod/settings.php:955
|
#: ../../mod/settings.php:978
|
||||||
msgid "Email Address:"
|
msgid "Email Address:"
|
||||||
msgstr "Emailadresse:"
|
msgstr "Emailadresse:"
|
||||||
|
|
||||||
#: ../../mod/settings.php:956
|
#: ../../mod/settings.php:979
|
||||||
msgid "Your Timezone:"
|
msgid "Your Timezone:"
|
||||||
msgstr "Deine Zeitzone:"
|
msgstr "Deine Zeitzone:"
|
||||||
|
|
||||||
#: ../../mod/settings.php:957
|
#: ../../mod/settings.php:980
|
||||||
msgid "Default Post Location:"
|
msgid "Default Post Location:"
|
||||||
msgstr "Standardstandort:"
|
msgstr "Standardstandort:"
|
||||||
|
|
||||||
#: ../../mod/settings.php:958
|
#: ../../mod/settings.php:981
|
||||||
msgid "Use Browser Location:"
|
msgid "Use Browser Location:"
|
||||||
msgstr "Verwende den Standort des Browsers:"
|
msgstr "Verwende den Standort des Browsers:"
|
||||||
|
|
||||||
#: ../../mod/settings.php:961
|
#: ../../mod/settings.php:984
|
||||||
msgid "Security and Privacy Settings"
|
msgid "Security and Privacy Settings"
|
||||||
msgstr "Sicherheits- und Privatsphäre-Einstellungen"
|
msgstr "Sicherheits- und Privatsphäre-Einstellungen"
|
||||||
|
|
||||||
#: ../../mod/settings.php:963
|
#: ../../mod/settings.php:986
|
||||||
msgid "Maximum Friend Requests/Day:"
|
msgid "Maximum Friend Requests/Day:"
|
||||||
msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:"
|
msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:"
|
||||||
|
|
||||||
#: ../../mod/settings.php:963 ../../mod/settings.php:978
|
#: ../../mod/settings.php:986 ../../mod/settings.php:1005
|
||||||
msgid "(to prevent spam abuse)"
|
msgid "(to prevent spam abuse)"
|
||||||
msgstr "(um SPAM zu vermeiden)"
|
msgstr "(um SPAM zu vermeiden)"
|
||||||
|
|
||||||
#: ../../mod/settings.php:964
|
#: ../../mod/settings.php:987
|
||||||
msgid "Default Post Permissions"
|
msgid "Default Post Permissions"
|
||||||
msgstr "Standard-Zugriffsrechte für Beiträge"
|
msgstr "Standard-Zugriffsrechte für Beiträge"
|
||||||
|
|
||||||
#: ../../mod/settings.php:965
|
#: ../../mod/settings.php:988
|
||||||
msgid "(click to open/close)"
|
msgid "(click to open/close)"
|
||||||
msgstr "(klicke zum öffnen/schließen)"
|
msgstr "(klicke zum öffnen/schließen)"
|
||||||
|
|
||||||
#: ../../mod/settings.php:978
|
#: ../../mod/settings.php:1005
|
||||||
msgid "Maximum private messages per day from unknown people:"
|
msgid "Maximum private messages per day from unknown people:"
|
||||||
msgstr "Maximale Anzahl von privaten Nachrichten, die dir unbekannte Personen pro Tag senden dürfen:"
|
msgstr "Maximale Anzahl von privaten Nachrichten, die dir unbekannte Personen pro Tag senden dürfen:"
|
||||||
|
|
||||||
#: ../../mod/settings.php:981
|
#: ../../mod/settings.php:1008
|
||||||
msgid "Notification Settings"
|
msgid "Notification Settings"
|
||||||
msgstr "Benachrichtigungseinstellungen"
|
msgstr "Benachrichtigungseinstellungen"
|
||||||
|
|
||||||
#: ../../mod/settings.php:982
|
#: ../../mod/settings.php:1009
|
||||||
msgid "By default post a status message when:"
|
msgid "By default post a status message when:"
|
||||||
msgstr "Standardmäßig eine Status-Nachricht posten wenn:"
|
msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
|
||||||
|
|
||||||
#: ../../mod/settings.php:983
|
#: ../../mod/settings.php:1010
|
||||||
msgid "accepting a friend request"
|
msgid "accepting a friend request"
|
||||||
msgstr "– du eine Kontaktanfrage akzeptierst"
|
msgstr "– du eine Kontaktanfrage akzeptierst"
|
||||||
|
|
||||||
#: ../../mod/settings.php:984
|
#: ../../mod/settings.php:1011
|
||||||
msgid "joining a forum/community"
|
msgid "joining a forum/community"
|
||||||
msgstr "– du einem Forum/einer Gemeinschaftsseite beitrittst"
|
msgstr "– du einem Forum/einer Gemeinschaftsseite beitrittst"
|
||||||
|
|
||||||
#: ../../mod/settings.php:985
|
#: ../../mod/settings.php:1012
|
||||||
msgid "making an <em>interesting</em> profile change"
|
msgid "making an <em>interesting</em> profile change"
|
||||||
msgstr "– du eine <em>interessante</em> Änderung an deinem Profil durchführst"
|
msgstr "– du eine <em>interessante</em> Änderung an deinem Profil durchführst"
|
||||||
|
|
||||||
#: ../../mod/settings.php:986
|
#: ../../mod/settings.php:1013
|
||||||
msgid "Send a notification email when:"
|
msgid "Send a notification email when:"
|
||||||
msgstr "Benachrichtigungs-E-Mail senden wenn:"
|
msgstr "Benachrichtigungs-E-Mail senden wenn:"
|
||||||
|
|
||||||
#: ../../mod/settings.php:987
|
#: ../../mod/settings.php:1014
|
||||||
msgid "You receive an introduction"
|
msgid "You receive an introduction"
|
||||||
msgstr "– du eine Kontaktanfrage erhältst"
|
msgstr "– du eine Kontaktanfrage erhältst"
|
||||||
|
|
||||||
#: ../../mod/settings.php:988
|
#: ../../mod/settings.php:1015
|
||||||
msgid "Your introductions are confirmed"
|
msgid "Your introductions are confirmed"
|
||||||
msgstr "– eine deiner Kontaktanfragen akzeptiert wurde"
|
msgstr "– eine deiner Kontaktanfragen akzeptiert wurde"
|
||||||
|
|
||||||
#: ../../mod/settings.php:989
|
#: ../../mod/settings.php:1016
|
||||||
msgid "Someone writes on your profile wall"
|
msgid "Someone writes on your profile wall"
|
||||||
msgstr "– jemand etwas auf deine Pinnwand schreibt"
|
msgstr "– jemand etwas auf deine Pinnwand schreibt"
|
||||||
|
|
||||||
#: ../../mod/settings.php:990
|
#: ../../mod/settings.php:1017
|
||||||
msgid "Someone writes a followup comment"
|
msgid "Someone writes a followup comment"
|
||||||
msgstr "– jemand auch einen Kommentar verfasst"
|
msgstr "– jemand auch einen Kommentar verfasst"
|
||||||
|
|
||||||
#: ../../mod/settings.php:991
|
#: ../../mod/settings.php:1018
|
||||||
msgid "You receive a private message"
|
msgid "You receive a private message"
|
||||||
msgstr "– du eine private Nachricht erhältst"
|
msgstr "– du eine private Nachricht erhältst"
|
||||||
|
|
||||||
#: ../../mod/settings.php:992
|
#: ../../mod/settings.php:1019
|
||||||
msgid "You receive a friend suggestion"
|
msgid "You receive a friend suggestion"
|
||||||
msgstr "- du eine Empfehlung erhältst"
|
msgstr "- du eine Empfehlung erhältst"
|
||||||
|
|
||||||
#: ../../mod/settings.php:993
|
#: ../../mod/settings.php:1020
|
||||||
msgid "You are tagged in a post"
|
msgid "You are tagged in a post"
|
||||||
msgstr "- du in einem Beitrag erwähnt wurdest"
|
msgstr "- du in einem Beitrag erwähnt wurdest"
|
||||||
|
|
||||||
#: ../../mod/settings.php:996
|
#: ../../mod/settings.php:1023
|
||||||
msgid "Advanced Page Settings"
|
msgid "Advanced Page Settings"
|
||||||
msgstr "Erweiterte Seiten-Einstellungen"
|
msgstr "Erweiterte Seiten-Einstellungen"
|
||||||
|
|
||||||
|
|
@ -2283,7 +2300,7 @@ msgstr "Begriff entfernen"
|
||||||
msgid "Saved Searches"
|
msgid "Saved Searches"
|
||||||
msgstr "Gespeicherte Suchen"
|
msgstr "Gespeicherte Suchen"
|
||||||
|
|
||||||
#: ../../mod/network.php:92 ../../include/group.php:217
|
#: ../../mod/network.php:92 ../../include/group.php:244
|
||||||
msgid "add"
|
msgid "add"
|
||||||
msgstr "hinzufügen"
|
msgstr "hinzufügen"
|
||||||
|
|
||||||
|
|
@ -2367,12 +2384,12 @@ msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gela
|
||||||
msgid "Invalid contact."
|
msgid "Invalid contact."
|
||||||
msgstr "Ungültiger Kontakt."
|
msgstr "Ungültiger Kontakt."
|
||||||
|
|
||||||
#: ../../mod/notes.php:44 ../../boot.php:1509
|
#: ../../mod/notes.php:44 ../../boot.php:1528
|
||||||
msgid "Personal Notes"
|
msgid "Personal Notes"
|
||||||
msgstr "Persönliche Notizen"
|
msgstr "Persönliche Notizen"
|
||||||
|
|
||||||
#: ../../mod/notes.php:63 ../../mod/filer.php:30
|
#: ../../mod/notes.php:63 ../../mod/filer.php:30
|
||||||
#: ../../addon/facebook/facebook.php:748
|
#: ../../addon/facebook/facebook.php:756
|
||||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:147
|
#: ../../addon/privacy_image_cache/privacy_image_cache.php:147
|
||||||
#: ../../include/text.php:652
|
#: ../../include/text.php:652
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
|
|
@ -2537,7 +2554,7 @@ msgid ""
|
||||||
"interest, and provide suggestions based on network relationships. On a brand"
|
"interest, and provide suggestions based on network relationships. On a brand"
|
||||||
" new site, friend suggestions will usually begin to be populated within 24 "
|
" new site, friend suggestions will usually begin to be populated within 24 "
|
||||||
"hours."
|
"hours."
|
||||||
msgstr "Im seitlichen Bedienfeld der Kontakte-Seite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
|
msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
|
||||||
|
|
||||||
#: ../../mod/newmember.php:44
|
#: ../../mod/newmember.php:44
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -2618,7 +2635,7 @@ msgstr "Editor für die Profil-Sichtbarkeit"
|
||||||
|
|
||||||
#: ../../mod/profperm.php:103 ../../view/theme/diabook/theme.php:123
|
#: ../../mod/profperm.php:103 ../../view/theme/diabook/theme.php:123
|
||||||
#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:74
|
#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:74
|
||||||
#: ../../include/nav.php:50 ../../boot.php:1488
|
#: ../../include/nav.php:50 ../../boot.php:1507
|
||||||
msgid "Profile"
|
msgid "Profile"
|
||||||
msgstr "Profil"
|
msgstr "Profil"
|
||||||
|
|
||||||
|
|
@ -2684,7 +2701,7 @@ msgid ""
|
||||||
"must also begin with a letter."
|
"must also begin with a letter."
|
||||||
msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen."
|
msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen."
|
||||||
|
|
||||||
#: ../../mod/register.php:153 ../../mod/register.php:264
|
#: ../../mod/register.php:153 ../../mod/register.php:243
|
||||||
msgid "Nickname is already registered. Please choose another."
|
msgid "Nickname is already registered. Please choose another."
|
||||||
msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
|
msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
|
||||||
|
|
||||||
|
|
@ -2694,124 +2711,124 @@ msgid ""
|
||||||
"another."
|
"another."
|
||||||
msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
|
msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
|
||||||
|
|
||||||
#: ../../mod/register.php:182
|
#: ../../mod/register.php:179
|
||||||
msgid "SERIOUS ERROR: Generation of security keys failed."
|
msgid "SERIOUS ERROR: Generation of security keys failed."
|
||||||
msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
|
msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
|
||||||
|
|
||||||
#: ../../mod/register.php:250
|
#: ../../mod/register.php:229
|
||||||
msgid "An error occurred during registration. Please try again."
|
msgid "An error occurred during registration. Please try again."
|
||||||
msgstr "Wärend der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
|
msgstr "Wärend der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
|
||||||
|
|
||||||
#: ../../mod/register.php:286
|
#: ../../mod/register.php:265
|
||||||
msgid "An error occurred creating your default profile. Please try again."
|
msgid "An error occurred creating your default profile. Please try again."
|
||||||
msgstr "Bei der Erstellung des Standard-Profils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
|
msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
|
||||||
|
|
||||||
#: ../../mod/register.php:386 ../../mod/regmod.php:52
|
#: ../../mod/register.php:365 ../../mod/regmod.php:52
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Registration details for %s"
|
msgid "Registration details for %s"
|
||||||
msgstr "Details der Registration von %s"
|
msgstr "Details der Registration von %s"
|
||||||
|
|
||||||
#: ../../mod/register.php:394
|
#: ../../mod/register.php:373
|
||||||
msgid ""
|
msgid ""
|
||||||
"Registration successful. Please check your email for further instructions."
|
"Registration successful. Please check your email for further instructions."
|
||||||
msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet."
|
msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet."
|
||||||
|
|
||||||
#: ../../mod/register.php:398
|
#: ../../mod/register.php:377
|
||||||
msgid "Failed to send email message. Here is the message that failed."
|
msgid "Failed to send email message. Here is the message that failed."
|
||||||
msgstr "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht gesendet werden konnte."
|
msgstr "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht gesendet werden konnte."
|
||||||
|
|
||||||
#: ../../mod/register.php:403
|
#: ../../mod/register.php:382
|
||||||
msgid "Your registration can not be processed."
|
msgid "Your registration can not be processed."
|
||||||
msgstr "Deine Registrierung konnte nicht verarbeitet werden."
|
msgstr "Deine Registrierung konnte nicht verarbeitet werden."
|
||||||
|
|
||||||
#: ../../mod/register.php:440
|
#: ../../mod/register.php:419
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Registration request at %s"
|
msgid "Registration request at %s"
|
||||||
msgstr "Registrierungsanfrage auf %s"
|
msgstr "Registrierungsanfrage auf %s"
|
||||||
|
|
||||||
#: ../../mod/register.php:449
|
#: ../../mod/register.php:428
|
||||||
msgid "Your registration is pending approval by the site owner."
|
msgid "Your registration is pending approval by the site owner."
|
||||||
msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
|
msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
|
||||||
|
|
||||||
#: ../../mod/register.php:487
|
#: ../../mod/register.php:466
|
||||||
msgid ""
|
msgid ""
|
||||||
"This site has exceeded the number of allowed daily account registrations. "
|
"This site has exceeded the number of allowed daily account registrations. "
|
||||||
"Please try again tomorrow."
|
"Please try again tomorrow."
|
||||||
msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."
|
msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."
|
||||||
|
|
||||||
#: ../../mod/register.php:513
|
#: ../../mod/register.php:492
|
||||||
msgid ""
|
msgid ""
|
||||||
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
|
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
|
||||||
"and clicking 'Register'."
|
"and clicking 'Register'."
|
||||||
msgstr "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst."
|
msgstr "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst."
|
||||||
|
|
||||||
#: ../../mod/register.php:514
|
#: ../../mod/register.php:493
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you are not familiar with OpenID, please leave that field blank and fill "
|
"If you are not familiar with OpenID, please leave that field blank and fill "
|
||||||
"in the rest of the items."
|
"in the rest of the items."
|
||||||
msgstr "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."
|
msgstr "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."
|
||||||
|
|
||||||
#: ../../mod/register.php:515
|
#: ../../mod/register.php:494
|
||||||
msgid "Your OpenID (optional): "
|
msgid "Your OpenID (optional): "
|
||||||
msgstr "Deine OpenID (optional): "
|
msgstr "Deine OpenID (optional): "
|
||||||
|
|
||||||
#: ../../mod/register.php:529
|
#: ../../mod/register.php:508
|
||||||
msgid "Include your profile in member directory?"
|
msgid "Include your profile in member directory?"
|
||||||
msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?"
|
msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?"
|
||||||
|
|
||||||
#: ../../mod/register.php:549
|
#: ../../mod/register.php:528
|
||||||
msgid "Membership on this site is by invitation only."
|
msgid "Membership on this site is by invitation only."
|
||||||
msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
|
msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
|
||||||
|
|
||||||
#: ../../mod/register.php:550
|
#: ../../mod/register.php:529
|
||||||
msgid "Your invitation ID: "
|
msgid "Your invitation ID: "
|
||||||
msgstr "ID deiner Einladung: "
|
msgstr "ID deiner Einladung: "
|
||||||
|
|
||||||
#: ../../mod/register.php:553 ../../mod/admin.php:405
|
#: ../../mod/register.php:532 ../../mod/admin.php:405
|
||||||
msgid "Registration"
|
msgid "Registration"
|
||||||
msgstr "Registrierung"
|
msgstr "Registrierung"
|
||||||
|
|
||||||
#: ../../mod/register.php:561
|
#: ../../mod/register.php:540
|
||||||
msgid "Your Full Name (e.g. Joe Smith): "
|
msgid "Your Full Name (e.g. Joe Smith): "
|
||||||
msgstr "Vollständiger Name (z.B. Max Mustermann): "
|
msgstr "Vollständiger Name (z.B. Max Mustermann): "
|
||||||
|
|
||||||
#: ../../mod/register.php:562
|
#: ../../mod/register.php:541
|
||||||
msgid "Your Email Address: "
|
msgid "Your Email Address: "
|
||||||
msgstr "Deine E-Mail-Adresse: "
|
msgstr "Deine E-Mail-Adresse: "
|
||||||
|
|
||||||
#: ../../mod/register.php:563
|
#: ../../mod/register.php:542
|
||||||
msgid ""
|
msgid ""
|
||||||
"Choose a profile nickname. This must begin with a text character. Your "
|
"Choose a profile nickname. This must begin with a text character. Your "
|
||||||
"profile address on this site will then be "
|
"profile address on this site will then be "
|
||||||
"'<strong>nickname@$sitename</strong>'."
|
"'<strong>nickname@$sitename</strong>'."
|
||||||
msgstr "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird '<strong>spitzname@$sitename</strong>' sein."
|
msgstr "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird '<strong>spitzname@$sitename</strong>' sein."
|
||||||
|
|
||||||
#: ../../mod/register.php:564
|
#: ../../mod/register.php:543
|
||||||
msgid "Choose a nickname: "
|
msgid "Choose a nickname: "
|
||||||
msgstr "Spitznamen wählen: "
|
msgstr "Spitznamen wählen: "
|
||||||
|
|
||||||
#: ../../mod/register.php:567 ../../include/nav.php:81 ../../boot.php:794
|
#: ../../mod/register.php:546 ../../include/nav.php:81 ../../boot.php:794
|
||||||
msgid "Register"
|
msgid "Register"
|
||||||
msgstr "Registrieren"
|
msgstr "Registrieren"
|
||||||
|
|
||||||
#: ../../mod/dirfind.php:23
|
#: ../../mod/dirfind.php:26
|
||||||
msgid "People Search"
|
msgid "People Search"
|
||||||
msgstr "Personen Suche"
|
msgstr "Personen Suche"
|
||||||
|
|
||||||
#: ../../mod/like.php:127 ../../mod/tagger.php:70
|
#: ../../mod/like.php:127 ../../mod/tagger.php:70
|
||||||
#: ../../addon/facebook/facebook.php:1564
|
#: ../../addon/facebook/facebook.php:1572
|
||||||
#: ../../addon/communityhome/communityhome.php:158
|
#: ../../addon/communityhome/communityhome.php:158
|
||||||
#: ../../addon/communityhome/communityhome.php:167
|
#: ../../addon/communityhome/communityhome.php:167
|
||||||
#: ../../view/theme/diabook/theme.php:560
|
#: ../../view/theme/diabook/theme.php:560
|
||||||
#: ../../view/theme/diabook/theme.php:569 ../../include/diaspora.php:1654
|
#: ../../view/theme/diabook/theme.php:569 ../../include/diaspora.php:1662
|
||||||
#: ../../include/conversation.php:48 ../../include/conversation.php:57
|
#: ../../include/conversation.php:48 ../../include/conversation.php:57
|
||||||
#: ../../include/conversation.php:121 ../../include/conversation.php:130
|
#: ../../include/conversation.php:121 ../../include/conversation.php:130
|
||||||
msgid "status"
|
msgid "status"
|
||||||
msgstr "Status"
|
msgstr "Status"
|
||||||
|
|
||||||
#: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1568
|
#: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1576
|
||||||
#: ../../addon/communityhome/communityhome.php:172
|
#: ../../addon/communityhome/communityhome.php:172
|
||||||
#: ../../view/theme/diabook/theme.php:574 ../../include/diaspora.php:1670
|
#: ../../view/theme/diabook/theme.php:574 ../../include/diaspora.php:1678
|
||||||
#: ../../include/conversation.php:65
|
#: ../../include/conversation.php:65
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$s likes %2$s's %3$s"
|
msgid "%1$s likes %2$s's %3$s"
|
||||||
|
|
@ -2824,7 +2841,7 @@ msgstr "%1$s mag %2$ss %3$s nicht"
|
||||||
|
|
||||||
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:156
|
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:156
|
||||||
#: ../../mod/admin.php:684 ../../mod/admin.php:883 ../../mod/display.php:37
|
#: ../../mod/admin.php:684 ../../mod/admin.php:883 ../../mod/display.php:37
|
||||||
#: ../../mod/display.php:142 ../../include/items.php:3084
|
#: ../../mod/display.php:142 ../../include/items.php:3096
|
||||||
msgid "Item not found."
|
msgid "Item not found."
|
||||||
msgstr "Beitrag nicht gefunden."
|
msgstr "Beitrag nicht gefunden."
|
||||||
|
|
||||||
|
|
@ -2833,7 +2850,7 @@ msgid "Access denied."
|
||||||
msgstr "Zugriff verweigert."
|
msgstr "Zugriff verweigert."
|
||||||
|
|
||||||
#: ../../mod/fbrowser.php:23 ../../view/theme/diabook/theme.php:125
|
#: ../../mod/fbrowser.php:23 ../../view/theme/diabook/theme.php:125
|
||||||
#: ../../include/nav.php:51 ../../boot.php:1494
|
#: ../../include/nav.php:51 ../../boot.php:1513
|
||||||
msgid "Photos"
|
msgid "Photos"
|
||||||
msgstr "Bilder"
|
msgstr "Bilder"
|
||||||
|
|
||||||
|
|
@ -2858,39 +2875,39 @@ msgstr "Bitte melde dich an."
|
||||||
msgid "Unable to locate original post."
|
msgid "Unable to locate original post."
|
||||||
msgstr "Konnte den Originalbeitrag nicht finden."
|
msgstr "Konnte den Originalbeitrag nicht finden."
|
||||||
|
|
||||||
#: ../../mod/item.php:249
|
#: ../../mod/item.php:258
|
||||||
msgid "Empty post discarded."
|
msgid "Empty post discarded."
|
||||||
msgstr "Leerer Beitrag wurde verworfen."
|
msgstr "Leerer Beitrag wurde verworfen."
|
||||||
|
|
||||||
#: ../../mod/item.php:372 ../../mod/wall_upload.php:99
|
#: ../../mod/item.php:381 ../../mod/wall_upload.php:99
|
||||||
#: ../../mod/wall_upload.php:108 ../../mod/wall_upload.php:115
|
#: ../../mod/wall_upload.php:108 ../../mod/wall_upload.php:115
|
||||||
#: ../../include/message.php:144
|
#: ../../include/message.php:144
|
||||||
msgid "Wall Photos"
|
msgid "Wall Photos"
|
||||||
msgstr "Pinnwand-Bilder"
|
msgstr "Pinnwand-Bilder"
|
||||||
|
|
||||||
#: ../../mod/item.php:781
|
#: ../../mod/item.php:790
|
||||||
msgid "System error. Post not saved."
|
msgid "System error. Post not saved."
|
||||||
msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
|
msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
|
||||||
|
|
||||||
#: ../../mod/item.php:806
|
#: ../../mod/item.php:815
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"This message was sent to you by %s, a member of the Friendica social "
|
"This message was sent to you by %s, a member of the Friendica social "
|
||||||
"network."
|
"network."
|
||||||
msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."
|
msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."
|
||||||
|
|
||||||
#: ../../mod/item.php:808
|
#: ../../mod/item.php:817
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "You may visit them online at %s"
|
msgid "You may visit them online at %s"
|
||||||
msgstr "Du kannst sie online unter %s besuchen"
|
msgstr "Du kannst sie online unter %s besuchen"
|
||||||
|
|
||||||
#: ../../mod/item.php:809
|
#: ../../mod/item.php:818
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please contact the sender by replying to this post if you do not wish to "
|
"Please contact the sender by replying to this post if you do not wish to "
|
||||||
"receive these messages."
|
"receive these messages."
|
||||||
msgstr "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest."
|
msgstr "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest."
|
||||||
|
|
||||||
#: ../../mod/item.php:811
|
#: ../../mod/item.php:820
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s posted an update."
|
msgid "%s posted an update."
|
||||||
msgstr "%s hat ein Update veröffentlicht."
|
msgstr "%s hat ein Update veröffentlicht."
|
||||||
|
|
@ -3053,7 +3070,7 @@ msgstr "Keine Freunde zum Anzeigen."
|
||||||
|
|
||||||
#: ../../mod/admin.php:55
|
#: ../../mod/admin.php:55
|
||||||
msgid "Theme settings updated."
|
msgid "Theme settings updated."
|
||||||
msgstr "Themen Einstellungen aktualisiert."
|
msgstr "Themeneinstellungen aktualisiert."
|
||||||
|
|
||||||
#: ../../mod/admin.php:96 ../../mod/admin.php:403
|
#: ../../mod/admin.php:96 ../../mod/admin.php:403
|
||||||
msgid "Site"
|
msgid "Site"
|
||||||
|
|
@ -3153,7 +3170,7 @@ msgstr "Regeln"
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr "Erweitert"
|
msgstr "Erweitert"
|
||||||
|
|
||||||
#: ../../mod/admin.php:412 ../../addon/statusnet/statusnet.php:544
|
#: ../../mod/admin.php:412 ../../addon/statusnet/statusnet.php:552
|
||||||
msgid "Site name"
|
msgid "Site name"
|
||||||
msgstr "Seitenname"
|
msgstr "Seitenname"
|
||||||
|
|
||||||
|
|
@ -3203,7 +3220,7 @@ msgstr "Registrierungstext"
|
||||||
|
|
||||||
#: ../../mod/admin.php:420
|
#: ../../mod/admin.php:420
|
||||||
msgid "Will be displayed prominently on the registration page."
|
msgid "Will be displayed prominently on the registration page."
|
||||||
msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt."
|
msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
|
||||||
|
|
||||||
#: ../../mod/admin.php:421
|
#: ../../mod/admin.php:421
|
||||||
msgid "Accounts abandoned after x days"
|
msgid "Accounts abandoned after x days"
|
||||||
|
|
@ -3345,7 +3362,7 @@ msgstr "SSL Überprüfen"
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you wish, you can turn on strict certificate checking. This will mean you"
|
"If you wish, you can turn on strict certificate checking. This will mean you"
|
||||||
" cannot connect (at all) to self-signed SSL sites."
|
" cannot connect (at all) to self-signed SSL sites."
|
||||||
msgstr "Wenn gewollt, kann man hier eine strenge Zertifikat Kontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann."
|
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:437
|
#: ../../mod/admin.php:437
|
||||||
msgid "Proxy user"
|
msgid "Proxy user"
|
||||||
|
|
@ -3372,17 +3389,17 @@ msgid ""
|
||||||
"Delay background delivery processes by this many seconds to reduce system "
|
"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 "
|
"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
|
||||||
"for large dedicated servers."
|
"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."
|
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:441
|
#: ../../mod/admin.php:441
|
||||||
msgid "Poll interval"
|
msgid "Poll interval"
|
||||||
msgstr "Abfrage Intervall"
|
msgstr "Abfrageintervall"
|
||||||
|
|
||||||
#: ../../mod/admin.php:441
|
#: ../../mod/admin.php:441
|
||||||
msgid ""
|
msgid ""
|
||||||
"Delay background polling processes by this many seconds to reduce system "
|
"Delay background polling processes by this many seconds to reduce system "
|
||||||
"load. If 0, use delivery interval."
|
"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."
|
msgstr "Verzögere Hintergrundprozesse, um diese Anzahl an Sekunden um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet."
|
||||||
|
|
||||||
#: ../../mod/admin.php:442
|
#: ../../mod/admin.php:442
|
||||||
msgid "Maximum Load Average"
|
msgid "Maximum Load Average"
|
||||||
|
|
@ -3478,7 +3495,7 @@ msgstr "Neuanmeldungen, die auf deine Bestätigung warten"
|
||||||
|
|
||||||
#: ../../mod/admin.php:643
|
#: ../../mod/admin.php:643
|
||||||
msgid "Request date"
|
msgid "Request date"
|
||||||
msgstr "Anfrage Datum"
|
msgstr "Anfragedatum"
|
||||||
|
|
||||||
#: ../../mod/admin.php:643 ../../mod/admin.php:652
|
#: ../../mod/admin.php:643 ../../mod/admin.php:652
|
||||||
#: ../../include/contact_selectors.php:79
|
#: ../../include/contact_selectors.php:79
|
||||||
|
|
@ -3735,11 +3752,11 @@ msgid ""
|
||||||
"notifications from you."
|
"notifications from you."
|
||||||
msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können."
|
msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können."
|
||||||
|
|
||||||
#: ../../mod/follow.php:160
|
#: ../../mod/follow.php:161
|
||||||
msgid "Unable to retrieve contact information."
|
msgid "Unable to retrieve contact information."
|
||||||
msgstr "Konnte die Kontaktinformationen nicht empfangen."
|
msgstr "Konnte die Kontaktinformationen nicht empfangen."
|
||||||
|
|
||||||
#: ../../mod/follow.php:206
|
#: ../../mod/follow.php:216
|
||||||
msgid "following"
|
msgid "following"
|
||||||
msgstr "folgen"
|
msgstr "folgen"
|
||||||
|
|
||||||
|
|
@ -3763,9 +3780,9 @@ msgstr "Anwendungen"
|
||||||
msgid "No installed applications."
|
msgid "No installed applications."
|
||||||
msgstr "Keine Applikationen installiert."
|
msgstr "Keine Applikationen installiert."
|
||||||
|
|
||||||
#: ../../mod/search.php:83
|
#: ../../mod/search.php:83 ../../include/text.php:650 ../../include/nav.php:91
|
||||||
msgid "Search This Site"
|
msgid "Search"
|
||||||
msgstr "Diese Seite durchsuchen"
|
msgstr "Suche"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:21 ../../mod/profiles.php:375
|
#: ../../mod/profiles.php:21 ../../mod/profiles.php:375
|
||||||
#: ../../mod/profiles.php:489 ../../mod/dfrn_confirm.php:62
|
#: ../../mod/profiles.php:489 ../../mod/dfrn_confirm.php:62
|
||||||
|
|
@ -3833,6 +3850,11 @@ msgstr "öffentliches Profil"
|
||||||
msgid "%1$s changed %2$s to “%3$s”"
|
msgid "%1$s changed %2$s to “%3$s”"
|
||||||
msgstr "%1$s hat %2$s geändert auf “%3$s”"
|
msgstr "%1$s hat %2$s geändert auf “%3$s”"
|
||||||
|
|
||||||
|
#: ../../mod/profiles.php:332
|
||||||
|
#, php-format
|
||||||
|
msgid " - Visit %1$s's %2$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/profiles.php:335
|
#: ../../mod/profiles.php:335
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$s has an updated %2$s, changing %3$s."
|
msgid "%1$s has an updated %2$s, changing %3$s."
|
||||||
|
|
@ -3961,7 +3983,7 @@ msgstr "Beispiel: Fischen Fotografie Software"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:559
|
#: ../../mod/profiles.php:559
|
||||||
msgid "(Used for suggesting potential friends, can be seen by others)"
|
msgid "(Used for suggesting potential friends, can be seen by others)"
|
||||||
msgstr "(Wird verwendet um potentielle Freunde zu finden, könnte von Fremden eingesehen werden)"
|
msgstr "(Wird verwendet, um potentielle Freunde zu finden, könnte von Fremden eingesehen werden)"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:560
|
#: ../../mod/profiles.php:560
|
||||||
msgid "(Used for searching profiles, never shown to others)"
|
msgid "(Used for searching profiles, never shown to others)"
|
||||||
|
|
@ -4214,164 +4236,164 @@ msgid ""
|
||||||
" has already been approved."
|
" has already been approved."
|
||||||
msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."
|
msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."
|
||||||
|
|
||||||
#: ../../mod/dfrn_confirm.php:242
|
#: ../../mod/dfrn_confirm.php:235
|
||||||
msgid "Response from remote site was not understood."
|
msgid "Response from remote site was not understood."
|
||||||
msgstr "Antwort der Gegenstelle unverständlich."
|
msgstr "Antwort der Gegenstelle unverständlich."
|
||||||
|
|
||||||
#: ../../mod/dfrn_confirm.php:251
|
#: ../../mod/dfrn_confirm.php:244
|
||||||
msgid "Unexpected response from remote site: "
|
msgid "Unexpected response from remote site: "
|
||||||
msgstr "Unerwartete Antwort der Gegenstelle: "
|
msgstr "Unerwartete Antwort der Gegenstelle: "
|
||||||
|
|
||||||
#: ../../mod/dfrn_confirm.php:259
|
#: ../../mod/dfrn_confirm.php:252
|
||||||
msgid "Confirmation completed successfully."
|
msgid "Confirmation completed successfully."
|
||||||
msgstr "Bestätigung erfolgreich abgeschlossen."
|
msgstr "Bestätigung erfolgreich abgeschlossen."
|
||||||
|
|
||||||
#: ../../mod/dfrn_confirm.php:261 ../../mod/dfrn_confirm.php:275
|
#: ../../mod/dfrn_confirm.php:254 ../../mod/dfrn_confirm.php:268
|
||||||
#: ../../mod/dfrn_confirm.php:282
|
#: ../../mod/dfrn_confirm.php:275
|
||||||
msgid "Remote site reported: "
|
msgid "Remote site reported: "
|
||||||
msgstr "Gegenstelle meldet: "
|
msgstr "Gegenstelle meldet: "
|
||||||
|
|
||||||
#: ../../mod/dfrn_confirm.php:273
|
#: ../../mod/dfrn_confirm.php:266
|
||||||
msgid "Temporary failure. Please wait and try again."
|
msgid "Temporary failure. Please wait and try again."
|
||||||
msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
|
msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
|
||||||
|
|
||||||
#: ../../mod/dfrn_confirm.php:280
|
#: ../../mod/dfrn_confirm.php:273
|
||||||
msgid "Introduction failed or was revoked."
|
msgid "Introduction failed or was revoked."
|
||||||
msgstr "Kontaktanfrage schlug fehl oder wurde zurück gezogen."
|
msgstr "Kontaktanfrage schlug fehl oder wurde zurück gezogen."
|
||||||
|
|
||||||
#: ../../mod/dfrn_confirm.php:425
|
#: ../../mod/dfrn_confirm.php:418
|
||||||
msgid "Unable to set contact photo."
|
msgid "Unable to set contact photo."
|
||||||
msgstr "Konnte das Bild des Kontakts nicht speichern."
|
msgstr "Konnte das Bild des Kontakts nicht speichern."
|
||||||
|
|
||||||
#: ../../mod/dfrn_confirm.php:482 ../../include/diaspora.php:507
|
#: ../../mod/dfrn_confirm.php:475 ../../include/diaspora.php:507
|
||||||
#: ../../include/conversation.php:101
|
#: ../../include/conversation.php:101
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$s is now friends with %2$s"
|
msgid "%1$s is now friends with %2$s"
|
||||||
msgstr "%1$s ist nun mit %2$s befreundet"
|
msgstr "%1$s ist nun mit %2$s befreundet"
|
||||||
|
|
||||||
#: ../../mod/dfrn_confirm.php:554
|
#: ../../mod/dfrn_confirm.php:557
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "No user record found for '%s' "
|
msgid "No user record found for '%s' "
|
||||||
msgstr "Für '%s' wurde kein Nutzer gefunden"
|
msgstr "Für '%s' wurde kein Nutzer gefunden"
|
||||||
|
|
||||||
#: ../../mod/dfrn_confirm.php:564
|
#: ../../mod/dfrn_confirm.php:567
|
||||||
msgid "Our site encryption key is apparently messed up."
|
msgid "Our site encryption key is apparently messed up."
|
||||||
msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend im Arsch."
|
msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend im Arsch."
|
||||||
|
|
||||||
#: ../../mod/dfrn_confirm.php:575
|
#: ../../mod/dfrn_confirm.php:578
|
||||||
msgid "Empty site URL was provided or URL could not be decrypted by us."
|
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."
|
msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."
|
||||||
|
|
||||||
#: ../../mod/dfrn_confirm.php:596
|
#: ../../mod/dfrn_confirm.php:599
|
||||||
msgid "Contact record was not found for you on our site."
|
msgid "Contact record was not found for you on our site."
|
||||||
msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
|
msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
|
||||||
|
|
||||||
#: ../../mod/dfrn_confirm.php:610
|
#: ../../mod/dfrn_confirm.php:613
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Site public key not available in contact record for URL %s."
|
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."
|
msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."
|
||||||
|
|
||||||
#: ../../mod/dfrn_confirm.php:630
|
#: ../../mod/dfrn_confirm.php:633
|
||||||
msgid ""
|
msgid ""
|
||||||
"The ID provided by your system is a duplicate on our system. It should work "
|
"The ID provided by your system is a duplicate on our system. It should work "
|
||||||
"if you try again."
|
"if you try again."
|
||||||
msgstr "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."
|
msgstr "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."
|
||||||
|
|
||||||
#: ../../mod/dfrn_confirm.php:641
|
#: ../../mod/dfrn_confirm.php:644
|
||||||
msgid "Unable to set your contact credentials on our system."
|
msgid "Unable to set your contact credentials on our system."
|
||||||
msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
|
msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
|
||||||
|
|
||||||
#: ../../mod/dfrn_confirm.php:706
|
#: ../../mod/dfrn_confirm.php:709
|
||||||
msgid "Unable to update your contact profile details on our system"
|
msgid "Unable to update your contact profile details on our system"
|
||||||
msgstr "Die Updates für dein Profil konnten nicht gespeichert werden"
|
msgstr "Die Updates für dein Profil konnten nicht gespeichert werden"
|
||||||
|
|
||||||
#: ../../mod/dfrn_confirm.php:740
|
#: ../../mod/dfrn_confirm.php:743
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Connection accepted at %s"
|
msgid "Connection accepted at %s"
|
||||||
msgstr "Auf %s wurde die Verbindung akzeptiert"
|
msgstr "Auf %s wurde die Verbindung akzeptiert"
|
||||||
|
|
||||||
#: ../../mod/dfrn_confirm.php:789
|
#: ../../mod/dfrn_confirm.php:792
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$s has joined %2$s"
|
msgid "%1$s has joined %2$s"
|
||||||
msgstr "%1$s ist %2$s beigetreten"
|
msgstr "%1$s ist %2$s beigetreten"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:501
|
#: ../../addon/facebook/facebook.php:509
|
||||||
msgid "Facebook disabled"
|
msgid "Facebook disabled"
|
||||||
msgstr "Facebook deaktiviert"
|
msgstr "Facebook deaktiviert"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:506
|
#: ../../addon/facebook/facebook.php:514
|
||||||
msgid "Updating contacts"
|
msgid "Updating contacts"
|
||||||
msgstr "Aktualisiere Kontakte"
|
msgstr "Aktualisiere Kontakte"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:529
|
#: ../../addon/facebook/facebook.php:537
|
||||||
msgid "Facebook API key is missing."
|
msgid "Facebook API key is missing."
|
||||||
msgstr "Facebook-API-Schlüssel nicht gefunden"
|
msgstr "Facebook-API-Schlüssel nicht gefunden"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:536
|
#: ../../addon/facebook/facebook.php:544
|
||||||
msgid "Facebook Connect"
|
msgid "Facebook Connect"
|
||||||
msgstr "Mit Facebook verbinden"
|
msgstr "Mit Facebook verbinden"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:542
|
#: ../../addon/facebook/facebook.php:550
|
||||||
msgid "Install Facebook connector for this account."
|
msgid "Install Facebook connector for this account."
|
||||||
msgstr "Facebook-Connector für diesen Account installieren."
|
msgstr "Facebook-Connector für diesen Account installieren."
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:549
|
#: ../../addon/facebook/facebook.php:557
|
||||||
msgid "Remove Facebook connector"
|
msgid "Remove Facebook connector"
|
||||||
msgstr "Facebook-Connector entfernen"
|
msgstr "Facebook-Connector entfernen"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:554
|
#: ../../addon/facebook/facebook.php:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"Re-authenticate [This is necessary whenever your Facebook password is "
|
"Re-authenticate [This is necessary whenever your Facebook password is "
|
||||||
"changed.]"
|
"changed.]"
|
||||||
msgstr "Neu authentifizieren [Das ist immer dann nötig, wenn Du Dein Facebook-Passwort geändert hast.]"
|
msgstr "Neu authentifizieren [Das ist immer dann nötig, wenn Du Dein Facebook-Passwort geändert hast.]"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:561
|
#: ../../addon/facebook/facebook.php:569
|
||||||
msgid "Post to Facebook by default"
|
msgid "Post to Facebook by default"
|
||||||
msgstr "Veröffentliche standardmäßig bei Facebook"
|
msgstr "Veröffentliche standardmäßig bei Facebook"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:567
|
#: ../../addon/facebook/facebook.php:575
|
||||||
msgid ""
|
msgid ""
|
||||||
"Facebook friend linking has been disabled on this site. The following "
|
"Facebook friend linking has been disabled on this site. The following "
|
||||||
"settings will have no effect."
|
"settings will have no effect."
|
||||||
msgstr "Das verlinken von Facebook-Kontakten wurde auf dieser Seite deaktiviert. Die folgenden Einstellungen haben keinen Effekt."
|
msgstr "Das Verlinken von Facebookkontakten wurde auf dieser Seite deaktiviert. Die folgenden Einstellungen haben keinen Effekt."
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:571
|
#: ../../addon/facebook/facebook.php:579
|
||||||
msgid ""
|
msgid ""
|
||||||
"Facebook friend linking has been disabled on this site. If you disable it, "
|
"Facebook friend linking has been disabled on this site. If you disable it, "
|
||||||
"you will be unable to re-enable it."
|
"you will be unable to re-enable it."
|
||||||
msgstr "Das verlinken von Facebook-Kontakten wurde auf dieser Seite deaktiviert. Wenn du es ausgeschaltet hast, kannst du es nicht wieder aktivieren."
|
msgstr "Das Verlinken von Facebookkontakten wurde auf dieser Seite deaktiviert. Wenn du es ausgeschaltet hast, kannst du es nicht wieder aktivieren."
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:574
|
#: ../../addon/facebook/facebook.php:582
|
||||||
msgid "Link all your Facebook friends and conversations on this website"
|
msgid "Link all your Facebook friends and conversations on this website"
|
||||||
msgstr "All meine Facebook-Kontakte und -Konversationen hier auf diese Website importieren"
|
msgstr "All meine Facebook-Kontakte und -Konversationen hier auf diese Website importieren"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:576
|
#: ../../addon/facebook/facebook.php:584
|
||||||
msgid ""
|
msgid ""
|
||||||
"Facebook conversations consist of your <em>profile wall</em> and your friend"
|
"Facebook conversations consist of your <em>profile wall</em> and your friend"
|
||||||
" <em>stream</em>."
|
" <em>stream</em>."
|
||||||
msgstr "Facebook-Konversationen bestehen aus deinen Beiträgen auf deiner<em>Pinnwand</em>, sowie den Beiträgen deiner Freunde <em>Stream</em>."
|
msgstr "Facebook-Konversationen bestehen aus deinen Beiträgen auf deiner<em>Pinnwand</em>, sowie den Beiträgen deiner Freunde <em>Stream</em>."
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:577
|
#: ../../addon/facebook/facebook.php:585
|
||||||
msgid "On this website, your Facebook friend stream is only visible to you."
|
msgid "On this website, your Facebook friend stream is only visible to you."
|
||||||
msgstr "Hier auf dieser Webseite kannst nur du die Beiträge Deiner Facebook-Freunde (Stream) sehen."
|
msgstr "Hier auf dieser Webseite kannst nur du die Beiträge Deiner Facebook-Freunde (Stream) sehen."
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:578
|
#: ../../addon/facebook/facebook.php:586
|
||||||
msgid ""
|
msgid ""
|
||||||
"The following settings determine the privacy of your Facebook profile wall "
|
"The following settings determine the privacy of your Facebook profile wall "
|
||||||
"on this website."
|
"on this website."
|
||||||
msgstr "Mit den folgenden Einstellungen kannst Du die Privatsphäre der Kopie Deiner Facebook-Pinnwand hier auf dieser Seite einstellen."
|
msgstr "Mit den folgenden Einstellungen kannst Du die Privatsphäre der Kopie Deiner Facebook-Pinnwand hier auf dieser Seite einstellen."
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:582
|
#: ../../addon/facebook/facebook.php:590
|
||||||
msgid ""
|
msgid ""
|
||||||
"On this website your Facebook profile wall conversations will only be "
|
"On this website your Facebook profile wall conversations will only be "
|
||||||
"visible to you"
|
"visible to you"
|
||||||
msgstr "Meine Facebook-Pinnwand hier auf dieser Webseite nur für mich sichtbar machen"
|
msgstr "Meine Facebook-Pinnwand hier auf dieser Webseite nur für mich sichtbar machen"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:587
|
#: ../../addon/facebook/facebook.php:595
|
||||||
msgid "Do not import your Facebook profile wall conversations"
|
msgid "Do not import your Facebook profile wall conversations"
|
||||||
msgstr "Facebook-Pinnwand nicht importieren"
|
msgstr "Facebook-Pinnwand nicht importieren"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:589
|
#: ../../addon/facebook/facebook.php:597
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you choose to link conversations and leave both of these boxes unchecked,"
|
"If you choose to link conversations and leave both of these boxes unchecked,"
|
||||||
" your Facebook profile wall will be merged with your profile wall on this "
|
" your Facebook profile wall will be merged with your profile wall on this "
|
||||||
|
|
@ -4379,120 +4401,120 @@ msgid ""
|
||||||
"who may see the conversations."
|
"who may see the conversations."
|
||||||
msgstr "Wenn Du Facebook-Konversationen importierst und diese beiden Häkchen nicht setzt, wird Deine Facebook-Pinnwand mit der Pinnwand hier auf dieser Webseite vereinigt. Die Privatsphäre-Einstellungen für Deine Pinnwand auf dieser Webseite geben dann an, wer die Konversationen sehen kann."
|
msgstr "Wenn Du Facebook-Konversationen importierst und diese beiden Häkchen nicht setzt, wird Deine Facebook-Pinnwand mit der Pinnwand hier auf dieser Webseite vereinigt. Die Privatsphäre-Einstellungen für Deine Pinnwand auf dieser Webseite geben dann an, wer die Konversationen sehen kann."
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:594
|
#: ../../addon/facebook/facebook.php:602
|
||||||
msgid "Comma separated applications to ignore"
|
msgid "Comma separated applications to ignore"
|
||||||
msgstr "Komma separiert Anwendungen, die ignoriert werden sollen"
|
msgstr "Kommaseparierte Anwendungen, die ignoriert werden sollen"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:678
|
#: ../../addon/facebook/facebook.php:686
|
||||||
msgid "Problems with Facebook Real-Time Updates"
|
msgid "Problems with Facebook Real-Time Updates"
|
||||||
msgstr "Probleme mit Facebook Echtzeit-Updates"
|
msgstr "Probleme mit Facebook Echtzeit-Updates"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:706
|
#: ../../addon/facebook/facebook.php:714
|
||||||
#: ../../include/contact_selectors.php:81
|
#: ../../include/contact_selectors.php:81
|
||||||
msgid "Facebook"
|
msgid "Facebook"
|
||||||
msgstr "Facebook"
|
msgstr "Facebook"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:707
|
#: ../../addon/facebook/facebook.php:715
|
||||||
msgid "Facebook Connector Settings"
|
msgid "Facebook Connector Settings"
|
||||||
msgstr "Facebook-Verbindungseinstellungen"
|
msgstr "Facebook-Verbindungseinstellungen"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:722
|
#: ../../addon/facebook/facebook.php:730
|
||||||
msgid "Facebook API Key"
|
msgid "Facebook API Key"
|
||||||
msgstr "Facebook API Schlüssel"
|
msgstr "Facebook API Schlüssel"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:732
|
#: ../../addon/facebook/facebook.php:740
|
||||||
msgid ""
|
msgid ""
|
||||||
"Error: it appears that you have specified the App-ID and -Secret in your "
|
"Error: it appears that you have specified the App-ID and -Secret in your "
|
||||||
".htconfig.php file. As long as they are specified there, they cannot be set "
|
".htconfig.php file. As long as they are specified there, they cannot be set "
|
||||||
"using this form.<br><br>"
|
"using this form.<br><br>"
|
||||||
msgstr "Fehler: du scheinst die App-ID und das App-Geheimnis in deiner .htconfig.php Datei angegeben zu haben. Solange sie dort festgelegt werden kannst du dieses Formular hier nicht verwenden.<br><br>"
|
msgstr "Fehler: du scheinst die App-ID und das App-Geheimnis in deiner .htconfig.php Datei angegeben zu haben. Solange sie dort festgelegt werden kannst du dieses Formular hier nicht verwenden.<br><br>"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:737
|
#: ../../addon/facebook/facebook.php:745
|
||||||
msgid ""
|
msgid ""
|
||||||
"Error: the given API Key seems to be incorrect (the application access token"
|
"Error: the given API Key seems to be incorrect (the application access token"
|
||||||
" could not be retrieved)."
|
" could not be retrieved)."
|
||||||
msgstr "Fehler: der angegebene API Schlüssel scheint nicht korrekt zu sein (Zugriffstoken konnte nicht empfangen werden)."
|
msgstr "Fehler: der angegebene API Schlüssel scheint nicht korrekt zu sein (Zugriffstoken konnte nicht empfangen werden)."
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:739
|
#: ../../addon/facebook/facebook.php:747
|
||||||
msgid "The given API Key seems to work correctly."
|
msgid "The given API Key seems to work correctly."
|
||||||
msgstr "Der angegebene API Schlüssel scheint korrekt zu funktionieren."
|
msgstr "Der angegebene API Schlüssel scheint korrekt zu funktionieren."
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:741
|
#: ../../addon/facebook/facebook.php:749
|
||||||
msgid ""
|
msgid ""
|
||||||
"The correctness of the API Key could not be detected. Somthing strange's "
|
"The correctness of the API Key could not be detected. Somthing strange's "
|
||||||
"going on."
|
"going on."
|
||||||
msgstr "Die Echtheit des API Schlüssels konnte nicht überprüft werden. Etwas Merkwürdiges ist hier im Gange."
|
msgstr "Die Echtheit des API Schlüssels konnte nicht überprüft werden. Etwas Merkwürdiges ist hier im Gange."
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:744
|
#: ../../addon/facebook/facebook.php:752
|
||||||
msgid "App-ID / API-Key"
|
msgid "App-ID / API-Key"
|
||||||
msgstr "App-ID / API-Key"
|
msgstr "App-ID / API-Key"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:745
|
#: ../../addon/facebook/facebook.php:753
|
||||||
msgid "Application secret"
|
msgid "Application secret"
|
||||||
msgstr "Anwendungs-Geheimnis"
|
msgstr "Anwendungs-Geheimnis"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:746
|
#: ../../addon/facebook/facebook.php:754
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Polling Interval in minutes (minimum %1$s minutes)"
|
msgid "Polling Interval in minutes (minimum %1$s minutes)"
|
||||||
msgstr "Abfrage-Intervall in Minuten (min %1$s Minuten)"
|
msgstr "Abfrageintervall in Minuten (min %1$s Minuten)"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:747
|
#: ../../addon/facebook/facebook.php:755
|
||||||
msgid ""
|
msgid ""
|
||||||
"Synchronize comments (no comments on Facebook are missed, at the cost of "
|
"Synchronize comments (no comments on Facebook are missed, at the cost of "
|
||||||
"increased system load)"
|
"increased system load)"
|
||||||
msgstr "Kommentare synchronisieren (Kein Kommentar von Facebook geht verlohren, verursacht höhere Last auf dem Server)"
|
msgstr "Kommentare synchronisieren (Kein Kommentar von Facebook geht verloren, verursacht höhere Last auf dem Server)"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:751
|
#: ../../addon/facebook/facebook.php:759
|
||||||
msgid "Real-Time Updates"
|
msgid "Real-Time Updates"
|
||||||
msgstr "Echt-Zeit Aktualisierungen"
|
msgstr "Echtzeit Aktualisierungen"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:755
|
#: ../../addon/facebook/facebook.php:763
|
||||||
msgid "Real-Time Updates are activated."
|
msgid "Real-Time Updates are activated."
|
||||||
msgstr "Echtzeit-Updates sind aktiviert."
|
msgstr "Echtzeit-Updates sind aktiviert."
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:756
|
#: ../../addon/facebook/facebook.php:764
|
||||||
msgid "Deactivate Real-Time Updates"
|
msgid "Deactivate Real-Time Updates"
|
||||||
msgstr "Echtzeit-Updates deaktivieren"
|
msgstr "Echtzeit-Updates deaktivieren"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:758
|
#: ../../addon/facebook/facebook.php:766
|
||||||
msgid "Real-Time Updates not activated."
|
msgid "Real-Time Updates not activated."
|
||||||
msgstr "Echtzeit-Updates nicht aktiviert."
|
msgstr "Echtzeit-Updates nicht aktiviert."
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:758
|
#: ../../addon/facebook/facebook.php:766
|
||||||
msgid "Activate Real-Time Updates"
|
msgid "Activate Real-Time Updates"
|
||||||
msgstr "Echtzeit-Updates aktivieren"
|
msgstr "Echtzeit-Updates aktivieren"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:777
|
#: ../../addon/facebook/facebook.php:785
|
||||||
msgid "The new values have been saved."
|
msgid "The new values have been saved."
|
||||||
msgstr "Die neuen Einstellungen wurden gespeichert."
|
msgstr "Die neuen Einstellungen wurden gespeichert."
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:801
|
#: ../../addon/facebook/facebook.php:809
|
||||||
msgid "Post to Facebook"
|
msgid "Post to Facebook"
|
||||||
msgstr "Bei Facebook veröffentlichen"
|
msgstr "Bei Facebook veröffentlichen"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:899
|
#: ../../addon/facebook/facebook.php:907
|
||||||
msgid ""
|
msgid ""
|
||||||
"Post to Facebook cancelled because of multi-network access permission "
|
"Post to Facebook cancelled because of multi-network access permission "
|
||||||
"conflict."
|
"conflict."
|
||||||
msgstr "Beitrag wurde nicht bei Facebook veröffentlicht, da Konflikte bei den Multi-Netzwerk-Zugriffsrechten vorliegen."
|
msgstr "Beitrag wurde nicht bei Facebook veröffentlicht, da Konflikte bei den Multi-Netzwerk-Zugriffsrechten vorliegen."
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:1119
|
#: ../../addon/facebook/facebook.php:1127
|
||||||
msgid "View on Friendica"
|
msgid "View on Friendica"
|
||||||
msgstr "In Friendica betrachten"
|
msgstr "In Friendica betrachten"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:1152
|
#: ../../addon/facebook/facebook.php:1160
|
||||||
msgid "Facebook post failed. Queued for retry."
|
msgid "Facebook post failed. Queued for retry."
|
||||||
msgstr "Veröffentlichung bei Facebook gescheitert. Wir versuchen es später erneut."
|
msgstr "Veröffentlichung bei Facebook gescheitert. Wir versuchen es später erneut."
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:1192
|
#: ../../addon/facebook/facebook.php:1200
|
||||||
msgid "Your Facebook connection became invalid. Please Re-authenticate."
|
msgid "Your Facebook connection became invalid. Please Re-authenticate."
|
||||||
msgstr "Deine Facebook Anmeldedaten sind ungültig geworden. Bitte re-authentifiziere dich."
|
msgstr "Deine Facebook Anmeldedaten sind ungültig geworden. Bitte re-authentifiziere dich."
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:1193
|
#: ../../addon/facebook/facebook.php:1201
|
||||||
msgid "Facebook connection became invalid"
|
msgid "Facebook connection became invalid"
|
||||||
msgstr "Facebook Anmeldedaten sind ungültig geworden"
|
msgstr "Facebook Anmeldedaten sind ungültig geworden"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:1194
|
#: ../../addon/facebook/facebook.php:1202
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Hi %1$s,\n"
|
"Hi %1$s,\n"
|
||||||
|
|
@ -4614,7 +4636,7 @@ msgid ""
|
||||||
"setting. It is polite and recommended to tag any content containing nudity "
|
"setting. It is polite and recommended to tag any content containing nudity "
|
||||||
"with #NSFW. This filter can also match any other word/text you specify, and"
|
"with #NSFW. This filter can also match any other word/text you specify, and"
|
||||||
" can thereby be used as a general purpose content filter."
|
" can thereby be used as a general purpose content filter."
|
||||||
msgstr "Dieses Plugin sucht in Beiträgen nach Wörtern oder Textbauteilen die du weiter unten eingibst, findet es diese Bausteine, dann wird der entsprechende Beitrag zusammengefaltet dargestellt. Auf diese Weise wird verhindert, dass Inhalte, wie z.B. sexuelle Anspielungen, in unpassenden Momenten angezeigt werden. Du solltest den #NSFW Tag für Beiträge verwenden von denen du ausgehen kannst, dass andere sie anstößig finden könnten. Su kannst beliebige Wörter in der Filterliste angeben und ihn so als allgemeinen Filter verwenden."
|
msgstr "Dieses Plugin sucht in Beiträgen nach Wörtern oder Textbauteilen die du weiter unten eingibst, findet es diese Bausteine, dann wird der entsprechende Beitrag zusammengefaltet dargestellt. Auf diese Weise wird verhindert, dass Inhalte, wie z.B. sexuelle Anspielungen, in unpassenden Momenten angezeigt werden. Du solltest den #NSFW Tag für Beiträge verwenden von denen du ausgehen kannst, dass andere sie anstößig finden könnten. Du kannst beliebige Wörter in der Filterliste angeben und ihn so als allgemeinen Filter verwenden."
|
||||||
|
|
||||||
#: ../../addon/nsfw/nsfw.php:50
|
#: ../../addon/nsfw/nsfw.php:50
|
||||||
msgid "Enable Content filter"
|
msgid "Enable Content filter"
|
||||||
|
|
@ -4839,7 +4861,7 @@ msgstr "Drupal Seite verwendet bereinigte URLs"
|
||||||
msgid "Post to Drupal by default"
|
msgid "Post to Drupal by default"
|
||||||
msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei Drupal"
|
msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei Drupal"
|
||||||
|
|
||||||
#: ../../addon/drpost/drpost.php:184 ../../addon/wppost/wppost.php:190
|
#: ../../addon/drpost/drpost.php:184 ../../addon/wppost/wppost.php:198
|
||||||
#: ../../addon/blogger/blogger.php:172 ../../addon/posterous/posterous.php:192
|
#: ../../addon/blogger/blogger.php:172 ../../addon/posterous/posterous.php:192
|
||||||
msgid "Post from Friendica"
|
msgid "Post from Friendica"
|
||||||
msgstr "Beitrag via Friendica"
|
msgstr "Beitrag via Friendica"
|
||||||
|
|
@ -4856,6 +4878,24 @@ msgstr "Geonames Einstellungen"
|
||||||
msgid "Enable Geonames Plugin"
|
msgid "Enable Geonames Plugin"
|
||||||
msgstr "Geonames Plugin aktivieren"
|
msgstr "Geonames Plugin aktivieren"
|
||||||
|
|
||||||
|
#: ../../addon/public_server/public_server.php:126
|
||||||
|
#: ../../addon/testdrive/testdrive.php:94
|
||||||
|
#, php-format
|
||||||
|
msgid "Your account on %s will expire in a few days."
|
||||||
|
msgstr "Dein Konto auf %s wird in ein paar Tagen verfallen."
|
||||||
|
|
||||||
|
#: ../../addon/public_server/public_server.php:127
|
||||||
|
msgid "Your Friendica account is about to expire."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../addon/public_server/public_server.php:128
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Hi %1$s,\n"
|
||||||
|
"\n"
|
||||||
|
"Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ../../addon/js_upload/js_upload.php:43
|
#: ../../addon/js_upload/js_upload.php:43
|
||||||
msgid "Upload a file"
|
msgid "Upload a file"
|
||||||
msgstr "Datei hochladen"
|
msgstr "Datei hochladen"
|
||||||
|
|
@ -4925,7 +4965,7 @@ msgstr "Das Impressums-Plugin muss noch konfiguriert werden.<br />Bitte gebe min
|
||||||
|
|
||||||
#: ../../addon/impressum/impressum.php:83
|
#: ../../addon/impressum/impressum.php:83
|
||||||
msgid "The page operators name."
|
msgid "The page operators name."
|
||||||
msgstr "Name des Server-Administrators"
|
msgstr "Name des Serveradministrators"
|
||||||
|
|
||||||
#: ../../addon/impressum/impressum.php:84
|
#: ../../addon/impressum/impressum.php:84
|
||||||
msgid "Site Owners Profile"
|
msgid "Site Owners Profile"
|
||||||
|
|
@ -4933,7 +4973,7 @@ msgstr "Profil des Seitenbetreibers"
|
||||||
|
|
||||||
#: ../../addon/impressum/impressum.php:84
|
#: ../../addon/impressum/impressum.php:84
|
||||||
msgid "Profile address of the operator."
|
msgid "Profile address of the operator."
|
||||||
msgstr "Profil-Adresse des Server-Administrators"
|
msgstr "Profil-Adresse des Serveradministrators"
|
||||||
|
|
||||||
#: ../../addon/impressum/impressum.php:85
|
#: ../../addon/impressum/impressum.php:85
|
||||||
msgid "How to contact the operator via snail mail. You can use BBCode here."
|
msgid "How to contact the operator via snail mail. You can use BBCode here."
|
||||||
|
|
@ -4951,7 +4991,7 @@ msgstr "Zusätzliche Informationen die neben den Kontaktmöglichkeiten angezeigt
|
||||||
|
|
||||||
#: ../../addon/impressum/impressum.php:87
|
#: ../../addon/impressum/impressum.php:87
|
||||||
msgid "How to contact the operator via email. (will be displayed obfuscated)"
|
msgid "How to contact the operator via email. (will be displayed obfuscated)"
|
||||||
msgstr "Wie erreichts man den Betreiber per Email. (Adresse wird verschleiert dargestellt)"
|
msgstr "Wie man den Betreiber per Email erreicht. (Adresse wird verschleiert dargestellt)"
|
||||||
|
|
||||||
#: ../../addon/impressum/impressum.php:88
|
#: ../../addon/impressum/impressum.php:88
|
||||||
msgid "Footer note"
|
msgid "Footer note"
|
||||||
|
|
@ -5014,7 +5054,7 @@ msgstr "Schnell-Kommentar Einstellungen"
|
||||||
msgid ""
|
msgid ""
|
||||||
"Quick comments are found near comment boxes, sometimes hidden. Click them to"
|
"Quick comments are found near comment boxes, sometimes hidden. Click them to"
|
||||||
" provide simple replies."
|
" provide simple replies."
|
||||||
msgstr "Kurz-Kommentare findet man in der Nähe der Kommentar-Boxen. Ein Klick darauf erstellt einfache Antworten."
|
msgstr "Kurzkommentare findet man in der Nähe der Kommentarboxen. Ein Klick darauf erstellt einfache Antworten."
|
||||||
|
|
||||||
#: ../../addon/qcomment/qcomment.php:57
|
#: ../../addon/qcomment/qcomment.php:57
|
||||||
msgid "Enter quick comments, one per line"
|
msgid "Enter quick comments, one per line"
|
||||||
|
|
@ -5047,7 +5087,7 @@ msgid ""
|
||||||
"The MathJax addon renders mathematical formulae written using the LaTeX "
|
"The MathJax addon renders mathematical formulae written using the LaTeX "
|
||||||
"syntax surrounded by the usual $$ or an eqnarray block in the postings of "
|
"syntax surrounded by the usual $$ or an eqnarray block in the postings of "
|
||||||
"your wall,network tab and private mail."
|
"your wall,network tab and private mail."
|
||||||
msgstr "Mit dem MathJax Addon können mathematische Formeln, die mit LaTeX geschrieben wurden, dargestellt werden. Die Formel wird mit den üblichen $$ oder einem eqnarray Block gekennzeichnet. Formeln werden in allen Beiträgen auf deiner Pinnwand, dem Netzwerk-Stream sowie privaten Nachrichten gerendert."
|
msgstr "Mit dem MathJax Addon können mathematische Formeln, die mit LaTeX geschrieben wurden, dargestellt werden. Die Formel wird mit den üblichen $$ oder einem eqnarray Block gekennzeichnet. Formeln werden in allen Beiträgen auf deiner Pinnwand, dem Netzwerkstream sowie privaten Nachrichten gerendert."
|
||||||
|
|
||||||
#: ../../addon/mathjax/mathjax.php:38
|
#: ../../addon/mathjax/mathjax.php:38
|
||||||
msgid "Use the MathJax renderer"
|
msgid "Use the MathJax renderer"
|
||||||
|
|
@ -5115,16 +5155,11 @@ msgstr "Wähle eine angemessene Bildbewertung für Deinen Server. Schaue auch so
|
||||||
msgid "Gravatar settings updated."
|
msgid "Gravatar settings updated."
|
||||||
msgstr "Gravatar Einstellungen aktualisiert."
|
msgstr "Gravatar Einstellungen aktualisiert."
|
||||||
|
|
||||||
#: ../../addon/testdrive/testdrive.php:85
|
#: ../../addon/testdrive/testdrive.php:95
|
||||||
#, php-format
|
|
||||||
msgid "Your account on %s will expire in a few days."
|
|
||||||
msgstr "Dein Konto auf %s wird in ein paar Tagen verfallen."
|
|
||||||
|
|
||||||
#: ../../addon/testdrive/testdrive.php:86
|
|
||||||
msgid "Your Friendica test account is about to expire."
|
msgid "Your Friendica test account is about to expire."
|
||||||
msgstr "Dein Friendica Test Konto wird bald verfallen."
|
msgstr "Dein Friendica Test Konto wird bald verfallen."
|
||||||
|
|
||||||
#: ../../addon/testdrive/testdrive.php:87
|
#: ../../addon/testdrive/testdrive.php:96
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Hi %1$s,\n"
|
"Hi %1$s,\n"
|
||||||
|
|
@ -5282,14 +5317,14 @@ msgid "Send public postings to StatusNet by default"
|
||||||
msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei StatusNet"
|
msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei StatusNet"
|
||||||
|
|
||||||
#: ../../addon/statusnet/statusnet.php:345
|
#: ../../addon/statusnet/statusnet.php:345
|
||||||
msgid "Send #tag links to StatusNet"
|
msgid "Send linked #-tags and @-names to StatusNet"
|
||||||
msgstr "#Tags nach StatusNet senden"
|
msgstr "Sende verlinkte #-Tags und @-Namen nach StatusNet"
|
||||||
|
|
||||||
#: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206
|
#: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206
|
||||||
msgid "Clear OAuth configuration"
|
msgid "Clear OAuth configuration"
|
||||||
msgstr "OAuth-Konfiguration löschen"
|
msgstr "OAuth-Konfiguration löschen"
|
||||||
|
|
||||||
#: ../../addon/statusnet/statusnet.php:545
|
#: ../../addon/statusnet/statusnet.php:553
|
||||||
msgid "API URL"
|
msgid "API URL"
|
||||||
msgstr "API-URL"
|
msgstr "API-URL"
|
||||||
|
|
||||||
|
|
@ -5356,30 +5391,38 @@ msgstr "[Friendica Meldung] Kommentar zum Beitrag #%d"
|
||||||
msgid "Post to Wordpress"
|
msgid "Post to Wordpress"
|
||||||
msgstr "Bei WordPress veröffentlichen"
|
msgstr "Bei WordPress veröffentlichen"
|
||||||
|
|
||||||
#: ../../addon/wppost/wppost.php:74
|
#: ../../addon/wppost/wppost.php:76
|
||||||
msgid "WordPress Post Settings"
|
msgid "WordPress Post Settings"
|
||||||
msgstr "WordPress-Beitragseinstellungen"
|
msgstr "WordPress-Beitragseinstellungen"
|
||||||
|
|
||||||
#: ../../addon/wppost/wppost.php:76
|
#: ../../addon/wppost/wppost.php:78
|
||||||
msgid "Enable WordPress Post Plugin"
|
msgid "Enable WordPress Post Plugin"
|
||||||
msgstr "WordPress-Plugin aktivieren."
|
msgstr "WordPress-Plugin aktivieren."
|
||||||
|
|
||||||
#: ../../addon/wppost/wppost.php:81
|
#: ../../addon/wppost/wppost.php:83
|
||||||
msgid "WordPress username"
|
msgid "WordPress username"
|
||||||
msgstr "WordPress-Benutzername"
|
msgstr "WordPress-Benutzername"
|
||||||
|
|
||||||
#: ../../addon/wppost/wppost.php:86
|
#: ../../addon/wppost/wppost.php:88
|
||||||
msgid "WordPress password"
|
msgid "WordPress password"
|
||||||
msgstr "WordPress-Passwort"
|
msgstr "WordPress-Passwort"
|
||||||
|
|
||||||
#: ../../addon/wppost/wppost.php:91
|
#: ../../addon/wppost/wppost.php:93
|
||||||
msgid "WordPress API URL"
|
msgid "WordPress API URL"
|
||||||
msgstr "WordPress-API-URL"
|
msgstr "WordPress-API-URL"
|
||||||
|
|
||||||
#: ../../addon/wppost/wppost.php:96
|
#: ../../addon/wppost/wppost.php:98
|
||||||
msgid "Post to WordPress by default"
|
msgid "Post to WordPress by default"
|
||||||
msgstr "Standardmäßig auf WordPress veröffentlichen"
|
msgstr "Standardmäßig auf WordPress veröffentlichen"
|
||||||
|
|
||||||
|
#: ../../addon/wppost/wppost.php:102
|
||||||
|
msgid "Provide a backlink to the Friendica post"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../addon/wppost/wppost.php:204
|
||||||
|
msgid "Read the original post and comment stream on Friendica"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ../../addon/showmore/showmore.php:38
|
#: ../../addon/showmore/showmore.php:38
|
||||||
msgid "\"Show more\" Settings"
|
msgid "\"Show more\" Settings"
|
||||||
msgstr "\"Mehr zeigen\" Einstellungen"
|
msgstr "\"Mehr zeigen\" Einstellungen"
|
||||||
|
|
@ -5491,14 +5534,14 @@ msgid "Send public postings to Twitter by default"
|
||||||
msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei Twitter"
|
msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei Twitter"
|
||||||
|
|
||||||
#: ../../addon/twitter/twitter.php:201
|
#: ../../addon/twitter/twitter.php:201
|
||||||
msgid "Send #tag links to Twitter"
|
msgid "Send linked #-tags and @-names to Twitter"
|
||||||
msgstr "#Tags nach Twitter senden"
|
msgstr "Sende verlinkte #-Tags und @-Namen nach Twitter"
|
||||||
|
|
||||||
#: ../../addon/twitter/twitter.php:377
|
#: ../../addon/twitter/twitter.php:383
|
||||||
msgid "Consumer key"
|
msgid "Consumer key"
|
||||||
msgstr "Consumer Key"
|
msgstr "Consumer Key"
|
||||||
|
|
||||||
#: ../../addon/twitter/twitter.php:378
|
#: ../../addon/twitter/twitter.php:384
|
||||||
msgid "Consumer secret"
|
msgid "Consumer secret"
|
||||||
msgstr "Consumer Secret"
|
msgstr "Consumer Secret"
|
||||||
|
|
||||||
|
|
@ -5590,7 +5633,7 @@ msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei Posterous"
|
||||||
#: ../../view/theme/diabook/config.php:192
|
#: ../../view/theme/diabook/config.php:192
|
||||||
#: ../../view/theme/quattro/config.php:54 ../../view/theme/dispy/config.php:72
|
#: ../../view/theme/quattro/config.php:54 ../../view/theme/dispy/config.php:72
|
||||||
msgid "Theme settings"
|
msgid "Theme settings"
|
||||||
msgstr "Themen Einstellungen"
|
msgstr "Themeneinstellungen"
|
||||||
|
|
||||||
#: ../../view/theme/cleanzero/config.php:83
|
#: ../../view/theme/cleanzero/config.php:83
|
||||||
msgid "Set resize level for images in posts and comments (width and height)"
|
msgid "Set resize level for images in posts and comments (width and height)"
|
||||||
|
|
@ -5811,7 +5854,7 @@ msgid "j F"
|
||||||
msgstr "j F"
|
msgstr "j F"
|
||||||
|
|
||||||
#: ../../include/profile_advanced.php:30 ../../include/datetime.php:448
|
#: ../../include/profile_advanced.php:30 ../../include/datetime.php:448
|
||||||
#: ../../include/items.php:1413
|
#: ../../include/items.php:1419
|
||||||
msgid "Birthday:"
|
msgid "Birthday:"
|
||||||
msgstr "Geburtstag:"
|
msgstr "Geburtstag:"
|
||||||
|
|
||||||
|
|
@ -6187,12 +6230,12 @@ msgstr "Beginnt:"
|
||||||
msgid "Finishes:"
|
msgid "Finishes:"
|
||||||
msgstr "Endet:"
|
msgstr "Endet:"
|
||||||
|
|
||||||
#: ../../include/delivery.php:452 ../../include/notifier.php:652
|
#: ../../include/delivery.php:455 ../../include/notifier.php:677
|
||||||
msgid "(no subject)"
|
msgid "(no subject)"
|
||||||
msgstr "(kein Betreff)"
|
msgstr "(kein Betreff)"
|
||||||
|
|
||||||
#: ../../include/delivery.php:459 ../../include/enotify.php:23
|
#: ../../include/delivery.php:462 ../../include/enotify.php:23
|
||||||
#: ../../include/notifier.php:659
|
#: ../../include/notifier.php:684
|
||||||
msgid "noreply"
|
msgid "noreply"
|
||||||
msgstr "noreply"
|
msgstr "noreply"
|
||||||
|
|
||||||
|
|
@ -6223,10 +6266,6 @@ msgid_plural "%d Contacts"
|
||||||
msgstr[0] "%d Kontakt"
|
msgstr[0] "%d Kontakt"
|
||||||
msgstr[1] "%d Kontakte"
|
msgstr[1] "%d Kontakte"
|
||||||
|
|
||||||
#: ../../include/text.php:650 ../../include/nav.php:91
|
|
||||||
msgid "Search"
|
|
||||||
msgstr "Suche"
|
|
||||||
|
|
||||||
#: ../../include/text.php:831
|
#: ../../include/text.php:831
|
||||||
msgid "Monday"
|
msgid "Monday"
|
||||||
msgstr "Montag"
|
msgstr "Montag"
|
||||||
|
|
@ -6351,15 +6390,15 @@ msgstr "Beitrag"
|
||||||
msgid "Item filed"
|
msgid "Item filed"
|
||||||
msgstr "Beitrag abgelegt"
|
msgstr "Beitrag abgelegt"
|
||||||
|
|
||||||
#: ../../include/diaspora.php:582
|
#: ../../include/diaspora.php:590
|
||||||
msgid "Sharing notification from Diaspora network"
|
msgid "Sharing notification from Diaspora network"
|
||||||
msgstr "Freigabe-Benachrichtigung von Diaspora"
|
msgstr "Freigabe-Benachrichtigung von Diaspora"
|
||||||
|
|
||||||
#: ../../include/diaspora.php:1969
|
#: ../../include/diaspora.php:1977
|
||||||
msgid "Attachments:"
|
msgid "Attachments:"
|
||||||
msgstr "Anhänge:"
|
msgstr "Anhänge:"
|
||||||
|
|
||||||
#: ../../include/diaspora.php:2152
|
#: ../../include/diaspora.php:2160
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "[Relayed] Comment authored by %s from network %s"
|
msgid "[Relayed] Comment authored by %s from network %s"
|
||||||
msgstr "[Weitergeleitet] Kommentar von %s aus dem %s Netzwerk"
|
msgstr "[Weitergeleitet] Kommentar von %s aus dem %s Netzwerk"
|
||||||
|
|
@ -6383,27 +6422,31 @@ msgid ""
|
||||||
"not what you intended, please create another group with a different name."
|
"not what you intended, please create another group with a different name."
|
||||||
msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
|
msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
|
||||||
|
|
||||||
#: ../../include/group.php:168
|
#: ../../include/group.php:176
|
||||||
|
msgid "Default privacy group for new contacts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../include/group.php:195
|
||||||
msgid "Everybody"
|
msgid "Everybody"
|
||||||
msgstr "Alle Kontakte"
|
msgstr "Alle Kontakte"
|
||||||
|
|
||||||
#: ../../include/group.php:191
|
#: ../../include/group.php:218
|
||||||
msgid "edit"
|
msgid "edit"
|
||||||
msgstr "bearbeiten"
|
msgstr "bearbeiten"
|
||||||
|
|
||||||
#: ../../include/group.php:212
|
#: ../../include/group.php:239
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr "Gruppen"
|
msgstr "Gruppen"
|
||||||
|
|
||||||
#: ../../include/group.php:213
|
#: ../../include/group.php:240
|
||||||
msgid "Edit group"
|
msgid "Edit group"
|
||||||
msgstr "Gruppe bearbeiten"
|
msgstr "Gruppe bearbeiten"
|
||||||
|
|
||||||
#: ../../include/group.php:214
|
#: ../../include/group.php:241
|
||||||
msgid "Create a new group"
|
msgid "Create a new group"
|
||||||
msgstr "Neue Gruppe erstellen"
|
msgstr "Neue Gruppe erstellen"
|
||||||
|
|
||||||
#: ../../include/group.php:215
|
#: ../../include/group.php:242
|
||||||
msgid "Contacts not in any group"
|
msgid "Contacts not in any group"
|
||||||
msgstr "Kontakte in keiner Gruppe"
|
msgstr "Kontakte in keiner Gruppe"
|
||||||
|
|
||||||
|
|
@ -6415,7 +6458,7 @@ msgstr "Abmelden"
|
||||||
msgid "End this session"
|
msgid "End this session"
|
||||||
msgstr "Diese Sitzung beenden"
|
msgstr "Diese Sitzung beenden"
|
||||||
|
|
||||||
#: ../../include/nav.php:49 ../../boot.php:1482
|
#: ../../include/nav.php:49 ../../boot.php:1501
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr "Status"
|
msgstr "Status"
|
||||||
|
|
||||||
|
|
@ -6473,7 +6516,7 @@ msgstr "Alle Benachrichtigungen anzeigen"
|
||||||
|
|
||||||
#: ../../include/nav.php:124
|
#: ../../include/nav.php:124
|
||||||
msgid "Mark all system notifications seen"
|
msgid "Mark all system notifications seen"
|
||||||
msgstr "Markiere alle System-Benachrichtigungen als gelesen"
|
msgstr "Markiere alle Systembenachrichtigungen als gelesen"
|
||||||
|
|
||||||
#: ../../include/nav.php:128
|
#: ../../include/nav.php:128
|
||||||
msgid "Private mail"
|
msgid "Private mail"
|
||||||
|
|
@ -6586,7 +6629,7 @@ msgstr "Abgemeldet."
|
||||||
msgid ""
|
msgid ""
|
||||||
"We encountered a problem while logging in with the OpenID you provided. "
|
"We encountered a problem while logging in with the OpenID you provided. "
|
||||||
"Please check the correct spelling of the ID."
|
"Please check the correct spelling of the ID."
|
||||||
msgstr "Beim versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe dass du die OpenID richtig geschrieben hast."
|
msgstr "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast."
|
||||||
|
|
||||||
#: ../../include/auth.php:106
|
#: ../../include/auth.php:106
|
||||||
msgid "The error message was:"
|
msgid "The error message was:"
|
||||||
|
|
@ -6878,11 +6921,11 @@ msgstr "Foto:"
|
||||||
msgid "Please visit %s to approve or reject the suggestion."
|
msgid "Please visit %s to approve or reject the suggestion."
|
||||||
msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
|
msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
|
||||||
|
|
||||||
#: ../../include/items.php:2724
|
#: ../../include/items.php:2736
|
||||||
msgid "A new person is sharing with you at "
|
msgid "A new person is sharing with you at "
|
||||||
msgstr "Eine neue Person teilt mit dir auf "
|
msgstr "Eine neue Person teilt mit dir auf "
|
||||||
|
|
||||||
#: ../../include/items.php:2724
|
#: ../../include/items.php:2736
|
||||||
msgid "You have a new follower at "
|
msgid "You have a new follower at "
|
||||||
msgstr "Du hast einen neuen Kontakt auf "
|
msgstr "Du hast einen neuen Kontakt auf "
|
||||||
|
|
||||||
|
|
@ -6911,7 +6954,7 @@ msgstr "Willkommen zurück "
|
||||||
msgid ""
|
msgid ""
|
||||||
"The form security token was not correct. This probably happened because the "
|
"The form security token was not correct. This probably happened because the "
|
||||||
"form has been opened for too long (>3 hours) before submitting it."
|
"form has been opened for too long (>3 hours) before submitting it."
|
||||||
msgstr "Das Sicherheits-Merkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
|
msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
|
||||||
|
|
||||||
#: ../../include/Contact.php:111
|
#: ../../include/Contact.php:111
|
||||||
msgid "stopped following"
|
msgid "stopped following"
|
||||||
|
|
@ -6932,7 +6975,7 @@ msgstr "Bilder anschauen"
|
||||||
#: ../../include/Contact.php:206 ../../include/Contact.php:219
|
#: ../../include/Contact.php:206 ../../include/Contact.php:219
|
||||||
#: ../../include/conversation.php:823
|
#: ../../include/conversation.php:823
|
||||||
msgid "Network Posts"
|
msgid "Network Posts"
|
||||||
msgstr "Netzwerk-Beiträge"
|
msgstr "Netzwerkbeiträge"
|
||||||
|
|
||||||
#: ../../include/Contact.php:207 ../../include/Contact.php:219
|
#: ../../include/Contact.php:207 ../../include/Contact.php:219
|
||||||
#: ../../include/conversation.php:824
|
#: ../../include/conversation.php:824
|
||||||
|
|
@ -7244,18 +7287,18 @@ msgstr "Veranstaltungserinnerungen"
|
||||||
msgid "Events this week:"
|
msgid "Events this week:"
|
||||||
msgstr "Veranstaltungen diese Woche"
|
msgstr "Veranstaltungen diese Woche"
|
||||||
|
|
||||||
#: ../../boot.php:1485
|
#: ../../boot.php:1504
|
||||||
msgid "Status Messages and Posts"
|
msgid "Status Messages and Posts"
|
||||||
msgstr "Statusnachrichten und Beiträge"
|
msgstr "Statusnachrichten und Beiträge"
|
||||||
|
|
||||||
#: ../../boot.php:1491
|
#: ../../boot.php:1510
|
||||||
msgid "Profile Details"
|
msgid "Profile Details"
|
||||||
msgstr "Profildetails"
|
msgstr "Profildetails"
|
||||||
|
|
||||||
#: ../../boot.php:1506
|
#: ../../boot.php:1525
|
||||||
msgid "Events and Calendar"
|
msgid "Events and Calendar"
|
||||||
msgstr "Ereignisse und Kalender"
|
msgstr "Ereignisse und Kalender"
|
||||||
|
|
||||||
#: ../../boot.php:1512
|
#: ../../boot.php:1531
|
||||||
msgid "Only You Can See This"
|
msgid "Only You Can See This"
|
||||||
msgstr "Nur Du Kannst Das Sehen"
|
msgstr "Nur Du Kannst Das Sehen"
|
||||||
|
|
|
||||||
|
|
@ -1,32 +1,32 @@
|
||||||
|
|
||||||
Hallo $[username],
|
Hallo $[username],
|
||||||
Danke für deine Anmeldung auf $[sitename]. Dein Account wurde angelegt.
|
Danke für deine Anmeldung auf $[sitename]. Dein Account wurde angelegt.
|
||||||
Die Login Details sind die folgenden:
|
Hier die Login Details:
|
||||||
|
|
||||||
|
|
||||||
Adresse der Seite: $[siteurl]
|
Adresse der Seite: $[siteurl]
|
||||||
Login Name: $[email]
|
Login Name: $[email]
|
||||||
Passwort: $[password]
|
Passwort: $[password]
|
||||||
|
|
||||||
Du kannst das Passwort in den "Einstellungen" zu deinem Account ändern
|
Du kannst und solltest das Passwort in den "Einstellungen" zu deinem Account ändern,
|
||||||
nachdem du dich eingeloggt hast.
|
nachdem du dich erstmalig eingeloggt hast.
|
||||||
|
|
||||||
Bitte nimm dir einige Augenblicke Zeit um die anderen Einstellungen auf der Seite zu überprüfen.
|
Bitte nimm dir einige Augenblicke Zeit um die anderen Einstellungen auf der Seite kennenzulernen und zu überprüfen.
|
||||||
|
|
||||||
Eventuell möchtest du außerdem einige grundlegenden Informationen in dein Standart-Profil eintragen
|
Eventuell möchtest du außerdem einige grundlegenden Informationen in deinem Standart-Profil (auf der "Profile" Seite) eintragen,
|
||||||
(auf der "Profile" Seite) damit andere Leute dich einfacher finden können.
|
damit andere Leute dich einfacher finden können.
|
||||||
|
|
||||||
Wir empfehlen den kompletten Namen anzugeben, ein eigenes Profil-Foto,
|
Wir empfehlen den kompletten Namen anzugeben, ein eigenes Profil-Bild hochzuladen,
|
||||||
ein paar "Profil-Schlüsselwörter" anzugeben (damit man leichter Gleichinteressierte finden kann) - und
|
sowie ein paar "Profil-Schlüsselwörter" einzutragen (um leichter Menschen mit gleichen Interessen zu finden) - und
|
||||||
natürlich in welchen Land Du lebst; wenn Du es nicht genauer angeben möchtest
|
vielleicht auch in welchen Land Du lebst; falls du nicht konkreter
|
||||||
dann das.
|
werden möchtest.
|
||||||
|
|
||||||
Wir respektieren Ihr Recht auf Privatsphäre, und keines dieser Elemente sind notwendig.
|
Wir respektieren dein Recht auf Privatsphäre und keine dieser Angaben ist notwendig.
|
||||||
Wenn Du hier neu bist und keinen kennst, wird man Dir helfen
|
Wenn Du ganz neu bei Friendica bist und niemanden kennst, werden sie dir aber helfen
|
||||||
ein paar neue und interessante Freunde zu finden.
|
ein paar neue und interessante Freunde zu finden.
|
||||||
|
|
||||||
|
|
||||||
Danke dir und willkommen auf $[sitename].
|
Danke und willkommen auf $[sitename].
|
||||||
|
|
||||||
Beste Grüße,
|
Beste Grüße,
|
||||||
$[sitename] Administrator
|
$[sitename] Administrator
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ $a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.
|
||||||
$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
|
$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
|
||||||
$a->strings["Permission denied."] = "Zugriff verweigert.";
|
$a->strings["Permission denied."] = "Zugriff verweigert.";
|
||||||
$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
|
$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
|
||||||
$a->strings["Repair Contact Settings"] = "Kontakt-Einstellungen reparieren";
|
$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren";
|
||||||
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
|
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
|
||||||
$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button deines Browsers <strong>jetzt</strong>, wenn du dir unsicher bist, was du tun willst.";
|
$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button deines Browsers <strong>jetzt</strong>, wenn du dir unsicher bist, was du tun willst.";
|
||||||
$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
|
$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
|
||||||
|
|
@ -33,7 +33,7 @@ $a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
|
||||||
$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
|
$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
|
||||||
$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
|
$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
|
||||||
$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
|
$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
|
||||||
$a->strings["Event description and start time are required."] = "Ereignis Beschreibung und Startzeit sind erforderlich.";
|
$a->strings["Event description and start time are required."] = "Ereignisbeschreibung und Startzeit sind erforderlich.";
|
||||||
$a->strings["l, F j"] = "l, F j";
|
$a->strings["l, F j"] = "l, F j";
|
||||||
$a->strings["Edit event"] = "Veranstaltung bearbeiten";
|
$a->strings["Edit event"] = "Veranstaltung bearbeiten";
|
||||||
$a->strings["link to source"] = "Link zum Originalbeitrag";
|
$a->strings["link to source"] = "Link zum Originalbeitrag";
|
||||||
|
|
@ -117,7 +117,7 @@ $a->strings["Community"] = "Gemeinschaft";
|
||||||
$a->strings["No results."] = "Keine Ergebnisse.";
|
$a->strings["No results."] = "Keine Ergebnisse.";
|
||||||
$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version";
|
$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version";
|
||||||
$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
|
$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
|
||||||
$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a> um mehr über das Friendica Projekt zu erfahren.";
|
$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren.";
|
||||||
$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
|
$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
|
||||||
$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com";
|
$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com";
|
||||||
$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps";
|
$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps";
|
||||||
|
|
@ -185,7 +185,7 @@ $a->strings[" - please do not use this form. Instead, enter %s into your Diaspo
|
||||||
$a->strings["Your Identity Address:"] = "Adresse deines Profils:";
|
$a->strings["Your Identity Address:"] = "Adresse deines Profils:";
|
||||||
$a->strings["Submit Request"] = "Anfrage abschicken";
|
$a->strings["Submit Request"] = "Anfrage abschicken";
|
||||||
$a->strings["Friendica Social Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup";
|
$a->strings["Friendica Social Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup";
|
||||||
$a->strings["Database connection"] = "Datenbank-Verbindung";
|
$a->strings["Database connection"] = "Datenbankverbindung";
|
||||||
$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert";
|
$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert";
|
||||||
$a->strings["Could not create table."] = "Konnte Tabelle nicht erstellen.";
|
$a->strings["Could not create table."] = "Konnte Tabelle nicht erstellen.";
|
||||||
$a->strings["Your Friendica site database has been installed."] = "Die Datenbank deiner Friendica Seite wurde installiert.";
|
$a->strings["Your Friendica site database has been installed."] = "Die Datenbank deiner Friendica Seite wurde installiert.";
|
||||||
|
|
@ -235,7 +235,7 @@ $a->strings["This is most often a permission setting, as the web server may not
|
||||||
$a->strings["Please check with your site documentation or support people to see if this situation can be corrected."] = "Bitte überprüfe die Einstellungen und frage im Zweifelsfall dein Support Team, um diese Situation zu beheben.";
|
$a->strings["Please check with your site documentation or support people to see if this situation can be corrected."] = "Bitte überprüfe die Einstellungen und frage im Zweifelsfall dein Support Team, um diese Situation zu beheben.";
|
||||||
$a->strings["If not, you may be required to perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Sollte dies nicht möglich sein, musst du die Installation manuell durchführen. Lies dazu bitte in der Datei \"INSTALL.txt\".";
|
$a->strings["If not, you may be required to perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Sollte dies nicht möglich sein, musst du die Installation manuell durchführen. Lies dazu bitte in der Datei \"INSTALL.txt\".";
|
||||||
$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php";
|
$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php";
|
||||||
$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text um die Datei im Stammverzeichnis deiner Friendica-Installation zu erzeugen.";
|
$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis deiner Friendica-Installation zu erzeugen.";
|
||||||
$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen.";
|
$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen.";
|
||||||
$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
|
$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
|
||||||
$a->strings["Time Conversion"] = "Zeitumrechnung";
|
$a->strings["Time Conversion"] = "Zeitumrechnung";
|
||||||
|
|
@ -288,8 +288,8 @@ $a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
|
||||||
$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
|
$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
|
||||||
$a->strings["No more network notifications."] = "Keine weiteren Netzwerk-Benachrichtigungen.";
|
$a->strings["No more network notifications."] = "Keine weiteren Netzwerk-Benachrichtigungen.";
|
||||||
$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
|
$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
|
||||||
$a->strings["No more system notifications."] = "Keine weiteren System Benachrichtigungen.";
|
$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen.";
|
||||||
$a->strings["System Notifications"] = "System Benachrichtigungen";
|
$a->strings["System Notifications"] = "Systembenachrichtigungen";
|
||||||
$a->strings["No more personal notifications."] = "Keine weiteren persönlichen Benachrichtigungen";
|
$a->strings["No more personal notifications."] = "Keine weiteren persönlichen Benachrichtigungen";
|
||||||
$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
|
$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
|
||||||
$a->strings["No more home notifications."] = "Keine weiteren Pinnwand-Benachrichtigungen";
|
$a->strings["No more home notifications."] = "Keine weiteren Pinnwand-Benachrichtigungen";
|
||||||
|
|
@ -320,7 +320,7 @@ $a->strings["%d contact in common"] = array(
|
||||||
$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
|
$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
|
||||||
$a->strings["Unblock"] = "Entsperren";
|
$a->strings["Unblock"] = "Entsperren";
|
||||||
$a->strings["Block"] = "Sperren";
|
$a->strings["Block"] = "Sperren";
|
||||||
$a->strings["Toggle Blocked status"] = "Geblockt-Sttaus ein-/ausschalten";
|
$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
|
||||||
$a->strings["Unignore"] = "Ignorieren aufheben";
|
$a->strings["Unignore"] = "Ignorieren aufheben";
|
||||||
$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
|
$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
|
||||||
$a->strings["Unarchive"] = "Unarchivieren";
|
$a->strings["Unarchive"] = "Unarchivieren";
|
||||||
|
|
@ -329,7 +329,7 @@ $a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
|
||||||
$a->strings["Repair"] = "Reparieren";
|
$a->strings["Repair"] = "Reparieren";
|
||||||
$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
|
$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
|
||||||
$a->strings["Contact Editor"] = "Kontakt Editor";
|
$a->strings["Contact Editor"] = "Kontakt Editor";
|
||||||
$a->strings["Profile Visibility"] = "Profil Anzeige";
|
$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit";
|
||||||
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft.";
|
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft.";
|
||||||
$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen";
|
$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen";
|
||||||
$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbiten";
|
$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbiten";
|
||||||
|
|
@ -383,8 +383,8 @@ $a->strings["Forgot your Password?"] = "Hast du dein Passwort vergessen?";
|
||||||
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib deine Email-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet.";
|
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib deine Email-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet.";
|
||||||
$a->strings["Nickname or Email: "] = "Spitzname oder Email:";
|
$a->strings["Nickname or Email: "] = "Spitzname oder Email:";
|
||||||
$a->strings["Reset"] = "Zurücksetzen";
|
$a->strings["Reset"] = "Zurücksetzen";
|
||||||
$a->strings["Account settings"] = "Account Einstellungen";
|
$a->strings["Account settings"] = "Account-Einstellungen";
|
||||||
$a->strings["Display settings"] = "Anzeige Einstellungen";
|
$a->strings["Display settings"] = "Anzeige-Einstellungen";
|
||||||
$a->strings["Connector settings"] = "Connector-Einstellungen";
|
$a->strings["Connector settings"] = "Connector-Einstellungen";
|
||||||
$a->strings["Plugin settings"] = "Plugin-Einstellungen";
|
$a->strings["Plugin settings"] = "Plugin-Einstellungen";
|
||||||
$a->strings["Connected apps"] = "Verbundene Programme";
|
$a->strings["Connected apps"] = "Verbundene Programme";
|
||||||
|
|
@ -403,6 +403,8 @@ $a->strings[" Please use a shorter name."] = " Bitte verwende einen kürzeren Na
|
||||||
$a->strings[" Name too short."] = " Name ist zu kurz.";
|
$a->strings[" Name too short."] = " Name ist zu kurz.";
|
||||||
$a->strings[" Not valid email."] = " Keine gültige E-Mail.";
|
$a->strings[" Not valid email."] = " Keine gültige E-Mail.";
|
||||||
$a->strings[" Cannot change to that email."] = "Ändern der E-Mail nicht möglich. ";
|
$a->strings[" Cannot change to that email."] = "Ändern der E-Mail nicht möglich. ";
|
||||||
|
$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "";
|
||||||
|
$a->strings["Private forum has no privacy permissions and no default privacy group."] = "";
|
||||||
$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
|
$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
|
||||||
$a->strings["Add application"] = "Programm hinzufügen";
|
$a->strings["Add application"] = "Programm hinzufügen";
|
||||||
$a->strings["Consumer Key"] = "Consumer Key";
|
$a->strings["Consumer Key"] = "Consumer Key";
|
||||||
|
|
@ -411,7 +413,7 @@ $a->strings["Redirect"] = "Umleiten";
|
||||||
$a->strings["Icon url"] = "Icon URL";
|
$a->strings["Icon url"] = "Icon URL";
|
||||||
$a->strings["You can't edit this application."] = "Du kannst dieses Programm nicht bearbeiten.";
|
$a->strings["You can't edit this application."] = "Du kannst dieses Programm nicht bearbeiten.";
|
||||||
$a->strings["Connected Apps"] = "Verbundene Programme";
|
$a->strings["Connected Apps"] = "Verbundene Programme";
|
||||||
$a->strings["Client key starts with"] = "Anwender Schlüssel beginnt mit";
|
$a->strings["Client key starts with"] = "Anwenderschlüssel beginnt mit";
|
||||||
$a->strings["No name"] = "Kein Name";
|
$a->strings["No name"] = "Kein Name";
|
||||||
$a->strings["Remove authorization"] = "Autorisierung entziehen";
|
$a->strings["Remove authorization"] = "Autorisierung entziehen";
|
||||||
$a->strings["No Plugin settings configured"] = "Keine Plugin-Einstellungen konfiguriert";
|
$a->strings["No Plugin settings configured"] = "Keine Plugin-Einstellungen konfiguriert";
|
||||||
|
|
@ -437,7 +439,7 @@ $a->strings["Action after import:"] = "Aktion nach Import:";
|
||||||
$a->strings["Mark as seen"] = "Als gelesen markieren";
|
$a->strings["Mark as seen"] = "Als gelesen markieren";
|
||||||
$a->strings["Move to folder"] = "In einen Ordner verschieben";
|
$a->strings["Move to folder"] = "In einen Ordner verschieben";
|
||||||
$a->strings["Move to folder:"] = "In diesen Ordner verschieben:";
|
$a->strings["Move to folder:"] = "In diesen Ordner verschieben:";
|
||||||
$a->strings["Display Settings"] = "Anzeige Einstellungen";
|
$a->strings["Display Settings"] = "Anzeige-Einstellungen";
|
||||||
$a->strings["Display Theme:"] = "Theme:";
|
$a->strings["Display Theme:"] = "Theme:";
|
||||||
$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren";
|
$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren";
|
||||||
$a->strings["Minimum of 10 seconds, no maximum"] = "Minimal 10 Sekunden, kein Maximum";
|
$a->strings["Minimum of 10 seconds, no maximum"] = "Minimal 10 Sekunden, kein Maximum";
|
||||||
|
|
@ -448,10 +450,12 @@ $a->strings["Normal Account"] = "Normaler Account";
|
||||||
$a->strings["This account is a normal personal profile"] = "Dieser Account ist ein normales persönliches Profil";
|
$a->strings["This account is a normal personal profile"] = "Dieser Account ist ein normales persönliches Profil";
|
||||||
$a->strings["Soapbox Account"] = "Sandkasten-Account";
|
$a->strings["Soapbox Account"] = "Sandkasten-Account";
|
||||||
$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert";
|
$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert";
|
||||||
$a->strings["Community/Celebrity Account"] = "Gemeinschafts/Promi-Account";
|
$a->strings["Community/Celebrity Account"] = "Gemeinschafts-/Promi-Account";
|
||||||
$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert";
|
$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert";
|
||||||
$a->strings["Automatic Friend Account"] = "Automatischer Freundesaccount";
|
$a->strings["Automatic Friend Account"] = "Automatischer Freundesaccount";
|
||||||
$a->strings["Automatically approve all connection/friend requests as friends"] = "Kontaktanfragen werden automatisch als Freund akzeptiert";
|
$a->strings["Automatically approve all connection/friend requests as friends"] = "Kontaktanfragen werden automatisch als Freund akzeptiert";
|
||||||
|
$a->strings["Private Forum"] = "";
|
||||||
|
$a->strings["Private forum - approved members only [Experimental]"] = "";
|
||||||
$a->strings["OpenID:"] = "OpenID:";
|
$a->strings["OpenID:"] = "OpenID:";
|
||||||
$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Erlaube die Anmeldung für diesen Account mit dieser OpenID.";
|
$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Erlaube die Anmeldung für diesen Account mit dieser OpenID.";
|
||||||
$a->strings["Publish your default profile in your local site directory?"] = "Veröffentliche dein Standardprofil im Verzeichnis der lokalen Seite?";
|
$a->strings["Publish your default profile in your local site directory?"] = "Veröffentliche dein Standardprofil im Verzeichnis der lokalen Seite?";
|
||||||
|
|
@ -491,7 +495,7 @@ $a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträg
|
||||||
$a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)";
|
$a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)";
|
||||||
$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl von privaten Nachrichten, die dir unbekannte Personen pro Tag senden dürfen:";
|
$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl von privaten Nachrichten, die dir unbekannte Personen pro Tag senden dürfen:";
|
||||||
$a->strings["Notification Settings"] = "Benachrichtigungseinstellungen";
|
$a->strings["Notification Settings"] = "Benachrichtigungseinstellungen";
|
||||||
$a->strings["By default post a status message when:"] = "Standardmäßig eine Status-Nachricht posten wenn:";
|
$a->strings["By default post a status message when:"] = "Standardmäßig eine Statusnachricht posten, wenn:";
|
||||||
$a->strings["accepting a friend request"] = "– du eine Kontaktanfrage akzeptierst";
|
$a->strings["accepting a friend request"] = "– du eine Kontaktanfrage akzeptierst";
|
||||||
$a->strings["joining a forum/community"] = "– du einem Forum/einer Gemeinschaftsseite beitrittst";
|
$a->strings["joining a forum/community"] = "– du einem Forum/einer Gemeinschaftsseite beitrittst";
|
||||||
$a->strings["making an <em>interesting</em> profile change"] = "– du eine <em>interessante</em> Änderung an deinem Profil durchführst";
|
$a->strings["making an <em>interesting</em> profile change"] = "– du eine <em>interessante</em> Änderung an deinem Profil durchführst";
|
||||||
|
|
@ -562,7 +566,7 @@ $a->strings["Edit your <strong>default</strong> profile to your liking. Review t
|
||||||
$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen.";
|
$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen.";
|
||||||
$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein.";
|
$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein.";
|
||||||
$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst.";
|
$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst.";
|
||||||
$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakte-Seite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden.";
|
$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden.";
|
||||||
$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren.";
|
$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren.";
|
||||||
$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten.";
|
$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten.";
|
||||||
$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
|
$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
|
||||||
|
|
@ -601,7 +605,7 @@ $a->strings["Nickname is already registered. Please choose another."] = "Dieser
|
||||||
$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
|
$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
|
||||||
$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden.";
|
$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden.";
|
||||||
$a->strings["An error occurred during registration. Please try again."] = "Wärend der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
|
$a->strings["An error occurred during registration. Please try again."] = "Wärend der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
|
||||||
$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standard-Profils ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
|
$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
|
||||||
$a->strings["Registration details for %s"] = "Details der Registration von %s";
|
$a->strings["Registration details for %s"] = "Details der Registration von %s";
|
||||||
$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet.";
|
$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet.";
|
||||||
$a->strings["Failed to send email message. Here is the message that failed."] = "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht gesendet werden konnte.";
|
$a->strings["Failed to send email message. Here is the message that failed."] = "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht gesendet werden konnte.";
|
||||||
|
|
@ -678,7 +682,7 @@ $a->strings["No secure communications available. You <strong>may</strong> be abl
|
||||||
$a->strings["Send Reply"] = "Antwort senden";
|
$a->strings["Send Reply"] = "Antwort senden";
|
||||||
$a->strings["Friends of %s"] = "Freunde von %s";
|
$a->strings["Friends of %s"] = "Freunde von %s";
|
||||||
$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen.";
|
$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen.";
|
||||||
$a->strings["Theme settings updated."] = "Themen Einstellungen aktualisiert.";
|
$a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
|
||||||
$a->strings["Site"] = "Seite";
|
$a->strings["Site"] = "Seite";
|
||||||
$a->strings["Users"] = "Nutzer";
|
$a->strings["Users"] = "Nutzer";
|
||||||
$a->strings["Plugins"] = "Plugins";
|
$a->strings["Plugins"] = "Plugins";
|
||||||
|
|
@ -714,7 +718,7 @@ $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 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["Register policy"] = "Registrierungsmethode";
|
$a->strings["Register policy"] = "Registrierungsmethode";
|
||||||
$a->strings["Register text"] = "Registrierungstext";
|
$a->strings["Register text"] = "Registrierungstext";
|
||||||
$a->strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungs-Seite angezeigt.";
|
$a->strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungsseite angezeigt.";
|
||||||
$a->strings["Accounts abandoned after x days"] = "Accounts gelten nach x Tagen als unbenutzt";
|
$a->strings["Accounts abandoned after x days"] = "Accounts gelten nach x Tagen als unbenutzt";
|
||||||
$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Accounts nicht mehr benutzt werden. 0 eingeben für kein Limit.";
|
$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 Accounts nicht mehr benutzt werden. 0 eingeben für kein Limit.";
|
||||||
$a->strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte";
|
$a->strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte";
|
||||||
|
|
@ -744,15 +748,15 @@ $a->strings["Provide built-in Diaspora network compatibility."] = "Verwende die
|
||||||
$a->strings["Only allow Friendica contacts"] = "Nur Friendica-Kontakte erlauben";
|
$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["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["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 Zertifikat Kontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann.";
|
$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 user"] = "Proxy Nutzer";
|
||||||
$a->strings["Proxy URL"] = "Proxy URL";
|
$a->strings["Proxy URL"] = "Proxy URL";
|
||||||
$a->strings["Network timeout"] = "Netzwerk Wartezeit";
|
$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["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["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["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"] = "Abfrage Intervall";
|
$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["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 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["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50";
|
||||||
$a->strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert";
|
$a->strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert";
|
||||||
|
|
@ -778,7 +782,7 @@ $a->strings["User '%s' unblocked"] = "Nutzer '%s' entsperrt";
|
||||||
$a->strings["User '%s' blocked"] = "Nutzer '%s' gesperrt";
|
$a->strings["User '%s' blocked"] = "Nutzer '%s' gesperrt";
|
||||||
$a->strings["select all"] = "Alle auswählen";
|
$a->strings["select all"] = "Alle auswählen";
|
||||||
$a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf deine Bestätigung warten";
|
$a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf deine Bestätigung warten";
|
||||||
$a->strings["Request date"] = "Anfrage Datum";
|
$a->strings["Request date"] = "Anfragedatum";
|
||||||
$a->strings["Email"] = "Email";
|
$a->strings["Email"] = "Email";
|
||||||
$a->strings["No registrations."] = "Keine Neuanmeldungen.";
|
$a->strings["No registrations."] = "Keine Neuanmeldungen.";
|
||||||
$a->strings["Deny"] = "Verwehren";
|
$a->strings["Deny"] = "Verwehren";
|
||||||
|
|
@ -844,7 +848,7 @@ $a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
|
||||||
$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
|
$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
|
||||||
$a->strings["Applications"] = "Anwendungen";
|
$a->strings["Applications"] = "Anwendungen";
|
||||||
$a->strings["No installed applications."] = "Keine Applikationen installiert.";
|
$a->strings["No installed applications."] = "Keine Applikationen installiert.";
|
||||||
$a->strings["Search This Site"] = "Diese Seite durchsuchen";
|
$a->strings["Search"] = "Suche";
|
||||||
$a->strings["Profile not found."] = "Profil nicht gefunden.";
|
$a->strings["Profile not found."] = "Profil nicht gefunden.";
|
||||||
$a->strings["Profile Name is required."] = "Profilname ist erforderlich.";
|
$a->strings["Profile Name is required."] = "Profilname ist erforderlich.";
|
||||||
$a->strings["Marital Status"] = "Familienstand";
|
$a->strings["Marital Status"] = "Familienstand";
|
||||||
|
|
@ -861,6 +865,7 @@ $a->strings["Profile updated."] = "Profil aktualisiert.";
|
||||||
$a->strings[" and "] = " und ";
|
$a->strings[" and "] = " und ";
|
||||||
$a->strings["public profile"] = "öffentliches Profil";
|
$a->strings["public profile"] = "öffentliches Profil";
|
||||||
$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s geändert auf “%3\$s”";
|
$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s geändert auf “%3\$s”";
|
||||||
|
$a->strings[" - Visit %1\$s's %2\$s"] = "";
|
||||||
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s.";
|
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s.";
|
||||||
$a->strings["Profile deleted."] = "Profil gelöscht.";
|
$a->strings["Profile deleted."] = "Profil gelöscht.";
|
||||||
$a->strings["Profile-"] = "Profil-";
|
$a->strings["Profile-"] = "Profil-";
|
||||||
|
|
@ -892,7 +897,7 @@ $a->strings["Religious Views:"] = "Religiöse Ansichten:";
|
||||||
$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:";
|
$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:";
|
||||||
$a->strings["Private Keywords:"] = "Private Schlüsselwörter:";
|
$a->strings["Private Keywords:"] = "Private Schlüsselwörter:";
|
||||||
$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software";
|
$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software";
|
||||||
$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet um potentielle Freunde zu finden, könnte von Fremden eingesehen werden)";
|
$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Freunde zu finden, könnte von Fremden eingesehen werden)";
|
||||||
$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)";
|
$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)";
|
||||||
$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von dir …";
|
$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von dir …";
|
||||||
$a->strings["Hobbies/Interests"] = "Hobbies/Interessen";
|
$a->strings["Hobbies/Interests"] = "Hobbies/Interessen";
|
||||||
|
|
@ -976,8 +981,8 @@ $a->strings["Install Facebook connector for this account."] = "Facebook-Connecto
|
||||||
$a->strings["Remove Facebook connector"] = "Facebook-Connector entfernen";
|
$a->strings["Remove Facebook connector"] = "Facebook-Connector entfernen";
|
||||||
$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Neu authentifizieren [Das ist immer dann nötig, wenn Du Dein Facebook-Passwort geändert hast.]";
|
$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Neu authentifizieren [Das ist immer dann nötig, wenn Du Dein Facebook-Passwort geändert hast.]";
|
||||||
$a->strings["Post to Facebook by default"] = "Veröffentliche standardmäßig bei Facebook";
|
$a->strings["Post to Facebook by default"] = "Veröffentliche standardmäßig bei Facebook";
|
||||||
$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "Das verlinken von Facebook-Kontakten wurde auf dieser Seite deaktiviert. Die folgenden Einstellungen haben keinen Effekt.";
|
$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "Das Verlinken von Facebookkontakten wurde auf dieser Seite deaktiviert. Die folgenden Einstellungen haben keinen Effekt.";
|
||||||
$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "Das verlinken von Facebook-Kontakten wurde auf dieser Seite deaktiviert. Wenn du es ausgeschaltet hast, kannst du es nicht wieder aktivieren.";
|
$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "Das Verlinken von Facebookkontakten wurde auf dieser Seite deaktiviert. Wenn du es ausgeschaltet hast, kannst du es nicht wieder aktivieren.";
|
||||||
$a->strings["Link all your Facebook friends and conversations on this website"] = "All meine Facebook-Kontakte und -Konversationen hier auf diese Website importieren";
|
$a->strings["Link all your Facebook friends and conversations on this website"] = "All meine Facebook-Kontakte und -Konversationen hier auf diese Website importieren";
|
||||||
$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "Facebook-Konversationen bestehen aus deinen Beiträgen auf deiner<em>Pinnwand</em>, sowie den Beiträgen deiner Freunde <em>Stream</em>.";
|
$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "Facebook-Konversationen bestehen aus deinen Beiträgen auf deiner<em>Pinnwand</em>, sowie den Beiträgen deiner Freunde <em>Stream</em>.";
|
||||||
$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Hier auf dieser Webseite kannst nur du die Beiträge Deiner Facebook-Freunde (Stream) sehen.";
|
$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Hier auf dieser Webseite kannst nur du die Beiträge Deiner Facebook-Freunde (Stream) sehen.";
|
||||||
|
|
@ -985,7 +990,7 @@ $a->strings["The following settings determine the privacy of your Facebook profi
|
||||||
$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "Meine Facebook-Pinnwand hier auf dieser Webseite nur für mich sichtbar machen";
|
$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "Meine Facebook-Pinnwand hier auf dieser Webseite nur für mich sichtbar machen";
|
||||||
$a->strings["Do not import your Facebook profile wall conversations"] = "Facebook-Pinnwand nicht importieren";
|
$a->strings["Do not import your Facebook profile wall conversations"] = "Facebook-Pinnwand nicht importieren";
|
||||||
$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Wenn Du Facebook-Konversationen importierst und diese beiden Häkchen nicht setzt, wird Deine Facebook-Pinnwand mit der Pinnwand hier auf dieser Webseite vereinigt. Die Privatsphäre-Einstellungen für Deine Pinnwand auf dieser Webseite geben dann an, wer die Konversationen sehen kann.";
|
$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Wenn Du Facebook-Konversationen importierst und diese beiden Häkchen nicht setzt, wird Deine Facebook-Pinnwand mit der Pinnwand hier auf dieser Webseite vereinigt. Die Privatsphäre-Einstellungen für Deine Pinnwand auf dieser Webseite geben dann an, wer die Konversationen sehen kann.";
|
||||||
$a->strings["Comma separated applications to ignore"] = "Komma separiert Anwendungen, die ignoriert werden sollen";
|
$a->strings["Comma separated applications to ignore"] = "Kommaseparierte Anwendungen, die ignoriert werden sollen";
|
||||||
$a->strings["Problems with Facebook Real-Time Updates"] = "Probleme mit Facebook Echtzeit-Updates";
|
$a->strings["Problems with Facebook Real-Time Updates"] = "Probleme mit Facebook Echtzeit-Updates";
|
||||||
$a->strings["Facebook"] = "Facebook";
|
$a->strings["Facebook"] = "Facebook";
|
||||||
$a->strings["Facebook Connector Settings"] = "Facebook-Verbindungseinstellungen";
|
$a->strings["Facebook Connector Settings"] = "Facebook-Verbindungseinstellungen";
|
||||||
|
|
@ -996,9 +1001,9 @@ $a->strings["The given API Key seems to work correctly."] = "Der angegebene API
|
||||||
$a->strings["The correctness of the API Key could not be detected. Somthing strange's going on."] = "Die Echtheit des API Schlüssels konnte nicht überprüft werden. Etwas Merkwürdiges ist hier im Gange.";
|
$a->strings["The correctness of the API Key could not be detected. Somthing strange's going on."] = "Die Echtheit des API Schlüssels konnte nicht überprüft werden. Etwas Merkwürdiges ist hier im Gange.";
|
||||||
$a->strings["App-ID / API-Key"] = "App-ID / API-Key";
|
$a->strings["App-ID / API-Key"] = "App-ID / API-Key";
|
||||||
$a->strings["Application secret"] = "Anwendungs-Geheimnis";
|
$a->strings["Application secret"] = "Anwendungs-Geheimnis";
|
||||||
$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "Abfrage-Intervall in Minuten (min %1\$s Minuten)";
|
$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "Abfrageintervall in Minuten (min %1\$s Minuten)";
|
||||||
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "Kommentare synchronisieren (Kein Kommentar von Facebook geht verlohren, verursacht höhere Last auf dem Server)";
|
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "Kommentare synchronisieren (Kein Kommentar von Facebook geht verloren, verursacht höhere Last auf dem Server)";
|
||||||
$a->strings["Real-Time Updates"] = "Echt-Zeit Aktualisierungen";
|
$a->strings["Real-Time Updates"] = "Echtzeit Aktualisierungen";
|
||||||
$a->strings["Real-Time Updates are activated."] = "Echtzeit-Updates sind aktiviert.";
|
$a->strings["Real-Time Updates are activated."] = "Echtzeit-Updates sind aktiviert.";
|
||||||
$a->strings["Deactivate Real-Time Updates"] = "Echtzeit-Updates deaktivieren";
|
$a->strings["Deactivate Real-Time Updates"] = "Echtzeit-Updates deaktivieren";
|
||||||
$a->strings["Real-Time Updates not activated."] = "Echtzeit-Updates nicht aktiviert.";
|
$a->strings["Real-Time Updates not activated."] = "Echtzeit-Updates nicht aktiviert.";
|
||||||
|
|
@ -1042,7 +1047,7 @@ $a->strings["LiveJournal username"] = "LiveJournal Benutzername";
|
||||||
$a->strings["LiveJournal password"] = "LiveJournal Passwort";
|
$a->strings["LiveJournal password"] = "LiveJournal Passwort";
|
||||||
$a->strings["Post to LiveJournal by default"] = "Standardmäßig bei LiveJournal veröffentlichen";
|
$a->strings["Post to LiveJournal by default"] = "Standardmäßig bei LiveJournal veröffentlichen";
|
||||||
$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "Not Safe for Work (allg. Filter für ungewollte Inhalte) Einstellungen:";
|
$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "Not Safe for Work (allg. Filter für ungewollte Inhalte) Einstellungen:";
|
||||||
$a->strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Dieses Plugin sucht in Beiträgen nach Wörtern oder Textbauteilen die du weiter unten eingibst, findet es diese Bausteine, dann wird der entsprechende Beitrag zusammengefaltet dargestellt. Auf diese Weise wird verhindert, dass Inhalte, wie z.B. sexuelle Anspielungen, in unpassenden Momenten angezeigt werden. Du solltest den #NSFW Tag für Beiträge verwenden von denen du ausgehen kannst, dass andere sie anstößig finden könnten. Su kannst beliebige Wörter in der Filterliste angeben und ihn so als allgemeinen Filter verwenden.";
|
$a->strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Dieses Plugin sucht in Beiträgen nach Wörtern oder Textbauteilen die du weiter unten eingibst, findet es diese Bausteine, dann wird der entsprechende Beitrag zusammengefaltet dargestellt. Auf diese Weise wird verhindert, dass Inhalte, wie z.B. sexuelle Anspielungen, in unpassenden Momenten angezeigt werden. Du solltest den #NSFW Tag für Beiträge verwenden von denen du ausgehen kannst, dass andere sie anstößig finden könnten. Du kannst beliebige Wörter in der Filterliste angeben und ihn so als allgemeinen Filter verwenden.";
|
||||||
$a->strings["Enable Content filter"] = "Aktiviere den Inhaltsfilter";
|
$a->strings["Enable Content filter"] = "Aktiviere den Inhaltsfilter";
|
||||||
$a->strings["Comma separated list of keywords to hide"] = "Durch Komma getrennte Liste von Schlüsselwörtern die verborgen werden sollen";
|
$a->strings["Comma separated list of keywords to hide"] = "Durch Komma getrennte Liste von Schlüsselwörtern die verborgen werden sollen";
|
||||||
$a->strings["Use /expression/ to provide regular expressions"] = "Verwende /expression/ um reguläre Ausdrücke zu verwenden";
|
$a->strings["Use /expression/ to provide regular expressions"] = "Verwende /expression/ um reguläre Ausdrücke zu verwenden";
|
||||||
|
|
@ -1097,6 +1102,9 @@ $a->strings["Post from Friendica"] = "Beitrag via Friendica";
|
||||||
$a->strings["Geonames settings updated."] = "Geonames Einstellungen aktualisiert";
|
$a->strings["Geonames settings updated."] = "Geonames Einstellungen aktualisiert";
|
||||||
$a->strings["Geonames Settings"] = "Geonames Einstellungen";
|
$a->strings["Geonames Settings"] = "Geonames Einstellungen";
|
||||||
$a->strings["Enable Geonames Plugin"] = "Geonames Plugin aktivieren";
|
$a->strings["Enable Geonames Plugin"] = "Geonames Plugin aktivieren";
|
||||||
|
$a->strings["Your account on %s will expire in a few days."] = "Dein Konto auf %s wird in ein paar Tagen verfallen.";
|
||||||
|
$a->strings["Your Friendica account is about to expire."] = "";
|
||||||
|
$a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = "";
|
||||||
$a->strings["Upload a file"] = "Datei hochladen";
|
$a->strings["Upload a file"] = "Datei hochladen";
|
||||||
$a->strings["Drop files here to upload"] = "Ziehe Dateien hierher, um sie hochzuladen";
|
$a->strings["Drop files here to upload"] = "Ziehe Dateien hierher, um sie hochzuladen";
|
||||||
$a->strings["Failed"] = "Fehlgeschlagen";
|
$a->strings["Failed"] = "Fehlgeschlagen";
|
||||||
|
|
@ -1112,13 +1120,13 @@ $a->strings["Site Owner"] = "Betreiber der Seite";
|
||||||
$a->strings["Email Address"] = "Email Adresse";
|
$a->strings["Email Address"] = "Email Adresse";
|
||||||
$a->strings["Postal Address"] = "Postalische Anschrift";
|
$a->strings["Postal Address"] = "Postalische Anschrift";
|
||||||
$a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "Das Impressums-Plugin muss noch konfiguriert werden.<br />Bitte gebe mindestens den <tt>Betreiber</tt> in der Konfiguration an. Alle weiteren Parameter werden in der README-Datei des Addons erläutert.";
|
$a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "Das Impressums-Plugin muss noch konfiguriert werden.<br />Bitte gebe mindestens den <tt>Betreiber</tt> in der Konfiguration an. Alle weiteren Parameter werden in der README-Datei des Addons erläutert.";
|
||||||
$a->strings["The page operators name."] = "Name des Server-Administrators";
|
$a->strings["The page operators name."] = "Name des Serveradministrators";
|
||||||
$a->strings["Site Owners Profile"] = "Profil des Seitenbetreibers";
|
$a->strings["Site Owners Profile"] = "Profil des Seitenbetreibers";
|
||||||
$a->strings["Profile address of the operator."] = "Profil-Adresse des Server-Administrators";
|
$a->strings["Profile address of the operator."] = "Profil-Adresse des Serveradministrators";
|
||||||
$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "Kontaktmöglichkeiten zum Administrator via Schneckenpost. Du kannst BBCode verwenden.";
|
$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "Kontaktmöglichkeiten zum Administrator via Schneckenpost. Du kannst BBCode verwenden.";
|
||||||
$a->strings["Notes"] = "Hinweise";
|
$a->strings["Notes"] = "Hinweise";
|
||||||
$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "Zusätzliche Informationen die neben den Kontaktmöglichkeiten angezeigt werden. Du kannst BBCode verwenden.";
|
$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "Zusätzliche Informationen die neben den Kontaktmöglichkeiten angezeigt werden. Du kannst BBCode verwenden.";
|
||||||
$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "Wie erreichts man den Betreiber per Email. (Adresse wird verschleiert dargestellt)";
|
$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "Wie man den Betreiber per Email erreicht. (Adresse wird verschleiert dargestellt)";
|
||||||
$a->strings["Footer note"] = "Fußnote";
|
$a->strings["Footer note"] = "Fußnote";
|
||||||
$a->strings["Text for the footer. You can use BBCode here."] = "Text für die Fußzeile. Du kannst BBCode verwenden.";
|
$a->strings["Text for the footer. You can use BBCode here."] = "Text für die Fußzeile. Du kannst BBCode verwenden.";
|
||||||
$a->strings["Report Bug"] = "Fehlerreport erstellen";
|
$a->strings["Report Bug"] = "Fehlerreport erstellen";
|
||||||
|
|
@ -1133,14 +1141,14 @@ $a->strings[":-)"] = ":-)";
|
||||||
$a->strings[":-("] = ":-(";
|
$a->strings[":-("] = ":-(";
|
||||||
$a->strings["lol"] = "lol";
|
$a->strings["lol"] = "lol";
|
||||||
$a->strings["Quick Comment Settings"] = "Schnell-Kommentar Einstellungen";
|
$a->strings["Quick Comment Settings"] = "Schnell-Kommentar Einstellungen";
|
||||||
$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "Kurz-Kommentare findet man in der Nähe der Kommentar-Boxen. Ein Klick darauf erstellt einfache Antworten.";
|
$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "Kurzkommentare findet man in der Nähe der Kommentarboxen. Ein Klick darauf erstellt einfache Antworten.";
|
||||||
$a->strings["Enter quick comments, one per line"] = "Gib einen Schnell-Kommentar pro Zeile ein";
|
$a->strings["Enter quick comments, one per line"] = "Gib einen Schnell-Kommentar pro Zeile ein";
|
||||||
$a->strings["Quick Comment settings saved."] = "Schnell-Kommentare Einstellungen gespeichert";
|
$a->strings["Quick Comment settings saved."] = "Schnell-Kommentare Einstellungen gespeichert";
|
||||||
$a->strings["Tile Server URL"] = "Tile Server URL";
|
$a->strings["Tile Server URL"] = "Tile Server URL";
|
||||||
$a->strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "Eine Liste <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">öffentlicher Tile Server</a>";
|
$a->strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "Eine Liste <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">öffentlicher Tile Server</a>";
|
||||||
$a->strings["Default zoom"] = "Standard Zoom";
|
$a->strings["Default zoom"] = "Standard Zoom";
|
||||||
$a->strings["The default zoom level. (1:world, 18:highest)"] = "Standard Zoomlevel (1: Welt; 18: höchstes)";
|
$a->strings["The default zoom level. (1:world, 18:highest)"] = "Standard Zoomlevel (1: Welt; 18: höchstes)";
|
||||||
$a->strings["The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail."] = "Mit dem MathJax Addon können mathematische Formeln, die mit LaTeX geschrieben wurden, dargestellt werden. Die Formel wird mit den üblichen $$ oder einem eqnarray Block gekennzeichnet. Formeln werden in allen Beiträgen auf deiner Pinnwand, dem Netzwerk-Stream sowie privaten Nachrichten gerendert.";
|
$a->strings["The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail."] = "Mit dem MathJax Addon können mathematische Formeln, die mit LaTeX geschrieben wurden, dargestellt werden. Die Formel wird mit den üblichen $$ oder einem eqnarray Block gekennzeichnet. Formeln werden in allen Beiträgen auf deiner Pinnwand, dem Netzwerkstream sowie privaten Nachrichten gerendert.";
|
||||||
$a->strings["Use the MathJax renderer"] = "MathJax verwenden";
|
$a->strings["Use the MathJax renderer"] = "MathJax verwenden";
|
||||||
$a->strings["MathJax Base URL"] = "MathJax Basis-URL";
|
$a->strings["MathJax Base URL"] = "MathJax Basis-URL";
|
||||||
$a->strings["The URL for the javascript file that should be included to use MathJax. Can be either the MathJax CDN or another installation of MathJax."] = "Die URL der MathJax Javascript-Datei, die verwendet werden soll. Diese kann entweder aus der MathJax CDN oder einer anderen Quelle stammen.";
|
$a->strings["The URL for the javascript file that should be included to use MathJax. Can be either the MathJax CDN or another installation of MathJax."] = "Die URL der MathJax Javascript-Datei, die verwendet werden soll. Diese kann entweder aus der MathJax CDN oder einer anderen Quelle stammen.";
|
||||||
|
|
@ -1157,7 +1165,6 @@ $a->strings["Select default avatar image if none was found at Gravatar. See READ
|
||||||
$a->strings["Rating of images"] = "Bildbewertung";
|
$a->strings["Rating of images"] = "Bildbewertung";
|
||||||
$a->strings["Select the appropriate avatar rating for your site. See README"] = "Wähle eine angemessene Bildbewertung für Deinen Server. Schaue auch sonst im README nach.";
|
$a->strings["Select the appropriate avatar rating for your site. See README"] = "Wähle eine angemessene Bildbewertung für Deinen Server. Schaue auch sonst im README nach.";
|
||||||
$a->strings["Gravatar settings updated."] = "Gravatar Einstellungen aktualisiert.";
|
$a->strings["Gravatar settings updated."] = "Gravatar Einstellungen aktualisiert.";
|
||||||
$a->strings["Your account on %s will expire in a few days."] = "Dein Konto auf %s wird in ein paar Tagen verfallen.";
|
|
||||||
$a->strings["Your Friendica test account is about to expire."] = "Dein Friendica Test Konto wird bald verfallen.";
|
$a->strings["Your Friendica test account is about to expire."] = "Dein Friendica Test Konto wird bald verfallen.";
|
||||||
$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = "Hallo %1\$s,\n\ndein Test-Konto auf %2\$s wird in weniger als fünf Tagen verfallen. Wir hoffen, dass dir dieser Testlauf gefallen hat, so dass du die Gelegenheit nutzt und dir eine feste Friendica-Site für deine integrierte Social-Network-Kommunikation suchst. Eine Liste öffentlicher Sites findest du auf http://dir.friendica.com/siteinfo. Um mehr Information darüber zu bekommen, wie man einen eigenen Friendica-Server aufsetzt, kannst du auch einen Blick auf die Friendica Projektseite werfen: http://friendica.com";
|
$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = "Hallo %1\$s,\n\ndein Test-Konto auf %2\$s wird in weniger als fünf Tagen verfallen. Wir hoffen, dass dir dieser Testlauf gefallen hat, so dass du die Gelegenheit nutzt und dir eine feste Friendica-Site für deine integrierte Social-Network-Kommunikation suchst. Eine Liste öffentlicher Sites findest du auf http://dir.friendica.com/siteinfo. Um mehr Information darüber zu bekommen, wie man einen eigenen Friendica-Server aufsetzt, kannst du auch einen Blick auf die Friendica Projektseite werfen: http://friendica.com";
|
||||||
$a->strings["\"pageheader\" Settings"] = "\"pageheader\"-Einstellungen";
|
$a->strings["\"pageheader\" Settings"] = "\"pageheader\"-Einstellungen";
|
||||||
|
|
@ -1192,7 +1199,7 @@ $a->strings["If enabled all your <strong>public</strong> postings can be posted
|
||||||
$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to StatusNet will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "<strong>Hinweis</strong>: Aufgrund deiner Privatsphären-Einstellungen (<em>Profil-Details vor unbekannten Betrachtern verbergen?</em>) wird der Link, der eventuell an deinen StatusNet Account angehängt wird, um auf den original Artikel zu verweisen, den Betrachter auf eine leere Seite führen, die ihn darüber informiert, dass der Zugriff eingeschränkt wurde.";
|
$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to StatusNet will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "<strong>Hinweis</strong>: Aufgrund deiner Privatsphären-Einstellungen (<em>Profil-Details vor unbekannten Betrachtern verbergen?</em>) wird der Link, der eventuell an deinen StatusNet Account angehängt wird, um auf den original Artikel zu verweisen, den Betrachter auf eine leere Seite führen, die ihn darüber informiert, dass der Zugriff eingeschränkt wurde.";
|
||||||
$a->strings["Allow posting to StatusNet"] = "Veröffentlichung bei StatusNet erlauben";
|
$a->strings["Allow posting to StatusNet"] = "Veröffentlichung bei StatusNet erlauben";
|
||||||
$a->strings["Send public postings to StatusNet by default"] = "Veröffentliche öffentliche Beiträge standardmäßig bei StatusNet";
|
$a->strings["Send public postings to StatusNet by default"] = "Veröffentliche öffentliche Beiträge standardmäßig bei StatusNet";
|
||||||
$a->strings["Send #tag links to StatusNet"] = "#Tags nach StatusNet senden";
|
$a->strings["Send linked #-tags and @-names to StatusNet"] = "Sende verlinkte #-Tags und @-Namen nach StatusNet";
|
||||||
$a->strings["Clear OAuth configuration"] = "OAuth-Konfiguration löschen";
|
$a->strings["Clear OAuth configuration"] = "OAuth-Konfiguration löschen";
|
||||||
$a->strings["API URL"] = "API-URL";
|
$a->strings["API URL"] = "API-URL";
|
||||||
$a->strings["Post to Tumblr"] = "Bei Tumblr veröffentlichen";
|
$a->strings["Post to Tumblr"] = "Bei Tumblr veröffentlichen";
|
||||||
|
|
@ -1216,6 +1223,8 @@ $a->strings["WordPress username"] = "WordPress-Benutzername";
|
||||||
$a->strings["WordPress password"] = "WordPress-Passwort";
|
$a->strings["WordPress password"] = "WordPress-Passwort";
|
||||||
$a->strings["WordPress API URL"] = "WordPress-API-URL";
|
$a->strings["WordPress API URL"] = "WordPress-API-URL";
|
||||||
$a->strings["Post to WordPress by default"] = "Standardmäßig auf WordPress veröffentlichen";
|
$a->strings["Post to WordPress by default"] = "Standardmäßig auf WordPress veröffentlichen";
|
||||||
|
$a->strings["Provide a backlink to the Friendica post"] = "";
|
||||||
|
$a->strings["Read the original post and comment stream on Friendica"] = "";
|
||||||
$a->strings["\"Show more\" Settings"] = "\"Mehr zeigen\" Einstellungen";
|
$a->strings["\"Show more\" Settings"] = "\"Mehr zeigen\" Einstellungen";
|
||||||
$a->strings["Enable Show More"] = "Aktiviere \"Mehr zeigen\"";
|
$a->strings["Enable Show More"] = "Aktiviere \"Mehr zeigen\"";
|
||||||
$a->strings["Cutting posts after how much characters"] = "Begrenze Beiträge nach einer bestimmten Anzahl an Buchstaben";
|
$a->strings["Cutting posts after how much characters"] = "Begrenze Beiträge nach einer bestimmten Anzahl an Buchstaben";
|
||||||
|
|
@ -1238,7 +1247,7 @@ $a->strings["If enabled all your <strong>public</strong> postings can be posted
|
||||||
$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "<strong>Hinweis</strong>: Aufgrund deiner Privatsphären-Einstellungen (<em>Profil-Details vor unbekannten Betrachtern verbergen?</em>) wird der Link, der eventuell an an deinen Twitter Account angehängt wird, um auf den original Artikel zu verweisen, den Betrachter auf eine leere Seite führen, die ihn darüber informiert, dass der Zugriff eingeschränkt wurde.";
|
$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "<strong>Hinweis</strong>: Aufgrund deiner Privatsphären-Einstellungen (<em>Profil-Details vor unbekannten Betrachtern verbergen?</em>) wird der Link, der eventuell an an deinen Twitter Account angehängt wird, um auf den original Artikel zu verweisen, den Betrachter auf eine leere Seite führen, die ihn darüber informiert, dass der Zugriff eingeschränkt wurde.";
|
||||||
$a->strings["Allow posting to Twitter"] = "Veröffentlichung bei Twitter erlauben";
|
$a->strings["Allow posting to Twitter"] = "Veröffentlichung bei Twitter erlauben";
|
||||||
$a->strings["Send public postings to Twitter by default"] = "Veröffentliche öffentliche Beiträge standardmäßig bei Twitter";
|
$a->strings["Send public postings to Twitter by default"] = "Veröffentliche öffentliche Beiträge standardmäßig bei Twitter";
|
||||||
$a->strings["Send #tag links to Twitter"] = "#Tags nach Twitter senden";
|
$a->strings["Send linked #-tags and @-names to Twitter"] = "Sende verlinkte #-Tags und @-Namen nach Twitter";
|
||||||
$a->strings["Consumer key"] = "Consumer Key";
|
$a->strings["Consumer key"] = "Consumer Key";
|
||||||
$a->strings["Consumer secret"] = "Consumer Secret";
|
$a->strings["Consumer secret"] = "Consumer Secret";
|
||||||
$a->strings["IRC Settings"] = "IRC Einstellungen";
|
$a->strings["IRC Settings"] = "IRC Einstellungen";
|
||||||
|
|
@ -1262,7 +1271,7 @@ $a->strings["Posterous password"] = "Posterous-Passwort";
|
||||||
$a->strings["Posterous site ID"] = "Posterous site ID";
|
$a->strings["Posterous site ID"] = "Posterous site ID";
|
||||||
$a->strings["Posterous API token"] = "Posterous API token";
|
$a->strings["Posterous API token"] = "Posterous API token";
|
||||||
$a->strings["Post to Posterous by default"] = "Veröffentliche öffentliche Beiträge standardmäßig bei Posterous";
|
$a->strings["Post to Posterous by default"] = "Veröffentliche öffentliche Beiträge standardmäßig bei Posterous";
|
||||||
$a->strings["Theme settings"] = "Themen Einstellungen";
|
$a->strings["Theme settings"] = "Themeneinstellungen";
|
||||||
$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)";
|
$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)";
|
||||||
$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen";
|
$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen";
|
||||||
$a->strings["Set theme width"] = "Theme Breite festlegen";
|
$a->strings["Set theme width"] = "Theme Breite festlegen";
|
||||||
|
|
@ -1411,7 +1420,6 @@ $a->strings["%d Contact"] = array(
|
||||||
0 => "%d Kontakt",
|
0 => "%d Kontakt",
|
||||||
1 => "%d Kontakte",
|
1 => "%d Kontakte",
|
||||||
);
|
);
|
||||||
$a->strings["Search"] = "Suche";
|
|
||||||
$a->strings["Monday"] = "Montag";
|
$a->strings["Monday"] = "Montag";
|
||||||
$a->strings["Tuesday"] = "Dienstag";
|
$a->strings["Tuesday"] = "Dienstag";
|
||||||
$a->strings["Wednesday"] = "Mittwoch";
|
$a->strings["Wednesday"] = "Mittwoch";
|
||||||
|
|
@ -1450,6 +1458,7 @@ $a->strings["view full size"] = "Volle Größe anzeigen";
|
||||||
$a->strings["Embedded content"] = "Eingebetteter Inhalt";
|
$a->strings["Embedded content"] = "Eingebetteter Inhalt";
|
||||||
$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
|
$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
|
||||||
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
|
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
|
||||||
|
$a->strings["Default privacy group for new contacts"] = "";
|
||||||
$a->strings["Everybody"] = "Alle Kontakte";
|
$a->strings["Everybody"] = "Alle Kontakte";
|
||||||
$a->strings["edit"] = "bearbeiten";
|
$a->strings["edit"] = "bearbeiten";
|
||||||
$a->strings["Groups"] = "Gruppen";
|
$a->strings["Groups"] = "Gruppen";
|
||||||
|
|
@ -1472,7 +1481,7 @@ $a->strings["People directory"] = "Nutzerverzeichnis";
|
||||||
$a->strings["Conversations from your friends"] = "Unterhaltungen deiner Kontakte";
|
$a->strings["Conversations from your friends"] = "Unterhaltungen deiner Kontakte";
|
||||||
$a->strings["Friend Requests"] = "Kontaktanfragen";
|
$a->strings["Friend Requests"] = "Kontaktanfragen";
|
||||||
$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen";
|
$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen";
|
||||||
$a->strings["Mark all system notifications seen"] = "Markiere alle System-Benachrichtigungen als gelesen";
|
$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen";
|
||||||
$a->strings["Private mail"] = "Private Email";
|
$a->strings["Private mail"] = "Private Email";
|
||||||
$a->strings["Inbox"] = "Eingang";
|
$a->strings["Inbox"] = "Eingang";
|
||||||
$a->strings["Outbox"] = "Ausgang";
|
$a->strings["Outbox"] = "Ausgang";
|
||||||
|
|
@ -1502,7 +1511,7 @@ $a->strings["Saved Folders"] = "Gespeicherte Ordner";
|
||||||
$a->strings["Everything"] = "Alles";
|
$a->strings["Everything"] = "Alles";
|
||||||
$a->strings["Categories"] = "Kategorien";
|
$a->strings["Categories"] = "Kategorien";
|
||||||
$a->strings["Logged out."] = "Abgemeldet.";
|
$a->strings["Logged out."] = "Abgemeldet.";
|
||||||
$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe dass du die OpenID richtig geschrieben hast.";
|
$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast.";
|
||||||
$a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
|
$a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
|
||||||
$a->strings["Miscellaneous"] = "Verschiedenes";
|
$a->strings["Miscellaneous"] = "Verschiedenes";
|
||||||
$a->strings["year"] = "Jahr";
|
$a->strings["year"] = "Jahr";
|
||||||
|
|
@ -1575,12 +1584,12 @@ $a->strings["link"] = "Verweis";
|
||||||
$a->strings["Welcome "] = "Willkommen ";
|
$a->strings["Welcome "] = "Willkommen ";
|
||||||
$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
|
$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
|
||||||
$a->strings["Welcome back "] = "Willkommen zurück ";
|
$a->strings["Welcome back "] = "Willkommen zurück ";
|
||||||
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheits-Merkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden).";
|
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden).";
|
||||||
$a->strings["stopped following"] = "wird nicht mehr gefolgt";
|
$a->strings["stopped following"] = "wird nicht mehr gefolgt";
|
||||||
$a->strings["View Status"] = "Pinnwand anschauen";
|
$a->strings["View Status"] = "Pinnwand anschauen";
|
||||||
$a->strings["View Profile"] = "Profil anschauen";
|
$a->strings["View Profile"] = "Profil anschauen";
|
||||||
$a->strings["View Photos"] = "Bilder anschauen";
|
$a->strings["View Photos"] = "Bilder anschauen";
|
||||||
$a->strings["Network Posts"] = "Netzwerk-Beiträge";
|
$a->strings["Network Posts"] = "Netzwerkbeiträge";
|
||||||
$a->strings["Edit Contact"] = "Kontakt bearbeiten";
|
$a->strings["Edit Contact"] = "Kontakt bearbeiten";
|
||||||
$a->strings["Send PM"] = "Private Nachricht senden";
|
$a->strings["Send PM"] = "Private Nachricht senden";
|
||||||
$a->strings["post/item"] = "Nachricht/Beitrag";
|
$a->strings["post/item"] = "Nachricht/Beitrag";
|
||||||
|
|
|
||||||
|
|
@ -29,6 +29,7 @@
|
||||||
<script>
|
<script>
|
||||||
|
|
||||||
var updateInterval = $update_interval;
|
var updateInterval = $update_interval;
|
||||||
|
var localUser = $local_user;
|
||||||
|
|
||||||
function confirmDelete() { return confirm("$delitem"); }
|
function confirmDelete() { return confirm("$delitem"); }
|
||||||
function commentOpen(obj,id) {
|
function commentOpen(obj,id) {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,11 @@
|
||||||
<input name="newtag" id="photo-edit-newtag" size="84" title="$help_tags" type="text" />
|
<input name="newtag" id="photo-edit-newtag" size="84" title="$help_tags" type="text" />
|
||||||
|
|
||||||
<div id="photo-edit-tags-end"></div>
|
<div id="photo-edit-tags-end"></div>
|
||||||
|
<div id="photo-edit-rotate-wrapper">
|
||||||
|
<div id="photo-edit-rotate-label">$rotate</div>
|
||||||
|
<input type="checkbox" name="rotate" value="1" />
|
||||||
|
</div>
|
||||||
|
<div id="photo-edit-rotate-end"></div>
|
||||||
|
|
||||||
<div id="photo-edit-perms" class="photo-edit-perms" >
|
<div id="photo-edit-perms" class="photo-edit-perms" >
|
||||||
<a href="#photo-edit-perms-select" id="photo-edit-perms-menu" class="button" title="$permissions"/>
|
<a href="#photo-edit-perms-select" id="photo-edit-perms-menu" class="button" title="$permissions"/>
|
||||||
|
|
|
||||||
0
view/theme/darkbubble/unsupported
Normal file
0
view/theme/darkbubble/unsupported
Normal file
|
|
@ -146,11 +146,11 @@ blockquote {
|
||||||
background:#444;
|
background:#444;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.wall-item-content {
|
.wall-item-content {
|
||||||
max-height: 20000px;
|
max-height: 20000px;
|
||||||
overflow: none;
|
overflow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.editicon:hover {
|
||||||
|
background-color: #ccc;
|
||||||
|
}
|
||||||
|
|
@ -146,3 +146,7 @@ blockquote {
|
||||||
background:#444;
|
background:#444;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* This seems okay to me...we might not need a new iconset, lets see how people react */
|
||||||
|
.editicon {
|
||||||
|
background-color: #333;
|
||||||
|
}
|
||||||
|
|
@ -2118,7 +2118,7 @@ aside input[type='text'] {
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#photo-edit-caption-label, #photo-edit-tags-label, #photo-edit-albumname-label {
|
#photo-edit-caption-label, #photo-edit-tags-label, #photo-edit-albumname-label, #photo-edit-rotate-label {
|
||||||
float: left;
|
float: left;
|
||||||
width: 150px;
|
width: 150px;
|
||||||
}
|
}
|
||||||
|
|
@ -2127,7 +2127,7 @@ aside input[type='text'] {
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#photo-edit-caption, #photo-edit-newtag, #photo-edit-albumname {
|
#photo-edit-caption, #photo-edit-newtag, #photo-edit-albumname, #photo-edit-rotate {
|
||||||
float: left;
|
float: left;
|
||||||
margin-bottom: 25px;
|
margin-bottom: 25px;
|
||||||
}
|
}
|
||||||
|
|
@ -2138,10 +2138,14 @@ aside input[type='text'] {
|
||||||
margin-bottom: 25px;
|
margin-bottom: 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#photo-edit-caption-end, #photo-edit-tags-end, #photo-edit-albumname-end {
|
#photo-edit-caption-end, #photo-edit-tags-end, #photo-edit-albumname-end, #photo-edit-rotate-end {
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#photo-edit-rotate-end {
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
#photo-edit-delete-button {
|
#photo-edit-delete-button {
|
||||||
margin-left: 200px;
|
margin-left: 200px;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
1
view/theme/slackr/birthdays_reminder.tpl
Normal file
1
view/theme/slackr/birthdays_reminder.tpl
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
|
||||||
39
view/theme/slackr/events_reminder.tpl
Normal file
39
view/theme/slackr/events_reminder.tpl
Normal file
|
|
@ -0,0 +1,39 @@
|
||||||
|
<link rel='stylesheet' type='text/css' href='$baseurl/library/fullcalendar/fullcalendar.css' />
|
||||||
|
<script language="javascript" type="text/javascript"
|
||||||
|
src="$baseurl/library/fullcalendar/fullcalendar.min.js"></script>
|
||||||
|
<script>
|
||||||
|
// start calendar from yesterday
|
||||||
|
var yesterday= new Date()
|
||||||
|
yesterday.setDate(yesterday.getDate()-1)
|
||||||
|
|
||||||
|
function showEvent(eventid) {
|
||||||
|
$.get(
|
||||||
|
'$baseurl/events/?id='+eventid,
|
||||||
|
function(data){
|
||||||
|
$.fancybox(data);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
$(document).ready(function() {
|
||||||
|
$('#events-reminder').fullCalendar({
|
||||||
|
firstDay: yesterday.getDay(),
|
||||||
|
year: yesterday.getFullYear(),
|
||||||
|
month: yesterday.getMonth(),
|
||||||
|
date: yesterday.getDate(),
|
||||||
|
events: '$baseurl/events/json/',
|
||||||
|
header: {
|
||||||
|
left: '',
|
||||||
|
center: '',
|
||||||
|
right: ''
|
||||||
|
},
|
||||||
|
timeFormat: 'H(:mm)',
|
||||||
|
defaultView: 'basicWeek',
|
||||||
|
height: 50,
|
||||||
|
eventClick: function(calEvent, jsEvent, view) {
|
||||||
|
showEvent(calEvent.id);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<div id="events-reminder"></div>
|
||||||
|
<br>
|
||||||
|
|
@ -40,6 +40,9 @@ nav #site-location {
|
||||||
right: 36px;
|
right: 36px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.fc-event-skin {
|
||||||
|
background-color: #3465a4 !important;
|
||||||
|
}
|
||||||
.wall-item-photo, .photo, .contact-block-img, .my-comment-photo {
|
.wall-item-photo, .photo, .contact-block-img, .my-comment-photo {
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
-moz-border-radius: 3px;
|
-moz-border-radius: 3px;
|
||||||
|
|
|
||||||
|
|
@ -45,6 +45,7 @@ function cmtBbClose(id) {
|
||||||
}
|
}
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
|
|
||||||
|
|
||||||
$('html').click(function() { $("#nav-notifications-menu" ).hide(); });
|
$('html').click(function() { $("#nav-notifications-menu" ).hide(); });
|
||||||
|
|
||||||
$('.group-edit-icon').hover(
|
$('.group-edit-icon').hover(
|
||||||
|
|
|
||||||
0
view/theme/testbubble/unsupported
Normal file
0
view/theme/testbubble/unsupported
Normal file
Loading…
Add table
Add a link
Reference in a new issue