Merge branch 'master' of https://github.com/friendica/friendica into threaded_items
This commit is contained in:
commit
1581e02f8f
82 changed files with 4629 additions and 2039 deletions
9
boot.php
9
boot.php
|
|
@ -11,7 +11,7 @@ require_once('include/cache.php');
|
|||
require_once('library/Mobile_Detect/Mobile_Detect.php');
|
||||
|
||||
define ( 'FRIENDICA_PLATFORM', 'Friendica');
|
||||
define ( 'FRIENDICA_VERSION', '3.0.1431' );
|
||||
define ( 'FRIENDICA_VERSION', '3.0.1436' );
|
||||
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
|
||||
define ( 'DB_UPDATE_VERSION', 1154 );
|
||||
|
||||
|
|
@ -365,6 +365,7 @@ if(! class_exists('App')) {
|
|||
public $videowidth = 425;
|
||||
public $videoheight = 350;
|
||||
public $force_max_items = 0;
|
||||
public $theme_thread_allow = true;
|
||||
|
||||
private $scheme;
|
||||
private $hostname;
|
||||
|
|
@ -734,9 +735,13 @@ if(! function_exists('check_config')) {
|
|||
// than the currently visited url, store the current value accordingly.
|
||||
// "Radically different" ignores common variations such as http vs https
|
||||
// and www.example.com vs example.com.
|
||||
// We will only change the url to an ip address if there is no existing setting
|
||||
|
||||
if((! x($url)) || (! link_compare($url,$a->get_baseurl())))
|
||||
if(! x($url))
|
||||
$url = set_config('system','url',$a->get_baseurl());
|
||||
if((! link_compare($url,$a->get_baseurl())) && (! preg_match("/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/",$a->get_hostname)))
|
||||
$url = set_config('system','url',$a->get_baseurl());
|
||||
|
||||
|
||||
if($build != DB_UPDATE_VERSION) {
|
||||
$stored = intval($build);
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ This is your Network Tab. If you get lost, you can <a href="help/network">click
|
|||
|
||||
This is a bit like the Newsfeed at Facebook or the Stream at Diaspora. It's where all the posts from your contacts, groups, and feeds will appear. If you're new, you won't see anything in this page, unless you posted your status in the last step. If you've already added a few friends, you'll be able to see their posts. Here, you can comment, like, or dislike posts, or click on somebody's name to visit their profile page where you can write on their wall.
|
||||
|
||||
Now we need to fill it up, the first step, is to <a href="help/peopleyouknow"> add people you already know from Facebook</a>.
|
||||
Now we need to fill it up, the first step, is to <a href="help/makingnewfriends"> make some new friends</a>.
|
||||
|
||||
<iframe src="network" width="950" height="600"></iframe>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,13 +0,0 @@
|
|||
This is your connector settings page. If you get lost, you can <a href="help/network">click this link</a> to bring yourself back here.
|
||||
|
||||
This is the bit that makes Friendica unique. You can connect to <i>anybody on the internet</i> from your Friendica account using this page! The available connectors varies depending on which plugins you have installed, but for now, we'll walk you through Facebook. Note that not all servers have the Facebook connector installed. If you can't find it in the list below, don't worry, we'll look at ways of connecting to more people in the following pages.
|
||||
|
||||
The biggest of all social networks is Facebook. Fortunately, this connector is really easy. Scroll down the page, and click Facebook Connector Settings. Enter your Facebook user name and password and let the application (the connector) do everything the options suggest. You can <a href="https://github.com/friendica/friendica/wiki/How-to:-Friendica%E2%80%99s-Facebook-connector" target="_blank">fine tune this</a> or experiment with the other connectors too. If you need help, you can always ask at <a href="http://helpers.pyxis.uberspace.de/profile/helpers" target="_blank">Friendica Support</a> or <a href="help/Connectors" target="_blank">see the instructions here</a>.
|
||||
|
||||
When you're ready, we can move on to <a href="help/makingnewfriends">making new friends</a>.
|
||||
|
||||
|
||||
|
||||
<iframe src="settings/connectors" width="950" height="600"></iframe>
|
||||
|
||||
|
||||
|
|
@ -394,7 +394,10 @@ function probe_url($url, $mode = PROBE_NORMAL) {
|
|||
}
|
||||
if($link['@attributes']['rel'] === 'diaspora-public-key') {
|
||||
$diaspora_key = base64_decode(unamp($link['@attributes']['href']));
|
||||
$pubkey = rsatopem($diaspora_key);
|
||||
if(strstr($diaspora_key,'RSA '))
|
||||
$pubkey = rsatopem($diaspora_key);
|
||||
else
|
||||
$pubkey = $diaspora_key;
|
||||
$diaspora = true;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -755,6 +755,15 @@
|
|||
|
||||
$ret = api_format_items($r,$user_info);
|
||||
|
||||
// We aren't going to try to figure out at the item, group, and page
|
||||
// level which items you've seen and which you haven't. If you're looking
|
||||
// at the network timeline just mark everything seen.
|
||||
|
||||
$r = q("UPDATE `item` SET `unseen` = 0
|
||||
WHERE `unseen` = 1 AND `uid` = %d",
|
||||
intval($user_info['uid'])
|
||||
);
|
||||
|
||||
|
||||
$data = array('$statuses' => $ret);
|
||||
switch($type){
|
||||
|
|
|
|||
|
|
@ -323,6 +323,10 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true) {
|
|||
$Text = preg_replace("/\[img\](.*?)\[\/img\]/ism", '<img src="$1" alt="' . t('Image/photo') . '" />', $Text);
|
||||
|
||||
|
||||
|
||||
$Text = preg_replace("/\[crypt\](.*?)\[\/crypt\]/ism",'<br/><img src="' .$a->get_baseurl() . '/images/lock_icon.gif" alt="' . t('Encrypted content') . '" title="' . t('Encrypted content') . '" /><br />', $Text);
|
||||
|
||||
|
||||
// Try to Oembed
|
||||
if ($tryoembed) {
|
||||
$Text = preg_replace("/\[video\](.*?\.(ogg|ogv|oga|ogm|webm|mp4))\[\/video\]/ism", '<video src="$1" controls="controls" width="' . $a->videowidth . '" height="' . $a->videoheight . '"><a href="$1">$1</a></video>', $Text);
|
||||
|
|
@ -407,6 +411,8 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true) {
|
|||
|
||||
|
||||
$Text = preg_replace('/\[\&\;([#a-z0-9]+)\;\]/','&$1;',$Text);
|
||||
$Text = preg_replace('/\&\#039\;/','\'',$Text);
|
||||
$Text = preg_replace('/\"\;/','"',$Text);
|
||||
|
||||
// fix any escaped ampersands that may have been converted into links
|
||||
$Text = preg_replace("/\<(.*?)(src|href)=(.*?)\&\;(.*?)\>/ism",'<$1$2=$3&$4>',$Text);
|
||||
|
|
|
|||
|
|
@ -545,6 +545,7 @@ function prepare_threads_body($a, $items, $cmnt_tpl, $page_writeable, $mode, $pr
|
|||
'$edurl' => t('Link'),
|
||||
'$edvideo' => t('Video'),
|
||||
'$preview' => t('Preview'),
|
||||
'$indent' => $indent,
|
||||
'$sourceapp' => t($a->sourcename),
|
||||
'$ww' => (($mode === 'network') ? $commentww : '')
|
||||
));
|
||||
|
|
@ -623,7 +624,7 @@ function prepare_threads_body($a, $items, $cmnt_tpl, $page_writeable, $mode, $pr
|
|||
/*
|
||||
* I don't like this very much...
|
||||
*/
|
||||
if(get_config('system','thread_allow')) {
|
||||
if(get_config('system','thread_allow') && $a->theme_thread_allow) {
|
||||
$item_result['flatten'] = false;
|
||||
$item_result['threaded'] = true;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1350,7 +1350,7 @@ function diaspora_comment($importer,$xml,$msg) {
|
|||
'verb' => ACTIVITY_POST,
|
||||
'otype' => 'item',
|
||||
'parent' => $conv_parent,
|
||||
|
||||
'parent_uri' => $parent_uri
|
||||
));
|
||||
|
||||
// only send one notification
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
<?php
|
||||
|
||||
require_once('include/email.php');
|
||||
|
||||
function notification($params) {
|
||||
|
||||
logger('notification: entry', LOGGER_DEBUG);
|
||||
|
|
@ -324,7 +326,7 @@ function notification($params) {
|
|||
// If so, create the record of it and use a message-id smtp header.
|
||||
|
||||
if(!$r) {
|
||||
logger("norify_id:" . intval($notify_id). ", parent: " . intval($params['parent']) . "uid: " .
|
||||
logger("notify_id:" . intval($notify_id). ", parent: " . intval($params['parent']) . "uid: " .
|
||||
intval($params['uid']), LOGGER_DEBUG);
|
||||
$r = q("insert into `notify-threads` (`notify-id`, `master-parent-item`, `receiver-uid`, `parent-item`)
|
||||
values(%d,%d,%d,%d)",
|
||||
|
|
@ -495,6 +497,7 @@ class enotify {
|
|||
$multipartMessageBody, // message body
|
||||
$messageHeader // message headers
|
||||
);
|
||||
logger("notification: enotify::send header " . 'To: ' . $params['toEmail'] . "\n" . $messageHeader, LOGGER_DEBUG);
|
||||
logger("notification: enotify::send returns " . $res, LOGGER_DEBUG);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2136,7 +2136,7 @@ function local_delivery($importer,$data) {
|
|||
}
|
||||
}
|
||||
|
||||
if((is_array($contact)) && ($photo_timestamp) && (strlen($photo_url)) && ($photo_timestamp > $importer['avatar-date'])) {
|
||||
if(($photo_timestamp) && (strlen($photo_url)) && ($photo_timestamp > $importer['avatar-date'])) {
|
||||
logger('local_delivery: Updating photo for ' . $importer['name']);
|
||||
require_once("Photo.php");
|
||||
$photo_failure = false;
|
||||
|
|
@ -2194,7 +2194,7 @@ function local_delivery($importer,$data) {
|
|||
}
|
||||
}
|
||||
|
||||
if((is_array($contact)) && ($name_updated) && (strlen($new_name)) && ($name_updated > $contact['name-date'])) {
|
||||
if(($name_updated) && (strlen($new_name)) && ($name_updated > $importer['name-date'])) {
|
||||
$r = q("select * from contact where uid = %d and id = %d limit 1",
|
||||
intval($importer['importer_uid']),
|
||||
intval($importer['id'])
|
||||
|
|
@ -2778,12 +2778,14 @@ function local_delivery($importer,$data) {
|
|||
$parent = 0;
|
||||
|
||||
if($posted_id) {
|
||||
$r = q("SELECT `parent` FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
||||
$r = q("SELECT `parent`, `parent-uri` FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
||||
intval($posted_id),
|
||||
intval($importer['importer_uid'])
|
||||
);
|
||||
if(count($r))
|
||||
if(count($r)) {
|
||||
$parent = $r[0]['parent'];
|
||||
$parent_uri = $r[0]['parent-uri'];
|
||||
}
|
||||
|
||||
if(! $is_like) {
|
||||
$r1 = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `uid` = %d AND `parent` = %d",
|
||||
|
|
@ -2823,7 +2825,7 @@ function local_delivery($importer,$data) {
|
|||
'verb' => ACTIVITY_POST,
|
||||
'otype' => 'item',
|
||||
'parent' => $parent,
|
||||
|
||||
'parent_uri' => $parent_uri,
|
||||
));
|
||||
|
||||
}
|
||||
|
|
@ -2972,6 +2974,7 @@ function local_delivery($importer,$data) {
|
|||
'verb' => ACTIVITY_POST,
|
||||
'otype' => 'item',
|
||||
'parent' => $conv_parent,
|
||||
'parent_uri' => $parent_uri
|
||||
|
||||
));
|
||||
|
||||
|
|
@ -3061,7 +3064,8 @@ function local_delivery($importer,$data) {
|
|||
$datarray['uid'] = $importer['importer_uid'];
|
||||
$datarray['contact-id'] = $importer['id'];
|
||||
|
||||
if(! link_compare($datarray['owner-link'],$contact['url'])) {
|
||||
|
||||
if(! link_compare($datarray['owner-link'],$importer['url'])) {
|
||||
// The item owner info is not our contact. It's OK and is to be expected if this is a tgroup delivery,
|
||||
// but otherwise there's a possible data mixup on the sender's system.
|
||||
// the tgroup delivery code called from item_store will correct it if it's a forum,
|
||||
|
|
@ -3339,7 +3343,7 @@ function atom_entry($item,$type,$author,$owner,$comment = false,$cid = 0) {
|
|||
if(strlen($item['owner-name']))
|
||||
$o .= atom_author('dfrn:owner',$item['owner-name'],$item['owner-link'],80,80,$item['owner-avatar']);
|
||||
|
||||
if(($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']) || ($item['thr-parent'])) {
|
||||
if(($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']) || (($item['thr-parent'] !== '') && ($item['thr-parent'] !== $item['uri']))) {
|
||||
$parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']);
|
||||
$o .= '<thr:in-reply-to ref="' . xmlify($parent_item) . '" type="text/html" href="' . xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['parent']) . '" />' . "\r\n";
|
||||
}
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ function notags($string) {
|
|||
if(! function_exists('escape_tags')) {
|
||||
function escape_tags($string) {
|
||||
|
||||
return(htmlspecialchars($string));
|
||||
return(htmlspecialchars($string, ENT_COMPAT, 'UTF-8', false));
|
||||
}}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -275,7 +275,7 @@ aStates[249]="|'Adan|'Ataq|Abyan|Al Bayda'|Al Hudaydah|Al Jawf|Al Mahrah|Al Mahw
|
|||
aStates[250]="|Kosovo|Montenegro|Serbia|Vojvodina";
|
||||
aStates[251]="|Central|Copperbelt|Eastern|Luapula|Lusaka|North-Western|Northern|Southern|Western";
|
||||
aStates[252]="|Bulawayo|Harare|ManicalandMashonaland Central|Mashonaland East|Mashonaland West|Masvingo|Matabeleland North|Matabeleland South|Midlands";
|
||||
aStates[253]="|Self Hosted|Private Server|Architects Of Sleep|DFRN|Distributed Friend Network|Free-Beer.ch|Foojbook|Free-Haven|Friendica.eu|Friendika.me.4.it|Friendika - I Ask Questions|Frndc.com|Hikado|Hipatia|Hungerfreunde|Kaluguran Community|Kak Ste|Karl.Markx.pm|Loozah Social Club|MyFriendica.net|MyFriendNetwork|Oi!|OpenMindSpace|Optimistisch|Recolutionari.es|Sparkling Network|SPRACI|Styliztique|Sysfu Social Club|Trevena|theshi.re|Tumpambae|Uzmiac|Other";
|
||||
aStates[253]="|Self Hosted|Private Server|Architects Of Sleep|DFRN|Distributed Friend Network|ErrLock|Free-Beer.ch|Foojbook|Free-Haven|Friendica.eu|Friendika.me.4.it|Friendika - I Ask Questions|Frndc.com|Hikado|Hipatia|Hungerfreunde|Kaluguran Community|Kak Ste|Karl.Markx.pm|Loozah Social Club|MyFriendica.net|MyFriendNetwork|Oi!|OpenMindSpace|Optimistisch|Recolutionari.es|SilverLips|Sparkling Network|SPRACI|Styliztique|Sysfu Social Club|Trevena|theshi.re|Tumpambae|Uzmiac|Other";
|
||||
/*
|
||||
* gArCountryInfo
|
||||
* (0) Country name
|
||||
|
|
|
|||
2
js/main.min.js
vendored
2
js/main.min.js
vendored
File diff suppressed because one or more lines are too long
|
|
@ -237,6 +237,7 @@ function admin_page_site_post(&$a){
|
|||
$banner = ((x($_POST,'banner')) ? trim($_POST['banner']) : false);
|
||||
$language = ((x($_POST,'language')) ? notags(trim($_POST['language'])) : '');
|
||||
$theme = ((x($_POST,'theme')) ? notags(trim($_POST['theme'])) : '');
|
||||
$theme_mobile = ((x($_POST,'theme_mobile')) ? notags(trim($_POST['theme_mobile'])) : '');
|
||||
$maximagesize = ((x($_POST,'maximagesize')) ? intval(trim($_POST['maximagesize'])) : 0);
|
||||
|
||||
|
||||
|
|
@ -325,6 +326,11 @@ function admin_page_site_post(&$a){
|
|||
}
|
||||
set_config('system','language', $language);
|
||||
set_config('system','theme', $theme);
|
||||
if ( $theme_mobile === '---' ) {
|
||||
del_config('system','mobile-theme');
|
||||
} else {
|
||||
set_config('system','mobile-theme', $theme_mobile);
|
||||
}
|
||||
set_config('system','maximagesize', $maximagesize);
|
||||
|
||||
set_config('config','register_policy', $register_policy);
|
||||
|
|
@ -386,12 +392,17 @@ function admin_page_site(&$a) {
|
|||
|
||||
/* Installed themes */
|
||||
$theme_choices = array();
|
||||
$theme_choices_mobile = array();
|
||||
$theme_choices_mobile["---"] = t("Don't apply a special theme for mobile devices.");
|
||||
$files = glob('view/theme/*');
|
||||
if($files) {
|
||||
foreach($files as $file) {
|
||||
$f = basename($file);
|
||||
$theme_name = ((file_exists($file . '/experimental')) ? sprintf("%s - \x28Experimental\x29", $f) : $f);
|
||||
$theme_choices[$f] = $theme_name;
|
||||
$theme_choices[$f] = $theme_name;
|
||||
if (file_exists($file . '/mobile')) {
|
||||
$theme_choices_mobile[$f] = $theme_name;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -433,6 +444,7 @@ function admin_page_site(&$a) {
|
|||
'$banner' => array('banner', t("Banner/Logo"), $banner, ""),
|
||||
'$language' => array('language', t("System language"), get_config('system','language'), "", $lang_choices),
|
||||
'$theme' => array('theme', t("System theme"), get_config('system','theme'), t("Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"), $theme_choices),
|
||||
'$theme_mobile' => array('theme_mobile', t("Mobile system theme"), get_config('system','mobile-theme'), t("Theme for mobile devices"), $theme_choices_mobile),
|
||||
'$ssl_policy' => array('ssl_policy', t("SSL link policy"), (string) intval(get_config('system','ssl_policy')), t("Determines whether generated links should be forced to use SSL"), $ssl_choices),
|
||||
'$maximagesize' => array('maximagesize', t("Maximum image size"), get_config('system','maximagesize'), t("Maximum size in bytes of uploaded images. Default is 0, which means no limits.")),
|
||||
|
||||
|
|
|
|||
|
|
@ -748,6 +748,7 @@ function item_post(&$a) {
|
|||
'verb' => ACTIVITY_POST,
|
||||
'otype' => 'item',
|
||||
'parent' => $parent,
|
||||
'parent_uri' => $parent_item['uri']
|
||||
));
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ function newmember_content(&$a) {
|
|||
|
||||
$o .= '<ul>';
|
||||
|
||||
$o .= '<li>' . '<a target="newmember" href="help/guide">' . t('On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, connect to Facebook, make some new connections, and find some groups to join.') . '</a></li>' . EOL;
|
||||
$o .= '<li>' . '<a target="newmember" href="help/guide">' . t('On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join.') . '</a></li>' . EOL;
|
||||
|
||||
$o .= '<li>' . '<a target="newmember" href="settings">' . t('On your <em>Settings</em> page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web.') . '</a></li>' . EOL;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,9 @@
|
|||
<?php
|
||||
|
||||
function profile_init(&$a) {
|
||||
require_once('include/contact_widgets.php');
|
||||
|
||||
require_once('include/contact_widgets.php');
|
||||
|
||||
function profile_init(&$a) {
|
||||
|
||||
if(! x($a->page,'aside'))
|
||||
$a->page['aside'] = '';
|
||||
|
|
|
|||
768
util/messages.po
768
util/messages.po
|
|
@ -6,9 +6,9 @@
|
|||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 3.0.1431\n"
|
||||
"Project-Id-Version: 3.0.1436\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-08-10 10:00-0700\n"
|
||||
"POT-Creation-Date: 2012-08-15 10:00-0700\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -55,8 +55,9 @@ msgstr ""
|
|||
#: ../../mod/profiles.php:408 ../../mod/delegate.php:6
|
||||
#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81
|
||||
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510
|
||||
#: ../../addon/facebook/facebook.php:516 ../../addon/dav/layout.fnk.php:354
|
||||
#: ../../include/items.php:3814 ../../index.php:315
|
||||
#: ../../addon/facebook/facebook.php:516
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3816
|
||||
#: ../../index.php:315
|
||||
msgid "Permission denied."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -86,7 +87,7 @@ msgid "Return to contact editor"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/crepair.php:148 ../../mod/settings.php:539
|
||||
#: ../../mod/settings.php:565 ../../mod/admin.php:667 ../../mod/admin.php:676
|
||||
#: ../../mod/settings.php:565 ../../mod/admin.php:679 ../../mod/admin.php:688
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -131,8 +132,8 @@ msgstr ""
|
|||
#: ../../mod/contacts.php:341 ../../mod/settings.php:537
|
||||
#: ../../mod/settings.php:691 ../../mod/settings.php:752
|
||||
#: ../../mod/settings.php:958 ../../mod/group.php:85 ../../mod/message.php:294
|
||||
#: ../../mod/message.php:478 ../../mod/admin.php:424 ../../mod/admin.php:664
|
||||
#: ../../mod/admin.php:800 ../../mod/admin.php:999 ../../mod/admin.php:1086
|
||||
#: ../../mod/message.php:478 ../../mod/admin.php:435 ../../mod/admin.php:676
|
||||
#: ../../mod/admin.php:812 ../../mod/admin.php:1011 ../../mod/admin.php:1098
|
||||
#: ../../mod/profiles.php:578 ../../mod/invite.php:119
|
||||
#: ../../addon/fromgplus/fromgplus.php:40
|
||||
#: ../../addon/facebook/facebook.php:619
|
||||
|
|
@ -172,7 +173,7 @@ msgstr ""
|
|||
#: ../../view/theme/diabook/theme.php:757
|
||||
#: ../../view/theme/diabook/config.php:190
|
||||
#: ../../view/theme/quattro/config.php:52 ../../view/theme/dispy/config.php:70
|
||||
#: ../../include/conversation.php:525
|
||||
#: ../../include/conversation.php:538
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -180,7 +181,7 @@ msgstr ""
|
|||
msgid "Help:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/help.php:34 ../../addon/dav/layout.fnk.php:225
|
||||
#: ../../mod/help.php:34 ../../addon/dav/friendica/layout.fnk.php:225
|
||||
#: ../../include/nav.php:86
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
|
@ -232,7 +233,7 @@ msgid "link to source"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/events.php:331 ../../view/theme/diabook/theme.php:131
|
||||
#: ../../include/nav.php:52 ../../boot.php:1645
|
||||
#: ../../include/nav.php:52 ../../boot.php:1651
|
||||
msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -240,12 +241,12 @@ msgstr ""
|
|||
msgid "Create New Event"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/events.php:333 ../../addon/dav/layout.fnk.php:263
|
||||
#: ../../mod/events.php:333 ../../addon/dav/friendica/layout.fnk.php:263
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/events.php:334 ../../mod/install.php:205
|
||||
#: ../../addon/dav/layout.fnk.php:266
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:266
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -287,8 +288,8 @@ msgid "Description:"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/events.php:432 ../../mod/directory.php:132
|
||||
#: ../../include/event.php:40 ../../include/bb2diaspora.php:447
|
||||
#: ../../boot.php:1197
|
||||
#: ../../include/event.php:40 ../../include/bb2diaspora.php:455
|
||||
#: ../../boot.php:1203
|
||||
msgid "Location:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -370,7 +371,7 @@ msgstr ""
|
|||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:46 ../../boot.php:1638
|
||||
#: ../../mod/photos.php:46 ../../boot.php:1644
|
||||
msgid "Photo Albums"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -424,7 +425,7 @@ msgstr ""
|
|||
#: ../../mod/photos.php:572 ../../mod/like.php:145 ../../mod/tagger.php:70
|
||||
#: ../../addon/communityhome/communityhome.php:163
|
||||
#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1366
|
||||
#: ../../include/diaspora.php:1793 ../../include/conversation.php:114
|
||||
#: ../../include/diaspora.php:1824 ../../include/conversation.php:114
|
||||
#: ../../include/conversation.php:230
|
||||
msgid "photo"
|
||||
msgstr ""
|
||||
|
|
@ -524,7 +525,7 @@ msgid "Use as profile photo"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1171 ../../mod/content.php:601
|
||||
#: ../../include/conversation.php:365
|
||||
#: ../../include/conversation.php:381
|
||||
msgid "Private Message"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -565,49 +566,49 @@ msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1303 ../../mod/content.php:665
|
||||
#: ../../include/conversation.php:500
|
||||
#: ../../include/conversation.php:513
|
||||
msgid "I like this (toggle)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1304 ../../mod/content.php:666
|
||||
#: ../../include/conversation.php:501
|
||||
#: ../../include/conversation.php:514
|
||||
msgid "I don't like this (toggle)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1305 ../../include/conversation.php:1121
|
||||
#: ../../mod/photos.php:1305 ../../include/conversation.php:1139
|
||||
msgid "Share"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1306 ../../mod/editpost.php:112
|
||||
#: ../../mod/content.php:482 ../../mod/content.php:843
|
||||
#: ../../mod/wallmessage.php:152 ../../mod/message.php:293
|
||||
#: ../../mod/message.php:479 ../../include/conversation.php:590
|
||||
#: ../../include/conversation.php:821 ../../include/conversation.php:1140
|
||||
#: ../../mod/message.php:479 ../../include/conversation.php:604
|
||||
#: ../../include/conversation.php:835 ../../include/conversation.php:1158
|
||||
msgid "Please wait"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1322 ../../mod/photos.php:1363
|
||||
#: ../../mod/photos.php:1395 ../../mod/content.php:688
|
||||
#: ../../include/conversation.php:522
|
||||
#: ../../include/conversation.php:535
|
||||
msgid "This is you"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1324 ../../mod/photos.php:1365
|
||||
#: ../../mod/photos.php:1397 ../../mod/content.php:690
|
||||
#: ../../include/conversation.php:524 ../../boot.php:580
|
||||
#: ../../include/conversation.php:537 ../../boot.php:582
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1326 ../../mod/editpost.php:133
|
||||
#: ../../mod/content.php:700 ../../include/conversation.php:534
|
||||
#: ../../include/conversation.php:1158
|
||||
#: ../../mod/content.php:700 ../../include/conversation.php:547
|
||||
#: ../../include/conversation.php:1176
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1426 ../../mod/content.php:439
|
||||
#: ../../mod/content.php:721 ../../mod/settings.php:600
|
||||
#: ../../mod/settings.php:689 ../../mod/group.php:168 ../../mod/admin.php:671
|
||||
#: ../../include/conversation.php:379 ../../include/conversation.php:778
|
||||
#: ../../mod/settings.php:689 ../../mod/group.php:168 ../../mod/admin.php:683
|
||||
#: ../../include/conversation.php:395 ../../include/conversation.php:792
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -673,28 +674,28 @@ msgstr ""
|
|||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:88 ../../include/conversation.php:1107
|
||||
#: ../../mod/editpost.php:88 ../../include/conversation.php:1125
|
||||
msgid "Post to Email"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:103 ../../mod/content.php:708
|
||||
#: ../../mod/settings.php:599 ../../include/conversation.php:370
|
||||
#: ../../mod/settings.php:599 ../../include/conversation.php:386
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150
|
||||
#: ../../mod/message.php:291 ../../mod/message.php:476
|
||||
#: ../../include/conversation.php:1122
|
||||
#: ../../include/conversation.php:1140
|
||||
msgid "Upload photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:105 ../../include/conversation.php:1124
|
||||
#: ../../mod/editpost.php:105 ../../include/conversation.php:1142
|
||||
msgid "Attach file"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151
|
||||
#: ../../mod/message.php:292 ../../mod/message.php:477
|
||||
#: ../../include/conversation.php:1126
|
||||
#: ../../include/conversation.php:1144
|
||||
msgid "Insert web link"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -710,35 +711,35 @@ msgstr ""
|
|||
msgid "Insert Vorbis [.ogg] audio"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:110 ../../include/conversation.php:1132
|
||||
#: ../../mod/editpost.php:110 ../../include/conversation.php:1150
|
||||
msgid "Set your location"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:111 ../../include/conversation.php:1134
|
||||
#: ../../mod/editpost.php:111 ../../include/conversation.php:1152
|
||||
msgid "Clear browser location"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:113 ../../include/conversation.php:1141
|
||||
#: ../../mod/editpost.php:113 ../../include/conversation.php:1159
|
||||
msgid "Permission settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:121 ../../include/conversation.php:1150
|
||||
#: ../../mod/editpost.php:121 ../../include/conversation.php:1168
|
||||
msgid "CC: email addresses"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:122 ../../include/conversation.php:1151
|
||||
#: ../../mod/editpost.php:122 ../../include/conversation.php:1169
|
||||
msgid "Public post"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:125 ../../include/conversation.php:1137
|
||||
#: ../../mod/editpost.php:125 ../../include/conversation.php:1155
|
||||
msgid "Set title"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:127 ../../include/conversation.php:1139
|
||||
#: ../../mod/editpost.php:127 ../../include/conversation.php:1157
|
||||
msgid "Categories (comma-separated list)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:128 ../../include/conversation.php:1153
|
||||
#: ../../mod/editpost.php:128 ../../include/conversation.php:1171
|
||||
msgid "Example: bob@example.com, mary@example.com"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -859,7 +860,7 @@ msgstr ""
|
|||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:715 ../../include/items.php:3205
|
||||
#: ../../mod/dfrn_request.php:715 ../../include/items.php:3207
|
||||
msgid "[Name Withheld]"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1185,7 +1186,7 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/localtime.php:12 ../../include/event.php:11
|
||||
#: ../../include/bb2diaspora.php:425
|
||||
#: ../../include/bb2diaspora.php:433
|
||||
msgid "l F d, Y \\@ g:i A"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1251,7 +1252,7 @@ msgid "is interested in:"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/match.php:58 ../../mod/suggest.php:59
|
||||
#: ../../include/contact_widgets.php:9 ../../boot.php:1141
|
||||
#: ../../include/contact_widgets.php:9 ../../boot.php:1147
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1280,28 +1281,28 @@ msgid "Group: "
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:438 ../../mod/content.php:720
|
||||
#: ../../include/conversation.php:378 ../../include/conversation.php:777
|
||||
#: ../../include/conversation.php:394 ../../include/conversation.php:791
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:455 ../../mod/content.php:813
|
||||
#: ../../mod/content.php:814 ../../include/conversation.php:560
|
||||
#: ../../include/conversation.php:561 ../../include/conversation.php:794
|
||||
#: ../../mod/content.php:814 ../../include/conversation.php:574
|
||||
#: ../../include/conversation.php:575 ../../include/conversation.php:808
|
||||
#, php-format
|
||||
msgid "View %s's profile @ %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:465 ../../mod/content.php:825
|
||||
#: ../../include/conversation.php:572 ../../include/conversation.php:804
|
||||
#: ../../include/conversation.php:586 ../../include/conversation.php:818
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:480 ../../include/conversation.php:819
|
||||
#: ../../mod/content.php:480 ../../include/conversation.php:833
|
||||
msgid "View in context"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:586 ../../include/conversation.php:599
|
||||
#: ../../mod/content.php:586 ../../include/conversation.php:613
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
|
|
@ -1310,92 +1311,92 @@ msgstr[1] ""
|
|||
|
||||
#: ../../mod/content.php:587 ../../addon/page/page.php:76
|
||||
#: ../../addon/page/page.php:110 ../../addon/showmore/showmore.php:119
|
||||
#: ../../include/contact_widgets.php:188 ../../include/conversation.php:600
|
||||
#: ../../boot.php:581
|
||||
#: ../../include/contact_widgets.php:188 ../../include/conversation.php:614
|
||||
#: ../../boot.php:583
|
||||
msgid "show more"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:665 ../../include/conversation.php:500
|
||||
#: ../../mod/content.php:665 ../../include/conversation.php:513
|
||||
msgid "like"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:666 ../../include/conversation.php:501
|
||||
#: ../../mod/content.php:666 ../../include/conversation.php:514
|
||||
msgid "dislike"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:668 ../../include/conversation.php:503
|
||||
#: ../../mod/content.php:668 ../../include/conversation.php:516
|
||||
msgid "Share this"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:668 ../../include/conversation.php:503
|
||||
#: ../../mod/content.php:668 ../../include/conversation.php:516
|
||||
msgid "share"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:692 ../../include/conversation.php:526
|
||||
#: ../../mod/content.php:692 ../../include/conversation.php:539
|
||||
msgid "Bold"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:693 ../../include/conversation.php:527
|
||||
#: ../../mod/content.php:693 ../../include/conversation.php:540
|
||||
msgid "Italic"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:694 ../../include/conversation.php:528
|
||||
#: ../../mod/content.php:694 ../../include/conversation.php:541
|
||||
msgid "Underline"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:695 ../../include/conversation.php:529
|
||||
#: ../../mod/content.php:695 ../../include/conversation.php:542
|
||||
msgid "Quote"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:696 ../../include/conversation.php:530
|
||||
#: ../../mod/content.php:696 ../../include/conversation.php:543
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:697 ../../include/conversation.php:531
|
||||
#: ../../mod/content.php:697 ../../include/conversation.php:544
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:698 ../../include/conversation.php:532
|
||||
#: ../../mod/content.php:698 ../../include/conversation.php:545
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:699 ../../include/conversation.php:533
|
||||
#: ../../mod/content.php:699 ../../include/conversation.php:546
|
||||
msgid "Video"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:733 ../../include/conversation.php:471
|
||||
#: ../../mod/content.php:733 ../../include/conversation.php:484
|
||||
msgid "add star"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:734 ../../include/conversation.php:472
|
||||
#: ../../mod/content.php:734 ../../include/conversation.php:485
|
||||
msgid "remove star"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:735 ../../include/conversation.php:473
|
||||
#: ../../mod/content.php:735 ../../include/conversation.php:486
|
||||
msgid "toggle star status"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:738 ../../include/conversation.php:476
|
||||
#: ../../mod/content.php:738 ../../include/conversation.php:489
|
||||
msgid "starred"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:739 ../../include/conversation.php:477
|
||||
#: ../../mod/content.php:739 ../../include/conversation.php:490
|
||||
msgid "add tag"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:743 ../../include/conversation.php:382
|
||||
#: ../../mod/content.php:743 ../../include/conversation.php:398
|
||||
msgid "save to folder"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:815 ../../include/conversation.php:562
|
||||
#: ../../mod/content.php:815 ../../include/conversation.php:576
|
||||
msgid "to"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:816 ../../include/conversation.php:563
|
||||
#: ../../mod/content.php:816 ../../include/conversation.php:577
|
||||
msgid "Wall-to-Wall"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:817 ../../include/conversation.php:564
|
||||
#: ../../mod/content.php:817 ../../include/conversation.php:578
|
||||
msgid "via Wall-To-Wall:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1480,7 +1481,7 @@ msgid "if applicable"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
|
||||
#: ../../mod/admin.php:669
|
||||
#: ../../mod/admin.php:681
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1681,12 +1682,12 @@ msgid "View all contacts"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:308 ../../mod/contacts.php:367
|
||||
#: ../../mod/admin.php:673
|
||||
#: ../../mod/admin.php:685
|
||||
msgid "Unblock"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:308 ../../mod/contacts.php:367
|
||||
#: ../../mod/admin.php:672
|
||||
#: ../../mod/admin.php:684
|
||||
msgid "Block"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1783,7 +1784,7 @@ msgstr ""
|
|||
msgid "Update public posts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:364 ../../mod/admin.php:1144
|
||||
#: ../../mod/contacts.php:364 ../../mod/admin.php:1156
|
||||
msgid "Update now"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1913,8 +1914,8 @@ msgstr ""
|
|||
#: ../../addon/facebook/facebook.php:702
|
||||
#: ../../addon/facebook/facebook.php:1200
|
||||
#: ../../addon/public_server/public_server.php:62
|
||||
#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3214
|
||||
#: ../../boot.php:790
|
||||
#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3216
|
||||
#: ../../boot.php:796
|
||||
msgid "Administrator"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1924,7 +1925,7 @@ msgid ""
|
|||
"Password reset failed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/lostpass.php:83 ../../boot.php:923
|
||||
#: ../../mod/lostpass.php:83 ../../boot.php:929
|
||||
msgid "Password Reset"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1996,9 +1997,9 @@ msgstr ""
|
|||
msgid "Remove account"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:69 ../../mod/admin.php:759 ../../mod/admin.php:964
|
||||
#: ../../addon/dav/layout.fnk.php:225 ../../addon/mathjax/mathjax.php:36
|
||||
#: ../../view/theme/diabook/theme.php:643
|
||||
#: ../../mod/settings.php:69 ../../mod/admin.php:771 ../../mod/admin.php:976
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:225
|
||||
#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:643
|
||||
#: ../../view/theme/diabook/theme.php:773 ../../include/nav.php:137
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
|
@ -2592,15 +2593,15 @@ msgstr ""
|
|||
msgid "Invalid contact."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/notes.php:44 ../../boot.php:1652
|
||||
#: ../../mod/notes.php:44 ../../boot.php:1658
|
||||
msgid "Personal Notes"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/notes.php:63 ../../mod/filer.php:30
|
||||
#: ../../addon/facebook/facebook.php:770
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:263
|
||||
#: ../../addon/dav/layout.fnk.php:441 ../../addon/dav/layout.fnk.php:488
|
||||
#: ../../include/text.php:681
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:441
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:681
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2635,7 +2636,7 @@ msgstr ""
|
|||
|
||||
#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131
|
||||
#: ../../mod/message.php:242 ../../mod/message.php:250
|
||||
#: ../../include/conversation.php:1058 ../../include/conversation.php:1075
|
||||
#: ../../include/conversation.php:1076 ../../include/conversation.php:1093
|
||||
msgid "Please enter a link URL:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2845,7 +2846,7 @@ msgstr ""
|
|||
|
||||
#: ../../mod/profperm.php:103 ../../view/theme/diabook/theme.php:128
|
||||
#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
|
||||
#: ../../include/nav.php:50 ../../boot.php:1628
|
||||
#: ../../include/nav.php:50 ../../boot.php:1634
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2926,7 +2927,7 @@ msgstr ""
|
|||
msgid "Your invitation ID: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:255 ../../mod/admin.php:425
|
||||
#: ../../mod/register.php:255 ../../mod/admin.php:436
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2949,7 +2950,7 @@ msgstr ""
|
|||
msgid "Choose a nickname: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:269 ../../include/nav.php:81 ../../boot.php:889
|
||||
#: ../../mod/register.php:269 ../../include/nav.php:81 ../../boot.php:895
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2962,7 +2963,7 @@ msgstr ""
|
|||
#: ../../addon/communityhome/communityhome.php:158
|
||||
#: ../../addon/communityhome/communityhome.php:167
|
||||
#: ../../view/theme/diabook/theme.php:565
|
||||
#: ../../view/theme/diabook/theme.php:574 ../../include/diaspora.php:1793
|
||||
#: ../../view/theme/diabook/theme.php:574 ../../include/diaspora.php:1824
|
||||
#: ../../include/conversation.php:109 ../../include/conversation.php:118
|
||||
#: ../../include/conversation.php:225 ../../include/conversation.php:234
|
||||
msgid "status"
|
||||
|
|
@ -2970,7 +2971,7 @@ msgstr ""
|
|||
|
||||
#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1598
|
||||
#: ../../addon/communityhome/communityhome.php:172
|
||||
#: ../../view/theme/diabook/theme.php:579 ../../include/diaspora.php:1809
|
||||
#: ../../view/theme/diabook/theme.php:579 ../../include/diaspora.php:1840
|
||||
#: ../../include/conversation.php:126
|
||||
#, php-format
|
||||
msgid "%1$s likes %2$s's %3$s"
|
||||
|
|
@ -2982,8 +2983,8 @@ msgid "%1$s doesn't like %2$s's %3$s"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159
|
||||
#: ../../mod/admin.php:708 ../../mod/admin.php:907 ../../mod/display.php:29
|
||||
#: ../../mod/display.php:135 ../../include/items.php:3692
|
||||
#: ../../mod/admin.php:720 ../../mod/admin.php:919 ../../mod/display.php:29
|
||||
#: ../../mod/display.php:135 ../../include/items.php:3694
|
||||
msgid "Item not found."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2992,7 +2993,7 @@ msgid "Access denied."
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:130
|
||||
#: ../../include/nav.php:51 ../../boot.php:1635
|
||||
#: ../../include/nav.php:51 ../../boot.php:1641
|
||||
msgid "Photos"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3086,7 +3087,8 @@ msgstr ""
|
|||
msgid "Upload Profile Photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile_photo.php:212 ../../addon/dav/layout.fnk.php:152
|
||||
#: ../../mod/profile_photo.php:212
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:152
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3213,19 +3215,19 @@ msgstr ""
|
|||
msgid "Theme settings updated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:96 ../../mod/admin.php:423
|
||||
#: ../../mod/admin.php:96 ../../mod/admin.php:434
|
||||
msgid "Site"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:97 ../../mod/admin.php:663 ../../mod/admin.php:675
|
||||
#: ../../mod/admin.php:97 ../../mod/admin.php:675 ../../mod/admin.php:687
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:98 ../../mod/admin.php:757 ../../mod/admin.php:799
|
||||
#: ../../mod/admin.php:98 ../../mod/admin.php:769 ../../mod/admin.php:811
|
||||
msgid "Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:99 ../../mod/admin.php:962 ../../mod/admin.php:998
|
||||
#: ../../mod/admin.php:99 ../../mod/admin.php:974 ../../mod/admin.php:1010
|
||||
msgid "Themes"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3233,7 +3235,7 @@ msgstr ""
|
|||
msgid "DB updates"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1085
|
||||
#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1097
|
||||
msgid "Logs"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3249,19 +3251,19 @@ msgstr ""
|
|||
msgid "User registrations waiting for confirmation"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:183 ../../mod/admin.php:645
|
||||
#: ../../mod/admin.php:183 ../../mod/admin.php:657
|
||||
msgid "Normal Account"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:184 ../../mod/admin.php:646
|
||||
#: ../../mod/admin.php:184 ../../mod/admin.php:658
|
||||
msgid "Soapbox Account"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:185 ../../mod/admin.php:647
|
||||
#: ../../mod/admin.php:185 ../../mod/admin.php:659
|
||||
msgid "Community/Celebrity Account"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:186 ../../mod/admin.php:648
|
||||
#: ../../mod/admin.php:186 ../../mod/admin.php:660
|
||||
msgid "Automatic Friend Account"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3277,9 +3279,9 @@ msgstr ""
|
|||
msgid "Message queues"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:212 ../../mod/admin.php:422 ../../mod/admin.php:662
|
||||
#: ../../mod/admin.php:756 ../../mod/admin.php:798 ../../mod/admin.php:961
|
||||
#: ../../mod/admin.php:997 ../../mod/admin.php:1084
|
||||
#: ../../mod/admin.php:212 ../../mod/admin.php:433 ../../mod/admin.php:674
|
||||
#: ../../mod/admin.php:768 ../../mod/admin.php:810 ../../mod/admin.php:973
|
||||
#: ../../mod/admin.php:1009 ../../mod/admin.php:1096
|
||||
msgid "Administration"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3303,523 +3305,535 @@ msgstr ""
|
|||
msgid "Active plugins"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:361
|
||||
#: ../../mod/admin.php:367
|
||||
msgid "Site settings updated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:409
|
||||
#: ../../mod/admin.php:396
|
||||
msgid "Don't apply a special theme for mobile devices."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:420
|
||||
msgid "Closed"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:410
|
||||
#: ../../mod/admin.php:421
|
||||
msgid "Requires approval"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:411
|
||||
#: ../../mod/admin.php:422
|
||||
msgid "Open"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:415
|
||||
#: ../../mod/admin.php:426
|
||||
msgid "No SSL policy, links will track page SSL state"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:416
|
||||
#: ../../mod/admin.php:427
|
||||
msgid "Force all links to use SSL"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:417
|
||||
#: ../../mod/admin.php:428
|
||||
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:426
|
||||
#: ../../mod/admin.php:437
|
||||
msgid "File upload"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:427
|
||||
#: ../../mod/admin.php:438
|
||||
msgid "Policies"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:428
|
||||
#: ../../mod/admin.php:439
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:432 ../../addon/statusnet/statusnet.php:567
|
||||
#: ../../mod/admin.php:443 ../../addon/statusnet/statusnet.php:567
|
||||
msgid "Site name"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:433
|
||||
#: ../../mod/admin.php:444
|
||||
msgid "Banner/Logo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:434
|
||||
#: ../../mod/admin.php:445
|
||||
msgid "System language"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:435
|
||||
#: ../../mod/admin.php:446
|
||||
msgid "System theme"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:435
|
||||
#: ../../mod/admin.php:446
|
||||
msgid ""
|
||||
"Default system theme - may be over-ridden by user profiles - <a href='#' "
|
||||
"id='cnftheme'>change theme settings</a>"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:436
|
||||
#: ../../mod/admin.php:447
|
||||
msgid "Mobile system theme"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:447
|
||||
msgid "Theme for mobile devices"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:448
|
||||
msgid "SSL link policy"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:436
|
||||
#: ../../mod/admin.php:448
|
||||
msgid "Determines whether generated links should be forced to use SSL"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:437
|
||||
#: ../../mod/admin.php:449
|
||||
msgid "Maximum image size"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:437
|
||||
#: ../../mod/admin.php:449
|
||||
msgid ""
|
||||
"Maximum size in bytes of uploaded images. Default is 0, which means no "
|
||||
"limits."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:439
|
||||
#: ../../mod/admin.php:451
|
||||
msgid "Register policy"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:440
|
||||
#: ../../mod/admin.php:452
|
||||
msgid "Register text"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:440
|
||||
#: ../../mod/admin.php:452
|
||||
msgid "Will be displayed prominently on the registration page."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:441
|
||||
#: ../../mod/admin.php:453
|
||||
msgid "Accounts abandoned after x days"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:441
|
||||
#: ../../mod/admin.php:453
|
||||
msgid ""
|
||||
"Will not waste system resources polling external sites for abandonded "
|
||||
"accounts. Enter 0 for no time limit."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:442
|
||||
#: ../../mod/admin.php:454
|
||||
msgid "Allowed friend domains"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:442
|
||||
#: ../../mod/admin.php:454
|
||||
msgid ""
|
||||
"Comma separated list of domains which are allowed to establish friendships "
|
||||
"with this site. Wildcards are accepted. Empty to allow any domains"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:443
|
||||
#: ../../mod/admin.php:455
|
||||
msgid "Allowed email domains"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:443
|
||||
#: ../../mod/admin.php:455
|
||||
msgid ""
|
||||
"Comma separated list of domains which are allowed in email addresses for "
|
||||
"registrations to this site. Wildcards are accepted. Empty to allow any "
|
||||
"domains"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:444
|
||||
#: ../../mod/admin.php:456
|
||||
msgid "Block public"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:444
|
||||
#: ../../mod/admin.php:456
|
||||
msgid ""
|
||||
"Check to block public access to all otherwise public personal pages on this "
|
||||
"site unless you are currently logged in."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:445
|
||||
#: ../../mod/admin.php:457
|
||||
msgid "Force publish"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:445
|
||||
#: ../../mod/admin.php:457
|
||||
msgid ""
|
||||
"Check to force all profiles on this site to be listed in the site directory."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:446
|
||||
#: ../../mod/admin.php:458
|
||||
msgid "Global directory update URL"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:446
|
||||
#: ../../mod/admin.php:458
|
||||
msgid ""
|
||||
"URL to update the global directory. If this is not set, the global directory "
|
||||
"is completely unavailable to the application."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:447
|
||||
#: ../../mod/admin.php:459
|
||||
msgid "Allow threaded items"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:447
|
||||
#: ../../mod/admin.php:459
|
||||
msgid "Allow infinite level threading for items on this site."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:449
|
||||
#: ../../mod/admin.php:461
|
||||
msgid "Block multiple registrations"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:449
|
||||
#: ../../mod/admin.php:461
|
||||
msgid "Disallow users to register additional accounts for use as pages."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:450
|
||||
#: ../../mod/admin.php:462
|
||||
msgid "OpenID support"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:450
|
||||
#: ../../mod/admin.php:462
|
||||
msgid "OpenID support for registration and logins."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:451
|
||||
#: ../../mod/admin.php:463
|
||||
msgid "Fullname check"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:451
|
||||
#: ../../mod/admin.php:463
|
||||
msgid ""
|
||||
"Force users to register with a space between firstname and lastname in Full "
|
||||
"name, as an antispam measure"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:452
|
||||
#: ../../mod/admin.php:464
|
||||
msgid "UTF-8 Regular expressions"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:452
|
||||
#: ../../mod/admin.php:464
|
||||
msgid "Use PHP UTF8 regular expressions"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:453
|
||||
#: ../../mod/admin.php:465
|
||||
msgid "Show Community Page"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:453
|
||||
#: ../../mod/admin.php:465
|
||||
msgid ""
|
||||
"Display a Community page showing all recent public postings on this site."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:454
|
||||
#: ../../mod/admin.php:466
|
||||
msgid "Enable OStatus support"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:454
|
||||
#: ../../mod/admin.php:466
|
||||
msgid ""
|
||||
"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
|
||||
"communications in OStatus are public, so privacy warnings will be "
|
||||
"occasionally displayed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:455
|
||||
#: ../../mod/admin.php:467
|
||||
msgid "Enable Diaspora support"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:455
|
||||
#: ../../mod/admin.php:467
|
||||
msgid "Provide built-in Diaspora network compatibility."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:456
|
||||
#: ../../mod/admin.php:468
|
||||
msgid "Only allow Friendica contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:456
|
||||
#: ../../mod/admin.php:468
|
||||
msgid ""
|
||||
"All contacts must use Friendica protocols. All other built-in communication "
|
||||
"protocols disabled."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:457
|
||||
#: ../../mod/admin.php:469
|
||||
msgid "Verify SSL"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:457
|
||||
#: ../../mod/admin.php:469
|
||||
msgid ""
|
||||
"If you wish, you can turn on strict certificate checking. This will mean you "
|
||||
"cannot connect (at all) to self-signed SSL sites."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:458
|
||||
#: ../../mod/admin.php:470
|
||||
msgid "Proxy user"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:459
|
||||
#: ../../mod/admin.php:471
|
||||
msgid "Proxy URL"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:460
|
||||
#: ../../mod/admin.php:472
|
||||
msgid "Network timeout"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:460
|
||||
#: ../../mod/admin.php:472
|
||||
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:461
|
||||
#: ../../mod/admin.php:473
|
||||
msgid "Delivery interval"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:461
|
||||
#: ../../mod/admin.php:473
|
||||
msgid ""
|
||||
"Delay background delivery processes by this many seconds to reduce system "
|
||||
"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
|
||||
"for large dedicated servers."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:462
|
||||
#: ../../mod/admin.php:474
|
||||
msgid "Poll interval"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:462
|
||||
#: ../../mod/admin.php:474
|
||||
msgid ""
|
||||
"Delay background polling processes by this many seconds to reduce system "
|
||||
"load. If 0, use delivery interval."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:463
|
||||
#: ../../mod/admin.php:475
|
||||
msgid "Maximum Load Average"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:463
|
||||
#: ../../mod/admin.php:475
|
||||
msgid ""
|
||||
"Maximum system load before delivery and poll processes are deferred - "
|
||||
"default 50."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:480
|
||||
#: ../../mod/admin.php:492
|
||||
msgid "Update has been marked successful"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:490
|
||||
#: ../../mod/admin.php:502
|
||||
#, php-format
|
||||
msgid "Executing %s failed. Check system logs."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:493
|
||||
#: ../../mod/admin.php:505
|
||||
#, php-format
|
||||
msgid "Update %s was successfully applied."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:497
|
||||
#: ../../mod/admin.php:509
|
||||
#, php-format
|
||||
msgid "Update %s did not return a status. Unknown if it succeeded."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:500
|
||||
#: ../../mod/admin.php:512
|
||||
#, php-format
|
||||
msgid "Update function %s could not be found."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:515
|
||||
#: ../../mod/admin.php:527
|
||||
msgid "No failed updates."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:519
|
||||
#: ../../mod/admin.php:531
|
||||
msgid "Failed Updates"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:520
|
||||
#: ../../mod/admin.php:532
|
||||
msgid ""
|
||||
"This does not include updates prior to 1139, which did not return a status."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:521
|
||||
#: ../../mod/admin.php:533
|
||||
msgid "Mark success (if update was manually applied)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:522
|
||||
#: ../../mod/admin.php:534
|
||||
msgid "Attempt to execute this update step automatically"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:547
|
||||
#: ../../mod/admin.php:559
|
||||
#, php-format
|
||||
msgid "%s user blocked/unblocked"
|
||||
msgid_plural "%s users blocked/unblocked"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: ../../mod/admin.php:554
|
||||
#: ../../mod/admin.php:566
|
||||
#, php-format
|
||||
msgid "%s user deleted"
|
||||
msgid_plural "%s users deleted"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: ../../mod/admin.php:593
|
||||
#: ../../mod/admin.php:605
|
||||
#, php-format
|
||||
msgid "User '%s' deleted"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:601
|
||||
#: ../../mod/admin.php:613
|
||||
#, php-format
|
||||
msgid "User '%s' unblocked"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:601
|
||||
#: ../../mod/admin.php:613
|
||||
#, php-format
|
||||
msgid "User '%s' blocked"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:665
|
||||
#: ../../mod/admin.php:677
|
||||
msgid "select all"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:666
|
||||
#: ../../mod/admin.php:678
|
||||
msgid "User registrations waiting for confirm"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:667
|
||||
#: ../../mod/admin.php:679
|
||||
msgid "Request date"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:667 ../../mod/admin.php:676
|
||||
#: ../../mod/admin.php:679 ../../mod/admin.php:688
|
||||
#: ../../include/contact_selectors.php:79
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:668
|
||||
#: ../../mod/admin.php:680
|
||||
msgid "No registrations."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:670
|
||||
#: ../../mod/admin.php:682
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:676
|
||||
#: ../../mod/admin.php:688
|
||||
msgid "Register date"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:676
|
||||
#: ../../mod/admin.php:688
|
||||
msgid "Last login"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:676
|
||||
#: ../../mod/admin.php:688
|
||||
msgid "Last item"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:676
|
||||
#: ../../mod/admin.php:688
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:678
|
||||
#: ../../mod/admin.php:690
|
||||
msgid ""
|
||||
"Selected users will be deleted!\\n\\nEverything these users had posted on "
|
||||
"this site will be permanently deleted!\\n\\nAre you sure?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:679
|
||||
#: ../../mod/admin.php:691
|
||||
msgid ""
|
||||
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
|
||||
"site will be permanently deleted!\\n\\nAre you sure?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:720
|
||||
#: ../../mod/admin.php:732
|
||||
#, php-format
|
||||
msgid "Plugin %s disabled."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:724
|
||||
#: ../../mod/admin.php:736
|
||||
#, php-format
|
||||
msgid "Plugin %s enabled."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:734 ../../mod/admin.php:932
|
||||
#: ../../mod/admin.php:746 ../../mod/admin.php:944
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:736 ../../mod/admin.php:934
|
||||
#: ../../mod/admin.php:748 ../../mod/admin.php:946
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:758 ../../mod/admin.php:963
|
||||
#: ../../mod/admin.php:770 ../../mod/admin.php:975
|
||||
msgid "Toggle"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:766 ../../mod/admin.php:973
|
||||
#: ../../mod/admin.php:778 ../../mod/admin.php:985
|
||||
msgid "Author: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:767 ../../mod/admin.php:974
|
||||
#: ../../mod/admin.php:779 ../../mod/admin.php:986
|
||||
msgid "Maintainer: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:896
|
||||
#: ../../mod/admin.php:908
|
||||
msgid "No themes found."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:955
|
||||
#: ../../mod/admin.php:967
|
||||
msgid "Screenshot"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:1003
|
||||
#: ../../mod/admin.php:1015
|
||||
msgid "[Experimental]"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:1004
|
||||
#: ../../mod/admin.php:1016
|
||||
msgid "[Unsupported]"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:1031
|
||||
#: ../../mod/admin.php:1043
|
||||
msgid "Log settings updated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:1087
|
||||
#: ../../mod/admin.php:1099
|
||||
msgid "Clear"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:1093
|
||||
#: ../../mod/admin.php:1105
|
||||
msgid "Debugging"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:1094
|
||||
#: ../../mod/admin.php:1106
|
||||
msgid "Log file"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:1094
|
||||
#: ../../mod/admin.php:1106
|
||||
msgid ""
|
||||
"Must be writable by web server. Relative to your Friendica top-level "
|
||||
"directory."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:1095
|
||||
#: ../../mod/admin.php:1107
|
||||
msgid "Log level"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:1145
|
||||
#: ../../mod/admin.php:1157
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:1151
|
||||
#: ../../mod/admin.php:1163
|
||||
msgid "FTP Host"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:1152
|
||||
#: ../../mod/admin.php:1164
|
||||
msgid "FTP Path"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:1153
|
||||
#: ../../mod/admin.php:1165
|
||||
msgid "FTP User"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:1154
|
||||
#: ../../mod/admin.php:1166
|
||||
msgid "FTP Password"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:21 ../../boot.php:1054
|
||||
#: ../../mod/profile.php:22 ../../boot.php:1060
|
||||
msgid "Requested profile is not available."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:141 ../../mod/display.php:67
|
||||
#: ../../mod/profile.php:142 ../../mod/display.php:67
|
||||
msgid "Access to this profile has been restricted."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:166
|
||||
#: ../../mod/profile.php:167
|
||||
msgid "Tips for New Members"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -4206,28 +4220,28 @@ msgstr ""
|
|||
msgid "Edit/Manage Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:673 ../../boot.php:1163
|
||||
#: ../../mod/profiles.php:673 ../../boot.php:1169
|
||||
msgid "Change profile photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:674 ../../boot.php:1164
|
||||
#: ../../mod/profiles.php:674 ../../boot.php:1170
|
||||
msgid "Create New Profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:685 ../../boot.php:1174
|
||||
#: ../../mod/profiles.php:685 ../../boot.php:1180
|
||||
msgid "Profile Image"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:687 ../../boot.php:1177
|
||||
#: ../../mod/profiles.php:687 ../../boot.php:1183
|
||||
msgid "visible to everybody"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:688 ../../boot.php:1178
|
||||
#: ../../mod/profiles.php:688 ../../boot.php:1184
|
||||
msgid "Edit visibility"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/filer.php:29 ../../include/conversation.php:1062
|
||||
#: ../../include/conversation.php:1079
|
||||
#: ../../mod/filer.php:29 ../../include/conversation.php:1080
|
||||
#: ../../include/conversation.php:1097
|
||||
msgid "Save to Folder:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -4351,17 +4365,17 @@ msgid "Gender: "
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/directory.php:134 ../../include/profile_advanced.php:17
|
||||
#: ../../boot.php:1199
|
||||
#: ../../boot.php:1205
|
||||
msgid "Gender:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/directory.php:136 ../../include/profile_advanced.php:37
|
||||
#: ../../boot.php:1202
|
||||
#: ../../boot.php:1208
|
||||
msgid "Status:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/directory.php:138 ../../include/profile_advanced.php:48
|
||||
#: ../../boot.php:1204
|
||||
#: ../../boot.php:1210
|
||||
msgid "Homepage:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -4492,7 +4506,7 @@ msgstr ""
|
|||
msgid "Unable to set contact photo."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:577
|
||||
#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:608
|
||||
#: ../../include/conversation.php:162
|
||||
#, php-format
|
||||
msgid "%1$s is now friends with %2$s"
|
||||
|
|
@ -4727,7 +4741,8 @@ msgstr ""
|
|||
msgid "Activate Real-Time Updates"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:799 ../../addon/dav/layout.fnk.php:361
|
||||
#: ../../addon/facebook/facebook.php:799
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:361
|
||||
msgid "The new values have been saved."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5119,7 +5134,7 @@ msgstr ""
|
|||
#: ../../addon/communityhome/communityhome.php:34
|
||||
#: ../../addon/communityhome/twillingham/communityhome.php:28
|
||||
#: ../../addon/communityhome/twillingham/communityhome.php:34
|
||||
#: ../../include/nav.php:64 ../../boot.php:910
|
||||
#: ../../include/nav.php:64 ../../boot.php:916
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5152,10 +5167,6 @@ msgstr ""
|
|||
msgid "event"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/dav_caldav_backend_virtual_friendica.inc.php:36
|
||||
msgid "Friendicy-Native events"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_backend.inc.php:92
|
||||
#: ../../addon/dav/common/wdcal_backend.inc.php:166
|
||||
#: ../../addon/dav/common/wdcal_backend.inc.php:178
|
||||
|
|
@ -5171,7 +5182,8 @@ msgid "Could not open component for editing"
|
|||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:140
|
||||
#: ../../addon/dav/layout.fnk.php:143 ../../addon/dav/layout.fnk.php:422
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:143
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:422
|
||||
msgid "Go back to the calendar"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5179,7 +5191,8 @@ msgstr ""
|
|||
msgid "Event data"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:146 ../../addon/dav/main.php:206
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:146
|
||||
#: ../../addon/dav/friendica/main.php:239
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5329,7 +5342,7 @@ msgid "#num#th-last #wkday# of each month"
|
|||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:372
|
||||
#: ../../addon/dav/layout.fnk.php:255
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:255
|
||||
msgid "Month"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5449,178 +5462,189 @@ msgstr ""
|
|||
msgid "Private Events"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/dav_carddav_backend_virtual_friendica.inc.php:53
|
||||
#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46
|
||||
msgid "Private Addressbooks"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
|
||||
msgid "Friendica-Native events"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
|
||||
#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
|
||||
msgid "Friendica-Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/dav_carddav_backend_virtual_friendica.inc.php:54
|
||||
#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
|
||||
msgid "Your Friendica-Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:99 ../../addon/dav/layout.fnk.php:136
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:99
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:136
|
||||
msgid ""
|
||||
"Something went wrong when trying to import the file. Sorry. Maybe some "
|
||||
"events were imported anyway."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:131
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:131
|
||||
msgid "Something went wrong when trying to import the file. Sorry."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:134
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:134
|
||||
msgid "The ICS-File has been imported."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:138
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:138
|
||||
msgid "No file was uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:147
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:147
|
||||
msgid "Import a ICS-file"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:150
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:150
|
||||
msgid "ICS-File"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:151
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:151
|
||||
msgid "Overwrite all #num# existing events"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:228
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:228
|
||||
msgid "New event"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:232
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:232
|
||||
msgid "Today"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:241
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:241
|
||||
msgid "Day"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:248
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:248
|
||||
msgid "Week"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:260
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:260
|
||||
msgid "Reload"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:271
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:271
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:313
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:313
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:380
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:380
|
||||
msgid "The calendar has been updated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:393
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:393
|
||||
msgid "The new calendar has been created."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:417
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:417
|
||||
msgid "The calendar has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:424
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:424
|
||||
msgid "Calendar Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:430
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:430
|
||||
msgid "Date format"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:439
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:439
|
||||
msgid "Time zone"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:445
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:445
|
||||
msgid "Calendars"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:487
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:487
|
||||
msgid "Create a new calendar"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:496
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:496
|
||||
msgid "Limitations"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:500 ../../addon/libravatar/libravatar.php:82
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:500
|
||||
#: ../../addon/libravatar/libravatar.php:82
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:504
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:504
|
||||
msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:511
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:511
|
||||
msgid "Synchronizing this calendar with the iPhone"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:522
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:522
|
||||
msgid "Synchronizing your Friendica-Contacts with the iPhone"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/main.php:169
|
||||
#: ../../addon/dav/friendica/main.php:202
|
||||
msgid ""
|
||||
"The current version of this plugin has not been set up correctly. Please "
|
||||
"contact the system administrator of your installation of friendica to fix "
|
||||
"this."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/main.php:209
|
||||
#: ../../addon/dav/friendica/main.php:242
|
||||
msgid "Extended calendar with CalDAV-support"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/main.php:246 ../../addon/dav/main.php:247
|
||||
#: ../../include/delivery.php:463 ../../include/enotify.php:26
|
||||
#: ../../include/notifier.php:685
|
||||
#: ../../addon/dav/friendica/main.php:279
|
||||
#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:463
|
||||
#: ../../include/enotify.php:26 ../../include/notifier.php:710
|
||||
msgid "noreply"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/main.php:249
|
||||
#: ../../addon/dav/friendica/main.php:282
|
||||
msgid "Notification: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/main.php:276
|
||||
#: ../../addon/dav/friendica/main.php:309
|
||||
msgid "The database tables have been installed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/main.php:277
|
||||
#: ../../addon/dav/friendica/main.php:310
|
||||
msgid "An error occurred during the installation."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/main.php:283
|
||||
#: ../../addon/dav/friendica/main.php:316
|
||||
msgid "The database tables have been updated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/main.php:285
|
||||
#: ../../addon/dav/friendica/main.php:317
|
||||
msgid "An error occurred during the update."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/main.php:301
|
||||
#: ../../addon/dav/friendica/main.php:333
|
||||
msgid "No system-wide settings yet."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/main.php:304
|
||||
#: ../../addon/dav/friendica/main.php:336
|
||||
msgid "Database status"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/main.php:307
|
||||
#: ../../addon/dav/friendica/main.php:339
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/main.php:310
|
||||
#: ../../addon/dav/friendica/main.php:343
|
||||
msgid "Upgrade needed"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/main.php:310
|
||||
#: ../../addon/dav/friendica/main.php:343
|
||||
msgid ""
|
||||
"Please back up all calendar data (the tables beginning with dav_*) before "
|
||||
"proceeding. While all calendar events <i>should</i> be converted to the new "
|
||||
|
|
@ -5629,23 +5653,23 @@ msgid ""
|
|||
"button."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/main.php:310
|
||||
#: ../../addon/dav/friendica/main.php:343
|
||||
msgid "Upgrade"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/main.php:313
|
||||
#: ../../addon/dav/friendica/main.php:346
|
||||
msgid "Not installed"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/main.php:313
|
||||
#: ../../addon/dav/friendica/main.php:346
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/main.php:317
|
||||
#: ../../addon/dav/friendica/main.php:350
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/main.php:317
|
||||
#: ../../addon/dav/friendica/main.php:350
|
||||
msgid ""
|
||||
"Something really went wrong. I cannot recover from this state automatically, "
|
||||
"sorry. Please go to the database backend, back up the data, and delete all "
|
||||
|
|
@ -5653,30 +5677,38 @@ msgid ""
|
|||
"should be able to reinitialize the tables automatically."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/main.php:322
|
||||
#: ../../addon/dav/friendica/main.php:355
|
||||
msgid "Troubleshooting"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/main.php:323
|
||||
#: ../../addon/dav/friendica/main.php:356
|
||||
msgid "Manual creation of the database tables:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/main.php:324
|
||||
#: ../../addon/dav/friendica/main.php:357
|
||||
msgid "Show SQL-statements"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/calendar.friendica.fnk.php:193
|
||||
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206
|
||||
msgid "Private Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/calendar.friendica.fnk.php:194
|
||||
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207
|
||||
msgid "Friendica Events: Mine"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/calendar.friendica.fnk.php:195
|
||||
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208
|
||||
msgid "Friendica Events: Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248
|
||||
msgid "Private Addresses"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249
|
||||
msgid "Friendica Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/uhremotestorage/uhremotestorage.php:84
|
||||
#, php-format
|
||||
msgid ""
|
||||
|
|
@ -7305,19 +7337,19 @@ msgstr ""
|
|||
msgid "Ask me"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/event.php:20 ../../include/bb2diaspora.php:431
|
||||
#: ../../include/event.php:20 ../../include/bb2diaspora.php:439
|
||||
msgid "Starts:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/event.php:30 ../../include/bb2diaspora.php:439
|
||||
#: ../../include/event.php:30 ../../include/bb2diaspora.php:447
|
||||
msgid "Finishes:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/delivery.php:456 ../../include/notifier.php:678
|
||||
#: ../../include/delivery.php:456 ../../include/notifier.php:703
|
||||
msgid "(no subject)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/Scrape.php:572
|
||||
#: ../../include/Scrape.php:575
|
||||
msgid " on Last.fm"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -7500,11 +7532,11 @@ msgstr ""
|
|||
msgid "Item filed"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/diaspora.php:660
|
||||
#: ../../include/diaspora.php:691
|
||||
msgid "Sharing notification from Diaspora network"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/diaspora.php:2177
|
||||
#: ../../include/diaspora.php:2202
|
||||
msgid "Attachments:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -7555,7 +7587,7 @@ msgstr ""
|
|||
msgid "Contacts not in any group"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:46 ../../boot.php:909
|
||||
#: ../../include/nav.php:46 ../../boot.php:915
|
||||
msgid "Logout"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -7563,7 +7595,7 @@ msgstr ""
|
|||
msgid "End this session"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:49 ../../boot.php:1621
|
||||
#: ../../include/nav.php:49 ../../boot.php:1627
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -7643,11 +7675,11 @@ msgstr ""
|
|||
msgid "Manage other pages"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:138 ../../boot.php:1157
|
||||
#: ../../include/nav.php:138 ../../boot.php:1163
|
||||
msgid "Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:138 ../../boot.php:1157
|
||||
#: ../../include/nav.php:138 ../../boot.php:1163
|
||||
msgid "Manage/edit profiles"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -7815,6 +7847,10 @@ msgstr ""
|
|||
msgid "$1 wrote:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/bbcode.php:327
|
||||
msgid "Encrypted content"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/dba.php:41
|
||||
#, php-format
|
||||
msgid "Cannot locate DNS info for database server '%s'"
|
||||
|
|
@ -8068,15 +8104,15 @@ msgstr ""
|
|||
msgid "following"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/items.php:3212
|
||||
#: ../../include/items.php:3214
|
||||
msgid "A new person is sharing with you at "
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/items.php:3212
|
||||
#: ../../include/items.php:3214
|
||||
msgid "You have a new follower at "
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/items.php:3881
|
||||
#: ../../include/items.php:3883
|
||||
msgid "Archives"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -8170,34 +8206,34 @@ msgstr ""
|
|||
msgid "stopped following"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/Contact.php:220 ../../include/conversation.php:959
|
||||
#: ../../include/Contact.php:220 ../../include/conversation.php:977
|
||||
msgid "Poke"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/Contact.php:221 ../../include/conversation.php:953
|
||||
#: ../../include/Contact.php:221 ../../include/conversation.php:971
|
||||
msgid "View Status"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/Contact.php:222 ../../include/conversation.php:954
|
||||
#: ../../include/Contact.php:222 ../../include/conversation.php:972
|
||||
msgid "View Profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/Contact.php:223 ../../include/conversation.php:955
|
||||
#: ../../include/Contact.php:223 ../../include/conversation.php:973
|
||||
msgid "View Photos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/Contact.php:224 ../../include/Contact.php:237
|
||||
#: ../../include/conversation.php:956
|
||||
#: ../../include/conversation.php:974
|
||||
msgid "Network Posts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/Contact.php:225 ../../include/Contact.php:237
|
||||
#: ../../include/conversation.php:957
|
||||
#: ../../include/conversation.php:975
|
||||
msgid "Edit Contact"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/Contact.php:226 ../../include/Contact.php:237
|
||||
#: ../../include/conversation.php:958
|
||||
#: ../../include/conversation.php:976
|
||||
msgid "Send PM"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -8215,106 +8251,106 @@ msgstr ""
|
|||
msgid "%1$s marked %2$s's %3$s as favorite"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:859
|
||||
#: ../../include/conversation.php:877
|
||||
msgid "Delete Selected Items"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1017
|
||||
#: ../../include/conversation.php:1035
|
||||
#, php-format
|
||||
msgid "%s likes this."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1017
|
||||
#: ../../include/conversation.php:1035
|
||||
#, php-format
|
||||
msgid "%s doesn't like this."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1021
|
||||
#: ../../include/conversation.php:1039
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> like this."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1023
|
||||
#: ../../include/conversation.php:1041
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> don't like this."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1029
|
||||
#: ../../include/conversation.php:1047
|
||||
msgid "and"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1032
|
||||
#: ../../include/conversation.php:1050
|
||||
#, php-format
|
||||
msgid ", and %d other people"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1033
|
||||
#: ../../include/conversation.php:1051
|
||||
#, php-format
|
||||
msgid "%s like this."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1033
|
||||
#: ../../include/conversation.php:1051
|
||||
#, php-format
|
||||
msgid "%s don't like this."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1057 ../../include/conversation.php:1074
|
||||
#: ../../include/conversation.php:1075 ../../include/conversation.php:1092
|
||||
msgid "Visible to <strong>everybody</strong>"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1059 ../../include/conversation.php:1076
|
||||
#: ../../include/conversation.php:1077 ../../include/conversation.php:1094
|
||||
msgid "Please enter a video link/URL:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1060 ../../include/conversation.php:1077
|
||||
#: ../../include/conversation.php:1078 ../../include/conversation.php:1095
|
||||
msgid "Please enter an audio link/URL:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1061 ../../include/conversation.php:1078
|
||||
#: ../../include/conversation.php:1079 ../../include/conversation.php:1096
|
||||
msgid "Tag term:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1063 ../../include/conversation.php:1080
|
||||
#: ../../include/conversation.php:1081 ../../include/conversation.php:1098
|
||||
msgid "Where are you right now?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1123
|
||||
#: ../../include/conversation.php:1141
|
||||
msgid "upload photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1125
|
||||
#: ../../include/conversation.php:1143
|
||||
msgid "attach file"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1127
|
||||
#: ../../include/conversation.php:1145
|
||||
msgid "web link"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1128
|
||||
#: ../../include/conversation.php:1146
|
||||
msgid "Insert video link"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1129
|
||||
#: ../../include/conversation.php:1147
|
||||
msgid "video link"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1130
|
||||
#: ../../include/conversation.php:1148
|
||||
msgid "Insert audio link"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1131
|
||||
#: ../../include/conversation.php:1149
|
||||
msgid "audio link"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1133
|
||||
#: ../../include/conversation.php:1151
|
||||
msgid "set location"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1135
|
||||
#: ../../include/conversation.php:1153
|
||||
msgid "clear location"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1142
|
||||
#: ../../include/conversation.php:1160
|
||||
msgid "permissions"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -8330,96 +8366,96 @@ msgstr ""
|
|||
msgid "This action is not available under your subscription plan."
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:579
|
||||
#: ../../boot.php:581
|
||||
msgid "Delete this item?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:582
|
||||
#: ../../boot.php:584
|
||||
msgid "show fewer"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:785
|
||||
#: ../../boot.php:791
|
||||
#, php-format
|
||||
msgid "Update %s failed. See error logs."
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:787
|
||||
#: ../../boot.php:793
|
||||
#, php-format
|
||||
msgid "Update Error at %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:888
|
||||
#: ../../boot.php:894
|
||||
msgid "Create a New Account"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:912
|
||||
#: ../../boot.php:918
|
||||
msgid "Nickname or Email address: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:913
|
||||
#: ../../boot.php:919
|
||||
msgid "Password: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:916
|
||||
#: ../../boot.php:922
|
||||
msgid "Or login using OpenID: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:922
|
||||
#: ../../boot.php:928
|
||||
msgid "Forgot your password?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1089
|
||||
#: ../../boot.php:1095
|
||||
msgid "Edit profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1149
|
||||
#: ../../boot.php:1155
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1271 ../../boot.php:1357
|
||||
#: ../../boot.php:1277 ../../boot.php:1363
|
||||
msgid "g A l F d"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1272 ../../boot.php:1358
|
||||
#: ../../boot.php:1278 ../../boot.php:1364
|
||||
msgid "F d"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1317 ../../boot.php:1398
|
||||
#: ../../boot.php:1323 ../../boot.php:1404
|
||||
msgid "[today]"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1329
|
||||
#: ../../boot.php:1335
|
||||
msgid "Birthday Reminders"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1330
|
||||
#: ../../boot.php:1336
|
||||
msgid "Birthdays this week:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1391
|
||||
#: ../../boot.php:1397
|
||||
msgid "[No description]"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1409
|
||||
#: ../../boot.php:1415
|
||||
msgid "Event Reminders"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1410
|
||||
#: ../../boot.php:1416
|
||||
msgid "Events this week:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1624
|
||||
#: ../../boot.php:1630
|
||||
msgid "Status Messages and Posts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1631
|
||||
#: ../../boot.php:1637
|
||||
msgid "Profile Details"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1648
|
||||
#: ../../boot.php:1654
|
||||
msgid "Events and Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1655
|
||||
#: ../../boot.php:1661
|
||||
msgid "Only You Can See This"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
autoDimensions: false,
|
||||
onStart: function(){
|
||||
var theme = $("#id_theme :selected").val();
|
||||
var theme_mobile = $("#id_theme_mobile :selected").val();
|
||||
$("#cnftheme").attr('href',"$baseurl/admin/themes/"+theme);
|
||||
},
|
||||
onComplete: function(){
|
||||
|
|
@ -44,6 +45,7 @@
|
|||
{{ inc field_textarea.tpl with $field=$banner }}{{ endinc }}
|
||||
{{ inc field_select.tpl with $field=$language }}{{ endinc }}
|
||||
{{ inc field_select.tpl with $field=$theme }}{{ endinc }}
|
||||
{{ inc field_select.tpl with $field=$theme_mobile }}{{ endinc }}
|
||||
{{ inc field_select.tpl with $field=$ssl_policy }}{{ endinc }}
|
||||
|
||||
<div class="submit"><input type="submit" name="page_site" value="$submit" /></div>
|
||||
|
|
|
|||
3546
view/de/messages.po
3546
view/de/messages.po
|
|
@ -8,10 +8,12 @@
|
|||
# Fabian Dost <friends@dostmusik.de>, 2012.
|
||||
# <friends@dostmusik.de>, 2012.
|
||||
# <greeneyedred@googlemail.com>, 2012.
|
||||
# Hauke Zühl <hzuehl@phone-talk.de>, 2012.
|
||||
# <hzuehl@phone-talk.de>, 2011, 2012.
|
||||
# <leberwurscht@hoegners.de>, 2012.
|
||||
# <marmor69@web.de>, 2012.
|
||||
# Martin Schmitt <mas@scsy.de>, 2012.
|
||||
# Oliver <post@toktan.org>, 2012.
|
||||
# <tobias.diekershoff@gmx.net>, 2011, 2012.
|
||||
# <transifex@zottel.net>, 2011, 2012.
|
||||
# <ts+transifex@ml.tschlotfeldt.de>, 2011.
|
||||
|
|
@ -19,10 +21,10 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
|
||||
"POT-Creation-Date: 2012-06-17 10:00-0700\n"
|
||||
"PO-Revision-Date: 2012-06-18 22:04+0000\n"
|
||||
"Last-Translator: Fabian Dost <friends@dostmusik.de>\n"
|
||||
"Language-Team: German (http://www.transifex.net/projects/p/friendica/language/de/)\n"
|
||||
"POT-Creation-Date: 2012-08-13 10:00-0700\n"
|
||||
"PO-Revision-Date: 2012-08-14 10:36+0000\n"
|
||||
"Last-Translator: bavatar <tobias.diekershoff@gmx.net>\n"
|
||||
"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
|
@ -47,28 +49,28 @@ msgid "Contact update failed."
|
|||
msgstr "Konnte den Kontakt nicht aktualisieren."
|
||||
|
||||
#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:44
|
||||
#: ../../mod/fsuggest.php:78 ../../mod/events.php:138 ../../mod/api.php:26
|
||||
#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:928
|
||||
#: ../../mod/editpost.php:10 ../../mod/install.php:151
|
||||
#: ../../mod/notifications.php:66 ../../mod/contacts.php:145
|
||||
#: ../../mod/settings.php:106 ../../mod/settings.php:537
|
||||
#: ../../mod/settings.php:542 ../../mod/manage.php:86 ../../mod/network.php:6
|
||||
#: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26
|
||||
#: ../../mod/api.php:31 ../../mod/photos.php:116 ../../mod/photos.php:938
|
||||
#: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135
|
||||
#: ../../mod/notifications.php:66 ../../mod/contacts.php:139
|
||||
#: ../../mod/settings.php:86 ../../mod/settings.php:519
|
||||
#: ../../mod/settings.php:524 ../../mod/manage.php:86 ../../mod/network.php:6
|
||||
#: ../../mod/notes.php:20 ../../mod/wallmessage.php:9
|
||||
#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
|
||||
#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33
|
||||
#: ../../mod/group.php:19 ../../mod/viewcontacts.php:22
|
||||
#: ../../mod/register.php:38 ../../mod/regmod.php:116 ../../mod/item.php:124
|
||||
#: ../../mod/item.php:140 ../../mod/profile_photo.php:19
|
||||
#: ../../mod/profile_photo.php:141 ../../mod/profile_photo.php:152
|
||||
#: ../../mod/profile_photo.php:165 ../../mod/message.php:45
|
||||
#: ../../mod/message.php:97 ../../mod/allfriends.php:9
|
||||
#: ../../mod/register.php:38 ../../mod/regmod.php:116 ../../mod/item.php:126
|
||||
#: ../../mod/item.php:142 ../../mod/profile_photo.php:19
|
||||
#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:153
|
||||
#: ../../mod/profile_photo.php:166 ../../mod/message.php:38
|
||||
#: ../../mod/message.php:168 ../../mod/allfriends.php:9
|
||||
#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:53
|
||||
#: ../../mod/follow.php:9 ../../mod/display.php:138 ../../mod/profiles.php:7
|
||||
#: ../../mod/profiles.php:385 ../../mod/delegate.php:6
|
||||
#: ../../mod/follow.php:9 ../../mod/display.php:131 ../../mod/profiles.php:7
|
||||
#: ../../mod/profiles.php:408 ../../mod/delegate.php:6
|
||||
#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81
|
||||
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:507
|
||||
#: ../../addon/dav/layout.fnk.php:353 ../../include/items.php:3387
|
||||
#: ../../index.php:299
|
||||
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510
|
||||
#: ../../addon/facebook/facebook.php:516 ../../addon/dav/layout.fnk.php:354
|
||||
#: ../../include/items.php:3816 ../../index.php:315
|
||||
msgid "Permission denied."
|
||||
msgstr "Zugriff verweigert."
|
||||
|
||||
|
|
@ -85,7 +87,7 @@ msgstr "Kontakteinstellungen reparieren"
|
|||
msgid ""
|
||||
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
|
||||
" information your communications with this contact may stop working."
|
||||
msgstr "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."
|
||||
msgstr "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."
|
||||
|
||||
#: ../../mod/crepair.php:138
|
||||
msgid ""
|
||||
|
|
@ -97,8 +99,8 @@ msgstr "Bitte nutze den Zurück-Button deines Browsers <strong>jetzt</strong>, w
|
|||
msgid "Return to contact editor"
|
||||
msgstr "Zurück zum Kontakteditor"
|
||||
|
||||
#: ../../mod/crepair.php:148 ../../mod/settings.php:557
|
||||
#: ../../mod/settings.php:583 ../../mod/admin.php:659 ../../mod/admin.php:668
|
||||
#: ../../mod/crepair.php:148 ../../mod/settings.php:539
|
||||
#: ../../mod/settings.php:565 ../../mod/admin.php:667 ../../mod/admin.php:676
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
|
|
@ -135,31 +137,37 @@ msgid "New photo from this URL"
|
|||
msgstr "Neues Foto von dieser URL"
|
||||
|
||||
#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
|
||||
#: ../../mod/events.php:428 ../../mod/photos.php:963 ../../mod/photos.php:1021
|
||||
#: ../../mod/photos.php:1266 ../../mod/photos.php:1306
|
||||
#: ../../mod/photos.php:1346 ../../mod/photos.php:1377
|
||||
#: ../../mod/events.php:439 ../../mod/photos.php:971 ../../mod/photos.php:1042
|
||||
#: ../../mod/photos.php:1285 ../../mod/photos.php:1325
|
||||
#: ../../mod/photos.php:1366 ../../mod/photos.php:1398
|
||||
#: ../../mod/install.php:246 ../../mod/install.php:284
|
||||
#: ../../mod/localtime.php:45 ../../mod/contacts.php:343
|
||||
#: ../../mod/settings.php:555 ../../mod/settings.php:701
|
||||
#: ../../mod/settings.php:762 ../../mod/settings.php:969
|
||||
#: ../../mod/group.php:85 ../../mod/message.php:216 ../../mod/admin.php:420
|
||||
#: ../../mod/admin.php:656 ../../mod/admin.php:792 ../../mod/admin.php:991
|
||||
#: ../../mod/admin.php:1078 ../../mod/profiles.php:554
|
||||
#: ../../mod/invite.php:119 ../../addon/facebook/facebook.php:609
|
||||
#: ../../addon/snautofollow/snautofollow.php:64
|
||||
#: ../../mod/localtime.php:45 ../../mod/poke.php:199 ../../mod/content.php:691
|
||||
#: ../../mod/contacts.php:341 ../../mod/settings.php:537
|
||||
#: ../../mod/settings.php:691 ../../mod/settings.php:752
|
||||
#: ../../mod/settings.php:958 ../../mod/group.php:85 ../../mod/message.php:294
|
||||
#: ../../mod/message.php:478 ../../mod/admin.php:424 ../../mod/admin.php:664
|
||||
#: ../../mod/admin.php:800 ../../mod/admin.php:999 ../../mod/admin.php:1086
|
||||
#: ../../mod/profiles.php:578 ../../mod/invite.php:119
|
||||
#: ../../addon/fromgplus/fromgplus.php:40
|
||||
#: ../../addon/facebook/facebook.php:619
|
||||
#: ../../addon/snautofollow/snautofollow.php:64 ../../addon/bg/bg.php:90
|
||||
#: ../../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/page/page.php:210
|
||||
#: ../../addon/planets/planets.php:158
|
||||
#: ../../addon/uhremotestorage/uhremotestorage.php:89
|
||||
#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
|
||||
#: ../../addon/drpost/drpost.php:110 ../../addon/startpage/startpage.php:92
|
||||
#: ../../addon/geonames/geonames.php:187 ../../addon/oembed.old/oembed.php:41
|
||||
#: ../../addon/forumlist/forumlist.php:169
|
||||
#: ../../addon/impressum/impressum.php:82
|
||||
#: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57
|
||||
#: ../../addon/qcomment/qcomment.php:61
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:70
|
||||
#: ../../addon/libertree/libertree.php:90 ../../addon/mathjax/mathjax.php:42
|
||||
#: ../../addon/editplain/editplain.php:84 ../../addon/blackout/blackout.php:98
|
||||
#: ../../addon/gravatar/gravatar.php:86
|
||||
#: ../../addon/group_text/group_text.php:84
|
||||
#: ../../addon/libravatar/libravatar.php:99
|
||||
#: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:87
|
||||
#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84
|
||||
#: ../../addon/blackout/blackout.php:98 ../../addon/gravatar/gravatar.php:95
|
||||
#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93
|
||||
#: ../../addon/jappixmini/jappixmini.php:302
|
||||
#: ../../addon/statusnet/statusnet.php:278
|
||||
|
|
@ -167,18 +175,18 @@ msgstr "Neues Foto von dieser URL"
|
|||
#: ../../addon/statusnet/statusnet.php:318
|
||||
#: ../../addon/statusnet/statusnet.php:325
|
||||
#: ../../addon/statusnet/statusnet.php:353
|
||||
#: ../../addon/statusnet/statusnet.php:561 ../../addon/tumblr/tumblr.php:90
|
||||
#: ../../addon/statusnet/statusnet.php:576 ../../addon/tumblr/tumblr.php:90
|
||||
#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88
|
||||
#: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48
|
||||
#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180
|
||||
#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:381
|
||||
#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:394
|
||||
#: ../../addon/irc/irc.php:55 ../../addon/blogger/blogger.php:102
|
||||
#: ../../addon/posterous/posterous.php:103
|
||||
#: ../../view/theme/cleanzero/config.php:80
|
||||
#: ../../view/theme/diabook/theme.php:757
|
||||
#: ../../view/theme/diabook/config.php:190
|
||||
#: ../../view/theme/quattro/config.php:52 ../../view/theme/dispy/config.php:70
|
||||
#: ../../include/conversation.php:580
|
||||
#: ../../include/conversation.php:538
|
||||
msgid "Submit"
|
||||
msgstr "Senden"
|
||||
|
||||
|
|
@ -186,16 +194,16 @@ msgstr "Senden"
|
|||
msgid "Help:"
|
||||
msgstr "Hilfe:"
|
||||
|
||||
#: ../../mod/help.php:34 ../../addon/dav/layout.fnk.php:116
|
||||
#: ../../mod/help.php:34 ../../addon/dav/layout.fnk.php:225
|
||||
#: ../../include/nav.php:86
|
||||
msgid "Help"
|
||||
msgstr "Hilfe"
|
||||
|
||||
#: ../../mod/help.php:38 ../../index.php:218
|
||||
#: ../../mod/help.php:38 ../../index.php:224
|
||||
msgid "Not Found"
|
||||
msgstr "Nicht gefunden"
|
||||
|
||||
#: ../../mod/help.php:41 ../../index.php:221
|
||||
#: ../../mod/help.php:41 ../../index.php:227
|
||||
msgid "Page not found."
|
||||
msgstr "Seite nicht gefunden."
|
||||
|
||||
|
|
@ -204,7 +212,7 @@ msgstr "Seite nicht gefunden."
|
|||
msgid "File exceeds size limit of %d"
|
||||
msgstr "Die Datei ist größer als das erlaubte Limit von %d"
|
||||
|
||||
#: ../../mod/wall_attach.php:86 ../../mod/wall_attach.php:97
|
||||
#: ../../mod/wall_attach.php:99 ../../mod/wall_attach.php:110
|
||||
msgid "File upload failed."
|
||||
msgstr "Hochladen der Datei fehlgeschlagen."
|
||||
|
||||
|
|
@ -221,85 +229,94 @@ msgstr "Kontakte vorschlagen"
|
|||
msgid "Suggest a friend for %s"
|
||||
msgstr "Schlage %s einen Kontakt vor"
|
||||
|
||||
#: ../../mod/events.php:65
|
||||
msgid "Event description and start time are required."
|
||||
msgstr "Ereignisbeschreibung und Startzeit sind erforderlich."
|
||||
#: ../../mod/events.php:66
|
||||
msgid "Event title and start time are required."
|
||||
msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
|
||||
|
||||
#: ../../mod/events.php:258
|
||||
#: ../../mod/events.php:263
|
||||
msgid "l, F j"
|
||||
msgstr "l, F j"
|
||||
|
||||
#: ../../mod/events.php:280
|
||||
#: ../../mod/events.php:285
|
||||
msgid "Edit event"
|
||||
msgstr "Veranstaltung bearbeiten"
|
||||
|
||||
#: ../../mod/events.php:300 ../../include/text.php:1065
|
||||
#: ../../mod/events.php:307 ../../include/text.php:1114
|
||||
msgid "link to source"
|
||||
msgstr "Link zum Originalbeitrag"
|
||||
|
||||
#: ../../mod/events.php:324 ../../view/theme/diabook/theme.php:131
|
||||
#: ../../include/nav.php:52 ../../boot.php:1529
|
||||
#: ../../mod/events.php:331 ../../view/theme/diabook/theme.php:131
|
||||
#: ../../include/nav.php:52 ../../boot.php:1647
|
||||
msgid "Events"
|
||||
msgstr "Veranstaltungen"
|
||||
|
||||
#: ../../mod/events.php:325
|
||||
#: ../../mod/events.php:332
|
||||
msgid "Create New Event"
|
||||
msgstr "Neue Veranstaltung erstellen"
|
||||
|
||||
#: ../../mod/events.php:326 ../../addon/dav/layout.fnk.php:154
|
||||
#: ../../mod/events.php:333 ../../addon/dav/layout.fnk.php:263
|
||||
msgid "Previous"
|
||||
msgstr "Vorherige"
|
||||
|
||||
#: ../../mod/events.php:327 ../../mod/install.php:205
|
||||
#: ../../addon/dav/layout.fnk.php:157
|
||||
#: ../../mod/events.php:334 ../../mod/install.php:205
|
||||
#: ../../addon/dav/layout.fnk.php:266
|
||||
msgid "Next"
|
||||
msgstr "Nächste"
|
||||
|
||||
#: ../../mod/events.php:399
|
||||
#: ../../mod/events.php:407
|
||||
msgid "hour:minute"
|
||||
msgstr "Stunde:Minute"
|
||||
|
||||
#: ../../mod/events.php:408
|
||||
#: ../../mod/events.php:417
|
||||
msgid "Event details"
|
||||
msgstr "Veranstaltungsdetails"
|
||||
|
||||
#: ../../mod/events.php:409
|
||||
#: ../../mod/events.php:418
|
||||
#, php-format
|
||||
msgid "Format is %s %s. Starting date and Description are required."
|
||||
msgstr "Format ist %s %s. Anfangsdatum und Beschreibung sind notwendig."
|
||||
msgid "Format is %s %s. Starting date and Title are required."
|
||||
msgstr "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt."
|
||||
|
||||
#: ../../mod/events.php:411
|
||||
#: ../../mod/events.php:420
|
||||
msgid "Event Starts:"
|
||||
msgstr "Veranstaltungsbeginn:"
|
||||
|
||||
#: ../../mod/events.php:414
|
||||
#: ../../mod/events.php:420 ../../mod/events.php:434
|
||||
msgid "Required"
|
||||
msgstr "Benötigt"
|
||||
|
||||
#: ../../mod/events.php:423
|
||||
msgid "Finish date/time is not known or not relevant"
|
||||
msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
|
||||
|
||||
#: ../../mod/events.php:416
|
||||
#: ../../mod/events.php:425
|
||||
msgid "Event Finishes:"
|
||||
msgstr "Veranstaltungsende:"
|
||||
|
||||
#: ../../mod/events.php:419
|
||||
#: ../../mod/events.php:428
|
||||
msgid "Adjust for viewer timezone"
|
||||
msgstr "An Zeitzone des Betrachters anpassen"
|
||||
|
||||
#: ../../mod/events.php:421
|
||||
#: ../../mod/events.php:430
|
||||
msgid "Description:"
|
||||
msgstr "Beschreibung"
|
||||
|
||||
#: ../../mod/events.php:423 ../../include/event.php:37
|
||||
#: ../../include/bb2diaspora.php:265 ../../boot.php:1109
|
||||
#: ../../mod/events.php:432 ../../mod/directory.php:132
|
||||
#: ../../include/event.php:40 ../../include/bb2diaspora.php:455
|
||||
#: ../../boot.php:1199
|
||||
msgid "Location:"
|
||||
msgstr "Ort:"
|
||||
|
||||
#: ../../mod/events.php:425
|
||||
#: ../../mod/events.php:434
|
||||
msgid "Title:"
|
||||
msgstr "Titel:"
|
||||
|
||||
#: ../../mod/events.php:436
|
||||
msgid "Share this event"
|
||||
msgstr "Veranstaltung teilen"
|
||||
|
||||
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
|
||||
#: ../../mod/dfrn_request.php:845 ../../mod/settings.php:556
|
||||
#: ../../mod/settings.php:582 ../../addon/js_upload/js_upload.php:45
|
||||
#: ../../mod/dfrn_request.php:845 ../../mod/settings.php:538
|
||||
#: ../../mod/settings.php:564 ../../addon/js_upload/js_upload.php:45
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
|
|
@ -316,6 +333,7 @@ msgid "Select a tag to remove: "
|
|||
msgstr "Wähle ein Tag zum Entfernen aus: "
|
||||
|
||||
#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:468
|
||||
msgid "Remove"
|
||||
msgstr "Entfernen"
|
||||
|
||||
|
|
@ -343,255 +361,276 @@ msgid ""
|
|||
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:833
|
||||
#: ../../mod/settings.php:879 ../../mod/settings.php:885
|
||||
#: ../../mod/settings.php:893 ../../mod/settings.php:897
|
||||
#: ../../mod/settings.php:902 ../../mod/settings.php:908
|
||||
#: ../../mod/settings.php:914 ../../mod/settings.php:920
|
||||
#: ../../mod/settings.php:956 ../../mod/settings.php:957
|
||||
#: ../../mod/settings.php:958 ../../mod/settings.php:959
|
||||
#: ../../mod/settings.php:960 ../../mod/register.php:234
|
||||
#: ../../mod/profiles.php:531
|
||||
#: ../../mod/settings.php:874 ../../mod/settings.php:880
|
||||
#: ../../mod/settings.php:888 ../../mod/settings.php:892
|
||||
#: ../../mod/settings.php:897 ../../mod/settings.php:903
|
||||
#: ../../mod/settings.php:909 ../../mod/settings.php:915
|
||||
#: ../../mod/settings.php:945 ../../mod/settings.php:946
|
||||
#: ../../mod/settings.php:947 ../../mod/settings.php:948
|
||||
#: ../../mod/settings.php:949 ../../mod/register.php:234
|
||||
#: ../../mod/profiles.php:558
|
||||
msgid "Yes"
|
||||
msgstr "Ja"
|
||||
|
||||
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:834
|
||||
#: ../../mod/settings.php:879 ../../mod/settings.php:885
|
||||
#: ../../mod/settings.php:893 ../../mod/settings.php:897
|
||||
#: ../../mod/settings.php:902 ../../mod/settings.php:908
|
||||
#: ../../mod/settings.php:914 ../../mod/settings.php:920
|
||||
#: ../../mod/settings.php:956 ../../mod/settings.php:957
|
||||
#: ../../mod/settings.php:958 ../../mod/settings.php:959
|
||||
#: ../../mod/settings.php:960 ../../mod/register.php:235
|
||||
#: ../../mod/profiles.php:532
|
||||
#: ../../mod/settings.php:874 ../../mod/settings.php:880
|
||||
#: ../../mod/settings.php:888 ../../mod/settings.php:892
|
||||
#: ../../mod/settings.php:897 ../../mod/settings.php:903
|
||||
#: ../../mod/settings.php:909 ../../mod/settings.php:915
|
||||
#: ../../mod/settings.php:945 ../../mod/settings.php:946
|
||||
#: ../../mod/settings.php:947 ../../mod/settings.php:948
|
||||
#: ../../mod/settings.php:949 ../../mod/register.php:235
|
||||
#: ../../mod/profiles.php:559
|
||||
msgid "No"
|
||||
msgstr "Nein"
|
||||
|
||||
#: ../../mod/photos.php:44 ../../boot.php:1523
|
||||
#: ../../mod/photos.php:46 ../../boot.php:1640
|
||||
msgid "Photo Albums"
|
||||
msgstr "Fotoalben"
|
||||
|
||||
#: ../../mod/photos.php:52 ../../mod/photos.php:154 ../../mod/photos.php:942
|
||||
#: ../../mod/photos.php:1013 ../../mod/photos.php:1028
|
||||
#: ../../mod/photos.php:1455 ../../mod/photos.php:1467
|
||||
#: ../../mod/photos.php:54 ../../mod/photos.php:137 ../../mod/photos.php:952
|
||||
#: ../../mod/photos.php:1034 ../../mod/photos.php:1049
|
||||
#: ../../mod/photos.php:1477 ../../mod/photos.php:1489
|
||||
#: ../../addon/communityhome/communityhome.php:110
|
||||
#: ../../view/theme/diabook/theme.php:598
|
||||
msgid "Contact Photos"
|
||||
msgstr "Kontaktbilder"
|
||||
|
||||
#: ../../mod/photos.php:59 ../../mod/photos.php:1038 ../../mod/photos.php:1505
|
||||
#: ../../mod/photos.php:61 ../../mod/photos.php:1059 ../../mod/photos.php:1527
|
||||
msgid "Upload New Photos"
|
||||
msgstr "Weitere Fotos hochladen"
|
||||
|
||||
#: ../../mod/photos.php:70 ../../mod/settings.php:21
|
||||
#: ../../mod/photos.php:74 ../../mod/settings.php:23
|
||||
msgid "everybody"
|
||||
msgstr "jeder"
|
||||
|
||||
#: ../../mod/photos.php:143
|
||||
#: ../../mod/photos.php:126
|
||||
msgid "Contact information unavailable"
|
||||
msgstr "Kontaktinformationen nicht verfügbar"
|
||||
|
||||
#: ../../mod/photos.php:154 ../../mod/photos.php:656 ../../mod/photos.php:1013
|
||||
#: ../../mod/photos.php:1028 ../../mod/profile_photo.php:60
|
||||
#: ../../mod/photos.php:137 ../../mod/photos.php:641 ../../mod/photos.php:1034
|
||||
#: ../../mod/photos.php:1049 ../../mod/profile_photo.php:60
|
||||
#: ../../mod/profile_photo.php:67 ../../mod/profile_photo.php:74
|
||||
#: ../../mod/profile_photo.php:176 ../../mod/profile_photo.php:254
|
||||
#: ../../mod/profile_photo.php:263
|
||||
#: ../../mod/profile_photo.php:177 ../../mod/profile_photo.php:261
|
||||
#: ../../mod/profile_photo.php:270
|
||||
#: ../../addon/communityhome/communityhome.php:111
|
||||
#: ../../view/theme/diabook/theme.php:599 ../../include/user.php:298
|
||||
#: ../../include/user.php:305 ../../include/user.php:312
|
||||
#: ../../view/theme/diabook/theme.php:599 ../../include/user.php:304
|
||||
#: ../../include/user.php:311 ../../include/user.php:318
|
||||
msgid "Profile Photos"
|
||||
msgstr "Profilbilder"
|
||||
|
||||
#: ../../mod/photos.php:164
|
||||
#: ../../mod/photos.php:147
|
||||
msgid "Album not found."
|
||||
msgstr "Album nicht gefunden."
|
||||
|
||||
#: ../../mod/photos.php:182 ../../mod/photos.php:1022
|
||||
#: ../../mod/photos.php:165 ../../mod/photos.php:1043
|
||||
msgid "Delete Album"
|
||||
msgstr "Album löschen"
|
||||
|
||||
#: ../../mod/photos.php:245 ../../mod/photos.php:1267
|
||||
#: ../../mod/photos.php:228 ../../mod/photos.php:1286
|
||||
msgid "Delete Photo"
|
||||
msgstr "Foto löschen"
|
||||
|
||||
#: ../../mod/photos.php:587
|
||||
#: ../../mod/photos.php:572
|
||||
msgid "was tagged in a"
|
||||
msgstr "wurde getaggt in einem"
|
||||
|
||||
#: ../../mod/photos.php:587 ../../mod/like.php:185 ../../mod/tagger.php:70
|
||||
#: ../../mod/photos.php:572 ../../mod/like.php:145 ../../mod/tagger.php:70
|
||||
#: ../../addon/communityhome/communityhome.php:163
|
||||
#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1316
|
||||
#: ../../include/diaspora.php:1709 ../../include/conversation.php:53
|
||||
#: ../../include/conversation.php:126
|
||||
#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1366
|
||||
#: ../../include/diaspora.php:1824 ../../include/conversation.php:114
|
||||
#: ../../include/conversation.php:230
|
||||
msgid "photo"
|
||||
msgstr "Foto"
|
||||
|
||||
#: ../../mod/photos.php:587
|
||||
#: ../../mod/photos.php:572
|
||||
msgid "by"
|
||||
msgstr "von"
|
||||
|
||||
#: ../../mod/photos.php:692 ../../addon/js_upload/js_upload.php:315
|
||||
#: ../../mod/photos.php:677 ../../addon/js_upload/js_upload.php:315
|
||||
msgid "Image exceeds size limit of "
|
||||
msgstr "Die Bildgröße übersteigt das Limit von "
|
||||
|
||||
#: ../../mod/photos.php:700
|
||||
#: ../../mod/photos.php:685
|
||||
msgid "Image file is empty."
|
||||
msgstr "Bilddatei ist leer."
|
||||
|
||||
#: ../../mod/photos.php:714 ../../mod/profile_photo.php:126
|
||||
#: ../../mod/wall_upload.php:86
|
||||
#: ../../mod/photos.php:717 ../../mod/profile_photo.php:126
|
||||
#: ../../mod/wall_upload.php:99
|
||||
msgid "Unable to process image."
|
||||
msgstr "Konnte das Bild nicht bearbeiten."
|
||||
|
||||
#: ../../mod/photos.php:734 ../../mod/profile_photo.php:259
|
||||
#: ../../mod/wall_upload.php:105
|
||||
#: ../../mod/photos.php:744 ../../mod/profile_photo.php:266
|
||||
#: ../../mod/wall_upload.php:125
|
||||
msgid "Image upload failed."
|
||||
msgstr "Hochladen des Bildes gescheitert."
|
||||
|
||||
#: ../../mod/photos.php:820 ../../mod/community.php:16
|
||||
#: ../../mod/photos.php:830 ../../mod/community.php:16
|
||||
#: ../../mod/dfrn_request.php:759 ../../mod/viewcontacts.php:17
|
||||
#: ../../mod/display.php:7 ../../mod/search.php:71 ../../mod/directory.php:29
|
||||
msgid "Public access denied."
|
||||
msgstr "Öffentlicher Zugriff verweigert."
|
||||
|
||||
#: ../../mod/photos.php:830
|
||||
#: ../../mod/photos.php:840
|
||||
msgid "No photos selected"
|
||||
msgstr "Keine Bilder ausgewählt"
|
||||
|
||||
#: ../../mod/photos.php:909
|
||||
#: ../../mod/photos.php:919
|
||||
msgid "Access to this item is restricted."
|
||||
msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
|
||||
|
||||
#: ../../mod/photos.php:970
|
||||
#: ../../mod/photos.php:981
|
||||
#, php-format
|
||||
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
|
||||
msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."
|
||||
|
||||
#: ../../mod/photos.php:984
|
||||
#, php-format
|
||||
msgid "You have used %1$.2f Mbytes of photo storage."
|
||||
msgstr "Du verwendest %1$.2f Mbyte des Foto-Speichers."
|
||||
|
||||
#: ../../mod/photos.php:990
|
||||
msgid "Upload Photos"
|
||||
msgstr "Bilder hochladen"
|
||||
|
||||
#: ../../mod/photos.php:973 ../../mod/photos.php:1017
|
||||
#: ../../mod/photos.php:994 ../../mod/photos.php:1038
|
||||
msgid "New album name: "
|
||||
msgstr "Name des neuen Albums: "
|
||||
|
||||
#: ../../mod/photos.php:974
|
||||
#: ../../mod/photos.php:995
|
||||
msgid "or existing album name: "
|
||||
msgstr "oder existierender Albumname: "
|
||||
|
||||
#: ../../mod/photos.php:975
|
||||
#: ../../mod/photos.php:996
|
||||
msgid "Do not show a status post for this upload"
|
||||
msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
|
||||
|
||||
#: ../../mod/photos.php:977 ../../mod/photos.php:1262
|
||||
#: ../../mod/photos.php:998 ../../mod/photos.php:1281
|
||||
msgid "Permissions"
|
||||
msgstr "Berechtigungen"
|
||||
|
||||
#: ../../mod/photos.php:1032
|
||||
#: ../../mod/photos.php:1053
|
||||
msgid "Edit Album"
|
||||
msgstr "Album bearbeiten"
|
||||
|
||||
#: ../../mod/photos.php:1056 ../../mod/photos.php:1488
|
||||
#: ../../mod/photos.php:1077 ../../mod/photos.php:1510
|
||||
msgid "View Photo"
|
||||
msgstr "Fotos betrachten"
|
||||
|
||||
#: ../../mod/photos.php:1091
|
||||
#: ../../mod/photos.php:1112
|
||||
msgid "Permission denied. Access to this item may be restricted."
|
||||
msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
|
||||
|
||||
#: ../../mod/photos.php:1093
|
||||
#: ../../mod/photos.php:1114
|
||||
msgid "Photo not available"
|
||||
msgstr "Foto nicht verfügbar"
|
||||
|
||||
#: ../../mod/photos.php:1143
|
||||
#: ../../mod/photos.php:1164
|
||||
msgid "View photo"
|
||||
msgstr "Fotos ansehen"
|
||||
|
||||
#: ../../mod/photos.php:1143
|
||||
#: ../../mod/photos.php:1164
|
||||
msgid "Edit photo"
|
||||
msgstr "Foto bearbeiten"
|
||||
|
||||
#: ../../mod/photos.php:1144
|
||||
#: ../../mod/photos.php:1165
|
||||
msgid "Use as profile photo"
|
||||
msgstr "Als Profilbild verwenden"
|
||||
|
||||
#: ../../mod/photos.php:1150 ../../include/conversation.php:490
|
||||
#: ../../mod/photos.php:1171 ../../mod/content.php:601
|
||||
#: ../../include/conversation.php:381
|
||||
msgid "Private Message"
|
||||
msgstr "Private Nachricht"
|
||||
|
||||
#: ../../mod/photos.php:1172
|
||||
#: ../../mod/photos.php:1190
|
||||
msgid "View Full Size"
|
||||
msgstr "Betrachte Originalgröße"
|
||||
|
||||
#: ../../mod/photos.php:1240
|
||||
#: ../../mod/photos.php:1258
|
||||
msgid "Tags: "
|
||||
msgstr "Tags: "
|
||||
|
||||
#: ../../mod/photos.php:1243
|
||||
#: ../../mod/photos.php:1261
|
||||
msgid "[Remove any tag]"
|
||||
msgstr "[Tag entfernen]"
|
||||
|
||||
#: ../../mod/photos.php:1253
|
||||
msgid "Rotate CW"
|
||||
msgstr "Im Uhrzeigersinn rotieren"
|
||||
#: ../../mod/photos.php:1271
|
||||
msgid "Rotate CW (right)"
|
||||
msgstr "Drehen US (rechts)"
|
||||
|
||||
#: ../../mod/photos.php:1255
|
||||
#: ../../mod/photos.php:1272
|
||||
msgid "Rotate CCW (left)"
|
||||
msgstr "Drehen EUS (links)"
|
||||
|
||||
#: ../../mod/photos.php:1274
|
||||
msgid "New album name"
|
||||
msgstr "Name des neuen Albums"
|
||||
|
||||
#: ../../mod/photos.php:1258
|
||||
#: ../../mod/photos.php:1277
|
||||
msgid "Caption"
|
||||
msgstr "Bildunterschrift"
|
||||
|
||||
#: ../../mod/photos.php:1260
|
||||
#: ../../mod/photos.php:1279
|
||||
msgid "Add a Tag"
|
||||
msgstr "Tag hinzufügen"
|
||||
|
||||
#: ../../mod/photos.php:1264
|
||||
#: ../../mod/photos.php:1283
|
||||
msgid ""
|
||||
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
||||
msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
||||
|
||||
#: ../../mod/photos.php:1284 ../../include/conversation.php:554
|
||||
#: ../../mod/photos.php:1303 ../../mod/content.php:665
|
||||
#: ../../include/conversation.php:513
|
||||
msgid "I like this (toggle)"
|
||||
msgstr "Ich mag das (toggle)"
|
||||
|
||||
#: ../../mod/photos.php:1285 ../../include/conversation.php:555
|
||||
#: ../../mod/photos.php:1304 ../../mod/content.php:666
|
||||
#: ../../include/conversation.php:514
|
||||
msgid "I don't like this (toggle)"
|
||||
msgstr "Ich mag das nicht (toggle)"
|
||||
|
||||
#: ../../mod/photos.php:1286 ../../include/conversation.php:989
|
||||
#: ../../mod/photos.php:1305 ../../include/conversation.php:1139
|
||||
msgid "Share"
|
||||
msgstr "Teilen"
|
||||
|
||||
#: ../../mod/photos.php:1287 ../../mod/editpost.php:104
|
||||
#: ../../mod/wallmessage.php:145 ../../mod/message.php:215
|
||||
#: ../../mod/message.php:410 ../../include/conversation.php:371
|
||||
#: ../../include/conversation.php:731 ../../include/conversation.php:1008
|
||||
#: ../../mod/photos.php:1306 ../../mod/editpost.php:112
|
||||
#: ../../mod/content.php:482 ../../mod/content.php:843
|
||||
#: ../../mod/wallmessage.php:152 ../../mod/message.php:293
|
||||
#: ../../mod/message.php:479 ../../include/conversation.php:604
|
||||
#: ../../include/conversation.php:835 ../../include/conversation.php:1158
|
||||
msgid "Please wait"
|
||||
msgstr "Bitte warten"
|
||||
|
||||
#: ../../mod/photos.php:1303 ../../mod/photos.php:1343
|
||||
#: ../../mod/photos.php:1374 ../../include/conversation.php:577
|
||||
#: ../../mod/photos.php:1322 ../../mod/photos.php:1363
|
||||
#: ../../mod/photos.php:1395 ../../mod/content.php:688
|
||||
#: ../../include/conversation.php:535
|
||||
msgid "This is you"
|
||||
msgstr "Das bist du"
|
||||
|
||||
#: ../../mod/photos.php:1305 ../../mod/photos.php:1345
|
||||
#: ../../mod/photos.php:1376 ../../include/conversation.php:579
|
||||
#: ../../boot.php:523
|
||||
#: ../../mod/photos.php:1324 ../../mod/photos.php:1365
|
||||
#: ../../mod/photos.php:1397 ../../mod/content.php:690
|
||||
#: ../../include/conversation.php:537 ../../boot.php:582
|
||||
msgid "Comment"
|
||||
msgstr "Kommentar"
|
||||
|
||||
#: ../../mod/photos.php:1307 ../../mod/editpost.php:125
|
||||
#: ../../include/conversation.php:589 ../../include/conversation.php:1026
|
||||
#: ../../mod/photos.php:1326 ../../mod/editpost.php:133
|
||||
#: ../../mod/content.php:700 ../../include/conversation.php:547
|
||||
#: ../../include/conversation.php:1176
|
||||
msgid "Preview"
|
||||
msgstr "Vorschau"
|
||||
|
||||
#: ../../mod/photos.php:1404 ../../mod/settings.php:618
|
||||
#: ../../mod/settings.php:699 ../../mod/group.php:168 ../../mod/admin.php:663
|
||||
#: ../../include/conversation.php:328 ../../include/conversation.php:609
|
||||
#: ../../mod/photos.php:1426 ../../mod/content.php:439
|
||||
#: ../../mod/content.php:721 ../../mod/settings.php:600
|
||||
#: ../../mod/settings.php:689 ../../mod/group.php:168 ../../mod/admin.php:671
|
||||
#: ../../include/conversation.php:395 ../../include/conversation.php:792
|
||||
msgid "Delete"
|
||||
msgstr "Löschen"
|
||||
|
||||
#: ../../mod/photos.php:1494
|
||||
#: ../../mod/photos.php:1516
|
||||
msgid "View Album"
|
||||
msgstr "Album betrachten"
|
||||
|
||||
#: ../../mod/photos.php:1503
|
||||
#: ../../mod/photos.php:1525
|
||||
msgid "Recent Photos"
|
||||
msgstr "Neueste Fotos"
|
||||
|
||||
|
|
@ -604,7 +643,8 @@ msgstr "Nicht verfügbar."
|
|||
msgid "Community"
|
||||
msgstr "Gemeinschaft"
|
||||
|
||||
#: ../../mod/community.php:61 ../../mod/search.php:144
|
||||
#: ../../mod/community.php:61 ../../mod/community.php:86
|
||||
#: ../../mod/search.php:146 ../../mod/search.php:172
|
||||
msgid "No results."
|
||||
msgstr "Keine Ergebnisse."
|
||||
|
||||
|
|
@ -648,72 +688,72 @@ msgstr "Beitrag nicht gefunden"
|
|||
msgid "Edit post"
|
||||
msgstr "Beitrag bearbeiten"
|
||||
|
||||
#: ../../mod/editpost.php:80 ../../include/conversation.php:975
|
||||
#: ../../mod/editpost.php:88 ../../include/conversation.php:1125
|
||||
msgid "Post to Email"
|
||||
msgstr "An E-Mail senden"
|
||||
|
||||
#: ../../mod/editpost.php:95 ../../mod/settings.php:617
|
||||
#: ../../include/conversation.php:596
|
||||
#: ../../mod/editpost.php:103 ../../mod/content.php:708
|
||||
#: ../../mod/settings.php:599 ../../include/conversation.php:386
|
||||
msgid "Edit"
|
||||
msgstr "Bearbeiten"
|
||||
|
||||
#: ../../mod/editpost.php:96 ../../mod/wallmessage.php:143
|
||||
#: ../../mod/message.php:213 ../../mod/message.php:408
|
||||
#: ../../include/conversation.php:990
|
||||
#: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150
|
||||
#: ../../mod/message.php:291 ../../mod/message.php:476
|
||||
#: ../../include/conversation.php:1140
|
||||
msgid "Upload photo"
|
||||
msgstr "Foto hochladen"
|
||||
|
||||
#: ../../mod/editpost.php:97 ../../include/conversation.php:992
|
||||
#: ../../mod/editpost.php:105 ../../include/conversation.php:1142
|
||||
msgid "Attach file"
|
||||
msgstr "Datei anhängen"
|
||||
|
||||
#: ../../mod/editpost.php:98 ../../mod/wallmessage.php:144
|
||||
#: ../../mod/message.php:214 ../../mod/message.php:409
|
||||
#: ../../include/conversation.php:994
|
||||
#: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151
|
||||
#: ../../mod/message.php:292 ../../mod/message.php:477
|
||||
#: ../../include/conversation.php:1144
|
||||
msgid "Insert web link"
|
||||
msgstr "einen Link einfügen"
|
||||
|
||||
#: ../../mod/editpost.php:99
|
||||
#: ../../mod/editpost.php:107
|
||||
msgid "Insert YouTube video"
|
||||
msgstr "YouTube-Video einfügen"
|
||||
|
||||
#: ../../mod/editpost.php:100
|
||||
#: ../../mod/editpost.php:108
|
||||
msgid "Insert Vorbis [.ogg] video"
|
||||
msgstr "Vorbis [.ogg] Video einfügen"
|
||||
|
||||
#: ../../mod/editpost.php:101
|
||||
#: ../../mod/editpost.php:109
|
||||
msgid "Insert Vorbis [.ogg] audio"
|
||||
msgstr "Vorbis [.ogg] Audio einfügen"
|
||||
|
||||
#: ../../mod/editpost.php:102 ../../include/conversation.php:1000
|
||||
#: ../../mod/editpost.php:110 ../../include/conversation.php:1150
|
||||
msgid "Set your location"
|
||||
msgstr "Deinen Standort festlegen"
|
||||
|
||||
#: ../../mod/editpost.php:103 ../../include/conversation.php:1002
|
||||
#: ../../mod/editpost.php:111 ../../include/conversation.php:1152
|
||||
msgid "Clear browser location"
|
||||
msgstr "Browser-Standort leeren"
|
||||
|
||||
#: ../../mod/editpost.php:105 ../../include/conversation.php:1009
|
||||
#: ../../mod/editpost.php:113 ../../include/conversation.php:1159
|
||||
msgid "Permission settings"
|
||||
msgstr "Berechtigungseinstellungen"
|
||||
|
||||
#: ../../mod/editpost.php:113 ../../include/conversation.php:1018
|
||||
#: ../../mod/editpost.php:121 ../../include/conversation.php:1168
|
||||
msgid "CC: email addresses"
|
||||
msgstr "Cc:-E-Mail-Addressen"
|
||||
|
||||
#: ../../mod/editpost.php:114 ../../include/conversation.php:1019
|
||||
#: ../../mod/editpost.php:122 ../../include/conversation.php:1169
|
||||
msgid "Public post"
|
||||
msgstr "Öffentlicher Beitrag"
|
||||
|
||||
#: ../../mod/editpost.php:117 ../../include/conversation.php:1005
|
||||
#: ../../mod/editpost.php:125 ../../include/conversation.php:1155
|
||||
msgid "Set title"
|
||||
msgstr "Titel setzen"
|
||||
|
||||
#: ../../mod/editpost.php:119 ../../include/conversation.php:1007
|
||||
#: ../../mod/editpost.php:127 ../../include/conversation.php:1157
|
||||
msgid "Categories (comma-separated list)"
|
||||
msgstr "Kategorien (kommasepariert)"
|
||||
|
||||
#: ../../mod/editpost.php:120 ../../include/conversation.php:1021
|
||||
#: ../../mod/editpost.php:128 ../../include/conversation.php:1171
|
||||
msgid "Example: bob@example.com, mary@example.com"
|
||||
msgstr "Z.B.: bob@example.com, mary@example.com"
|
||||
|
||||
|
|
@ -798,7 +838,7 @@ msgstr "Ungültige Profil-URL."
|
|||
msgid "Disallowed profile URL."
|
||||
msgstr "Nicht erlaubte Profil-URL."
|
||||
|
||||
#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:122
|
||||
#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:116
|
||||
msgid "Failed to update contact record."
|
||||
msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
|
||||
|
||||
|
|
@ -818,7 +858,7 @@ msgstr "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Di
|
|||
|
||||
#: ../../mod/dfrn_request.php:669
|
||||
msgid "Hide this contact"
|
||||
msgstr "Verberge diese Kontakt"
|
||||
msgstr "Verberge diesen Kontakt"
|
||||
|
||||
#: ../../mod/dfrn_request.php:672
|
||||
#, php-format
|
||||
|
|
@ -834,7 +874,7 @@ msgstr "Bitte bestätige deine Kontaktanfrage bei %s."
|
|||
msgid "Confirm"
|
||||
msgstr "Bestätigen"
|
||||
|
||||
#: ../../mod/dfrn_request.php:715 ../../include/items.php:2783
|
||||
#: ../../mod/dfrn_request.php:715 ../../include/items.php:3207
|
||||
msgid "[Name Withheld]"
|
||||
msgstr "[Name unterdrückt]"
|
||||
|
||||
|
|
@ -886,7 +926,7 @@ msgstr "Friendica"
|
|||
msgid "StatusNet/Federated Social Web"
|
||||
msgstr "StatusNet/Federated Social Web"
|
||||
|
||||
#: ../../mod/dfrn_request.php:839 ../../mod/settings.php:652
|
||||
#: ../../mod/dfrn_request.php:839 ../../mod/settings.php:634
|
||||
#: ../../include/contact_selectors.php:80
|
||||
msgid "Diaspora"
|
||||
msgstr "Diaspora"
|
||||
|
|
@ -920,7 +960,7 @@ msgstr "Konnte Tabelle nicht erstellen."
|
|||
|
||||
#: ../../mod/install.php:133
|
||||
msgid "Your Friendica site database has been installed."
|
||||
msgstr "Die Datenbank deiner Friendica Seite wurde installiert."
|
||||
msgstr "Die Datenbank deiner Friendicaseite wurde installiert."
|
||||
|
||||
#: ../../mod/install.php:138
|
||||
msgid ""
|
||||
|
|
@ -1016,7 +1056,7 @@ msgstr "Pfad zu PHP"
|
|||
msgid ""
|
||||
"Enter full path to php executable. You can leave this blank to continue the "
|
||||
"installation."
|
||||
msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst diesen Feld auch frei lassen und mit der Installation fortfahren."
|
||||
msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."
|
||||
|
||||
#: ../../mod/install.php:328
|
||||
msgid "Command line PHP"
|
||||
|
|
@ -1083,7 +1123,7 @@ msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings n
|
|||
|
||||
#: ../../mod/install.php:388
|
||||
msgid "Error: libCURL PHP module required but not installed."
|
||||
msgstr "Fehler: Das libCURL PHP Modul wird benötigt ist aber nicht installiert."
|
||||
msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
|
||||
|
||||
#: ../../mod/install.php:392
|
||||
msgid ""
|
||||
|
|
@ -1112,7 +1152,7 @@ msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzei
|
|||
msgid ""
|
||||
"This is most often a permission setting, as the web server may not be able "
|
||||
"to write files in your folder - even if you can."
|
||||
msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten, der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast."
|
||||
msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast."
|
||||
|
||||
#: ../../mod/install.php:423
|
||||
msgid ""
|
||||
|
|
@ -1161,7 +1201,7 @@ msgid ""
|
|||
msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."
|
||||
|
||||
#: ../../mod/localtime.php:12 ../../include/event.php:11
|
||||
#: ../../include/bb2diaspora.php:243
|
||||
#: ../../include/bb2diaspora.php:433
|
||||
msgid "l F d, Y \\@ g:i A"
|
||||
msgstr "l F d, Y \\@ g:i A"
|
||||
|
||||
|
|
@ -1194,6 +1234,26 @@ msgstr "Umgerechnete lokale Zeit: %s"
|
|||
msgid "Please select your timezone:"
|
||||
msgstr "Bitte wähle deine Zeitzone."
|
||||
|
||||
#: ../../mod/poke.php:192
|
||||
msgid "Poke/Prod"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/poke.php:193
|
||||
msgid "poke, prod or do other things to somebody"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/poke.php:194
|
||||
msgid "Recipient"
|
||||
msgstr "Empfänger"
|
||||
|
||||
#: ../../mod/poke.php:195
|
||||
msgid "Choose what you wish to do to recipient"
|
||||
msgstr "Was willst du mit dem Empfänger machen:"
|
||||
|
||||
#: ../../mod/poke.php:198
|
||||
msgid "Make this post private"
|
||||
msgstr "Diesen Beitrag privat machen"
|
||||
|
||||
#: ../../mod/match.php:12
|
||||
msgid "Profile Match"
|
||||
msgstr "Profilübereinstimmungen"
|
||||
|
|
@ -1207,7 +1267,7 @@ msgid "is interested in:"
|
|||
msgstr "ist interessiert an:"
|
||||
|
||||
#: ../../mod/match.php:58 ../../mod/suggest.php:59
|
||||
#: ../../include/contact_widgets.php:9 ../../boot.php:1053
|
||||
#: ../../include/contact_widgets.php:9 ../../boot.php:1143
|
||||
msgid "Connect"
|
||||
msgstr "Verbinden"
|
||||
|
||||
|
|
@ -1223,6 +1283,138 @@ msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
|
|||
msgid "Visible to:"
|
||||
msgstr "Sichtbar für:"
|
||||
|
||||
#: ../../mod/content.php:119 ../../mod/network.php:436
|
||||
msgid "No such group"
|
||||
msgstr "Es gibt keine solche Gruppe"
|
||||
|
||||
#: ../../mod/content.php:130 ../../mod/network.php:447
|
||||
msgid "Group is empty"
|
||||
msgstr "Gruppe ist leer"
|
||||
|
||||
#: ../../mod/content.php:134 ../../mod/network.php:451
|
||||
msgid "Group: "
|
||||
msgstr "Gruppe: "
|
||||
|
||||
#: ../../mod/content.php:438 ../../mod/content.php:720
|
||||
#: ../../include/conversation.php:394 ../../include/conversation.php:791
|
||||
msgid "Select"
|
||||
msgstr "Auswählen"
|
||||
|
||||
#: ../../mod/content.php:455 ../../mod/content.php:813
|
||||
#: ../../mod/content.php:814 ../../include/conversation.php:574
|
||||
#: ../../include/conversation.php:575 ../../include/conversation.php:808
|
||||
#, php-format
|
||||
msgid "View %s's profile @ %s"
|
||||
msgstr "Das Profil von %s auf %s betrachten."
|
||||
|
||||
#: ../../mod/content.php:465 ../../mod/content.php:825
|
||||
#: ../../include/conversation.php:586 ../../include/conversation.php:818
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr "%s von %s"
|
||||
|
||||
#: ../../mod/content.php:480 ../../include/conversation.php:833
|
||||
msgid "View in context"
|
||||
msgstr "Im Zusammenhang betrachten"
|
||||
|
||||
#: ../../mod/content.php:586 ../../include/conversation.php:613
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
msgstr[0] "%d Kommentar"
|
||||
msgstr[1] "%d Kommentare"
|
||||
|
||||
#: ../../mod/content.php:587 ../../addon/page/page.php:76
|
||||
#: ../../addon/page/page.php:110 ../../addon/showmore/showmore.php:119
|
||||
#: ../../include/contact_widgets.php:188 ../../include/conversation.php:614
|
||||
#: ../../boot.php:583
|
||||
msgid "show more"
|
||||
msgstr "mehr anzeigen"
|
||||
|
||||
#: ../../mod/content.php:665 ../../include/conversation.php:513
|
||||
msgid "like"
|
||||
msgstr "mag ich"
|
||||
|
||||
#: ../../mod/content.php:666 ../../include/conversation.php:514
|
||||
msgid "dislike"
|
||||
msgstr "mag ich nicht"
|
||||
|
||||
#: ../../mod/content.php:668 ../../include/conversation.php:516
|
||||
msgid "Share this"
|
||||
msgstr "Weitersagen"
|
||||
|
||||
#: ../../mod/content.php:668 ../../include/conversation.php:516
|
||||
msgid "share"
|
||||
msgstr "Teilen"
|
||||
|
||||
#: ../../mod/content.php:692 ../../include/conversation.php:539
|
||||
msgid "Bold"
|
||||
msgstr "Fett"
|
||||
|
||||
#: ../../mod/content.php:693 ../../include/conversation.php:540
|
||||
msgid "Italic"
|
||||
msgstr "Kursiv"
|
||||
|
||||
#: ../../mod/content.php:694 ../../include/conversation.php:541
|
||||
msgid "Underline"
|
||||
msgstr "Unterstrichen"
|
||||
|
||||
#: ../../mod/content.php:695 ../../include/conversation.php:542
|
||||
msgid "Quote"
|
||||
msgstr "Zitat"
|
||||
|
||||
#: ../../mod/content.php:696 ../../include/conversation.php:543
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#: ../../mod/content.php:697 ../../include/conversation.php:544
|
||||
msgid "Image"
|
||||
msgstr "Bild"
|
||||
|
||||
#: ../../mod/content.php:698 ../../include/conversation.php:545
|
||||
msgid "Link"
|
||||
msgstr "Verweis"
|
||||
|
||||
#: ../../mod/content.php:699 ../../include/conversation.php:546
|
||||
msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
#: ../../mod/content.php:733 ../../include/conversation.php:484
|
||||
msgid "add star"
|
||||
msgstr "markieren"
|
||||
|
||||
#: ../../mod/content.php:734 ../../include/conversation.php:485
|
||||
msgid "remove star"
|
||||
msgstr "Markierung entfernen"
|
||||
|
||||
#: ../../mod/content.php:735 ../../include/conversation.php:486
|
||||
msgid "toggle star status"
|
||||
msgstr "Markierung umschalten"
|
||||
|
||||
#: ../../mod/content.php:738 ../../include/conversation.php:489
|
||||
msgid "starred"
|
||||
msgstr "markiert"
|
||||
|
||||
#: ../../mod/content.php:739 ../../include/conversation.php:490
|
||||
msgid "add tag"
|
||||
msgstr "Tag hinzufügen"
|
||||
|
||||
#: ../../mod/content.php:743 ../../include/conversation.php:398
|
||||
msgid "save to folder"
|
||||
msgstr "In Ordner speichern"
|
||||
|
||||
#: ../../mod/content.php:815 ../../include/conversation.php:576
|
||||
msgid "to"
|
||||
msgstr "zu"
|
||||
|
||||
#: ../../mod/content.php:816 ../../include/conversation.php:577
|
||||
msgid "Wall-to-Wall"
|
||||
msgstr "Wall-to-Wall"
|
||||
|
||||
#: ../../mod/content.php:817 ../../include/conversation.php:578
|
||||
msgid "via Wall-To-Wall:"
|
||||
msgstr "via Wall-To-Wall:"
|
||||
|
||||
#: ../../mod/home.php:26 ../../addon/communityhome/communityhome.php:179
|
||||
#, php-format
|
||||
msgid "Welcome to %s"
|
||||
|
|
@ -1238,8 +1430,8 @@ msgid "Discard"
|
|||
msgstr "Verwerfen"
|
||||
|
||||
#: ../../mod/notifications.php:51 ../../mod/notifications.php:160
|
||||
#: ../../mod/notifications.php:206 ../../mod/contacts.php:316
|
||||
#: ../../mod/contacts.php:370
|
||||
#: ../../mod/notifications.php:206 ../../mod/contacts.php:314
|
||||
#: ../../mod/contacts.php:368
|
||||
msgid "Ignore"
|
||||
msgstr "Ignorieren"
|
||||
|
||||
|
|
@ -1264,7 +1456,7 @@ msgstr "Pinnwand"
|
|||
msgid "Introductions"
|
||||
msgstr "Kontaktanfragen"
|
||||
|
||||
#: ../../mod/notifications.php:100 ../../mod/message.php:105
|
||||
#: ../../mod/notifications.php:100 ../../mod/message.php:176
|
||||
#: ../../include/nav.php:128
|
||||
msgid "Messages"
|
||||
msgstr "Nachrichten"
|
||||
|
|
@ -1291,7 +1483,7 @@ msgid "suggested by %s"
|
|||
msgstr "vorgeschlagen von %s"
|
||||
|
||||
#: ../../mod/notifications.php:153 ../../mod/notifications.php:200
|
||||
#: ../../mod/contacts.php:376
|
||||
#: ../../mod/contacts.php:374
|
||||
msgid "Hide this contact from others"
|
||||
msgstr "Verberge diesen Kontakt vor anderen"
|
||||
|
||||
|
|
@ -1304,7 +1496,7 @@ msgid "if applicable"
|
|||
msgstr "falls anwendbar"
|
||||
|
||||
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
|
||||
#: ../../mod/admin.php:661
|
||||
#: ../../mod/admin.php:669
|
||||
msgid "Approve"
|
||||
msgstr "Genehmigen"
|
||||
|
||||
|
|
@ -1413,307 +1605,307 @@ msgstr "Keine weiteren Pinnwand-Benachrichtigungen"
|
|||
msgid "Home Notifications"
|
||||
msgstr "Pinnwand Benachrichtigungen"
|
||||
|
||||
#: ../../mod/contacts.php:83 ../../mod/contacts.php:163
|
||||
#: ../../mod/contacts.php:77 ../../mod/contacts.php:157
|
||||
msgid "Could not access contact record."
|
||||
msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
|
||||
|
||||
#: ../../mod/contacts.php:97
|
||||
#: ../../mod/contacts.php:91
|
||||
msgid "Could not locate selected profile."
|
||||
msgstr "Konnte das ausgewählte Profil nicht finden."
|
||||
|
||||
#: ../../mod/contacts.php:120
|
||||
#: ../../mod/contacts.php:114
|
||||
msgid "Contact updated."
|
||||
msgstr "Kontakt aktualisiert."
|
||||
|
||||
#: ../../mod/contacts.php:185
|
||||
#: ../../mod/contacts.php:179
|
||||
msgid "Contact has been blocked"
|
||||
msgstr "Kontakt wurde blockiert"
|
||||
|
||||
#: ../../mod/contacts.php:185
|
||||
#: ../../mod/contacts.php:179
|
||||
msgid "Contact has been unblocked"
|
||||
msgstr "Kontakt wurde wieder freigegeben"
|
||||
|
||||
#: ../../mod/contacts.php:199
|
||||
#: ../../mod/contacts.php:193
|
||||
msgid "Contact has been ignored"
|
||||
msgstr "Kontakt wurde ignoriert"
|
||||
|
||||
#: ../../mod/contacts.php:199
|
||||
#: ../../mod/contacts.php:193
|
||||
msgid "Contact has been unignored"
|
||||
msgstr "Kontakt wird nicht mehr ignoriert"
|
||||
|
||||
#: ../../mod/contacts.php:215
|
||||
#: ../../mod/contacts.php:209
|
||||
msgid "Contact has been archived"
|
||||
msgstr "Kontakt wurde archiviert"
|
||||
|
||||
#: ../../mod/contacts.php:215
|
||||
#: ../../mod/contacts.php:209
|
||||
msgid "Contact has been unarchived"
|
||||
msgstr "Kontakt wurde aus dem Archiv geholt"
|
||||
|
||||
#: ../../mod/contacts.php:228
|
||||
#: ../../mod/contacts.php:222
|
||||
msgid "Contact has been removed."
|
||||
msgstr "Kontakt wurde entfernt."
|
||||
|
||||
#: ../../mod/contacts.php:258
|
||||
#: ../../mod/contacts.php:256
|
||||
#, php-format
|
||||
msgid "You are mutual friends with %s"
|
||||
msgstr "Du hast mit %s eine beidseitige Freundschaft"
|
||||
|
||||
#: ../../mod/contacts.php:262
|
||||
#: ../../mod/contacts.php:260
|
||||
#, php-format
|
||||
msgid "You are sharing with %s"
|
||||
msgstr "Du teilst mit %s"
|
||||
|
||||
#: ../../mod/contacts.php:267
|
||||
#: ../../mod/contacts.php:265
|
||||
#, php-format
|
||||
msgid "%s is sharing with you"
|
||||
msgstr "%s teilt mit Dir"
|
||||
|
||||
#: ../../mod/contacts.php:284
|
||||
#: ../../mod/contacts.php:282
|
||||
msgid "Private communications are not available for this contact."
|
||||
msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
|
||||
|
||||
#: ../../mod/contacts.php:287
|
||||
#: ../../mod/contacts.php:285
|
||||
msgid "Never"
|
||||
msgstr "Niemals"
|
||||
|
||||
#: ../../mod/contacts.php:291
|
||||
#: ../../mod/contacts.php:289
|
||||
msgid "(Update was successful)"
|
||||
msgstr "(Aktualisierung war erfolgreich)"
|
||||
|
||||
#: ../../mod/contacts.php:291
|
||||
#: ../../mod/contacts.php:289
|
||||
msgid "(Update was not successful)"
|
||||
msgstr "(Aktualisierung war nicht erfolgreich)"
|
||||
|
||||
#: ../../mod/contacts.php:293
|
||||
#: ../../mod/contacts.php:291
|
||||
msgid "Suggest friends"
|
||||
msgstr "Kontakte vorschlagen"
|
||||
|
||||
#: ../../mod/contacts.php:297
|
||||
#: ../../mod/contacts.php:295
|
||||
#, php-format
|
||||
msgid "Network type: %s"
|
||||
msgstr "Netzwerk Typ: %s"
|
||||
msgstr "Netzwerktyp: %s"
|
||||
|
||||
#: ../../mod/contacts.php:300 ../../include/contact_widgets.php:183
|
||||
#: ../../mod/contacts.php:298 ../../include/contact_widgets.php:183
|
||||
#, php-format
|
||||
msgid "%d contact in common"
|
||||
msgid_plural "%d contacts in common"
|
||||
msgstr[0] "%d gemeinsamer Kontakt"
|
||||
msgstr[1] "%d gemeinsame Kontakte"
|
||||
|
||||
#: ../../mod/contacts.php:305
|
||||
#: ../../mod/contacts.php:303
|
||||
msgid "View all contacts"
|
||||
msgstr "Alle Kontakte anzeigen"
|
||||
|
||||
#: ../../mod/contacts.php:310 ../../mod/contacts.php:369
|
||||
#: ../../mod/admin.php:665
|
||||
#: ../../mod/contacts.php:308 ../../mod/contacts.php:367
|
||||
#: ../../mod/admin.php:673
|
||||
msgid "Unblock"
|
||||
msgstr "Entsperren"
|
||||
|
||||
#: ../../mod/contacts.php:310 ../../mod/contacts.php:369
|
||||
#: ../../mod/admin.php:664
|
||||
#: ../../mod/contacts.php:308 ../../mod/contacts.php:367
|
||||
#: ../../mod/admin.php:672
|
||||
msgid "Block"
|
||||
msgstr "Sperren"
|
||||
|
||||
#: ../../mod/contacts.php:313
|
||||
#: ../../mod/contacts.php:311
|
||||
msgid "Toggle Blocked status"
|
||||
msgstr "Geblockt-Status ein-/ausschalten"
|
||||
|
||||
#: ../../mod/contacts.php:316 ../../mod/contacts.php:370
|
||||
#: ../../mod/contacts.php:314 ../../mod/contacts.php:368
|
||||
msgid "Unignore"
|
||||
msgstr "Ignorieren aufheben"
|
||||
|
||||
#: ../../mod/contacts.php:319
|
||||
#: ../../mod/contacts.php:317
|
||||
msgid "Toggle Ignored status"
|
||||
msgstr "Ignoriert-Status ein-/ausschalten"
|
||||
|
||||
#: ../../mod/contacts.php:323
|
||||
#: ../../mod/contacts.php:321
|
||||
msgid "Unarchive"
|
||||
msgstr "Unarchivieren"
|
||||
msgstr "Aus Archiv zurückholen"
|
||||
|
||||
#: ../../mod/contacts.php:323
|
||||
#: ../../mod/contacts.php:321
|
||||
msgid "Archive"
|
||||
msgstr "Archivieren"
|
||||
|
||||
#: ../../mod/contacts.php:326
|
||||
#: ../../mod/contacts.php:324
|
||||
msgid "Toggle Archive status"
|
||||
msgstr "Archiviert-Status ein-/ausschalten"
|
||||
|
||||
#: ../../mod/contacts.php:329
|
||||
#: ../../mod/contacts.php:327
|
||||
msgid "Repair"
|
||||
msgstr "Reparieren"
|
||||
|
||||
#: ../../mod/contacts.php:332
|
||||
#: ../../mod/contacts.php:330
|
||||
msgid "Advanced Contact Settings"
|
||||
msgstr "Fortgeschrittene Kontakteinstellungen"
|
||||
|
||||
#: ../../mod/contacts.php:338
|
||||
#: ../../mod/contacts.php:336
|
||||
msgid "Communications lost with this contact!"
|
||||
msgstr "Verbindungen mit diesem Kontakt verloren!"
|
||||
|
||||
#: ../../mod/contacts.php:341
|
||||
#: ../../mod/contacts.php:339
|
||||
msgid "Contact Editor"
|
||||
msgstr "Kontakt Editor"
|
||||
|
||||
#: ../../mod/contacts.php:344
|
||||
#: ../../mod/contacts.php:342
|
||||
msgid "Profile Visibility"
|
||||
msgstr "Profil-Sichtbarkeit"
|
||||
|
||||
#: ../../mod/contacts.php:345
|
||||
#: ../../mod/contacts.php:343
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please choose the profile you would like to display to %s when viewing your "
|
||||
"profile securely."
|
||||
msgstr "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft."
|
||||
|
||||
#: ../../mod/contacts.php:346
|
||||
#: ../../mod/contacts.php:344
|
||||
msgid "Contact Information / Notes"
|
||||
msgstr "Kontakt Informationen / Notizen"
|
||||
|
||||
#: ../../mod/contacts.php:347
|
||||
#: ../../mod/contacts.php:345
|
||||
msgid "Edit contact notes"
|
||||
msgstr "Notizen zum Kontakt bearbiten"
|
||||
msgstr "Notizen zum Kontakt bearbeiten"
|
||||
|
||||
#: ../../mod/contacts.php:352 ../../mod/contacts.php:544
|
||||
#: ../../mod/contacts.php:350 ../../mod/contacts.php:542
|
||||
#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
|
||||
#, php-format
|
||||
msgid "Visit %s's profile [%s]"
|
||||
msgstr "Besuche %ss Profil [%s]"
|
||||
|
||||
#: ../../mod/contacts.php:353
|
||||
#: ../../mod/contacts.php:351
|
||||
msgid "Block/Unblock contact"
|
||||
msgstr "Kontakt blockieren/freischalten"
|
||||
|
||||
#: ../../mod/contacts.php:354
|
||||
#: ../../mod/contacts.php:352
|
||||
msgid "Ignore contact"
|
||||
msgstr "Ignoriere den Kontakt"
|
||||
|
||||
#: ../../mod/contacts.php:355
|
||||
#: ../../mod/contacts.php:353
|
||||
msgid "Repair URL settings"
|
||||
msgstr "URL Einstellungen reparieren"
|
||||
|
||||
#: ../../mod/contacts.php:356
|
||||
#: ../../mod/contacts.php:354
|
||||
msgid "View conversations"
|
||||
msgstr "Unterhaltungen anzeigen"
|
||||
|
||||
#: ../../mod/contacts.php:358
|
||||
#: ../../mod/contacts.php:356
|
||||
msgid "Delete contact"
|
||||
msgstr "Lösche den Kontakt"
|
||||
|
||||
#: ../../mod/contacts.php:362
|
||||
#: ../../mod/contacts.php:360
|
||||
msgid "Last update:"
|
||||
msgstr "letzte Aktualisierung:"
|
||||
|
||||
#: ../../mod/contacts.php:364
|
||||
#: ../../mod/contacts.php:362
|
||||
msgid "Update public posts"
|
||||
msgstr "Öffentliche Beiträge aktualisieren"
|
||||
|
||||
#: ../../mod/contacts.php:366 ../../mod/admin.php:1136
|
||||
#: ../../mod/contacts.php:364 ../../mod/admin.php:1144
|
||||
msgid "Update now"
|
||||
msgstr "Jetzt aktualisieren"
|
||||
|
||||
#: ../../mod/contacts.php:373
|
||||
#: ../../mod/contacts.php:371
|
||||
msgid "Currently blocked"
|
||||
msgstr "Derzeit geblockt"
|
||||
|
||||
#: ../../mod/contacts.php:374
|
||||
#: ../../mod/contacts.php:372
|
||||
msgid "Currently ignored"
|
||||
msgstr "Derzeit ignoriert"
|
||||
|
||||
#: ../../mod/contacts.php:375
|
||||
#: ../../mod/contacts.php:373
|
||||
msgid "Currently archived"
|
||||
msgstr "Momentan archiviert"
|
||||
|
||||
#: ../../mod/contacts.php:376
|
||||
#: ../../mod/contacts.php:374
|
||||
msgid ""
|
||||
"Replies/likes to your public posts <strong>may</strong> still be visible"
|
||||
msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein"
|
||||
|
||||
#: ../../mod/contacts.php:429
|
||||
#: ../../mod/contacts.php:427
|
||||
msgid "Suggestions"
|
||||
msgstr "Kontaktvorschläge"
|
||||
|
||||
#: ../../mod/contacts.php:432
|
||||
#: ../../mod/contacts.php:430
|
||||
msgid "Suggest potential friends"
|
||||
msgstr "Freunde vorschlagen"
|
||||
|
||||
#: ../../mod/contacts.php:435 ../../mod/group.php:191
|
||||
#: ../../mod/contacts.php:433 ../../mod/group.php:191
|
||||
msgid "All Contacts"
|
||||
msgstr "Alle Kontakte"
|
||||
|
||||
#: ../../mod/contacts.php:438
|
||||
#: ../../mod/contacts.php:436
|
||||
msgid "Show all contacts"
|
||||
msgstr "Alle Kontakte anzeigen"
|
||||
|
||||
#: ../../mod/contacts.php:441
|
||||
#: ../../mod/contacts.php:439
|
||||
msgid "Unblocked"
|
||||
msgstr "Ungeblockt"
|
||||
|
||||
#: ../../mod/contacts.php:444
|
||||
#: ../../mod/contacts.php:442
|
||||
msgid "Only show unblocked contacts"
|
||||
msgstr "Nur nicht-blockierte Kontakte anzeigen"
|
||||
|
||||
#: ../../mod/contacts.php:448
|
||||
#: ../../mod/contacts.php:446
|
||||
msgid "Blocked"
|
||||
msgstr "Geblockt"
|
||||
|
||||
#: ../../mod/contacts.php:451
|
||||
#: ../../mod/contacts.php:449
|
||||
msgid "Only show blocked contacts"
|
||||
msgstr "Nur blockierte Kontakte anzeigen"
|
||||
|
||||
#: ../../mod/contacts.php:455
|
||||
#: ../../mod/contacts.php:453
|
||||
msgid "Ignored"
|
||||
msgstr "Ignoriert"
|
||||
|
||||
#: ../../mod/contacts.php:458
|
||||
#: ../../mod/contacts.php:456
|
||||
msgid "Only show ignored contacts"
|
||||
msgstr "Nur ignorierte Kontakte anzeigen"
|
||||
|
||||
#: ../../mod/contacts.php:462
|
||||
#: ../../mod/contacts.php:460
|
||||
msgid "Archived"
|
||||
msgstr "Archiviert"
|
||||
|
||||
#: ../../mod/contacts.php:465
|
||||
#: ../../mod/contacts.php:463
|
||||
msgid "Only show archived contacts"
|
||||
msgstr "Nur archivierte Kontakte anzeigen"
|
||||
|
||||
#: ../../mod/contacts.php:469
|
||||
#: ../../mod/contacts.php:467
|
||||
msgid "Hidden"
|
||||
msgstr "Verborgen"
|
||||
|
||||
#: ../../mod/contacts.php:472
|
||||
#: ../../mod/contacts.php:470
|
||||
msgid "Only show hidden contacts"
|
||||
msgstr "Nur verborgene Kontakte anzeigen"
|
||||
|
||||
#: ../../mod/contacts.php:520
|
||||
#: ../../mod/contacts.php:518
|
||||
msgid "Mutual Friendship"
|
||||
msgstr "Beidseitige Freundschaft"
|
||||
|
||||
#: ../../mod/contacts.php:524
|
||||
#: ../../mod/contacts.php:522
|
||||
msgid "is a fan of yours"
|
||||
msgstr "ist ein Fan von dir"
|
||||
|
||||
#: ../../mod/contacts.php:528
|
||||
#: ../../mod/contacts.php:526
|
||||
msgid "you are a fan of"
|
||||
msgstr "du bist Fan von"
|
||||
|
||||
#: ../../mod/contacts.php:545 ../../mod/nogroup.php:41
|
||||
#: ../../mod/contacts.php:543 ../../mod/nogroup.php:41
|
||||
msgid "Edit contact"
|
||||
msgstr "Kontakt bearbeiten"
|
||||
|
||||
#: ../../mod/contacts.php:566 ../../view/theme/diabook/theme.php:129
|
||||
#: ../../mod/contacts.php:564 ../../view/theme/diabook/theme.php:129
|
||||
#: ../../include/nav.php:139
|
||||
msgid "Contacts"
|
||||
msgstr "Kontakte"
|
||||
|
||||
#: ../../mod/contacts.php:570
|
||||
#: ../../mod/contacts.php:568
|
||||
msgid "Search your contacts"
|
||||
msgstr "Suche in deinen Kontakten"
|
||||
|
||||
#: ../../mod/contacts.php:571 ../../mod/directory.php:57
|
||||
#: ../../mod/contacts.php:569 ../../mod/directory.php:57
|
||||
msgid "Finding: "
|
||||
msgstr "Funde: "
|
||||
|
||||
#: ../../mod/contacts.php:572 ../../mod/directory.php:59
|
||||
#: ../../mod/contacts.php:570 ../../mod/directory.php:59
|
||||
#: ../../include/contact_widgets.php:33
|
||||
msgid "Find"
|
||||
msgstr "Finde"
|
||||
|
|
@ -1734,11 +1926,11 @@ msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
|
|||
#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107
|
||||
#: ../../mod/register.php:90 ../../mod/register.php:144
|
||||
#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752
|
||||
#: ../../addon/facebook/facebook.php:692
|
||||
#: ../../addon/facebook/facebook.php:1182
|
||||
#: ../../addon/facebook/facebook.php:702
|
||||
#: ../../addon/facebook/facebook.php:1200
|
||||
#: ../../addon/public_server/public_server.php:62
|
||||
#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:2792
|
||||
#: ../../boot.php:703
|
||||
#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3216
|
||||
#: ../../boot.php:792
|
||||
msgid "Administrator"
|
||||
msgstr "Administrator"
|
||||
|
||||
|
|
@ -1748,7 +1940,7 @@ msgid ""
|
|||
"Password reset failed."
|
||||
msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."
|
||||
|
||||
#: ../../mod/lostpass.php:83 ../../boot.php:835
|
||||
#: ../../mod/lostpass.php:83 ../../boot.php:925
|
||||
msgid "Password Reset"
|
||||
msgstr "Passwort zurücksetzen"
|
||||
|
||||
|
|
@ -1782,535 +1974,540 @@ msgstr "Hast du dein Passwort vergessen?"
|
|||
msgid ""
|
||||
"Enter your email address and submit to have your password reset. Then check "
|
||||
"your email for further instructions."
|
||||
msgstr "Gib deine Email-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet."
|
||||
msgstr "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet."
|
||||
|
||||
#: ../../mod/lostpass.php:121
|
||||
msgid "Nickname or Email: "
|
||||
msgstr "Spitzname oder Email:"
|
||||
msgstr "Spitzname oder E-Mail:"
|
||||
|
||||
#: ../../mod/lostpass.php:122
|
||||
msgid "Reset"
|
||||
msgstr "Zurücksetzen"
|
||||
|
||||
#: ../../mod/settings.php:50 ../../include/nav.php:137
|
||||
#: ../../mod/settings.php:30 ../../include/nav.php:137
|
||||
msgid "Account settings"
|
||||
msgstr "Kontoeinstellungen"
|
||||
|
||||
#: ../../mod/settings.php:55
|
||||
#: ../../mod/settings.php:35
|
||||
msgid "Display settings"
|
||||
msgstr "Anzeige-Einstellungen"
|
||||
|
||||
#: ../../mod/settings.php:61
|
||||
#: ../../mod/settings.php:41
|
||||
msgid "Connector settings"
|
||||
msgstr "Connector-Einstellungen"
|
||||
|
||||
#: ../../mod/settings.php:66
|
||||
#: ../../mod/settings.php:46
|
||||
msgid "Plugin settings"
|
||||
msgstr "Plugin-Einstellungen"
|
||||
|
||||
#: ../../mod/settings.php:71
|
||||
#: ../../mod/settings.php:51
|
||||
msgid "Connected apps"
|
||||
msgstr "Verbundene Programme"
|
||||
|
||||
#: ../../mod/settings.php:76
|
||||
#: ../../mod/settings.php:56
|
||||
msgid "Export personal data"
|
||||
msgstr "Persönliche Daten exportieren"
|
||||
|
||||
#: ../../mod/settings.php:81
|
||||
#: ../../mod/settings.php:61
|
||||
msgid "Remove account"
|
||||
msgstr "Konto löschen"
|
||||
|
||||
#: ../../mod/settings.php:89 ../../mod/admin.php:751 ../../mod/admin.php:956
|
||||
#: ../../addon/dav/layout.fnk.php:116 ../../addon/mathjax/mathjax.php:36
|
||||
#: ../../mod/settings.php:69 ../../mod/admin.php:759 ../../mod/admin.php:964
|
||||
#: ../../addon/dav/layout.fnk.php:225 ../../addon/mathjax/mathjax.php:36
|
||||
#: ../../view/theme/diabook/theme.php:643
|
||||
#: ../../view/theme/diabook/theme.php:773 ../../include/nav.php:137
|
||||
msgid "Settings"
|
||||
msgstr "Einstellungen"
|
||||
|
||||
#: ../../mod/settings.php:133
|
||||
#: ../../mod/settings.php:113
|
||||
msgid "Missing some important data!"
|
||||
msgstr "Wichtige Daten fehlen!"
|
||||
|
||||
#: ../../mod/settings.php:136 ../../mod/settings.php:581
|
||||
#: ../../mod/settings.php:116 ../../mod/settings.php:563
|
||||
msgid "Update"
|
||||
msgstr "Aktualisierungen"
|
||||
|
||||
#: ../../mod/settings.php:241
|
||||
#: ../../mod/settings.php:221
|
||||
msgid "Failed to connect with email account using the settings provided."
|
||||
msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."
|
||||
|
||||
#: ../../mod/settings.php:246
|
||||
#: ../../mod/settings.php:226
|
||||
msgid "Email settings updated."
|
||||
msgstr "EMail Einstellungen bearbeitet."
|
||||
msgstr "E-Mail Einstellungen bearbeitet."
|
||||
|
||||
#: ../../mod/settings.php:305
|
||||
#: ../../mod/settings.php:285
|
||||
msgid "Passwords do not match. Password unchanged."
|
||||
msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
|
||||
|
||||
#: ../../mod/settings.php:310
|
||||
#: ../../mod/settings.php:290
|
||||
msgid "Empty passwords are not allowed. Password unchanged."
|
||||
msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
|
||||
|
||||
#: ../../mod/settings.php:321
|
||||
#: ../../mod/settings.php:301
|
||||
msgid "Password changed."
|
||||
msgstr "Passwort ändern."
|
||||
|
||||
#: ../../mod/settings.php:323
|
||||
#: ../../mod/settings.php:303
|
||||
msgid "Password update failed. Please try again."
|
||||
msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
|
||||
|
||||
#: ../../mod/settings.php:386
|
||||
#: ../../mod/settings.php:368
|
||||
msgid " Please use a shorter name."
|
||||
msgstr " Bitte verwende einen kürzeren Namen."
|
||||
|
||||
#: ../../mod/settings.php:388
|
||||
#: ../../mod/settings.php:370
|
||||
msgid " Name too short."
|
||||
msgstr " Name ist zu kurz."
|
||||
|
||||
#: ../../mod/settings.php:394
|
||||
#: ../../mod/settings.php:376
|
||||
msgid " Not valid email."
|
||||
msgstr " Keine gültige E-Mail."
|
||||
|
||||
#: ../../mod/settings.php:396
|
||||
#: ../../mod/settings.php:378
|
||||
msgid " Cannot change to that email."
|
||||
msgstr "Ändern der E-Mail nicht möglich. "
|
||||
|
||||
#: ../../mod/settings.php:450
|
||||
#: ../../mod/settings.php:432
|
||||
msgid "Private forum has no privacy permissions. Using default privacy group."
|
||||
msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt."
|
||||
|
||||
#: ../../mod/settings.php:454
|
||||
#: ../../mod/settings.php:436
|
||||
msgid "Private forum has no privacy permissions and no default privacy group."
|
||||
msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte."
|
||||
|
||||
#: ../../mod/settings.php:484 ../../addon/facebook/facebook.php:492
|
||||
#: ../../mod/settings.php:466 ../../addon/facebook/facebook.php:495
|
||||
#: ../../addon/impressum/impressum.php:77
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:80
|
||||
#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105
|
||||
#: ../../addon/twitter/twitter.php:376
|
||||
#: ../../addon/twitter/twitter.php:389
|
||||
msgid "Settings updated."
|
||||
msgstr "Einstellungen aktualisiert."
|
||||
|
||||
#: ../../mod/settings.php:554 ../../mod/settings.php:580
|
||||
#: ../../mod/settings.php:616
|
||||
#: ../../mod/settings.php:536 ../../mod/settings.php:562
|
||||
#: ../../mod/settings.php:598
|
||||
msgid "Add application"
|
||||
msgstr "Programm hinzufügen"
|
||||
|
||||
#: ../../mod/settings.php:558 ../../mod/settings.php:584
|
||||
#: ../../addon/statusnet/statusnet.php:555
|
||||
#: ../../mod/settings.php:540 ../../mod/settings.php:566
|
||||
#: ../../addon/statusnet/statusnet.php:570
|
||||
msgid "Consumer Key"
|
||||
msgstr "Consumer Key"
|
||||
|
||||
#: ../../mod/settings.php:559 ../../mod/settings.php:585
|
||||
#: ../../addon/statusnet/statusnet.php:554
|
||||
#: ../../mod/settings.php:541 ../../mod/settings.php:567
|
||||
#: ../../addon/statusnet/statusnet.php:569
|
||||
msgid "Consumer Secret"
|
||||
msgstr "Consumer Secret"
|
||||
|
||||
#: ../../mod/settings.php:560 ../../mod/settings.php:586
|
||||
#: ../../mod/settings.php:542 ../../mod/settings.php:568
|
||||
msgid "Redirect"
|
||||
msgstr "Umleiten"
|
||||
|
||||
#: ../../mod/settings.php:561 ../../mod/settings.php:587
|
||||
#: ../../mod/settings.php:543 ../../mod/settings.php:569
|
||||
msgid "Icon url"
|
||||
msgstr "Icon URL"
|
||||
|
||||
#: ../../mod/settings.php:572
|
||||
#: ../../mod/settings.php:554
|
||||
msgid "You can't edit this application."
|
||||
msgstr "Du kannst dieses Programm nicht bearbeiten."
|
||||
|
||||
#: ../../mod/settings.php:615
|
||||
#: ../../mod/settings.php:597
|
||||
msgid "Connected Apps"
|
||||
msgstr "Verbundene Programme"
|
||||
|
||||
#: ../../mod/settings.php:619
|
||||
#: ../../mod/settings.php:601
|
||||
msgid "Client key starts with"
|
||||
msgstr "Anwenderschlüssel beginnt mit"
|
||||
|
||||
#: ../../mod/settings.php:620
|
||||
#: ../../mod/settings.php:602
|
||||
msgid "No name"
|
||||
msgstr "Kein Name"
|
||||
|
||||
#: ../../mod/settings.php:621
|
||||
#: ../../mod/settings.php:603
|
||||
msgid "Remove authorization"
|
||||
msgstr "Autorisierung entziehen"
|
||||
|
||||
#: ../../mod/settings.php:632
|
||||
#: ../../mod/settings.php:614
|
||||
msgid "No Plugin settings configured"
|
||||
msgstr "Keine Plugin-Einstellungen konfiguriert"
|
||||
|
||||
#: ../../mod/settings.php:640 ../../addon/widgets/widgets.php:123
|
||||
#: ../../mod/settings.php:622 ../../addon/widgets/widgets.php:123
|
||||
msgid "Plugin Settings"
|
||||
msgstr "Plugin-Einstellungen"
|
||||
|
||||
#: ../../mod/settings.php:652 ../../mod/settings.php:653
|
||||
#: ../../mod/settings.php:634 ../../mod/settings.php:635
|
||||
#, php-format
|
||||
msgid "Built-in support for %s connectivity is %s"
|
||||
msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s"
|
||||
|
||||
#: ../../mod/settings.php:652 ../../mod/settings.php:653
|
||||
#: ../../mod/settings.php:634 ../../mod/settings.php:635
|
||||
msgid "enabled"
|
||||
msgstr "eingeschaltet"
|
||||
|
||||
#: ../../mod/settings.php:652 ../../mod/settings.php:653
|
||||
#: ../../mod/settings.php:634 ../../mod/settings.php:635
|
||||
msgid "disabled"
|
||||
msgstr "ausgeschaltet"
|
||||
|
||||
#: ../../mod/settings.php:653
|
||||
#: ../../mod/settings.php:635
|
||||
msgid "StatusNet"
|
||||
msgstr "StatusNet"
|
||||
|
||||
#: ../../mod/settings.php:683
|
||||
#: ../../mod/settings.php:667
|
||||
msgid "Email access is disabled on this site."
|
||||
msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
|
||||
|
||||
#: ../../mod/settings.php:673
|
||||
msgid "Connector Settings"
|
||||
msgstr "Verbindungs-Einstellungen"
|
||||
|
||||
#: ../../mod/settings.php:688
|
||||
#: ../../mod/settings.php:678
|
||||
msgid "Email/Mailbox Setup"
|
||||
msgstr "E-Mail/Postfach-Einstellungen"
|
||||
|
||||
#: ../../mod/settings.php:689
|
||||
#: ../../mod/settings.php:679
|
||||
msgid ""
|
||||
"If you wish to communicate with email contacts using this service "
|
||||
"(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."
|
||||
|
||||
#: ../../mod/settings.php:690
|
||||
#: ../../mod/settings.php:680
|
||||
msgid "Last successful email check:"
|
||||
msgstr "Letzter erfolgreicher Email Check"
|
||||
msgstr "Letzter erfolgreicher E-Mail Check"
|
||||
|
||||
#: ../../mod/settings.php:691
|
||||
msgid "Email access is disabled on this site."
|
||||
msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
|
||||
|
||||
#: ../../mod/settings.php:692
|
||||
#: ../../mod/settings.php:682
|
||||
msgid "IMAP server name:"
|
||||
msgstr "IMAP-Server-Name:"
|
||||
|
||||
#: ../../mod/settings.php:693
|
||||
#: ../../mod/settings.php:683
|
||||
msgid "IMAP port:"
|
||||
msgstr "IMAP-Port:"
|
||||
|
||||
#: ../../mod/settings.php:694
|
||||
#: ../../mod/settings.php:684
|
||||
msgid "Security:"
|
||||
msgstr "Sicherheit:"
|
||||
|
||||
#: ../../mod/settings.php:694 ../../mod/settings.php:699
|
||||
#: ../../mod/settings.php:684 ../../mod/settings.php:689
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:191
|
||||
msgid "None"
|
||||
msgstr "Keine"
|
||||
|
||||
#: ../../mod/settings.php:695
|
||||
#: ../../mod/settings.php:685
|
||||
msgid "Email login name:"
|
||||
msgstr "E-Mail-Login-Name:"
|
||||
|
||||
#: ../../mod/settings.php:696
|
||||
#: ../../mod/settings.php:686
|
||||
msgid "Email password:"
|
||||
msgstr "E-Mail-Passwort:"
|
||||
|
||||
#: ../../mod/settings.php:697
|
||||
#: ../../mod/settings.php:687
|
||||
msgid "Reply-to address:"
|
||||
msgstr "Reply-to Adresse:"
|
||||
|
||||
#: ../../mod/settings.php:698
|
||||
#: ../../mod/settings.php:688
|
||||
msgid "Send public posts to all email contacts:"
|
||||
msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
|
||||
|
||||
#: ../../mod/settings.php:699
|
||||
#: ../../mod/settings.php:689
|
||||
msgid "Action after import:"
|
||||
msgstr "Aktion nach Import:"
|
||||
|
||||
#: ../../mod/settings.php:699
|
||||
#: ../../mod/settings.php:689
|
||||
msgid "Mark as seen"
|
||||
msgstr "Als gelesen markieren"
|
||||
|
||||
#: ../../mod/settings.php:699
|
||||
#: ../../mod/settings.php:689
|
||||
msgid "Move to folder"
|
||||
msgstr "In einen Ordner verschieben"
|
||||
|
||||
#: ../../mod/settings.php:700
|
||||
#: ../../mod/settings.php:690
|
||||
msgid "Move to folder:"
|
||||
msgstr "In diesen Ordner verschieben:"
|
||||
|
||||
#: ../../mod/settings.php:760
|
||||
#: ../../mod/settings.php:750
|
||||
msgid "Display Settings"
|
||||
msgstr "Anzeige-Einstellungen"
|
||||
|
||||
#: ../../mod/settings.php:766
|
||||
#: ../../mod/settings.php:756 ../../mod/settings.php:766
|
||||
msgid "Display Theme:"
|
||||
msgstr "Theme:"
|
||||
|
||||
#: ../../mod/settings.php:767
|
||||
#: ../../mod/settings.php:757
|
||||
msgid "Update browser every xx seconds"
|
||||
msgstr "Browser alle xx Sekunden aktualisieren"
|
||||
|
||||
#: ../../mod/settings.php:767
|
||||
#: ../../mod/settings.php:757
|
||||
msgid "Minimum of 10 seconds, no maximum"
|
||||
msgstr "Minimal 10 Sekunden, kein Maximum"
|
||||
|
||||
#: ../../mod/settings.php:768
|
||||
#: ../../mod/settings.php:758
|
||||
msgid "Number of items to display on the network page:"
|
||||
msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
|
||||
|
||||
#: ../../mod/settings.php:768
|
||||
#: ../../mod/settings.php:758
|
||||
msgid "Maximum of 100 items"
|
||||
msgstr "Maximal 100 Beiträge"
|
||||
|
||||
#: ../../mod/settings.php:769
|
||||
#: ../../mod/settings.php:759
|
||||
msgid "Don't show emoticons"
|
||||
msgstr "Keine Smilies anzeigen"
|
||||
|
||||
#: ../../mod/settings.php:840
|
||||
#: ../../mod/settings.php:835
|
||||
msgid "Normal Account Page"
|
||||
msgstr "Normales Konto"
|
||||
|
||||
#: ../../mod/settings.php:841
|
||||
#: ../../mod/settings.php:836
|
||||
msgid "This account is a normal personal profile"
|
||||
msgstr "Dieses Konto ist ein normales persönliches Profil"
|
||||
|
||||
#: ../../mod/settings.php:844
|
||||
#: ../../mod/settings.php:839
|
||||
msgid "Soapbox Page"
|
||||
msgstr "Marktschreier-Konto"
|
||||
|
||||
#: ../../mod/settings.php:845
|
||||
#: ../../mod/settings.php:840
|
||||
msgid "Automatically approve all connection/friend requests as read-only fans"
|
||||
msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
|
||||
|
||||
#: ../../mod/settings.php:848
|
||||
#: ../../mod/settings.php:843
|
||||
msgid "Community Forum/Celebrity Account"
|
||||
msgstr "Forum/Promi-Konto"
|
||||
|
||||
#: ../../mod/settings.php:849
|
||||
#: ../../mod/settings.php:844
|
||||
msgid ""
|
||||
"Automatically approve all connection/friend requests as read-write fans"
|
||||
msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert"
|
||||
|
||||
#: ../../mod/settings.php:852
|
||||
#: ../../mod/settings.php:847
|
||||
msgid "Automatic Friend Page"
|
||||
msgstr "Automatische Freunde Seite"
|
||||
|
||||
#: ../../mod/settings.php:853
|
||||
#: ../../mod/settings.php:848
|
||||
msgid "Automatically approve all connection/friend requests as friends"
|
||||
msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
|
||||
|
||||
#: ../../mod/settings.php:856
|
||||
#: ../../mod/settings.php:851
|
||||
msgid "Private Forum [Experimental]"
|
||||
msgstr "Privates Forum [Versuchsstadium]"
|
||||
|
||||
#: ../../mod/settings.php:857
|
||||
#: ../../mod/settings.php:852
|
||||
msgid "Private forum - approved members only"
|
||||
msgstr "Privates Forum, nur für Mitglieder"
|
||||
|
||||
#: ../../mod/settings.php:869
|
||||
#: ../../mod/settings.php:864
|
||||
msgid "OpenID:"
|
||||
msgstr "OpenID:"
|
||||
|
||||
#: ../../mod/settings.php:869
|
||||
#: ../../mod/settings.php:864
|
||||
msgid "(Optional) Allow this OpenID to login to this account."
|
||||
msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."
|
||||
|
||||
#: ../../mod/settings.php:879
|
||||
#: ../../mod/settings.php:874
|
||||
msgid "Publish your default profile in your local site directory?"
|
||||
msgstr "Darf dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
|
||||
|
||||
#: ../../mod/settings.php:885
|
||||
#: ../../mod/settings.php:880
|
||||
msgid "Publish your default profile in the global social directory?"
|
||||
msgstr "Darf dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
|
||||
|
||||
#: ../../mod/settings.php:893
|
||||
#: ../../mod/settings.php:888
|
||||
msgid "Hide your contact/friend list from viewers of your default profile?"
|
||||
msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
|
||||
|
||||
#: ../../mod/settings.php:897
|
||||
#: ../../mod/settings.php:892
|
||||
msgid "Hide your profile details from unknown viewers?"
|
||||
msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
|
||||
|
||||
#: ../../mod/settings.php:902
|
||||
#: ../../mod/settings.php:897
|
||||
msgid "Allow friends to post to your profile page?"
|
||||
msgstr "Dürfen deine Kontakte auf deine Pinnwand schreiben?"
|
||||
|
||||
#: ../../mod/settings.php:908
|
||||
#: ../../mod/settings.php:903
|
||||
msgid "Allow friends to tag your posts?"
|
||||
msgstr "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?"
|
||||
|
||||
#: ../../mod/settings.php:914
|
||||
#: ../../mod/settings.php:909
|
||||
msgid "Allow us to suggest you as a potential friend to new members?"
|
||||
msgstr "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
|
||||
|
||||
#: ../../mod/settings.php:920
|
||||
#: ../../mod/settings.php:915
|
||||
msgid "Permit unknown people to send you private mail?"
|
||||
msgstr "Dürfen dir Unbekannte private Nachrichten schicken?"
|
||||
|
||||
#: ../../mod/settings.php:931
|
||||
#: ../../mod/settings.php:923
|
||||
msgid "Profile is <strong>not published</strong>."
|
||||
msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
|
||||
|
||||
#: ../../mod/settings.php:937 ../../mod/profile_photo.php:213
|
||||
#: ../../mod/settings.php:926 ../../mod/profile_photo.php:214
|
||||
msgid "or"
|
||||
msgstr "oder"
|
||||
|
||||
#: ../../mod/settings.php:942
|
||||
#: ../../mod/settings.php:931
|
||||
msgid "Your Identity Address is"
|
||||
msgstr "Die Adresse deines Profils lautet:"
|
||||
|
||||
#: ../../mod/settings.php:953
|
||||
#: ../../mod/settings.php:942
|
||||
msgid "Automatically expire posts after this many days:"
|
||||
msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
|
||||
|
||||
#: ../../mod/settings.php:953
|
||||
#: ../../mod/settings.php:942
|
||||
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."
|
||||
|
||||
#: ../../mod/settings.php:954
|
||||
#: ../../mod/settings.php:943
|
||||
msgid "Advanced expiration settings"
|
||||
msgstr "Erweiterte Verfallseinstellungen"
|
||||
|
||||
#: ../../mod/settings.php:955
|
||||
#: ../../mod/settings.php:944
|
||||
msgid "Advanced Expiration"
|
||||
msgstr "Erweitertes Verfallen"
|
||||
|
||||
#: ../../mod/settings.php:956
|
||||
#: ../../mod/settings.php:945
|
||||
msgid "Expire posts:"
|
||||
msgstr "Beiträge verfallen lassen:"
|
||||
|
||||
#: ../../mod/settings.php:957
|
||||
#: ../../mod/settings.php:946
|
||||
msgid "Expire personal notes:"
|
||||
msgstr "Persönliche Notizen verfallen lassen:"
|
||||
|
||||
#: ../../mod/settings.php:958
|
||||
#: ../../mod/settings.php:947
|
||||
msgid "Expire starred posts:"
|
||||
msgstr "Markierte Beiträge verfallen lassen:"
|
||||
|
||||
#: ../../mod/settings.php:959
|
||||
#: ../../mod/settings.php:948
|
||||
msgid "Expire photos:"
|
||||
msgstr "Fotos verfallen lassen:"
|
||||
|
||||
#: ../../mod/settings.php:960
|
||||
#: ../../mod/settings.php:949
|
||||
msgid "Only expire posts by others:"
|
||||
msgstr "Nur Beiträge anderer verfallen:"
|
||||
|
||||
#: ../../mod/settings.php:967
|
||||
#: ../../mod/settings.php:956
|
||||
msgid "Account Settings"
|
||||
msgstr "Kontoeinstellungen"
|
||||
|
||||
#: ../../mod/settings.php:975
|
||||
#: ../../mod/settings.php:964
|
||||
msgid "Password Settings"
|
||||
msgstr "Passwort-Einstellungen"
|
||||
|
||||
#: ../../mod/settings.php:976
|
||||
#: ../../mod/settings.php:965
|
||||
msgid "New Password:"
|
||||
msgstr "Neues Passwort:"
|
||||
|
||||
#: ../../mod/settings.php:977
|
||||
#: ../../mod/settings.php:966
|
||||
msgid "Confirm:"
|
||||
msgstr "Bestätigen:"
|
||||
|
||||
#: ../../mod/settings.php:977
|
||||
#: ../../mod/settings.php:966
|
||||
msgid "Leave password fields blank unless changing"
|
||||
msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern"
|
||||
|
||||
#: ../../mod/settings.php:981
|
||||
#: ../../mod/settings.php:970
|
||||
msgid "Basic Settings"
|
||||
msgstr "Grundeinstellungen"
|
||||
|
||||
#: ../../mod/settings.php:982 ../../include/profile_advanced.php:15
|
||||
#: ../../mod/settings.php:971 ../../include/profile_advanced.php:15
|
||||
msgid "Full Name:"
|
||||
msgstr "Kompletter Name:"
|
||||
|
||||
#: ../../mod/settings.php:983
|
||||
#: ../../mod/settings.php:972
|
||||
msgid "Email Address:"
|
||||
msgstr "E-Mail-Adresse:"
|
||||
|
||||
#: ../../mod/settings.php:984
|
||||
#: ../../mod/settings.php:973
|
||||
msgid "Your Timezone:"
|
||||
msgstr "Deine Zeitzone:"
|
||||
|
||||
#: ../../mod/settings.php:985
|
||||
#: ../../mod/settings.php:974
|
||||
msgid "Default Post Location:"
|
||||
msgstr "Standardstandort:"
|
||||
|
||||
#: ../../mod/settings.php:986
|
||||
#: ../../mod/settings.php:975
|
||||
msgid "Use Browser Location:"
|
||||
msgstr "Standort des Browsers verwenden:"
|
||||
|
||||
#: ../../mod/settings.php:989
|
||||
#: ../../mod/settings.php:978
|
||||
msgid "Security and Privacy Settings"
|
||||
msgstr "Sicherheits- und Privatsphäre-Einstellungen"
|
||||
|
||||
#: ../../mod/settings.php:991
|
||||
#: ../../mod/settings.php:980
|
||||
msgid "Maximum Friend Requests/Day:"
|
||||
msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:"
|
||||
|
||||
#: ../../mod/settings.php:991 ../../mod/settings.php:1010
|
||||
#: ../../mod/settings.php:980 ../../mod/settings.php:999
|
||||
msgid "(to prevent spam abuse)"
|
||||
msgstr "(um SPAM zu vermeiden)"
|
||||
|
||||
#: ../../mod/settings.php:992
|
||||
#: ../../mod/settings.php:981
|
||||
msgid "Default Post Permissions"
|
||||
msgstr "Standard-Zugriffsrechte für Beiträge"
|
||||
|
||||
#: ../../mod/settings.php:993
|
||||
#: ../../mod/settings.php:982
|
||||
msgid "(click to open/close)"
|
||||
msgstr "(klicke zum öffnen/schließen)"
|
||||
|
||||
#: ../../mod/settings.php:1010
|
||||
#: ../../mod/settings.php:999
|
||||
msgid "Maximum private messages per day from unknown people:"
|
||||
msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
|
||||
|
||||
#: ../../mod/settings.php:1013
|
||||
#: ../../mod/settings.php:1002
|
||||
msgid "Notification Settings"
|
||||
msgstr "Benachrichtigungseinstellungen"
|
||||
|
||||
#: ../../mod/settings.php:1014
|
||||
#: ../../mod/settings.php:1003
|
||||
msgid "By default post a status message when:"
|
||||
msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
|
||||
|
||||
#: ../../mod/settings.php:1015
|
||||
#: ../../mod/settings.php:1004
|
||||
msgid "accepting a friend request"
|
||||
msgstr "– du eine Kontaktanfrage akzeptierst"
|
||||
|
||||
#: ../../mod/settings.php:1016
|
||||
#: ../../mod/settings.php:1005
|
||||
msgid "joining a forum/community"
|
||||
msgstr "– du einem Forum/einer Gemeinschaftsseite beitrittst"
|
||||
|
||||
#: ../../mod/settings.php:1017
|
||||
#: ../../mod/settings.php:1006
|
||||
msgid "making an <em>interesting</em> profile change"
|
||||
msgstr "– du eine <em>interessante</em> Änderung an deinem Profil durchführst"
|
||||
|
||||
#: ../../mod/settings.php:1018
|
||||
#: ../../mod/settings.php:1007
|
||||
msgid "Send a notification email when:"
|
||||
msgstr "Benachrichtigungs-E-Mail senden wenn:"
|
||||
|
||||
#: ../../mod/settings.php:1019
|
||||
#: ../../mod/settings.php:1008
|
||||
msgid "You receive an introduction"
|
||||
msgstr "– du eine Kontaktanfrage erhältst"
|
||||
|
||||
#: ../../mod/settings.php:1020
|
||||
#: ../../mod/settings.php:1009
|
||||
msgid "Your introductions are confirmed"
|
||||
msgstr "– eine deiner Kontaktanfragen akzeptiert wurde"
|
||||
|
||||
#: ../../mod/settings.php:1021
|
||||
#: ../../mod/settings.php:1010
|
||||
msgid "Someone writes on your profile wall"
|
||||
msgstr "– jemand etwas auf deine Pinnwand schreibt"
|
||||
|
||||
#: ../../mod/settings.php:1022
|
||||
#: ../../mod/settings.php:1011
|
||||
msgid "Someone writes a followup comment"
|
||||
msgstr "– jemand auch einen Kommentar verfasst"
|
||||
|
||||
#: ../../mod/settings.php:1023
|
||||
#: ../../mod/settings.php:1012
|
||||
msgid "You receive a private message"
|
||||
msgstr "– du eine private Nachricht erhältst"
|
||||
|
||||
#: ../../mod/settings.php:1024
|
||||
#: ../../mod/settings.php:1013
|
||||
msgid "You receive a friend suggestion"
|
||||
msgstr "– du eine Empfehlung erhältst"
|
||||
|
||||
#: ../../mod/settings.php:1025
|
||||
#: ../../mod/settings.php:1014
|
||||
msgid "You are tagged in a post"
|
||||
msgstr "– du in einem Beitrag erwähnt wirst"
|
||||
|
||||
#: ../../mod/settings.php:1028
|
||||
#: ../../mod/settings.php:1015
|
||||
msgid "You are poked/prodded/etc. in a post"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1018
|
||||
msgid "Advanced Account/Page Type Settings"
|
||||
msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
|
||||
|
||||
#: ../../mod/settings.php:1029
|
||||
#: ../../mod/settings.php:1019
|
||||
msgid "Change the behaviour of this account for special situations"
|
||||
msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
|
||||
|
||||
|
|
@ -2362,7 +2559,7 @@ msgstr "Nach Beitragsdatum sortieren"
|
|||
|
||||
#: ../../mod/network.php:303
|
||||
msgid "Posts that mention or involve you"
|
||||
msgstr "Beiträge, in denen es um Dich geht"
|
||||
msgstr "Beiträge, in denen es um dich geht"
|
||||
|
||||
#: ../../mod/network.php:306
|
||||
msgid "New"
|
||||
|
|
@ -2400,18 +2597,6 @@ msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerke
|
|||
msgid "Private messages to this group are at risk of public disclosure."
|
||||
msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."
|
||||
|
||||
#: ../../mod/network.php:436
|
||||
msgid "No such group"
|
||||
msgstr "Es gibt keine solche Gruppe"
|
||||
|
||||
#: ../../mod/network.php:447
|
||||
msgid "Group is empty"
|
||||
msgstr "Gruppe ist leer"
|
||||
|
||||
#: ../../mod/network.php:451
|
||||
msgid "Group: "
|
||||
msgstr "Gruppe: "
|
||||
|
||||
#: ../../mod/network.php:461
|
||||
msgid "Contact: "
|
||||
msgstr "Kontakt: "
|
||||
|
|
@ -2424,14 +2609,15 @@ msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gela
|
|||
msgid "Invalid contact."
|
||||
msgstr "Ungültiger Kontakt."
|
||||
|
||||
#: ../../mod/notes.php:44 ../../boot.php:1535
|
||||
#: ../../mod/notes.php:44 ../../boot.php:1654
|
||||
msgid "Personal Notes"
|
||||
msgstr "Persönliche Notizen"
|
||||
|
||||
#: ../../mod/notes.php:63 ../../mod/filer.php:30
|
||||
#: ../../addon/facebook/facebook.php:760
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:185
|
||||
#: ../../addon/dav/layout.fnk.php:384 ../../include/text.php:652
|
||||
#: ../../addon/facebook/facebook.php:770
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:263
|
||||
#: ../../addon/dav/layout.fnk.php:441 ../../addon/dav/layout.fnk.php:488
|
||||
#: ../../include/text.php:681
|
||||
msgid "Save"
|
||||
msgstr "Speichern"
|
||||
|
||||
|
|
@ -2440,7 +2626,7 @@ msgstr "Speichern"
|
|||
msgid "Number of daily wall messages for %s exceeded. Message failed."
|
||||
msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."
|
||||
|
||||
#: ../../mod/wallmessage.php:56 ../../mod/message.php:66
|
||||
#: ../../mod/wallmessage.php:56 ../../mod/message.php:59
|
||||
msgid "No recipient selected."
|
||||
msgstr "Kein Empfänger gewählt."
|
||||
|
||||
|
|
@ -2448,15 +2634,15 @@ msgstr "Kein Empfänger gewählt."
|
|||
msgid "Unable to check your home location."
|
||||
msgstr "Konnte deinen Heimatort nicht bestimmen."
|
||||
|
||||
#: ../../mod/wallmessage.php:62 ../../mod/message.php:73
|
||||
#: ../../mod/wallmessage.php:62 ../../mod/message.php:66
|
||||
msgid "Message could not be sent."
|
||||
msgstr "Nachricht konnte nicht gesendet werden."
|
||||
|
||||
#: ../../mod/wallmessage.php:65 ../../mod/message.php:76
|
||||
#: ../../mod/wallmessage.php:65 ../../mod/message.php:69
|
||||
msgid "Message collection failure."
|
||||
msgstr "Konnte Nachrichten nicht abrufen."
|
||||
|
||||
#: ../../mod/wallmessage.php:68 ../../mod/message.php:79
|
||||
#: ../../mod/wallmessage.php:68 ../../mod/message.php:72
|
||||
msgid "Message sent."
|
||||
msgstr "Nachricht gesendet."
|
||||
|
||||
|
|
@ -2464,34 +2650,35 @@ msgstr "Nachricht gesendet."
|
|||
msgid "No recipient."
|
||||
msgstr "Kein Empfänger."
|
||||
|
||||
#: ../../mod/wallmessage.php:124 ../../mod/message.php:172
|
||||
#: ../../include/conversation.php:943
|
||||
#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131
|
||||
#: ../../mod/message.php:242 ../../mod/message.php:250
|
||||
#: ../../include/conversation.php:1076 ../../include/conversation.php:1093
|
||||
msgid "Please enter a link URL:"
|
||||
msgstr "Bitte gib die URL des Links ein:"
|
||||
|
||||
#: ../../mod/wallmessage.php:131 ../../mod/message.php:200
|
||||
#: ../../mod/wallmessage.php:138 ../../mod/message.php:278
|
||||
msgid "Send Private Message"
|
||||
msgstr "Private Nachricht senden"
|
||||
|
||||
#: ../../mod/wallmessage.php:132
|
||||
#: ../../mod/wallmessage.php:139
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you wish for %s to respond, please check that the privacy settings on "
|
||||
"your site allow private mail from unknown senders."
|
||||
msgstr "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."
|
||||
|
||||
#: ../../mod/wallmessage.php:133 ../../mod/message.php:201
|
||||
#: ../../mod/message.php:399
|
||||
#: ../../mod/wallmessage.php:140 ../../mod/message.php:279
|
||||
#: ../../mod/message.php:467
|
||||
msgid "To:"
|
||||
msgstr "An:"
|
||||
|
||||
#: ../../mod/wallmessage.php:134 ../../mod/message.php:206
|
||||
#: ../../mod/message.php:401
|
||||
#: ../../mod/wallmessage.php:141 ../../mod/message.php:284
|
||||
#: ../../mod/message.php:469
|
||||
msgid "Subject:"
|
||||
msgstr "Betreff:"
|
||||
|
||||
#: ../../mod/wallmessage.php:140 ../../mod/message.php:210
|
||||
#: ../../mod/message.php:404 ../../mod/invite.php:113
|
||||
#: ../../mod/wallmessage.php:147 ../../mod/message.php:288
|
||||
#: ../../mod/message.php:472 ../../mod/invite.php:113
|
||||
msgid "Your message:"
|
||||
msgstr "Deine Nachricht:"
|
||||
|
||||
|
|
@ -2509,7 +2696,7 @@ msgid ""
|
|||
"enjoyable. Click any item to visit the relevant page. A link to this page "
|
||||
"will be visible from your home page for two weeks after your initial "
|
||||
"registration and then will quietly disappear."
|
||||
msgstr "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."
|
||||
msgstr "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."
|
||||
|
||||
#: ../../mod/newmember.php:16
|
||||
msgid ""
|
||||
|
|
@ -2523,7 +2710,7 @@ msgid ""
|
|||
"On your <em>Settings</em> page - change your initial password. Also make a "
|
||||
"note of your Identity Address. This looks just like an email address - and "
|
||||
"will be useful in making friends on the free social web."
|
||||
msgstr "Ändere bitte unter <em>Einstellungen</em> Dein Passwort. Außerdem merke Dir Deine Indentifikations-Adresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."
|
||||
msgstr "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."
|
||||
|
||||
#: ../../mod/newmember.php:20
|
||||
msgid ""
|
||||
|
|
@ -2531,7 +2718,7 @@ msgid ""
|
|||
" directory listing is like having an unlisted phone number. In general, you "
|
||||
"should probably publish your listing - unless all of your friends and "
|
||||
"potential friends know exactly how to find you."
|
||||
msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können."
|
||||
msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können."
|
||||
|
||||
#: ../../mod/newmember.php:22
|
||||
msgid ""
|
||||
|
|
@ -2633,7 +2820,7 @@ msgstr "Gruppe nicht gefunden."
|
|||
msgid "Group name changed."
|
||||
msgstr "Gruppenname geändert."
|
||||
|
||||
#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:298
|
||||
#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:314
|
||||
msgid "Permission denied"
|
||||
msgstr "Zugriff verweigert"
|
||||
|
||||
|
|
@ -2674,8 +2861,8 @@ msgid "Profile Visibility Editor"
|
|||
msgstr "Editor für die Profil-Sichtbarkeit"
|
||||
|
||||
#: ../../mod/profperm.php:103 ../../view/theme/diabook/theme.php:128
|
||||
#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:79
|
||||
#: ../../include/nav.php:50 ../../boot.php:1514
|
||||
#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
|
||||
#: ../../include/nav.php:50 ../../boot.php:1630
|
||||
msgid "Profile"
|
||||
msgstr "Profil"
|
||||
|
||||
|
|
@ -2691,7 +2878,7 @@ msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
|
|||
msgid "No contacts."
|
||||
msgstr "Keine Kontakte."
|
||||
|
||||
#: ../../mod/viewcontacts.php:76 ../../include/text.php:589
|
||||
#: ../../mod/viewcontacts.php:76 ../../include/text.php:618
|
||||
msgid "View Contacts"
|
||||
msgstr "Kontakte anzeigen"
|
||||
|
||||
|
|
@ -2756,7 +2943,7 @@ msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung mögli
|
|||
msgid "Your invitation ID: "
|
||||
msgstr "ID deiner Einladung: "
|
||||
|
||||
#: ../../mod/register.php:255 ../../mod/admin.php:421
|
||||
#: ../../mod/register.php:255 ../../mod/admin.php:425
|
||||
msgid "Registration"
|
||||
msgstr "Registrierung"
|
||||
|
||||
|
|
@ -2779,41 +2966,41 @@ msgstr "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstab
|
|||
msgid "Choose a nickname: "
|
||||
msgstr "Spitznamen wählen: "
|
||||
|
||||
#: ../../mod/register.php:269 ../../include/nav.php:81 ../../boot.php:801
|
||||
#: ../../mod/register.php:269 ../../include/nav.php:81 ../../boot.php:891
|
||||
msgid "Register"
|
||||
msgstr "Registrieren"
|
||||
|
||||
#: ../../mod/dirfind.php:26
|
||||
msgid "People Search"
|
||||
msgstr "Personen Suche"
|
||||
msgstr "Personensuche"
|
||||
|
||||
#: ../../mod/like.php:185 ../../mod/like.php:259 ../../mod/tagger.php:70
|
||||
#: ../../addon/facebook/facebook.php:1576
|
||||
#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/tagger.php:70
|
||||
#: ../../addon/facebook/facebook.php:1594
|
||||
#: ../../addon/communityhome/communityhome.php:158
|
||||
#: ../../addon/communityhome/communityhome.php:167
|
||||
#: ../../view/theme/diabook/theme.php:565
|
||||
#: ../../view/theme/diabook/theme.php:574 ../../include/diaspora.php:1709
|
||||
#: ../../include/conversation.php:48 ../../include/conversation.php:57
|
||||
#: ../../include/conversation.php:121 ../../include/conversation.php:130
|
||||
#: ../../view/theme/diabook/theme.php:574 ../../include/diaspora.php:1824
|
||||
#: ../../include/conversation.php:109 ../../include/conversation.php:118
|
||||
#: ../../include/conversation.php:225 ../../include/conversation.php:234
|
||||
msgid "status"
|
||||
msgstr "Status"
|
||||
|
||||
#: ../../mod/like.php:202 ../../addon/facebook/facebook.php:1580
|
||||
#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1598
|
||||
#: ../../addon/communityhome/communityhome.php:172
|
||||
#: ../../view/theme/diabook/theme.php:579 ../../include/diaspora.php:1725
|
||||
#: ../../include/conversation.php:65
|
||||
#: ../../view/theme/diabook/theme.php:579 ../../include/diaspora.php:1840
|
||||
#: ../../include/conversation.php:126
|
||||
#, php-format
|
||||
msgid "%1$s likes %2$s's %3$s"
|
||||
msgstr "%1$s mag %2$ss %3$s"
|
||||
|
||||
#: ../../mod/like.php:204 ../../include/conversation.php:68
|
||||
#: ../../mod/like.php:164 ../../include/conversation.php:129
|
||||
#, php-format
|
||||
msgid "%1$s doesn't like %2$s's %3$s"
|
||||
msgstr "%1$s mag %2$ss %3$s nicht"
|
||||
|
||||
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159
|
||||
#: ../../mod/admin.php:700 ../../mod/admin.php:899 ../../mod/display.php:37
|
||||
#: ../../mod/display.php:142 ../../include/items.php:3234
|
||||
#: ../../mod/admin.php:708 ../../mod/admin.php:907 ../../mod/display.php:29
|
||||
#: ../../mod/display.php:135 ../../include/items.php:3694
|
||||
msgid "Item not found."
|
||||
msgstr "Beitrag nicht gefunden."
|
||||
|
||||
|
|
@ -2822,7 +3009,7 @@ msgid "Access denied."
|
|||
msgstr "Zugriff verweigert."
|
||||
|
||||
#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:130
|
||||
#: ../../include/nav.php:51 ../../boot.php:1520
|
||||
#: ../../include/nav.php:51 ../../boot.php:1637
|
||||
msgid "Photos"
|
||||
msgstr "Bilder"
|
||||
|
||||
|
|
@ -2843,43 +3030,43 @@ msgstr "Registrierung für %s wurde zurückgezogen"
|
|||
msgid "Please login."
|
||||
msgstr "Bitte melde dich an."
|
||||
|
||||
#: ../../mod/item.php:89
|
||||
#: ../../mod/item.php:91
|
||||
msgid "Unable to locate original post."
|
||||
msgstr "Konnte den Originalbeitrag nicht finden."
|
||||
|
||||
#: ../../mod/item.php:258
|
||||
#: ../../mod/item.php:275
|
||||
msgid "Empty post discarded."
|
||||
msgstr "Leerer Beitrag wurde verworfen."
|
||||
|
||||
#: ../../mod/item.php:379 ../../mod/wall_upload.php:102
|
||||
#: ../../mod/wall_upload.php:111 ../../mod/wall_upload.php:118
|
||||
#: ../../mod/item.php:396 ../../mod/wall_upload.php:122
|
||||
#: ../../mod/wall_upload.php:131 ../../mod/wall_upload.php:138
|
||||
#: ../../include/message.php:144
|
||||
msgid "Wall Photos"
|
||||
msgstr "Pinnwand-Bilder"
|
||||
|
||||
#: ../../mod/item.php:800
|
||||
#: ../../mod/item.php:808
|
||||
msgid "System error. Post not saved."
|
||||
msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
|
||||
|
||||
#: ../../mod/item.php:825
|
||||
#: ../../mod/item.php:833
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This message was sent to you by %s, a member of the Friendica social "
|
||||
"network."
|
||||
msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."
|
||||
|
||||
#: ../../mod/item.php:827
|
||||
#: ../../mod/item.php:835
|
||||
#, php-format
|
||||
msgid "You may visit them online at %s"
|
||||
msgstr "Du kannst sie online unter %s besuchen"
|
||||
|
||||
#: ../../mod/item.php:828
|
||||
#: ../../mod/item.php:836
|
||||
msgid ""
|
||||
"Please contact the sender by replying to this post if you do not wish to "
|
||||
"receive these messages."
|
||||
msgstr "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest."
|
||||
|
||||
#: ../../mod/item.php:830
|
||||
#: ../../mod/item.php:838
|
||||
#, php-format
|
||||
msgid "%s posted an update."
|
||||
msgstr "%s hat ein Update veröffentlicht."
|
||||
|
|
@ -2889,7 +3076,7 @@ msgid "Image uploaded but image cropping failed."
|
|||
msgstr "Bilder hochgeladen, aber das Zuschneiden ist fehlgeschlagen."
|
||||
|
||||
#: ../../mod/profile_photo.php:63 ../../mod/profile_photo.php:70
|
||||
#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:266
|
||||
#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:273
|
||||
#, php-format
|
||||
msgid "Image size reduction [%s] failed."
|
||||
msgstr "Verkleinern der Bildgröße von [%s] ist gescheitert."
|
||||
|
|
@ -2909,39 +3096,39 @@ msgstr "Bild konnte nicht verarbeitet werden"
|
|||
msgid "Image exceeds size limit of %d"
|
||||
msgstr "Bildgröße überschreitet das Limit von %d"
|
||||
|
||||
#: ../../mod/profile_photo.php:209
|
||||
#: ../../mod/profile_photo.php:210
|
||||
msgid "Upload File:"
|
||||
msgstr "Datei hochladen:"
|
||||
|
||||
#: ../../mod/profile_photo.php:210
|
||||
#: ../../mod/profile_photo.php:211
|
||||
msgid "Upload Profile Photo"
|
||||
msgstr "Profilbild hochladen"
|
||||
|
||||
#: ../../mod/profile_photo.php:211
|
||||
#: ../../mod/profile_photo.php:212 ../../addon/dav/layout.fnk.php:152
|
||||
msgid "Upload"
|
||||
msgstr "Hochladen"
|
||||
|
||||
#: ../../mod/profile_photo.php:213
|
||||
#: ../../mod/profile_photo.php:214
|
||||
msgid "skip this step"
|
||||
msgstr "diesen Schritt überspringen"
|
||||
|
||||
#: ../../mod/profile_photo.php:213
|
||||
#: ../../mod/profile_photo.php:214
|
||||
msgid "select a photo from your photo albums"
|
||||
msgstr "wähle ein Foto von deinen Fotoalben"
|
||||
|
||||
#: ../../mod/profile_photo.php:226
|
||||
#: ../../mod/profile_photo.php:227
|
||||
msgid "Crop Image"
|
||||
msgstr "Bild zurechtschneiden"
|
||||
|
||||
#: ../../mod/profile_photo.php:227
|
||||
#: ../../mod/profile_photo.php:228
|
||||
msgid "Please adjust the image cropping for optimum viewing."
|
||||
msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
|
||||
|
||||
#: ../../mod/profile_photo.php:229
|
||||
#: ../../mod/profile_photo.php:230
|
||||
msgid "Done Editing"
|
||||
msgstr "Bearbeitung abgeschlossen"
|
||||
|
||||
#: ../../mod/profile_photo.php:257
|
||||
#: ../../mod/profile_photo.php:264
|
||||
msgid "Image uploaded successfully."
|
||||
msgstr "Bild erfolgreich auf den Server geladen."
|
||||
|
||||
|
|
@ -2967,67 +3154,67 @@ msgstr "Bitte gib dein Passwort zur Verifikation ein:"
|
|||
msgid "New Message"
|
||||
msgstr "Neue Nachricht"
|
||||
|
||||
#: ../../mod/message.php:70
|
||||
#: ../../mod/message.php:63
|
||||
msgid "Unable to locate contact information."
|
||||
msgstr "Konnte die Kontaktinformationen nicht finden."
|
||||
|
||||
#: ../../mod/message.php:120
|
||||
#: ../../mod/message.php:191
|
||||
msgid "Message deleted."
|
||||
msgstr "Nachricht gelöscht."
|
||||
|
||||
#: ../../mod/message.php:150
|
||||
#: ../../mod/message.php:221
|
||||
msgid "Conversation removed."
|
||||
msgstr "Unterhaltung gelöscht."
|
||||
|
||||
#: ../../mod/message.php:247
|
||||
#: ../../mod/message.php:327
|
||||
msgid "No messages."
|
||||
msgstr "Keine Nachrichten."
|
||||
|
||||
#: ../../mod/message.php:254
|
||||
#: ../../mod/message.php:334
|
||||
#, php-format
|
||||
msgid "Unknown sender - %s"
|
||||
msgstr "'Unbekannter Absender - %s"
|
||||
|
||||
#: ../../mod/message.php:257
|
||||
#: ../../mod/message.php:337
|
||||
#, php-format
|
||||
msgid "You and %s"
|
||||
msgstr "Du und %s"
|
||||
|
||||
#: ../../mod/message.php:260
|
||||
#: ../../mod/message.php:340
|
||||
#, php-format
|
||||
msgid "%s and You"
|
||||
msgstr "%s und Du"
|
||||
msgstr "%s und du"
|
||||
|
||||
#: ../../mod/message.php:270 ../../mod/message.php:392
|
||||
#: ../../mod/message.php:350 ../../mod/message.php:460
|
||||
msgid "Delete conversation"
|
||||
msgstr "Unterhaltung löschen"
|
||||
|
||||
#: ../../mod/message.php:273
|
||||
#: ../../mod/message.php:353
|
||||
msgid "D, d M Y - g:i A"
|
||||
msgstr "D, d. M Y - g:i A"
|
||||
|
||||
#: ../../mod/message.php:275
|
||||
#: ../../mod/message.php:355
|
||||
#, php-format
|
||||
msgid "%d message"
|
||||
msgid_plural "%d messages"
|
||||
msgstr[0] "%d Nachricht"
|
||||
msgstr[1] "%d Nachrichten"
|
||||
|
||||
#: ../../mod/message.php:310
|
||||
#: ../../mod/message.php:390
|
||||
msgid "Message not available."
|
||||
msgstr "Nachricht nicht verfügbar."
|
||||
|
||||
#: ../../mod/message.php:375
|
||||
#: ../../mod/message.php:443
|
||||
msgid "Delete message"
|
||||
msgstr "Nachricht löschen"
|
||||
|
||||
#: ../../mod/message.php:394
|
||||
#: ../../mod/message.php:462
|
||||
msgid ""
|
||||
"No secure communications available. You <strong>may</strong> be able to "
|
||||
"respond from the sender's profile page."
|
||||
msgstr "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst du auf der Profilseite des Absenders antworten."
|
||||
|
||||
#: ../../mod/message.php:398
|
||||
#: ../../mod/message.php:466
|
||||
msgid "Send Reply"
|
||||
msgstr "Antwort senden"
|
||||
|
||||
|
|
@ -3044,19 +3231,19 @@ msgstr "Keine Freunde zum Anzeigen."
|
|||
msgid "Theme settings updated."
|
||||
msgstr "Themeneinstellungen aktualisiert."
|
||||
|
||||
#: ../../mod/admin.php:96 ../../mod/admin.php:419
|
||||
#: ../../mod/admin.php:96 ../../mod/admin.php:423
|
||||
msgid "Site"
|
||||
msgstr "Seite"
|
||||
|
||||
#: ../../mod/admin.php:97 ../../mod/admin.php:655 ../../mod/admin.php:667
|
||||
#: ../../mod/admin.php:97 ../../mod/admin.php:663 ../../mod/admin.php:675
|
||||
msgid "Users"
|
||||
msgstr "Nutzer"
|
||||
|
||||
#: ../../mod/admin.php:98 ../../mod/admin.php:749 ../../mod/admin.php:791
|
||||
#: ../../mod/admin.php:98 ../../mod/admin.php:757 ../../mod/admin.php:799
|
||||
msgid "Plugins"
|
||||
msgstr "Plugins"
|
||||
|
||||
#: ../../mod/admin.php:99 ../../mod/admin.php:954 ../../mod/admin.php:990
|
||||
#: ../../mod/admin.php:99 ../../mod/admin.php:962 ../../mod/admin.php:998
|
||||
msgid "Themes"
|
||||
msgstr "Themen"
|
||||
|
||||
|
|
@ -3064,7 +3251,7 @@ msgstr "Themen"
|
|||
msgid "DB updates"
|
||||
msgstr "DB Updates"
|
||||
|
||||
#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1077
|
||||
#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1085
|
||||
msgid "Logs"
|
||||
msgstr "Protokolle"
|
||||
|
||||
|
|
@ -3080,561 +3267,577 @@ msgstr "Plugin Features"
|
|||
msgid "User registrations waiting for confirmation"
|
||||
msgstr "Nutzeranmeldungen die auf Bestätigung warten"
|
||||
|
||||
#: ../../mod/admin.php:183 ../../mod/admin.php:637
|
||||
#: ../../mod/admin.php:183 ../../mod/admin.php:645
|
||||
msgid "Normal Account"
|
||||
msgstr "Normales Konto"
|
||||
|
||||
#: ../../mod/admin.php:184 ../../mod/admin.php:638
|
||||
#: ../../mod/admin.php:184 ../../mod/admin.php:646
|
||||
msgid "Soapbox Account"
|
||||
msgstr "Marktschreier-Konto"
|
||||
|
||||
#: ../../mod/admin.php:185 ../../mod/admin.php:639
|
||||
#: ../../mod/admin.php:185 ../../mod/admin.php:647
|
||||
msgid "Community/Celebrity Account"
|
||||
msgstr "Forum/Promi-Konto"
|
||||
|
||||
#: ../../mod/admin.php:186 ../../mod/admin.php:640
|
||||
#: ../../mod/admin.php:186 ../../mod/admin.php:648
|
||||
msgid "Automatic Friend Account"
|
||||
msgstr "Automatisches Freundekonto"
|
||||
|
||||
#: ../../mod/admin.php:205
|
||||
#: ../../mod/admin.php:187
|
||||
msgid "Blog Account"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:188
|
||||
msgid "Private Forum"
|
||||
msgstr "Privates Forum"
|
||||
|
||||
#: ../../mod/admin.php:207
|
||||
msgid "Message queues"
|
||||
msgstr "Nachrichten-Warteschlangen"
|
||||
|
||||
#: ../../mod/admin.php:210 ../../mod/admin.php:418 ../../mod/admin.php:654
|
||||
#: ../../mod/admin.php:748 ../../mod/admin.php:790 ../../mod/admin.php:953
|
||||
#: ../../mod/admin.php:989 ../../mod/admin.php:1076
|
||||
#: ../../mod/admin.php:212 ../../mod/admin.php:422 ../../mod/admin.php:662
|
||||
#: ../../mod/admin.php:756 ../../mod/admin.php:798 ../../mod/admin.php:961
|
||||
#: ../../mod/admin.php:997 ../../mod/admin.php:1084
|
||||
msgid "Administration"
|
||||
msgstr "Administration"
|
||||
|
||||
#: ../../mod/admin.php:211
|
||||
#: ../../mod/admin.php:213
|
||||
msgid "Summary"
|
||||
msgstr "Zusammenfassung"
|
||||
|
||||
#: ../../mod/admin.php:213
|
||||
#: ../../mod/admin.php:215
|
||||
msgid "Registered users"
|
||||
msgstr "Registrierte Nutzer"
|
||||
|
||||
#: ../../mod/admin.php:215
|
||||
#: ../../mod/admin.php:217
|
||||
msgid "Pending registrations"
|
||||
msgstr "Anstehende Anmeldungen"
|
||||
|
||||
#: ../../mod/admin.php:216
|
||||
#: ../../mod/admin.php:218
|
||||
msgid "Version"
|
||||
msgstr "Version"
|
||||
|
||||
#: ../../mod/admin.php:218
|
||||
#: ../../mod/admin.php:220
|
||||
msgid "Active plugins"
|
||||
msgstr "Aktive Plugins"
|
||||
|
||||
#: ../../mod/admin.php:357
|
||||
#: ../../mod/admin.php:361
|
||||
msgid "Site settings updated."
|
||||
msgstr "Seiteneinstellungen aktualisiert."
|
||||
|
||||
#: ../../mod/admin.php:405
|
||||
#: ../../mod/admin.php:409
|
||||
msgid "Closed"
|
||||
msgstr "Geschlossen"
|
||||
|
||||
#: ../../mod/admin.php:406
|
||||
#: ../../mod/admin.php:410
|
||||
msgid "Requires approval"
|
||||
msgstr "Bedarf der Zustimmung"
|
||||
|
||||
#: ../../mod/admin.php:407
|
||||
#: ../../mod/admin.php:411
|
||||
msgid "Open"
|
||||
msgstr "Offen"
|
||||
|
||||
#: ../../mod/admin.php:411
|
||||
#: ../../mod/admin.php:415
|
||||
msgid "No SSL policy, links will track page SSL state"
|
||||
msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
|
||||
|
||||
#: ../../mod/admin.php:412
|
||||
#: ../../mod/admin.php:416
|
||||
msgid "Force all links to use SSL"
|
||||
msgstr "SSL für alle Links erzwingen"
|
||||
|
||||
#: ../../mod/admin.php:413
|
||||
#: ../../mod/admin.php:417
|
||||
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
|
||||
msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"
|
||||
|
||||
#: ../../mod/admin.php:422
|
||||
#: ../../mod/admin.php:426
|
||||
msgid "File upload"
|
||||
msgstr "Datei hochladen"
|
||||
|
||||
#: ../../mod/admin.php:423
|
||||
#: ../../mod/admin.php:427
|
||||
msgid "Policies"
|
||||
msgstr "Regeln"
|
||||
|
||||
#: ../../mod/admin.php:424
|
||||
#: ../../mod/admin.php:428
|
||||
msgid "Advanced"
|
||||
msgstr "Erweitert"
|
||||
|
||||
#: ../../mod/admin.php:428 ../../addon/statusnet/statusnet.php:552
|
||||
#: ../../mod/admin.php:432 ../../addon/statusnet/statusnet.php:567
|
||||
msgid "Site name"
|
||||
msgstr "Seitenname"
|
||||
|
||||
#: ../../mod/admin.php:429
|
||||
#: ../../mod/admin.php:433
|
||||
msgid "Banner/Logo"
|
||||
msgstr "Banner/Logo"
|
||||
|
||||
#: ../../mod/admin.php:430
|
||||
#: ../../mod/admin.php:434
|
||||
msgid "System language"
|
||||
msgstr "Systemsprache"
|
||||
|
||||
#: ../../mod/admin.php:431
|
||||
#: ../../mod/admin.php:435
|
||||
msgid "System theme"
|
||||
msgstr "Systemweites Thema"
|
||||
|
||||
#: ../../mod/admin.php:431
|
||||
#: ../../mod/admin.php:435
|
||||
msgid ""
|
||||
"Default system theme - may be over-ridden by user profiles - <a href='#' "
|
||||
"id='cnftheme'>change theme settings</a>"
|
||||
msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>"
|
||||
|
||||
#: ../../mod/admin.php:432
|
||||
#: ../../mod/admin.php:436
|
||||
msgid "SSL link policy"
|
||||
msgstr "Regeln für SSL Links"
|
||||
|
||||
#: ../../mod/admin.php:432
|
||||
#: ../../mod/admin.php:436
|
||||
msgid "Determines whether generated links should be forced to use SSL"
|
||||
msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
|
||||
|
||||
#: ../../mod/admin.php:433
|
||||
#: ../../mod/admin.php:437
|
||||
msgid "Maximum image size"
|
||||
msgstr "Maximale Größe von Bildern"
|
||||
|
||||
#: ../../mod/admin.php:433
|
||||
#: ../../mod/admin.php:437
|
||||
msgid ""
|
||||
"Maximum size in bytes of uploaded images. Default is 0, which means no "
|
||||
"limits."
|
||||
msgstr "Maximale Upload-Größe von Bildern in Bytes. Standard ist 0, d.h. ohne Limit."
|
||||
|
||||
#: ../../mod/admin.php:435
|
||||
#: ../../mod/admin.php:439
|
||||
msgid "Register policy"
|
||||
msgstr "Registrierungsmethode"
|
||||
|
||||
#: ../../mod/admin.php:436
|
||||
#: ../../mod/admin.php:440
|
||||
msgid "Register text"
|
||||
msgstr "Registrierungstext"
|
||||
|
||||
#: ../../mod/admin.php:436
|
||||
#: ../../mod/admin.php:440
|
||||
msgid "Will be displayed prominently on the registration page."
|
||||
msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
|
||||
|
||||
#: ../../mod/admin.php:437
|
||||
#: ../../mod/admin.php:441
|
||||
msgid "Accounts abandoned after x days"
|
||||
msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
|
||||
|
||||
#: ../../mod/admin.php:437
|
||||
#: ../../mod/admin.php:441
|
||||
msgid ""
|
||||
"Will not waste system resources polling external sites for abandonded "
|
||||
"accounts. Enter 0 for no time limit."
|
||||
msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit."
|
||||
|
||||
#: ../../mod/admin.php:438
|
||||
#: ../../mod/admin.php:442
|
||||
msgid "Allowed friend domains"
|
||||
msgstr "Erlaubte Domains für Kontakte"
|
||||
|
||||
#: ../../mod/admin.php:438
|
||||
#: ../../mod/admin.php:442
|
||||
msgid ""
|
||||
"Comma separated list of domains which are allowed to establish friendships "
|
||||
"with this site. Wildcards are accepted. Empty to allow any domains"
|
||||
msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
|
||||
|
||||
#: ../../mod/admin.php:439
|
||||
#: ../../mod/admin.php:443
|
||||
msgid "Allowed email domains"
|
||||
msgstr "Erlaubte Domains für Emails"
|
||||
msgstr "Erlaubte Domains für E-Mails"
|
||||
|
||||
#: ../../mod/admin.php:439
|
||||
#: ../../mod/admin.php:443
|
||||
msgid ""
|
||||
"Comma separated list of domains which are allowed in email addresses for "
|
||||
"registrations to this site. Wildcards are accepted. Empty to allow any "
|
||||
"domains"
|
||||
msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
|
||||
|
||||
#: ../../mod/admin.php:440
|
||||
#: ../../mod/admin.php:444
|
||||
msgid "Block public"
|
||||
msgstr "Öffentlichen Zugriff blockieren"
|
||||
|
||||
#: ../../mod/admin.php:440
|
||||
#: ../../mod/admin.php:444
|
||||
msgid ""
|
||||
"Check to block public access to all otherwise public personal pages on this "
|
||||
"site unless you are currently logged in."
|
||||
msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist."
|
||||
|
||||
#: ../../mod/admin.php:441
|
||||
#: ../../mod/admin.php:445
|
||||
msgid "Force publish"
|
||||
msgstr "Erzwinge Veröffentlichung"
|
||||
|
||||
#: ../../mod/admin.php:441
|
||||
#: ../../mod/admin.php:445
|
||||
msgid ""
|
||||
"Check to force all profiles on this site to be listed in the site directory."
|
||||
msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen."
|
||||
|
||||
#: ../../mod/admin.php:442
|
||||
#: ../../mod/admin.php:446
|
||||
msgid "Global directory update URL"
|
||||
msgstr "URL für Updates beim weltweiten Verzeichnis"
|
||||
|
||||
#: ../../mod/admin.php:442
|
||||
#: ../../mod/admin.php:446
|
||||
msgid ""
|
||||
"URL to update the global directory. If this is not set, the global directory"
|
||||
" is completely unavailable to the application."
|
||||
msgstr "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar."
|
||||
|
||||
#: ../../mod/admin.php:444
|
||||
#: ../../mod/admin.php:447
|
||||
msgid "Allow threaded items"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:447
|
||||
msgid "Allow infinite level threading for items on this site."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:449
|
||||
msgid "Block multiple registrations"
|
||||
msgstr "Unterbinde Mehrfachregistrierung"
|
||||
|
||||
#: ../../mod/admin.php:444
|
||||
#: ../../mod/admin.php:449
|
||||
msgid "Disallow users to register additional accounts for use as pages."
|
||||
msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
|
||||
|
||||
#: ../../mod/admin.php:445
|
||||
#: ../../mod/admin.php:450
|
||||
msgid "OpenID support"
|
||||
msgstr "OpenID Unterstützung"
|
||||
|
||||
#: ../../mod/admin.php:445
|
||||
#: ../../mod/admin.php:450
|
||||
msgid "OpenID support for registration and logins."
|
||||
msgstr "OpenID-Unterstützung für Registrierung und Login."
|
||||
|
||||
#: ../../mod/admin.php:446
|
||||
#: ../../mod/admin.php:451
|
||||
msgid "Fullname check"
|
||||
msgstr "Namen auf Vollständigkeit überprüfen"
|
||||
|
||||
#: ../../mod/admin.php:446
|
||||
#: ../../mod/admin.php:451
|
||||
msgid ""
|
||||
"Force users to register with a space between firstname and lastname in Full "
|
||||
"name, as an antispam measure"
|
||||
msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden."
|
||||
|
||||
#: ../../mod/admin.php:447
|
||||
#: ../../mod/admin.php:452
|
||||
msgid "UTF-8 Regular expressions"
|
||||
msgstr "UTF-8 Reguläre Ausdrücke"
|
||||
|
||||
#: ../../mod/admin.php:447
|
||||
#: ../../mod/admin.php:452
|
||||
msgid "Use PHP UTF8 regular expressions"
|
||||
msgstr "PHP UTF8 Ausdrücke verwenden"
|
||||
|
||||
#: ../../mod/admin.php:448
|
||||
#: ../../mod/admin.php:453
|
||||
msgid "Show Community Page"
|
||||
msgstr "Gemeinschaftsseite anzeigen"
|
||||
|
||||
#: ../../mod/admin.php:448
|
||||
#: ../../mod/admin.php:453
|
||||
msgid ""
|
||||
"Display a Community page showing all recent public postings on this site."
|
||||
msgstr "Zeige die Gemeinschaftsseite mit allen öffentlichen Beiträgen auf diesem Server."
|
||||
|
||||
#: ../../mod/admin.php:449
|
||||
#: ../../mod/admin.php:454
|
||||
msgid "Enable OStatus support"
|
||||
msgstr "OStatus Unterstützung aktivieren"
|
||||
|
||||
#: ../../mod/admin.php:449
|
||||
#: ../../mod/admin.php:454
|
||||
msgid ""
|
||||
"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
|
||||
"communications in OStatus are public, so privacy warnings will be "
|
||||
"occasionally displayed."
|
||||
msgstr "Biete die eingebaute OStatus (identi.ca, status.net, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, so Privatsphäre Warnungen werden bei Bedarf angezeigt."
|
||||
|
||||
#: ../../mod/admin.php:450
|
||||
#: ../../mod/admin.php:455
|
||||
msgid "Enable Diaspora support"
|
||||
msgstr "Diaspora-Support aktivieren"
|
||||
|
||||
#: ../../mod/admin.php:450
|
||||
#: ../../mod/admin.php:455
|
||||
msgid "Provide built-in Diaspora network compatibility."
|
||||
msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
|
||||
|
||||
#: ../../mod/admin.php:451
|
||||
#: ../../mod/admin.php:456
|
||||
msgid "Only allow Friendica contacts"
|
||||
msgstr "Nur Friendica-Kontakte erlauben"
|
||||
|
||||
#: ../../mod/admin.php:451
|
||||
#: ../../mod/admin.php:456
|
||||
msgid ""
|
||||
"All contacts must use Friendica protocols. All other built-in communication "
|
||||
"protocols disabled."
|
||||
msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert."
|
||||
|
||||
#: ../../mod/admin.php:452
|
||||
#: ../../mod/admin.php:457
|
||||
msgid "Verify SSL"
|
||||
msgstr "SSL Überprüfen"
|
||||
|
||||
#: ../../mod/admin.php:452
|
||||
#: ../../mod/admin.php:457
|
||||
msgid ""
|
||||
"If you wish, you can turn on strict certificate checking. This will mean you"
|
||||
" cannot connect (at all) to self-signed SSL sites."
|
||||
msgstr "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann."
|
||||
|
||||
#: ../../mod/admin.php:453
|
||||
#: ../../mod/admin.php:458
|
||||
msgid "Proxy user"
|
||||
msgstr "Proxy Nutzer"
|
||||
|
||||
#: ../../mod/admin.php:454
|
||||
#: ../../mod/admin.php:459
|
||||
msgid "Proxy URL"
|
||||
msgstr "Proxy URL"
|
||||
|
||||
#: ../../mod/admin.php:455
|
||||
#: ../../mod/admin.php:460
|
||||
msgid "Network timeout"
|
||||
msgstr "Netzwerk Wartezeit"
|
||||
|
||||
#: ../../mod/admin.php:455
|
||||
#: ../../mod/admin.php:460
|
||||
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
|
||||
msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)."
|
||||
|
||||
#: ../../mod/admin.php:456
|
||||
#: ../../mod/admin.php:461
|
||||
msgid "Delivery interval"
|
||||
msgstr "Zustellungsintervall"
|
||||
|
||||
#: ../../mod/admin.php:456
|
||||
#: ../../mod/admin.php:461
|
||||
msgid ""
|
||||
"Delay background delivery processes by this many seconds to reduce system "
|
||||
"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
|
||||
"for large dedicated servers."
|
||||
msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."
|
||||
|
||||
#: ../../mod/admin.php:457
|
||||
#: ../../mod/admin.php:462
|
||||
msgid "Poll interval"
|
||||
msgstr "Abfrageintervall"
|
||||
|
||||
#: ../../mod/admin.php:457
|
||||
#: ../../mod/admin.php:462
|
||||
msgid ""
|
||||
"Delay background polling processes by this many seconds to reduce system "
|
||||
"load. If 0, use delivery interval."
|
||||
msgstr "Verzögere Hintergrundprozesse, um diese Anzahl an Sekunden um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet."
|
||||
|
||||
#: ../../mod/admin.php:458
|
||||
#: ../../mod/admin.php:463
|
||||
msgid "Maximum Load Average"
|
||||
msgstr "Maximum Load Average"
|
||||
|
||||
#: ../../mod/admin.php:458
|
||||
#: ../../mod/admin.php:463
|
||||
msgid ""
|
||||
"Maximum system load before delivery and poll processes are deferred - "
|
||||
"default 50."
|
||||
msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
|
||||
|
||||
#: ../../mod/admin.php:472
|
||||
#: ../../mod/admin.php:480
|
||||
msgid "Update has been marked successful"
|
||||
msgstr "Update wurde als erfolgreich markiert"
|
||||
|
||||
#: ../../mod/admin.php:482
|
||||
#: ../../mod/admin.php:490
|
||||
#, php-format
|
||||
msgid "Executing %s failed. Check system logs."
|
||||
msgstr "Ausführung von %s schlug fehl. Systemprotokolle prüfen."
|
||||
|
||||
#: ../../mod/admin.php:485
|
||||
#: ../../mod/admin.php:493
|
||||
#, php-format
|
||||
msgid "Update %s was successfully applied."
|
||||
msgstr "Update %s war erfolgreich."
|
||||
|
||||
#: ../../mod/admin.php:489
|
||||
#: ../../mod/admin.php:497
|
||||
#, php-format
|
||||
msgid "Update %s did not return a status. Unknown if it succeeded."
|
||||
msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status."
|
||||
|
||||
#: ../../mod/admin.php:492
|
||||
#: ../../mod/admin.php:500
|
||||
#, php-format
|
||||
msgid "Update function %s could not be found."
|
||||
msgstr "Updatefunktion %s konnte nicht gefunden werden."
|
||||
|
||||
#: ../../mod/admin.php:507
|
||||
#: ../../mod/admin.php:515
|
||||
msgid "No failed updates."
|
||||
msgstr "Keine fehlgeschlagenen Updates."
|
||||
|
||||
#: ../../mod/admin.php:511
|
||||
#: ../../mod/admin.php:519
|
||||
msgid "Failed Updates"
|
||||
msgstr "Fehlgeschlagene Updates"
|
||||
|
||||
#: ../../mod/admin.php:512
|
||||
#: ../../mod/admin.php:520
|
||||
msgid ""
|
||||
"This does not include updates prior to 1139, which did not return a status."
|
||||
msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben."
|
||||
|
||||
#: ../../mod/admin.php:513
|
||||
#: ../../mod/admin.php:521
|
||||
msgid "Mark success (if update was manually applied)"
|
||||
msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
|
||||
|
||||
#: ../../mod/admin.php:514
|
||||
#: ../../mod/admin.php:522
|
||||
msgid "Attempt to execute this update step automatically"
|
||||
msgstr "Versuchen, diesen Schritt automatisch auszuführen"
|
||||
|
||||
#: ../../mod/admin.php:539
|
||||
#: ../../mod/admin.php:547
|
||||
#, php-format
|
||||
msgid "%s user blocked/unblocked"
|
||||
msgid_plural "%s users blocked/unblocked"
|
||||
msgstr[0] "%s Benutzer geblockt/freigegeben"
|
||||
msgstr[1] "%s Benutzer geblockt/freigegeben"
|
||||
|
||||
#: ../../mod/admin.php:546
|
||||
#: ../../mod/admin.php:554
|
||||
#, php-format
|
||||
msgid "%s user deleted"
|
||||
msgid_plural "%s users deleted"
|
||||
msgstr[0] "%s Nutzer gelöscht"
|
||||
msgstr[1] "%s Nutzer gelöscht"
|
||||
|
||||
#: ../../mod/admin.php:585
|
||||
#: ../../mod/admin.php:593
|
||||
#, php-format
|
||||
msgid "User '%s' deleted"
|
||||
msgstr "Nutzer '%s' gelöscht"
|
||||
|
||||
#: ../../mod/admin.php:593
|
||||
#: ../../mod/admin.php:601
|
||||
#, php-format
|
||||
msgid "User '%s' unblocked"
|
||||
msgstr "Nutzer '%s' entsperrt"
|
||||
|
||||
#: ../../mod/admin.php:593
|
||||
#: ../../mod/admin.php:601
|
||||
#, php-format
|
||||
msgid "User '%s' blocked"
|
||||
msgstr "Nutzer '%s' gesperrt"
|
||||
|
||||
#: ../../mod/admin.php:657
|
||||
#: ../../mod/admin.php:665
|
||||
msgid "select all"
|
||||
msgstr "Alle auswählen"
|
||||
|
||||
#: ../../mod/admin.php:658
|
||||
#: ../../mod/admin.php:666
|
||||
msgid "User registrations waiting for confirm"
|
||||
msgstr "Neuanmeldungen, die auf deine Bestätigung warten"
|
||||
|
||||
#: ../../mod/admin.php:659
|
||||
#: ../../mod/admin.php:667
|
||||
msgid "Request date"
|
||||
msgstr "Anfragedatum"
|
||||
|
||||
#: ../../mod/admin.php:659 ../../mod/admin.php:668
|
||||
#: ../../mod/admin.php:667 ../../mod/admin.php:676
|
||||
#: ../../include/contact_selectors.php:79
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
msgstr "E-Mail"
|
||||
|
||||
#: ../../mod/admin.php:660
|
||||
#: ../../mod/admin.php:668
|
||||
msgid "No registrations."
|
||||
msgstr "Keine Neuanmeldungen."
|
||||
|
||||
#: ../../mod/admin.php:662
|
||||
#: ../../mod/admin.php:670
|
||||
msgid "Deny"
|
||||
msgstr "Verwehren"
|
||||
|
||||
#: ../../mod/admin.php:668
|
||||
#: ../../mod/admin.php:676
|
||||
msgid "Register date"
|
||||
msgstr "Anmeldedatum"
|
||||
|
||||
#: ../../mod/admin.php:668
|
||||
#: ../../mod/admin.php:676
|
||||
msgid "Last login"
|
||||
msgstr "Letzte Anmeldung"
|
||||
|
||||
#: ../../mod/admin.php:668
|
||||
#: ../../mod/admin.php:676
|
||||
msgid "Last item"
|
||||
msgstr "Letzter Beitrag"
|
||||
|
||||
#: ../../mod/admin.php:668
|
||||
#: ../../mod/admin.php:676
|
||||
msgid "Account"
|
||||
msgstr "Nutzerkonto"
|
||||
|
||||
#: ../../mod/admin.php:670
|
||||
#: ../../mod/admin.php:678
|
||||
msgid ""
|
||||
"Selected users will be deleted!\\n\\nEverything these users had posted on "
|
||||
"this site will be permanently deleted!\\n\\nAre you sure?"
|
||||
msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist du sicher?"
|
||||
|
||||
#: ../../mod/admin.php:671
|
||||
#: ../../mod/admin.php:679
|
||||
msgid ""
|
||||
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
|
||||
"site will be permanently deleted!\\n\\nAre you sure?"
|
||||
msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist du sicher?"
|
||||
|
||||
#: ../../mod/admin.php:712
|
||||
#: ../../mod/admin.php:720
|
||||
#, php-format
|
||||
msgid "Plugin %s disabled."
|
||||
msgstr "Plugin %s deaktiviert."
|
||||
|
||||
#: ../../mod/admin.php:716
|
||||
#: ../../mod/admin.php:724
|
||||
#, php-format
|
||||
msgid "Plugin %s enabled."
|
||||
msgstr "Plugin %s aktiviert."
|
||||
|
||||
#: ../../mod/admin.php:726 ../../mod/admin.php:924
|
||||
#: ../../mod/admin.php:734 ../../mod/admin.php:932
|
||||
msgid "Disable"
|
||||
msgstr "Ausschalten"
|
||||
|
||||
#: ../../mod/admin.php:728 ../../mod/admin.php:926
|
||||
#: ../../mod/admin.php:736 ../../mod/admin.php:934
|
||||
msgid "Enable"
|
||||
msgstr "Einschalten"
|
||||
|
||||
#: ../../mod/admin.php:750 ../../mod/admin.php:955
|
||||
#: ../../mod/admin.php:758 ../../mod/admin.php:963
|
||||
msgid "Toggle"
|
||||
msgstr "Umschalten"
|
||||
|
||||
#: ../../mod/admin.php:758 ../../mod/admin.php:965
|
||||
#: ../../mod/admin.php:766 ../../mod/admin.php:973
|
||||
msgid "Author: "
|
||||
msgstr "Autor:"
|
||||
|
||||
#: ../../mod/admin.php:759 ../../mod/admin.php:966
|
||||
#: ../../mod/admin.php:767 ../../mod/admin.php:974
|
||||
msgid "Maintainer: "
|
||||
msgstr "Betreuer:"
|
||||
|
||||
#: ../../mod/admin.php:888
|
||||
#: ../../mod/admin.php:896
|
||||
msgid "No themes found."
|
||||
msgstr "Keine Themen gefunden."
|
||||
|
||||
#: ../../mod/admin.php:947
|
||||
#: ../../mod/admin.php:955
|
||||
msgid "Screenshot"
|
||||
msgstr "Bildschirmfoto"
|
||||
|
||||
#: ../../mod/admin.php:995
|
||||
#: ../../mod/admin.php:1003
|
||||
msgid "[Experimental]"
|
||||
msgstr "[Experimentell]"
|
||||
|
||||
#: ../../mod/admin.php:996
|
||||
#: ../../mod/admin.php:1004
|
||||
msgid "[Unsupported]"
|
||||
msgstr "[Nicht unterstützt]"
|
||||
|
||||
#: ../../mod/admin.php:1023
|
||||
#: ../../mod/admin.php:1031
|
||||
msgid "Log settings updated."
|
||||
msgstr "Protokolleinstellungen aktualisiert."
|
||||
|
||||
#: ../../mod/admin.php:1079
|
||||
#: ../../mod/admin.php:1087
|
||||
msgid "Clear"
|
||||
msgstr "löschen"
|
||||
|
||||
#: ../../mod/admin.php:1085
|
||||
#: ../../mod/admin.php:1093
|
||||
msgid "Debugging"
|
||||
msgstr "Protokoll führen"
|
||||
|
||||
#: ../../mod/admin.php:1086
|
||||
#: ../../mod/admin.php:1094
|
||||
msgid "Log file"
|
||||
msgstr "Protokolldatei"
|
||||
|
||||
#: ../../mod/admin.php:1086
|
||||
#: ../../mod/admin.php:1094
|
||||
msgid ""
|
||||
"Must be writable by web server. Relative to your Friendica top-level "
|
||||
"directory."
|
||||
msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
|
||||
|
||||
#: ../../mod/admin.php:1087
|
||||
#: ../../mod/admin.php:1095
|
||||
msgid "Log level"
|
||||
msgstr "Protokoll-Level"
|
||||
|
||||
#: ../../mod/admin.php:1137
|
||||
#: ../../mod/admin.php:1145
|
||||
msgid "Close"
|
||||
msgstr "Schließen"
|
||||
|
||||
#: ../../mod/admin.php:1143
|
||||
#: ../../mod/admin.php:1151
|
||||
msgid "FTP Host"
|
||||
msgstr "FTP Host"
|
||||
|
||||
#: ../../mod/admin.php:1144
|
||||
#: ../../mod/admin.php:1152
|
||||
msgid "FTP Path"
|
||||
msgstr "FTP Pfad"
|
||||
|
||||
#: ../../mod/admin.php:1145
|
||||
#: ../../mod/admin.php:1153
|
||||
msgid "FTP User"
|
||||
msgstr "FTP Nutzername"
|
||||
|
||||
#: ../../mod/admin.php:1146
|
||||
#: ../../mod/admin.php:1154
|
||||
msgid "FTP Password"
|
||||
msgstr "FTP Passwort"
|
||||
|
||||
#: ../../mod/profile.php:21 ../../boot.php:966
|
||||
#: ../../mod/profile.php:22 ../../boot.php:1056
|
||||
msgid "Requested profile is not available."
|
||||
msgstr "Das angefragte Profil ist nicht vorhanden."
|
||||
|
||||
#: ../../mod/profile.php:141 ../../mod/display.php:75
|
||||
#: ../../mod/profile.php:142 ../../mod/display.php:67
|
||||
msgid "Access to this profile has been restricted."
|
||||
msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
|
||||
|
||||
#: ../../mod/profile.php:166
|
||||
#: ../../mod/profile.php:167
|
||||
msgid "Tips for New Members"
|
||||
msgstr "Tipps für neue Nutzer"
|
||||
|
||||
|
|
@ -3713,7 +3916,11 @@ msgstr "Gemeinsame Freunde"
|
|||
msgid "No contacts in common."
|
||||
msgstr "Keine gemeinsamen Kontakte."
|
||||
|
||||
#: ../../mod/display.php:135
|
||||
#: ../../mod/share.php:28
|
||||
msgid "link"
|
||||
msgstr "Link"
|
||||
|
||||
#: ../../mod/display.php:128
|
||||
msgid "Item has been removed."
|
||||
msgstr "Eintrag wurde entfernt."
|
||||
|
||||
|
|
@ -3725,13 +3932,13 @@ msgstr "Anwendungen"
|
|||
msgid "No installed applications."
|
||||
msgstr "Keine Applikationen installiert."
|
||||
|
||||
#: ../../mod/search.php:83 ../../include/text.php:649
|
||||
#: ../../include/text.php:650 ../../include/nav.php:91
|
||||
#: ../../mod/search.php:83 ../../include/text.php:678
|
||||
#: ../../include/text.php:679 ../../include/nav.php:91
|
||||
msgid "Search"
|
||||
msgstr "Suche"
|
||||
|
||||
#: ../../mod/profiles.php:21 ../../mod/profiles.php:395
|
||||
#: ../../mod/profiles.php:509 ../../mod/dfrn_confirm.php:62
|
||||
#: ../../mod/profiles.php:21 ../../mod/profiles.php:418
|
||||
#: ../../mod/profiles.php:532 ../../mod/dfrn_confirm.php:62
|
||||
msgid "Profile not found."
|
||||
msgstr "Profil nicht gefunden."
|
||||
|
||||
|
|
@ -3739,289 +3946,306 @@ msgstr "Profil nicht gefunden."
|
|||
msgid "Profile Name is required."
|
||||
msgstr "Profilname ist erforderlich."
|
||||
|
||||
#: ../../mod/profiles.php:152
|
||||
#: ../../mod/profiles.php:155
|
||||
msgid "Marital Status"
|
||||
msgstr "Familienstand"
|
||||
|
||||
#: ../../mod/profiles.php:156
|
||||
#: ../../mod/profiles.php:159
|
||||
msgid "Romantic Partner"
|
||||
msgstr "Romanze"
|
||||
|
||||
#: ../../mod/profiles.php:160
|
||||
#: ../../mod/profiles.php:163
|
||||
msgid "Likes"
|
||||
msgstr "Likes"
|
||||
|
||||
#: ../../mod/profiles.php:167
|
||||
msgid "Dislikes"
|
||||
msgstr "Dislikes"
|
||||
|
||||
#: ../../mod/profiles.php:171
|
||||
msgid "Work/Employment"
|
||||
msgstr "Arbeit / Beschäftigung"
|
||||
|
||||
#: ../../mod/profiles.php:163
|
||||
#: ../../mod/profiles.php:174
|
||||
msgid "Religion"
|
||||
msgstr "Religion"
|
||||
|
||||
#: ../../mod/profiles.php:167
|
||||
#: ../../mod/profiles.php:178
|
||||
msgid "Political Views"
|
||||
msgstr "Politische Ansichten"
|
||||
|
||||
#: ../../mod/profiles.php:171
|
||||
#: ../../mod/profiles.php:182
|
||||
msgid "Gender"
|
||||
msgstr "Geschlecht"
|
||||
|
||||
#: ../../mod/profiles.php:175
|
||||
#: ../../mod/profiles.php:186
|
||||
msgid "Sexual Preference"
|
||||
msgstr "Sexuelle Vorlieben"
|
||||
|
||||
#: ../../mod/profiles.php:179
|
||||
#: ../../mod/profiles.php:190
|
||||
msgid "Homepage"
|
||||
msgstr "Webseite"
|
||||
|
||||
#: ../../mod/profiles.php:183
|
||||
#: ../../mod/profiles.php:194
|
||||
msgid "Interests"
|
||||
msgstr "Interessen"
|
||||
|
||||
#: ../../mod/profiles.php:187
|
||||
#: ../../mod/profiles.php:198
|
||||
msgid "Address"
|
||||
msgstr "Adresse"
|
||||
|
||||
#: ../../mod/profiles.php:194 ../../addon/dav/layout.fnk.php:310
|
||||
#: ../../mod/profiles.php:205 ../../addon/dav/common/wdcal_edit.inc.php:183
|
||||
msgid "Location"
|
||||
msgstr "Wohnort"
|
||||
|
||||
#: ../../mod/profiles.php:273
|
||||
#: ../../mod/profiles.php:288
|
||||
msgid "Profile updated."
|
||||
msgstr "Profil aktualisiert."
|
||||
|
||||
#: ../../mod/profiles.php:340
|
||||
#: ../../mod/profiles.php:355
|
||||
msgid " and "
|
||||
msgstr " und "
|
||||
|
||||
#: ../../mod/profiles.php:348
|
||||
#: ../../mod/profiles.php:363
|
||||
msgid "public profile"
|
||||
msgstr "öffentliches Profil"
|
||||
|
||||
#: ../../mod/profiles.php:351
|
||||
#: ../../mod/profiles.php:366
|
||||
#, php-format
|
||||
msgid "%1$s changed %2$s to “%3$s”"
|
||||
msgstr "%1$s hat %2$s geändert auf “%3$s”"
|
||||
|
||||
#: ../../mod/profiles.php:352
|
||||
#: ../../mod/profiles.php:367
|
||||
#, php-format
|
||||
msgid " - Visit %1$s's %2$s"
|
||||
msgstr " – %1$ss %2$s besuchen"
|
||||
|
||||
#: ../../mod/profiles.php:355
|
||||
#: ../../mod/profiles.php:370
|
||||
#, php-format
|
||||
msgid "%1$s has an updated %2$s, changing %3$s."
|
||||
msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s."
|
||||
|
||||
#: ../../mod/profiles.php:414
|
||||
#: ../../mod/profiles.php:437
|
||||
msgid "Profile deleted."
|
||||
msgstr "Profil gelöscht."
|
||||
|
||||
#: ../../mod/profiles.php:432 ../../mod/profiles.php:466
|
||||
#: ../../mod/profiles.php:455 ../../mod/profiles.php:489
|
||||
msgid "Profile-"
|
||||
msgstr "Profil-"
|
||||
|
||||
#: ../../mod/profiles.php:451 ../../mod/profiles.php:493
|
||||
#: ../../mod/profiles.php:474 ../../mod/profiles.php:516
|
||||
msgid "New profile created."
|
||||
msgstr "Neues Profil angelegt."
|
||||
|
||||
#: ../../mod/profiles.php:472
|
||||
#: ../../mod/profiles.php:495
|
||||
msgid "Profile unavailable to clone."
|
||||
msgstr "Profil nicht zum Duplizieren verfügbar."
|
||||
|
||||
#: ../../mod/profiles.php:530
|
||||
#: ../../mod/profiles.php:557
|
||||
msgid "Hide your contact/friend list from viewers of this profile?"
|
||||
msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
|
||||
|
||||
#: ../../mod/profiles.php:553
|
||||
#: ../../mod/profiles.php:577
|
||||
msgid "Edit Profile Details"
|
||||
msgstr "Profil bearbeiten"
|
||||
|
||||
#: ../../mod/profiles.php:555
|
||||
#: ../../mod/profiles.php:579
|
||||
msgid "View this profile"
|
||||
msgstr "Dieses Profil anzeigen"
|
||||
|
||||
#: ../../mod/profiles.php:556
|
||||
#: ../../mod/profiles.php:580
|
||||
msgid "Create a new profile using these settings"
|
||||
msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
|
||||
|
||||
#: ../../mod/profiles.php:557
|
||||
#: ../../mod/profiles.php:581
|
||||
msgid "Clone this profile"
|
||||
msgstr "Dieses Profil duplizieren"
|
||||
|
||||
#: ../../mod/profiles.php:558
|
||||
#: ../../mod/profiles.php:582
|
||||
msgid "Delete this profile"
|
||||
msgstr "Dieses Profil löschen"
|
||||
|
||||
#: ../../mod/profiles.php:559
|
||||
#: ../../mod/profiles.php:583
|
||||
msgid "Profile Name:"
|
||||
msgstr "Profilname:"
|
||||
|
||||
#: ../../mod/profiles.php:560
|
||||
#: ../../mod/profiles.php:584
|
||||
msgid "Your Full Name:"
|
||||
msgstr "Dein kompletter Name:"
|
||||
|
||||
#: ../../mod/profiles.php:561
|
||||
#: ../../mod/profiles.php:585
|
||||
msgid "Title/Description:"
|
||||
msgstr "Titel/Beschreibung:"
|
||||
|
||||
#: ../../mod/profiles.php:562
|
||||
#: ../../mod/profiles.php:586
|
||||
msgid "Your Gender:"
|
||||
msgstr "Dein Geschlecht:"
|
||||
|
||||
#: ../../mod/profiles.php:563
|
||||
#: ../../mod/profiles.php:587
|
||||
#, php-format
|
||||
msgid "Birthday (%s):"
|
||||
msgstr "Geburtstag (%s):"
|
||||
|
||||
#: ../../mod/profiles.php:564
|
||||
#: ../../mod/profiles.php:588
|
||||
msgid "Street Address:"
|
||||
msgstr "Adresse:"
|
||||
|
||||
#: ../../mod/profiles.php:565
|
||||
#: ../../mod/profiles.php:589
|
||||
msgid "Locality/City:"
|
||||
msgstr "Wohnort:"
|
||||
|
||||
#: ../../mod/profiles.php:566
|
||||
#: ../../mod/profiles.php:590
|
||||
msgid "Postal/Zip Code:"
|
||||
msgstr "Postleitzahl:"
|
||||
|
||||
#: ../../mod/profiles.php:567
|
||||
#: ../../mod/profiles.php:591
|
||||
msgid "Country:"
|
||||
msgstr "Land:"
|
||||
|
||||
#: ../../mod/profiles.php:568
|
||||
#: ../../mod/profiles.php:592
|
||||
msgid "Region/State:"
|
||||
msgstr "Region/Bundesstaat:"
|
||||
|
||||
#: ../../mod/profiles.php:569
|
||||
#: ../../mod/profiles.php:593
|
||||
msgid "<span class=\"heart\">♥</span> Marital Status:"
|
||||
msgstr "<span class=\"heart\">♥</span> Beziehungsstatus:"
|
||||
|
||||
#: ../../mod/profiles.php:570
|
||||
#: ../../mod/profiles.php:594
|
||||
msgid "Who: (if applicable)"
|
||||
msgstr "Wer: (falls anwendbar)"
|
||||
|
||||
#: ../../mod/profiles.php:571
|
||||
#: ../../mod/profiles.php:595
|
||||
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
|
||||
msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
|
||||
|
||||
#: ../../mod/profiles.php:572
|
||||
#: ../../mod/profiles.php:596
|
||||
msgid "Since [date]:"
|
||||
msgstr "Seit [Datum]:"
|
||||
|
||||
#: ../../mod/profiles.php:573 ../../include/profile_advanced.php:46
|
||||
#: ../../mod/profiles.php:597 ../../include/profile_advanced.php:46
|
||||
msgid "Sexual Preference:"
|
||||
msgstr "Sexuelle Vorlieben:"
|
||||
|
||||
#: ../../mod/profiles.php:574
|
||||
#: ../../mod/profiles.php:598
|
||||
msgid "Homepage URL:"
|
||||
msgstr "Adresse der Homepage:"
|
||||
|
||||
#: ../../mod/profiles.php:575 ../../include/profile_advanced.php:50
|
||||
#: ../../mod/profiles.php:599 ../../include/profile_advanced.php:50
|
||||
msgid "Hometown:"
|
||||
msgstr "Heimatort:"
|
||||
|
||||
#: ../../mod/profiles.php:576 ../../include/profile_advanced.php:54
|
||||
#: ../../mod/profiles.php:600 ../../include/profile_advanced.php:54
|
||||
msgid "Political Views:"
|
||||
msgstr "Politische Ansichten:"
|
||||
|
||||
#: ../../mod/profiles.php:577
|
||||
#: ../../mod/profiles.php:601
|
||||
msgid "Religious Views:"
|
||||
msgstr "Religiöse Ansichten:"
|
||||
|
||||
#: ../../mod/profiles.php:578
|
||||
#: ../../mod/profiles.php:602
|
||||
msgid "Public Keywords:"
|
||||
msgstr "Öffentliche Schlüsselwörter:"
|
||||
|
||||
#: ../../mod/profiles.php:579
|
||||
#: ../../mod/profiles.php:603
|
||||
msgid "Private Keywords:"
|
||||
msgstr "Private Schlüsselwörter:"
|
||||
|
||||
#: ../../mod/profiles.php:580
|
||||
#: ../../mod/profiles.php:604 ../../include/profile_advanced.php:62
|
||||
msgid "Likes:"
|
||||
msgstr "Likes:"
|
||||
|
||||
#: ../../mod/profiles.php:605 ../../include/profile_advanced.php:64
|
||||
msgid "Dislikes:"
|
||||
msgstr "Dislikes:"
|
||||
|
||||
#: ../../mod/profiles.php:606
|
||||
msgid "Example: fishing photography software"
|
||||
msgstr "Beispiel: Fischen Fotografie Software"
|
||||
|
||||
#: ../../mod/profiles.php:581
|
||||
#: ../../mod/profiles.php:607
|
||||
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)"
|
||||
|
||||
#: ../../mod/profiles.php:582
|
||||
#: ../../mod/profiles.php:608
|
||||
msgid "(Used for searching profiles, never shown to others)"
|
||||
msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"
|
||||
|
||||
#: ../../mod/profiles.php:583
|
||||
#: ../../mod/profiles.php:609
|
||||
msgid "Tell us about yourself..."
|
||||
msgstr "Erzähle uns ein bisschen von dir …"
|
||||
|
||||
#: ../../mod/profiles.php:584
|
||||
#: ../../mod/profiles.php:610
|
||||
msgid "Hobbies/Interests"
|
||||
msgstr "Hobbies/Interessen"
|
||||
|
||||
#: ../../mod/profiles.php:585
|
||||
#: ../../mod/profiles.php:611
|
||||
msgid "Contact information and Social Networks"
|
||||
msgstr "Kontaktinformationen und Soziale Netzwerke"
|
||||
|
||||
#: ../../mod/profiles.php:586
|
||||
#: ../../mod/profiles.php:612
|
||||
msgid "Musical interests"
|
||||
msgstr "Musikalische Interessen"
|
||||
|
||||
#: ../../mod/profiles.php:587
|
||||
#: ../../mod/profiles.php:613
|
||||
msgid "Books, literature"
|
||||
msgstr "Literatur/Bücher"
|
||||
|
||||
#: ../../mod/profiles.php:588
|
||||
#: ../../mod/profiles.php:614
|
||||
msgid "Television"
|
||||
msgstr "Fernsehen"
|
||||
|
||||
#: ../../mod/profiles.php:589
|
||||
#: ../../mod/profiles.php:615
|
||||
msgid "Film/dance/culture/entertainment"
|
||||
msgstr "Filme/Tänze/Kultur/Unterhaltung"
|
||||
|
||||
#: ../../mod/profiles.php:590
|
||||
#: ../../mod/profiles.php:616
|
||||
msgid "Love/romance"
|
||||
msgstr "Liebesleben"
|
||||
|
||||
#: ../../mod/profiles.php:591
|
||||
#: ../../mod/profiles.php:617
|
||||
msgid "Work/employment"
|
||||
msgstr "Arbeit/Beschäftigung"
|
||||
|
||||
#: ../../mod/profiles.php:592
|
||||
#: ../../mod/profiles.php:618
|
||||
msgid "School/education"
|
||||
msgstr "Schule/Ausbildung"
|
||||
|
||||
#: ../../mod/profiles.php:597
|
||||
#: ../../mod/profiles.php:623
|
||||
msgid ""
|
||||
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
|
||||
"be visible to anybody using the internet."
|
||||
msgstr "Dies ist dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein."
|
||||
|
||||
#: ../../mod/profiles.php:607 ../../mod/directory.php:111
|
||||
#: ../../mod/profiles.php:633 ../../mod/directory.php:109
|
||||
msgid "Age: "
|
||||
msgstr "Alter: "
|
||||
|
||||
#: ../../mod/profiles.php:644
|
||||
#: ../../mod/profiles.php:672
|
||||
msgid "Edit/Manage Profiles"
|
||||
msgstr "Verwalte/Editiere Profile"
|
||||
|
||||
#: ../../mod/profiles.php:645 ../../boot.php:1075
|
||||
#: ../../mod/profiles.php:673 ../../boot.php:1165
|
||||
msgid "Change profile photo"
|
||||
msgstr "Profilbild ändern"
|
||||
|
||||
#: ../../mod/profiles.php:646 ../../boot.php:1076
|
||||
#: ../../mod/profiles.php:674 ../../boot.php:1166
|
||||
msgid "Create New Profile"
|
||||
msgstr "Neues Profil anlegen"
|
||||
|
||||
#: ../../mod/profiles.php:657 ../../boot.php:1086
|
||||
#: ../../mod/profiles.php:685 ../../boot.php:1176
|
||||
msgid "Profile Image"
|
||||
msgstr "Profilbild"
|
||||
|
||||
#: ../../mod/profiles.php:659 ../../boot.php:1089
|
||||
#: ../../mod/profiles.php:687 ../../boot.php:1179
|
||||
msgid "visible to everybody"
|
||||
msgstr "sichtbar für jeden"
|
||||
|
||||
#: ../../mod/profiles.php:660 ../../boot.php:1090
|
||||
#: ../../mod/profiles.php:688 ../../boot.php:1180
|
||||
msgid "Edit visibility"
|
||||
msgstr "Sichtbarkeit bearbeiten"
|
||||
|
||||
#: ../../mod/filer.php:29 ../../include/conversation.php:947
|
||||
#: ../../mod/filer.php:29 ../../include/conversation.php:1080
|
||||
#: ../../include/conversation.php:1097
|
||||
msgid "Save to Folder:"
|
||||
msgstr "In diesen Ordner verschieben:"
|
||||
|
||||
|
|
@ -4029,7 +4253,7 @@ msgstr "In diesen Ordner verschieben:"
|
|||
msgid "- select -"
|
||||
msgstr "- auswählen -"
|
||||
|
||||
#: ../../mod/tagger.php:103 ../../include/conversation.php:138
|
||||
#: ../../mod/tagger.php:103 ../../include/conversation.php:242
|
||||
#, php-format
|
||||
msgid "%1$s tagged %2$s's %3$s with %4$s"
|
||||
msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt"
|
||||
|
|
@ -4069,6 +4293,50 @@ msgstr "Hinzufügen"
|
|||
msgid "No entries."
|
||||
msgstr "Keine Einträge"
|
||||
|
||||
#: ../../mod/babel.php:17
|
||||
msgid "Source (bbcode) text:"
|
||||
msgstr "Quelle (bbcode) Text:"
|
||||
|
||||
#: ../../mod/babel.php:23
|
||||
msgid "Source (Diaspora) text to convert to BBcode:"
|
||||
msgstr "Eingabe (Diaspora) Nach BBCode zu konvertierender Text:"
|
||||
|
||||
#: ../../mod/babel.php:31
|
||||
msgid "Source input: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/babel.php:35
|
||||
msgid "bb2html: "
|
||||
msgstr "bb2html: "
|
||||
|
||||
#: ../../mod/babel.php:39
|
||||
msgid "bb2html2bb: "
|
||||
msgstr "bb2html2bb: "
|
||||
|
||||
#: ../../mod/babel.php:43
|
||||
msgid "bb2md: "
|
||||
msgstr "bb2md: "
|
||||
|
||||
#: ../../mod/babel.php:47
|
||||
msgid "bb2md2html: "
|
||||
msgstr "bb2md2html: "
|
||||
|
||||
#: ../../mod/babel.php:51
|
||||
msgid "bb2dia2bb: "
|
||||
msgstr "bb2dia2bb: "
|
||||
|
||||
#: ../../mod/babel.php:55
|
||||
msgid "bb2md2html2bb: "
|
||||
msgstr "bb2md2html2bb: "
|
||||
|
||||
#: ../../mod/babel.php:65
|
||||
msgid "Source input (Diaspora format): "
|
||||
msgstr "Texteingabe (Diaspora Format): "
|
||||
|
||||
#: ../../mod/babel.php:70
|
||||
msgid "diaspora2bb: "
|
||||
msgstr "diaspora2bb: "
|
||||
|
||||
#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:626
|
||||
#: ../../include/contact_widgets.php:34
|
||||
msgid "Friend Suggestions"
|
||||
|
|
@ -4096,11 +4364,30 @@ msgstr "Auf diesem Server suchen"
|
|||
msgid "Site Directory"
|
||||
msgstr "Verzeichnis"
|
||||
|
||||
#: ../../mod/directory.php:114
|
||||
#: ../../mod/directory.php:112
|
||||
msgid "Gender: "
|
||||
msgstr "Geschlecht:"
|
||||
|
||||
#: ../../mod/directory.php:140
|
||||
#: ../../mod/directory.php:134 ../../include/profile_advanced.php:17
|
||||
#: ../../boot.php:1201
|
||||
msgid "Gender:"
|
||||
msgstr "Geschlecht:"
|
||||
|
||||
#: ../../mod/directory.php:136 ../../include/profile_advanced.php:37
|
||||
#: ../../boot.php:1204
|
||||
msgid "Status:"
|
||||
msgstr "Status:"
|
||||
|
||||
#: ../../mod/directory.php:138 ../../include/profile_advanced.php:48
|
||||
#: ../../boot.php:1206
|
||||
msgid "Homepage:"
|
||||
msgstr "Homepage:"
|
||||
|
||||
#: ../../mod/directory.php:140 ../../include/profile_advanced.php:58
|
||||
msgid "About:"
|
||||
msgstr "Über:"
|
||||
|
||||
#: ../../mod/directory.php:178
|
||||
msgid "No entries (some entries may be hidden)."
|
||||
msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
|
||||
|
||||
|
|
@ -4111,7 +4398,7 @@ msgstr "%s: Keine gültige Email Adresse."
|
|||
|
||||
#: ../../mod/invite.php:59
|
||||
msgid "Please join us on Friendica"
|
||||
msgstr "Bitte trete uns auf Friendica bei"
|
||||
msgstr "Bitte trete bei uns auf Friendica bei"
|
||||
|
||||
#: ../../mod/invite.php:69
|
||||
#, php-format
|
||||
|
|
@ -4157,7 +4444,7 @@ msgstr "Friendica Server verbinden sich alle untereinander, um ein großes daten
|
|||
msgid ""
|
||||
"Our apologies. This system is not currently configured to connect with other"
|
||||
" public sites or invite members."
|
||||
msgstr "Es tut uns Leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."
|
||||
msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."
|
||||
|
||||
#: ../../mod/invite.php:111
|
||||
msgid "Send invitations"
|
||||
|
|
@ -4217,14 +4504,14 @@ msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch
|
|||
|
||||
#: ../../mod/dfrn_confirm.php:275
|
||||
msgid "Introduction failed or was revoked."
|
||||
msgstr "Kontaktanfrage schlug fehl oder wurde zurück gezogen."
|
||||
msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
|
||||
|
||||
#: ../../mod/dfrn_confirm.php:420
|
||||
msgid "Unable to set contact photo."
|
||||
msgstr "Konnte das Bild des Kontakts nicht speichern."
|
||||
|
||||
#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:510
|
||||
#: ../../include/conversation.php:101
|
||||
#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:608
|
||||
#: ../../include/conversation.php:162
|
||||
#, php-format
|
||||
msgid "%1$s is now friends with %2$s"
|
||||
msgstr "%1$s ist nun mit %2$s befreundet"
|
||||
|
|
@ -4236,7 +4523,7 @@ msgstr "Für '%s' wurde kein Nutzer gefunden"
|
|||
|
||||
#: ../../mod/dfrn_confirm.php:572
|
||||
msgid "Our site encryption key is apparently messed up."
|
||||
msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend im Arsch."
|
||||
msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
|
||||
|
||||
#: ../../mod/dfrn_confirm.php:583
|
||||
msgid "Empty site URL was provided or URL could not be decrypted by us."
|
||||
|
|
@ -4275,204 +4562,220 @@ msgstr "Auf %s wurde die Verbindung akzeptiert"
|
|||
msgid "%1$s has joined %2$s"
|
||||
msgstr "%1$s ist %2$s beigetreten"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:513
|
||||
#: ../../addon/fromgplus/fromgplus.php:29
|
||||
msgid "Google+ Import Settings"
|
||||
msgstr "Google+ Import Einstellungen"
|
||||
|
||||
#: ../../addon/fromgplus/fromgplus.php:32
|
||||
msgid "Enable Google+ Import"
|
||||
msgstr "Aktiviere Google+ Import"
|
||||
|
||||
#: ../../addon/fromgplus/fromgplus.php:35
|
||||
msgid "Google Account ID"
|
||||
msgstr "Google Account ID"
|
||||
|
||||
#: ../../addon/fromgplus/fromgplus.php:55
|
||||
msgid "Google+ Import Settings saved."
|
||||
msgstr "Google+ Import Einstellungen gespeichert."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:523
|
||||
msgid "Facebook disabled"
|
||||
msgstr "Facebook deaktiviert"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:518
|
||||
#: ../../addon/facebook/facebook.php:528
|
||||
msgid "Updating contacts"
|
||||
msgstr "Aktualisiere Kontakte"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:541
|
||||
#: ../../addon/facebook/facebook.php:551
|
||||
msgid "Facebook API key is missing."
|
||||
msgstr "Facebook-API-Schlüssel nicht gefunden"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:548
|
||||
#: ../../addon/facebook/facebook.php:558
|
||||
msgid "Facebook Connect"
|
||||
msgstr "Mit Facebook verbinden"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:554
|
||||
#: ../../addon/facebook/facebook.php:564
|
||||
msgid "Install Facebook connector for this account."
|
||||
msgstr "Facebook-Connector für dieses Konto installieren."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:561
|
||||
#: ../../addon/facebook/facebook.php:571
|
||||
msgid "Remove Facebook connector"
|
||||
msgstr "Facebook-Connector entfernen"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:566
|
||||
#: ../../addon/facebook/facebook.php:576
|
||||
msgid ""
|
||||
"Re-authenticate [This is necessary whenever your Facebook password is "
|
||||
"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:573
|
||||
#: ../../addon/facebook/facebook.php:583
|
||||
msgid "Post to Facebook by default"
|
||||
msgstr "Veröffentliche standardmäßig bei Facebook"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:579
|
||||
#: ../../addon/facebook/facebook.php:589
|
||||
msgid ""
|
||||
"Facebook friend linking has been disabled on this site. The following "
|
||||
"settings will have no effect."
|
||||
msgstr "Das Verlinken von Facebookkontakten wurde auf dieser Seite deaktiviert. Die folgenden Einstellungen haben keinen Effekt."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:583
|
||||
#: ../../addon/facebook/facebook.php:593
|
||||
msgid ""
|
||||
"Facebook friend linking has been disabled on this site. If you disable it, "
|
||||
"you will be unable to re-enable it."
|
||||
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:586
|
||||
#: ../../addon/facebook/facebook.php:596
|
||||
msgid "Link all your Facebook friends and conversations on this website"
|
||||
msgstr "All meine Facebook-Kontakte und -Konversationen hier auf diese Website importieren"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:588
|
||||
#: ../../addon/facebook/facebook.php:598
|
||||
msgid ""
|
||||
"Facebook conversations consist of your <em>profile wall</em> and your friend"
|
||||
" <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:589
|
||||
#: ../../addon/facebook/facebook.php:599
|
||||
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."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:590
|
||||
#: ../../addon/facebook/facebook.php:600
|
||||
msgid ""
|
||||
"The following settings determine the privacy of your Facebook profile wall "
|
||||
"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:594
|
||||
#: ../../addon/facebook/facebook.php:604
|
||||
msgid ""
|
||||
"On this website your Facebook profile wall conversations will only be "
|
||||
"visible to you"
|
||||
msgstr "Meine Facebook-Pinnwand hier auf dieser Webseite nur für mich sichtbar machen"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:599
|
||||
#: ../../addon/facebook/facebook.php:609
|
||||
msgid "Do not import your Facebook profile wall conversations"
|
||||
msgstr "Facebook-Pinnwand nicht importieren"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:601
|
||||
#: ../../addon/facebook/facebook.php:611
|
||||
msgid ""
|
||||
"If you choose to link conversations and leave both of these boxes unchecked,"
|
||||
" your Facebook profile wall will be merged with your profile wall on this "
|
||||
"website and your privacy settings on this website will be used to determine "
|
||||
"who may see the conversations."
|
||||
msgstr "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:606
|
||||
#: ../../addon/facebook/facebook.php:616
|
||||
msgid "Comma separated applications to ignore"
|
||||
msgstr "Kommaseparierte Anwendungen, die ignoriert werden sollen"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:690
|
||||
#: ../../addon/facebook/facebook.php:700
|
||||
msgid "Problems with Facebook Real-Time Updates"
|
||||
msgstr "Probleme mit Facebook Echtzeit-Updates"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:718
|
||||
#: ../../addon/facebook/facebook.php:728
|
||||
#: ../../include/contact_selectors.php:81
|
||||
msgid "Facebook"
|
||||
msgstr "Facebook"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:719
|
||||
#: ../../addon/facebook/facebook.php:729
|
||||
msgid "Facebook Connector Settings"
|
||||
msgstr "Facebook-Verbindungseinstellungen"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:734
|
||||
#: ../../addon/facebook/facebook.php:744
|
||||
msgid "Facebook API Key"
|
||||
msgstr "Facebook API Schlüssel"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:744
|
||||
#: ../../addon/facebook/facebook.php:754
|
||||
msgid ""
|
||||
"Error: it appears that you have specified the App-ID and -Secret in your "
|
||||
".htconfig.php file. As long as they are specified there, they cannot be set "
|
||||
"using this form.<br><br>"
|
||||
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:749
|
||||
#: ../../addon/facebook/facebook.php:759
|
||||
msgid ""
|
||||
"Error: the given API Key seems to be incorrect (the application access token"
|
||||
" could not be retrieved)."
|
||||
msgstr "Fehler: der angegebene API Schlüssel scheint nicht korrekt zu sein (Zugriffstoken konnte nicht empfangen werden)."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:751
|
||||
#: ../../addon/facebook/facebook.php:761
|
||||
msgid "The given API Key seems to work correctly."
|
||||
msgstr "Der angegebene API Schlüssel scheint korrekt zu funktionieren."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:753
|
||||
#: ../../addon/facebook/facebook.php:763
|
||||
msgid ""
|
||||
"The correctness of the API Key could not be detected. Somthing strange's "
|
||||
"The correctness of the API Key could not be detected. Something strange's "
|
||||
"going on."
|
||||
msgstr "Die Echtheit des API Schlüssels konnte nicht überprüft werden. Etwas Merkwürdiges ist hier im Gange."
|
||||
msgstr "Die Richtigkeit des API Schlüssels konnte nicht gefunden werden. Irgendwas stimmt nicht."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:756
|
||||
#: ../../addon/facebook/facebook.php:766
|
||||
msgid "App-ID / API-Key"
|
||||
msgstr "App-ID / API-Key"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:757
|
||||
#: ../../addon/facebook/facebook.php:767
|
||||
msgid "Application secret"
|
||||
msgstr "Anwendungs-Geheimnis"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:758
|
||||
#: ../../addon/facebook/facebook.php:768
|
||||
#, php-format
|
||||
msgid "Polling Interval in minutes (minimum %1$s minutes)"
|
||||
msgstr "Abfrageintervall in Minuten (min %1$s Minuten)"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:759
|
||||
#: ../../addon/facebook/facebook.php:769
|
||||
msgid ""
|
||||
"Synchronize comments (no comments on Facebook are missed, at the cost of "
|
||||
"increased system load)"
|
||||
msgstr "Kommentare synchronisieren (Kein Kommentar von Facebook geht verloren, verursacht höhere Last auf dem Server)"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:763
|
||||
#: ../../addon/facebook/facebook.php:773
|
||||
msgid "Real-Time Updates"
|
||||
msgstr "Echtzeit Aktualisierungen"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:767
|
||||
#: ../../addon/facebook/facebook.php:777
|
||||
msgid "Real-Time Updates are activated."
|
||||
msgstr "Echtzeit-Updates sind aktiviert."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:768
|
||||
#: ../../addon/facebook/facebook.php:778
|
||||
msgid "Deactivate Real-Time Updates"
|
||||
msgstr "Echtzeit-Updates deaktivieren"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:770
|
||||
#: ../../addon/facebook/facebook.php:780
|
||||
msgid "Real-Time Updates not activated."
|
||||
msgstr "Echtzeit-Updates nicht aktiviert."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:770
|
||||
#: ../../addon/facebook/facebook.php:780
|
||||
msgid "Activate Real-Time Updates"
|
||||
msgstr "Echtzeit-Updates aktivieren"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:789 ../../addon/dav/layout.fnk.php:360
|
||||
#: ../../addon/facebook/facebook.php:799 ../../addon/dav/layout.fnk.php:361
|
||||
msgid "The new values have been saved."
|
||||
msgstr "Die neuen Einstellungen wurden gespeichert."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:813
|
||||
#: ../../addon/facebook/facebook.php:823
|
||||
msgid "Post to Facebook"
|
||||
msgstr "Bei Facebook veröffentlichen"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:911
|
||||
#: ../../addon/facebook/facebook.php:921
|
||||
msgid ""
|
||||
"Post to Facebook cancelled because of multi-network access permission "
|
||||
"conflict."
|
||||
msgstr "Beitrag wurde nicht bei Facebook veröffentlicht, da Konflikte bei den Multi-Netzwerk-Zugriffsrechten vorliegen."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:1131
|
||||
#: ../../addon/facebook/facebook.php:1149
|
||||
msgid "View on Friendica"
|
||||
msgstr "In Friendica betrachten"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:1164
|
||||
#: ../../addon/facebook/facebook.php:1182
|
||||
msgid "Facebook post failed. Queued for retry."
|
||||
msgstr "Veröffentlichung bei Facebook gescheitert. Wir versuchen es später erneut."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:1204
|
||||
#: ../../addon/facebook/facebook.php:1222
|
||||
msgid "Your Facebook connection became invalid. Please Re-authenticate."
|
||||
msgstr "Deine Facebook Anmeldedaten sind ungültig geworden. Bitte re-authentifiziere dich."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:1205
|
||||
#: ../../addon/facebook/facebook.php:1223
|
||||
msgid "Facebook connection became invalid"
|
||||
msgstr "Facebook Anmeldedaten sind ungültig geworden"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:1206
|
||||
#: ../../addon/facebook/facebook.php:1224
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Hi %1$s,\n"
|
||||
|
|
@ -4492,23 +4795,35 @@ msgstr "StatusNet AutoFollow Einstellungen"
|
|||
msgid "Automatically follow any StatusNet followers/mentioners"
|
||||
msgstr "Automatisch allen StatusNet Followern/Erwähnungen folgen"
|
||||
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:182
|
||||
#: ../../addon/bg/bg.php:51
|
||||
msgid "Bg settings updated."
|
||||
msgstr "Bg Einstellungen sind aktualisiert."
|
||||
|
||||
#: ../../addon/bg/bg.php:82
|
||||
msgid "Bg Settings"
|
||||
msgstr "Bg Einstellungen"
|
||||
|
||||
#: ../../addon/bg/bg.php:84 ../../addon/numfriends/numfriends.php:79
|
||||
msgid "How many contacts to display on profile sidebar"
|
||||
msgstr "Wie viele Kontakte sollen in der Seitenleiste angezeigt werden"
|
||||
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:260
|
||||
msgid "Lifetime of the cache (in hours)"
|
||||
msgstr "Lebenszeit des Caches (in Stunden)"
|
||||
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:187
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:265
|
||||
msgid "Cache Statistics"
|
||||
msgstr "Cache Statistik"
|
||||
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:190
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:268
|
||||
msgid "Number of items"
|
||||
msgstr "Anzahl der Einträge"
|
||||
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:192
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:270
|
||||
msgid "Size of the cache"
|
||||
msgstr "Größe des Caches"
|
||||
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:194
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:272
|
||||
msgid "Delete the whole cache"
|
||||
msgstr "Cache leeren"
|
||||
|
||||
|
|
@ -4517,7 +4832,7 @@ msgstr "Cache leeren"
|
|||
msgid "%d person likes this"
|
||||
msgid_plural "%d people like this"
|
||||
msgstr[0] "%d Person mag das"
|
||||
msgstr[1] "%d Leuten mögen das"
|
||||
msgstr[1] "%d Leute mögen das"
|
||||
|
||||
#: ../../addon/widgets/widget_like.php:61
|
||||
#, php-format
|
||||
|
|
@ -4546,6 +4861,157 @@ msgstr "Verfügbare Widgets"
|
|||
msgid "Connect on Friendica!"
|
||||
msgstr "In Friendica verbinden!"
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:19
|
||||
msgid "bitchslap"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:19
|
||||
msgid "bitchslapped"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:20
|
||||
msgid "shag"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:20
|
||||
msgid "shagged"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:21
|
||||
msgid "do something obscenely biological to"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:21
|
||||
msgid "did something obscenely biological to"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:22
|
||||
msgid "point out the new poke feature to"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:22
|
||||
msgid "pointed out the new poke feature to"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:23
|
||||
msgid "declare undying love for"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:23
|
||||
msgid "declared undying love for"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:24
|
||||
msgid "set fire to"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:25
|
||||
msgid "patent"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:25
|
||||
msgid "patented"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:26
|
||||
msgid "stroke beard"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:26
|
||||
msgid "stroked their beard at"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:27
|
||||
msgid ""
|
||||
"bemoan the declining standards of modern secondary and tertiary education to"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:27
|
||||
msgid ""
|
||||
"bemoans the declining standards of modern secondary and tertiary education "
|
||||
"to"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:28
|
||||
msgid "hug"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:28
|
||||
msgid "hugged"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:29
|
||||
msgid "kiss"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:29
|
||||
msgid "kissed"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:30
|
||||
msgid "raise eyebrows at"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:30
|
||||
msgid "raised their eyebrows at"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:31
|
||||
msgid "insult"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:31
|
||||
msgid "insulted"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:32
|
||||
msgid "praise"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:32
|
||||
msgid "praised"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:33
|
||||
msgid "be dubious of"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:33
|
||||
msgid "was dubious of"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:34
|
||||
msgid "eat"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:34
|
||||
msgid "ate"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:35
|
||||
msgid "giggle and fawn at"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:35
|
||||
msgid "giggled and fawned at"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:36
|
||||
msgid "doubt"
|
||||
msgstr "anzeigen/verbergen"
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:36
|
||||
msgid "doubted"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:37
|
||||
msgid "glare"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:37
|
||||
msgid "glared at"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/yourls/yourls.php:55
|
||||
msgid "YourLS Settings"
|
||||
msgstr "YourLS Einstellungen"
|
||||
|
|
@ -4629,15 +5095,34 @@ msgstr "NSFW-Einstellungen gespeichert"
|
|||
msgid "%s - Click to open/close"
|
||||
msgstr "%s – Zum Öffnen/Schließen klicken"
|
||||
|
||||
#: ../../addon/page/page.php:48
|
||||
#: ../../addon/page/page.php:61 ../../addon/page/page.php:91
|
||||
#: ../../addon/forumlist/forumlist.php:54
|
||||
msgid "Forums"
|
||||
msgstr "Foren"
|
||||
|
||||
#: ../../addon/page/page.php:63 ../../addon/showmore/showmore.php:87
|
||||
#: ../../include/contact_widgets.php:188 ../../include/conversation.php:476
|
||||
#: ../../boot.php:524
|
||||
msgid "show more"
|
||||
msgstr "mehr anzeigen"
|
||||
#: ../../addon/page/page.php:129 ../../addon/forumlist/forumlist.php:88
|
||||
msgid "Forums:"
|
||||
msgstr "Foren:"
|
||||
|
||||
#: ../../addon/page/page.php:165
|
||||
msgid "Page settings updated."
|
||||
msgstr "Seiteneinstellungen aktualisiert."
|
||||
|
||||
#: ../../addon/page/page.php:194
|
||||
msgid "Page Settings"
|
||||
msgstr "Seiteneinstellungen"
|
||||
|
||||
#: ../../addon/page/page.php:196 ../../addon/forumlist/forumlist.php:155
|
||||
msgid "How many forums to display on sidebar without paging"
|
||||
msgstr "Wie viele Foren sollen in der Seitenleiste ohne Umblättern angezeigt werden"
|
||||
|
||||
#: ../../addon/page/page.php:199
|
||||
msgid "Randomise Page/Forum list"
|
||||
msgstr "Zufällige Seiten/Foren Liste"
|
||||
|
||||
#: ../../addon/page/page.php:202
|
||||
msgid "Show pages/forums on profile page"
|
||||
msgstr "Foren/Seiten auf der Profilseite anzeigen"
|
||||
|
||||
#: ../../addon/planets/planets.php:150
|
||||
msgid "Planets Settings"
|
||||
|
|
@ -4651,7 +5136,7 @@ msgstr "Aktiviere Planeten Plugin"
|
|||
#: ../../addon/communityhome/communityhome.php:34
|
||||
#: ../../addon/communityhome/twillingham/communityhome.php:28
|
||||
#: ../../addon/communityhome/twillingham/communityhome.php:34
|
||||
#: ../../include/nav.php:64 ../../boot.php:822
|
||||
#: ../../include/nav.php:64 ../../boot.php:912
|
||||
msgid "Login"
|
||||
msgstr "Anmeldung"
|
||||
|
||||
|
|
@ -4679,205 +5164,533 @@ msgid "Latest likes"
|
|||
msgstr "Neueste Favoriten"
|
||||
|
||||
#: ../../addon/communityhome/communityhome.php:155
|
||||
#: ../../view/theme/diabook/theme.php:562 ../../include/text.php:1314
|
||||
#: ../../include/conversation.php:45 ../../include/conversation.php:118
|
||||
#: ../../view/theme/diabook/theme.php:562 ../../include/text.php:1364
|
||||
#: ../../include/conversation.php:106 ../../include/conversation.php:222
|
||||
msgid "event"
|
||||
msgstr "Veranstaltung"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_configuration.php:126
|
||||
msgid "U.S. Time Format (mm/dd/YYYY)"
|
||||
msgstr "U.S. Datumsformat (mm/dd/YYYY)"
|
||||
#: ../../addon/dav/dav_caldav_backend_virtual_friendica.inc.php:36
|
||||
msgid "Friendicy-Native events"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_configuration.php:205
|
||||
msgid "German Time Format (dd.mm.YYYY)"
|
||||
msgstr "Deutsches Datumsformat (dd.mm.YYYY)"
|
||||
|
||||
#: ../../addon/dav/common/calendar.fnk.php:517
|
||||
#: ../../addon/dav/common/calendar.fnk.php:533
|
||||
#: ../../addon/dav/layout.fnk.php:200
|
||||
msgid "Error"
|
||||
msgstr "Fehler"
|
||||
|
||||
#: ../../addon/dav/common/calendar.fnk.php:568
|
||||
#: ../../addon/dav/common/calendar.fnk.php:637
|
||||
#: ../../addon/dav/common/calendar.fnk.php:664
|
||||
#: ../../addon/dav/layout.fnk.php:231
|
||||
#: ../../addon/dav/common/wdcal_backend.inc.php:92
|
||||
#: ../../addon/dav/common/wdcal_backend.inc.php:166
|
||||
#: ../../addon/dav/common/wdcal_backend.inc.php:178
|
||||
#: ../../addon/dav/common/wdcal_backend.inc.php:206
|
||||
#: ../../addon/dav/common/wdcal_backend.inc.php:214
|
||||
#: ../../addon/dav/common/wdcal_backend.inc.php:229
|
||||
msgid "No access"
|
||||
msgstr "Kein Zugriff"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:119
|
||||
msgid "New event"
|
||||
msgstr "Neue Veranstaltung"
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:30
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:738
|
||||
msgid "Could not open component for editing"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:123
|
||||
msgid "Today"
|
||||
msgstr "Heute"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:132
|
||||
msgid "Day"
|
||||
msgstr "Tag"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:139
|
||||
msgid "Week"
|
||||
msgstr "Woche"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:146
|
||||
msgid "Month"
|
||||
msgstr "Monat"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:151
|
||||
msgid "Reload"
|
||||
msgstr "Neu Laden"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:162
|
||||
msgid "Date"
|
||||
msgstr "Datum"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:224
|
||||
msgid "Not found"
|
||||
msgstr "Nicht gefunden"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:292 ../../addon/dav/layout.fnk.php:365
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:140
|
||||
#: ../../addon/dav/layout.fnk.php:143 ../../addon/dav/layout.fnk.php:422
|
||||
msgid "Go back to the calendar"
|
||||
msgstr "Zurück zum Kalender"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:300
|
||||
msgid "Starts"
|
||||
msgstr "Beginnt"
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:144
|
||||
msgid "Event data"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:305
|
||||
msgid "Ends"
|
||||
msgstr "Endet"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:312
|
||||
msgid "Description"
|
||||
msgstr "Beschreibung"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:315
|
||||
msgid "Notification"
|
||||
msgstr "Benachrichtigung"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:324
|
||||
msgid "Minutes"
|
||||
msgstr "Minuten"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:327
|
||||
msgid "Hours"
|
||||
msgstr "Stunden"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:330
|
||||
msgid "Days"
|
||||
msgstr "Tage"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:331
|
||||
msgid "before"
|
||||
msgstr "vorher"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:367
|
||||
msgid "Calendar Settings"
|
||||
msgstr "Kalender Einstellungen"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:373
|
||||
msgid "Date format"
|
||||
msgstr "Datumsformat"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:382
|
||||
msgid "Time zone"
|
||||
msgstr "Zeitzone"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:387
|
||||
msgid "Limitations"
|
||||
msgstr "Einschränkungen"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:391
|
||||
msgid "Warning"
|
||||
msgstr "Warnung"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:395
|
||||
msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)"
|
||||
msgstr "Synchronisation (iPhone, Thunderbird Lightning, Android, ...)"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:402
|
||||
msgid "Synchronizing this calendar with the iPhone"
|
||||
msgstr "Diesen Kalender mit dem iPhone synchronisieren"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:413
|
||||
msgid "Synchronizing your Friendica-Contacts with the iPhone"
|
||||
msgstr "Friendica-Kontakte mit dem iPhone synchronisieren"
|
||||
|
||||
#: ../../addon/dav/dav_carddav_backend_friendica_community.inc.php:37
|
||||
msgid "Friendica-Contacts"
|
||||
msgstr "Friendica-Kontakte"
|
||||
|
||||
#: ../../addon/dav/dav_carddav_backend_friendica_community.inc.php:38
|
||||
msgid "Your Friendica-Contacts"
|
||||
msgstr "Deine Friendica-Kontakte"
|
||||
|
||||
#: ../../addon/dav/main.php:244
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:146 ../../addon/dav/main.php:206
|
||||
msgid "Calendar"
|
||||
msgstr "Kalender"
|
||||
|
||||
#: ../../addon/dav/main.php:247
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:163
|
||||
msgid "Special color"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:169
|
||||
msgid "Subject"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:173
|
||||
msgid "Starts"
|
||||
msgstr "Beginnt"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:178
|
||||
msgid "Ends"
|
||||
msgstr "Endet"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:185
|
||||
msgid "Description"
|
||||
msgstr "Beschreibung"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:188
|
||||
msgid "Recurrence"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:190
|
||||
msgid "Frequency"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:194
|
||||
#: ../../include/contact_selectors.php:59
|
||||
msgid "Daily"
|
||||
msgstr "Täglich"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:197
|
||||
#: ../../include/contact_selectors.php:60
|
||||
msgid "Weekly"
|
||||
msgstr "Wöchentlich"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:200
|
||||
#: ../../include/contact_selectors.php:61
|
||||
msgid "Monthly"
|
||||
msgstr "Monatlich"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:203
|
||||
msgid "Yearly"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:214
|
||||
#: ../../include/datetime.php:288
|
||||
msgid "days"
|
||||
msgstr "Tage"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:215
|
||||
#: ../../include/datetime.php:287
|
||||
msgid "weeks"
|
||||
msgstr "Wochen"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:216
|
||||
#: ../../include/datetime.php:286
|
||||
msgid "months"
|
||||
msgstr "Monate"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:217
|
||||
#: ../../include/datetime.php:285
|
||||
msgid "years"
|
||||
msgstr "Jahre"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:218
|
||||
msgid "Interval"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:218
|
||||
msgid "All %select% %time%"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:222
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:260
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:481
|
||||
msgid "Days"
|
||||
msgstr "Tage"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:231
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:254
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:270
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:293
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:884
|
||||
msgid "Sunday"
|
||||
msgstr "Sonntag"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:235
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:274
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:884
|
||||
msgid "Monday"
|
||||
msgstr "Montag"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:238
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:884
|
||||
msgid "Tuesday"
|
||||
msgstr "Dienstag"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:241
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:884
|
||||
msgid "Wednesday"
|
||||
msgstr "Mittwoch"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:244
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:884
|
||||
msgid "Thursday"
|
||||
msgstr "Donnerstag"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:247
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:884
|
||||
msgid "Friday"
|
||||
msgstr "Freitag"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:250
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:884
|
||||
msgid "Saturday"
|
||||
msgstr "Samstag"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:297
|
||||
msgid "First day of week:"
|
||||
msgstr "Erster Tag der Woche"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:350
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:373
|
||||
msgid "Day of month"
|
||||
msgstr "Tag des Monats"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:354
|
||||
msgid "#num#th of each month"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:357
|
||||
msgid "#num#th-last of each month"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:360
|
||||
msgid "#num#th #wkday# of each month"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:363
|
||||
msgid "#num#th-last #wkday# of each month"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:372
|
||||
#: ../../addon/dav/layout.fnk.php:255
|
||||
msgid "Month"
|
||||
msgstr "Monat"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:377
|
||||
msgid "#num#th of the given month"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:380
|
||||
msgid "#num#th-last of the given month"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:383
|
||||
msgid "#num#th #wkday# of the given month"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:386
|
||||
msgid "#num#th-last #wkday# of the given month"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:413
|
||||
msgid "Repeat until"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:417
|
||||
msgid "Infinite"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:420
|
||||
msgid "Until the following date"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:423
|
||||
msgid "Number of times"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:429
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:432
|
||||
msgid "none"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:449
|
||||
msgid "Notification"
|
||||
msgstr "Benachrichtigung"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:466
|
||||
msgid "Notify by"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:469
|
||||
msgid "E-Mail"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:470
|
||||
msgid "On Friendica / Display"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:474
|
||||
msgid "Time"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:478
|
||||
msgid "Hours"
|
||||
msgstr "Stunden"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:479
|
||||
msgid "Minutes"
|
||||
msgstr "Minuten"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:480
|
||||
msgid "Seconds"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:482
|
||||
msgid "Weeks"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:485
|
||||
msgid "before the"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:486
|
||||
msgid "start of the event"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:487
|
||||
msgid "end of the event"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:492
|
||||
msgid "Add a notification"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:687
|
||||
msgid "The event #name# will start at #date"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:696
|
||||
msgid "#name# is about to begin."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:769
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_configuration.php:148
|
||||
msgid "U.S. Time Format (mm/dd/YYYY)"
|
||||
msgstr "U.S. Datumsformat (mm/dd/YYYY)"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_configuration.php:243
|
||||
msgid "German Time Format (dd.mm.YYYY)"
|
||||
msgstr "Deutsches Datumsformat (dd.mm.YYYY)"
|
||||
|
||||
#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39
|
||||
msgid "Private Events"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/dav_carddav_backend_virtual_friendica.inc.php:53
|
||||
msgid "Friendica-Contacts"
|
||||
msgstr "Friendica-Kontakte"
|
||||
|
||||
#: ../../addon/dav/dav_carddav_backend_virtual_friendica.inc.php:54
|
||||
msgid "Your Friendica-Contacts"
|
||||
msgstr "Deine Friendica-Kontakte"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:99 ../../addon/dav/layout.fnk.php:136
|
||||
msgid ""
|
||||
"Something went wrong when trying to import the file. Sorry. Maybe some "
|
||||
"events were imported anyway."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:131
|
||||
msgid "Something went wrong when trying to import the file. Sorry."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:134
|
||||
msgid "The ICS-File has been imported."
|
||||
msgstr "Die ICS-Datei wurde importoert."
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:138
|
||||
msgid "No file was uploaded."
|
||||
msgstr "Es wurde keine Datei geladen."
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:147
|
||||
msgid "Import a ICS-file"
|
||||
msgstr "Importiere eine ICS-Datei"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:150
|
||||
msgid "ICS-File"
|
||||
msgstr "ICS-Datei"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:151
|
||||
msgid "Overwrite all #num# existing events"
|
||||
msgstr "Überschreibe alle #num# existierenden Einträge"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:228
|
||||
msgid "New event"
|
||||
msgstr "Neue Veranstaltung"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:232
|
||||
msgid "Today"
|
||||
msgstr "Heute"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:241
|
||||
msgid "Day"
|
||||
msgstr "Tag"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:248
|
||||
msgid "Week"
|
||||
msgstr "Woche"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:260
|
||||
msgid "Reload"
|
||||
msgstr "Neu Laden"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:271
|
||||
msgid "Date"
|
||||
msgstr "Datum"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:313
|
||||
msgid "Error"
|
||||
msgstr "Fehler"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:380
|
||||
msgid "The calendar has been updated."
|
||||
msgstr "Der Kalender wurde aktualisiert."
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:393
|
||||
msgid "The new calendar has been created."
|
||||
msgstr "Der neue Kalender wurde erstellt."
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:417
|
||||
msgid "The calendar has been deleted."
|
||||
msgstr "Der Kalender wurde gelöscht."
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:424
|
||||
msgid "Calendar Settings"
|
||||
msgstr "Kalendereinstellungen"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:430
|
||||
msgid "Date format"
|
||||
msgstr "Datumsformat"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:439
|
||||
msgid "Time zone"
|
||||
msgstr "Zeitzone"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:445
|
||||
msgid "Calendars"
|
||||
msgstr "Kalender"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:487
|
||||
msgid "Create a new calendar"
|
||||
msgstr "Neuen Kalender anlegen"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:496
|
||||
msgid "Limitations"
|
||||
msgstr "Einschränkungen"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:500 ../../addon/libravatar/libravatar.php:82
|
||||
msgid "Warning"
|
||||
msgstr "Warnung"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:504
|
||||
msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)"
|
||||
msgstr "Synchronisation (iPhone, Thunderbird Lightning, Android, ...)"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:511
|
||||
msgid "Synchronizing this calendar with the iPhone"
|
||||
msgstr "Diesen Kalender mit dem iPhone synchronisieren"
|
||||
|
||||
#: ../../addon/dav/layout.fnk.php:522
|
||||
msgid "Synchronizing your Friendica-Contacts with the iPhone"
|
||||
msgstr "Friendica-Kontakte mit dem iPhone synchronisieren"
|
||||
|
||||
#: ../../addon/dav/main.php:169
|
||||
msgid ""
|
||||
"The current version of this plugin has not been set up correctly. Please "
|
||||
"contact the system administrator of your installation of friendica to fix "
|
||||
"this."
|
||||
msgstr "Die aktuelle Version dieses Plugins wurde nicht korrekt eingestellt. Bitte kontaktiere den System-Administrator deiner Friendica Installation um den Fehler zu beheben."
|
||||
|
||||
#: ../../addon/dav/main.php:209
|
||||
msgid "Extended calendar with CalDAV-support"
|
||||
msgstr "Erweiterter Kalender mit CalDAV Unterstützung."
|
||||
|
||||
#: ../../addon/dav/main.php:263
|
||||
msgid "The database tables have been installed."
|
||||
msgstr "Die Datenbank-Tabellen wurden installiert."
|
||||
#: ../../addon/dav/main.php:246 ../../addon/dav/main.php:247
|
||||
#: ../../include/delivery.php:463 ../../include/enotify.php:26
|
||||
#: ../../include/notifier.php:710
|
||||
msgid "noreply"
|
||||
msgstr "noreply"
|
||||
|
||||
#: ../../addon/dav/main.php:264
|
||||
#: ../../addon/dav/main.php:249
|
||||
msgid "Notification: "
|
||||
msgstr "Benachrichtigungen: "
|
||||
|
||||
#: ../../addon/dav/main.php:276
|
||||
msgid "The database tables have been installed."
|
||||
msgstr "Die Datenbanktabellen wurden installiert."
|
||||
|
||||
#: ../../addon/dav/main.php:277
|
||||
msgid "An error occurred during the installation."
|
||||
msgstr "Während der Installation trat ein Fehler auf."
|
||||
|
||||
#: ../../addon/dav/main.php:280
|
||||
#: ../../addon/dav/main.php:283
|
||||
msgid "The database tables have been updated."
|
||||
msgstr "Die Tabellen in der Datenbank wurden aktualisiert."
|
||||
|
||||
#: ../../addon/dav/main.php:285
|
||||
msgid "An error occurred during the update."
|
||||
msgstr "Während der Aktualisierung trat ein Fehler auf."
|
||||
|
||||
#: ../../addon/dav/main.php:301
|
||||
msgid "No system-wide settings yet."
|
||||
msgstr "Momentan keine systemweiten Einstellungen."
|
||||
|
||||
#: ../../addon/dav/main.php:283
|
||||
#: ../../addon/dav/main.php:304
|
||||
msgid "Database status"
|
||||
msgstr "Datenbank Status"
|
||||
msgstr "Datenbankstatus"
|
||||
|
||||
#: ../../addon/dav/main.php:286
|
||||
#: ../../addon/dav/main.php:307
|
||||
msgid "Installed"
|
||||
msgstr "Installiert"
|
||||
|
||||
#: ../../addon/dav/main.php:289
|
||||
#: ../../addon/dav/main.php:310
|
||||
msgid "Upgrade needed"
|
||||
msgstr "Upgrade erforderlich"
|
||||
|
||||
#: ../../addon/dav/main.php:289
|
||||
#: ../../addon/dav/main.php:310
|
||||
msgid ""
|
||||
"Please back up all calendar data (the tables beginning with dav_*) before "
|
||||
"proceeding. While all calendar events <i>should</i> be converted to the new "
|
||||
"database structure, it's always safe to have a backup. Below, you can have a"
|
||||
" look at the database-queries that will be made when pressing the "
|
||||
"'update'-button."
|
||||
msgstr "Bitte sichere alle Kalenderdaten (die Tabellen mit dav_* beginnend) bevor du mit dem Update fortfährst. Eigentliche <i>sollten</i> alle Kalendereinträge in die neue Datenbankstruktur übernommen werden, aber sicher ist sicher. Weiter unten kannst du die Datenbank-Anfragen ansehen, die im Verlauf des Updates gemacht werden."
|
||||
|
||||
#: ../../addon/dav/main.php:310
|
||||
msgid "Upgrade"
|
||||
msgstr "Upgrade"
|
||||
|
||||
#: ../../addon/dav/main.php:292
|
||||
#: ../../addon/dav/main.php:313
|
||||
msgid "Not installed"
|
||||
msgstr "Nicht installiert"
|
||||
|
||||
#: ../../addon/dav/main.php:292
|
||||
#: ../../addon/dav/main.php:313
|
||||
msgid "Install"
|
||||
msgstr "Installieren"
|
||||
|
||||
#: ../../addon/dav/main.php:297
|
||||
#: ../../addon/dav/main.php:317
|
||||
msgid "Unknown"
|
||||
msgstr "Unbekannt"
|
||||
|
||||
#: ../../addon/dav/main.php:317
|
||||
msgid ""
|
||||
"Something really went wrong. I cannot recover from this state automatically,"
|
||||
" sorry. Please go to the database backend, back up the data, and delete all "
|
||||
"tables beginning with 'dav_' manually. Afterwards, this installation routine"
|
||||
" should be able to reinitialize the tables automatically."
|
||||
msgstr "Irgendetwas ging schief. Ich kann leider von diesem Zustand der Datenbank leider nicht automatisch fortfahren. Bitte mache ein Backup der Daten aus der Datenbank und lösche anschließend alle Tabellen deren Name mit 'dav_' anfangen. Anschließend sollte diese Installations-Routine in der Lage sein die nötigen Tabellen automatisch neu anzulegen."
|
||||
|
||||
#: ../../addon/dav/main.php:322
|
||||
msgid "Troubleshooting"
|
||||
msgstr "Problembehebung"
|
||||
|
||||
#: ../../addon/dav/main.php:298
|
||||
#: ../../addon/dav/main.php:323
|
||||
msgid "Manual creation of the database tables:"
|
||||
msgstr "Manuelles anlegen der Datenbank Tabellen:"
|
||||
msgstr "Manuelles Anlegen der Datenbanktabellen:"
|
||||
|
||||
#: ../../addon/dav/main.php:299
|
||||
#: ../../addon/dav/main.php:324
|
||||
msgid "Show SQL-statements"
|
||||
msgstr "SQL-Anweisungen anzeigen"
|
||||
|
||||
#: ../../addon/dav/calendar.friendica.fnk.php:151
|
||||
#: ../../addon/dav/calendar.friendica.fnk.php:193
|
||||
msgid "Private Calendar"
|
||||
msgstr "Privater Kalender"
|
||||
|
||||
#: ../../addon/dav/calendar.friendica.fnk.php:158
|
||||
#: ../../addon/dav/calendar.friendica.fnk.php:194
|
||||
msgid "Friendica Events: Mine"
|
||||
msgstr "Meine Friendica-Veranstaltungen"
|
||||
|
||||
#: ../../addon/dav/calendar.friendica.fnk.php:161
|
||||
#: ../../addon/dav/calendar.friendica.fnk.php:195
|
||||
msgid "Friendica Events: Contacts"
|
||||
msgstr "Friendica Veranstaltungen meiner Kontakte"
|
||||
|
||||
|
|
@ -4888,7 +5701,7 @@ msgid ""
|
|||
" storage (like ownCloud). See <a "
|
||||
"href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage"
|
||||
" WebFinger</a>"
|
||||
msgstr "Ermöglicht dir, deine friendica id (%s) mit externen unhosted-fähigen Speichern (z.B. ownCloud) zu verbinden. Siehe <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"
|
||||
msgstr "Ermöglicht dir, deine Friendica ID (%s) mit externen unhosted-fähigen Speichern (z.B. ownCloud) zu verbinden. Siehe <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"
|
||||
|
||||
#: ../../addon/uhremotestorage/uhremotestorage.php:85
|
||||
msgid "Template URL (with {category})"
|
||||
|
|
@ -4896,7 +5709,7 @@ msgstr "Vorlagen URL (mit {Kategorie})"
|
|||
|
||||
#: ../../addon/uhremotestorage/uhremotestorage.php:86
|
||||
msgid "OAuth end-point"
|
||||
msgstr "OAuth end-point"
|
||||
msgstr "OAuth Endpunkt"
|
||||
|
||||
#: ../../addon/uhremotestorage/uhremotestorage.php:87
|
||||
msgid "Api"
|
||||
|
|
@ -5028,7 +5841,7 @@ msgstr "Drupal Seite verwendet bereinigte URLs"
|
|||
msgid "Post to Drupal by default"
|
||||
msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei Drupal"
|
||||
|
||||
#: ../../addon/drpost/drpost.php:184 ../../addon/wppost/wppost.php:199
|
||||
#: ../../addon/drpost/drpost.php:184 ../../addon/wppost/wppost.php:201
|
||||
#: ../../addon/blogger/blogger.php:172 ../../addon/posterous/posterous.php:189
|
||||
msgid "Post from Friendica"
|
||||
msgstr "Beitrag via Friendica"
|
||||
|
|
@ -5115,6 +5928,30 @@ msgstr "OEmbed für Youtube Videos verwenden"
|
|||
msgid "URL to embed:"
|
||||
msgstr "URL zum Einbetten:"
|
||||
|
||||
#: ../../addon/forumlist/forumlist.php:57
|
||||
msgid "show/hide"
|
||||
msgstr "anzeigen/verbergen"
|
||||
|
||||
#: ../../addon/forumlist/forumlist.php:72
|
||||
msgid "No forum subscriptions"
|
||||
msgstr "Keine Foren-Mitgliedschaften."
|
||||
|
||||
#: ../../addon/forumlist/forumlist.php:124
|
||||
msgid "Forumlist settings updated."
|
||||
msgstr "Einstellungen zur Foren-Liste aktualisiert."
|
||||
|
||||
#: ../../addon/forumlist/forumlist.php:153
|
||||
msgid "Forumlist Settings"
|
||||
msgstr "Foren-Liste Einstellungen"
|
||||
|
||||
#: ../../addon/forumlist/forumlist.php:158
|
||||
msgid "Randomise Forumlist/Forum list"
|
||||
msgstr "Zufällige Zusammenstellung der Foren-Liste"
|
||||
|
||||
#: ../../addon/forumlist/forumlist.php:161
|
||||
msgid "Show forumlists/forums on profile forumlist"
|
||||
msgstr "Liste der Foren deren Abonnement du bist in deinem Profil anzeigen:"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:36
|
||||
msgid "Impressum"
|
||||
msgstr "Impressum"
|
||||
|
|
@ -5273,6 +6110,82 @@ msgstr "Standard Zoom"
|
|||
msgid "The default zoom level. (1:world, 18:highest)"
|
||||
msgstr "Standard Zoomlevel (1: Welt; 18: höchstes)"
|
||||
|
||||
#: ../../addon/group_text/group_text.php:46
|
||||
#: ../../addon/editplain/editplain.php:46
|
||||
msgid "Editplain settings updated."
|
||||
msgstr "Editplain Einstellungen aktualisiert"
|
||||
|
||||
#: ../../addon/group_text/group_text.php:76
|
||||
msgid "Group Text"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/group_text/group_text.php:78
|
||||
msgid "Use a text only (non-image) group selector in the \"group edit\" menu"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/libravatar/libravatar.php:14
|
||||
msgid "Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"
|
||||
msgstr "Kann Libravatar NICHT erfolgreich installieren.<br>PHP >=5.3 wird benötigt"
|
||||
|
||||
#: ../../addon/libravatar/libravatar.php:73
|
||||
#: ../../addon/gravatar/gravatar.php:71
|
||||
msgid "generic profile image"
|
||||
msgstr "allgemeines Profilbild"
|
||||
|
||||
#: ../../addon/libravatar/libravatar.php:74
|
||||
#: ../../addon/gravatar/gravatar.php:72
|
||||
msgid "random geometric pattern"
|
||||
msgstr "zufällig erzeugtes geometrisches Muster"
|
||||
|
||||
#: ../../addon/libravatar/libravatar.php:75
|
||||
#: ../../addon/gravatar/gravatar.php:73
|
||||
msgid "monster face"
|
||||
msgstr "Monstergesicht"
|
||||
|
||||
#: ../../addon/libravatar/libravatar.php:76
|
||||
#: ../../addon/gravatar/gravatar.php:74
|
||||
msgid "computer generated face"
|
||||
msgstr "Computergesicht"
|
||||
|
||||
#: ../../addon/libravatar/libravatar.php:77
|
||||
#: ../../addon/gravatar/gravatar.php:75
|
||||
msgid "retro arcade style face"
|
||||
msgstr "Retro Arcade Design Gesicht"
|
||||
|
||||
#: ../../addon/libravatar/libravatar.php:83
|
||||
#, php-format
|
||||
msgid "Your PHP version %s is lower than the required PHP >= 5.3."
|
||||
msgstr "Deine PHP Version %s ist niedriger als die benötigte Version PHP >= 5.3."
|
||||
|
||||
#: ../../addon/libravatar/libravatar.php:84
|
||||
msgid "This addon is not functional on your server."
|
||||
msgstr "Dieses Addon funktioniert auf deinem Server nicht."
|
||||
|
||||
#: ../../addon/libravatar/libravatar.php:93
|
||||
#: ../../addon/gravatar/gravatar.php:89
|
||||
msgid "Information"
|
||||
msgstr "Information"
|
||||
|
||||
#: ../../addon/libravatar/libravatar.php:93
|
||||
msgid ""
|
||||
"Gravatar addon is installed. Please disable the Gravatar addon.<br>The "
|
||||
"Libravatar addon will fall back to Gravatar if nothing was found at "
|
||||
"Libravatar."
|
||||
msgstr "Das Gravatar Addon ist installiert. Bitte schalte das Gravatar Addon aus.<br>Das Libravatar Addon nutzt Gravater, sollte nichts auf Libravatar gefunden werden."
|
||||
|
||||
#: ../../addon/libravatar/libravatar.php:100
|
||||
#: ../../addon/gravatar/gravatar.php:96
|
||||
msgid "Default avatar image"
|
||||
msgstr "Standard Profilbild "
|
||||
|
||||
#: ../../addon/libravatar/libravatar.php:100
|
||||
msgid "Select default avatar image if none was found. See README"
|
||||
msgstr "Das Standard Avatar Bild wurde nicht gefunden. Siehe README"
|
||||
|
||||
#: ../../addon/libravatar/libravatar.php:112
|
||||
msgid "Libravatar settings updated."
|
||||
msgstr "Libravatar Einstellungen sind aktualisiert."
|
||||
|
||||
#: ../../addon/libertree/libertree.php:36
|
||||
msgid "Post to libertree"
|
||||
msgstr "bei libertree veröffentlichen"
|
||||
|
|
@ -5297,6 +6210,18 @@ msgstr "Libertree URL"
|
|||
msgid "Post to Libertree by default"
|
||||
msgstr "Standardmäßig bei libertree veröffentlichen"
|
||||
|
||||
#: ../../addon/altpager/altpager.php:46
|
||||
msgid "Altpager settings updated."
|
||||
msgstr "Altpager Einstellungen sind aktualisiert."
|
||||
|
||||
#: ../../addon/altpager/altpager.php:79
|
||||
msgid "Alternate Pagination Setting"
|
||||
msgstr "Alternative Seitenumbruch Einstellung"
|
||||
|
||||
#: ../../addon/altpager/altpager.php:81
|
||||
msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?"
|
||||
msgstr "Nutze Links zu \"neuer\" und \"älter\" Seiten, statt Seiten Nummern?"
|
||||
|
||||
#: ../../addon/mathjax/mathjax.php:37
|
||||
msgid ""
|
||||
"The MathJax addon renders mathematical formulae written using the LaTeX "
|
||||
|
|
@ -5318,10 +6243,6 @@ msgid ""
|
|||
"be either the MathJax CDN or another installation of MathJax."
|
||||
msgstr "Die URL der MathJax Javascript-Datei, die verwendet werden soll. Diese kann entweder aus der MathJax CDN oder einer anderen Quelle stammen."
|
||||
|
||||
#: ../../addon/editplain/editplain.php:46
|
||||
msgid "Editplain settings updated."
|
||||
msgstr "Editplain Einstellungen aktualisiert"
|
||||
|
||||
#: ../../addon/editplain/editplain.php:76
|
||||
msgid "Editplain Settings"
|
||||
msgstr "Editplain Einstellungen"
|
||||
|
|
@ -5330,43 +6251,26 @@ msgstr "Editplain Einstellungen"
|
|||
msgid "Disable richtext status editor"
|
||||
msgstr "RichText Editor deaktivieren"
|
||||
|
||||
#: ../../addon/gravatar/gravatar.php:71
|
||||
msgid "generic profile image"
|
||||
msgstr "allgemeines Profilbild"
|
||||
#: ../../addon/gravatar/gravatar.php:89
|
||||
msgid ""
|
||||
"Libravatar addon is installed, too. Please disable Libravatar addon or this "
|
||||
"Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
|
||||
"nothing was found at Libravatar."
|
||||
msgstr "Das Libravatar Addon ist ebenfalls installiert. Bitte deaktiviere das Libravatar Addon oder dieses Gravatar Addon.<br>Das Libravatar Addon nutzt Gravater, sollte nichts auf Libravatar gefunden werden."
|
||||
|
||||
#: ../../addon/gravatar/gravatar.php:72
|
||||
msgid "random geometric pattern"
|
||||
msgstr "zufällig erzeugtes geometrisches Muster"
|
||||
|
||||
#: ../../addon/gravatar/gravatar.php:73
|
||||
msgid "monster face"
|
||||
msgstr "Monstergesicht"
|
||||
|
||||
#: ../../addon/gravatar/gravatar.php:74
|
||||
msgid "computer generated face"
|
||||
msgstr "Computergesicht"
|
||||
|
||||
#: ../../addon/gravatar/gravatar.php:75
|
||||
msgid "retro arcade style face"
|
||||
msgstr "Retro Arcade Design Gesicht"
|
||||
|
||||
#: ../../addon/gravatar/gravatar.php:87
|
||||
msgid "Default avatar image"
|
||||
msgstr "Standard Profilbild "
|
||||
|
||||
#: ../../addon/gravatar/gravatar.php:87
|
||||
#: ../../addon/gravatar/gravatar.php:96
|
||||
msgid "Select default avatar image if none was found at Gravatar. See README"
|
||||
msgstr "Wähle das Standardgesicht, wenn kein Bild auf Gravatar gefunden wurde. Schaue auch sonst im README nach."
|
||||
|
||||
#: ../../addon/gravatar/gravatar.php:88
|
||||
#: ../../addon/gravatar/gravatar.php:97
|
||||
msgid "Rating of images"
|
||||
msgstr "Bildbewertung"
|
||||
|
||||
#: ../../addon/gravatar/gravatar.php:88
|
||||
#: ../../addon/gravatar/gravatar.php:97
|
||||
msgid "Select the appropriate avatar rating for your site. See README"
|
||||
msgstr "Wähle eine angemessene Bildbewertung für Deinen Server. Schaue auch sonst im README nach."
|
||||
msgstr "Wähle eine angemessene Bildbewertung für deinen Server. Schaue auch sonst im README nach."
|
||||
|
||||
#: ../../addon/gravatar/gravatar.php:102
|
||||
#: ../../addon/gravatar/gravatar.php:111
|
||||
msgid "Gravatar settings updated."
|
||||
msgstr "Gravatar Einstellungen aktualisiert."
|
||||
|
||||
|
|
@ -5449,7 +6353,7 @@ msgid ""
|
|||
"There are preconfigured OAuth key pairs for some StatusNet servers "
|
||||
"available. If you are useing one of them, please use these credentials. If "
|
||||
"not feel free to connect to any other StatusNet instance (see below)."
|
||||
msgstr "Für einige StatusNet Server sind voreingestellt OAuth Schlüsselpaare verfügbar. Solltest du einen dieser Server benutzen, dann verwende bitte diese Schlüssel. Falls nicht, stellen stattdessen eine Verbindung zu irgend einem anderen StatusNet Server her (siehe unten)."
|
||||
msgstr "Für einige StatusNet Server sind voreingestellte OAuth Schlüsselpaare verfügbar. Solltest du einen dieser Server benutzen, dann verwende bitte diese Schlüssel. Falls nicht, stelle stattdessen eine Verbindung zu irgend einem anderen StatusNet Server her (siehe unten)."
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:280
|
||||
msgid "Provide your own OAuth Credentials"
|
||||
|
|
@ -5539,7 +6443,7 @@ msgstr "Sende verlinkte #-Tags und @-Namen nach StatusNet"
|
|||
msgid "Clear OAuth configuration"
|
||||
msgstr "OAuth-Konfiguration löschen"
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:553
|
||||
#: ../../addon/statusnet/statusnet.php:568
|
||||
msgid "API URL"
|
||||
msgstr "API-URL"
|
||||
|
||||
|
|
@ -5579,10 +6483,6 @@ msgstr "Numfriends Einstellungen aktualisiert"
|
|||
msgid "Numfriends Settings"
|
||||
msgstr "Numfriends Einstellungen"
|
||||
|
||||
#: ../../addon/numfriends/numfriends.php:79
|
||||
msgid "How many contacts to display on profile sidebar"
|
||||
msgstr "Wie viele Kontakte sollen in der Seitenleiste angezeigt werden"
|
||||
|
||||
#: ../../addon/gnot/gnot.php:48
|
||||
msgid "Gnot settings updated."
|
||||
msgstr "Gnot Einstellungen aktualisiert."
|
||||
|
|
@ -5636,11 +6536,11 @@ msgstr "Standardmäßig auf WordPress veröffentlichen"
|
|||
|
||||
#: ../../addon/wppost/wppost.php:103
|
||||
msgid "Provide a backlink to the Friendica post"
|
||||
msgstr "Einen zurück zum Friendica-Beitrag hinzufügen"
|
||||
msgstr "Einen Link zurück zum Friendica-Beitrag hinzufügen"
|
||||
|
||||
#: ../../addon/wppost/wppost.php:205
|
||||
#: ../../addon/wppost/wppost.php:207
|
||||
msgid "Read the original post and comment stream on Friendica"
|
||||
msgstr "Den Original-Beitrag samt Kommentaren bei Friendica lesen"
|
||||
msgstr "Den Originalbeitrag samt Kommentaren bei Friendica lesen"
|
||||
|
||||
#: ../../addon/showmore/showmore.php:38
|
||||
msgid "\"Show more\" Settings"
|
||||
|
|
@ -5670,7 +6570,7 @@ msgid ""
|
|||
"If you do not want that your visits are logged this way you <a href='%s'>can"
|
||||
" set a cookie to prevent Piwik from tracking further visits of the site</a> "
|
||||
"(opt-out)."
|
||||
msgstr "Wenn Du nicht willst, dass Deine Besuche auf diese Weise gespeichert werden, kannst Du <a href='%s'>ein Cookie setzen</a>. Dann wird Piwik Dich auf dieser Website nicht mehr verfolgen (opt-out)."
|
||||
msgstr "Wenn du nicht willst, dass deine Besuche auf diese Weise gespeichert werden, kannst du <a href='%s'>ein Cookie setzen</a>. Dann wird Piwik dich auf dieser Website nicht mehr verfolgen (opt-out)."
|
||||
|
||||
#: ../../addon/piwik/piwik.php:90
|
||||
msgid "Piwik Base URL"
|
||||
|
|
@ -5756,11 +6656,11 @@ msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei Twitter"
|
|||
msgid "Send linked #-tags and @-names to Twitter"
|
||||
msgstr "Sende verlinkte #-Tags und @-Namen nach Twitter"
|
||||
|
||||
#: ../../addon/twitter/twitter.php:383
|
||||
#: ../../addon/twitter/twitter.php:396
|
||||
msgid "Consumer key"
|
||||
msgstr "Consumer Key"
|
||||
|
||||
#: ../../addon/twitter/twitter.php:384
|
||||
#: ../../addon/twitter/twitter.php:397
|
||||
msgid "Consumer secret"
|
||||
msgstr "Consumer Secret"
|
||||
|
||||
|
|
@ -6060,10 +6960,6 @@ msgstr "Mitte"
|
|||
msgid "Set colour scheme"
|
||||
msgstr "Farbschema wählen"
|
||||
|
||||
#: ../../include/profile_advanced.php:17 ../../boot.php:1111
|
||||
msgid "Gender:"
|
||||
msgstr "Geschlecht:"
|
||||
|
||||
#: ../../include/profile_advanced.php:22
|
||||
msgid "j F, Y"
|
||||
msgstr "j F, Y"
|
||||
|
|
@ -6072,8 +6968,7 @@ msgstr "j F, Y"
|
|||
msgid "j F"
|
||||
msgstr "j F"
|
||||
|
||||
#: ../../include/profile_advanced.php:30 ../../include/datetime.php:450
|
||||
#: ../../include/items.php:1446
|
||||
#: ../../include/profile_advanced.php:30
|
||||
msgid "Birthday:"
|
||||
msgstr "Geburtstag:"
|
||||
|
||||
|
|
@ -6081,19 +6976,11 @@ msgstr "Geburtstag:"
|
|||
msgid "Age:"
|
||||
msgstr "Alter:"
|
||||
|
||||
#: ../../include/profile_advanced.php:37 ../../boot.php:1114
|
||||
msgid "Status:"
|
||||
msgstr "Status:"
|
||||
|
||||
#: ../../include/profile_advanced.php:43
|
||||
#, php-format
|
||||
msgid "for %1$d %2$s"
|
||||
msgstr "für %1$d %2$s"
|
||||
|
||||
#: ../../include/profile_advanced.php:48 ../../boot.php:1116
|
||||
msgid "Homepage:"
|
||||
msgstr "Homepage:"
|
||||
|
||||
#: ../../include/profile_advanced.php:52
|
||||
msgid "Tags:"
|
||||
msgstr "Tags"
|
||||
|
|
@ -6102,43 +6989,39 @@ msgstr "Tags"
|
|||
msgid "Religion:"
|
||||
msgstr "Religion:"
|
||||
|
||||
#: ../../include/profile_advanced.php:58
|
||||
msgid "About:"
|
||||
msgstr "Über:"
|
||||
|
||||
#: ../../include/profile_advanced.php:60
|
||||
msgid "Hobbies/Interests:"
|
||||
msgstr "Hobbies/Interessen:"
|
||||
|
||||
#: ../../include/profile_advanced.php:62
|
||||
#: ../../include/profile_advanced.php:67
|
||||
msgid "Contact information and Social Networks:"
|
||||
msgstr "Kontaktinformationen und Soziale Netzwerke:"
|
||||
|
||||
#: ../../include/profile_advanced.php:64
|
||||
#: ../../include/profile_advanced.php:69
|
||||
msgid "Musical interests:"
|
||||
msgstr "Musikalische Interessen:"
|
||||
|
||||
#: ../../include/profile_advanced.php:66
|
||||
#: ../../include/profile_advanced.php:71
|
||||
msgid "Books, literature:"
|
||||
msgstr "Literatur/Bücher:"
|
||||
|
||||
#: ../../include/profile_advanced.php:68
|
||||
#: ../../include/profile_advanced.php:73
|
||||
msgid "Television:"
|
||||
msgstr "Fernsehen:"
|
||||
|
||||
#: ../../include/profile_advanced.php:70
|
||||
#: ../../include/profile_advanced.php:75
|
||||
msgid "Film/dance/culture/entertainment:"
|
||||
msgstr "Filme/Tänze/Kultur/Unterhaltung:"
|
||||
|
||||
#: ../../include/profile_advanced.php:72
|
||||
#: ../../include/profile_advanced.php:77
|
||||
msgid "Love/Romance:"
|
||||
msgstr "Liebesleben:"
|
||||
|
||||
#: ../../include/profile_advanced.php:74
|
||||
#: ../../include/profile_advanced.php:79
|
||||
msgid "Work/employment:"
|
||||
msgstr "Arbeit/Beschäftigung:"
|
||||
|
||||
#: ../../include/profile_advanced.php:76
|
||||
#: ../../include/profile_advanced.php:81
|
||||
msgid "School/education:"
|
||||
msgstr "Schule/Ausbildung:"
|
||||
|
||||
|
|
@ -6178,18 +7061,6 @@ msgstr "Stündlich"
|
|||
msgid "Twice daily"
|
||||
msgstr "Zweimal täglich"
|
||||
|
||||
#: ../../include/contact_selectors.php:59
|
||||
msgid "Daily"
|
||||
msgstr "Täglich"
|
||||
|
||||
#: ../../include/contact_selectors.php:60
|
||||
msgid "Weekly"
|
||||
msgstr "Wöchentlich"
|
||||
|
||||
#: ../../include/contact_selectors.php:61
|
||||
msgid "Monthly"
|
||||
msgstr "Monatlich"
|
||||
|
||||
#: ../../include/contact_selectors.php:77
|
||||
msgid "OStatus"
|
||||
msgstr "OStatus"
|
||||
|
|
@ -6358,7 +7229,7 @@ msgstr "Untreu"
|
|||
msgid "Sex Addict"
|
||||
msgstr "Sexbesessen"
|
||||
|
||||
#: ../../include/profile_selectors.php:42 ../../include/user.php:272
|
||||
#: ../../include/profile_selectors.php:42 ../../include/user.php:278
|
||||
msgid "Friends"
|
||||
msgstr "Freunde"
|
||||
|
||||
|
|
@ -6446,22 +7317,21 @@ msgstr "Ist mir nicht wichtig"
|
|||
msgid "Ask me"
|
||||
msgstr "Frag mich"
|
||||
|
||||
#: ../../include/event.php:17 ../../include/bb2diaspora.php:249
|
||||
#: ../../include/event.php:20 ../../include/bb2diaspora.php:439
|
||||
msgid "Starts:"
|
||||
msgstr "Beginnt:"
|
||||
|
||||
#: ../../include/event.php:27 ../../include/bb2diaspora.php:257
|
||||
#: ../../include/event.php:30 ../../include/bb2diaspora.php:447
|
||||
msgid "Finishes:"
|
||||
msgstr "Endet:"
|
||||
|
||||
#: ../../include/delivery.php:456 ../../include/notifier.php:678
|
||||
#: ../../include/delivery.php:456 ../../include/notifier.php:703
|
||||
msgid "(no subject)"
|
||||
msgstr "(kein Betreff)"
|
||||
|
||||
#: ../../include/delivery.php:463 ../../include/enotify.php:26
|
||||
#: ../../include/notifier.php:685
|
||||
msgid "noreply"
|
||||
msgstr "noreply"
|
||||
#: ../../include/Scrape.php:572
|
||||
msgid " on Last.fm"
|
||||
msgstr " bei Last.fm"
|
||||
|
||||
#: ../../include/text.php:243
|
||||
msgid "prev"
|
||||
|
|
@ -6479,158 +7349,186 @@ msgstr "letzte"
|
|||
msgid "next"
|
||||
msgstr "nächste"
|
||||
|
||||
#: ../../include/text.php:568
|
||||
#: ../../include/text.php:295
|
||||
msgid "newer"
|
||||
msgstr "neuer"
|
||||
|
||||
#: ../../include/text.php:299
|
||||
msgid "older"
|
||||
msgstr "älter"
|
||||
|
||||
#: ../../include/text.php:597
|
||||
msgid "No contacts"
|
||||
msgstr "Keine Kontakte"
|
||||
|
||||
#: ../../include/text.php:577
|
||||
#: ../../include/text.php:606
|
||||
#, php-format
|
||||
msgid "%d Contact"
|
||||
msgid_plural "%d Contacts"
|
||||
msgstr[0] "%d Kontakt"
|
||||
msgstr[1] "%d Kontakte"
|
||||
|
||||
#: ../../include/text.php:835
|
||||
msgid "Monday"
|
||||
msgstr "Montag"
|
||||
#: ../../include/text.php:719
|
||||
msgid "poke"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:835
|
||||
msgid "Tuesday"
|
||||
msgstr "Dienstag"
|
||||
#: ../../include/text.php:719 ../../include/conversation.php:201
|
||||
msgid "poked"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:835
|
||||
msgid "Wednesday"
|
||||
msgstr "Mittwoch"
|
||||
#: ../../include/text.php:720
|
||||
msgid "ping"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:835
|
||||
msgid "Thursday"
|
||||
msgstr "Donnerstag"
|
||||
#: ../../include/text.php:720
|
||||
msgid "pinged"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:835
|
||||
msgid "Friday"
|
||||
msgstr "Freitag"
|
||||
#: ../../include/text.php:721
|
||||
msgid "prod"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:835
|
||||
msgid "Saturday"
|
||||
msgstr "Samstag"
|
||||
#: ../../include/text.php:721
|
||||
msgid "prodded"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:835
|
||||
msgid "Sunday"
|
||||
msgstr "Sonntag"
|
||||
#: ../../include/text.php:722
|
||||
msgid "slap"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:839
|
||||
#: ../../include/text.php:722
|
||||
msgid "slapped"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:723
|
||||
msgid "finger"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:723
|
||||
msgid "fingered"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:724
|
||||
msgid "rebuff"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:724
|
||||
msgid "rebuffed"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:888
|
||||
msgid "January"
|
||||
msgstr "Januar"
|
||||
|
||||
#: ../../include/text.php:839
|
||||
#: ../../include/text.php:888
|
||||
msgid "February"
|
||||
msgstr "Februar"
|
||||
|
||||
#: ../../include/text.php:839
|
||||
#: ../../include/text.php:888
|
||||
msgid "March"
|
||||
msgstr "März"
|
||||
|
||||
#: ../../include/text.php:839
|
||||
#: ../../include/text.php:888
|
||||
msgid "April"
|
||||
msgstr "April"
|
||||
|
||||
#: ../../include/text.php:839
|
||||
#: ../../include/text.php:888
|
||||
msgid "May"
|
||||
msgstr "Mai"
|
||||
|
||||
#: ../../include/text.php:839
|
||||
#: ../../include/text.php:888
|
||||
msgid "June"
|
||||
msgstr "Juni"
|
||||
|
||||
#: ../../include/text.php:839
|
||||
#: ../../include/text.php:888
|
||||
msgid "July"
|
||||
msgstr "Juli"
|
||||
|
||||
#: ../../include/text.php:839
|
||||
#: ../../include/text.php:888
|
||||
msgid "August"
|
||||
msgstr "August"
|
||||
|
||||
#: ../../include/text.php:839
|
||||
#: ../../include/text.php:888
|
||||
msgid "September"
|
||||
msgstr "September"
|
||||
|
||||
#: ../../include/text.php:839
|
||||
#: ../../include/text.php:888
|
||||
msgid "October"
|
||||
msgstr "Oktober"
|
||||
|
||||
#: ../../include/text.php:839
|
||||
#: ../../include/text.php:888
|
||||
msgid "November"
|
||||
msgstr "November"
|
||||
|
||||
#: ../../include/text.php:839
|
||||
#: ../../include/text.php:888
|
||||
msgid "December"
|
||||
msgstr "Dezember"
|
||||
|
||||
#: ../../include/text.php:925
|
||||
#: ../../include/text.php:974
|
||||
msgid "bytes"
|
||||
msgstr "Byte"
|
||||
|
||||
#: ../../include/text.php:945 ../../include/text.php:960
|
||||
#: ../../include/text.php:994 ../../include/text.php:1009
|
||||
msgid "remove"
|
||||
msgstr "löschen"
|
||||
|
||||
#: ../../include/text.php:945 ../../include/text.php:960
|
||||
#: ../../include/text.php:994 ../../include/text.php:1009
|
||||
msgid "[remove]"
|
||||
msgstr "[löschen]"
|
||||
|
||||
#: ../../include/text.php:948
|
||||
#: ../../include/text.php:997
|
||||
msgid "Categories:"
|
||||
msgstr "Kategorien:"
|
||||
|
||||
#: ../../include/text.php:963
|
||||
#: ../../include/text.php:1012
|
||||
msgid "Filed under:"
|
||||
msgstr "Abgelegt unter:"
|
||||
|
||||
#: ../../include/text.php:979 ../../include/text.php:991
|
||||
#: ../../include/text.php:1028 ../../include/text.php:1040
|
||||
msgid "Click to open/close"
|
||||
msgstr "Zum öffnen/schließen klicken"
|
||||
|
||||
#: ../../include/text.php:1096 ../../include/user.php:230
|
||||
#: ../../include/text.php:1146 ../../include/user.php:236
|
||||
msgid "default"
|
||||
msgstr "standard"
|
||||
msgstr "Standard"
|
||||
|
||||
#: ../../include/text.php:1108
|
||||
#: ../../include/text.php:1158
|
||||
msgid "Select an alternate language"
|
||||
msgstr "Alternative Sprache auswählen"
|
||||
|
||||
#: ../../include/text.php:1318
|
||||
#: ../../include/text.php:1368
|
||||
msgid "activity"
|
||||
msgstr "Aktivität"
|
||||
|
||||
#: ../../include/text.php:1320
|
||||
#: ../../include/text.php:1370
|
||||
msgid "comment"
|
||||
msgstr "Kommentar"
|
||||
|
||||
#: ../../include/text.php:1321
|
||||
#: ../../include/text.php:1371
|
||||
msgid "post"
|
||||
msgstr "Beitrag"
|
||||
|
||||
#: ../../include/text.php:1476
|
||||
#: ../../include/text.php:1526
|
||||
msgid "Item filed"
|
||||
msgstr "Beitrag abgelegt"
|
||||
|
||||
#: ../../include/diaspora.php:593
|
||||
#: ../../include/diaspora.php:691
|
||||
msgid "Sharing notification from Diaspora network"
|
||||
msgstr "Freigabe-Benachrichtigung von Diaspora"
|
||||
|
||||
#: ../../include/diaspora.php:2074
|
||||
#: ../../include/diaspora.php:2202
|
||||
msgid "Attachments:"
|
||||
msgstr "Anhänge:"
|
||||
|
||||
#: ../../include/network.php:827
|
||||
#: ../../include/network.php:849
|
||||
msgid "view full size"
|
||||
msgstr "Volle Größe anzeigen"
|
||||
|
||||
#: ../../include/oembed.php:134
|
||||
#: ../../include/oembed.php:137
|
||||
msgid "Embedded content"
|
||||
msgstr "Eingebetteter Inhalt"
|
||||
|
||||
#: ../../include/oembed.php:143
|
||||
#: ../../include/oembed.php:146
|
||||
msgid "Embedding disabled"
|
||||
msgstr "Einbettungen deaktiviert"
|
||||
|
||||
|
|
@ -6669,7 +7567,7 @@ msgstr "Neue Gruppe erstellen"
|
|||
msgid "Contacts not in any group"
|
||||
msgstr "Kontakte in keiner Gruppe"
|
||||
|
||||
#: ../../include/nav.php:46 ../../boot.php:821
|
||||
#: ../../include/nav.php:46 ../../boot.php:911
|
||||
msgid "Logout"
|
||||
msgstr "Abmelden"
|
||||
|
||||
|
|
@ -6677,7 +7575,7 @@ msgstr "Abmelden"
|
|||
msgid "End this session"
|
||||
msgstr "Diese Sitzung beenden"
|
||||
|
||||
#: ../../include/nav.php:49 ../../boot.php:1508
|
||||
#: ../../include/nav.php:49 ../../boot.php:1623
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
|
|
@ -6739,7 +7637,7 @@ msgstr "Markiere alle Systembenachrichtigungen als gelesen"
|
|||
|
||||
#: ../../include/nav.php:128
|
||||
msgid "Private mail"
|
||||
msgstr "Private Email"
|
||||
msgstr "Private E-Mail"
|
||||
|
||||
#: ../../include/nav.php:129
|
||||
msgid "Inbox"
|
||||
|
|
@ -6757,11 +7655,11 @@ msgstr "Verwalten"
|
|||
msgid "Manage other pages"
|
||||
msgstr "Andere Seiten verwalten"
|
||||
|
||||
#: ../../include/nav.php:138 ../../boot.php:1069
|
||||
#: ../../include/nav.php:138 ../../boot.php:1159
|
||||
msgid "Profiles"
|
||||
msgstr "Profile"
|
||||
|
||||
#: ../../include/nav.php:138 ../../boot.php:1069
|
||||
#: ../../include/nav.php:138 ../../boot.php:1159
|
||||
msgid "Manage/edit profiles"
|
||||
msgstr "Profile verwalten/editieren"
|
||||
|
||||
|
|
@ -6773,7 +7671,7 @@ msgstr "Freunde und Kontakte verwalten/editieren"
|
|||
msgid "Site setup and configuration"
|
||||
msgstr "Einstellungen der Seite und Konfiguration"
|
||||
|
||||
#: ../../include/nav.php:169
|
||||
#: ../../include/nav.php:170
|
||||
msgid "Nothing new here"
|
||||
msgstr "Keine Neuigkeiten."
|
||||
|
||||
|
|
@ -6854,91 +7752,89 @@ msgstr "Die Fehlermeldung lautete:"
|
|||
msgid "Miscellaneous"
|
||||
msgstr "Verschiedenes"
|
||||
|
||||
#: ../../include/datetime.php:131 ../../include/datetime.php:263
|
||||
#: ../../include/datetime.php:153 ../../include/datetime.php:285
|
||||
msgid "year"
|
||||
msgstr "Jahr"
|
||||
|
||||
#: ../../include/datetime.php:136 ../../include/datetime.php:264
|
||||
#: ../../include/datetime.php:158 ../../include/datetime.php:286
|
||||
msgid "month"
|
||||
msgstr "Monat"
|
||||
|
||||
#: ../../include/datetime.php:141 ../../include/datetime.php:266
|
||||
#: ../../include/datetime.php:163 ../../include/datetime.php:288
|
||||
msgid "day"
|
||||
msgstr "Tag"
|
||||
|
||||
#: ../../include/datetime.php:254
|
||||
#: ../../include/datetime.php:276
|
||||
msgid "never"
|
||||
msgstr "nie"
|
||||
|
||||
#: ../../include/datetime.php:260
|
||||
#: ../../include/datetime.php:282
|
||||
msgid "less than a second ago"
|
||||
msgstr "vor weniger als einer Sekunde"
|
||||
|
||||
#: ../../include/datetime.php:263
|
||||
msgid "years"
|
||||
msgstr "Jahre"
|
||||
|
||||
#: ../../include/datetime.php:264
|
||||
msgid "months"
|
||||
msgstr "Monate"
|
||||
|
||||
#: ../../include/datetime.php:265
|
||||
#: ../../include/datetime.php:287
|
||||
msgid "week"
|
||||
msgstr "Woche"
|
||||
|
||||
#: ../../include/datetime.php:265
|
||||
msgid "weeks"
|
||||
msgstr "Wochen"
|
||||
|
||||
#: ../../include/datetime.php:266
|
||||
msgid "days"
|
||||
msgstr "Tage"
|
||||
|
||||
#: ../../include/datetime.php:267
|
||||
#: ../../include/datetime.php:289
|
||||
msgid "hour"
|
||||
msgstr "Stunde"
|
||||
|
||||
#: ../../include/datetime.php:267
|
||||
#: ../../include/datetime.php:289
|
||||
msgid "hours"
|
||||
msgstr "Stunden"
|
||||
|
||||
#: ../../include/datetime.php:268
|
||||
#: ../../include/datetime.php:290
|
||||
msgid "minute"
|
||||
msgstr "Minute"
|
||||
|
||||
#: ../../include/datetime.php:268
|
||||
#: ../../include/datetime.php:290
|
||||
msgid "minutes"
|
||||
msgstr "Minuten"
|
||||
|
||||
#: ../../include/datetime.php:269
|
||||
#: ../../include/datetime.php:291
|
||||
msgid "second"
|
||||
msgstr "Sekunde"
|
||||
|
||||
#: ../../include/datetime.php:269
|
||||
#: ../../include/datetime.php:291
|
||||
msgid "seconds"
|
||||
msgstr "Sekunden"
|
||||
|
||||
#: ../../include/datetime.php:278
|
||||
#: ../../include/datetime.php:300
|
||||
#, php-format
|
||||
msgid "%1$d %2$s ago"
|
||||
msgstr "%1$d %2$s her"
|
||||
|
||||
#: ../../include/datetime.php:472 ../../include/items.php:1621
|
||||
#, php-format
|
||||
msgid "%s's birthday"
|
||||
msgstr "%ss Geburtstag"
|
||||
|
||||
#: ../../include/datetime.php:473 ../../include/items.php:1622
|
||||
#, php-format
|
||||
msgid "Happy Birthday %s"
|
||||
msgstr "Herzlichen Glückwunsch %s"
|
||||
|
||||
#: ../../include/onepoll.php:399
|
||||
msgid "From: "
|
||||
msgstr "Von: "
|
||||
|
||||
#: ../../include/bbcode.php:210 ../../include/bbcode.php:230
|
||||
#: ../../include/bbcode.php:102 ../../include/bbcode.php:323
|
||||
msgid "Image/photo"
|
||||
msgstr "Bild/Foto"
|
||||
|
||||
#: ../../include/bbcode.php:288 ../../include/bbcode.php:308
|
||||
msgid "$1 wrote:"
|
||||
msgstr "$1 hat geschrieben:"
|
||||
|
||||
#: ../../include/bbcode.php:245 ../../include/bbcode.php:314
|
||||
msgid "Image/photo"
|
||||
msgstr "Bild/Foto"
|
||||
#: ../../include/bbcode.php:327
|
||||
msgid "Encrypted content"
|
||||
msgstr "Verschlüsselter Inhalt"
|
||||
|
||||
#: ../../include/dba.php:41
|
||||
#, php-format
|
||||
msgid "Cannot locate DNS info for database server '%s'"
|
||||
msgstr "Kann die DNS Informationen für den Datenbanken Server '%s' nicht ermitteln."
|
||||
msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
|
||||
|
||||
#: ../../include/message.php:15 ../../include/message.php:171
|
||||
msgid "[no subject]"
|
||||
|
|
@ -6974,12 +7870,12 @@ msgstr "[Friendica Meldung] Neue Nachricht erhalten von %s"
|
|||
#: ../../include/enotify.php:44
|
||||
#, php-format
|
||||
msgid "%1$s sent you a new private message at %2$s."
|
||||
msgstr "%1$s hat Dir eine neues private Nachricht geschickt auf %2$s."
|
||||
msgstr "%1$s hat dir eine neue private Nachricht auf %2$s geschickt."
|
||||
|
||||
#: ../../include/enotify.php:45
|
||||
#, php-format
|
||||
msgid "%1$s sent you %2$s."
|
||||
msgstr "%1$s schickte Dir %2$s."
|
||||
msgstr "%1$s schickte dir %2$s."
|
||||
|
||||
#: ../../include/enotify.php:45
|
||||
msgid "a private message"
|
||||
|
|
@ -6990,130 +7886,146 @@ msgstr "eine private Nachricht"
|
|||
msgid "Please visit %s to view and/or reply to your private messages."
|
||||
msgstr "Bitte besuche %s, um deine privaten Nachrichten anzusehen und/oder zu beantworten."
|
||||
|
||||
#: ../../include/enotify.php:73
|
||||
#: ../../include/enotify.php:87
|
||||
#, php-format
|
||||
msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
|
||||
msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]"
|
||||
|
||||
#: ../../include/enotify.php:80
|
||||
#: ../../include/enotify.php:94
|
||||
#, php-format
|
||||
msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
|
||||
msgstr "%1$s kommentierte [url=%2$s]%3$s's %4$s[/url]"
|
||||
msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]"
|
||||
|
||||
#: ../../include/enotify.php:88
|
||||
#: ../../include/enotify.php:102
|
||||
#, php-format
|
||||
msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
|
||||
msgstr "%1$s kommentierte [url=%2$s]Deinen Beitrag %3$s[/url]"
|
||||
msgstr "%1$s kommentierte [url=%2$s]deinen Beitrag %3$s[/url]"
|
||||
|
||||
#: ../../include/enotify.php:98
|
||||
#: ../../include/enotify.php:112
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
|
||||
msgstr "[Friendica Meldung] Kommentar zum Beitrag #%1$d von %2$s"
|
||||
|
||||
#: ../../include/enotify.php:99
|
||||
#: ../../include/enotify.php:113
|
||||
#, php-format
|
||||
msgid "%s commented on an item/conversation you have been following."
|
||||
msgstr "%s hat einen Beitrag kommentiert, dem du folgst."
|
||||
|
||||
#: ../../include/enotify.php:102 ../../include/enotify.php:117
|
||||
#: ../../include/enotify.php:130 ../../include/enotify.php:143
|
||||
#: ../../include/enotify.php:116 ../../include/enotify.php:131
|
||||
#: ../../include/enotify.php:144 ../../include/enotify.php:162
|
||||
#: ../../include/enotify.php:175
|
||||
#, php-format
|
||||
msgid "Please visit %s to view and/or reply to the conversation."
|
||||
msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
|
||||
|
||||
#: ../../include/enotify.php:109
|
||||
#: ../../include/enotify.php:123
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %s posted to your profile wall"
|
||||
msgstr "[Friendica Meldung] %s hat auf Deine Pinnwand geschrieben"
|
||||
|
||||
#: ../../include/enotify.php:111
|
||||
#, php-format
|
||||
msgid "%1$s posted to your profile wall at %2$s"
|
||||
msgstr "%1$s schrieb auf Deine Pinnwand auf %2$s"
|
||||
|
||||
#: ../../include/enotify.php:113
|
||||
#, php-format
|
||||
msgid "%1$s posted to [url=%2s]your wall[/url]"
|
||||
msgstr "%1$s schrieb auf [url=%2s]Deine Pinnwand[/url]"
|
||||
|
||||
#: ../../include/enotify.php:124
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %s tagged you"
|
||||
msgstr "[Friendica Meldung] %s hat Dich erwähnt"
|
||||
msgstr "[Friendica Meldung] %s hat auf deine Pinnwand geschrieben"
|
||||
|
||||
#: ../../include/enotify.php:125
|
||||
#, php-format
|
||||
msgid "%1$s tagged you at %2$s"
|
||||
msgstr "%1$s erwähnte Dich auf %2$s"
|
||||
msgid "%1$s posted to your profile wall at %2$s"
|
||||
msgstr "%1$s schrieb auf %2$s auf deine Pinnwand"
|
||||
|
||||
#: ../../include/enotify.php:126
|
||||
#: ../../include/enotify.php:127
|
||||
#, php-format
|
||||
msgid "%1$s [url=%2s]tagged you[/url]."
|
||||
msgstr "%1$s [url=%2s]erwähnte Dich[/url]."
|
||||
|
||||
#: ../../include/enotify.php:137
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %s tagged your post"
|
||||
msgstr "[Friendica Meldung] %s markierte Deinen Beitrag"
|
||||
msgid "%1$s posted to [url=%2$s]your wall[/url]"
|
||||
msgstr "%1$s hat etwas auf [url=%2$s]deiner Pinnwand[/url] gepostet"
|
||||
|
||||
#: ../../include/enotify.php:138
|
||||
#, php-format
|
||||
msgid "%1$s tagged your post at %2$s"
|
||||
msgstr "%1$s erwähnte Deinen Beitrag auf %2$s"
|
||||
msgid "[Friendica:Notify] %s tagged you"
|
||||
msgstr "[Friendica Meldung] %s hat dich erwähnt"
|
||||
|
||||
#: ../../include/enotify.php:139
|
||||
#, php-format
|
||||
msgid "%1$s tagged you at %2$s"
|
||||
msgstr "%1$s erwähnte dich auf %2$s"
|
||||
|
||||
#: ../../include/enotify.php:140
|
||||
#, php-format
|
||||
msgid "%1$s [url=%2$s]tagged you[/url]."
|
||||
msgstr "%1$s [url=%2$s]erwähnte dich[/url]."
|
||||
|
||||
#: ../../include/enotify.php:152
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %1$s poked you"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/enotify.php:153
|
||||
#, php-format
|
||||
msgid "%1$s poked you at %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/enotify.php:154
|
||||
#, php-format
|
||||
msgid "%1$s [url=%2$s]poked you[/url]."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/enotify.php:169
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %s tagged your post"
|
||||
msgstr "[Friendica Meldung] %s markierte deinen Beitrag"
|
||||
|
||||
#: ../../include/enotify.php:170
|
||||
#, php-format
|
||||
msgid "%1$s tagged your post at %2$s"
|
||||
msgstr "%1$s erwähnte deinen Beitrag auf %2$s"
|
||||
|
||||
#: ../../include/enotify.php:171
|
||||
#, php-format
|
||||
msgid "%1$s tagged [url=%2$s]your post[/url]"
|
||||
msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
|
||||
|
||||
#: ../../include/enotify.php:150
|
||||
#: ../../include/enotify.php:182
|
||||
msgid "[Friendica:Notify] Introduction received"
|
||||
msgstr "[Friendica Meldung] Kontaktanfrage erhalten"
|
||||
|
||||
#: ../../include/enotify.php:151
|
||||
#: ../../include/enotify.php:183
|
||||
#, php-format
|
||||
msgid "You've received an introduction from '%1$s' at %2$s"
|
||||
msgstr "Du hast eine Kontaktanfrage erhalten von '%1$s' auf %2$s"
|
||||
msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten"
|
||||
|
||||
#: ../../include/enotify.php:152
|
||||
#: ../../include/enotify.php:184
|
||||
#, php-format
|
||||
msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
|
||||
msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] erhalten von %2$s."
|
||||
msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten."
|
||||
|
||||
#: ../../include/enotify.php:155 ../../include/enotify.php:173
|
||||
#: ../../include/enotify.php:187 ../../include/enotify.php:205
|
||||
#, php-format
|
||||
msgid "You may visit their profile at %s"
|
||||
msgstr "Hier kannst du das Profil betrachten: %s"
|
||||
|
||||
#: ../../include/enotify.php:157
|
||||
#: ../../include/enotify.php:189
|
||||
#, php-format
|
||||
msgid "Please visit %s to approve or reject the introduction."
|
||||
msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
|
||||
|
||||
#: ../../include/enotify.php:164
|
||||
#: ../../include/enotify.php:196
|
||||
msgid "[Friendica:Notify] Friend suggestion received"
|
||||
msgstr "[Friendica Meldung] Kontaktvorschlag erhalten"
|
||||
|
||||
#: ../../include/enotify.php:165
|
||||
#: ../../include/enotify.php:197
|
||||
#, php-format
|
||||
msgid "You've received a friend suggestion from '%1$s' at %2$s"
|
||||
msgstr "Du hast einen Freunde-Vorschlag erhalten von '%1$s' auf %2$s"
|
||||
msgstr "Du hast einen Freunde-Vorschlag von '%1$s' auf %2$s erhalten"
|
||||
|
||||
#: ../../include/enotify.php:166
|
||||
#: ../../include/enotify.php:198
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
|
||||
msgstr "Du hast einen [url=%1$s]Freunde-Vorschlag[/url] erhalten %2$s von %3$s."
|
||||
msgstr "Du hast einen [url=%1$s]Freunde-Vorschlag[/url] %2$s von %3$s erhalten."
|
||||
|
||||
#: ../../include/enotify.php:171
|
||||
#: ../../include/enotify.php:203
|
||||
msgid "Name:"
|
||||
msgstr "Name:"
|
||||
|
||||
#: ../../include/enotify.php:172
|
||||
#: ../../include/enotify.php:204
|
||||
msgid "Photo:"
|
||||
msgstr "Foto:"
|
||||
|
||||
#: ../../include/enotify.php:175
|
||||
#: ../../include/enotify.php:207
|
||||
#, php-format
|
||||
msgid "Please visit %s to approve or reject the suggestion."
|
||||
msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
|
||||
|
|
@ -7127,73 +8039,64 @@ msgid ""
|
|||
"This site is not configured to allow communications with other networks."
|
||||
msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."
|
||||
|
||||
#: ../../include/follow.php:60 ../../include/follow.php:75
|
||||
#: ../../include/follow.php:60 ../../include/follow.php:80
|
||||
msgid "No compatible communication protocols or feeds were discovered."
|
||||
msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
|
||||
|
||||
#: ../../include/follow.php:73
|
||||
#: ../../include/follow.php:78
|
||||
msgid "The profile address specified does not provide adequate information."
|
||||
msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
|
||||
|
||||
#: ../../include/follow.php:77
|
||||
#: ../../include/follow.php:82
|
||||
msgid "An author or name was not found."
|
||||
msgstr "Es wurde kein Autor oder Name gefunden."
|
||||
|
||||
#: ../../include/follow.php:79
|
||||
#: ../../include/follow.php:84
|
||||
msgid "No browser URL could be matched to this address."
|
||||
msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
|
||||
|
||||
#: ../../include/follow.php:81
|
||||
#: ../../include/follow.php:86
|
||||
msgid ""
|
||||
"Unable to match @-style Identity Address with a known protocol or email "
|
||||
"contact."
|
||||
msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."
|
||||
|
||||
#: ../../include/follow.php:82
|
||||
#: ../../include/follow.php:87
|
||||
msgid "Use mailto: in front of address to force email check."
|
||||
msgstr "Verwende mailto: vor der Email Adresse um eine Überprüfung der Email Adresse zu erzwingen."
|
||||
msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."
|
||||
|
||||
#: ../../include/follow.php:88
|
||||
#: ../../include/follow.php:93
|
||||
msgid ""
|
||||
"The profile address specified belongs to a network which has been disabled "
|
||||
"on this site."
|
||||
msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."
|
||||
|
||||
#: ../../include/follow.php:93
|
||||
#: ../../include/follow.php:103
|
||||
msgid ""
|
||||
"Limited profile. This person will be unable to receive direct/personal "
|
||||
"notifications from you."
|
||||
msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können."
|
||||
|
||||
#: ../../include/follow.php:169
|
||||
#: ../../include/follow.php:205
|
||||
msgid "Unable to retrieve contact information."
|
||||
msgstr "Konnte die Kontaktinformationen nicht empfangen."
|
||||
|
||||
#: ../../include/follow.php:223
|
||||
#: ../../include/follow.php:259
|
||||
msgid "following"
|
||||
msgstr "folgen"
|
||||
|
||||
#: ../../include/items.php:2790
|
||||
#: ../../include/items.php:3214
|
||||
msgid "A new person is sharing with you at "
|
||||
msgstr "Eine neue Person teilt mit dir auf "
|
||||
|
||||
#: ../../include/items.php:2790
|
||||
#: ../../include/items.php:3214
|
||||
msgid "You have a new follower at "
|
||||
msgstr "Du hast einen neuen Kontakt auf "
|
||||
|
||||
#: ../../include/items.php:3452
|
||||
#: ../../include/items.php:3883
|
||||
msgid "Archives"
|
||||
msgstr "Archiv"
|
||||
|
||||
#: ../../include/bb2diaspora.php:102 ../../include/bb2diaspora.php:112
|
||||
#: ../../include/bb2diaspora.php:113
|
||||
msgid "image/photo"
|
||||
msgstr "Bild/Foto"
|
||||
|
||||
#: ../../include/bb2diaspora.php:102
|
||||
msgid "link"
|
||||
msgstr "Verweis"
|
||||
|
||||
#: ../../include/user.php:38
|
||||
msgid "An invitation is required."
|
||||
msgstr "Du benötigst eine Einladung."
|
||||
|
|
@ -7240,7 +8143,7 @@ msgid ""
|
|||
"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."
|
||||
|
||||
#: ../../include/user.php:127 ../../include/user.php:219
|
||||
#: ../../include/user.php:127 ../../include/user.php:225
|
||||
msgid "Nickname is already registered. Please choose another."
|
||||
msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
|
||||
|
||||
|
|
@ -7254,11 +8157,11 @@ msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
|
|||
msgid "SERIOUS ERROR: Generation of security keys failed."
|
||||
msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
|
||||
|
||||
#: ../../include/user.php:205
|
||||
#: ../../include/user.php:211
|
||||
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ährend der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
|
||||
|
||||
#: ../../include/user.php:240
|
||||
#: ../../include/user.php:246
|
||||
msgid "An error occurred creating your default profile. Please try again."
|
||||
msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
|
||||
|
||||
|
|
@ -7284,345 +8187,256 @@ msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das
|
|||
msgid "stopped following"
|
||||
msgstr "wird nicht mehr gefolgt"
|
||||
|
||||
#: ../../include/Contact.php:218 ../../include/conversation.php:842
|
||||
#: ../../include/Contact.php:220 ../../include/conversation.php:977
|
||||
msgid "Poke"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/Contact.php:221 ../../include/conversation.php:971
|
||||
msgid "View Status"
|
||||
msgstr "Pinnwand anschauen"
|
||||
|
||||
#: ../../include/Contact.php:219 ../../include/conversation.php:843
|
||||
#: ../../include/Contact.php:222 ../../include/conversation.php:972
|
||||
msgid "View Profile"
|
||||
msgstr "Profil anschauen"
|
||||
|
||||
#: ../../include/Contact.php:220 ../../include/conversation.php:844
|
||||
#: ../../include/Contact.php:223 ../../include/conversation.php:973
|
||||
msgid "View Photos"
|
||||
msgstr "Bilder anschauen"
|
||||
|
||||
#: ../../include/Contact.php:221 ../../include/Contact.php:234
|
||||
#: ../../include/conversation.php:845
|
||||
#: ../../include/Contact.php:224 ../../include/Contact.php:237
|
||||
#: ../../include/conversation.php:974
|
||||
msgid "Network Posts"
|
||||
msgstr "Netzwerkbeiträge"
|
||||
|
||||
#: ../../include/Contact.php:222 ../../include/Contact.php:234
|
||||
#: ../../include/conversation.php:846
|
||||
#: ../../include/Contact.php:225 ../../include/Contact.php:237
|
||||
#: ../../include/conversation.php:975
|
||||
msgid "Edit Contact"
|
||||
msgstr "Kontakt bearbeiten"
|
||||
|
||||
#: ../../include/Contact.php:223 ../../include/Contact.php:234
|
||||
#: ../../include/conversation.php:847
|
||||
#: ../../include/Contact.php:226 ../../include/Contact.php:237
|
||||
#: ../../include/conversation.php:976
|
||||
msgid "Send PM"
|
||||
msgstr "Private Nachricht senden"
|
||||
|
||||
#: ../../include/conversation.php:163
|
||||
#: ../../include/conversation.php:197
|
||||
#, php-format
|
||||
msgid "%1$s poked %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:267
|
||||
msgid "post/item"
|
||||
msgstr "Nachricht/Beitrag"
|
||||
|
||||
#: ../../include/conversation.php:164
|
||||
#: ../../include/conversation.php:268
|
||||
#, php-format
|
||||
msgid "%1$s marked %2$s's %3$s as favorite"
|
||||
msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
|
||||
|
||||
#: ../../include/conversation.php:327 ../../include/conversation.php:608
|
||||
msgid "Select"
|
||||
msgstr "Auswählen"
|
||||
|
||||
#: ../../include/conversation.php:344 ../../include/conversation.php:701
|
||||
#: ../../include/conversation.php:702
|
||||
#, php-format
|
||||
msgid "View %s's profile @ %s"
|
||||
msgstr "Das Profil von %s auf %s betrachten."
|
||||
|
||||
#: ../../include/conversation.php:354 ../../include/conversation.php:713
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr "%s von %s"
|
||||
|
||||
#: ../../include/conversation.php:369
|
||||
msgid "View in context"
|
||||
msgstr "Im Zusammenhang betrachten"
|
||||
|
||||
#: ../../include/conversation.php:475
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
msgstr[0] "%d Kommentar"
|
||||
msgstr[1] "%d Kommentare"
|
||||
|
||||
#: ../../include/conversation.php:554
|
||||
msgid "like"
|
||||
msgstr "mag ich"
|
||||
|
||||
#: ../../include/conversation.php:555
|
||||
msgid "dislike"
|
||||
msgstr "mag ich nicht"
|
||||
|
||||
#: ../../include/conversation.php:557
|
||||
msgid "Share this"
|
||||
msgstr "Weitersagen"
|
||||
|
||||
#: ../../include/conversation.php:557
|
||||
msgid "share"
|
||||
msgstr "Teilen"
|
||||
|
||||
#: ../../include/conversation.php:581
|
||||
msgid "Bold"
|
||||
msgstr "Fett"
|
||||
|
||||
#: ../../include/conversation.php:582
|
||||
msgid "Italic"
|
||||
msgstr "Kursiv"
|
||||
|
||||
#: ../../include/conversation.php:583
|
||||
msgid "Underline"
|
||||
msgstr "Unterstrichen"
|
||||
|
||||
#: ../../include/conversation.php:584
|
||||
msgid "Quote"
|
||||
msgstr "Zitat"
|
||||
|
||||
#: ../../include/conversation.php:585
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#: ../../include/conversation.php:586
|
||||
msgid "Image"
|
||||
msgstr "Bild"
|
||||
|
||||
#: ../../include/conversation.php:587
|
||||
msgid "Link"
|
||||
msgstr "Verweis"
|
||||
|
||||
#: ../../include/conversation.php:588
|
||||
msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
#: ../../include/conversation.php:621
|
||||
msgid "add star"
|
||||
msgstr "markieren"
|
||||
|
||||
#: ../../include/conversation.php:622
|
||||
msgid "remove star"
|
||||
msgstr "Markierung entfernen"
|
||||
|
||||
#: ../../include/conversation.php:623
|
||||
msgid "toggle star status"
|
||||
msgstr "Markierung umschalten"
|
||||
|
||||
#: ../../include/conversation.php:626
|
||||
msgid "starred"
|
||||
msgstr "markiert"
|
||||
|
||||
#: ../../include/conversation.php:627
|
||||
msgid "add tag"
|
||||
msgstr "Tag hinzufügen"
|
||||
|
||||
#: ../../include/conversation.php:631
|
||||
msgid "save to folder"
|
||||
msgstr "In Ordner speichern"
|
||||
|
||||
#: ../../include/conversation.php:703
|
||||
msgid "to"
|
||||
msgstr "zu"
|
||||
|
||||
#: ../../include/conversation.php:704
|
||||
msgid "Wall-to-Wall"
|
||||
msgstr "Wall-to-Wall"
|
||||
|
||||
#: ../../include/conversation.php:705
|
||||
msgid "via Wall-To-Wall:"
|
||||
msgstr "via Wall-To-Wall:"
|
||||
|
||||
#: ../../include/conversation.php:750
|
||||
#: ../../include/conversation.php:877
|
||||
msgid "Delete Selected Items"
|
||||
msgstr "Lösche die markierten Beiträge"
|
||||
|
||||
#: ../../include/conversation.php:901
|
||||
#: ../../include/conversation.php:1035
|
||||
#, php-format
|
||||
msgid "%s likes this."
|
||||
msgstr "%s mag das."
|
||||
|
||||
#: ../../include/conversation.php:901
|
||||
#: ../../include/conversation.php:1035
|
||||
#, php-format
|
||||
msgid "%s doesn't like this."
|
||||
msgstr "%s mag das nicht."
|
||||
|
||||
#: ../../include/conversation.php:905
|
||||
#: ../../include/conversation.php:1039
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> like this."
|
||||
msgstr "<span %1$s>%2$d Leute</span> mögen das."
|
||||
|
||||
#: ../../include/conversation.php:907
|
||||
#: ../../include/conversation.php:1041
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> don't like this."
|
||||
msgstr "<span %1$s>%2$d Leute</span> mögen das nicht."
|
||||
|
||||
#: ../../include/conversation.php:913
|
||||
#: ../../include/conversation.php:1047
|
||||
msgid "and"
|
||||
msgstr "und"
|
||||
|
||||
#: ../../include/conversation.php:916
|
||||
#: ../../include/conversation.php:1050
|
||||
#, php-format
|
||||
msgid ", and %d other people"
|
||||
msgstr " und %d andere"
|
||||
|
||||
#: ../../include/conversation.php:917
|
||||
#: ../../include/conversation.php:1051
|
||||
#, php-format
|
||||
msgid "%s like this."
|
||||
msgstr "%s mögen das."
|
||||
|
||||
#: ../../include/conversation.php:917
|
||||
#: ../../include/conversation.php:1051
|
||||
#, php-format
|
||||
msgid "%s don't like this."
|
||||
msgstr "%s mögen das nicht."
|
||||
|
||||
#: ../../include/conversation.php:942
|
||||
#: ../../include/conversation.php:1075 ../../include/conversation.php:1092
|
||||
msgid "Visible to <strong>everybody</strong>"
|
||||
msgstr "Für <strong>jedermann</strong> sichtbar"
|
||||
|
||||
#: ../../include/conversation.php:944
|
||||
#: ../../include/conversation.php:1077 ../../include/conversation.php:1094
|
||||
msgid "Please enter a video link/URL:"
|
||||
msgstr "Bitte Link/URL zum Video einfügen:"
|
||||
|
||||
#: ../../include/conversation.php:945
|
||||
#: ../../include/conversation.php:1078 ../../include/conversation.php:1095
|
||||
msgid "Please enter an audio link/URL:"
|
||||
msgstr "Bitte Link/URL zum Audio einfügen:"
|
||||
|
||||
#: ../../include/conversation.php:946
|
||||
#: ../../include/conversation.php:1079 ../../include/conversation.php:1096
|
||||
msgid "Tag term:"
|
||||
msgstr "Tag:"
|
||||
|
||||
#: ../../include/conversation.php:948
|
||||
#: ../../include/conversation.php:1081 ../../include/conversation.php:1098
|
||||
msgid "Where are you right now?"
|
||||
msgstr "Wo hältst du dich jetzt gerade auf?"
|
||||
|
||||
#: ../../include/conversation.php:991
|
||||
#: ../../include/conversation.php:1141
|
||||
msgid "upload photo"
|
||||
msgstr "Bild hochladen"
|
||||
|
||||
#: ../../include/conversation.php:993
|
||||
#: ../../include/conversation.php:1143
|
||||
msgid "attach file"
|
||||
msgstr "Datei anhängen"
|
||||
|
||||
#: ../../include/conversation.php:995
|
||||
#: ../../include/conversation.php:1145
|
||||
msgid "web link"
|
||||
msgstr "Weblink"
|
||||
|
||||
#: ../../include/conversation.php:996
|
||||
#: ../../include/conversation.php:1146
|
||||
msgid "Insert video link"
|
||||
msgstr "Video-Adresse einfügen"
|
||||
|
||||
#: ../../include/conversation.php:997
|
||||
#: ../../include/conversation.php:1147
|
||||
msgid "video link"
|
||||
msgstr "Video-Link"
|
||||
|
||||
#: ../../include/conversation.php:998
|
||||
#: ../../include/conversation.php:1148
|
||||
msgid "Insert audio link"
|
||||
msgstr "Audio-Adresse einfügen"
|
||||
|
||||
#: ../../include/conversation.php:999
|
||||
#: ../../include/conversation.php:1149
|
||||
msgid "audio link"
|
||||
msgstr "Audio-Link"
|
||||
|
||||
#: ../../include/conversation.php:1001
|
||||
#: ../../include/conversation.php:1151
|
||||
msgid "set location"
|
||||
msgstr "Ort setzen"
|
||||
|
||||
#: ../../include/conversation.php:1003
|
||||
#: ../../include/conversation.php:1153
|
||||
msgid "clear location"
|
||||
msgstr "Ort löschen"
|
||||
|
||||
#: ../../include/conversation.php:1010
|
||||
#: ../../include/conversation.php:1160
|
||||
msgid "permissions"
|
||||
msgstr "Zugriffsrechte"
|
||||
|
||||
#: ../../boot.php:522
|
||||
#: ../../include/plugin.php:390 ../../include/plugin.php:392
|
||||
msgid "Click here to upgrade."
|
||||
msgstr "Zum Upgraden hier klicken."
|
||||
|
||||
#: ../../include/plugin.php:398
|
||||
msgid "This action exceeds the limits set by your subscription plan."
|
||||
msgstr "Diese Aktion überschreitet die Obergrenze deines Abonnements."
|
||||
|
||||
#: ../../include/plugin.php:403
|
||||
msgid "This action is not available under your subscription plan."
|
||||
msgstr "Diese Aktion ist in deinem Abonnement nicht verfügbar."
|
||||
|
||||
#: ../../boot.php:581
|
||||
msgid "Delete this item?"
|
||||
msgstr "Diesen Beitrag löschen?"
|
||||
|
||||
#: ../../boot.php:525
|
||||
#: ../../boot.php:584
|
||||
msgid "show fewer"
|
||||
msgstr "weniger anzeigen"
|
||||
|
||||
#: ../../boot.php:698
|
||||
#: ../../boot.php:787
|
||||
#, php-format
|
||||
msgid "Update %s failed. See error logs."
|
||||
msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
|
||||
|
||||
#: ../../boot.php:700
|
||||
#: ../../boot.php:789
|
||||
#, php-format
|
||||
msgid "Update Error at %s"
|
||||
msgstr "Updatefehler bei %s"
|
||||
|
||||
#: ../../boot.php:800
|
||||
#: ../../boot.php:890
|
||||
msgid "Create a New Account"
|
||||
msgstr "Neues Konto erstellen"
|
||||
|
||||
#: ../../boot.php:824
|
||||
#: ../../boot.php:914
|
||||
msgid "Nickname or Email address: "
|
||||
msgstr "Spitzname oder Email-Adresse: "
|
||||
msgstr "Spitzname oder E-Mail-Adresse: "
|
||||
|
||||
#: ../../boot.php:825
|
||||
#: ../../boot.php:915
|
||||
msgid "Password: "
|
||||
msgstr "Passwort: "
|
||||
|
||||
#: ../../boot.php:828
|
||||
#: ../../boot.php:918
|
||||
msgid "Or login using OpenID: "
|
||||
msgstr "Oder melde dich mit deiner OpenID an: "
|
||||
|
||||
#: ../../boot.php:834
|
||||
#: ../../boot.php:924
|
||||
msgid "Forgot your password?"
|
||||
msgstr "Passwort vergessen?"
|
||||
|
||||
#: ../../boot.php:1001
|
||||
#: ../../boot.php:1091
|
||||
msgid "Edit profile"
|
||||
msgstr "Profil bearbeiten"
|
||||
|
||||
#: ../../boot.php:1061
|
||||
#: ../../boot.php:1151
|
||||
msgid "Message"
|
||||
msgstr "Nachricht"
|
||||
|
||||
#: ../../boot.php:1177 ../../boot.php:1253
|
||||
#: ../../boot.php:1273 ../../boot.php:1359
|
||||
msgid "g A l F d"
|
||||
msgstr "l, d. F G \\U\\h\\r"
|
||||
|
||||
#: ../../boot.php:1178 ../../boot.php:1254
|
||||
#: ../../boot.php:1274 ../../boot.php:1360
|
||||
msgid "F d"
|
||||
msgstr "d. F"
|
||||
|
||||
#: ../../boot.php:1223 ../../boot.php:1294
|
||||
#: ../../boot.php:1319 ../../boot.php:1400
|
||||
msgid "[today]"
|
||||
msgstr "[heute]"
|
||||
|
||||
#: ../../boot.php:1235
|
||||
#: ../../boot.php:1331
|
||||
msgid "Birthday Reminders"
|
||||
msgstr "Geburtstagserinnerungen"
|
||||
|
||||
#: ../../boot.php:1236
|
||||
#: ../../boot.php:1332
|
||||
msgid "Birthdays this week:"
|
||||
msgstr "Geburtstage diese Woche:"
|
||||
|
||||
#: ../../boot.php:1287
|
||||
#: ../../boot.php:1393
|
||||
msgid "[No description]"
|
||||
msgstr "[keine Beschreibung]"
|
||||
|
||||
#: ../../boot.php:1305
|
||||
#: ../../boot.php:1411
|
||||
msgid "Event Reminders"
|
||||
msgstr "Veranstaltungserinnerungen"
|
||||
|
||||
#: ../../boot.php:1306
|
||||
#: ../../boot.php:1412
|
||||
msgid "Events this week:"
|
||||
msgstr "Veranstaltungen diese Woche"
|
||||
|
||||
#: ../../boot.php:1511
|
||||
#: ../../boot.php:1626
|
||||
msgid "Status Messages and Posts"
|
||||
msgstr "Statusnachrichten und Beiträge"
|
||||
|
||||
#: ../../boot.php:1517
|
||||
#: ../../boot.php:1633
|
||||
msgid "Profile Details"
|
||||
msgstr "Profildetails"
|
||||
|
||||
#: ../../boot.php:1532
|
||||
#: ../../boot.php:1650
|
||||
msgid "Events and Calendar"
|
||||
msgstr "Ereignisse und Kalender"
|
||||
|
||||
#: ../../boot.php:1538
|
||||
#: ../../boot.php:1657
|
||||
msgid "Only You Can See This"
|
||||
msgstr "Nur Du Kannst Das Sehen"
|
||||
msgstr "Nur du kannst das sehen"
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ $a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.
|
|||
$a->strings["Permission denied."] = "Zugriff verweigert.";
|
||||
$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
|
||||
$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["Return to contact editor"] = "Zurück zum Kontakteditor";
|
||||
$a->strings["Name"] = "Name";
|
||||
|
|
@ -33,7 +33,7 @@ $a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
|
|||
$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
|
||||
$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
|
||||
$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
|
||||
$a->strings["Event description and start time are required."] = "Ereignisbeschreibung und Startzeit sind erforderlich.";
|
||||
$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
|
||||
$a->strings["l, F j"] = "l, F j";
|
||||
$a->strings["Edit event"] = "Veranstaltung bearbeiten";
|
||||
$a->strings["link to source"] = "Link zum Originalbeitrag";
|
||||
|
|
@ -43,13 +43,15 @@ $a->strings["Previous"] = "Vorherige";
|
|||
$a->strings["Next"] = "Nächste";
|
||||
$a->strings["hour:minute"] = "Stunde:Minute";
|
||||
$a->strings["Event details"] = "Veranstaltungsdetails";
|
||||
$a->strings["Format is %s %s. Starting date and Description are required."] = "Format ist %s %s. Anfangsdatum und Beschreibung sind notwendig.";
|
||||
$a->strings["Format is %s %s. Starting date and Title are required."] = "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt.";
|
||||
$a->strings["Event Starts:"] = "Veranstaltungsbeginn:";
|
||||
$a->strings["Required"] = "Benötigt";
|
||||
$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant";
|
||||
$a->strings["Event Finishes:"] = "Veranstaltungsende:";
|
||||
$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen";
|
||||
$a->strings["Description:"] = "Beschreibung";
|
||||
$a->strings["Location:"] = "Ort:";
|
||||
$a->strings["Title:"] = "Titel:";
|
||||
$a->strings["Share this event"] = "Veranstaltung teilen";
|
||||
$a->strings["Cancel"] = "Abbrechen";
|
||||
$a->strings["Tag removed"] = "Tag entfernt";
|
||||
|
|
@ -82,6 +84,8 @@ $a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
|
|||
$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert.";
|
||||
$a->strings["No photos selected"] = "Keine Bilder ausgewählt";
|
||||
$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt.";
|
||||
$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers.";
|
||||
$a->strings["You have used %1$.2f Mbytes of photo storage."] = "Du verwendest %1$.2f Mbyte des Foto-Speichers.";
|
||||
$a->strings["Upload Photos"] = "Bilder hochladen";
|
||||
$a->strings["New album name: "] = "Name des neuen Albums: ";
|
||||
$a->strings["or existing album name: "] = "oder existierender Albumname: ";
|
||||
|
|
@ -98,7 +102,8 @@ $a->strings["Private Message"] = "Private Nachricht";
|
|||
$a->strings["View Full Size"] = "Betrachte Originalgröße";
|
||||
$a->strings["Tags: "] = "Tags: ";
|
||||
$a->strings["[Remove any tag]"] = "[Tag entfernen]";
|
||||
$a->strings["Rotate CW"] = "Im Uhrzeigersinn rotieren";
|
||||
$a->strings["Rotate CW (right)"] = "Drehen US (rechts)";
|
||||
$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)";
|
||||
$a->strings["New album name"] = "Name des neuen Albums";
|
||||
$a->strings["Caption"] = "Bildunterschrift";
|
||||
$a->strings["Add a Tag"] = "Tag hinzufügen";
|
||||
|
|
@ -167,7 +172,7 @@ $a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdat
|
|||
$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
|
||||
$a->strings["Please login to confirm introduction."] = "Bitte melde dich an, um die Kontaktanfrage zu bestätigen.";
|
||||
$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an.";
|
||||
$a->strings["Hide this contact"] = "Verberge diese Kontakt";
|
||||
$a->strings["Hide this contact"] = "Verberge diesen Kontakt";
|
||||
$a->strings["Welcome home %s."] = "Willkommen zurück %s.";
|
||||
$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige deine Kontaktanfrage bei %s.";
|
||||
$a->strings["Confirm"] = "Bestätigen";
|
||||
|
|
@ -189,7 +194,7 @@ $a->strings["Submit Request"] = "Anfrage abschicken";
|
|||
$a->strings["Friendica Social Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup";
|
||||
$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert";
|
||||
$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 Friendicaseite wurde installiert.";
|
||||
$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren.";
|
||||
$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\".";
|
||||
$a->strings["System check"] = "Systemtest";
|
||||
|
|
@ -209,7 +214,7 @@ $a->strings["Site settings"] = "Server-Einstellungen";
|
|||
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden.";
|
||||
$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Wenn du keine Kommandozeilen Version von PHP auf deinem Server installiert hast, kannst du keine Hintergrundprozesse via cron starten. Siehe <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
|
||||
$a->strings["PHP executable path"] = "Pfad zu PHP";
|
||||
$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst diesen Feld auch frei lassen und mit der Installation fortfahren.";
|
||||
$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren.";
|
||||
$a->strings["Command line PHP"] = "Kommandozeilen-PHP";
|
||||
$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf deinem System hat \"register_argc_argv\" nicht aktiviert.";
|
||||
$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt.";
|
||||
|
|
@ -224,13 +229,13 @@ $a->strings["mysqli PHP module"] = "PHP: mysqli-Modul";
|
|||
$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul";
|
||||
$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
|
||||
$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert.";
|
||||
$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt ist aber nicht installiert.";
|
||||
$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert.";
|
||||
$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert.";
|
||||
$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert.";
|
||||
$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert.";
|
||||
$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert.";
|
||||
$a->strings["The web installer needs to be able to create a file called \".htconfig.php\ in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun.";
|
||||
$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten, der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast.";
|
||||
$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast.";
|
||||
$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem du alles ausgefüllt hast, erhältst du einen Text, den du in eine Datei namens .htconfig.php in deinem Friendica-Wurzelverzeichnis kopieren musst.";
|
||||
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest du in der Datei INSTALL.txt.";
|
||||
$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php";
|
||||
|
|
@ -247,6 +252,11 @@ $a->strings["UTC time: %s"] = "UTC Zeit: %s";
|
|||
$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
|
||||
$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
|
||||
$a->strings["Please select your timezone:"] = "Bitte wähle deine Zeitzone.";
|
||||
$a->strings["Poke/Prod"] = "";
|
||||
$a->strings["poke, prod or do other things to somebody"] = "";
|
||||
$a->strings["Recipient"] = "Empfänger";
|
||||
$a->strings["Choose what you wish to do to recipient"] = "Was willst du mit dem Empfänger machen:";
|
||||
$a->strings["Make this post private"] = "Diesen Beitrag privat machen";
|
||||
$a->strings["Profile Match"] = "Profilübereinstimmungen";
|
||||
$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Standardprofil hinzu.";
|
||||
$a->strings["is interested in:"] = "ist interessiert an:";
|
||||
|
|
@ -254,6 +264,39 @@ $a->strings["Connect"] = "Verbinden";
|
|||
$a->strings["No matches"] = "Keine Übereinstimmungen";
|
||||
$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
|
||||
$a->strings["Visible to:"] = "Sichtbar für:";
|
||||
$a->strings["No such group"] = "Es gibt keine solche Gruppe";
|
||||
$a->strings["Group is empty"] = "Gruppe ist leer";
|
||||
$a->strings["Group: "] = "Gruppe: ";
|
||||
$a->strings["Select"] = "Auswählen";
|
||||
$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten.";
|
||||
$a->strings["%s from %s"] = "%s von %s";
|
||||
$a->strings["View in context"] = "Im Zusammenhang betrachten";
|
||||
$a->strings["%d comment"] = array(
|
||||
0 => "%d Kommentar",
|
||||
1 => "%d Kommentare",
|
||||
);
|
||||
$a->strings["show more"] = "mehr anzeigen";
|
||||
$a->strings["like"] = "mag ich";
|
||||
$a->strings["dislike"] = "mag ich nicht";
|
||||
$a->strings["Share this"] = "Weitersagen";
|
||||
$a->strings["share"] = "Teilen";
|
||||
$a->strings["Bold"] = "Fett";
|
||||
$a->strings["Italic"] = "Kursiv";
|
||||
$a->strings["Underline"] = "Unterstrichen";
|
||||
$a->strings["Quote"] = "Zitat";
|
||||
$a->strings["Code"] = "Code";
|
||||
$a->strings["Image"] = "Bild";
|
||||
$a->strings["Link"] = "Verweis";
|
||||
$a->strings["Video"] = "Video";
|
||||
$a->strings["add star"] = "markieren";
|
||||
$a->strings["remove star"] = "Markierung entfernen";
|
||||
$a->strings["toggle star status"] = "Markierung umschalten";
|
||||
$a->strings["starred"] = "markiert";
|
||||
$a->strings["add tag"] = "Tag hinzufügen";
|
||||
$a->strings["save to folder"] = "In Ordner speichern";
|
||||
$a->strings["to"] = "zu";
|
||||
$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
|
||||
$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
|
||||
$a->strings["Welcome to %s"] = "Willkommen zu %s";
|
||||
$a->strings["Invalid request identifier."] = "Invalid request identifier.";
|
||||
$a->strings["Discard"] = "Verwerfen";
|
||||
|
|
@ -315,7 +358,7 @@ $a->strings["Never"] = "Niemals";
|
|||
$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)";
|
||||
$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)";
|
||||
$a->strings["Suggest friends"] = "Kontakte vorschlagen";
|
||||
$a->strings["Network type: %s"] = "Netzwerk Typ: %s";
|
||||
$a->strings["Network type: %s"] = "Netzwerktyp: %s";
|
||||
$a->strings["%d contact in common"] = array(
|
||||
0 => "%d gemeinsamer Kontakt",
|
||||
1 => "%d gemeinsame Kontakte",
|
||||
|
|
@ -326,7 +369,7 @@ $a->strings["Block"] = "Sperren";
|
|||
$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
|
||||
$a->strings["Unignore"] = "Ignorieren aufheben";
|
||||
$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
|
||||
$a->strings["Unarchive"] = "Unarchivieren";
|
||||
$a->strings["Unarchive"] = "Aus Archiv zurückholen";
|
||||
$a->strings["Archive"] = "Archivieren";
|
||||
$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
|
||||
$a->strings["Repair"] = "Reparieren";
|
||||
|
|
@ -336,7 +379,7 @@ $a->strings["Contact Editor"] = "Kontakt Editor";
|
|||
$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["Contact Information / Notes"] = "Kontakt Informationen / Notizen";
|
||||
$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbiten";
|
||||
$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten";
|
||||
$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]";
|
||||
$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten";
|
||||
$a->strings["Ignore contact"] = "Ignoriere den Kontakt";
|
||||
|
|
@ -384,8 +427,8 @@ $a->strings["Save or copy your new password - and then"] = "Speichere oder kopie
|
|||
$a->strings["click here to login"] = "hier klicken, um dich anzumelden";
|
||||
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald du dich erfolgreich angemeldet hast.";
|
||||
$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["Nickname or Email: "] = "Spitzname oder Email:";
|
||||
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet.";
|
||||
$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:";
|
||||
$a->strings["Reset"] = "Zurücksetzen";
|
||||
$a->strings["Account settings"] = "Kontoeinstellungen";
|
||||
$a->strings["Display settings"] = "Anzeige-Einstellungen";
|
||||
|
|
@ -398,7 +441,7 @@ $a->strings["Settings"] = "Einstellungen";
|
|||
$a->strings["Missing some important data!"] = "Wichtige Daten fehlen!";
|
||||
$a->strings["Update"] = "Aktualisierungen";
|
||||
$a->strings["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich.";
|
||||
$a->strings["Email settings updated."] = "EMail Einstellungen bearbeitet.";
|
||||
$a->strings["Email settings updated."] = "E-Mail Einstellungen bearbeitet.";
|
||||
$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
|
||||
$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert.";
|
||||
$a->strings["Password changed."] = "Passwort ändern.";
|
||||
|
|
@ -426,11 +469,11 @@ $a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterst
|
|||
$a->strings["enabled"] = "eingeschaltet";
|
||||
$a->strings["disabled"] = "ausgeschaltet";
|
||||
$a->strings["StatusNet"] = "StatusNet";
|
||||
$a->strings["Email access is disabled on this site."] = "Zugriff auf E-Mails für diese Seite deaktiviert.";
|
||||
$a->strings["Connector Settings"] = "Verbindungs-Einstellungen";
|
||||
$a->strings["Email/Mailbox Setup"] = "E-Mail/Postfach-Einstellungen";
|
||||
$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an.";
|
||||
$a->strings["Last successful email check:"] = "Letzter erfolgreicher Email Check";
|
||||
$a->strings["Email access is disabled on this site."] = "Zugriff auf E-Mails für diese Seite deaktiviert.";
|
||||
$a->strings["Last successful email check:"] = "Letzter erfolgreicher E-Mail Check";
|
||||
$a->strings["IMAP server name:"] = "IMAP-Server-Name:";
|
||||
$a->strings["IMAP port:"] = "IMAP-Port:";
|
||||
$a->strings["Security:"] = "Sicherheit:";
|
||||
|
|
@ -512,6 +555,7 @@ $a->strings["Someone writes a followup comment"] = "– jemand auch einen Kommen
|
|||
$a->strings["You receive a private message"] = "– du eine private Nachricht erhältst";
|
||||
$a->strings["You receive a friend suggestion"] = "– du eine Empfehlung erhältst";
|
||||
$a->strings["You are tagged in a post"] = "– du in einem Beitrag erwähnt wirst";
|
||||
$a->strings["You are poked/prodded/etc. in a post"] = "";
|
||||
$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentyp-Einstellungen";
|
||||
$a->strings["Change the behaviour of this account for special situations"] = "Verhalten dieses Kontos in bestimmten Situationen:";
|
||||
$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten";
|
||||
|
|
@ -525,7 +569,7 @@ $a->strings["Commented Order"] = "Neueste Kommentare";
|
|||
$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren";
|
||||
$a->strings["Posted Order"] = "Neueste Beiträge";
|
||||
$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren";
|
||||
$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um Dich geht";
|
||||
$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um dich geht";
|
||||
$a->strings["New"] = "Neue";
|
||||
$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum";
|
||||
$a->strings["Starred"] = "Markierte";
|
||||
|
|
@ -537,9 +581,6 @@ $a->strings["Warning: This group contains %s member from an insecure network."]
|
|||
1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken.",
|
||||
);
|
||||
$a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten.";
|
||||
$a->strings["No such group"] = "Es gibt keine solche Gruppe";
|
||||
$a->strings["Group is empty"] = "Gruppe ist leer";
|
||||
$a->strings["Group: "] = "Gruppe: ";
|
||||
$a->strings["Contact: "] = "Kontakt: ";
|
||||
$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen.";
|
||||
$a->strings["Invalid contact."] = "Ungültiger Kontakt.";
|
||||
|
|
@ -560,10 +601,10 @@ $a->strings["Subject:"] = "Betreff:";
|
|||
$a->strings["Your message:"] = "Deine Nachricht:";
|
||||
$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica";
|
||||
$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder";
|
||||
$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden.";
|
||||
$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden.";
|
||||
$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, connect to Facebook, make some new connections, and find some groups to join."] = "Auf der <em>Quick Start</em> Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest, wie du alte Freunde von Facebook wieder findest und neue Kontakte knüpfst.";
|
||||
$a->strings["On your <em>Settings</em> page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter <em>Einstellungen</em> Dein Passwort. Außerdem merke Dir Deine Indentifikations-Adresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen.";
|
||||
$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können.";
|
||||
$a->strings["On your <em>Settings</em> page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen.";
|
||||
$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können.";
|
||||
$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust.";
|
||||
$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst.";
|
||||
$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Wenn</em> dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten.";
|
||||
|
|
@ -615,7 +656,7 @@ $a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: ";
|
|||
$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "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.";
|
||||
$a->strings["Choose a nickname: "] = "Spitznamen wählen: ";
|
||||
$a->strings["Register"] = "Registrieren";
|
||||
$a->strings["People Search"] = "Personen Suche";
|
||||
$a->strings["People Search"] = "Personensuche";
|
||||
$a->strings["status"] = "Status";
|
||||
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s";
|
||||
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht";
|
||||
|
|
@ -659,7 +700,7 @@ $a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
|
|||
$a->strings["No messages."] = "Keine Nachrichten.";
|
||||
$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s";
|
||||
$a->strings["You and %s"] = "Du und %s";
|
||||
$a->strings["%s and You"] = "%s und Du";
|
||||
$a->strings["%s and You"] = "%s und du";
|
||||
$a->strings["Delete conversation"] = "Unterhaltung löschen";
|
||||
$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A";
|
||||
$a->strings["%d message"] = array(
|
||||
|
|
@ -686,6 +727,8 @@ $a->strings["Normal Account"] = "Normales Konto";
|
|||
$a->strings["Soapbox Account"] = "Marktschreier-Konto";
|
||||
$a->strings["Community/Celebrity Account"] = "Forum/Promi-Konto";
|
||||
$a->strings["Automatic Friend Account"] = "Automatisches Freundekonto";
|
||||
$a->strings["Blog Account"] = "";
|
||||
$a->strings["Private Forum"] = "Privates Forum";
|
||||
$a->strings["Message queues"] = "Nachrichten-Warteschlangen";
|
||||
$a->strings["Administration"] = "Administration";
|
||||
$a->strings["Summary"] = "Zusammenfassung";
|
||||
|
|
@ -719,7 +762,7 @@ $a->strings["Accounts abandoned after x days"] = "Nutzerkonten gelten nach x Tag
|
|||
$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit.";
|
||||
$a->strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte";
|
||||
$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben.";
|
||||
$a->strings["Allowed email domains"] = "Erlaubte Domains für Emails";
|
||||
$a->strings["Allowed email domains"] = "Erlaubte Domains für E-Mails";
|
||||
$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben.";
|
||||
$a->strings["Block public"] = "Öffentlichen Zugriff blockieren";
|
||||
$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist.";
|
||||
|
|
@ -727,6 +770,8 @@ $a->strings["Force publish"] = "Erzwinge Veröffentlichung";
|
|||
$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen.";
|
||||
$a->strings["Global directory update URL"] = "URL für Updates beim weltweiten Verzeichnis";
|
||||
$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar.";
|
||||
$a->strings["Allow threaded items"] = "";
|
||||
$a->strings["Allow infinite level threading for items on this site."] = "";
|
||||
$a->strings["Block multiple registrations"] = "Unterbinde Mehrfachregistrierung";
|
||||
$a->strings["Disallow users to register additional accounts for use as pages."] = "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen.";
|
||||
$a->strings["OpenID support"] = "OpenID Unterstützung";
|
||||
|
|
@ -779,7 +824,7 @@ $a->strings["User '%s' blocked"] = "Nutzer '%s' gesperrt";
|
|||
$a->strings["select all"] = "Alle auswählen";
|
||||
$a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf deine Bestätigung warten";
|
||||
$a->strings["Request date"] = "Anfragedatum";
|
||||
$a->strings["Email"] = "Email";
|
||||
$a->strings["Email"] = "E-Mail";
|
||||
$a->strings["No registrations."] = "Keine Neuanmeldungen.";
|
||||
$a->strings["Deny"] = "Verwehren";
|
||||
$a->strings["Register date"] = "Anmeldedatum";
|
||||
|
|
@ -830,6 +875,7 @@ $a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
|
|||
$a->strings["Contact added"] = "Kontakt hinzugefügt";
|
||||
$a->strings["Common Friends"] = "Gemeinsame Freunde";
|
||||
$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
|
||||
$a->strings["link"] = "Link";
|
||||
$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
|
||||
$a->strings["Applications"] = "Anwendungen";
|
||||
$a->strings["No installed applications."] = "Keine Applikationen installiert.";
|
||||
|
|
@ -838,6 +884,8 @@ $a->strings["Profile not found."] = "Profil nicht gefunden.";
|
|||
$a->strings["Profile Name is required."] = "Profilname ist erforderlich.";
|
||||
$a->strings["Marital Status"] = "Familienstand";
|
||||
$a->strings["Romantic Partner"] = "Romanze";
|
||||
$a->strings["Likes"] = "Likes";
|
||||
$a->strings["Dislikes"] = "Dislikes";
|
||||
$a->strings["Work/Employment"] = "Arbeit / Beschäftigung";
|
||||
$a->strings["Religion"] = "Religion";
|
||||
$a->strings["Political Views"] = "Politische Ansichten";
|
||||
|
|
@ -884,6 +932,8 @@ $a->strings["Political Views:"] = "Politische Ansichten:";
|
|||
$a->strings["Religious Views:"] = "Religiöse Ansichten:";
|
||||
$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:";
|
||||
$a->strings["Private Keywords:"] = "Private Schlüsselwörter:";
|
||||
$a->strings["Likes:"] = "Likes:";
|
||||
$a->strings["Dislikes:"] = "Dislikes:";
|
||||
$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 searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)";
|
||||
|
|
@ -916,6 +966,17 @@ $a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die S
|
|||
$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
|
||||
$a->strings["Add"] = "Hinzufügen";
|
||||
$a->strings["No entries."] = "Keine Einträge";
|
||||
$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:";
|
||||
$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) Nach BBCode zu konvertierender Text:";
|
||||
$a->strings["Source input: "] = "";
|
||||
$a->strings["bb2html: "] = "bb2html: ";
|
||||
$a->strings["bb2html2bb: "] = "bb2html2bb: ";
|
||||
$a->strings["bb2md: "] = "bb2md: ";
|
||||
$a->strings["bb2md2html: "] = "bb2md2html: ";
|
||||
$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
|
||||
$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
|
||||
$a->strings["Source input (Diaspora format): "] = "Texteingabe (Diaspora Format): ";
|
||||
$a->strings["diaspora2bb: "] = "diaspora2bb: ";
|
||||
$a->strings["Friend Suggestions"] = "Kontaktvorschläge";
|
||||
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
|
||||
$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
|
||||
|
|
@ -923,9 +984,13 @@ $a->strings["Global Directory"] = "Weltweites Verzeichnis";
|
|||
$a->strings["Find on this site"] = "Auf diesem Server suchen";
|
||||
$a->strings["Site Directory"] = "Verzeichnis";
|
||||
$a->strings["Gender: "] = "Geschlecht:";
|
||||
$a->strings["Gender:"] = "Geschlecht:";
|
||||
$a->strings["Status:"] = "Status:";
|
||||
$a->strings["Homepage:"] = "Homepage:";
|
||||
$a->strings["About:"] = "Über:";
|
||||
$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
|
||||
$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse.";
|
||||
$a->strings["Please join us on Friendica"] = "Bitte trete uns auf Friendica bei";
|
||||
$a->strings["Please join us on Friendica"] = "Bitte trete bei uns auf Friendica bei";
|
||||
$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen.";
|
||||
$a->strings["%d message sent."] = array(
|
||||
0 => "%d Nachricht gesendet.",
|
||||
|
|
@ -935,7 +1000,7 @@ $a->strings["You have no more invitations available"] = "Du hast keine weiteren
|
|||
$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke.";
|
||||
$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica Website.";
|
||||
$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen du beitreten kannst.";
|
||||
$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns Leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen.";
|
||||
$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen.";
|
||||
$a->strings["Send invitations"] = "Einladungen senden";
|
||||
$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:";
|
||||
$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen.";
|
||||
|
|
@ -948,11 +1013,11 @@ $a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der
|
|||
$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen.";
|
||||
$a->strings["Remote site reported: "] = "Gegenstelle meldet: ";
|
||||
$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal.";
|
||||
$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurück gezogen.";
|
||||
$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen.";
|
||||
$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern.";
|
||||
$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet";
|
||||
$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden";
|
||||
$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend im Arsch.";
|
||||
$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung.";
|
||||
$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden.";
|
||||
$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden.";
|
||||
$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server.";
|
||||
|
|
@ -961,23 +1026,27 @@ $a->strings["Unable to set your contact credentials on our system."] = "Deine Ko
|
|||
$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für dein Profil konnten nicht gespeichert werden";
|
||||
$a->strings["Connection accepted at %s"] = "Auf %s wurde die Verbindung akzeptiert";
|
||||
$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
|
||||
$a->strings["Google+ Import Settings"] = "Google+ Import Einstellungen";
|
||||
$a->strings["Enable Google+ Import"] = "Aktiviere Google+ Import";
|
||||
$a->strings["Google Account ID"] = "Google Account ID";
|
||||
$a->strings["Google+ Import Settings saved."] = "Google+ Import Einstellungen gespeichert.";
|
||||
$a->strings["Facebook disabled"] = "Facebook deaktiviert";
|
||||
$a->strings["Updating contacts"] = "Aktualisiere Kontakte";
|
||||
$a->strings["Facebook API key is missing."] = "Facebook-API-Schlüssel nicht gefunden";
|
||||
$a->strings["Facebook Connect"] = "Mit Facebook verbinden";
|
||||
$a->strings["Install Facebook connector for this account."] = "Facebook-Connector für dieses Konto installieren.";
|
||||
$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["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 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["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["The following settings determine the privacy of your Facebook profile wall on this website."] = "Mit den folgenden Einstellungen kannst Du die Privatsphäre der Kopie Deiner Facebook-Pinnwand hier auf dieser Seite einstellen.";
|
||||
$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "Mit den folgenden Einstellungen kannst du die Privatsphäre der Kopie Deiner Facebook-Pinnwand hier auf dieser Seite einstellen.";
|
||||
$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["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"] = "Kommaseparierte Anwendungen, die ignoriert werden sollen";
|
||||
$a->strings["Problems with Facebook Real-Time Updates"] = "Probleme mit Facebook Echtzeit-Updates";
|
||||
$a->strings["Facebook"] = "Facebook";
|
||||
|
|
@ -986,7 +1055,7 @@ $a->strings["Facebook API Key"] = "Facebook API Schlüssel";
|
|||
$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "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>";
|
||||
$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "Fehler: der angegebene API Schlüssel scheint nicht korrekt zu sein (Zugriffstoken konnte nicht empfangen werden).";
|
||||
$a->strings["The given API Key seems to work correctly."] = "Der angegebene API Schlüssel scheint korrekt zu funktionieren.";
|
||||
$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. Something strange's going on."] = "Die Richtigkeit des API Schlüssels konnte nicht gefunden werden. Irgendwas stimmt nicht.";
|
||||
$a->strings["App-ID / API-Key"] = "App-ID / API-Key";
|
||||
$a->strings["Application secret"] = "Anwendungs-Geheimnis";
|
||||
$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "Abfrageintervall in Minuten (min %1\$s Minuten)";
|
||||
|
|
@ -1007,6 +1076,9 @@ $a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Face
|
|||
$a->strings["StatusNet AutoFollow settings updated."] = "StatusNet AutoFollow Einstellungen aktualisiert.";
|
||||
$a->strings["StatusNet AutoFollow Settings"] = "StatusNet AutoFollow Einstellungen";
|
||||
$a->strings["Automatically follow any StatusNet followers/mentioners"] = "Automatisch allen StatusNet Followern/Erwähnungen folgen";
|
||||
$a->strings["Bg settings updated."] = "Bg Einstellungen sind aktualisiert.";
|
||||
$a->strings["Bg Settings"] = "Bg Einstellungen";
|
||||
$a->strings["How many contacts to display on profile sidebar"] = "Wie viele Kontakte sollen in der Seitenleiste angezeigt werden";
|
||||
$a->strings["Lifetime of the cache (in hours)"] = "Lebenszeit des Caches (in Stunden)";
|
||||
$a->strings["Cache Statistics"] = "Cache Statistik";
|
||||
$a->strings["Number of items"] = "Anzahl der Einträge";
|
||||
|
|
@ -1014,7 +1086,7 @@ $a->strings["Size of the cache"] = "Größe des Caches";
|
|||
$a->strings["Delete the whole cache"] = "Cache leeren";
|
||||
$a->strings["%d person likes this"] = array(
|
||||
0 => "%d Person mag das",
|
||||
1 => "%d Leuten mögen das",
|
||||
1 => "%d Leute mögen das",
|
||||
);
|
||||
$a->strings["%d person doesn't like this"] = array(
|
||||
0 => " %d Person mag das nicht",
|
||||
|
|
@ -1025,6 +1097,43 @@ $a->strings["Generate new key"] = "Neuen Schlüssel erstellen";
|
|||
$a->strings["Widgets key"] = "Widgets Schlüssel";
|
||||
$a->strings["Widgets available"] = "Verfügbare Widgets";
|
||||
$a->strings["Connect on Friendica!"] = "In Friendica verbinden!";
|
||||
$a->strings["bitchslap"] = "";
|
||||
$a->strings["bitchslapped"] = "";
|
||||
$a->strings["shag"] = "";
|
||||
$a->strings["shagged"] = "";
|
||||
$a->strings["do something obscenely biological to"] = "";
|
||||
$a->strings["did something obscenely biological to"] = "";
|
||||
$a->strings["point out the new poke feature to"] = "";
|
||||
$a->strings["pointed out the new poke feature to"] = "";
|
||||
$a->strings["declare undying love for"] = "";
|
||||
$a->strings["declared undying love for"] = "";
|
||||
$a->strings["set fire to"] = "";
|
||||
$a->strings["patent"] = "";
|
||||
$a->strings["patented"] = "";
|
||||
$a->strings["stroke beard"] = "";
|
||||
$a->strings["stroked their beard at"] = "";
|
||||
$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = "";
|
||||
$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = "";
|
||||
$a->strings["hug"] = "";
|
||||
$a->strings["hugged"] = "";
|
||||
$a->strings["kiss"] = "";
|
||||
$a->strings["kissed"] = "";
|
||||
$a->strings["raise eyebrows at"] = "";
|
||||
$a->strings["raised their eyebrows at"] = "";
|
||||
$a->strings["insult"] = "";
|
||||
$a->strings["insulted"] = "";
|
||||
$a->strings["praise"] = "";
|
||||
$a->strings["praised"] = "";
|
||||
$a->strings["be dubious of"] = "";
|
||||
$a->strings["was dubious of"] = "";
|
||||
$a->strings["eat"] = "";
|
||||
$a->strings["ate"] = "";
|
||||
$a->strings["giggle and fawn at"] = "";
|
||||
$a->strings["giggled and fawned at"] = "";
|
||||
$a->strings["doubt"] = "anzeigen/verbergen";
|
||||
$a->strings["doubted"] = "";
|
||||
$a->strings["glare"] = "";
|
||||
$a->strings["glared at"] = "";
|
||||
$a->strings["YourLS Settings"] = "YourLS Einstellungen";
|
||||
$a->strings["URL: http://"] = "URL: http://";
|
||||
$a->strings["Username:"] = "Nutzername:";
|
||||
|
|
@ -1045,7 +1154,12 @@ $a->strings["Use /expression/ to provide regular expressions"] = "Verwende /expr
|
|||
$a->strings["NSFW Settings saved."] = "NSFW-Einstellungen gespeichert";
|
||||
$a->strings["%s - Click to open/close"] = "%s – Zum Öffnen/Schließen klicken";
|
||||
$a->strings["Forums"] = "Foren";
|
||||
$a->strings["show more"] = "mehr anzeigen";
|
||||
$a->strings["Forums:"] = "Foren:";
|
||||
$a->strings["Page settings updated."] = "Seiteneinstellungen aktualisiert.";
|
||||
$a->strings["Page Settings"] = "Seiteneinstellungen";
|
||||
$a->strings["How many forums to display on sidebar without paging"] = "Wie viele Foren sollen in der Seitenleiste ohne Umblättern angezeigt werden";
|
||||
$a->strings["Randomise Page/Forum list"] = "Zufällige Seiten/Foren Liste";
|
||||
$a->strings["Show pages/forums on profile page"] = "Foren/Seiten auf der Profilseite anzeigen";
|
||||
$a->strings["Planets Settings"] = "Planeten Einstellungen";
|
||||
$a->strings["Enable Planets Plugin"] = "Aktiviere Planeten Plugin";
|
||||
$a->strings["Login"] = "Anmeldung";
|
||||
|
|
@ -1055,57 +1169,129 @@ $a->strings["Most active users"] = "Aktivste Nutzer";
|
|||
$a->strings["Latest photos"] = "Neueste Fotos";
|
||||
$a->strings["Latest likes"] = "Neueste Favoriten";
|
||||
$a->strings["event"] = "Veranstaltung";
|
||||
$a->strings["Friendicy-Native events"] = "";
|
||||
$a->strings["No access"] = "Kein Zugriff";
|
||||
$a->strings["Could not open component for editing"] = "";
|
||||
$a->strings["Go back to the calendar"] = "Zurück zum Kalender";
|
||||
$a->strings["Event data"] = "";
|
||||
$a->strings["Calendar"] = "Kalender";
|
||||
$a->strings["Special color"] = "";
|
||||
$a->strings["Subject"] = "";
|
||||
$a->strings["Starts"] = "Beginnt";
|
||||
$a->strings["Ends"] = "Endet";
|
||||
$a->strings["Description"] = "Beschreibung";
|
||||
$a->strings["Recurrence"] = "";
|
||||
$a->strings["Frequency"] = "";
|
||||
$a->strings["Daily"] = "Täglich";
|
||||
$a->strings["Weekly"] = "Wöchentlich";
|
||||
$a->strings["Monthly"] = "Monatlich";
|
||||
$a->strings["Yearly"] = "";
|
||||
$a->strings["days"] = "Tage";
|
||||
$a->strings["weeks"] = "Wochen";
|
||||
$a->strings["months"] = "Monate";
|
||||
$a->strings["years"] = "Jahre";
|
||||
$a->strings["Interval"] = "";
|
||||
$a->strings["All %select% %time%"] = "";
|
||||
$a->strings["Days"] = "Tage";
|
||||
$a->strings["Sunday"] = "Sonntag";
|
||||
$a->strings["Monday"] = "Montag";
|
||||
$a->strings["Tuesday"] = "Dienstag";
|
||||
$a->strings["Wednesday"] = "Mittwoch";
|
||||
$a->strings["Thursday"] = "Donnerstag";
|
||||
$a->strings["Friday"] = "Freitag";
|
||||
$a->strings["Saturday"] = "Samstag";
|
||||
$a->strings["First day of week:"] = "Erster Tag der Woche";
|
||||
$a->strings["Day of month"] = "Tag des Monats";
|
||||
$a->strings["#num#th of each month"] = "";
|
||||
$a->strings["#num#th-last of each month"] = "";
|
||||
$a->strings["#num#th #wkday# of each month"] = "";
|
||||
$a->strings["#num#th-last #wkday# of each month"] = "";
|
||||
$a->strings["Month"] = "Monat";
|
||||
$a->strings["#num#th of the given month"] = "";
|
||||
$a->strings["#num#th-last of the given month"] = "";
|
||||
$a->strings["#num#th #wkday# of the given month"] = "";
|
||||
$a->strings["#num#th-last #wkday# of the given month"] = "";
|
||||
$a->strings["Repeat until"] = "";
|
||||
$a->strings["Infinite"] = "";
|
||||
$a->strings["Until the following date"] = "";
|
||||
$a->strings["Number of times"] = "";
|
||||
$a->strings["Exceptions"] = "";
|
||||
$a->strings["none"] = "";
|
||||
$a->strings["Notification"] = "Benachrichtigung";
|
||||
$a->strings["Notify by"] = "";
|
||||
$a->strings["E-Mail"] = "";
|
||||
$a->strings["On Friendica / Display"] = "";
|
||||
$a->strings["Time"] = "";
|
||||
$a->strings["Hours"] = "Stunden";
|
||||
$a->strings["Minutes"] = "Minuten";
|
||||
$a->strings["Seconds"] = "";
|
||||
$a->strings["Weeks"] = "";
|
||||
$a->strings["before the"] = "";
|
||||
$a->strings["start of the event"] = "";
|
||||
$a->strings["end of the event"] = "";
|
||||
$a->strings["Add a notification"] = "";
|
||||
$a->strings["The event #name# will start at #date"] = "";
|
||||
$a->strings["#name# is about to begin."] = "";
|
||||
$a->strings["Saved"] = "";
|
||||
$a->strings["U.S. Time Format (mm/dd/YYYY)"] = "U.S. Datumsformat (mm/dd/YYYY)";
|
||||
$a->strings["German Time Format (dd.mm.YYYY)"] = "Deutsches Datumsformat (dd.mm.YYYY)";
|
||||
$a->strings["Error"] = "Fehler";
|
||||
$a->strings["No access"] = "Kein Zugriff";
|
||||
$a->strings["Private Events"] = "";
|
||||
$a->strings["Friendica-Contacts"] = "Friendica-Kontakte";
|
||||
$a->strings["Your Friendica-Contacts"] = "Deine Friendica-Kontakte";
|
||||
$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = "";
|
||||
$a->strings["Something went wrong when trying to import the file. Sorry."] = "";
|
||||
$a->strings["The ICS-File has been imported."] = "Die ICS-Datei wurde importoert.";
|
||||
$a->strings["No file was uploaded."] = "Es wurde keine Datei geladen.";
|
||||
$a->strings["Import a ICS-file"] = "Importiere eine ICS-Datei";
|
||||
$a->strings["ICS-File"] = "ICS-Datei";
|
||||
$a->strings["Overwrite all #num# existing events"] = "Überschreibe alle #num# existierenden Einträge";
|
||||
$a->strings["New event"] = "Neue Veranstaltung";
|
||||
$a->strings["Today"] = "Heute";
|
||||
$a->strings["Day"] = "Tag";
|
||||
$a->strings["Week"] = "Woche";
|
||||
$a->strings["Month"] = "Monat";
|
||||
$a->strings["Reload"] = "Neu Laden";
|
||||
$a->strings["Date"] = "Datum";
|
||||
$a->strings["Not found"] = "Nicht gefunden";
|
||||
$a->strings["Go back to the calendar"] = "Zurück zum Kalender";
|
||||
$a->strings["Starts"] = "Beginnt";
|
||||
$a->strings["Ends"] = "Endet";
|
||||
$a->strings["Description"] = "Beschreibung";
|
||||
$a->strings["Notification"] = "Benachrichtigung";
|
||||
$a->strings["Minutes"] = "Minuten";
|
||||
$a->strings["Hours"] = "Stunden";
|
||||
$a->strings["Days"] = "Tage";
|
||||
$a->strings["before"] = "vorher";
|
||||
$a->strings["Calendar Settings"] = "Kalender Einstellungen";
|
||||
$a->strings["Error"] = "Fehler";
|
||||
$a->strings["The calendar has been updated."] = "Der Kalender wurde aktualisiert.";
|
||||
$a->strings["The new calendar has been created."] = "Der neue Kalender wurde erstellt.";
|
||||
$a->strings["The calendar has been deleted."] = "Der Kalender wurde gelöscht.";
|
||||
$a->strings["Calendar Settings"] = "Kalendereinstellungen";
|
||||
$a->strings["Date format"] = "Datumsformat";
|
||||
$a->strings["Time zone"] = "Zeitzone";
|
||||
$a->strings["Calendars"] = "Kalender";
|
||||
$a->strings["Create a new calendar"] = "Neuen Kalender anlegen";
|
||||
$a->strings["Limitations"] = "Einschränkungen";
|
||||
$a->strings["Warning"] = "Warnung";
|
||||
$a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = "Synchronisation (iPhone, Thunderbird Lightning, Android, ...)";
|
||||
$a->strings["Synchronizing this calendar with the iPhone"] = "Diesen Kalender mit dem iPhone synchronisieren";
|
||||
$a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = "Friendica-Kontakte mit dem iPhone synchronisieren";
|
||||
$a->strings["Friendica-Contacts"] = "Friendica-Kontakte";
|
||||
$a->strings["Your Friendica-Contacts"] = "Deine Friendica-Kontakte";
|
||||
$a->strings["Calendar"] = "Kalender";
|
||||
$a->strings["The current version of this plugin has not been set up correctly. Please contact the system administrator of your installation of friendica to fix this."] = "Die aktuelle Version dieses Plugins wurde nicht korrekt eingestellt. Bitte kontaktiere den System-Administrator deiner Friendica Installation um den Fehler zu beheben.";
|
||||
$a->strings["Extended calendar with CalDAV-support"] = "Erweiterter Kalender mit CalDAV Unterstützung.";
|
||||
$a->strings["The database tables have been installed."] = "Die Datenbank-Tabellen wurden installiert.";
|
||||
$a->strings["noreply"] = "noreply";
|
||||
$a->strings["Notification: "] = "Benachrichtigungen: ";
|
||||
$a->strings["The database tables have been installed."] = "Die Datenbanktabellen wurden installiert.";
|
||||
$a->strings["An error occurred during the installation."] = "Während der Installation trat ein Fehler auf.";
|
||||
$a->strings["The database tables have been updated."] = "Die Tabellen in der Datenbank wurden aktualisiert.";
|
||||
$a->strings["An error occurred during the update."] = "Während der Aktualisierung trat ein Fehler auf.";
|
||||
$a->strings["No system-wide settings yet."] = "Momentan keine systemweiten Einstellungen.";
|
||||
$a->strings["Database status"] = "Datenbank Status";
|
||||
$a->strings["Database status"] = "Datenbankstatus";
|
||||
$a->strings["Installed"] = "Installiert";
|
||||
$a->strings["Upgrade needed"] = "Upgrade erforderlich";
|
||||
$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events <i>should</i> be converted to the new database structure, it's always safe to have a backup. Below, you can have a look at the database-queries that will be made when pressing the 'update'-button."] = "Bitte sichere alle Kalenderdaten (die Tabellen mit dav_* beginnend) bevor du mit dem Update fortfährst. Eigentliche <i>sollten</i> alle Kalendereinträge in die neue Datenbankstruktur übernommen werden, aber sicher ist sicher. Weiter unten kannst du die Datenbank-Anfragen ansehen, die im Verlauf des Updates gemacht werden.";
|
||||
$a->strings["Upgrade"] = "Upgrade";
|
||||
$a->strings["Not installed"] = "Nicht installiert";
|
||||
$a->strings["Install"] = "Installieren";
|
||||
$a->strings["Unknown"] = "Unbekannt";
|
||||
$a->strings["Something really went wrong. I cannot recover from this state automatically, sorry. Please go to the database backend, back up the data, and delete all tables beginning with 'dav_' manually. Afterwards, this installation routine should be able to reinitialize the tables automatically."] = "Irgendetwas ging schief. Ich kann leider von diesem Zustand der Datenbank leider nicht automatisch fortfahren. Bitte mache ein Backup der Daten aus der Datenbank und lösche anschließend alle Tabellen deren Name mit 'dav_' anfangen. Anschließend sollte diese Installations-Routine in der Lage sein die nötigen Tabellen automatisch neu anzulegen.";
|
||||
$a->strings["Troubleshooting"] = "Problembehebung";
|
||||
$a->strings["Manual creation of the database tables:"] = "Manuelles anlegen der Datenbank Tabellen:";
|
||||
$a->strings["Manual creation of the database tables:"] = "Manuelles Anlegen der Datenbanktabellen:";
|
||||
$a->strings["Show SQL-statements"] = "SQL-Anweisungen anzeigen";
|
||||
$a->strings["Private Calendar"] = "Privater Kalender";
|
||||
$a->strings["Friendica Events: Mine"] = "Meine Friendica-Veranstaltungen";
|
||||
$a->strings["Friendica Events: Contacts"] = "Friendica Veranstaltungen meiner Kontakte";
|
||||
$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"] = "Ermöglicht dir, deine friendica id (%s) mit externen unhosted-fähigen Speichern (z.B. ownCloud) zu verbinden. Siehe <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>";
|
||||
$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"] = "Ermöglicht dir, deine Friendica ID (%s) mit externen unhosted-fähigen Speichern (z.B. ownCloud) zu verbinden. Siehe <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>";
|
||||
$a->strings["Template URL (with {category})"] = "Vorlagen URL (mit {Kategorie})";
|
||||
$a->strings["OAuth end-point"] = "OAuth end-point";
|
||||
$a->strings["OAuth end-point"] = "OAuth Endpunkt";
|
||||
$a->strings["Api"] = "Api";
|
||||
$a->strings["Member since:"] = "Mitglied seit:";
|
||||
$a->strings["Three Dimensional Tic-Tac-Toe"] = "Dreidimensionales Tic-Tac-Toe";
|
||||
|
|
@ -1157,6 +1343,12 @@ $a->strings["Upload was cancelled, or server error encountered"] = "Upload abgeb
|
|||
$a->strings["OEmbed settings updated"] = "OEmbed Einstellungen aktualisiert.";
|
||||
$a->strings["Use OEmbed for YouTube videos"] = "OEmbed für Youtube Videos verwenden";
|
||||
$a->strings["URL to embed:"] = "URL zum Einbetten:";
|
||||
$a->strings["show/hide"] = "anzeigen/verbergen";
|
||||
$a->strings["No forum subscriptions"] = "Keine Foren-Mitgliedschaften.";
|
||||
$a->strings["Forumlist settings updated."] = "Einstellungen zur Foren-Liste aktualisiert.";
|
||||
$a->strings["Forumlist Settings"] = "Foren-Liste Einstellungen";
|
||||
$a->strings["Randomise Forumlist/Forum list"] = "Zufällige Zusammenstellung der Foren-Liste";
|
||||
$a->strings["Show forumlists/forums on profile forumlist"] = "Liste der Foren deren Abonnement du bist in deinem Profil anzeigen:";
|
||||
$a->strings["Impressum"] = "Impressum";
|
||||
$a->strings["Site Owner"] = "Betreiber der Seite";
|
||||
$a->strings["Email Address"] = "Email Adresse";
|
||||
|
|
@ -1193,28 +1385,41 @@ $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["Default zoom"] = "Standard Zoom";
|
||||
$a->strings["The default zoom level. (1:world, 18:highest)"] = "Standard Zoomlevel (1: Welt; 18: höchstes)";
|
||||
$a->strings["Editplain settings updated."] = "Editplain Einstellungen aktualisiert";
|
||||
$a->strings["Group Text"] = "";
|
||||
$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "";
|
||||
$a->strings["Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"] = "Kann Libravatar NICHT erfolgreich installieren.<br>PHP >=5.3 wird benötigt";
|
||||
$a->strings["generic profile image"] = "allgemeines Profilbild";
|
||||
$a->strings["random geometric pattern"] = "zufällig erzeugtes geometrisches Muster";
|
||||
$a->strings["monster face"] = "Monstergesicht";
|
||||
$a->strings["computer generated face"] = "Computergesicht";
|
||||
$a->strings["retro arcade style face"] = "Retro Arcade Design Gesicht";
|
||||
$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "Deine PHP Version %s ist niedriger als die benötigte Version PHP >= 5.3.";
|
||||
$a->strings["This addon is not functional on your server."] = "Dieses Addon funktioniert auf deinem Server nicht.";
|
||||
$a->strings["Information"] = "Information";
|
||||
$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "Das Gravatar Addon ist installiert. Bitte schalte das Gravatar Addon aus.<br>Das Libravatar Addon nutzt Gravater, sollte nichts auf Libravatar gefunden werden.";
|
||||
$a->strings["Default avatar image"] = "Standard Profilbild ";
|
||||
$a->strings["Select default avatar image if none was found. See README"] = "Das Standard Avatar Bild wurde nicht gefunden. Siehe README";
|
||||
$a->strings["Libravatar settings updated."] = "Libravatar Einstellungen sind aktualisiert.";
|
||||
$a->strings["Post to libertree"] = "bei libertree veröffentlichen";
|
||||
$a->strings["libertree Post Settings"] = "libertree Post Einstellungen";
|
||||
$a->strings["Enable Libertree Post Plugin"] = "Libertree Post Plugin aktivieren";
|
||||
$a->strings["Libertree API token"] = "Libertree API Token";
|
||||
$a->strings["Libertree site URL"] = "Libertree URL";
|
||||
$a->strings["Post to Libertree by default"] = "Standardmäßig bei libertree veröffentlichen";
|
||||
$a->strings["Altpager settings updated."] = "Altpager Einstellungen sind aktualisiert.";
|
||||
$a->strings["Alternate Pagination Setting"] = "Alternative Seitenumbruch Einstellung";
|
||||
$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = "Nutze Links zu \"neuer\" und \"älter\" Seiten, statt Seiten Nummern?";
|
||||
$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["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["Editplain settings updated."] = "Editplain Einstellungen aktualisiert";
|
||||
$a->strings["Editplain Settings"] = "Editplain Einstellungen";
|
||||
$a->strings["Disable richtext status editor"] = "RichText Editor deaktivieren";
|
||||
$a->strings["generic profile image"] = "allgemeines Profilbild";
|
||||
$a->strings["random geometric pattern"] = "zufällig erzeugtes geometrisches Muster";
|
||||
$a->strings["monster face"] = "Monstergesicht";
|
||||
$a->strings["computer generated face"] = "Computergesicht";
|
||||
$a->strings["retro arcade style face"] = "Retro Arcade Design Gesicht";
|
||||
$a->strings["Default avatar image"] = "Standard Profilbild ";
|
||||
$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "Das Libravatar Addon ist ebenfalls installiert. Bitte deaktiviere das Libravatar Addon oder dieses Gravatar Addon.<br>Das Libravatar Addon nutzt Gravater, sollte nichts auf Libravatar gefunden werden.";
|
||||
$a->strings["Select default avatar image if none was found at Gravatar. See README"] = "Wähle das Standardgesicht, wenn kein Bild auf Gravatar gefunden wurde. Schaue auch sonst im README nach.";
|
||||
$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["Your Friendica test account is about to expire."] = "Dein Friendica-Testkonto 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 Testkonto 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 einen normalen Friendica-Server für deine integrierte Social-Network-Kommunikation suchst. Eine Liste öffentlicher Server 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";
|
||||
|
|
@ -1233,7 +1438,7 @@ $a->strings["We could not contact the StatusNet API with the Path you entered."]
|
|||
$a->strings["StatusNet settings updated."] = "StatusNet Einstellungen aktualisiert.";
|
||||
$a->strings["StatusNet Posting Settings"] = "StatusNet-Beitragseinstellungen";
|
||||
$a->strings["Globally Available StatusNet OAuthKeys"] = "Verfügbare OAuth Schlüssel für StatusNet";
|
||||
$a->strings["There are preconfigured OAuth key pairs for some StatusNet servers available. If you are useing one of them, please use these credentials. If not feel free to connect to any other StatusNet instance (see below)."] = "Für einige StatusNet Server sind voreingestellt OAuth Schlüsselpaare verfügbar. Solltest du einen dieser Server benutzen, dann verwende bitte diese Schlüssel. Falls nicht, stellen stattdessen eine Verbindung zu irgend einem anderen StatusNet Server her (siehe unten).";
|
||||
$a->strings["There are preconfigured OAuth key pairs for some StatusNet servers available. If you are useing one of them, please use these credentials. If not feel free to connect to any other StatusNet instance (see below)."] = "Für einige StatusNet Server sind voreingestellte OAuth Schlüsselpaare verfügbar. Solltest du einen dieser Server benutzen, dann verwende bitte diese Schlüssel. Falls nicht, stelle stattdessen eine Verbindung zu irgend einem anderen StatusNet Server her (siehe unten).";
|
||||
$a->strings["Provide your own OAuth Credentials"] = "Eigene OAuth Schlüssel eintragen";
|
||||
$a->strings["No consumer key pair for StatusNet found. Register your Friendica Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited StatusNet installation."] = "Kein Consumer-Schlüsselpaar für StatusNet gefunden. Registriere deinen Friendica-Account als Desktop-Client, kopiere das Consumer-Schlüsselpaar hierher und gib die API-URL ein.<br />Bevor du dein eigenes Consumer-Schlüsselpaar registrierst, frage den Administrator dieses Friendica-Servers, ob schon ein Schlüsselpaar für diesen Friendica-Server auf diesem StatusNet-Server existiert.";
|
||||
$a->strings["OAuth Consumer Key"] = "OAuth Consumer Key";
|
||||
|
|
@ -1262,7 +1467,6 @@ $a->strings["Tumblr password"] = "Tumblr Passwort";
|
|||
$a->strings["Post to Tumblr by default"] = "Standardmäßig bei Tumblr veröffentlichen";
|
||||
$a->strings["Numfriends settings updated."] = "Numfriends Einstellungen aktualisiert";
|
||||
$a->strings["Numfriends Settings"] = "Numfriends Einstellungen";
|
||||
$a->strings["How many contacts to display on profile sidebar"] = "Wie viele Kontakte sollen in der Seitenleiste angezeigt werden";
|
||||
$a->strings["Gnot settings updated."] = "Gnot Einstellungen aktualisiert.";
|
||||
$a->strings["Gnot Settings"] = "Gnot Einstellungen";
|
||||
$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "Erlaubt das Veröffentlichen von E-Mail Kommentar Benachrichtigungen bei Gmail mit anonymisiertem Betreff";
|
||||
|
|
@ -1275,14 +1479,14 @@ $a->strings["WordPress username"] = "WordPress-Benutzername";
|
|||
$a->strings["WordPress password"] = "WordPress-Passwort";
|
||||
$a->strings["WordPress API URL"] = "WordPress-API-URL";
|
||||
$a->strings["Post to WordPress by default"] = "Standardmäßig auf WordPress veröffentlichen";
|
||||
$a->strings["Provide a backlink to the Friendica post"] = "Einen zurück zum Friendica-Beitrag hinzufügen";
|
||||
$a->strings["Read the original post and comment stream on Friendica"] = "Den Original-Beitrag samt Kommentaren bei Friendica lesen";
|
||||
$a->strings["Provide a backlink to the Friendica post"] = "Einen Link zurück zum Friendica-Beitrag hinzufügen";
|
||||
$a->strings["Read the original post and comment stream on Friendica"] = "Den Originalbeitrag samt Kommentaren bei Friendica lesen";
|
||||
$a->strings["\"Show more\" Settings"] = "\"Mehr zeigen\" Einstellungen";
|
||||
$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["Show More Settings saved."] = "\"Mehr zeigen\" Einstellungen gesichert.";
|
||||
$a->strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "Diese Website benutzt <a href='http://www.piwik.org'>Piwik</a>, eine Open Source-Software zur statistischen Auswertung der Besucherzugriffe.";
|
||||
$a->strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "Wenn Du nicht willst, dass Deine Besuche auf diese Weise gespeichert werden, kannst Du <a href='%s'>ein Cookie setzen</a>. Dann wird Piwik Dich auf dieser Website nicht mehr verfolgen (opt-out).";
|
||||
$a->strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "Wenn du nicht willst, dass deine Besuche auf diese Weise gespeichert werden, kannst du <a href='%s'>ein Cookie setzen</a>. Dann wird Piwik dich auf dieser Website nicht mehr verfolgen (opt-out).";
|
||||
$a->strings["Piwik Base URL"] = "Piwik Basis URL";
|
||||
$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Absoluter Pfad zu deiner Piwik Installation (ohne Protokoll (http/s) und mit abschließendem Schrägstrich)";
|
||||
$a->strings["Site ID"] = "Seiten ID";
|
||||
|
|
@ -1364,17 +1568,13 @@ $a->strings["Alignment"] = "Ausrichtung";
|
|||
$a->strings["Left"] = "Links";
|
||||
$a->strings["Center"] = "Mitte";
|
||||
$a->strings["Set colour scheme"] = "Farbschema wählen";
|
||||
$a->strings["Gender:"] = "Geschlecht:";
|
||||
$a->strings["j F, Y"] = "j F, Y";
|
||||
$a->strings["j F"] = "j F";
|
||||
$a->strings["Birthday:"] = "Geburtstag:";
|
||||
$a->strings["Age:"] = "Alter:";
|
||||
$a->strings["Status:"] = "Status:";
|
||||
$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
|
||||
$a->strings["Homepage:"] = "Homepage:";
|
||||
$a->strings["Tags:"] = "Tags";
|
||||
$a->strings["Religion:"] = "Religion:";
|
||||
$a->strings["About:"] = "Über:";
|
||||
$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:";
|
||||
$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:";
|
||||
$a->strings["Musical interests:"] = "Musikalische Interessen:";
|
||||
|
|
@ -1393,9 +1593,6 @@ $a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen";
|
|||
$a->strings["Frequently"] = "immer wieder";
|
||||
$a->strings["Hourly"] = "Stündlich";
|
||||
$a->strings["Twice daily"] = "Zweimal täglich";
|
||||
$a->strings["Daily"] = "Täglich";
|
||||
$a->strings["Weekly"] = "Wöchentlich";
|
||||
$a->strings["Monthly"] = "Monatlich";
|
||||
$a->strings["OStatus"] = "OStatus";
|
||||
$a->strings["RSS/Atom"] = "RSS/Atom";
|
||||
$a->strings["Zot!"] = "Zott";
|
||||
|
|
@ -1463,23 +1660,30 @@ $a->strings["Ask me"] = "Frag mich";
|
|||
$a->strings["Starts:"] = "Beginnt:";
|
||||
$a->strings["Finishes:"] = "Endet:";
|
||||
$a->strings["(no subject)"] = "(kein Betreff)";
|
||||
$a->strings["noreply"] = "noreply";
|
||||
$a->strings[" on Last.fm"] = " bei Last.fm";
|
||||
$a->strings["prev"] = "vorige";
|
||||
$a->strings["first"] = "erste";
|
||||
$a->strings["last"] = "letzte";
|
||||
$a->strings["next"] = "nächste";
|
||||
$a->strings["newer"] = "neuer";
|
||||
$a->strings["older"] = "älter";
|
||||
$a->strings["No contacts"] = "Keine Kontakte";
|
||||
$a->strings["%d Contact"] = array(
|
||||
0 => "%d Kontakt",
|
||||
1 => "%d Kontakte",
|
||||
);
|
||||
$a->strings["Monday"] = "Montag";
|
||||
$a->strings["Tuesday"] = "Dienstag";
|
||||
$a->strings["Wednesday"] = "Mittwoch";
|
||||
$a->strings["Thursday"] = "Donnerstag";
|
||||
$a->strings["Friday"] = "Freitag";
|
||||
$a->strings["Saturday"] = "Samstag";
|
||||
$a->strings["Sunday"] = "Sonntag";
|
||||
$a->strings["poke"] = "";
|
||||
$a->strings["poked"] = "";
|
||||
$a->strings["ping"] = "";
|
||||
$a->strings["pinged"] = "";
|
||||
$a->strings["prod"] = "";
|
||||
$a->strings["prodded"] = "";
|
||||
$a->strings["slap"] = "";
|
||||
$a->strings["slapped"] = "";
|
||||
$a->strings["finger"] = "";
|
||||
$a->strings["fingered"] = "";
|
||||
$a->strings["rebuff"] = "";
|
||||
$a->strings["rebuffed"] = "";
|
||||
$a->strings["January"] = "Januar";
|
||||
$a->strings["February"] = "Februar";
|
||||
$a->strings["March"] = "März";
|
||||
|
|
@ -1498,7 +1702,7 @@ $a->strings["[remove]"] = "[löschen]";
|
|||
$a->strings["Categories:"] = "Kategorien:";
|
||||
$a->strings["Filed under:"] = "Abgelegt unter:";
|
||||
$a->strings["Click to open/close"] = "Zum öffnen/schließen klicken";
|
||||
$a->strings["default"] = "standard";
|
||||
$a->strings["default"] = "Standard";
|
||||
$a->strings["Select an alternate language"] = "Alternative Sprache auswählen";
|
||||
$a->strings["activity"] = "Aktivität";
|
||||
$a->strings["comment"] = "Kommentar";
|
||||
|
|
@ -1534,7 +1738,7 @@ $a->strings["Conversations from your friends"] = "Unterhaltungen deiner Kontakte
|
|||
$a->strings["Friend Requests"] = "Kontaktanfragen";
|
||||
$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen";
|
||||
$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen";
|
||||
$a->strings["Private mail"] = "Private Email";
|
||||
$a->strings["Private mail"] = "Private E-Mail";
|
||||
$a->strings["Inbox"] = "Eingang";
|
||||
$a->strings["Outbox"] = "Ausgang";
|
||||
$a->strings["Manage"] = "Verwalten";
|
||||
|
|
@ -1570,11 +1774,7 @@ $a->strings["month"] = "Monat";
|
|||
$a->strings["day"] = "Tag";
|
||||
$a->strings["never"] = "nie";
|
||||
$a->strings["less than a second ago"] = "vor weniger als einer Sekunde";
|
||||
$a->strings["years"] = "Jahre";
|
||||
$a->strings["months"] = "Monate";
|
||||
$a->strings["week"] = "Woche";
|
||||
$a->strings["weeks"] = "Wochen";
|
||||
$a->strings["days"] = "Tage";
|
||||
$a->strings["hour"] = "Stunde";
|
||||
$a->strings["hours"] = "Stunden";
|
||||
$a->strings["minute"] = "Minute";
|
||||
|
|
@ -1582,10 +1782,13 @@ $a->strings["minutes"] = "Minuten";
|
|||
$a->strings["second"] = "Sekunde";
|
||||
$a->strings["seconds"] = "Sekunden";
|
||||
$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her";
|
||||
$a->strings["%s's birthday"] = "%ss Geburtstag";
|
||||
$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
|
||||
$a->strings["From: "] = "Von: ";
|
||||
$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
|
||||
$a->strings["Image/photo"] = "Bild/Foto";
|
||||
$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbanken Server '%s' nicht ermitteln.";
|
||||
$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
|
||||
$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
|
||||
$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
|
||||
$a->strings["[no subject]"] = "[kein Betreff]";
|
||||
$a->strings["Visible to everybody"] = "Für jeden sichtbar";
|
||||
$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung";
|
||||
|
|
@ -1593,33 +1796,36 @@ $a->strings["Thank You,"] = "Danke,";
|
|||
$a->strings["%s Administrator"] = "der Administrator von %s";
|
||||
$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
|
||||
$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica Meldung] Neue Nachricht erhalten von %s";
|
||||
$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat Dir eine neues private Nachricht geschickt auf %2\$s.";
|
||||
$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte Dir %2\$s.";
|
||||
$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat dir eine neue private Nachricht auf %2\$s geschickt.";
|
||||
$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte dir %2\$s.";
|
||||
$a->strings["a private message"] = "eine private Nachricht";
|
||||
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um deine privaten Nachrichten anzusehen und/oder zu beantworten.";
|
||||
$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]a %3\$s[/url]";
|
||||
$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$s's %4\$s[/url]";
|
||||
$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]Deinen Beitrag %3\$s[/url]";
|
||||
$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$ss %4\$s[/url]";
|
||||
$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]deinen Beitrag %3\$s[/url]";
|
||||
$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica Meldung] Kommentar zum Beitrag #%1\$d von %2\$s";
|
||||
$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem du folgst.";
|
||||
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren.";
|
||||
$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica Meldung] %s hat auf Deine Pinnwand geschrieben";
|
||||
$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb auf Deine Pinnwand auf %2\$s";
|
||||
$a->strings["%1\$s posted to [url=%2s]your wall[/url]"] = "%1\$s schrieb auf [url=%2s]Deine Pinnwand[/url]";
|
||||
$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica Meldung] %s hat Dich erwähnt";
|
||||
$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte Dich auf %2\$s";
|
||||
$a->strings["%1\$s [url=%2s]tagged you[/url]."] = "%1\$s [url=%2s]erwähnte Dich[/url].";
|
||||
$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica Meldung] %s markierte Deinen Beitrag";
|
||||
$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte Deinen Beitrag auf %2\$s";
|
||||
$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica Meldung] %s hat auf deine Pinnwand geschrieben";
|
||||
$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb auf %2\$s auf deine Pinnwand";
|
||||
$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]deiner Pinnwand[/url] gepostet";
|
||||
$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica Meldung] %s hat dich erwähnt";
|
||||
$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte dich auf %2\$s";
|
||||
$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]erwähnte dich[/url].";
|
||||
$a->strings["[Friendica:Notify] %1\$s poked you"] = "";
|
||||
$a->strings["%1\$s poked you at %2\$s"] = "";
|
||||
$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "";
|
||||
$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica Meldung] %s markierte deinen Beitrag";
|
||||
$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte deinen Beitrag auf %2\$s";
|
||||
$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s erwähnte [url=%2\$s]Deinen Beitrag[/url]";
|
||||
$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica Meldung] Kontaktanfrage erhalten";
|
||||
$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage erhalten von '%1\$s' auf %2\$s";
|
||||
$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] erhalten von %2\$s.";
|
||||
$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten";
|
||||
$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten.";
|
||||
$a->strings["You may visit their profile at %s"] = "Hier kannst du das Profil betrachten: %s";
|
||||
$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen.";
|
||||
$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica Meldung] Kontaktvorschlag erhalten";
|
||||
$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Freunde-Vorschlag erhalten von '%1\$s' auf %2\$s";
|
||||
$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Freunde-Vorschlag[/url] erhalten %2\$s von %3\$s.";
|
||||
$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Freunde-Vorschlag von '%1\$s' auf %2\$s erhalten";
|
||||
$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Freunde-Vorschlag[/url] %2\$s von %3\$s erhalten.";
|
||||
$a->strings["Name:"] = "Name:";
|
||||
$a->strings["Photo:"] = "Foto:";
|
||||
$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen.";
|
||||
|
|
@ -1630,7 +1836,7 @@ $a->strings["The profile address specified does not provide adequate information
|
|||
$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden.";
|
||||
$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden.";
|
||||
$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen.";
|
||||
$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse um eine Überprüfung der Email Adresse zu erzwingen.";
|
||||
$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen.";
|
||||
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
|
||||
$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können.";
|
||||
$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
|
||||
|
|
@ -1638,8 +1844,6 @@ $a->strings["following"] = "folgen";
|
|||
$a->strings["A new person is sharing with you at "] = "Eine neue Person teilt mit dir auf ";
|
||||
$a->strings["You have a new follower at "] = "Du hast einen neuen Kontakt auf ";
|
||||
$a->strings["Archives"] = "Archiv";
|
||||
$a->strings["image/photo"] = "Bild/Foto";
|
||||
$a->strings["link"] = "Verweis";
|
||||
$a->strings["An invitation is required."] = "Du benötigst eine Einladung.";
|
||||
$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden.";
|
||||
$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL";
|
||||
|
|
@ -1654,50 +1858,23 @@ $a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_
|
|||
$a->strings["Nickname is already registered. 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["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ährend 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 Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
|
||||
$a->strings["Welcome "] = "Willkommen ";
|
||||
$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
|
||||
$a->strings["Welcome back "] = "Willkommen zurück ";
|
||||
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das 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["Poke"] = "";
|
||||
$a->strings["View Status"] = "Pinnwand anschauen";
|
||||
$a->strings["View Profile"] = "Profil anschauen";
|
||||
$a->strings["View Photos"] = "Bilder anschauen";
|
||||
$a->strings["Network Posts"] = "Netzwerkbeiträge";
|
||||
$a->strings["Edit Contact"] = "Kontakt bearbeiten";
|
||||
$a->strings["Send PM"] = "Private Nachricht senden";
|
||||
$a->strings["%1\$s poked %2\$s"] = "";
|
||||
$a->strings["post/item"] = "Nachricht/Beitrag";
|
||||
$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert";
|
||||
$a->strings["Select"] = "Auswählen";
|
||||
$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten.";
|
||||
$a->strings["%s from %s"] = "%s von %s";
|
||||
$a->strings["View in context"] = "Im Zusammenhang betrachten";
|
||||
$a->strings["%d comment"] = array(
|
||||
0 => "%d Kommentar",
|
||||
1 => "%d Kommentare",
|
||||
);
|
||||
$a->strings["like"] = "mag ich";
|
||||
$a->strings["dislike"] = "mag ich nicht";
|
||||
$a->strings["Share this"] = "Weitersagen";
|
||||
$a->strings["share"] = "Teilen";
|
||||
$a->strings["Bold"] = "Fett";
|
||||
$a->strings["Italic"] = "Kursiv";
|
||||
$a->strings["Underline"] = "Unterstrichen";
|
||||
$a->strings["Quote"] = "Zitat";
|
||||
$a->strings["Code"] = "Code";
|
||||
$a->strings["Image"] = "Bild";
|
||||
$a->strings["Link"] = "Verweis";
|
||||
$a->strings["Video"] = "Video";
|
||||
$a->strings["add star"] = "markieren";
|
||||
$a->strings["remove star"] = "Markierung entfernen";
|
||||
$a->strings["toggle star status"] = "Markierung umschalten";
|
||||
$a->strings["starred"] = "markiert";
|
||||
$a->strings["add tag"] = "Tag hinzufügen";
|
||||
$a->strings["save to folder"] = "In Ordner speichern";
|
||||
$a->strings["to"] = "zu";
|
||||
$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
|
||||
$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
|
||||
$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge";
|
||||
$a->strings["%s likes this."] = "%s mag das.";
|
||||
$a->strings["%s doesn't like this."] = "%s mag das nicht.";
|
||||
|
|
@ -1722,12 +1899,15 @@ $a->strings["audio link"] = "Audio-Link";
|
|||
$a->strings["set location"] = "Ort setzen";
|
||||
$a->strings["clear location"] = "Ort löschen";
|
||||
$a->strings["permissions"] = "Zugriffsrechte";
|
||||
$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken.";
|
||||
$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze deines Abonnements.";
|
||||
$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in deinem Abonnement nicht verfügbar.";
|
||||
$a->strings["Delete this item?"] = "Diesen Beitrag löschen?";
|
||||
$a->strings["show fewer"] = "weniger anzeigen";
|
||||
$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen.";
|
||||
$a->strings["Update Error at %s"] = "Updatefehler bei %s";
|
||||
$a->strings["Create a New Account"] = "Neues Konto erstellen";
|
||||
$a->strings["Nickname or Email address: "] = "Spitzname oder Email-Adresse: ";
|
||||
$a->strings["Nickname or Email address: "] = "Spitzname oder E-Mail-Adresse: ";
|
||||
$a->strings["Password: "] = "Passwort: ";
|
||||
$a->strings["Or login using OpenID: "] = "Oder melde dich mit deiner OpenID an: ";
|
||||
$a->strings["Forgot your password?"] = "Passwort vergessen?";
|
||||
|
|
@ -1744,4 +1924,4 @@ $a->strings["Events this week:"] = "Veranstaltungen diese Woche";
|
|||
$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
|
||||
$a->strings["Profile Details"] = "Profildetails";
|
||||
$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
|
||||
$a->strings["Only You Can See This"] = "Nur Du Kannst Das Sehen";
|
||||
$a->strings["Only You Can See This"] = "Nur du kannst das sehen";
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<a name="$item.id" ></a>
|
||||
<div class="wall-item-outside-wrapper$item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper$item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-outside-wrapper $item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info" id="wall-item-info-$item.id">
|
||||
<div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$item.id"
|
||||
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||
|
|
@ -48,7 +48,7 @@
|
|||
{{ endif }}
|
||||
</div>
|
||||
|
||||
<div class="wall-item-outside-wrapper-end$item.indent" ></div>
|
||||
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
|
||||
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<div class="wall-item-outside-wrapper$item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper$item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-outside-wrapper $item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info" id="wall-item-info-$item.id">
|
||||
<div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$item.id"
|
||||
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||
|
|
@ -47,7 +47,7 @@
|
|||
{{ endif }}
|
||||
</div>
|
||||
|
||||
<div class="wall-item-outside-wrapper-end$item.indent" ></div>
|
||||
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
|
||||
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
<div class="wall-item-outside-wrapper$item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper$item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-outside-wrapper $item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info" id="wall-item-info-$item.id">
|
||||
<div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$item.id"
|
||||
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||
onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
|
||||
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$item.id">
|
||||
<img src="$item.thumb" class="wall-item-photo$item.sparkle$item.indent" id="wall-item-photo-$item.id" style="height: 80px; width: 80px;" alt="$item.name" />
|
||||
<img src="$item.thumb" class="wall-item-photo$item.sparkle $item.indent" id="wall-item-photo-$item.id" style="height: 80px; width: 80px;" alt="$item.name" />
|
||||
</a>
|
||||
<span onclick="openClose('wall-item-photo-menu-$item.id');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-$item.id">menu</span>
|
||||
<div class="wall-item-photo-menu" id="wall-item-photo-menu-$item.id">
|
||||
|
|
@ -74,5 +74,5 @@
|
|||
$item.comment
|
||||
</div>
|
||||
|
||||
<div class="wall-item-outside-wrapper-end$item.indent" ></div>
|
||||
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<div class="wall-item-outside-wrapper$item.indent$item.previewing wallwall" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper$item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-outside-wrapper $item.indent$item.previewing wallwall" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info wallwall" id="wall-item-info-$item.id">
|
||||
<div class="wall-item-photo-wrapper wwto" id="wall-item-ownerphoto-wrapper-$item.id" >
|
||||
<a href="$item.owner_url" target="redir" title="$item.olinktitle" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$item.id">
|
||||
|
|
@ -10,7 +10,7 @@
|
|||
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||
onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
|
||||
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$item.id">
|
||||
<img src="$item.thumb" class="wall-item-photo$item.sparkle$item.indent" id="wall-item-photo-$item.id" style="height: 80px; width: 80px;" alt="$item.name" /></a>
|
||||
<img src="$item.thumb" class="wall-item-photo$item.sparkle $item.indent" id="wall-item-photo-$item.id" style="height: 80px; width: 80px;" alt="$item.name" /></a>
|
||||
<span onclick="openClose('wall-item-photo-menu-$item.id');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-$item.id">menu</span>
|
||||
<div class="wall-item-photo-menu" id="wall-item-photo-menu-$item.id">
|
||||
<ul>
|
||||
|
|
@ -80,6 +80,6 @@
|
|||
$item.comment
|
||||
</div>
|
||||
|
||||
<div class="wall-item-outside-wrapper-end$item.indent" ></div>
|
||||
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<div class="wall-item-outside-wrapper$item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper$item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-outside-wrapper $item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info" id="wall-item-info-$item.id">
|
||||
<div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$item.id"
|
||||
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||
|
|
@ -47,7 +47,7 @@
|
|||
{{ endif }}
|
||||
</div>
|
||||
|
||||
<div class="wall-item-outside-wrapper-end$item.indent" ></div>
|
||||
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
|
||||
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
<div class="wall-item-outside-wrapper$item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper$item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-outside-wrapper $item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info" id="wall-item-info-$item.id">
|
||||
<div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$item.id"
|
||||
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||
onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
|
||||
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$item.id">
|
||||
<img src="$item.thumb" class="wall-item-photo$item.sparkle$item.indent" id="wall-item-photo-$item.id" style="height: 80px; width: 80px;" alt="$item.name" />
|
||||
<img src="$item.thumb" class="wall-item-photo$item.sparkle $item.indent" id="wall-item-photo-$item.id" style="height: 80px; width: 80px;" alt="$item.name" />
|
||||
</a>
|
||||
<span onclick="openClose('wall-item-photo-menu-$item.id');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-$item.id">menu</span>
|
||||
<div class="wall-item-photo-menu" id="wall-item-photo-menu-$item.id">
|
||||
|
|
@ -74,5 +74,5 @@
|
|||
$item.comment
|
||||
</div>
|
||||
|
||||
<div class="wall-item-outside-wrapper-end$item.indent" ></div>
|
||||
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<div class="wall-item-outside-wrapper$item.indent$item.previewing wallwall" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper$item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-outside-wrapper $item.indent$item.previewing wallwall" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info wallwall" id="wall-item-info-$item.id">
|
||||
<div class="wall-item-photo-wrapper wwto" id="wall-item-ownerphoto-wrapper-$item.id" >
|
||||
<a href="$item.owner_url" target="redir" title="$item.olinktitle" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$item.id">
|
||||
|
|
@ -10,7 +10,7 @@
|
|||
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||
onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
|
||||
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$item.id">
|
||||
<img src="$item.thumb" class="wall-item-photo$item.sparkle$item.indent" id="wall-item-photo-$item.id" style="height: 80px; width: 80px;" alt="$item.name" /></a>
|
||||
<img src="$item.thumb" class="wall-item-photo$item.sparkle $item.indent" id="wall-item-photo-$item.id" style="height: 80px; width: 80px;" alt="$item.name" /></a>
|
||||
<span onclick="openClose('wall-item-photo-menu-$item.id');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-$item.id">menu</span>
|
||||
<div class="wall-item-photo-menu" id="wall-item-photo-menu-$item.id">
|
||||
<ul>
|
||||
|
|
@ -80,6 +80,6 @@
|
|||
$item.comment
|
||||
</div>
|
||||
|
||||
<div class="wall-item-outside-wrapper-end$item.indent" ></div>
|
||||
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -39,6 +39,7 @@
|
|||
{{ inc field_checkbox.tpl with $field=$ostatus_disabled }}{{ endinc }}
|
||||
{{ inc field_checkbox.tpl with $field=$diaspora_enabled }}{{ endinc }}
|
||||
{{ inc field_checkbox.tpl with $field=$dfrn_only }}{{ endinc }}
|
||||
{{ inc field_checkbox.tpl with $field=$thread_allow }}{{ endinc }}
|
||||
{{ inc field_input.tpl with $field=$global_directory }}{{ endinc }}
|
||||
|
||||
<div class="submit"><input type="submit" name="page_site" value="$submit" /></div>
|
||||
|
|
|
|||
125
view/theme/diabook/wall_thread.tpl
Normal file
125
view/theme/diabook/wall_thread.tpl
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
{{if $item.comment_firstcollapsed}}
|
||||
<div class="hide-comments-outer">
|
||||
<span id="hide-comments-total-$item.id" class="hide-comments-total">$item.num_comments</span> <span id="hide-comments-$item.id" class="hide-comments fakelink" onclick="showHideComments($item.id);">$item.hide_text</span>
|
||||
</div>
|
||||
<div id="collapsed-comments-$item.id" class="collapsed-comments" style="display: none;">
|
||||
{{endif}}
|
||||
<div id="tread-wrapper-$item.id" class="tread-wrapper $item.toplevel">
|
||||
{{ if $item.indent }}{{ else }}
|
||||
<div class="wall-item-decor">
|
||||
<img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
|
||||
</div>
|
||||
{{ endif }}
|
||||
<div class="wall-item-container $item.indent">
|
||||
<div class="wall-item-item">
|
||||
<div class="wall-item-info">
|
||||
<div class="contact-photo-wrapper"
|
||||
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||
onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
|
||||
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="contact-photo-link" id="wall-item-photo-link-$item.id">
|
||||
<img src="$item.thumb" class="contact-photo$item.sparkle" id="wall-item-photo-$item.id" alt="$item.name" />
|
||||
</a>
|
||||
<a href="#" rel="#wall-item-photo-menu-$item.id" class="contact-photo-menu-button icon s16 menu" id="wall-item-photo-menu-button-$item.id">menu</a>
|
||||
<ul class="contact-menu menu-popup" id="wall-item-photo-menu-$item.id">
|
||||
$item.item_photo_menu
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-actions-author">
|
||||
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle">$item.name</span></a>
|
||||
<span class="wall-item-ago">-
|
||||
{{ if $item.plink }}<a class="link$item.sparkle" title="$item.plink.title" href="$item.plink.href" style="color: #999">$item.ago</a>{{ else }} $item.ago {{ endif }}
|
||||
{{ if $item.lock }} - <span class="fakelink" style="color: #999" onclick="lockview(event,$item.id);">$item.lock</span> {{ endif }}
|
||||
</span>
|
||||
</div>
|
||||
<div class="wall-item-content">
|
||||
{{ if $item.title }}<h2><a href="$item.plink.href">$item.title</a></h2>{{ endif }}
|
||||
$item.body
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-bottom">
|
||||
<div class="wall-item-links">
|
||||
</div>
|
||||
<div class="wall-item-tags">
|
||||
{{ for $item.tags as $tag }}
|
||||
<span class='tag'>$tag</span>
|
||||
{{ endfor }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-bottom">
|
||||
<div class="">
|
||||
|
||||
</div>
|
||||
<div class="wall-item-actions">
|
||||
|
||||
<div class="wall-item-actions-social">
|
||||
|
||||
|
||||
{{ if $item.vote }}
|
||||
<a href="#" id="like-$item.id" class="icon like" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false">$item.vote.like.1</a>
|
||||
<a href="#" id="dislike-$item.id" class="icon dislike" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false"></a>
|
||||
{{ endif }}
|
||||
|
||||
{{ if $item.vote.share }}
|
||||
<a href="#" id="share-$item.id" class="icon recycle" title="$item.vote.share.0" onclick="jotShare($item.id); return false"></a>
|
||||
{{ endif }}
|
||||
|
||||
|
||||
{{ if $item.star }}
|
||||
<a href="#" id="starred-$item.id" onclick="dostar($item.id); return false;" class="star-item icon $item.isstarred" title="$item.star.toggle">
|
||||
<img src="images/star_dummy.png" class="icon star" alt="$item.star.do" /> </a>
|
||||
<a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="tag-item icon tagged" title="$item.star.tagger"></a>
|
||||
{{ endif }}
|
||||
|
||||
{{ if $item.filer }}
|
||||
<a href="#" id="filer-$item.id" onclick="itemFiler($item.id); return false;" class="filer-item icon file-as" title="$item.star.filer"></a>
|
||||
{{ endif }}
|
||||
|
||||
{{ if $item.plink }}<a class="icon link" title="$item.plink.title" href="$item.plink.href">$item.plink.title</a>{{ endif }}
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="wall-item-actions-tools">
|
||||
|
||||
{{ if $item.drop.dropping }}
|
||||
<input type="checkbox" title="$item.drop.select" name="itemselected[]" class="item-select" value="$item.id" />
|
||||
<a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon drop" title="$item.drop.delete">$item.drop.delete</a>
|
||||
{{ endif }}
|
||||
{{ if $item.edpost }}
|
||||
<a class="icon pencil" href="$item.edpost.0" title="$item.edpost.1"></a>
|
||||
{{ endif }}
|
||||
</div>
|
||||
<div class="wall-item-location">$item.location </div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-bottom">
|
||||
<div class="wall-item-links"></div>
|
||||
<div class="wall-item-like" id="wall-item-like-$item.id">$item.like</div>
|
||||
<div class="wall-item-dislike" id="wall-item-dislike-$item.id">$item.dislike</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{ if $item.threaded }}
|
||||
{{ if $item.comment }}
|
||||
<div class="wall-item-comment-wrapper $item.indent" >
|
||||
$item.comment
|
||||
</div>
|
||||
{{ endif }}
|
||||
{{ endif }}
|
||||
|
||||
{{ if $item.flatten }}
|
||||
<div class="wall-item-comment-wrapper" >
|
||||
$item.comment
|
||||
</div>
|
||||
{{ endif }}
|
||||
|
||||
|
||||
{{ for $item.children as $item }}
|
||||
{{ inc $item.template }}{{ endinc }}
|
||||
{{ endfor }}
|
||||
|
||||
</div>
|
||||
{{if $item.comment_lastcollapsed}}</div>{{endif}}
|
||||
125
view/theme/diabook/wallwall_thread.tpl
Normal file
125
view/theme/diabook/wallwall_thread.tpl
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
{{if $item.comment_firstcollapsed}}
|
||||
<div class="hide-comments-outer">
|
||||
<span id="hide-comments-total-$item.id" class="hide-comments-total">$item.num_comments</span> <span id="hide-comments-$item.id" class="hide-comments fakelink" onclick="showHideComments($item.id);">$item.hide_text</span>
|
||||
</div>
|
||||
<div id="collapsed-comments-$item.id" class="collapsed-comments" style="display: none;">
|
||||
{{endif}}
|
||||
<div id="tread-wrapper-$item.id" class="tread-wrapper $item.toplevel">
|
||||
{{ if $item.indent }}{{ else }}
|
||||
<div class="wall-item-decor">
|
||||
<img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
|
||||
</div>
|
||||
{{ endif }}
|
||||
<div class="wall-item-container $item.indent">
|
||||
<div class="wall-item-item">
|
||||
<div class="wall-item-info">
|
||||
<div class="contact-photo-wrapper"
|
||||
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||
onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
|
||||
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="contact-photo-link" id="wall-item-photo-link-$item.id">
|
||||
<img src="$item.thumb" class="contact-photo$item.sparkle" id="wall-item-photo-$item.id" alt="$item.name" />
|
||||
</a>
|
||||
<a href="#" rel="#wall-item-photo-menu-$item.id" class="contact-photo-menu-button icon s16 menu" id="wall-item-photo-menu-button-$item.id">menu</a>
|
||||
<ul class="contact-menu menu-popup" id="wall-item-photo-menu-$item.id">
|
||||
$item.item_photo_menu
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-actions-author">
|
||||
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle">$item.name</span></a>
|
||||
<span class="wall-item-ago">-
|
||||
{{ if $item.plink }}<a class="link$item.sparkle" title="$item.plink.title" href="$item.plink.href" style="color: #999">$item.ago</a>{{ else }} $item.ago {{ endif }}
|
||||
{{ if $item.lock }} - <span class="fakelink" style="color: #999" onclick="lockview(event,$item.id);">$item.lock</span> {{ endif }}
|
||||
</span>
|
||||
</div>
|
||||
<div class="wall-item-content">
|
||||
{{ if $item.title }}<h2><a href="$item.plink.href">$item.title</a></h2>{{ endif }}
|
||||
$item.body
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-bottom">
|
||||
<div class="wall-item-links">
|
||||
</div>
|
||||
<div class="wall-item-tags">
|
||||
{{ for $item.tags as $tag }}
|
||||
<span class='tag'>$tag</span>
|
||||
{{ endfor }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-bottom">
|
||||
<div class="">
|
||||
|
||||
</div>
|
||||
<div class="wall-item-actions">
|
||||
|
||||
<div class="wall-item-actions-social">
|
||||
|
||||
|
||||
{{ if $item.vote }}
|
||||
<a href="#" id="like-$item.id" class="icon like" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false">$item.vote.like.1</a>
|
||||
<a href="#" id="dislike-$item.id" class="icon dislike" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false"></a>
|
||||
{{ endif }}
|
||||
|
||||
{{ if $item.vote.share }}
|
||||
<a href="#" id="share-$item.id" class="icon recycle" title="$item.vote.share.0" onclick="jotShare($item.id); return false"></a>
|
||||
{{ endif }}
|
||||
|
||||
|
||||
{{ if $item.star }}
|
||||
<a href="#" id="starred-$item.id" onclick="dostar($item.id); return false;" class="star-item icon $item.isstarred" title="$item.star.toggle">
|
||||
<img src="images/star_dummy.png" class="icon star" alt="$item.star.do" /> </a>
|
||||
<a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="tag-item icon tagged" title="$item.star.tagger"></a>
|
||||
{{ endif }}
|
||||
|
||||
{{ if $item.filer }}
|
||||
<a href="#" id="filer-$item.id" onclick="itemFiler($item.id); return false;" class="filer-item icon file-as" title="$item.star.filer"></a>
|
||||
{{ endif }}
|
||||
|
||||
{{ if $item.plink }}<a class="icon link" title="$item.plink.title" href="$item.plink.href">$item.plink.title</a>{{ endif }}
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="wall-item-actions-tools">
|
||||
|
||||
{{ if $item.drop.dropping }}
|
||||
<input type="checkbox" title="$item.drop.select" name="itemselected[]" class="item-select" value="$item.id" />
|
||||
<a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon drop" title="$item.drop.delete">$item.drop.delete</a>
|
||||
{{ endif }}
|
||||
{{ if $item.edpost }}
|
||||
<a class="icon pencil" href="$item.edpost.0" title="$item.edpost.1"></a>
|
||||
{{ endif }}
|
||||
</div>
|
||||
<div class="wall-item-location">$item.location </div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-bottom">
|
||||
<div class="wall-item-links"></div>
|
||||
<div class="wall-item-like" id="wall-item-like-$item.id">$item.like</div>
|
||||
<div class="wall-item-dislike" id="wall-item-dislike-$item.id">$item.dislike</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{ if $item.threaded }}
|
||||
{{ if $item.comment }}
|
||||
<div class="wall-item-comment-wrapper $item.indent" >
|
||||
$item.comment
|
||||
</div>
|
||||
{{ endif }}
|
||||
{{ endif }}
|
||||
|
||||
{{ if $item.flatten }}
|
||||
<div class="wall-item-comment-wrapper" >
|
||||
$item.comment
|
||||
</div>
|
||||
{{ endif }}
|
||||
|
||||
|
||||
{{ for $item.children as $item }}
|
||||
{{ inc $item.template }}{{ endinc }}
|
||||
{{ endfor }}
|
||||
|
||||
</div>
|
||||
{{if $item.comment_lastcollapsed}}</div>{{endif}}
|
||||
|
|
@ -94,4 +94,15 @@
|
|||
$('#hide-comments-' + id).html('$showfewer');
|
||||
}
|
||||
}
|
||||
|
||||
function showHideCommentBox(id) {
|
||||
if( $('#comment-edit-form-' + id).is(':visible')) {
|
||||
$('#comment-edit-form-' + id).hide();
|
||||
}
|
||||
else {
|
||||
$('#comment-edit-form-' + id).show();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<div class="wall-item-outside-wrapper$item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper$item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-outside-wrapper $item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info" id="wall-item-info-$item.id">
|
||||
<div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$item.id"
|
||||
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||
|
|
@ -47,7 +47,7 @@
|
|||
{{ endif }}
|
||||
</div>
|
||||
|
||||
<div class="wall-item-outside-wrapper-end$item.indent" ></div>
|
||||
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
|
||||
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<a name="$item.id" ></a>
|
||||
<div class="wall-item-outside-wrapper$item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper$item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-outside-wrapper $item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info" id="wall-item-info-$item.id">
|
||||
<div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$item.id"
|
||||
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||
|
|
@ -84,5 +84,5 @@
|
|||
$item.comment
|
||||
</div>
|
||||
|
||||
<div class="wall-item-outside-wrapper-end$item.indent" ></div>
|
||||
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
|
||||
</div>
|
||||
|
|
|
|||
115
view/theme/dispy/wall_thread.tpl
Normal file
115
view/theme/dispy/wall_thread.tpl
Normal file
|
|
@ -0,0 +1,115 @@
|
|||
{{if $item.comment_firstcollapsed}}
|
||||
<div class="hide-comments-outer">
|
||||
<span id="hide-comments-total-$item.id" class="hide-comments-total">$item.num_comments</span> <span id="hide-comments-$item.id" class="hide-comments fakelink" onclick="showHideComments($item.id);">$item.hide_text</span>
|
||||
</div>
|
||||
<div id="collapsed-comments-$item.id" class="collapsed-comments" style="display: none;">
|
||||
{{endif}}
|
||||
<div id="tread-wrapper-$item.id" class="tread-wrapper $item.toplevel">
|
||||
<a name="$item.id" ></a>
|
||||
<div class="wall-item-outside-wrapper $item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info" id="wall-item-info-$item.id">
|
||||
<div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$item.id"
|
||||
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||
onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
|
||||
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$item.id">
|
||||
<img src="$item.thumb" class="wall-item-photo$item.sparkle" id="wall-item-photo-$item.id" style="height: 80px; width: 80px;" alt="$item.name" />
|
||||
</a>
|
||||
<span onclick="openClose('wall-item-photo-menu-$item.id');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-$item.id">menu</span>
|
||||
<div class="wall-item-photo-menu" id="wall-item-photo-menu-$item.id">
|
||||
<ul>
|
||||
$item.item_photo_menu
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-photo-end"></div>
|
||||
<div class="wall-item-location" id="wall-item-location-$item.id">
|
||||
{{ if $item.location }}<span class="icon globe"></span>$item.location {{ endif }}
|
||||
</div>
|
||||
<div class="wall-item-author">
|
||||
<a href="$item.profile_url" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle" id="wall-item-name-$item.id">$item.name</span></a>
|
||||
</div>
|
||||
<div class="wall-item-ago" id="wall-item-ago-$item.id">
|
||||
$item.ago
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-tools" id="wall-item-tools-$item.id">
|
||||
<div class="wall-item-lock-wrapper">
|
||||
{{ if $item.lock }}<div class="wall-item-lock"><img src="images/lock_icon.gif" class="lockview" alt="$item.lock" onclick="lockview(event,$item.id);" /></div>
|
||||
{{ else }}<div class="wall-item-lock"></div>{{ endif }}
|
||||
</div>
|
||||
<ul class="wall-item-subtools1">
|
||||
{{ if $item.star }}
|
||||
<li>
|
||||
<a href="#" id="starred-$item.id" onclick="dostar($item.id); return false;" class="star-item icon $item.isstarred" title="$item.star.toggle"></a>
|
||||
<a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="tag-item icon tagged" title="$item.star.tagger"></a>
|
||||
</li>
|
||||
{{ endif }}
|
||||
{{ if $item.vote }}
|
||||
<li class="wall-item-like-buttons" id="wall-item-like-buttons-$item.id">
|
||||
<a href="#" class="icon like" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false"></a>
|
||||
<a href="#" class="icon dislike" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false"></a>
|
||||
{{ if $item.vote.share }}
|
||||
<a href="#" id="share-$item.id"
|
||||
class="icon recycle wall-item-share-buttons" title="$item.vote.share.0" onclick="jotShare($item.id); return false"></a>{{ endif }}
|
||||
<img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
|
||||
</li>
|
||||
{{ endif }}
|
||||
</ul><br style="clear:left;" />
|
||||
<ul class="wall-item-subtools2">
|
||||
{{ if $item.filer }}
|
||||
<li><a href="#" id="filer-$item.id" onclick="itemFiler($item.id); return false;" class="filer-item icon file-as" title="$item.filer"></a></li>
|
||||
{{ endif }}
|
||||
{{ if $item.plink }}
|
||||
<li class="wall-item-links-wrapper$item.sparkle"><a href="$item.plink.href" title="$item.plink.title" target="external-link" class="icon remote-link"></a></li>
|
||||
{{ endif }}
|
||||
{{ if $item.edpost }}
|
||||
<li><a class="editpost icon pencil" href="$item.edpost.0" title="$item.edpost.1"></a></li>
|
||||
{{ endif }}
|
||||
<li class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-$item.id">
|
||||
{{ if $item.drop.dropping }}<div><a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon drophide" title="$item.drop.delete" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a></div>{{ endif }}
|
||||
{{ if $item.drop.dropping }}<div><input type="checkbox" onclick="checkboxhighlight(this);" title="$item.drop.select" class="item-select" name="itemselected[]" value="$item.id" /></div>{{ endif }}
|
||||
</li>
|
||||
</ul>
|
||||
<div class="wall-item-delete-end"></div>
|
||||
</div>
|
||||
<div class="wall-item-content" id="wall-item-content-$item.id">
|
||||
<div class="wall-item-title" id="wall-item-title-$item.id">$item.title</div>
|
||||
<div class="wall-item-title-end"></div>
|
||||
<div class="wall-item-body" id="wall-item-body-$item.id">
|
||||
$item.body
|
||||
<div class="body-tag">
|
||||
{{ for $item.tags as $tag }}
|
||||
<span class='tag'>$tag</span>
|
||||
{{ endfor }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-wrapper-end"></div>
|
||||
<div class="wall-item-like $item.indent" id="wall-item-like-$item.id">$item.like</div>
|
||||
<div class="wall-item-dislike $item.indent" id="wall-item-dislike-$item.id">$item.dislike</div>
|
||||
<div class="wall-item-comment-separator"></div>
|
||||
|
||||
{{ if $item.threaded }}
|
||||
{{ if $item.comment }}
|
||||
<div class="wall-item-comment-wrapper $item.indent" >
|
||||
$item.comment
|
||||
</div>
|
||||
{{ endif }}
|
||||
{{ endif }}
|
||||
|
||||
{{ if $item.flatten }}
|
||||
<div class="wall-item-comment-wrapper" >
|
||||
$item.comment
|
||||
</div>
|
||||
{{ endif }}
|
||||
|
||||
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
|
||||
</div>
|
||||
{{ for $item.children as $item }}
|
||||
{{ inc $item.template }}{{ endinc }}
|
||||
{{ endfor }}
|
||||
|
||||
</div>
|
||||
{{if $item.comment_lastcollapsed}}</div>{{endif}}
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
<a name="$item.id" ></a>
|
||||
<div class="wall-item-outside-wrapper$item.indent$item.previewing wallwall" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper$item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-outside-wrapper $item.indent$item.previewing wallwall" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info wallwall" id="wall-item-info-$item.id">
|
||||
<div class="wall-item-photo-wrapper wwto" id="wall-item-ownerphoto-wrapper-$item.id" >
|
||||
<a href="$item.owner_url" target="redir" title="$item.olinktitle" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$item.id">
|
||||
|
|
@ -93,6 +93,6 @@ class="icon recycle wall-item-share-buttons" title="$item.vote.share.0" onclick
|
|||
$item.comment
|
||||
</div>
|
||||
|
||||
<div class="wall-item-outside-wrapper-end$item.indent" ></div>
|
||||
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
121
view/theme/dispy/wallwall_thread.tpl
Normal file
121
view/theme/dispy/wallwall_thread.tpl
Normal file
|
|
@ -0,0 +1,121 @@
|
|||
{{if $item.comment_firstcollapsed}}
|
||||
<div class="hide-comments-outer">
|
||||
<span id="hide-comments-total-$item.id" class="hide-comments-total">$item.num_comments</span> <span id="hide-comments-$item.id" class="hide-comments fakelink" onclick="showHideComments($item.id);">$item.hide_text</span>
|
||||
</div>
|
||||
<div id="collapsed-comments-$item.id" class="collapsed-comments" style="display: none;">
|
||||
{{endif}}
|
||||
<div id="tread-wrapper-$item.id" class="tread-wrapper $item.toplevel">
|
||||
<a name="$item.id" ></a>
|
||||
<div class="wall-item-outside-wrapper $item.indent$item.previewing wallwall" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info wallwall" id="wall-item-info-$item.id">
|
||||
<div class="wall-item-photo-wrapper wwto" id="wall-item-ownerphoto-wrapper-$item.id" >
|
||||
<a href="$item.owner_url" target="redir" title="$item.olinktitle" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$item.id">
|
||||
<img src="$item.owner_photo" class="wall-item-photo$item.osparkle" id="wall-item-ownerphoto-$item.id" style="height: 80px; width: 80px;" alt="$item.owner_name" /></a>
|
||||
</div>
|
||||
<div class="wall-item-arrowphoto-wrapper" ><img src="images/larrow.gif" alt="$item.wall" /></div>
|
||||
<div class="wall-item-photo-wrapper wwfrom" id="wall-item-photo-wrapper-$item.id"
|
||||
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||
onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
|
||||
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$item.id">
|
||||
<img src="$item.thumb" class="wall-item-photo$item.sparkle" id="wall-item-photo-$item.id" style="height: 80px; width: 80px;" alt="$item.name" /></a>
|
||||
<span onclick="openClose('wall-item-photo-menu-$item.id');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-$item.id">menu</span>
|
||||
<div class="wall-item-photo-menu" id="wall-item-photo-menu-$item.id">
|
||||
<ul>
|
||||
$item.item_photo_menu
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="wall-item-photo-end"></div>
|
||||
<div class="wall-item-location" id="wall-item-location-$item.id">
|
||||
{{ if $item.location }}<span class="icon globe"></span>$item.location {{ endif }}
|
||||
</div>
|
||||
<div class="wall-item-author">
|
||||
<a href="$item.profile_url" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle" id="wall-item-name-$item.id">$item.name</span></a>
|
||||
</div>
|
||||
<div class="wall-item-ago" id="wall-item-ago-$item.id">
|
||||
$item.ago
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-tools" id="wall-item-tools-$item.id">
|
||||
<div class="wall-item-lock-wrapper">
|
||||
{{ if $item.lock }}<div class="wall-item-lock"><img src="images/lock_icon.gif" class="lockview" alt="$item.lock" onclick="lockview(event,$item.id);" /></div>
|
||||
{{ else }}<div class="wall-item-lock"></div>{{ endif }}
|
||||
</div>
|
||||
<ul class="wall-item-subtools1">
|
||||
{{ if $item.star }}
|
||||
<li>
|
||||
<a href="#" id="starred-$item.id" onclick="dostar($item.id); return false;" class="star-item icon $item.isstarred" title="$item.star.toggle"></a>
|
||||
<a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="tag-item icon tagged" title="$item.star.tagger"></a>
|
||||
</li>
|
||||
{{ endif }}
|
||||
{{ if $item.vote }}
|
||||
<li class="wall-item-like-buttons" id="wall-item-like-buttons-$item.id">
|
||||
<a href="#" class="icon like" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false"></a>
|
||||
<a href="#" class="icon dislike" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false"></a>
|
||||
{{ if $item.vote.share }}
|
||||
<a href="#" id="share-$item.id"
|
||||
class="icon recycle wall-item-share-buttons" title="$item.vote.share.0" onclick="jotShare($item.id); return false"></a>{{ endif }}
|
||||
<img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
|
||||
</li>
|
||||
{{ endif }}
|
||||
</ul><br style="clear:left;" />
|
||||
<ul class="wall-item-subtools2">
|
||||
{{ if $item.filer }}
|
||||
<li class="wall-item-filer-wrapper"><a href="#" id="filer-$item.id" onclick="itemFiler($item.id); return false;" class="filer-item icon file-as" title="$item.star.filer"></a></li>
|
||||
{{ endif }}
|
||||
{{ if $item.plink }}
|
||||
<li class="wall-item-links-wrapper$item.sparkle"><a href="$item.plink.href" title="$item.plink.title" target="external-link" class="icon remote-link"></a></li>
|
||||
{{ endif }}
|
||||
{{ if $item.edpost }}
|
||||
<li><a class="editpost icon pencil" href="$item.edpost.0" title="$item.edpost.1"></a></li>
|
||||
{{ endif }}
|
||||
|
||||
<li class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-$item.id" >
|
||||
{{ if $item.drop.dropping }}<a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon drophide" title="$item.drop.delete" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a>{{ endif }}
|
||||
{{ if $item.drop.dropping }}<input type="checkbox" onclick="checkboxhighlight(this);" title="$item.drop.select" class="item-select" name="itemselected[]" value="$item.id" />{{ endif }}
|
||||
</li>
|
||||
</ul>
|
||||
<div class="wall-item-delete-end"></div>
|
||||
</div>
|
||||
<div class="wall-item-content" id="wall-item-content-$item.id">
|
||||
<div class="wall-item-title" id="wall-item-title-$item.id">$item.title</div>
|
||||
<div class="wall-item-title-end"></div>
|
||||
<div class="wall-item-body" id="wall-item-body-$item.id">
|
||||
$item.body
|
||||
<div class="body-tag">
|
||||
{{ for $item.tags as $tag }}
|
||||
<span class="tag">$tag</span>
|
||||
{{ endfor }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-wrapper-end"></div>
|
||||
<div class="wall-item-like $item.indent" id="wall-item-like-$item.id">$item.like</div>
|
||||
<div class="wall-item-dislike $item.indent" id="wall-item-dislike-$item.id">$item.dislike</div>
|
||||
<div class="wall-item-comment-separator"></div>
|
||||
|
||||
{{ if $item.threaded }}
|
||||
{{ if $item.comment }}
|
||||
<div class="wall-item-comment-wrapper $item.indent" >
|
||||
$item.comment
|
||||
</div>
|
||||
{{ endif }}
|
||||
{{ endif }}
|
||||
|
||||
{{ if $item.flatten }}
|
||||
<div class="wall-item-comment-wrapper" >
|
||||
$item.comment
|
||||
</div>
|
||||
{{ endif }}
|
||||
|
||||
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
|
||||
</div>
|
||||
{{ for $item.children as $item }}
|
||||
{{ inc $item.template }}{{ endinc }}
|
||||
{{ endfor }}
|
||||
|
||||
</div>
|
||||
{{if $item.comment_lastcollapsed}}</div>{{endif}}
|
||||
|
|
@ -939,6 +939,10 @@ input#dfrn-url {
|
|||
margin-left: 50px;
|
||||
}
|
||||
|
||||
.tread-end-wrapper {
|
||||
margin-left: 50px;
|
||||
}
|
||||
|
||||
.wall-item-content-wrapper.comment {
|
||||
# margin-left: 50px;
|
||||
background: #EEEEEE;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<div class="wall-item-outside-wrapper$item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper$item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-outside-wrapper $item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info" id="wall-item-info-$item.id">
|
||||
<div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$item.id"
|
||||
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||
|
|
@ -47,7 +47,7 @@
|
|||
{{ endif }}
|
||||
</div>
|
||||
|
||||
<div class="wall-item-outside-wrapper-end$item.indent" ></div>
|
||||
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
|
||||
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<div class="wall-item-outside-wrapper$item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper$item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-outside-wrapper $item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info" id="wall-item-info-$item.id">
|
||||
<div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$item.id"
|
||||
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||
|
|
@ -73,5 +73,5 @@
|
|||
$item.comment
|
||||
</div>
|
||||
|
||||
<div class="wall-item-outside-wrapper-end$item.indent" ></div>
|
||||
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<div class="wall-item-outside-wrapper$item.indent$item.previewing wallwall" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper$item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-outside-wrapper $item.indent$item.previewing wallwall" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info wallwall" id="wall-item-info-$item.id">
|
||||
<div class="wall-item-photo-wrapper wwto" id="wall-item-ownerphoto-wrapper-$item.id" >
|
||||
<a href="$item.owner_url" target="redir" title="$item.olinktitle" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$item.id">
|
||||
|
|
@ -77,6 +77,6 @@
|
|||
$item.comment
|
||||
</div>
|
||||
|
||||
<div class="wall-item-outside-wrapper-end$item.indent" ></div>
|
||||
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -26,4 +26,4 @@ Photo album display?
|
|||
- Reduce DOM elements (~2400 for 10 items, ~8400 for 40 items)
|
||||
|
||||
|
||||
|
||||
- Sometimes, when "Permission denied", wrong login page is shown
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@
|
|||
{{ inc field_textarea.tpl with $field=$banner }}{{ endinc }}
|
||||
{{ inc field_select.tpl with $field=$language }}{{ endinc }}
|
||||
{{ inc field_select.tpl with $field=$theme }}{{ endinc }}
|
||||
{{ inc field_select.tpl with $field=$theme_mobile }}{{ endinc }}
|
||||
{{ inc field_select.tpl with $field=$ssl_policy }}{{ endinc }}
|
||||
|
||||
<div class="submit"><input type="submit" name="page_site" value="$submit" /></div>
|
||||
|
|
@ -35,6 +36,7 @@
|
|||
{{ inc field_checkbox.tpl with $field=$ostatus_disabled }}{{ endinc }}
|
||||
{{ inc field_checkbox.tpl with $field=$diaspora_enabled }}{{ endinc }}
|
||||
{{ inc field_checkbox.tpl with $field=$dfrn_only }}{{ endinc }}
|
||||
{{ inc field_checkbox.tpl with $field=$thread_allow }}{{ endinc }}
|
||||
{{ inc field_input.tpl with $field=$global_directory }}{{ endinc }}
|
||||
|
||||
<div class="submit"><input type="submit" name="page_site" value="$submit" /></div>
|
||||
|
|
|
|||
|
|
@ -10,8 +10,10 @@
|
|||
});
|
||||
</script>-->
|
||||
|
||||
<div class="comment-wwedit-wrapper" id="comment-edit-wrapper-$id" style="display: block;" >
|
||||
<form class="comment-edit-form" id="comment-edit-form-$id" action="item" method="post" onsubmit="post_comment($id); return false;" >
|
||||
<div class="comment-wwedit-wrapper $indent" id="comment-edit-wrapper-$id" style="display: block;" >
|
||||
<form class="comment-edit-form $indent" id="comment-edit-form-$id" action="item" method="post" onsubmit="post_comment($id); return false;" >
|
||||
<!-- <span id="hide-commentbox-$id" class="hide-commentbox fakelink" onclick="showHideCommentBox($id);">$comment</span>
|
||||
<form class="comment-edit-form" style="display: none;" id="comment-edit-form-$id" action="item" method="post" onsubmit="post_comment($id); return false;">-->
|
||||
<input type="hidden" name="type" value="$type" />
|
||||
<input type="hidden" name="source" value="$sourceapp" />
|
||||
<input type="hidden" name="profile_uid" value="$profile_uid" />
|
||||
|
|
|
|||
194
view/theme/frost-mobile/js/fk.autocomplete.js
Normal file
194
view/theme/frost-mobile/js/fk.autocomplete.js
Normal file
|
|
@ -0,0 +1,194 @@
|
|||
/**
|
||||
* Friendica people autocomplete
|
||||
*
|
||||
* require jQuery, jquery.textareas
|
||||
*/
|
||||
|
||||
|
||||
|
||||
function ACPopup(elm,backend_url){
|
||||
this.idsel=-1;
|
||||
this.element = elm;
|
||||
this.searchText="";
|
||||
this.ready=true;
|
||||
this.kp_timer = false;
|
||||
this.url = backend_url;
|
||||
|
||||
var w = 530;
|
||||
var h = 130;
|
||||
|
||||
|
||||
if(typeof elm.editorId == "undefined") {
|
||||
style = $j(elm).offset();
|
||||
w = $j(elm).width();
|
||||
h = $j(elm).height();
|
||||
}
|
||||
else {
|
||||
var container = elm.getContainer();
|
||||
if(typeof container != "undefined") {
|
||||
style = $j(container).offset();
|
||||
w = $j(container).width();
|
||||
h = $j(container).height();
|
||||
}
|
||||
}
|
||||
|
||||
style.top=style.top+h;
|
||||
style.width = w;
|
||||
style.position = 'absolute';
|
||||
/* style['max-height'] = '150px';
|
||||
style.border = '1px solid red';
|
||||
style.background = '#cccccc';
|
||||
|
||||
style.overflow = 'auto';
|
||||
style['z-index'] = '100000';
|
||||
*/
|
||||
style.display = 'none';
|
||||
|
||||
this.cont = $j("<div class='acpopup'></div>");
|
||||
this.cont.css(style);
|
||||
|
||||
$j("body").append(this.cont);
|
||||
}
|
||||
ACPopup.prototype.close = function(){
|
||||
$j(this.cont).remove();
|
||||
this.ready=false;
|
||||
}
|
||||
ACPopup.prototype.search = function(text){
|
||||
var that = this;
|
||||
this.searchText=text;
|
||||
if (this.kp_timer) clearTimeout(this.kp_timer);
|
||||
this.kp_timer = setTimeout( function(){that._search();}, 500);
|
||||
}
|
||||
ACPopup.prototype._search = function(){
|
||||
console.log("_search");
|
||||
var that = this;
|
||||
var postdata = {
|
||||
start:0,
|
||||
count:100,
|
||||
search:this.searchText,
|
||||
type:'c',
|
||||
}
|
||||
|
||||
$j.ajax({
|
||||
type:'POST',
|
||||
url: this.url,
|
||||
data: postdata,
|
||||
dataType: 'json',
|
||||
success:function(data){
|
||||
that.cont.html("");
|
||||
if (data.tot>0){
|
||||
that.cont.show();
|
||||
$j(data.items).each(function(){
|
||||
html = "<img src='{0}' height='16px' width='16px'>{1} ({2})".format(this.photo, this.name, this.nick)
|
||||
that.add(html, this.nick.replace(' ','') + '+' + this.id + ' - ' + this.link);
|
||||
});
|
||||
} else {
|
||||
that.cont.hide();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
ACPopup.prototype.add = function(label, value){
|
||||
var that=this;
|
||||
var elm = $j("<div class='acpopupitem' title='"+value+"'>"+label+"</div>");
|
||||
elm.click(function(e){
|
||||
t = $j(this).attr('title').replace(new RegExp(' \- .*'),'');
|
||||
if(typeof(that.element.container) === "undefined") {
|
||||
el=$j(that.element);
|
||||
sel = el.getSelection();
|
||||
sel.start = sel.start- that.searchText.length;
|
||||
el.setSelection(sel.start,sel.end).replaceSelectedText(t+' ').collapseSelection(false);
|
||||
that.close();
|
||||
}
|
||||
else {
|
||||
txt = tinyMCE.activeEditor.getContent();
|
||||
// alert(that.searchText + ':' + t);
|
||||
newtxt = txt.replace(that.searchText,t+' ');
|
||||
tinyMCE.activeEditor.setContent(newtxt);
|
||||
tinyMCE.activeEditor.focus();
|
||||
that.close();
|
||||
}
|
||||
});
|
||||
$j(this.cont).append(elm);
|
||||
}
|
||||
ACPopup.prototype.onkey = function(event){
|
||||
if (event.keyCode == '13') {
|
||||
if(this.idsel>-1) {
|
||||
this.cont.children()[this.idsel].click();
|
||||
event.preventDefault();
|
||||
}
|
||||
else
|
||||
this.close();
|
||||
}
|
||||
if (event.keyCode == '38') { //cursor up
|
||||
cmax = this.cont.children().size()-1;
|
||||
this.idsel--;
|
||||
if (this.idsel<0) this.idsel=cmax;
|
||||
event.preventDefault();
|
||||
}
|
||||
if (event.keyCode == '40' || event.keyCode == '9') { //cursor down
|
||||
cmax = this.cont.children().size()-1;
|
||||
this.idsel++;
|
||||
if (this.idsel>cmax) this.idsel=0;
|
||||
event.preventDefault();
|
||||
}
|
||||
|
||||
if (event.keyCode == '38' || event.keyCode == '40' || event.keyCode == '9') {
|
||||
this.cont.children().removeClass('selected');
|
||||
$j(this.cont.children()[this.idsel]).addClass('selected');
|
||||
}
|
||||
|
||||
if (event.keyCode == '27') { //ESC
|
||||
this.close();
|
||||
}
|
||||
}
|
||||
|
||||
function ContactAutocomplete(element,backend_url){
|
||||
this.pattern=/@([^ \n]+)$/;
|
||||
this.popup=null;
|
||||
var that = this;
|
||||
|
||||
$j(element).unbind('keydown');
|
||||
$j(element).unbind('keyup');
|
||||
|
||||
$j(element).keydown(function(event){
|
||||
if (that.popup!==null) that.popup.onkey(event);
|
||||
});
|
||||
|
||||
$j(element).keyup(function(event){
|
||||
cpos = $j(this).getSelection();
|
||||
if (cpos.start==cpos.end){
|
||||
match = $j(this).val().substring(0,cpos.start).match(that.pattern);
|
||||
if (match!==null){
|
||||
if (that.popup===null){
|
||||
that.popup = new ACPopup(this, backend_url);
|
||||
}
|
||||
if (that.popup.ready && match[1]!==that.popup.searchText) that.popup.search(match[1]);
|
||||
if (!that.popup.ready) that.popup=null;
|
||||
|
||||
} else {
|
||||
if (that.popup!==null) {that.popup.close(); that.popup=null;}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* jQuery plugin 'contact_autocomplete'
|
||||
*/
|
||||
(function( $ ){
|
||||
$j.fn.contact_autocomplete = function(backend_url) {
|
||||
this.each(function(){
|
||||
new ContactAutocomplete(this, backend_url);
|
||||
});
|
||||
};
|
||||
})( jQuery );
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -297,7 +297,7 @@
|
|||
|
||||
// add a new thread
|
||||
|
||||
$j('.tread-wrapper',data).each(function() {
|
||||
$j('.toplevel_item',data).each(function() {
|
||||
var ident = $j(this).attr('id');
|
||||
|
||||
if($j('#' + ident).length == 0 && profile_page == 1) {
|
||||
|
|
|
|||
2
view/theme/frost-mobile/js/main.min.js
vendored
2
view/theme/frost-mobile/js/main.min.js
vendored
File diff suppressed because one or more lines are too long
|
|
@ -544,6 +544,15 @@ function showHideComments(id) {
|
|||
}
|
||||
}
|
||||
|
||||
/*function showHideCommentBox(id) {
|
||||
if( $j('#comment-edit-form-' + id).is(':visible')) {
|
||||
$j('#comment-edit-form-' + id).hide();
|
||||
}
|
||||
else {
|
||||
$j('#comment-edit-form-' + id).show();
|
||||
}
|
||||
}*/
|
||||
|
||||
|
||||
/*function deleteCheckedItems() {
|
||||
var checkedstr = '';
|
||||
|
|
|
|||
|
|
@ -1422,6 +1422,13 @@ input#dfrn-url {
|
|||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.comment-wwedit-wrapper.comment {
|
||||
margin-left: 40px;
|
||||
margin-right: 40px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
|
||||
.comment-edit-photo {
|
||||
margin-top: 15px;
|
||||
margin-left: 10px;
|
||||
|
|
@ -1461,6 +1468,15 @@ input#dfrn-url {
|
|||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.comment .comment-edit-text-empty {
|
||||
width: 120px;
|
||||
}
|
||||
.comment .comment-edit-text-full {
|
||||
margin-left: 10px;
|
||||
width: 210px;
|
||||
}
|
||||
|
||||
|
||||
.comment-edit-text-end {
|
||||
clear: both;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
* Name: Frost--mobile version
|
||||
* Description: Like frosted glass
|
||||
* Credits: Navigation icons taken from http://iconza.com. Other icons taken from http://thenounproject.com, including: Like, Dislike, Black Lock, Unlock, Pencil, Tag, Camera, Paperclip (Marie Coons), Folder (Sergio Calcara), Chain-link (Andrew Fortnum), Speaker (Harold Kim), Quotes (Henry Ryder), Video Camera (Anas Ramadan), and Left Arrow, Right Arrow, and Delete X (all three P.J. Onori). All under Attribution (CC BY 3.0). Others from The Noun Project are public domain or No Rights Reserved (CC0).
|
||||
* Version: Version 0.2.5
|
||||
* Version: Version 0.2.7
|
||||
* Author: Zach P <windforest@f.shmuz.in>
|
||||
* Maintainer: Zach P <windforest@f.shmuz.in>
|
||||
*/
|
||||
|
|
@ -26,5 +26,6 @@ function frost_mobile_init(&$a) {
|
|||
$a->sourcename = 'Friendica mobile web';
|
||||
$a->videowidth = 250;
|
||||
$a->videoheight = 200;
|
||||
$a->theme_thread_allow = false;
|
||||
|
||||
}
|
||||
|
|
|
|||
13
view/theme/frost-mobile/threaded_conversation.tpl
Normal file
13
view/theme/frost-mobile/threaded_conversation.tpl
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{{ for $threads as $item }}
|
||||
{{ inc $item.template }}{{ endinc }}
|
||||
{{ endfor }}
|
||||
|
||||
<div id="conversation-end"></div>
|
||||
|
||||
<!--{{ if $dropping }}
|
||||
<div id="item-delete-selected" class="fakelink" onclick="deleteCheckedItems();">
|
||||
<div id="item-delete-selected-icon" class="icon drophide" title="$dropping" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></div>
|
||||
<div id="item-delete-selected-desc" >$dropping</div>
|
||||
</div>
|
||||
<div id="item-delete-selected-end"></div>
|
||||
{{ endif }}-->
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
<a name="$item.id" ></a>
|
||||
<!--<div class="wall-item-outside-wrapper$item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >-->
|
||||
<div class="wall-item-content-wrapper$item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<!--<div class="wall-item-outside-wrapper $item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >-->
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info" id="wall-item-info-$item.id">
|
||||
<!-- <div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$item.id"
|
||||
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||
|
|
@ -25,7 +25,7 @@
|
|||
</div>
|
||||
<!--<div class="wall-item-author">-->
|
||||
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle" id="wall-item-name-$item.id" >$item.name</span></a>
|
||||
<div class="wall-item-ago" id="wall-item-ago-$item.id">$item.ago</div>
|
||||
<div class="wall-item-ago" id="wall-item-ago-$item.id" >$item.ago</div>
|
||||
|
||||
<!--</div>-->
|
||||
<br />
|
||||
|
|
@ -78,5 +78,5 @@
|
|||
$item.comment
|
||||
<!--</div>-->
|
||||
|
||||
<!--<div class="wall-item-outside-wrapper-end$item.indent" ></div>-->
|
||||
<!--<div class="wall-item-outside-wrapper-end $item.indent" ></div>-->
|
||||
<!--</div>-->
|
||||
|
|
|
|||
106
view/theme/frost-mobile/wall_thread.tpl
Normal file
106
view/theme/frost-mobile/wall_thread.tpl
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
{{if $item.comment_firstcollapsed}}
|
||||
<div class="hide-comments-outer">
|
||||
<span id="hide-comments-total-$item.id" class="hide-comments-total">$item.num_comments</span> <span id="hide-comments-$item.id" class="hide-comments fakelink" onclick="showHideComments($item.id);">$item.hide_text</span>
|
||||
</div>
|
||||
<div id="collapsed-comments-$item.id" class="collapsed-comments" style="display: none;">
|
||||
{{endif}}
|
||||
<div id="tread-wrapper-$item.id" class="tread-wrapper $item.toplevel">
|
||||
<a name="$item.id" ></a>
|
||||
<!--<div class="wall-item-outside-wrapper $item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >-->
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info" id="wall-item-info-$item.id">
|
||||
<!-- <div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$item.id"
|
||||
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||
onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">-->
|
||||
<div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$item.id">
|
||||
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$item.id">
|
||||
<img src="$item.thumb" class="wall-item-photo$item.sparkle" id="wall-item-photo-$item.id" style="height: 80px; width: 80px;" alt="$item.name" />
|
||||
</a>
|
||||
<!--<span onclick="openClose('wall-item-photo-menu-$item.id');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-$item.id">menu</span>
|
||||
<div class="wall-item-photo-menu" id="wall-item-photo-menu-$item.id">
|
||||
<ul class="wall-item-photo-menu" id="wall-item-photo-menu-$item.id">
|
||||
$item.item_photo_menu
|
||||
</ul>
|
||||
</div>-->
|
||||
</div>
|
||||
<!--<div class="wall-item-photo-end"></div>-->
|
||||
<div class="wall-item-wrapper" id="wall-item-wrapper-$item.id" >
|
||||
{{ if $item.lock }}<!--<div class="wall-item-lock">--><img src="images/lock_icon.gif" class="wall-item-lock lockview" alt="$item.lock" onclick="lockview(event,$item.id);" /><!--</div>-->
|
||||
{{ else }}<div class="wall-item-lock"></div>{{ endif }}
|
||||
<div class="wall-item-location" id="wall-item-location-$item.id">$item.location</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--<div class="wall-item-author">-->
|
||||
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle" id="wall-item-name-$item.id" >$item.name</span></a>
|
||||
<div class="wall-item-ago" id="wall-item-ago-$item.id" >$item.ago</div>
|
||||
|
||||
<!--</div>-->
|
||||
<br />
|
||||
|
||||
<div class="wall-item-content" id="wall-item-content-$item.id" >
|
||||
<div class="wall-item-title" id="wall-item-title-$item.id">$item.title</div>
|
||||
<!--<div class="wall-item-title-end"></div>-->
|
||||
<div class="wall-item-body" id="wall-item-body-$item.id" >$item.body
|
||||
<!-- <div class="body-tag">-->
|
||||
{{ for $item.tags as $tag }}
|
||||
<span class='body-tag tag'>$tag</span>
|
||||
{{ endfor }}
|
||||
<!-- </div>-->
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-tools" id="wall-item-tools-$item.id">
|
||||
{{ if $item.vote }}
|
||||
<div class="wall-item-like-buttons" id="wall-item-like-buttons-$item.id">
|
||||
<a href="#" class="icon like" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false"></a>
|
||||
<a href="#" class="icon dislike" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false"></a>
|
||||
{{ if $item.vote.share }}<a href="#" class="icon recycle wall-item-share-buttons" title="$item.vote.share.0" onclick="jotShare($item.id); return false"></a>{{ endif }}
|
||||
<img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
|
||||
</div>
|
||||
{{ endif }}
|
||||
{{ if $item.plink }}
|
||||
<!--<div class="wall-item-links-wrapper"><a href="$item.plink.href" title="$item.plink.title" target="external-link" class="wall-item-links-wrapper icon remote-link$item.sparkle"></a></div>-->
|
||||
{{ endif }}
|
||||
{{ if $item.edpost }}
|
||||
<a class="editpost icon pencil" href="$item.edpost.0" title="$item.edpost.1"></a>
|
||||
{{ endif }}
|
||||
|
||||
{{ if $item.star }}
|
||||
<a href="#" id="starred-$item.id" onclick="dostar($item.id); return false;" class="star-item icon $item.isstarred" title="$item.star.toggle"></a>
|
||||
<a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="tag-item icon tagged" title="$item.star.tagger"></a>
|
||||
{{ endif }}
|
||||
{{ if $item.filer }}
|
||||
<a href="#" id="filer-$item.id" onclick="itemFiler($item.id); return false;" class="filer-item filer-icon" title="$item.filer"></a>
|
||||
{{ endif }}
|
||||
<!-- <div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-$item.id" >-->
|
||||
{{ if $item.drop.dropping }}<a href="item/drop/$item.id" onclick="return confirmDelete();" class="wall-item-delete-wrapper icon drophide" title="$item.drop.delete" id="wall-item-delete-wrapper-$item.id" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a>{{ endif }}
|
||||
<!-- </div>-->
|
||||
{{ if $item.drop.dropping }}<input type="checkbox" onclick="checkboxhighlight(this);" title="$item.drop.select" class="item-select" name="itemselected[]" value="$item.id" />{{ endif }}
|
||||
<!--<div class="wall-item-delete-end"></div>-->
|
||||
</div>
|
||||
</div>
|
||||
<!--<div class="wall-item-wrapper-end"></div>-->
|
||||
<div class="wall-item-like $item.indent" id="wall-item-like-$item.id">$item.like</div>
|
||||
<div class="wall-item-dislike $item.indent" id="wall-item-dislike-$item.id">$item.dislike</div>
|
||||
|
||||
{{ if $item.threaded }}
|
||||
{{ if $item.comment }}
|
||||
<!--<div class="wall-item-comment-wrapper $item.indent" >-->
|
||||
$item.comment
|
||||
<!--</div>-->
|
||||
{{ endif }}
|
||||
{{ endif }}
|
||||
|
||||
<!--<div class="wall-item-outside-wrapper-end $item.indent" ></div>-->
|
||||
<!--</div>-->
|
||||
{{ for $item.children as $item }}
|
||||
{{ inc $item.template }}{{ endinc }}
|
||||
{{ endfor }}
|
||||
|
||||
{{ if $item.flatten }}
|
||||
<!--<div class="wall-item-comment-wrapper" >-->
|
||||
$item.comment
|
||||
<!--</div>-->
|
||||
{{ endif }}
|
||||
</div>
|
||||
{{if $item.comment_lastcollapsed}}</div>{{endif}}
|
||||
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
<a name="$item.id" ></a>
|
||||
<!--<div class="wall-item-outside-wrapper$item.indent$item.previewing wallwall" id="wall-item-outside-wrapper-$item.id" >-->
|
||||
<div class="wall-item-content-wrapper$item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<!--<div class="wall-item-outside-wrapper $item.indent$item.previewing wallwall" id="wall-item-outside-wrapper-$item.id" >-->
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info wallwall" id="wall-item-info-$item.id">
|
||||
<div class="wall-item-photo-wrapper wwto" id="wall-item-ownerphoto-wrapper-$item.id" >
|
||||
<a href="$item.owner_url" target="redir" title="$item.olinktitle" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$item.id">
|
||||
|
|
@ -68,7 +68,7 @@
|
|||
{{ endif }}
|
||||
|
||||
<!--<div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-$item.id" >-->
|
||||
{{ if $item.drop.dropping }}<a href="item/drop/$item.id" onclick="return confirmDelete();" class="wall-item-delete-wrapper icon drophide" title="$item.drop.delete" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a>{{ endif }}
|
||||
{{ if $item.drop.dropping }}<a href="item/drop/$item.id" onclick="return confirmDelete();" class="wall-item-delete-wrapper icon drophide" title="$item.drop.delete" id="wall-item-delete-wrapper-$item.id" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a>{{ endif }}
|
||||
<!--</div>-->
|
||||
{{ if $item.drop.dropping }}<input type="checkbox" onclick="checkboxhighlight(this);" title="$item.drop.select" class="item-select" name="itemselected[]" value="$item.id" />{{ endif }}
|
||||
<!--<div class="wall-item-delete-end"></div>-->
|
||||
|
|
@ -82,6 +82,6 @@
|
|||
$item.comment
|
||||
<!--</div>-->
|
||||
|
||||
<!--<div class="wall-item-outside-wrapper-end$item.indent" ></div>-->
|
||||
<!--<div class="wall-item-outside-wrapper-end $item.indent" ></div>-->
|
||||
<!--</div>-->
|
||||
|
||||
|
|
|
|||
109
view/theme/frost-mobile/wallwall_thread.tpl
Normal file
109
view/theme/frost-mobile/wallwall_thread.tpl
Normal file
|
|
@ -0,0 +1,109 @@
|
|||
{{if $item.comment_firstcollapsed}}
|
||||
<div class="hide-comments-outer">
|
||||
<span id="hide-comments-total-$item.id" class="hide-comments-total">$item.num_comments</span> <span id="hide-comments-$item.id" class="hide-comments fakelink" onclick="showHideComments($item.id);">$item.hide_text</span>
|
||||
</div>
|
||||
<div id="collapsed-comments-$item.id" class="collapsed-comments" style="display: none;">
|
||||
{{endif}}
|
||||
<div id="tread-wrapper-$item.id" class="tread-wrapper $item.toplevel">
|
||||
<a name="$item.id" ></a>
|
||||
<!--<div class="wall-item-outside-wrapper $item.indent$item.previewing wallwall" id="wall-item-outside-wrapper-$item.id" >-->
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info wallwall" id="wall-item-info-$item.id">
|
||||
<div class="wall-item-photo-wrapper wwto" id="wall-item-ownerphoto-wrapper-$item.id" >
|
||||
<a href="$item.owner_url" target="redir" title="$item.olinktitle" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$item.id">
|
||||
<img src="$item.owner_photo" class="wall-item-photo$item.osparkle" id="wall-item-ownerphoto-$item.id" style="height: 80px; width: 80px;" alt="$item.owner_name" /></a>
|
||||
</div>
|
||||
<div class="wall-item-arrowphoto-wrapper" ><img src="images/larrow.gif" alt="$item.wall" /></div>
|
||||
<!--<div class="wall-item-photo-wrapper wwfrom" id="wall-item-photo-wrapper-$item.id"
|
||||
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||
onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">-->
|
||||
<div class="wall-item-photo-wrapper wwfrom" id="wall-item-photo-wrapper-$item.id">
|
||||
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$item.id">
|
||||
<img src="$item.thumb" class="wall-item-photo$item.sparkle" id="wall-item-photo-$item.id" style="height: 80px; width: 80px;" alt="$item.name" /></a>
|
||||
<!--<span onclick="openClose('wall-item-photo-menu-$item.id');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-$item.id">menu</span>
|
||||
<div class="wall-item-photo-menu" id="wall-item-photo-menu-$item.id">
|
||||
<ul class="wall-item-photo-menu" id="wall-item-photo-menu-$item.id">
|
||||
$item.item_photo_menu
|
||||
</ul>
|
||||
</div>-->
|
||||
|
||||
</div>
|
||||
<!--<div class="wall-item-photo-end"></div>-->
|
||||
<div class="wall-item-wrapper" id="wall-item-wrapper-$item.id" >
|
||||
{{ if $item.lock }}<!--<div class="wall-item-lock">--><img src="images/lock_icon.gif" class="wall-item-lock lockview" alt="$item.lock" onclick="lockview(event,$item.id);" /><!--</div>-->
|
||||
{{ else }}<div class="wall-item-lock"></div>{{ endif }}
|
||||
<div class="wall-item-location" id="wall-item-location-$item.id">$item.location</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--<div class="wall-item-author">-->
|
||||
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle" id="wall-item-name-$item.id" >$item.name</span></a> $item.to <a href="$item.owner_url" target="redir" title="$item.olinktitle" class="wall-item-name-link"><span class="wall-item-name$item.osparkle" id="wall-item-ownername-$item.id">$item.owner_name</span></a> $item.vwall<br />
|
||||
<div class="wall-item-ago" id="wall-item-ago-$item.id">$item.ago</div>
|
||||
<!--</div>-->
|
||||
<div class="wall-item-content" id="wall-item-content-$item.id" >
|
||||
<div class="wall-item-title" id="wall-item-title-$item.id">$item.title</div>
|
||||
<!--<div class="wall-item-title-end"></div>-->
|
||||
<div class="wall-item-body" id="wall-item-body-$item.id" >$item.body
|
||||
<!--<div class="body-tag">-->
|
||||
{{ for $item.tags as $tag }}
|
||||
<span class='body-tag tag'>$tag</span>
|
||||
{{ endfor }}
|
||||
<!--</div>-->
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-tools" id="wall-item-tools-$item.id">
|
||||
{{ if $item.vote }}
|
||||
<div class="wall-item-like-buttons" id="wall-item-like-buttons-$item.id">
|
||||
<a href="#" class="icon like" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false"></a>
|
||||
<a href="#" class="icon dislike" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false"></a>
|
||||
{{ if $item.vote.share }}<a href="#" class="icon recycle wall-item-share-buttons" title="$item.vote.share.0" onclick="jotShare($item.id); return false"></a>{{ endif }}
|
||||
<img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
|
||||
</div>
|
||||
{{ endif }}
|
||||
{{ if $item.plink }}
|
||||
<!--<div class="wall-item-links-wrapper">--><a href="$item.plink.href" title="$item.plink.title" target="external-link" class="wall-item-links-wrapper icon remote-link$item.sparkle"></a><!--</div>-->
|
||||
{{ endif }}
|
||||
{{ if $item.edpost }}
|
||||
<a class="editpost icon pencil" href="$item.edpost.0" title="$item.edpost.1"></a>
|
||||
{{ endif }}
|
||||
|
||||
{{ if $item.star }}
|
||||
<a href="#" id="starred-$item.id" onclick="dostar($item.id); return false;" class="star-item icon $item.isstarred" title="$item.star.toggle"></a>
|
||||
<a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="tag-item icon tagged" title="$item.star.tagger"></a>
|
||||
{{ endif }}
|
||||
{{ if $item.filer }}
|
||||
<a href="#" id="filer-$item.id" onclick="itemFiler($item.id); return false;" class="filer-item filer-icon" title="$item.filer"></a>
|
||||
{{ endif }}
|
||||
|
||||
<!--<div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-$item.id" >-->
|
||||
{{ if $item.drop.dropping }}<a href="item/drop/$item.id" onclick="return confirmDelete();" class="wall-item-delete-wrapper icon drophide" title="$item.drop.delete" id="wall-item-delete-wrapper-$item.id" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a>{{ endif }}
|
||||
<!--</div>-->
|
||||
{{ if $item.drop.dropping }}<input type="checkbox" onclick="checkboxhighlight(this);" title="$item.drop.select" class="item-select" name="itemselected[]" value="$item.id" />{{ endif }}
|
||||
<!--<div class="wall-item-delete-end"></div>-->
|
||||
</div>
|
||||
</div>
|
||||
<!--<div class="wall-item-wrapper-end"></div>-->
|
||||
<div class="wall-item-like $item.indent" id="wall-item-like-$item.id">$item.like</div>
|
||||
<div class="wall-item-dislike $item.indent" id="wall-item-dislike-$item.id">$item.dislike</div>
|
||||
|
||||
{{ if $item.threaded }}
|
||||
{{ if $item.comment }}
|
||||
<!--<div class="wall-item-comment-wrapper $item.indent" >-->
|
||||
$item.comment
|
||||
<!--</div>-->
|
||||
{{ endif }}
|
||||
{{ endif }}
|
||||
|
||||
<!--<div class="wall-item-outside-wrapper-end $item.indent" ></div>-->
|
||||
<!--</div>-->
|
||||
{{ for $item.children as $item }}
|
||||
{{ inc $item.template }}{{ endinc }}
|
||||
{{ endfor }}
|
||||
|
||||
{{ if $item.flatten }}
|
||||
<!--<div class="wall-item-comment-wrapper" >-->
|
||||
$item.comment
|
||||
<!--</div>-->
|
||||
{{ endif }}
|
||||
</div>
|
||||
{{if $item.comment_lastcollapsed}}</div>{{endif}}
|
||||
|
||||
|
|
@ -6,4 +6,9 @@ Check TinyMCE optimization
|
|||
"Profiles" page is wonky
|
||||
Settings, admin, photos upload don't look beautiful
|
||||
|
||||
|
||||
Threading:
|
||||
- indentation
|
||||
- top-level "show more" looks bad
|
||||
- need some visual way to tie sub-comments to their parent comments
|
||||
- need a way to change styles if the system allows threading or not
|
||||
- just don't allow?
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@
|
|||
{{ inc field_textarea.tpl with $field=$banner }}{{ endinc }}
|
||||
{{ inc field_select.tpl with $field=$language }}{{ endinc }}
|
||||
{{ inc field_select.tpl with $field=$theme }}{{ endinc }}
|
||||
{{ inc field_select.tpl with $field=$theme_mobile }}{{ endinc }}
|
||||
{{ inc field_select.tpl with $field=$ssl_policy }}{{ endinc }}
|
||||
|
||||
<div class="submit"><input type="submit" name="page_site" value="$submit" /></div>
|
||||
|
|
@ -35,6 +36,7 @@
|
|||
{{ inc field_checkbox.tpl with $field=$ostatus_disabled }}{{ endinc }}
|
||||
{{ inc field_checkbox.tpl with $field=$diaspora_enabled }}{{ endinc }}
|
||||
{{ inc field_checkbox.tpl with $field=$dfrn_only }}{{ endinc }}
|
||||
{{ inc field_checkbox.tpl with $field=$thread_allow }}{{ endinc }}
|
||||
{{ inc field_input.tpl with $field=$global_directory }}{{ endinc }}
|
||||
|
||||
<div class="submit"><input type="submit" name="page_site" value="$submit" /></div>
|
||||
|
|
|
|||
|
|
@ -10,8 +10,10 @@
|
|||
});
|
||||
</script>-->
|
||||
|
||||
<div class="comment-wwedit-wrapper" id="comment-edit-wrapper-$id" style="display: block;">
|
||||
<div class="comment-wwedit-wrapper $indent" id="comment-edit-wrapper-$id" style="display: block;">
|
||||
<form class="comment-edit-form" id="comment-edit-form-$id" action="item" method="post" onsubmit="post_comment($id); return false;">
|
||||
<!-- <span id="hide-commentbox-$id" class="hide-commentbox fakelink" onclick="showHideCommentBox($id);">$comment</span>
|
||||
<form class="comment-edit-form" style="display: none;" id="comment-edit-form-$id" action="item" method="post" onsubmit="post_comment($id); return false;">-->
|
||||
<input type="hidden" name="type" value="$type" />
|
||||
<input type="hidden" name="profile_uid" value="$profile_uid" />
|
||||
<input type="hidden" name="parent" value="$parent" />
|
||||
|
|
@ -23,7 +25,7 @@
|
|||
<a class="comment-edit-photo comment-edit-photo-link" id="comment-edit-photo-$id" href="$mylink" title="$mytitle"><img class="my-comment-photo" src="$myphoto" alt="$mytitle" title="$mytitle" /></a>
|
||||
<!-- </div>-->
|
||||
<!--<div class="comment-edit-photo-end"></div>-->
|
||||
<ul class="comment-edit-bb-$id">
|
||||
<ul class="comment-edit-bb" id="comment-edit-bb-$id">
|
||||
<li><a class="editicon boldbb shadow"
|
||||
style="cursor: pointer;" title="$edbold"
|
||||
onclick="insertFormatting('$comment','b', $id);"></a></li>
|
||||
|
|
|
|||
|
|
@ -1,27 +0,0 @@
|
|||
{{ for $threads as $thread }}
|
||||
<div id="tread-wrapper-$thread.id" class="tread-wrapper">
|
||||
{{ for $thread.items as $item }}
|
||||
{{if $item.comment_firstcollapsed}}
|
||||
<div class="hide-comments-outer">
|
||||
<span id="hide-comments-total-$thread.id" class="hide-comments-total">$thread.num_comments</span> <span id="hide-comments-$thread.id" class="hide-comments fakelink" onclick="showHideComments($thread.id);">$thread.hide_text</span>
|
||||
</div>
|
||||
<div id="collapsed-comments-$thread.id" class="collapsed-comments" style="display: none;">
|
||||
{{endif}}
|
||||
{{if $item.comment_lastcollapsed}}</div>{{endif}}
|
||||
|
||||
{{ inc $item.template }}{{ endinc }}
|
||||
|
||||
|
||||
{{ endfor }}
|
||||
</div>
|
||||
{{ endfor }}
|
||||
|
||||
<div id="conversation-end"></div>
|
||||
|
||||
{{ if $dropping }}
|
||||
<div id="item-delete-selected" class="fakelink" onclick="deleteCheckedItems();">
|
||||
<div id="item-delete-selected-icon" class="icon drophide" title="$dropping" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></div>
|
||||
<div id="item-delete-selected-desc" >$dropping</div>
|
||||
</div>
|
||||
<div id="item-delete-selected-end"></div>
|
||||
{{ endif }}
|
||||
|
|
@ -290,7 +290,7 @@
|
|||
|
||||
// add a new thread
|
||||
|
||||
$j('.tread-wrapper',data).each(function() {
|
||||
$j('.toplevel_item',data).each(function() {
|
||||
var ident = $j(this).attr('id');
|
||||
|
||||
if($j('#' + ident).length == 0 && profile_page == 1) {
|
||||
|
|
|
|||
2
view/theme/frost/js/main.min.js
vendored
2
view/theme/frost/js/main.min.js
vendored
File diff suppressed because one or more lines are too long
|
|
@ -275,6 +275,7 @@ $j(function(){
|
|||
autoDimensions: false,
|
||||
onStart: function(){
|
||||
var theme = $j("#id_theme :selected").val();
|
||||
var theme_mobile = $j("#id_theme_mobile :selected").val();
|
||||
$j("#cnftheme").attr('href', baseurl + "/admin/themes/"+theme);
|
||||
},
|
||||
onComplete: function(){
|
||||
|
|
@ -522,10 +523,10 @@ function insertFormatting(comment,BBcode,id) {
|
|||
}
|
||||
|
||||
function cmtBbOpen(id) {
|
||||
$j(".comment-edit-bb-" + id).show();
|
||||
$j("#comment-edit-bb-" + id).show();
|
||||
}
|
||||
function cmtBbClose(id) {
|
||||
$j(".comment-edit-bb-" + id).hide();
|
||||
$j("#comment-edit-bb-" + id).hide();
|
||||
}
|
||||
|
||||
function confirmDelete() { return confirm(window.delItem); }
|
||||
|
|
@ -594,6 +595,15 @@ function showHideComments(id) {
|
|||
}
|
||||
}
|
||||
|
||||
/*function showHideCommentBox(id) {
|
||||
if( $j('#comment-edit-form-' + id).is(':visible')) {
|
||||
$j('#comment-edit-form-' + id).hide();
|
||||
}
|
||||
else {
|
||||
$j('#comment-edit-form-' + id).show();
|
||||
}
|
||||
}*/
|
||||
|
||||
|
||||
|
||||
function enableOnUser(){
|
||||
|
|
|
|||
2
view/theme/frost/js/theme.min.js
vendored
2
view/theme/frost/js/theme.min.js
vendored
File diff suppressed because one or more lines are too long
9
view/theme/frost/posted_date_widget.tpl
Normal file
9
view/theme/frost/posted_date_widget.tpl
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<div id="datebrowse-sidebar" class="widget">
|
||||
<h3>$title</h3>
|
||||
<script>function dateSubmit(dateurl) { window.location.href = dateurl; } </script>
|
||||
<select id="posted-date-selector" name="posted-date-select" onchange="dateSubmit($j(this).val());" size="$size">
|
||||
{{ for $dates as $d }}
|
||||
<option value="$url/$d.1/$d.2" >$d.0</option>
|
||||
{{ endfor }}
|
||||
</select>
|
||||
</div>
|
||||
|
|
@ -1363,6 +1363,12 @@ input#dfrn-url {
|
|||
margin-left: 50px;
|
||||
}
|
||||
|
||||
.comment-wwedit-wrapper.comment {
|
||||
width: 300px;
|
||||
margin-left: 150px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.comment-edit-photo {
|
||||
margin-top: 10px;
|
||||
margin-left: 10px;
|
||||
|
|
@ -1373,6 +1379,9 @@ input#dfrn-url {
|
|||
.comment-edit-photo img {
|
||||
width: 25px;
|
||||
}
|
||||
.comment .comment-edit-photo {
|
||||
width: 50px;
|
||||
}
|
||||
.comment-edit-text-empty, .comment-edit-text-full {
|
||||
float: left;
|
||||
margin-top: 10px;
|
||||
|
|
@ -1398,6 +1407,16 @@ input#dfrn-url {
|
|||
overflow: auto;
|
||||
}
|
||||
|
||||
.comment .comment-edit-text-empty {
|
||||
height: 1.5em;
|
||||
width: 150px;
|
||||
}
|
||||
|
||||
.comment .comment-edit-text-full {
|
||||
margin-left: 10px;
|
||||
width: 275px;
|
||||
}
|
||||
|
||||
.comment-edit-text-end {
|
||||
clear: both;
|
||||
}
|
||||
|
|
@ -1405,6 +1424,9 @@ input#dfrn-url {
|
|||
.comment-edit-submit {
|
||||
margin: 10px 0px 10px 110px;
|
||||
}
|
||||
.comment .comment-edit-submit {
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
#profile-jot-plugin-wrapper,
|
||||
#profile-jot-submit-wrapper {
|
||||
|
|
@ -3514,13 +3536,19 @@ aside input[type='text'] {
|
|||
}
|
||||
|
||||
.icon.dim { opacity: 0.3;filter:alpha(opacity=30); }
|
||||
[class^="comment-edit-bb"] {
|
||||
/*[class^="comment-edit-bb"] {*/
|
||||
.comment-edit-bb {
|
||||
list-style: none;
|
||||
display: none;
|
||||
margin: 0px 0 -5px 60px;
|
||||
width: 75%;
|
||||
}
|
||||
[class^="comment-edit-bb"] > li {
|
||||
.comment .comment-edit-bb {
|
||||
width: 300px;
|
||||
margin: 0px;
|
||||
}
|
||||
/*[class^="comment-edit-bb"] > li {*/
|
||||
.comment-edit-bb > li {
|
||||
display: inline-block;
|
||||
margin: 10px 10px 0 0;
|
||||
visibility: none;
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
* Name: Frost
|
||||
* Description: Like frosted glass
|
||||
* Credits: Navigation icons taken from http://iconza.com. Other icons taken from http://thenounproject.com, including: Like, Dislike, Black Lock, Unlock, Pencil, Tag, Camera, Paperclip (Marie Coons), Folder (Sergio Calcara), Chain-link (Andrew Fortnum), Speaker (Harold Kim), Quotes (Henry Ryder), Video Camera (Anas Ramadan), and Left Arrow, Right Arrow, and Delete X (all three P.J. Onori). All under Attribution (CC BY 3.0). Others from The Noun Project are public domain or No Rights Reserved (CC0).
|
||||
* Version: Version 0.2.3
|
||||
* Version: Version 0.2.5
|
||||
* Author: Zach P <windforest@f.shmuz.in>
|
||||
* Maintainer: Zach P <windforest@f.shmuz.in>
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<a name="$item.id" ></a>
|
||||
<!--<div class="wall-item-outside-wrapper$item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >-->
|
||||
<div class="wall-item-content-wrapper$item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<!--<div class="wall-item-outside-wrapper $item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >-->
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info" id="wall-item-info-$item.id">
|
||||
<div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$item.id"
|
||||
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||
|
|
@ -24,7 +24,7 @@
|
|||
</div>
|
||||
<!--<div class="wall-item-author">-->
|
||||
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle" id="wall-item-name-$item.id" >$item.name</span></a>
|
||||
<div class="wall-item-ago" id="wall-item-ago-$item.id">$item.ago</div>
|
||||
<div class="wall-item-ago" id="wall-item-ago-$item.id" >$item.ago</div>
|
||||
|
||||
<!--</div>-->
|
||||
<div class="wall-item-content" id="wall-item-content-$item.id" >
|
||||
|
|
@ -75,5 +75,5 @@
|
|||
$item.comment
|
||||
<!--</div>-->
|
||||
|
||||
<!--<div class="wall-item-outside-wrapper-end$item.indent" ></div>-->
|
||||
<!--<div class="wall-item-outside-wrapper-end $item.indent" ></div>-->
|
||||
<!--</div>-->
|
||||
|
|
|
|||
104
view/theme/frost/wall_thread.tpl
Normal file
104
view/theme/frost/wall_thread.tpl
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
{{if $item.comment_firstcollapsed}}
|
||||
<div class="hide-comments-outer">
|
||||
<span id="hide-comments-total-$item.id" class="hide-comments-total">$item.num_comments</span> <span id="hide-comments-$item.id" class="hide-comments fakelink" onclick="showHideComments($item.id);">$item.hide_text</span>
|
||||
</div>
|
||||
<div id="collapsed-comments-$item.id" class="collapsed-comments" style="display: none;">
|
||||
{{endif}}
|
||||
<div id="tread-wrapper-$item.id" class="tread-wrapper $item.toplevel">
|
||||
<a name="$item.id" ></a>
|
||||
<!--<div class="wall-item-outside-wrapper $item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >-->
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info" id="wall-item-info-$item.id">
|
||||
<div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$item.id"
|
||||
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||
onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
|
||||
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$item.id">
|
||||
<img src="$item.thumb" class="wall-item-photo$item.sparkle" id="wall-item-photo-$item.id" style="height: 80px; width: 80px;" alt="$item.name" />
|
||||
</a>
|
||||
<span onclick="openClose('wall-item-photo-menu-$item.id');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-$item.id">menu</span>
|
||||
<!--<div class="wall-item-photo-menu" id="wall-item-photo-menu-$item.id">-->
|
||||
<ul class="wall-item-photo-menu" id="wall-item-photo-menu-$item.id">
|
||||
$item.item_photo_menu
|
||||
</ul>
|
||||
<!--</div>-->
|
||||
</div>
|
||||
<!--<div class="wall-item-photo-end"></div>-->
|
||||
<div class="wall-item-wrapper" id="wall-item-wrapper-$item.id" >
|
||||
{{ if $item.lock }}<!--<div class="wall-item-lock">--><img src="images/lock_icon.gif" class="wall-item-lock lockview" alt="$item.lock" onclick="lockview(event,$item.id);" /><!--</div>-->
|
||||
{{ else }}<div class="wall-item-lock"></div>{{ endif }}
|
||||
<div class="wall-item-location" id="wall-item-location-$item.id">$item.location</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--<div class="wall-item-author">-->
|
||||
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle" id="wall-item-name-$item.id" >$item.name</span></a>
|
||||
<div class="wall-item-ago" id="wall-item-ago-$item.id" >$item.ago</div>
|
||||
|
||||
<!--</div>-->
|
||||
<div class="wall-item-content" id="wall-item-content-$item.id" >
|
||||
<div class="wall-item-title" id="wall-item-title-$item.id">$item.title</div>
|
||||
<!--<div class="wall-item-title-end"></div>-->
|
||||
<div class="wall-item-body" id="wall-item-body-$item.id" >$item.body
|
||||
<!-- <div class="body-tag">-->
|
||||
{{ for $item.tags as $tag }}
|
||||
<span class='body-tag tag'>$tag</span>
|
||||
{{ endfor }}
|
||||
<!-- </div>-->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="wall-item-tools" id="wall-item-tools-$item.id">
|
||||
{{ if $item.vote }}
|
||||
<div class="wall-item-like-buttons" id="wall-item-like-buttons-$item.id">
|
||||
<a href="#" class="icon like" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false"></a>
|
||||
<a href="#" class="icon dislike" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false"></a>
|
||||
{{ if $item.vote.share }}<a href="#" class="icon recycle wall-item-share-buttons" title="$item.vote.share.0" onclick="jotShare($item.id); return false"></a>{{ endif }}
|
||||
<img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
|
||||
</div>
|
||||
{{ endif }}
|
||||
{{ if $item.plink }}
|
||||
<!--<div class="wall-item-links-wrapper">--><a href="$item.plink.href" title="$item.plink.title" target="external-link" class="wall-item-links-wrapper icon remote-link$item.sparkle"></a><!--</div>-->
|
||||
{{ endif }}
|
||||
{{ if $item.edpost }}
|
||||
<a class="editpost icon pencil" href="$item.edpost.0" title="$item.edpost.1"></a>
|
||||
{{ endif }}
|
||||
|
||||
{{ if $item.star }}
|
||||
<a href="#" id="starred-$item.id" onclick="dostar($item.id); return false;" class="star-item icon $item.isstarred" title="$item.star.toggle"></a>
|
||||
<a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="tag-item icon tagged" title="$item.star.tagger"></a>
|
||||
{{ endif }}
|
||||
{{ if $item.filer }}
|
||||
<a href="#" id="filer-$item.id" onclick="itemFiler($item.id); return false;" class="filer-item filer-icon" title="$item.filer"></a>
|
||||
{{ endif }}
|
||||
<!-- <div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-$item.id" >-->
|
||||
{{ if $item.drop.dropping }}<a href="item/drop/$item.id" onclick="return confirmDelete();" class="wall-item-delete-wrapper icon drophide" title="$item.drop.delete" id="wall-item-delete-wrapper-$item.id" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a>{{ endif }}
|
||||
<!-- </div>-->
|
||||
{{ if $item.drop.dropping }}<input type="checkbox" onclick="checkboxhighlight(this);" title="$item.drop.select" class="item-select" name="itemselected[]" value="$item.id" />{{ endif }}
|
||||
|
||||
<!--<div class="wall-item-delete-end"></div>-->
|
||||
</div>
|
||||
</div>
|
||||
<!--<div class="wall-item-wrapper-end"></div>-->
|
||||
<div class="wall-item-like $item.indent" id="wall-item-like-$item.id">$item.like</div>
|
||||
<div class="wall-item-dislike $item.indent" id="wall-item-dislike-$item.id">$item.dislike</div>
|
||||
|
||||
{{ if $item.threaded }}
|
||||
{{ if $item.comment }}
|
||||
<!--<div class="wall-item-comment-wrapper $item.indent" >-->
|
||||
$item.comment
|
||||
<!--</div>-->
|
||||
{{ endif }}
|
||||
{{ endif }}
|
||||
|
||||
<!--<div class="wall-item-outside-wrapper-end $item.indent" ></div>-->
|
||||
<!--</div>-->
|
||||
{{ for $item.children as $item }}
|
||||
{{ inc $item.template }}{{ endinc }}
|
||||
{{ endfor }}
|
||||
|
||||
{{ if $item.flatten }}
|
||||
<!--<div class="wall-item-comment-wrapper" >-->
|
||||
$item.comment
|
||||
<!--</div>-->
|
||||
{{ endif }}
|
||||
</div>
|
||||
{{if $item.comment_lastcollapsed}}</div>{{endif}}
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
<a name="$item.id" ></a>
|
||||
<!--<div class="wall-item-outside-wrapper$item.indent$item.previewing wallwall" id="wall-item-outside-wrapper-$item.id" >-->
|
||||
<div class="wall-item-content-wrapper$item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<!--<div class="wall-item-outside-wrapper $item.indent$item.previewing wallwall" id="wall-item-outside-wrapper-$item.id" >-->
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info wallwall" id="wall-item-info-$item.id">
|
||||
<div class="wall-item-photo-wrapper wwto" id="wall-item-ownerphoto-wrapper-$item.id" >
|
||||
<a href="$item.owner_url" target="redir" title="$item.olinktitle" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$item.id">
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
</div>
|
||||
<!--<div class="wall-item-photo-end"></div>-->
|
||||
<div class="wall-item-wrapper" id="wall-item-wrapper-$item.id" >
|
||||
{{ if $item.lock }}<div class="wall-item-lock"><img src="images/lock_icon.gif" class="lockview" alt="$item.lock" onclick="lockview(event,$item.id);" /></div>
|
||||
{{ if $item.lock }}<!--<div class="wall-item-lock">--><img src="images/lock_icon.gif" class="wall-item-lock lockview" alt="$item.lock" onclick="lockview(event,$item.id);" /><!--</div>-->
|
||||
{{ else }}<div class="wall-item-lock"></div>{{ endif }}
|
||||
<div class="wall-item-location" id="wall-item-location-$item.id">$item.location</div>
|
||||
</div>
|
||||
|
|
@ -67,7 +67,7 @@
|
|||
{{ endif }}
|
||||
|
||||
<!--<div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-$item.id" >-->
|
||||
{{ if $item.drop.dropping }}<a href="item/drop/$item.id" onclick="return confirmDelete();" class="wall-item-delete-wrapper icon drophide" title="$item.drop.delete" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a>{{ endif }}
|
||||
{{ if $item.drop.dropping }}<a href="item/drop/$item.id" onclick="return confirmDelete();" class="wall-item-delete-wrapper icon drophide" title="$item.drop.delete" id="wall-item-delete-wrapper-$item.id" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a>{{ endif }}
|
||||
<!--</div>-->
|
||||
{{ if $item.drop.dropping }}<input type="checkbox" onclick="checkboxhighlight(this);" title="$item.drop.select" class="item-select" name="itemselected[]" value="$item.id" />{{ endif }}
|
||||
<!--<div class="wall-item-delete-end"></div>-->
|
||||
|
|
@ -81,6 +81,6 @@
|
|||
$item.comment
|
||||
<!--</div>-->
|
||||
|
||||
<!--<div class="wall-item-outside-wrapper-end$item.indent" ></div>-->
|
||||
<!--<div class="wall-item-outside-wrapper-end $item.indent" ></div>-->
|
||||
<!--</div>-->
|
||||
|
||||
|
|
|
|||
108
view/theme/frost/wallwall_thread.tpl
Normal file
108
view/theme/frost/wallwall_thread.tpl
Normal file
|
|
@ -0,0 +1,108 @@
|
|||
{{if $item.comment_firstcollapsed}}
|
||||
<div class="hide-comments-outer">
|
||||
<span id="hide-comments-total-$item.id" class="hide-comments-total">$item.num_comments</span> <span id="hide-comments-$item.id" class="hide-comments fakelink" onclick="showHideComments($item.id);">$item.hide_text</span>
|
||||
</div>
|
||||
<div id="collapsed-comments-$item.id" class="collapsed-comments" style="display: none;">
|
||||
{{endif}}
|
||||
<div id="tread-wrapper-$item.id" class="tread-wrapper $item.toplevel">
|
||||
<a name="$item.id" ></a>
|
||||
<!--<div class="wall-item-outside-wrapper $item.indent$item.previewing wallwall" id="wall-item-outside-wrapper-$item.id" >-->
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info wallwall" id="wall-item-info-$item.id">
|
||||
<div class="wall-item-photo-wrapper wwto" id="wall-item-ownerphoto-wrapper-$item.id" >
|
||||
<a href="$item.owner_url" target="redir" title="$item.olinktitle" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$item.id">
|
||||
<img src="$item.owner_photo" class="wall-item-photo$item.osparkle" id="wall-item-ownerphoto-$item.id" style="height: 80px; width: 80px;" alt="$item.owner_name" /></a>
|
||||
</div>
|
||||
<div class="wall-item-arrowphoto-wrapper" ><img src="images/larrow.gif" alt="$item.wall" /></div>
|
||||
<div class="wall-item-photo-wrapper wwfrom" id="wall-item-photo-wrapper-$item.id"
|
||||
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||
onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
|
||||
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$item.id">
|
||||
<img src="$item.thumb" class="wall-item-photo$item.sparkle" id="wall-item-photo-$item.id" style="height: 80px; width: 80px;" alt="$item.name" /></a>
|
||||
<span onclick="openClose('wall-item-photo-menu-$item.id');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-$item.id">menu</span>
|
||||
<!-- <div class="wall-item-photo-menu" id="wall-item-photo-menu-$item.id">-->
|
||||
<ul class="wall-item-photo-menu" id="wall-item-photo-menu-$item.id">
|
||||
$item.item_photo_menu
|
||||
</ul>
|
||||
<!-- </div>-->
|
||||
|
||||
</div>
|
||||
<!--<div class="wall-item-photo-end"></div>-->
|
||||
<div class="wall-item-wrapper" id="wall-item-wrapper-$item.id" >
|
||||
{{ if $item.lock }}<!--<div class="wall-item-lock">--><img src="images/lock_icon.gif" class="wall-item-lock lockview" alt="$item.lock" onclick="lockview(event,$item.id);" /><!--</div>-->
|
||||
{{ else }}<div class="wall-item-lock"></div>{{ endif }}
|
||||
<div class="wall-item-location" id="wall-item-location-$item.id">$item.location</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--<div class="wall-item-author">-->
|
||||
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle" id="wall-item-name-$item.id" >$item.name</span></a> $item.to <a href="$item.owner_url" target="redir" title="$item.olinktitle" class="wall-item-name-link"><span class="wall-item-name$item.osparkle" id="wall-item-ownername-$item.id">$item.owner_name</span></a> $item.vwall<br />
|
||||
<div class="wall-item-ago" id="wall-item-ago-$item.id">$item.ago</div>
|
||||
<!--</div>-->
|
||||
<div class="wall-item-content" id="wall-item-content-$item.id" >
|
||||
<div class="wall-item-title" id="wall-item-title-$item.id">$item.title</div>
|
||||
<!--<div class="wall-item-title-end"></div>-->
|
||||
<div class="wall-item-body" id="wall-item-body-$item.id" >$item.body
|
||||
<!--<div class="body-tag">-->
|
||||
{{ for $item.tags as $tag }}
|
||||
<span class='body-tag tag'>$tag</span>
|
||||
{{ endfor }}
|
||||
<!--</div>-->
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-tools" id="wall-item-tools-$item.id">
|
||||
{{ if $item.vote }}
|
||||
<div class="wall-item-like-buttons" id="wall-item-like-buttons-$item.id">
|
||||
<a href="#" class="icon like" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false"></a>
|
||||
<a href="#" class="icon dislike" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false"></a>
|
||||
{{ if $item.vote.share }}<a href="#" class="icon recycle wall-item-share-buttons" title="$item.vote.share.0" onclick="jotShare($item.id); return false"></a>{{ endif }}
|
||||
<img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
|
||||
</div>
|
||||
{{ endif }}
|
||||
{{ if $item.plink }}
|
||||
<!--<div class="wall-item-links-wrapper">--><a href="$item.plink.href" title="$item.plink.title" target="external-link" class="wall-item-links-wrapper icon remote-link$item.sparkle"></a><!--</div>-->
|
||||
{{ endif }}
|
||||
{{ if $item.edpost }}
|
||||
<a class="editpost icon pencil" href="$item.edpost.0" title="$item.edpost.1"></a>
|
||||
{{ endif }}
|
||||
|
||||
{{ if $item.star }}
|
||||
<a href="#" id="starred-$item.id" onclick="dostar($item.id); return false;" class="star-item icon $item.isstarred" title="$item.star.toggle"></a>
|
||||
<a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="tag-item icon tagged" title="$item.star.tagger"></a>
|
||||
{{ endif }}
|
||||
{{ if $item.filer }}
|
||||
<a href="#" id="filer-$item.id" onclick="itemFiler($item.id); return false;" class="filer-item filer-icon" title="$item.filer"></a>
|
||||
{{ endif }}
|
||||
|
||||
<!--<div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-$item.id" >-->
|
||||
{{ if $item.drop.dropping }}<a href="item/drop/$item.id" onclick="return confirmDelete();" class="wall-item-delete-wrapper icon drophide" title="$item.drop.delete" id="wall-item-delete-wrapper-$item.id" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a>{{ endif }}
|
||||
<!--</div>-->
|
||||
{{ if $item.drop.dropping }}<input type="checkbox" onclick="checkboxhighlight(this);" title="$item.drop.select" class="item-select" name="itemselected[]" value="$item.id" />{{ endif }}
|
||||
<!--<div class="wall-item-delete-end"></div>-->
|
||||
</div>
|
||||
</div>
|
||||
<!--<div class="wall-item-wrapper-end"></div>-->
|
||||
<div class="wall-item-like $item.indent" id="wall-item-like-$item.id">$item.like</div>
|
||||
<div class="wall-item-dislike $item.indent" id="wall-item-dislike-$item.id">$item.dislike</div>
|
||||
|
||||
{{ if $item.threaded }}
|
||||
{{ if $item.comment }}
|
||||
<!--<div class="wall-item-comment-wrapper $item.indent" >-->
|
||||
$item.comment
|
||||
<!--</div>-->
|
||||
{{ endif }}
|
||||
{{ endif }}
|
||||
|
||||
<!--<div class="wall-item-outside-wrapper-end $item.indent" ></div>-->
|
||||
<!--</div>-->
|
||||
{{ for $item.children as $item }}
|
||||
{{ inc $item.template }}{{ endinc }}
|
||||
{{ endfor }}
|
||||
|
||||
{{ if $item.flatten }}
|
||||
<!--<div class="wall-item-comment-wrapper" >-->
|
||||
$item.comment
|
||||
<!--</div>-->
|
||||
{{ endif }}
|
||||
</div>
|
||||
{{if $item.comment_lastcollapsed}}</div>{{endif}}
|
||||
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
<div class="wall-item-outside-wrapper$item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper$item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-outside-wrapper $item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info" id="wall-item-info-$item.id">
|
||||
<div class="wall-item-photo-wrapper mframe" id="wall-item-photo-wrapper-$item.id"
|
||||
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||
|
|
@ -50,4 +50,4 @@
|
|||
<div class="wall-item-wrapper-end"></div>
|
||||
</div>
|
||||
|
||||
<div class="wall-item-outside-wrapper-end$item.indent" ></div>
|
||||
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<div class="wall-item-outside-wrapper$item.indent" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper$item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-outside-wrapper $item.indent" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info" id="wall-item-info-$item.id">
|
||||
<div class="wall-item-photo-wrapper mframe" id="wall-item-photo-wrapper-$item.id"
|
||||
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||
|
|
@ -74,5 +74,5 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="wall-item-outside-wrapper-end$item.indent" ></div>
|
||||
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<div class="wall-item-outside-wrapper$item.indent wallwall" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper$item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-outside-wrapper $item.indent wallwall" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info wallwall" id="wall-item-info-$item.id">
|
||||
<div class="wall-item-photo-wrapper mframe wwto" id="wall-item-ownerphoto-wrapper-$item.id" >
|
||||
<a href="$item.owner_url" title="$item.olinktitle" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$item.id">
|
||||
|
|
@ -77,5 +77,5 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="wall-item-outside-wrapper-end$item.indent" ></div>
|
||||
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
|
||||
|
||||
|
|
|
|||
37
view/theme/vier/threaded_conversation.tpl
Normal file
37
view/theme/vier/threaded_conversation.tpl
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{{ for $threads as $item }}
|
||||
|
||||
<div id="tread-wrapper-$item.id" class="tread-wrapper {{ if $item.threaded }}threaded{{ endif }}">
|
||||
|
||||
|
||||
{{ if $item.type == tag }}
|
||||
{{ inc wall_item_tag.tpl }}{{ endinc }}
|
||||
{{ else }}
|
||||
{{ inc $item.template }}{{ endinc }}
|
||||
{{ endif }}
|
||||
|
||||
</div>
|
||||
{{ endfor }}
|
||||
|
||||
<div id="conversation-end"></div>
|
||||
|
||||
{{ if $dropping }}
|
||||
<a href="#" onclick="deleteCheckedItems();return false;">
|
||||
<span class="icon s22 delete text">$dropping</span>
|
||||
</a>
|
||||
{{ endif }}
|
||||
|
||||
<script>
|
||||
// jquery color plugin from https://raw.github.com/gist/1891361/17747b50ad87f7a59a14b4e0f38d8f3fb6a18b27/gistfile1.js
|
||||
(function(d){d.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor","borderTopColor","color","outlineColor"],function(f,e){d.fx.step[e]=function(g){if(!g.colorInit){g.start=c(g.elem,e);g.end=b(g.end);g.colorInit=true}g.elem.style[e]="rgb("+[Math.max(Math.min(parseInt((g.pos*(g.end[0]-g.start[0]))+g.start[0]),255),0),Math.max(Math.min(parseInt((g.pos*(g.end[1]-g.start[1]))+g.start[1]),255),0),Math.max(Math.min(parseInt((g.pos*(g.end[2]-g.start[2]))+g.start[2]),255),0)].join(",")+")"}});function b(f){var e;if(f&&f.constructor==Array&&f.length==3){return f}if(e=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(f)){return[parseInt(e[1]),parseInt(e[2]),parseInt(e[3])]}if(e=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(f)){return[parseFloat(e[1])*2.55,parseFloat(e[2])*2.55,parseFloat(e[3])*2.55]}if(e=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(f)){return[parseInt(e[1],16),parseInt(e[2],16),parseInt(e[3],16)]}if(e=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(f)){return[parseInt(e[1]+e[1],16),parseInt(e[2]+e[2],16),parseInt(e[3]+e[3],16)]}if(e=/rgba\(0, 0, 0, 0\)/.exec(f)){return a.transparent}return a[d.trim(f).toLowerCase()]}function c(g,e){var f;do{f=d.curCSS(g,e);if(f!=""&&f!="transparent"||d.nodeName(g,"body")){break}e="backgroundColor"}while(g=g.parentNode);return b(f)}var a={transparent:[255,255,255]}})(jQuery);
|
||||
var colWhite = {backgroundColor:'#EFF0F1'};
|
||||
var colShiny = {backgroundColor:'#FCE94F'};
|
||||
</script>
|
||||
|
||||
{{ if $mode == display }}
|
||||
<script>
|
||||
var id = window.location.pathname.split("/").pop();
|
||||
$(window).scrollTop($('#item-'+id).position().top);
|
||||
$('#item-'+id).animate(colWhite, 1000).animate(colShiny).animate(colWhite, 2000);
|
||||
</script>
|
||||
{{ endif }}
|
||||
|
||||
144
view/theme/vier/wall_thread.tpl
Normal file
144
view/theme/vier/wall_thread.tpl
Normal file
|
|
@ -0,0 +1,144 @@
|
|||
{{if $mode == display}}
|
||||
{{ else }}
|
||||
{{if $item.comment_firstcollapsed}}
|
||||
<div class="hide-comments-outer">
|
||||
<span id="hide-comments-total-$item.id"
|
||||
class="hide-comments-total">$item.num_comments</span>
|
||||
<span id="hide-comments-$item.id"
|
||||
class="hide-comments fakelink"
|
||||
onclick="showHideComments($item.id);">$item.hide_text</span>
|
||||
{{ if $item.thread_level==3 }} -
|
||||
<span id="hide-thread-$item-id"
|
||||
class="fakelink"
|
||||
onclick="showThread($item.id);">expand</span> /
|
||||
<span id="hide-thread-$item-id"
|
||||
class="fakelink"
|
||||
onclick="hideThread($item.id);">collapse</span> thread{{ endif }}
|
||||
</div>
|
||||
<div id="collapsed-comments-$item.id" class="collapsed-comments" style="display: none;">
|
||||
{{endif}}
|
||||
{{ endif }}
|
||||
|
||||
{{ if $item.thread_level!=1 }}<div class="children">{{ endif }}
|
||||
|
||||
<div class="wall-item-decor">
|
||||
<span class="icon s22 star $item.isstarred" id="starred-$item.id" title="$item.star.starred">$item.star.starred</span>
|
||||
{{ if $item.lock }}<span class="icon s22 lock fakelink" onclick="lockview(event,$item.id);" title="$item.lock">$item.lock</span>{{ endif }}
|
||||
<img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
|
||||
</div>
|
||||
|
||||
<div class="wall-item-container $item.indent" id="item-$item.id">
|
||||
<div class="wall-item-item">
|
||||
<div class="wall-item-info">
|
||||
<div class="contact-photo-wrapper"
|
||||
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||
onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
|
||||
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="contact-photo-link" id="wall-item-photo-link-$item.id">
|
||||
<img src="$item.thumb" class="contact-photo$item.sparkle" id="wall-item-photo-$item.id" alt="$item.name" />
|
||||
</a>
|
||||
<a href="#" rel="#wall-item-photo-menu-$item.id" class="contact-photo-menu-button icon s16 menu" id="wall-item-photo-menu-button-$item.id">menu</a>
|
||||
<ul class="contact-menu menu-popup" id="wall-item-photo-menu-$item.id">
|
||||
$item.item_photo_menu
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
<div class="wall-item-location">$item.location</div>
|
||||
</div>
|
||||
<div class="wall-item-content">
|
||||
{{ if $item.title }}<h2><a href="$item.plink.href" class="$item.sparkle">$item.title</a></h2>{{ endif }}
|
||||
$item.body
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-bottom">
|
||||
<div class="wall-item-links">
|
||||
</div>
|
||||
<div class="wall-item-tags">
|
||||
{{ for $item.tags as $tag }}
|
||||
<span class='tag'>$tag</span>
|
||||
{{ endfor }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-bottom">
|
||||
<div class="">
|
||||
{{ if $item.plink }}<a class="icon s16 link$item.sparkle" title="$item.plink.title" href="$item.plink.href">$item.plink.title</a>{{ endif }}
|
||||
</div>
|
||||
<div class="wall-item-actions">
|
||||
<div class="wall-item-actions-author">
|
||||
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle">$item.name</span></a> <span class="wall-item-ago">$item.ago</span>
|
||||
</div>
|
||||
|
||||
<div class="wall-item-actions-social">
|
||||
{{ if $item.star }}
|
||||
<a href="#" id="star-$item.id" onclick="dostar($item.id); return false;" class="$item.star.classdo" title="$item.star.do">$item.star.do</a>
|
||||
<a href="#" id="unstar-$item.id" onclick="dostar($item.id); return false;" class="$item.star.classundo" title="$item.star.undo">$item.star.undo</a>
|
||||
<a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="$item.star.classtagger" title="$item.star.tagger">$item.star.tagger</a>
|
||||
{{ endif }}
|
||||
{{ if $item.filer }}
|
||||
<a href="#" id="filer-$item.id" onclick="itemFiler($item.id); return false;" class="filer-item filer-icon" title="$item.filer">$item.filer</a>
|
||||
{{ endif }}
|
||||
|
||||
{{ if $item.vote }}
|
||||
<a href="#" id="like-$item.id" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false">$item.vote.like.1</a>
|
||||
<a href="#" id="dislike-$item.id" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false">$item.vote.dislike.1</a>
|
||||
{{ endif }}
|
||||
|
||||
{{ if $item.vote.share }}
|
||||
<a href="#" id="share-$item.id" title="$item.vote.share.0" onclick="jotShare($item.id); return false">$item.vote.share.1</a>
|
||||
{{ endif }}
|
||||
</div>
|
||||
|
||||
<div class="wall-item-actions-tools">
|
||||
|
||||
{{ if $item.drop.dropping }}
|
||||
<input type="checkbox" title="$item.drop.select" name="itemselected[]" class="item-select" value="$item.id" />
|
||||
<a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon delete s16" title="$item.drop.delete">$item.drop.delete</a>
|
||||
{{ endif }}
|
||||
{{ if $item.edpost }}
|
||||
<a class="icon edit s16" href="$item.edpost.0" title="$item.edpost.1"></a>
|
||||
{{ endif }}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-bottom">
|
||||
<div class="wall-item-links"></div>
|
||||
<div class="wall-item-like" id="wall-item-like-$item.id">$item.like</div>
|
||||
<div class="wall-item-dislike" id="wall-item-dislike-$item.id">$item.dislike</div>
|
||||
</div>
|
||||
{{ if $item.threaded }}{{ if $item.comment }}{{ if $item.thread_level!=1 }}
|
||||
<div class="wall-item-bottom">
|
||||
<div class="wall-item-links"></div>
|
||||
<div class="wall-item-comment-wrapper">
|
||||
$item.comment
|
||||
</div>
|
||||
</div>
|
||||
{{ endif }}{{ endif }}{{ endif }}
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
{{ for $item.children as $child }}
|
||||
{{ if $item.type == tag }}
|
||||
{{ inc wall_item_tag.tpl with $item=$child }}{{ endinc }}
|
||||
{{ else }}
|
||||
{{ inc $item.template with $item=$child }}{{ endinc }}
|
||||
{{ endif }}
|
||||
{{ endfor }}
|
||||
|
||||
{{ if $item.thread_level!=1 }}</div>{{ endif }}
|
||||
|
||||
|
||||
{{if $mode == display}}
|
||||
{{ else }}
|
||||
{{if $item.comment_lastcollapsed}}</div>{{endif}}
|
||||
{{ endif }}
|
||||
|
||||
{{if $item.threaded}}{{if $item.comment}}{{if $item.thread_level==1}}
|
||||
<div class="wall-item-comment-wrapper" >$item.comment</div>
|
||||
{{ endif }}{{ endif }}{{ endif }}
|
||||
|
||||
|
||||
{{ if $item.flatten }}
|
||||
<div class="wall-item-comment-wrapper" >$item.comment</div>
|
||||
{{ endif }}
|
||||
151
view/theme/vier/wallwall_thread.tpl
Normal file
151
view/theme/vier/wallwall_thread.tpl
Normal file
|
|
@ -0,0 +1,151 @@
|
|||
{{if $mode == display}}
|
||||
{{ else }}
|
||||
{{if $item.comment_firstcollapsed}}
|
||||
<div class="hide-comments-outer">
|
||||
<span id="hide-comments-total-$item.id"
|
||||
class="hide-comments-total">$item.num_comments</span>
|
||||
<span id="hide-comments-$item.id"
|
||||
class="hide-comments fakelink"
|
||||
onclick="showHideComments($item.id);">$item.hide_text</span>
|
||||
{{ if $item.thread_level==3 }} -
|
||||
<span id="hide-thread-$item-id"
|
||||
class="fakelink"
|
||||
onclick="showThread($item.id);">expand</span> /
|
||||
<span id="hide-thread-$item-id"
|
||||
class="fakelink"
|
||||
onclick="hideThread($item.id);">collapse</span> thread{{ endif }}
|
||||
</div>
|
||||
<div id="collapsed-comments-$item.id" class="collapsed-comments" style="display: none;">
|
||||
{{endif}}
|
||||
{{ endif }}
|
||||
|
||||
{{ if $item.thread_level!=1 }}<div class="children">{{ endif }}
|
||||
|
||||
<div class="wall-item-decor">
|
||||
<span class="icon s22 star $item.isstarred" id="starred-$item.id" title="$item.star.starred">$item.star.starred</span>
|
||||
{{ if $item.lock }}<span class="icon s22 lock fakelink" onclick="lockview(event,$item.id);" title="$item.lock">$item.lock</span>{{ endif }}
|
||||
<img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
|
||||
</div>
|
||||
|
||||
<div class="wall-item-container $item.indent" id="item-$item.id">
|
||||
<div class="wall-item-item">
|
||||
<div class="wall-item-info">
|
||||
<div class="contact-photo-wrapper mframe wwfrom"
|
||||
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||
onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
|
||||
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="contact-photo-link" id="wall-item-photo-link-$item.id">
|
||||
<img src="$item.thumb" class="contact-photo $item.sparkle" id="wall-item-photo-$item.id" alt="$item.name" />
|
||||
</a>
|
||||
<a href="#" rel="#wall-item-photo-menu-$item.id" class="contact-photo-menu-button icon s16 menu" id="wall-item-photo-menu-button-$item.id">menu</a>
|
||||
<ul class="contact-menu menu-popup" id="wall-item-photo-menu-$item.id">
|
||||
$item.item_photo_menu
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
<div class="contact-photo-wrapper mframe wwto" id="wall-item-ownerphoto-wrapper-$item.id" >
|
||||
<a href="$item.owner_url" target="redir" title="$item.olinktitle" class="contact-photo-link" id="wall-item-ownerphoto-link-$item.id">
|
||||
<img src="$item.owner_photo" class="contact-photo $item.osparkle" id="wall-item-ownerphoto-$item.id" alt="$item.owner_name" />
|
||||
</a>
|
||||
</div>
|
||||
<div class="wall-item-location">$item.location</div>
|
||||
</div>
|
||||
<div class="wall-item-content">
|
||||
{{ if $item.title }}<h2><a href="$item.plink.href" class="$item.sparkle">$item.title</a></h2>{{ endif }}
|
||||
$item.body
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-bottom">
|
||||
<div class="wall-item-links">
|
||||
</div>
|
||||
<div class="wall-item-tags">
|
||||
{{ for $item.tags as $tag }}
|
||||
<span class='tag'>$tag</span>
|
||||
{{ endfor }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-bottom">
|
||||
<div class="wall-item-links">
|
||||
{{ if $item.plink }}<a class="icon s16 link$item.sparkle" title="$item.plink.title" href="$item.plink.href">$item.plink.title</a>{{ endif }}
|
||||
</div>
|
||||
<div class="wall-item-actions">
|
||||
<div class="wall-item-actions-author">
|
||||
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle">$item.name</span></a> <span class="wall-item-ago">$item.ago</span>
|
||||
<br/>$item.to <a href="$item.owner_url" target="redir" title="$item.olinktitle" class="wall-item-name-link"><span class="wall-item-name$item.osparkle" id="wall-item-ownername-$item.id">$item.owner_name</span></a> $item.vwall
|
||||
|
||||
</div>
|
||||
|
||||
<div class="wall-item-actions-social">
|
||||
{{ if $item.star }}
|
||||
<a href="#" id="star-$item.id" onclick="dostar($item.id); return false;" class="$item.star.classdo" title="$item.star.do">$item.star.do</a>
|
||||
<a href="#" id="unstar-$item.id" onclick="dostar($item.id); return false;" class="$item.star.classundo" title="$item.star.undo">$item.star.undo</a>
|
||||
<a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="$item.star.classtagger" title="$item.star.tagger">$item.star.tagger</a>
|
||||
|
||||
{{ endif }}
|
||||
{{ if $item.filer }}
|
||||
<a href="#" id="filer-$item.id" onclick="itemFiler($item.id); return false;" class="filer-item filer-icon" title="$item.filer">$item.filer</a>
|
||||
{{ endif }}
|
||||
|
||||
{{ if $item.vote }}
|
||||
<a href="#" id="like-$item.id" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false">$item.vote.like.1</a>
|
||||
<a href="#" id="dislike-$item.id" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false">$item.vote.dislike.1</a>
|
||||
{{ endif }}
|
||||
|
||||
{{ if $item.vote.share }}
|
||||
<a href="#" id="share-$item.id" title="$item.vote.share.0" onclick="jotShare($item.id); return false">$item.vote.share.1</a>
|
||||
{{ endif }}
|
||||
</div>
|
||||
|
||||
<div class="wall-item-actions-tools">
|
||||
|
||||
{{ if $item.drop.dropping }}
|
||||
<input type="checkbox" title="$item.drop.select" name="itemselected[]" class="item-select" value="$item.id" />
|
||||
<a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon delete s16" title="$item.drop.delete">$item.drop.delete</a>
|
||||
{{ endif }}
|
||||
{{ if $item.edpost }}
|
||||
<a class="icon edit s16" href="$item.edpost.0" title="$item.edpost.1"></a>
|
||||
{{ endif }}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-bottom">
|
||||
<div class="wall-item-links"></div>
|
||||
<div class="wall-item-like" id="wall-item-like-$item.id">$item.like</div>
|
||||
<div class="wall-item-dislike" id="wall-item-dislike-$item.id">$item.dislike</div>
|
||||
</div>
|
||||
|
||||
{{ if $item.threaded }}{{ if $item.comment }}{{ if $item.indent==comment }}
|
||||
<div class="wall-item-bottom">
|
||||
<div class="wall-item-links"></div>
|
||||
<div class="wall-item-comment-wrapper">
|
||||
$item.comment
|
||||
</div>
|
||||
</div>
|
||||
{{ endif }}{{ endif }}{{ endif }}
|
||||
</div>
|
||||
|
||||
|
||||
{{ for $item.children as $child }}
|
||||
{{ if $item.type == tag }}
|
||||
{{ inc wall_item_tag.tpl with $item=$child }}{{ endinc }}
|
||||
{{ else }}
|
||||
{{ inc $item.template with $item=$child }}{{ endinc }}
|
||||
{{ endif }}
|
||||
{{ endfor }}
|
||||
|
||||
{{ if $item.thread_level!=1 }}</div>{{ endif }}
|
||||
|
||||
|
||||
{{if $mode == display}}
|
||||
{{ else }}
|
||||
{{if $item.comment_lastcollapsed}}</div>{{endif}}
|
||||
{{ endif }}
|
||||
|
||||
{{if $item.threaded}}{{if $item.comment}}{{if $item.thread_level==1}}
|
||||
<div class="wall-item-comment-wrapper" >$item.comment</div>
|
||||
{{ endif }}{{ endif }}{{ endif }}
|
||||
|
||||
|
||||
{{ if $item.flatten }}
|
||||
<div class="wall-item-comment-wrapper" >$item.comment</div>
|
||||
{{ endif }}
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
<a name="$item.id" ></a>
|
||||
<div class="wall-item-outside-wrapper$item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper$item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-outside-wrapper $item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info" id="wall-item-info-$item.id">
|
||||
<div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$item.id"
|
||||
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
|
||||
|
|
@ -75,5 +75,5 @@
|
|||
$item.comment
|
||||
</div>
|
||||
|
||||
<div class="wall-item-outside-wrapper-end$item.indent" ></div>
|
||||
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -81,13 +81,13 @@
|
|||
|
||||
{{ if $item.threaded }}
|
||||
{{ if $item.comment }}
|
||||
<div class="wall-item-comment-wrapper$item.indent" >
|
||||
<div class="wall-item-comment-wrapper $item.indent" >
|
||||
$item.comment
|
||||
</div>
|
||||
{{ endif }}
|
||||
{{ endif }}
|
||||
|
||||
<div class="wall-item-outside-wrapper-end$item.indent" ></div>
|
||||
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
|
||||
</div>
|
||||
{{ for $item.children as $item }}
|
||||
{{ inc $item.template }}{{ endinc }}
|
||||
|
|
@ -100,4 +100,3 @@
|
|||
{{ endif }}
|
||||
</div>
|
||||
{{if $item.comment_lastcollapsed}}</div>{{endif}}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<a name="$item.id" ></a>
|
||||
<div class="wall-item-outside-wrapper$item.indent$item.previewing wallwall" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper$item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-outside-wrapper $item.indent$item.previewing wallwall" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info wallwall" id="wall-item-info-$item.id">
|
||||
<div class="wall-item-photo-wrapper wwto" id="wall-item-ownerphoto-wrapper-$item.id" >
|
||||
<a href="$item.owner_url" target="redir" title="$item.olinktitle" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$item.id">
|
||||
|
|
@ -81,6 +81,6 @@
|
|||
$item.comment
|
||||
</div>
|
||||
|
||||
<div class="wall-item-outside-wrapper-end$item.indent" ></div>
|
||||
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -6,8 +6,8 @@
|
|||
{{endif}}
|
||||
<div id="tread-wrapper-$item.id" class="tread-wrapper $item.toplevel">
|
||||
<a name="$item.id" ></a>
|
||||
<div class="wall-item-outside-wrapper$item.indent$item.previewing wallwall" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper$item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-outside-wrapper $item.indent$item.previewing wallwall" id="wall-item-outside-wrapper-$item.id" >
|
||||
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
|
||||
<div class="wall-item-info wallwall" id="wall-item-info-$item.id">
|
||||
<div class="wall-item-photo-wrapper wwto" id="wall-item-ownerphoto-wrapper-$item.id" >
|
||||
<a href="$item.owner_url" target="redir" title="$item.olinktitle" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$item.id">
|
||||
|
|
@ -86,13 +86,13 @@
|
|||
|
||||
{{ if $item.threaded }}
|
||||
{{ if $item.comment }}
|
||||
<div class="wall-item-comment-wrapper$item.indent" >
|
||||
<div class="wall-item-comment-wrapper $item.indent" >
|
||||
$item.comment
|
||||
</div>
|
||||
{{ endif }}
|
||||
{{ endif }}
|
||||
|
||||
<div class="wall-item-outside-wrapper-end$item.indent" ></div>
|
||||
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
|
||||
</div>
|
||||
{{ for $item.children as $item }}
|
||||
{{ inc $item.template }}{{ endinc }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue