Merge branch 'master', remote-tracking branch 'remotes/upstream/master'
* remotes/upstream/master: provide "xxx joined yyy" notifications adding META viewport tag for better look on tablets Update Esperanto to 100% DE update to the strings activitystreams schema constants for "join group" missed a db field typo in profile_selectors, fix remote tagging not all profile selector choices have unique or direct translations log db error strings in all cases admin page to manage failed updates improved db error logging close one menu (like the notifications menu) when another one is opened (like it is done when clicking somewhere else) (thx to ^mw) * master:
This commit is contained in:
commit
9b7dac6ce1
18 changed files with 1846 additions and 1917 deletions
7
boot.php
7
boot.php
|
|
@ -9,7 +9,7 @@ require_once('include/nav.php');
|
|||
require_once('include/cache.php');
|
||||
|
||||
define ( 'FRIENDICA_PLATFORM', 'Friendica');
|
||||
define ( 'FRIENDICA_VERSION', '2.3.1326' );
|
||||
define ( 'FRIENDICA_VERSION', '2.3.1327' );
|
||||
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
|
||||
define ( 'DB_UPDATE_VERSION', 1140 );
|
||||
|
||||
|
|
@ -201,6 +201,8 @@ define ( 'ACTIVITY_REQ_FRIEND', NAMESPACE_ACTIVITY_SCHEMA . 'request-friend' );
|
|||
define ( 'ACTIVITY_UNFRIEND', NAMESPACE_ACTIVITY_SCHEMA . 'remove-friend' );
|
||||
define ( 'ACTIVITY_FOLLOW', NAMESPACE_ACTIVITY_SCHEMA . 'follow' );
|
||||
define ( 'ACTIVITY_UNFOLLOW', NAMESPACE_ACTIVITY_SCHEMA . 'stop-following' );
|
||||
define ( 'ACTIVITY_JOIN', NAMESPACE_ACTIVITY_SCHEMA . 'join' );
|
||||
|
||||
define ( 'ACTIVITY_POST', NAMESPACE_ACTIVITY_SCHEMA . 'post' );
|
||||
define ( 'ACTIVITY_UPDATE', NAMESPACE_ACTIVITY_SCHEMA . 'update' );
|
||||
define ( 'ACTIVITY_TAG', NAMESPACE_ACTIVITY_SCHEMA . 'tag' );
|
||||
|
|
@ -213,6 +215,7 @@ define ( 'ACTIVITY_OBJ_PHOTO', NAMESPACE_ACTIVITY_SCHEMA . 'photo' );
|
|||
define ( 'ACTIVITY_OBJ_P_PHOTO', NAMESPACE_ACTIVITY_SCHEMA . 'profile-photo' );
|
||||
define ( 'ACTIVITY_OBJ_ALBUM', NAMESPACE_ACTIVITY_SCHEMA . 'photo-album' );
|
||||
define ( 'ACTIVITY_OBJ_EVENT', NAMESPACE_ACTIVITY_SCHEMA . 'event' );
|
||||
define ( 'ACTIVITY_OBJ_GROUP', NAMESPACE_ACTIVITY_SCHEMA . 'group' );
|
||||
define ( 'ACTIVITY_OBJ_TAGTERM', NAMESPACE_DFRN . '/tagterm' );
|
||||
define ( 'ACTIVITY_OBJ_PROFILE', NAMESPACE_DFRN . '/profile' );
|
||||
|
||||
|
|
@ -667,7 +670,7 @@ if(! function_exists('check_config')) {
|
|||
// call the specific update
|
||||
|
||||
$func = 'update_' . $x;
|
||||
$retval = $func($a);
|
||||
$retval = $func();
|
||||
if($retval) {
|
||||
//send the administrator an e-mail
|
||||
$email_tpl = get_intltext_template("update_fail_eml.tpl");
|
||||
|
|
|
|||
|
|
@ -75,22 +75,28 @@ class dba {
|
|||
if((! $this->db) || (! $this->connected))
|
||||
return false;
|
||||
|
||||
$this->error = '';
|
||||
|
||||
if($this->mysqli)
|
||||
$result = @$this->db->query($sql);
|
||||
else
|
||||
$result = @mysql_query($sql,$this->db);
|
||||
|
||||
if($this->mysqli) {
|
||||
if($this->db->errno)
|
||||
$this->error = $this->db->error;
|
||||
}
|
||||
elseif(mysql_errno($this->db))
|
||||
$this->error = mysql_error($this->db);
|
||||
|
||||
if(strlen($this->error)) {
|
||||
logger('dba: ' . $this->error);
|
||||
}
|
||||
|
||||
if($this->debug) {
|
||||
|
||||
$mesg = '';
|
||||
|
||||
if($this->mysqli) {
|
||||
if($this->db->errno)
|
||||
logger('dba: ' . $this->db->error);
|
||||
}
|
||||
elseif(mysql_errno($this->db))
|
||||
logger('dba: ' . mysql_error($this->db));
|
||||
|
||||
if($result === false)
|
||||
$mesg = 'false';
|
||||
elseif($result === true)
|
||||
|
|
@ -102,7 +108,9 @@ class dba {
|
|||
$mesg = mysql_num_rows($result) . ' results' . EOL;
|
||||
}
|
||||
|
||||
$str = 'SQL = ' . printable($sql) . EOL . 'SQL returned ' . $mesg . EOL;
|
||||
$str = 'SQL = ' . printable($sql) . EOL . 'SQL returned ' . $mesg
|
||||
. (($this->error) ? ' error: ' . $this->error : '')
|
||||
. EOL;
|
||||
|
||||
logger('dba: ' . $str );
|
||||
}
|
||||
|
|
@ -114,9 +122,9 @@ class dba {
|
|||
*/
|
||||
|
||||
if($result === false) {
|
||||
logger('dba: ' . printable($sql) . ' returned false.');
|
||||
logger('dba: ' . printable($sql) . ' returned false.' . "\n" . $this->error);
|
||||
if(file_exists('dbfail.out'))
|
||||
file_put_contents('dbfail.out', datetime_convert() . "\n" . printable($sql) . ' returned false' . "\n", FILE_APPEND);
|
||||
file_put_contents('dbfail.out', datetime_convert() . "\n" . printable($sql) . ' returned false' . "\n" . $this->error . "\n", FILE_APPEND);
|
||||
}
|
||||
|
||||
if(($result === true) || ($result === false))
|
||||
|
|
|
|||
|
|
@ -2227,10 +2227,10 @@ function local_delivery($importer,$data) {
|
|||
logger('local_delivery: received remote comment');
|
||||
$is_like = false;
|
||||
// remote reply to our post. Import and then notify everybody else.
|
||||
|
||||
$datarray = get_atom_elements($feed,$item);
|
||||
|
||||
|
||||
$r = q("SELECT `id`, `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
|
||||
$r = q("SELECT `id`, `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
|
||||
dbesc($item_id),
|
||||
intval($importer['importer_uid'])
|
||||
);
|
||||
|
|
@ -2266,14 +2266,22 @@ function local_delivery($importer,$data) {
|
|||
// return 0;
|
||||
// }
|
||||
|
||||
// our user with $importer['importer_uid'] is the owner
|
||||
|
||||
$own = q("select name,url,thumb from contact where uid = %d and self = 1 limit 1",
|
||||
intval($importer['importer_uid'])
|
||||
);
|
||||
|
||||
|
||||
$datarray['type'] = 'remote-comment';
|
||||
$datarray['wall'] = 1;
|
||||
$datarray['parent-uri'] = $parent_uri;
|
||||
$datarray['uid'] = $importer['importer_uid'];
|
||||
$datarray['owner-name'] = $r[0]['name'];
|
||||
$datarray['owner-link'] = $r[0]['url'];
|
||||
$datarray['owner-avatar'] = $r[0]['thumb'];
|
||||
$datarray['owner-name'] = $own[0]['name'];
|
||||
$datarray['owner-link'] = $own[0]['url'];
|
||||
$datarray['owner-avatar'] = $own[0]['thumb'];
|
||||
$datarray['contact-id'] = $importer['id'];
|
||||
|
||||
if(($datarray['verb'] === ACTIVITY_LIKE) || ($datarray['verb'] === ACTIVITY_DISLIKE)) {
|
||||
$is_like = true;
|
||||
$datarray['type'] = 'activity';
|
||||
|
|
@ -2290,26 +2298,34 @@ function local_delivery($importer,$data) {
|
|||
}
|
||||
|
||||
if(($datarray['verb'] === ACTIVITY_TAG) && ($datarray['object-type'] === ACTIVITY_OBJ_TAGTERM)) {
|
||||
|
||||
|
||||
|
||||
$xo = parse_xml_string($datarray['object'],false);
|
||||
$xt = parse_xml_string($datarray['target'],false);
|
||||
|
||||
if(($xt->type == ACTIVITY_OBJ_NOTE) && ($xt->id == $r[0]['uri'])) {
|
||||
if(($xt->type == ACTIVITY_OBJ_NOTE) && ($xt->id)) {
|
||||
|
||||
// fetch the parent item
|
||||
|
||||
$tagp = q("select * from item where uri = '%s' and uid = %d limit 1",
|
||||
dbesc($xt->id),
|
||||
intval($importer['importer_uid'])
|
||||
);
|
||||
if(! count($tagp))
|
||||
continue;
|
||||
|
||||
// extract tag, if not duplicate, and this user allows tags, add to parent item
|
||||
|
||||
if($xo->id && $xo->content) {
|
||||
$newtag = '#[url=' . $xo->id . ']'. $xo->content . '[/url]';
|
||||
|
||||
if(! (stristr($r[0]['tag'],$newtag))) {
|
||||
if(! (stristr($tagp[0]['tag'],$newtag))) {
|
||||
$i = q("SELECT `blocktags` FROM `user` where `uid` = %d LIMIT 1",
|
||||
intval($importer['importer_uid'])
|
||||
);
|
||||
if(count($i) && ! ($i[0]['blocktags'])) {
|
||||
q("UPDATE item SET tag = '%s' WHERE id = %d LIMIT 1",
|
||||
dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . $newtag),
|
||||
intval($r[0]['id'])
|
||||
if(count($i) && ! intval($i[0]['blocktags'])) {
|
||||
q("UPDATE item SET tag = '%s', `edited` = '%s' WHERE id = %d LIMIT 1",
|
||||
dbesc($tagp[0]['tag'] . (strlen($tagp[0]['tag']) ? ',' : '') . $newtag),
|
||||
intval($tagp[0]['id']),
|
||||
dbesc(datetime_convert())
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,10 @@ function gender_selector($current="",$suffix="") {
|
|||
|
||||
$o .= "<select name=\"gender$suffix\" id=\"gender-select$suffix\" size=\"1\" >";
|
||||
foreach($select as $selection) {
|
||||
$selected = (($selection == $current) ? ' selected="selected" ' : '');
|
||||
$o .= "<option value=\"$selection\" $selected >$selection</option>";
|
||||
if($selection !== 'NOTRANSLATION') {
|
||||
$selected = (($selection == $current) ? ' selected="selected" ' : '');
|
||||
$o .= "<option value=\"$selection\" $selected >$selection</option>";
|
||||
}
|
||||
}
|
||||
$o .= '</select>';
|
||||
return $o;
|
||||
|
|
@ -20,8 +22,10 @@ function sexpref_selector($current="",$suffix="") {
|
|||
|
||||
$o .= "<select name=\"sexual$suffix\" id=\"sexual-select$suffix\" size=\"1\" >";
|
||||
foreach($select as $selection) {
|
||||
$selected = (($selection == $current) ? ' selected="selected" ' : '');
|
||||
$o .= "<option value=\"$selection\" $selected >$selection</option>";
|
||||
if($selection !== 'NOTRANSLATION') {
|
||||
$selected = (($selection == $current) ? ' selected="selected" ' : '');
|
||||
$o .= "<option value=\"$selection\" $selected >$selection</option>";
|
||||
}
|
||||
}
|
||||
$o .= '</select>';
|
||||
return $o;
|
||||
|
|
@ -34,8 +38,10 @@ function marital_selector($current="",$suffix="") {
|
|||
|
||||
$o .= "<select name=\"marital\" id=\"marital-select\" size=\"1\" >";
|
||||
foreach($select as $selection) {
|
||||
$selected = (($selection == $current) ? ' selected="selected" ' : '');
|
||||
$o .= "<option value=\"$selection\" $selected >$selection</option>";
|
||||
if($selection !== 'NOTRANSLATION') {
|
||||
$selected = (($selection == $current) ? ' selected="selected" ' : '');
|
||||
$o .= "<option value=\"$selection\" $selected >$selection</option>";
|
||||
}
|
||||
}
|
||||
$o .= '</select>';
|
||||
return $o;
|
||||
|
|
|
|||
16
js/main.js
16
js/main.js
|
|
@ -73,7 +73,16 @@
|
|||
setupFieldRichtext();
|
||||
|
||||
/* popup menus */
|
||||
function close_last_popup_menu() {
|
||||
if(last_popup_menu) {
|
||||
last_popup_menu.hide();
|
||||
last_popup_button.removeClass("selected");
|
||||
last_popup_menu = null;
|
||||
last_popup_button = null;
|
||||
}
|
||||
}
|
||||
$('a[rel^=#]').click(function(e){
|
||||
close_last_popup_menu();
|
||||
menu = $( $(this).attr('rel') );
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
|
|
@ -90,12 +99,7 @@
|
|||
return false;
|
||||
});
|
||||
$('html').click(function() {
|
||||
if(last_popup_menu) {
|
||||
last_popup_menu.hide();
|
||||
last_popup_button.removeClass("selected");
|
||||
last_popup_menu = null;
|
||||
last_popup_button = null;
|
||||
}
|
||||
close_last_popup_menu();
|
||||
});
|
||||
|
||||
// fancyboxes
|
||||
|
|
|
|||
|
|
@ -61,6 +61,9 @@ function admin_post(&$a){
|
|||
case 'logs':
|
||||
admin_page_logs_post($a);
|
||||
break;
|
||||
case 'dbsync':
|
||||
admin_page_dbsync_post($a);
|
||||
break;
|
||||
case 'update':
|
||||
admin_page_remoteupdate_post($a);
|
||||
break;
|
||||
|
|
@ -94,7 +97,8 @@ function admin_content(&$a) {
|
|||
'users' => Array($a->get_baseurl(true)."/admin/users/", t("Users") , "users"),
|
||||
'plugins'=> Array($a->get_baseurl(true)."/admin/plugins/", t("Plugins") , "plugins"),
|
||||
'themes' => Array($a->get_baseurl(true)."/admin/themes/", t("Themes") , "themes"),
|
||||
'update' => Array($a->get_baseurl(true)."/admin/update/", t("Update") , "update")
|
||||
'dbsync' => Array($a->get_baseurl(true)."/admin/dbsync/", t('DB updates'), "dbsync"),
|
||||
'update' => Array($a->get_baseurl(true)."/admin/update/", t("Software Update") , "update")
|
||||
);
|
||||
|
||||
/* get plugins admin page */
|
||||
|
|
@ -142,6 +146,9 @@ function admin_content(&$a) {
|
|||
case 'logs':
|
||||
$o = admin_page_logs($a);
|
||||
break;
|
||||
case 'dbsync':
|
||||
$o = admin_page_dbsync($a);
|
||||
break;
|
||||
case 'update':
|
||||
$o = admin_page_remoteupdate($a);
|
||||
break;
|
||||
|
|
@ -435,6 +442,62 @@ function admin_page_site(&$a) {
|
|||
}
|
||||
|
||||
|
||||
function admin_page_dbsync(&$a) {
|
||||
|
||||
$o = '';
|
||||
|
||||
if($a->argc > 3 && intval($a->argv[3]) && $a->argv[2] === 'mark') {
|
||||
set_config('database', 'update_' . intval($a->argv[3]), 'success');
|
||||
info( t('Update has been marked successful') . EOL);
|
||||
goaway($a->get_baseurl(true) . '/admin/dbsync');
|
||||
}
|
||||
|
||||
if($a->argc > 2 && intval($a->argv[2])) {
|
||||
require_once('update.php');
|
||||
$func = 'update_' . intval($a->argv[2]);
|
||||
if(function_exists($func)) {
|
||||
$retval = $func();
|
||||
if($retval === UPDATE_FAILED) {
|
||||
$o .= sprintf( t('Executing %s failed. Check system logs.'), $func);
|
||||
}
|
||||
elseif($retval === UPDATE_SUCCESS) {
|
||||
$o .= sprintf( t('Update %s was successfully applied.', $func));
|
||||
set_config('database',$func, 'success');
|
||||
}
|
||||
else
|
||||
$o .= sprintf( t('Update %s did not return a status. Unknown if it succeeded.'), $func);
|
||||
}
|
||||
else
|
||||
$o .= sprintf( t('Update function %s could not be found.'), $func);
|
||||
return $o;
|
||||
}
|
||||
|
||||
$failed = array();
|
||||
$r = q("select * from config where `cat` = 'database' ");
|
||||
if(count($r)) {
|
||||
foreach($r as $rr) {
|
||||
$upd = intval(substr($rr['k'],7));
|
||||
if($upd < 1139 || $rr['v'] === 'success')
|
||||
continue;
|
||||
$failed[] = $upd;
|
||||
}
|
||||
}
|
||||
if(! count($failed))
|
||||
return '<h3>' . t('No failed updates.') . '</h3>';
|
||||
|
||||
$o = replace_macros(get_markup_template('failed_updates.tpl'),array(
|
||||
'$base' => $a->get_baseurl(true),
|
||||
'$banner' => t('Failed Updates'),
|
||||
'$desc' => t('This does not include updates prior to 1139, which did not return a status.'),
|
||||
'$mark' => t('Mark success (if update was manually applied)'),
|
||||
'$apply' => t('Attempt to execute this update step automatically'),
|
||||
'$failed' => $failed
|
||||
));
|
||||
|
||||
return $o;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Users admin page
|
||||
*
|
||||
|
|
@ -979,7 +1042,6 @@ readable.");
|
|||
$size = 5000000;
|
||||
$seek = fseek($fp,0-$size,SEEK_END);
|
||||
if($seek === 0) {
|
||||
fgets($fp); // throw away the first partial line
|
||||
$data = escape_tags(fread($fp,$size));
|
||||
while(! feof($fp))
|
||||
$data .= escape_tags(fread($fp,4096));
|
||||
|
|
|
|||
|
|
@ -434,9 +434,14 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
|
|||
else
|
||||
$contact = null;
|
||||
|
||||
if(isset($new_relation) && $new_relation == CONTACT_IS_FRIEND) {
|
||||
|
||||
if(($contact) && ($contact['network'] === NETWORK_DIASPORA)) {
|
||||
$forum_type = false;
|
||||
if($user['page-flags'] == PAGE_SOAPBOX || $user['page-flags'] == PAGE_COMMUNITY)
|
||||
$forum_type = true;
|
||||
|
||||
if((isset($new_relation) && $new_relation == CONTACT_IS_FRIEND) || ($forum_type)) {
|
||||
|
||||
if(($contact) && ($contact['network'] === NETWORK_DIASPORA) && (! $forum_type)) {
|
||||
require_once('include/diaspora.php');
|
||||
$ret = diaspora_share($user[0],$r[0]);
|
||||
logger('mod_follow: diaspora_share returns: ' . $ret);
|
||||
|
|
@ -468,19 +473,37 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
|
|||
$arr['author-name'] = $arr['owner-name'] = $self[0]['name'];
|
||||
$arr['author-link'] = $arr['owner-link'] = $self[0]['url'];
|
||||
$arr['author-avatar'] = $arr['owner-avatar'] = $self[0]['thumb'];
|
||||
$arr['verb'] = ACTIVITY_FRIEND;
|
||||
$arr['object-type'] = ACTIVITY_OBJ_PERSON;
|
||||
|
||||
|
||||
$A = '[url=' . $self[0]['url'] . ']' . $self[0]['name'] . '[/url]';
|
||||
$APhoto = '[url=' . $self[0]['url'] . ']' . '[img]' . $self[0]['thumb'] . '[/img][/url]';
|
||||
|
||||
$B = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]';
|
||||
$BPhoto = '[url=' . $contact['url'] . ']' . '[img]' . $contact['thumb'] . '[/img][/url]';
|
||||
$arr['body'] = sprintf( t('%1$s is now friends with %2$s'), $A, $B)."\n\n\n".$BPhoto;
|
||||
|
||||
$arr['object'] = '<object><type>' . ACTIVITY_OBJ_PERSON . '</type><title>' . $contact['name'] . '</title>'
|
||||
. '<id>' . $contact['url'] . '/' . $contact['name'] . '</id>';
|
||||
$arr['object'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . $contact['url'] . '" />' . "\n");
|
||||
$arr['object'] .= xmlify('<link rel="photo" type="image/jpeg" href="' . $contact['thumb'] . '" />' . "\n");
|
||||
$arr['object'] .= '</link></object>' . "\n";
|
||||
if($forum_type) {
|
||||
$arr['verb'] = ACTIVITY_JOIN;
|
||||
$arr['object-type'] = ACTIVITY_OBJ_GROUP;
|
||||
$arr['body'] = sprintf( t('%1$s joined %2$s'), $B, $A)."\n\n\n".$APhoto;
|
||||
$arr['object'] = '<object><type>' . ACTIVITY_OBJ_GROUP . '</type><title>' . $self[0]['name'] . '</title>'
|
||||
. '<id>' . $self[0]['url'] . '/' . $self[0]['name'] . '</id>';
|
||||
$arr['object'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . $self[0]['url'] . '" />' . "\n");
|
||||
$arr['object'] .= xmlify('<link rel="photo" type="image/jpeg" href="' . $self[0]['thumb'] . '" />' . "\n");
|
||||
$arr['object'] .= '</link></object>' . "\n";
|
||||
|
||||
}
|
||||
else {
|
||||
$arr['verb'] = ACTIVITY_FRIEND;
|
||||
$arr['object-type'] = ACTIVITY_OBJ_PERSON;
|
||||
$arr['body'] = sprintf( t('%1$s is now friends with %2$s'), $A, $B)."\n\n\n".$BPhoto;
|
||||
|
||||
$arr['object'] = '<object><type>' . ACTIVITY_OBJ_PERSON . '</type><title>' . $contact['name'] . '</title>'
|
||||
. '<id>' . $contact['url'] . '/' . $contact['name'] . '</id>';
|
||||
$arr['object'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . $contact['url'] . '" />' . "\n");
|
||||
$arr['object'] .= xmlify('<link rel="photo" type="image/jpeg" href="' . $contact['thumb'] . '" />' . "\n");
|
||||
$arr['object'] .= '</link></object>' . "\n";
|
||||
}
|
||||
|
||||
|
||||
$arr['last-child'] = 1;
|
||||
|
||||
$arr['allow_cid'] = $user[0]['allow_cid'];
|
||||
|
|
|
|||
|
|
@ -66,14 +66,14 @@ function tagger_content(&$a) {
|
|||
}
|
||||
|
||||
$uri = item_new_uri($a->get_hostname(),$owner_uid);
|
||||
|
||||
$xterm = xmlify($term);
|
||||
$post_type = (($item['resource-id']) ? t('photo') : t('status'));
|
||||
$targettype = (($item['resource-id']) ? ACTIVITY_OBJ_PHOTO : ACTIVITY_OBJ_NOTE );
|
||||
|
||||
$link = xmlify('<link rel="alternate" type="text/html" href="'
|
||||
. $a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id'] . '" />' . "\n") ;
|
||||
|
||||
$body = $item['body'];
|
||||
$body = xmlify($item['body']);
|
||||
|
||||
$target = <<< EOT
|
||||
<target>
|
||||
|
|
@ -95,8 +95,8 @@ EOT;
|
|||
<local>1</local>
|
||||
<id>$tagid</id>
|
||||
<link>$tagid</link>
|
||||
<title>$term</title>
|
||||
<content>$term</content>
|
||||
<title>$xterm</title>
|
||||
<content>$xterm</content>
|
||||
</object>
|
||||
EOT;
|
||||
|
||||
|
|
|
|||
253
util/messages.po
253
util/messages.po
|
|
@ -6,9 +6,9 @@
|
|||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 2.3.1326\n"
|
||||
"Project-Id-Version: 2.3.1327\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-04-28 10:00-0700\n"
|
||||
"POT-Creation-Date: 2012-04-29 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"
|
||||
|
|
@ -52,7 +52,7 @@ msgstr ""
|
|||
#: ../../mod/message.php:90 ../../mod/allfriends.php:9
|
||||
#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:53
|
||||
#: ../../mod/follow.php:8 ../../mod/common.php:9 ../../mod/display.php:138
|
||||
#: ../../mod/profiles.php:7 ../../mod/profiles.php:329
|
||||
#: ../../mod/profiles.php:7 ../../mod/profiles.php:365
|
||||
#: ../../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:484 ../../include/items.php:3171
|
||||
|
|
@ -132,7 +132,7 @@ msgstr ""
|
|||
#: ../../mod/settings.php:744 ../../mod/settings.php:935
|
||||
#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:393
|
||||
#: ../../mod/admin.php:572 ../../mod/admin.php:708 ../../mod/admin.php:907
|
||||
#: ../../mod/admin.php:995 ../../mod/profiles.php:498 ../../mod/invite.php:119
|
||||
#: ../../mod/admin.php:995 ../../mod/profiles.php:534 ../../mod/invite.php:119
|
||||
#: ../../addon/facebook/facebook.php:574 ../../addon/yourls/yourls.php:76
|
||||
#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:57
|
||||
#: ../../addon/planets/planets.php:158
|
||||
|
|
@ -220,7 +220,7 @@ msgid "link to source"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/events.php:296 ../../view/theme/diabook/theme.php:255
|
||||
#: ../../include/nav.php:52 ../../boot.php:1481
|
||||
#: ../../include/nav.php:52 ../../boot.php:1487
|
||||
msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -270,7 +270,7 @@ msgid "Description:"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/events.php:395 ../../include/event.php:37
|
||||
#: ../../include/bb2diaspora.php:260 ../../boot.php:1083
|
||||
#: ../../include/bb2diaspora.php:260 ../../boot.php:1089
|
||||
msgid "Location:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -330,7 +330,7 @@ msgstr ""
|
|||
#: ../../mod/settings.php:884 ../../mod/settings.php:890
|
||||
#: ../../mod/settings.php:926 ../../mod/settings.php:927
|
||||
#: ../../mod/settings.php:928 ../../mod/settings.php:929
|
||||
#: ../../mod/register.php:532 ../../mod/profiles.php:475
|
||||
#: ../../mod/register.php:532 ../../mod/profiles.php:511
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -341,7 +341,7 @@ msgstr ""
|
|||
#: ../../mod/settings.php:884 ../../mod/settings.php:890
|
||||
#: ../../mod/settings.php:926 ../../mod/settings.php:927
|
||||
#: ../../mod/settings.php:928 ../../mod/settings.php:929
|
||||
#: ../../mod/register.php:533 ../../mod/profiles.php:476
|
||||
#: ../../mod/register.php:533 ../../mod/profiles.php:512
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -545,7 +545,7 @@ msgstr ""
|
|||
|
||||
#: ../../mod/photos.php:1232 ../../mod/photos.php:1272
|
||||
#: ../../mod/photos.php:1303 ../../include/conversation.php:554
|
||||
#: ../../boot.php:495
|
||||
#: ../../boot.php:503
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1166,7 +1166,7 @@ msgid "is interested in:"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/match.php:58 ../../mod/suggest.php:59
|
||||
#: ../../include/contact_widgets.php:9 ../../boot.php:1027
|
||||
#: ../../include/contact_widgets.php:9 ../../boot.php:1033
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1648,6 +1648,7 @@ msgstr ""
|
|||
#: ../../addon/facebook/facebook.php:650
|
||||
#: ../../addon/facebook/facebook.php:1139
|
||||
#: ../../addon/testdrive/testdrive.php:58 ../../include/items.php:2700
|
||||
#: ../../boot.php:683
|
||||
msgid "Administrator"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1657,7 +1658,7 @@ msgid ""
|
|||
"Password reset failed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/lostpass.php:83 ../../boot.php:809
|
||||
#: ../../mod/lostpass.php:83 ../../boot.php:815
|
||||
msgid "Password Reset"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2279,7 +2280,7 @@ msgstr ""
|
|||
msgid "Invalid contact."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/notes.php:44 ../../boot.php:1486
|
||||
#: ../../mod/notes.php:44 ../../boot.php:1492
|
||||
msgid "Personal Notes"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2530,7 +2531,7 @@ msgstr ""
|
|||
|
||||
#: ../../mod/profperm.php:103 ../../view/theme/diabook/theme.php:252
|
||||
#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:74
|
||||
#: ../../include/nav.php:50 ../../boot.php:1468
|
||||
#: ../../include/nav.php:50 ../../boot.php:1474
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2702,7 +2703,7 @@ msgstr ""
|
|||
msgid "Choose a nickname: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:567 ../../include/nav.php:81 ../../boot.php:775
|
||||
#: ../../mod/register.php:567 ../../include/nav.php:81 ../../boot.php:781
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2745,7 +2746,7 @@ msgid "Access denied."
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/fbrowser.php:23 ../../view/theme/diabook/theme.php:254
|
||||
#: ../../include/nav.php:51 ../../boot.php:1473
|
||||
#: ../../include/nav.php:51 ../../boot.php:1479
|
||||
msgid "Photos"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3451,7 +3452,7 @@ msgstr ""
|
|||
msgid "FTP Password"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:21 ../../boot.php:940
|
||||
#: ../../mod/profile.php:21 ../../boot.php:946
|
||||
msgid "Requested profile is not available."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3595,8 +3596,8 @@ msgstr ""
|
|||
msgid "Search This Site"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:21 ../../mod/profiles.php:339
|
||||
#: ../../mod/profiles.php:453 ../../mod/dfrn_confirm.php:62
|
||||
#: ../../mod/profiles.php:21 ../../mod/profiles.php:375
|
||||
#: ../../mod/profiles.php:489 ../../mod/dfrn_confirm.php:62
|
||||
msgid "Profile not found."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3604,259 +3605,273 @@ msgstr ""
|
|||
msgid "Profile Name is required."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:143
|
||||
#: ../../mod/profiles.php:145
|
||||
msgid "Marital Status"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:144
|
||||
#: ../../mod/profiles.php:149
|
||||
msgid "Romantic Partner"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:145
|
||||
#: ../../mod/profiles.php:153
|
||||
msgid "Work/Employment"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:146
|
||||
#: ../../mod/profiles.php:156
|
||||
msgid "Religion"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:147
|
||||
#: ../../mod/profiles.php:160
|
||||
msgid "Political Views"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:148
|
||||
#: ../../mod/profiles.php:164
|
||||
msgid "Gender"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:149
|
||||
#: ../../mod/profiles.php:168
|
||||
msgid "Sexual Preference"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:150
|
||||
#: ../../mod/profiles.php:172
|
||||
msgid "Homepage"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:151
|
||||
#: ../../mod/profiles.php:176
|
||||
msgid "Interests"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:154
|
||||
#: ../../mod/profiles.php:181
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:225
|
||||
#: ../../mod/profiles.php:253
|
||||
msgid "Profile updated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:300
|
||||
#: ../../mod/profiles.php:320
|
||||
msgid " and "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:328
|
||||
msgid "public profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:302
|
||||
#: ../../mod/profiles.php:331
|
||||
#, php-format
|
||||
msgid "%1$s changed %2$s to %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:332
|
||||
#, php-format
|
||||
msgid " - Visit %1$s's %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:335
|
||||
#, php-format
|
||||
msgid "%1$s has an updated %2$s, changing %3$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:358
|
||||
#: ../../mod/profiles.php:394
|
||||
msgid "Profile deleted."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:376 ../../mod/profiles.php:410
|
||||
#: ../../mod/profiles.php:412 ../../mod/profiles.php:446
|
||||
msgid "Profile-"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:395 ../../mod/profiles.php:437
|
||||
#: ../../mod/profiles.php:431 ../../mod/profiles.php:473
|
||||
msgid "New profile created."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:416
|
||||
#: ../../mod/profiles.php:452
|
||||
msgid "Profile unavailable to clone."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:474
|
||||
#: ../../mod/profiles.php:510
|
||||
msgid "Hide your contact/friend list from viewers of this profile?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:497
|
||||
#: ../../mod/profiles.php:533
|
||||
msgid "Edit Profile Details"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:499
|
||||
#: ../../mod/profiles.php:535
|
||||
msgid "View this profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:500
|
||||
#: ../../mod/profiles.php:536
|
||||
msgid "Create a new profile using these settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:501
|
||||
#: ../../mod/profiles.php:537
|
||||
msgid "Clone this profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:502
|
||||
#: ../../mod/profiles.php:538
|
||||
msgid "Delete this profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:503
|
||||
#: ../../mod/profiles.php:539
|
||||
msgid "Profile Name:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:504
|
||||
#: ../../mod/profiles.php:540
|
||||
msgid "Your Full Name:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:505
|
||||
#: ../../mod/profiles.php:541
|
||||
msgid "Title/Description:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:506
|
||||
#: ../../mod/profiles.php:542
|
||||
msgid "Your Gender:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:507
|
||||
#: ../../mod/profiles.php:543
|
||||
#, php-format
|
||||
msgid "Birthday (%s):"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:508
|
||||
#: ../../mod/profiles.php:544
|
||||
msgid "Street Address:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:509
|
||||
#: ../../mod/profiles.php:545
|
||||
msgid "Locality/City:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:510
|
||||
#: ../../mod/profiles.php:546
|
||||
msgid "Postal/Zip Code:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:511
|
||||
#: ../../mod/profiles.php:547
|
||||
msgid "Country:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:512
|
||||
#: ../../mod/profiles.php:548
|
||||
msgid "Region/State:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:513
|
||||
#: ../../mod/profiles.php:549
|
||||
msgid "<span class=\"heart\">♥</span> Marital Status:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:514
|
||||
#: ../../mod/profiles.php:550
|
||||
msgid "Who: (if applicable)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:515
|
||||
#: ../../mod/profiles.php:551
|
||||
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:516 ../../include/profile_advanced.php:43
|
||||
#: ../../mod/profiles.php:552 ../../include/profile_advanced.php:43
|
||||
msgid "Sexual Preference:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:517
|
||||
#: ../../mod/profiles.php:553
|
||||
msgid "Homepage URL:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:518 ../../include/profile_advanced.php:49
|
||||
#: ../../mod/profiles.php:554 ../../include/profile_advanced.php:49
|
||||
msgid "Political Views:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:519
|
||||
#: ../../mod/profiles.php:555
|
||||
msgid "Religious Views:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:520
|
||||
#: ../../mod/profiles.php:556
|
||||
msgid "Public Keywords:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:521
|
||||
#: ../../mod/profiles.php:557
|
||||
msgid "Private Keywords:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:522
|
||||
#: ../../mod/profiles.php:558
|
||||
msgid "Example: fishing photography software"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:523
|
||||
#: ../../mod/profiles.php:559
|
||||
msgid "(Used for suggesting potential friends, can be seen by others)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:524
|
||||
#: ../../mod/profiles.php:560
|
||||
msgid "(Used for searching profiles, never shown to others)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:525
|
||||
#: ../../mod/profiles.php:561
|
||||
msgid "Tell us about yourself..."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:526
|
||||
#: ../../mod/profiles.php:562
|
||||
msgid "Hobbies/Interests"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:527
|
||||
#: ../../mod/profiles.php:563
|
||||
msgid "Contact information and Social Networks"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:528
|
||||
#: ../../mod/profiles.php:564
|
||||
msgid "Musical interests"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:529
|
||||
#: ../../mod/profiles.php:565
|
||||
msgid "Books, literature"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:530
|
||||
#: ../../mod/profiles.php:566
|
||||
msgid "Television"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:531
|
||||
#: ../../mod/profiles.php:567
|
||||
msgid "Film/dance/culture/entertainment"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:532
|
||||
#: ../../mod/profiles.php:568
|
||||
msgid "Love/romance"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:533
|
||||
#: ../../mod/profiles.php:569
|
||||
msgid "Work/employment"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:534
|
||||
#: ../../mod/profiles.php:570
|
||||
msgid "School/education"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:539
|
||||
#: ../../mod/profiles.php:575
|
||||
msgid ""
|
||||
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
|
||||
"be visible to anybody using the internet."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:549 ../../mod/directory.php:111
|
||||
#: ../../mod/profiles.php:585 ../../mod/directory.php:111
|
||||
msgid "Age: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:584
|
||||
#: ../../mod/profiles.php:620
|
||||
msgid "Edit/Manage Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:585 ../../boot.php:1049
|
||||
#: ../../mod/profiles.php:621 ../../boot.php:1055
|
||||
msgid "Change profile photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:586 ../../boot.php:1050
|
||||
#: ../../mod/profiles.php:622 ../../boot.php:1056
|
||||
msgid "Create New Profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:597 ../../boot.php:1060
|
||||
#: ../../mod/profiles.php:633 ../../boot.php:1066
|
||||
msgid "Profile Image"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:599 ../../boot.php:1063
|
||||
#: ../../mod/profiles.php:635 ../../boot.php:1069
|
||||
msgid "visible to everybody"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:600 ../../boot.php:1064
|
||||
#: ../../mod/profiles.php:636 ../../boot.php:1070
|
||||
msgid "Edit visibility"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -4457,7 +4472,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:796
|
||||
#: ../../include/nav.php:64 ../../boot.php:802
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5199,7 +5214,7 @@ msgid "Show More Settings saved."
|
|||
msgstr ""
|
||||
|
||||
#: ../../addon/showmore/showmore.php:87 ../../include/conversation.php:466
|
||||
#: ../../boot.php:496
|
||||
#: ../../boot.php:504
|
||||
msgid "show more"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5503,7 +5518,7 @@ msgstr ""
|
|||
msgid "Set colour scheme"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:17 ../../boot.php:1085
|
||||
#: ../../include/profile_advanced.php:17 ../../boot.php:1091
|
||||
msgid "Gender:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5524,11 +5539,11 @@ msgstr ""
|
|||
msgid "Age:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:37 ../../boot.php:1088
|
||||
#: ../../include/profile_advanced.php:37 ../../boot.php:1094
|
||||
msgid "Status:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:45 ../../boot.php:1090
|
||||
#: ../../include/profile_advanced.php:45 ../../boot.php:1096
|
||||
msgid "Homepage:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -6112,7 +6127,7 @@ msgstr ""
|
|||
msgid "Contacts not in any group"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:46 ../../boot.php:795
|
||||
#: ../../include/nav.php:46 ../../boot.php:801
|
||||
msgid "Logout"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -6120,7 +6135,7 @@ msgstr ""
|
|||
msgid "End this session"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:49 ../../boot.php:1463
|
||||
#: ../../include/nav.php:49 ../../boot.php:1469
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -6200,11 +6215,11 @@ msgstr ""
|
|||
msgid "Manage other pages"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:138 ../../boot.php:1043
|
||||
#: ../../include/nav.php:138 ../../boot.php:1049
|
||||
msgid "Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:138 ../../boot.php:1043
|
||||
#: ../../include/nav.php:138 ../../boot.php:1049
|
||||
msgid "Manage/edit profiles"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -6626,33 +6641,33 @@ msgid ""
|
|||
"form has been opened for too long (>3 hours) before submitting it."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/Contact.php:96
|
||||
#: ../../include/Contact.php:111
|
||||
msgid "stopped following"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/Contact.php:188 ../../include/conversation.php:817
|
||||
#: ../../include/Contact.php:203 ../../include/conversation.php:817
|
||||
msgid "View Status"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/Contact.php:189 ../../include/conversation.php:818
|
||||
#: ../../include/Contact.php:204 ../../include/conversation.php:818
|
||||
msgid "View Profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/Contact.php:190 ../../include/conversation.php:819
|
||||
#: ../../include/Contact.php:205 ../../include/conversation.php:819
|
||||
msgid "View Photos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/Contact.php:191 ../../include/Contact.php:204
|
||||
#: ../../include/Contact.php:206 ../../include/Contact.php:219
|
||||
#: ../../include/conversation.php:820
|
||||
msgid "Network Posts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/Contact.php:192 ../../include/Contact.php:204
|
||||
#: ../../include/Contact.php:207 ../../include/Contact.php:219
|
||||
#: ../../include/conversation.php:821
|
||||
msgid "Edit Contact"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/Contact.php:193 ../../include/Contact.php:204
|
||||
#: ../../include/Contact.php:208 ../../include/Contact.php:219
|
||||
#: ../../include/conversation.php:822
|
||||
msgid "Send PM"
|
||||
msgstr ""
|
||||
|
|
@ -6879,70 +6894,80 @@ msgstr ""
|
|||
msgid "permissions"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:494
|
||||
#: ../../boot.php:502
|
||||
msgid "Delete this item?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:497
|
||||
#: ../../boot.php:505
|
||||
msgid "show fewer"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:774
|
||||
#: ../../boot.php:678
|
||||
#, php-format
|
||||
msgid "Update %s failed. See error logs."
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:680
|
||||
#, php-format
|
||||
msgid "Update Error at %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:780
|
||||
msgid "Create a New Account"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:798
|
||||
#: ../../boot.php:804
|
||||
msgid "Nickname or Email address: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:799
|
||||
#: ../../boot.php:805
|
||||
msgid "Password: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:802
|
||||
#: ../../boot.php:808
|
||||
msgid "Or login using OpenID: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:808
|
||||
#: ../../boot.php:814
|
||||
msgid "Forgot your password?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:975
|
||||
#: ../../boot.php:981
|
||||
msgid "Edit profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1035
|
||||
#: ../../boot.php:1041
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1151 ../../boot.php:1227
|
||||
#: ../../boot.php:1157 ../../boot.php:1233
|
||||
msgid "g A l F d"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1152 ../../boot.php:1228
|
||||
#: ../../boot.php:1158 ../../boot.php:1234
|
||||
msgid "F d"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1197 ../../boot.php:1268
|
||||
#: ../../boot.php:1203 ../../boot.php:1274
|
||||
msgid "[today]"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1209
|
||||
#: ../../boot.php:1215
|
||||
msgid "Birthday Reminders"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1210
|
||||
#: ../../boot.php:1216
|
||||
msgid "Birthdays this week:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1261
|
||||
#: ../../boot.php:1267
|
||||
msgid "[No description]"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1279
|
||||
#: ../../boot.php:1285
|
||||
msgid "Event Reminders"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1280
|
||||
#: ../../boot.php:1286
|
||||
msgid "Events this week:"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@
|
|||
<li class='admin link button $admin.users.2'><a href='$admin.users.0'>$admin.users.1</a><span id='pending-update' title='$h_pending'></span></li>
|
||||
<li class='admin link button $admin.plugins.2'><a href='$admin.plugins.0'>$admin.plugins.1</a></li>
|
||||
<li class='admin link button $admin.themes.2'><a href='$admin.themes.0'>$admin.themes.1</a></li>
|
||||
<li class='admin link button $admin.dbsync.2'><a href='$admin.dbsync.0'>$admin.dbsync.1</a></li>
|
||||
</ul>
|
||||
|
||||
<ul class='admin linklist'>
|
||||
|
|
|
|||
|
|
@ -1,15 +1,14 @@
|
|||
|
||||
Hallo $myname,
|
||||
Hallo $[myname],
|
||||
|
||||
'$requestor' folgt dir jetzt auf $sitename.
|
||||
Du hast einen neuen Anhänger auf $[sitename] - '$[requestor]'.
|
||||
|
||||
Du kannst das Profil unter $url abrufen.
|
||||
Du kannst das Profil unter $[url] besuchen.
|
||||
|
||||
Bitte melde dich auf deiner Seite an um die Anfrage zu bestätigen, abzulehnen
|
||||
oder zu ignorieren.
|
||||
Bitte melde dich an um die Anfrage zu bestätigen oder sie zu ignorieren bzw. abzulehnen.
|
||||
|
||||
$siteurl
|
||||
$[siteurl]
|
||||
|
||||
Grüße,
|
||||
$sitename Administrator
|
||||
beste Grüße,
|
||||
|
||||
$[sitename] Administrator
|
||||
1593
view/de/messages.po
1593
view/de/messages.po
|
|
@ -19,8 +19,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
|
||||
"POT-Creation-Date: 2012-04-22 10:00-0700\n"
|
||||
"PO-Revision-Date: 2012-04-23 18:48+0000\n"
|
||||
"POT-Creation-Date: 2012-04-28 10:00-0700\n"
|
||||
"PO-Revision-Date: 2012-04-30 06:31+0000\n"
|
||||
"Last-Translator: bavatar <tobias.diekershoff@gmx.net>\n"
|
||||
"Language-Team: German (http://www.transifex.net/projects/p/friendica/language/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
@ -51,8 +51,8 @@ msgstr "Konnte den Kontakt nicht aktualisieren."
|
|||
#: ../../mod/api.php:31 ../../mod/photos.php:130 ../../mod/photos.php:865
|
||||
#: ../../mod/editpost.php:10 ../../mod/install.php:171
|
||||
#: ../../mod/notifications.php:66 ../../mod/contacts.php:125
|
||||
#: ../../mod/settings.php:99 ../../mod/settings.php:514
|
||||
#: ../../mod/settings.php:519 ../../mod/manage.php:86 ../../mod/network.php:6
|
||||
#: ../../mod/settings.php:104 ../../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
|
||||
|
|
@ -62,7 +62,7 @@ msgstr "Konnte den Kontakt nicht aktualisieren."
|
|||
#: ../../mod/profile_photo.php:139 ../../mod/profile_photo.php:150
|
||||
#: ../../mod/profile_photo.php:163 ../../mod/message.php:38
|
||||
#: ../../mod/message.php:90 ../../mod/allfriends.php:9
|
||||
#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:46
|
||||
#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:53
|
||||
#: ../../mod/follow.php:8 ../../mod/common.php:9 ../../mod/display.php:138
|
||||
#: ../../mod/profiles.php:7 ../../mod/profiles.php:329
|
||||
#: ../../mod/delegate.php:6 ../../mod/suggest.php:28 ../../mod/invite.php:13
|
||||
|
|
@ -97,8 +97,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:534
|
||||
#: ../../mod/settings.php:560 ../../mod/admin.php:573 ../../mod/admin.php:582
|
||||
#: ../../mod/crepair.php:148 ../../mod/settings.php:539
|
||||
#: ../../mod/settings.php:565 ../../mod/admin.php:575 ../../mod/admin.php:584
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
|
|
@ -139,19 +139,19 @@ msgstr "Neues Foto von dieser URL"
|
|||
#: ../../mod/photos.php:1193 ../../mod/photos.php:1233
|
||||
#: ../../mod/photos.php:1273 ../../mod/photos.php:1304
|
||||
#: ../../mod/install.php:251 ../../mod/install.php:289
|
||||
#: ../../mod/localtime.php:45 ../../mod/contacts.php:325
|
||||
#: ../../mod/settings.php:532 ../../mod/settings.php:678
|
||||
#: ../../mod/settings.php:739 ../../mod/settings.php:930
|
||||
#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:392
|
||||
#: ../../mod/admin.php:570 ../../mod/admin.php:706 ../../mod/admin.php:905
|
||||
#: ../../mod/admin.php:993 ../../mod/profiles.php:498 ../../mod/invite.php:119
|
||||
#: ../../mod/localtime.php:45 ../../mod/contacts.php:318
|
||||
#: ../../mod/settings.php:537 ../../mod/settings.php:683
|
||||
#: ../../mod/settings.php:744 ../../mod/settings.php:935
|
||||
#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:393
|
||||
#: ../../mod/admin.php:572 ../../mod/admin.php:708 ../../mod/admin.php:907
|
||||
#: ../../mod/admin.php:995 ../../mod/profiles.php:498 ../../mod/invite.php:119
|
||||
#: ../../addon/facebook/facebook.php:574 ../../addon/yourls/yourls.php:76
|
||||
#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:57
|
||||
#: ../../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/geonames/geonames.php:187
|
||||
#: ../../addon/oembed.old/oembed.php:41 ../../addon/impressum/impressum.php:80
|
||||
#: ../../addon/oembed.old/oembed.php:41 ../../addon/impressum/impressum.php:82
|
||||
#: ../../addon/blockem/blockem.php:57 ../../addon/qcomment/qcomment.php:61
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:70
|
||||
#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84
|
||||
|
|
@ -170,14 +170,10 @@ msgstr "Neues Foto von dieser URL"
|
|||
#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:375
|
||||
#: ../../addon/irc/irc.php:55 ../../addon/blogger/blogger.php:102
|
||||
#: ../../addon/posterous/posterous.php:90
|
||||
#: ../../view/theme/diabook/diabook-green/config.php:76
|
||||
#: ../../view/theme/diabook/diabook-red/config.php:76
|
||||
#: ../../view/theme/diabook/diabook-blue/config.php:76
|
||||
#: ../../view/theme/diabook/diabook-dark/config.php:76
|
||||
#: ../../view/theme/diabook/diabook-aerith/config.php:76
|
||||
#: ../../view/theme/diabook/diabook-pink/config.php:76
|
||||
#: ../../view/theme/cleanzero/config.php:71
|
||||
#: ../../view/theme/diabook/config.php:91
|
||||
#: ../../view/theme/quattro/config.php:52 ../../include/conversation.php:555
|
||||
#: ../../view/theme/quattro/config.php:52 ../../view/theme/dispy/config.php:70
|
||||
#: ../../include/conversation.php:555
|
||||
msgid "Submit"
|
||||
msgstr "Senden"
|
||||
|
||||
|
|
@ -235,15 +231,8 @@ msgstr "Veranstaltung bearbeiten"
|
|||
msgid "link to source"
|
||||
msgstr "Link zum Originalbeitrag"
|
||||
|
||||
#: ../../mod/events.php:296
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:233
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:231
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:231
|
||||
#: ../../view/theme/diabook/theme.php:250
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:233
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:233
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:233
|
||||
#: ../../include/nav.php:52 ../../boot.php:1471
|
||||
#: ../../mod/events.php:296 ../../view/theme/diabook/theme.php:255
|
||||
#: ../../include/nav.php:52 ../../boot.php:1481
|
||||
msgid "Events"
|
||||
msgstr "Veranstaltungen"
|
||||
|
||||
|
|
@ -302,8 +291,8 @@ msgid "Share this event"
|
|||
msgstr "Veranstaltung teilen"
|
||||
|
||||
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
|
||||
#: ../../mod/dfrn_request.php:752 ../../mod/settings.php:533
|
||||
#: ../../mod/settings.php:559 ../../addon/js_upload/js_upload.php:45
|
||||
#: ../../mod/dfrn_request.php:817 ../../mod/settings.php:538
|
||||
#: ../../mod/settings.php:564 ../../addon/js_upload/js_upload.php:45
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
|
|
@ -346,24 +335,24 @@ msgid ""
|
|||
" and/or create new posts for you?"
|
||||
msgstr "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?"
|
||||
|
||||
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:740
|
||||
#: ../../mod/settings.php:844 ../../mod/settings.php:850
|
||||
#: ../../mod/settings.php:858 ../../mod/settings.php:862
|
||||
#: ../../mod/settings.php:867 ../../mod/settings.php:873
|
||||
#: ../../mod/settings.php:879 ../../mod/settings.php:885
|
||||
#: ../../mod/settings.php:921 ../../mod/settings.php:922
|
||||
#: ../../mod/settings.php:923 ../../mod/settings.php:924
|
||||
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:805
|
||||
#: ../../mod/settings.php:849 ../../mod/settings.php:855
|
||||
#: ../../mod/settings.php:863 ../../mod/settings.php:867
|
||||
#: ../../mod/settings.php:872 ../../mod/settings.php:878
|
||||
#: ../../mod/settings.php:884 ../../mod/settings.php:890
|
||||
#: ../../mod/settings.php:926 ../../mod/settings.php:927
|
||||
#: ../../mod/settings.php:928 ../../mod/settings.php:929
|
||||
#: ../../mod/register.php:532 ../../mod/profiles.php:475
|
||||
msgid "Yes"
|
||||
msgstr "Ja"
|
||||
|
||||
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:741
|
||||
#: ../../mod/settings.php:844 ../../mod/settings.php:850
|
||||
#: ../../mod/settings.php:858 ../../mod/settings.php:862
|
||||
#: ../../mod/settings.php:867 ../../mod/settings.php:873
|
||||
#: ../../mod/settings.php:879 ../../mod/settings.php:885
|
||||
#: ../../mod/settings.php:921 ../../mod/settings.php:922
|
||||
#: ../../mod/settings.php:923 ../../mod/settings.php:924
|
||||
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:806
|
||||
#: ../../mod/settings.php:849 ../../mod/settings.php:855
|
||||
#: ../../mod/settings.php:863 ../../mod/settings.php:867
|
||||
#: ../../mod/settings.php:872 ../../mod/settings.php:878
|
||||
#: ../../mod/settings.php:884 ../../mod/settings.php:890
|
||||
#: ../../mod/settings.php:926 ../../mod/settings.php:927
|
||||
#: ../../mod/settings.php:928 ../../mod/settings.php:929
|
||||
#: ../../mod/register.php:533 ../../mod/profiles.php:476
|
||||
msgid "No"
|
||||
msgstr "Nein"
|
||||
|
|
@ -375,13 +364,7 @@ msgstr "Fotoalben"
|
|||
#: ../../mod/photos.php:51 ../../mod/photos.php:151 ../../mod/photos.php:879
|
||||
#: ../../mod/photos.php:950 ../../mod/photos.php:965 ../../mod/photos.php:1382
|
||||
#: ../../mod/photos.php:1394 ../../addon/communityhome/communityhome.php:110
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:116
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:115
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:115
|
||||
#: ../../view/theme/diabook/theme.php:130
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:116
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:116
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:116
|
||||
#: ../../view/theme/diabook/theme.php:135
|
||||
msgid "Contact Photos"
|
||||
msgstr "Kontaktbilder"
|
||||
|
||||
|
|
@ -404,13 +387,7 @@ msgstr "Kontaktinformationen nicht verfügbar"
|
|||
#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:174
|
||||
#: ../../mod/profile_photo.php:252 ../../mod/profile_photo.php:261
|
||||
#: ../../addon/communityhome/communityhome.php:111
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:117
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:116
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:116
|
||||
#: ../../view/theme/diabook/theme.php:131
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:117
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:117
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:117
|
||||
#: ../../view/theme/diabook/theme.php:136
|
||||
msgid "Profile Photos"
|
||||
msgstr "Profilbilder"
|
||||
|
||||
|
|
@ -432,15 +409,9 @@ msgstr "wurde getaggt in einem"
|
|||
|
||||
#: ../../mod/photos.php:528 ../../mod/like.php:127 ../../mod/tagger.php:70
|
||||
#: ../../addon/communityhome/communityhome.php:163
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:88
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:87
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:87
|
||||
#: ../../view/theme/diabook/theme.php:102
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:88
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:88
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:88
|
||||
#: ../../include/text.php:1304 ../../include/diaspora.php:1654
|
||||
#: ../../include/conversation.php:53 ../../include/conversation.php:126
|
||||
#: ../../view/theme/diabook/theme.php:107 ../../include/text.php:1304
|
||||
#: ../../include/diaspora.php:1654 ../../include/conversation.php:53
|
||||
#: ../../include/conversation.php:126
|
||||
msgid "photo"
|
||||
msgstr "Foto"
|
||||
|
||||
|
|
@ -457,17 +428,17 @@ msgid "Image file is empty."
|
|||
msgstr "Bilddatei ist leer."
|
||||
|
||||
#: ../../mod/photos.php:653 ../../mod/profile_photo.php:124
|
||||
#: ../../mod/wall_upload.php:69
|
||||
#: ../../mod/wall_upload.php:83
|
||||
msgid "Unable to process image."
|
||||
msgstr "Konnte das Bild nicht bearbeiten."
|
||||
|
||||
#: ../../mod/photos.php:673 ../../mod/profile_photo.php:257
|
||||
#: ../../mod/wall_upload.php:88
|
||||
#: ../../mod/wall_upload.php:102
|
||||
msgid "Image upload failed."
|
||||
msgstr "Hochladen des Bildes gescheitert."
|
||||
|
||||
#: ../../mod/photos.php:759 ../../mod/community.php:16
|
||||
#: ../../mod/dfrn_request.php:671 ../../mod/viewcontacts.php:17
|
||||
#: ../../mod/dfrn_request.php:731 ../../mod/viewcontacts.php:17
|
||||
#: ../../mod/display.php:7 ../../mod/search.php:71 ../../mod/directory.php:29
|
||||
msgid "Public access denied."
|
||||
msgstr "Öffentlicher Zugriff verweigert."
|
||||
|
|
@ -569,14 +540,14 @@ msgstr "Ich mag das (toggle)"
|
|||
msgid "I don't like this (toggle)"
|
||||
msgstr "Ich mag das nicht (toggle)"
|
||||
|
||||
#: ../../mod/photos.php:1213 ../../include/conversation.php:956
|
||||
#: ../../mod/photos.php:1213 ../../include/conversation.php:964
|
||||
msgid "Share"
|
||||
msgstr "Teilen"
|
||||
|
||||
#: ../../mod/photos.php:1214 ../../mod/editpost.php:104
|
||||
#: ../../mod/wallmessage.php:145 ../../mod/message.php:188
|
||||
#: ../../mod/message.php:357 ../../include/conversation.php:361
|
||||
#: ../../include/conversation.php:698 ../../include/conversation.php:975
|
||||
#: ../../mod/message.php:380 ../../include/conversation.php:361
|
||||
#: ../../include/conversation.php:706 ../../include/conversation.php:983
|
||||
msgid "Please wait"
|
||||
msgstr "Bitte warten"
|
||||
|
||||
|
|
@ -592,13 +563,13 @@ msgid "Comment"
|
|||
msgstr "Kommentar"
|
||||
|
||||
#: ../../mod/photos.php:1234 ../../mod/editpost.php:125
|
||||
#: ../../include/conversation.php:556 ../../include/conversation.php:993
|
||||
#: ../../include/conversation.php:564 ../../include/conversation.php:1001
|
||||
msgid "Preview"
|
||||
msgstr "Vorschau"
|
||||
|
||||
#: ../../mod/photos.php:1331 ../../mod/settings.php:595
|
||||
#: ../../mod/settings.php:676 ../../mod/group.php:168 ../../mod/admin.php:577
|
||||
#: ../../include/conversation.php:318 ../../include/conversation.php:576
|
||||
#: ../../mod/photos.php:1331 ../../mod/settings.php:600
|
||||
#: ../../mod/settings.php:681 ../../mod/group.php:168 ../../mod/admin.php:579
|
||||
#: ../../include/conversation.php:318 ../../include/conversation.php:584
|
||||
msgid "Delete"
|
||||
msgstr "Löschen"
|
||||
|
||||
|
|
@ -614,19 +585,12 @@ msgstr "Neueste Fotos"
|
|||
msgid "Not available."
|
||||
msgstr "Nicht verfügbar."
|
||||
|
||||
#: ../../mod/community.php:30
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:235
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:233
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:233
|
||||
#: ../../view/theme/diabook/theme.php:252
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:235
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:235
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:235
|
||||
#: ../../mod/community.php:30 ../../view/theme/diabook/theme.php:257
|
||||
#: ../../include/nav.php:101
|
||||
msgid "Community"
|
||||
msgstr "Gemeinschaft"
|
||||
|
||||
#: ../../mod/community.php:61 ../../mod/search.php:115
|
||||
#: ../../mod/community.php:61 ../../mod/search.php:128
|
||||
msgid "No results."
|
||||
msgstr "Keine Ergebnisse."
|
||||
|
||||
|
|
@ -670,28 +634,28 @@ msgstr "Beitrag nicht gefunden"
|
|||
msgid "Edit post"
|
||||
msgstr "Beitrag bearbeiten"
|
||||
|
||||
#: ../../mod/editpost.php:80 ../../include/conversation.php:942
|
||||
#: ../../mod/editpost.php:80 ../../include/conversation.php:950
|
||||
msgid "Post to Email"
|
||||
msgstr "An E-Mail senden"
|
||||
|
||||
#: ../../mod/editpost.php:95 ../../mod/settings.php:594
|
||||
#: ../../include/conversation.php:563
|
||||
#: ../../mod/editpost.php:95 ../../mod/settings.php:599
|
||||
#: ../../include/conversation.php:571
|
||||
msgid "Edit"
|
||||
msgstr "Bearbeiten"
|
||||
|
||||
#: ../../mod/editpost.php:96 ../../mod/wallmessage.php:143
|
||||
#: ../../mod/message.php:186 ../../mod/message.php:355
|
||||
#: ../../include/conversation.php:957
|
||||
#: ../../mod/message.php:186 ../../mod/message.php:378
|
||||
#: ../../include/conversation.php:965
|
||||
msgid "Upload photo"
|
||||
msgstr "Foto hochladen"
|
||||
|
||||
#: ../../mod/editpost.php:97 ../../include/conversation.php:959
|
||||
#: ../../mod/editpost.php:97 ../../include/conversation.php:967
|
||||
msgid "Attach file"
|
||||
msgstr "Datei anhängen"
|
||||
|
||||
#: ../../mod/editpost.php:98 ../../mod/wallmessage.php:144
|
||||
#: ../../mod/message.php:187 ../../mod/message.php:356
|
||||
#: ../../include/conversation.php:961
|
||||
#: ../../mod/message.php:187 ../../mod/message.php:379
|
||||
#: ../../include/conversation.php:969
|
||||
msgid "Insert web link"
|
||||
msgstr "einen Link einfügen"
|
||||
|
||||
|
|
@ -707,35 +671,35 @@ msgstr "Vorbis [.ogg] Video einfügen"
|
|||
msgid "Insert Vorbis [.ogg] audio"
|
||||
msgstr "Vorbis [.ogg] Audio einfügen"
|
||||
|
||||
#: ../../mod/editpost.php:102 ../../include/conversation.php:967
|
||||
#: ../../mod/editpost.php:102 ../../include/conversation.php:975
|
||||
msgid "Set your location"
|
||||
msgstr "Deinen Standort festlegen"
|
||||
|
||||
#: ../../mod/editpost.php:103 ../../include/conversation.php:969
|
||||
#: ../../mod/editpost.php:103 ../../include/conversation.php:977
|
||||
msgid "Clear browser location"
|
||||
msgstr "Browser-Standort leeren"
|
||||
|
||||
#: ../../mod/editpost.php:105 ../../include/conversation.php:976
|
||||
#: ../../mod/editpost.php:105 ../../include/conversation.php:984
|
||||
msgid "Permission settings"
|
||||
msgstr "Berechtigungseinstellungen"
|
||||
|
||||
#: ../../mod/editpost.php:113 ../../include/conversation.php:985
|
||||
#: ../../mod/editpost.php:113 ../../include/conversation.php:993
|
||||
msgid "CC: email addresses"
|
||||
msgstr "Cc:-E-Mail-Addressen"
|
||||
|
||||
#: ../../mod/editpost.php:114 ../../include/conversation.php:986
|
||||
#: ../../mod/editpost.php:114 ../../include/conversation.php:994
|
||||
msgid "Public post"
|
||||
msgstr "Öffentlicher Beitrag"
|
||||
|
||||
#: ../../mod/editpost.php:117 ../../include/conversation.php:972
|
||||
#: ../../mod/editpost.php:117 ../../include/conversation.php:980
|
||||
msgid "Set title"
|
||||
msgstr "Titel setzen"
|
||||
|
||||
#: ../../mod/editpost.php:119 ../../include/conversation.php:974
|
||||
#: ../../mod/editpost.php:119 ../../include/conversation.php:982
|
||||
msgid "Categories (comma-separated list)"
|
||||
msgstr "Kategorien (mit Komma separierte Liste)"
|
||||
msgstr "Kategorien (kommasepariert)"
|
||||
|
||||
#: ../../mod/editpost.php:120 ../../include/conversation.php:988
|
||||
#: ../../mod/editpost.php:120 ../../include/conversation.php:996
|
||||
msgid "Example: bob@example.com, mary@example.com"
|
||||
msgstr "Z.B.: bob@example.com, mary@example.com"
|
||||
|
||||
|
|
@ -743,19 +707,19 @@ msgstr "Z.B.: bob@example.com, mary@example.com"
|
|||
msgid "This introduction has already been accepted."
|
||||
msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
|
||||
|
||||
#: ../../mod/dfrn_request.php:117 ../../mod/dfrn_request.php:427
|
||||
#: ../../mod/dfrn_request.php:117 ../../mod/dfrn_request.php:487
|
||||
msgid "Profile location is not valid or does not contain profile information."
|
||||
msgstr "Profiladresse ist ungültig oder stellt einige Profildaten nicht zur Verfügung."
|
||||
|
||||
#: ../../mod/dfrn_request.php:122 ../../mod/dfrn_request.php:432
|
||||
#: ../../mod/dfrn_request.php:122 ../../mod/dfrn_request.php:492
|
||||
msgid "Warning: profile location has no identifiable owner name."
|
||||
msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
|
||||
|
||||
#: ../../mod/dfrn_request.php:124 ../../mod/dfrn_request.php:434
|
||||
#: ../../mod/dfrn_request.php:124 ../../mod/dfrn_request.php:494
|
||||
msgid "Warning: profile location has no profile photo."
|
||||
msgstr "Warnung: Es konnte kein Profilbild bei der angegebenen Profiladresse gefunden werden."
|
||||
|
||||
#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:437
|
||||
#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:497
|
||||
#, php-format
|
||||
msgid "%d required parameter was not found at the given location"
|
||||
msgid_plural "%d required parameters were not found at the given location"
|
||||
|
|
@ -799,128 +763,128 @@ msgstr "Ungültige E-Mail Adresse."
|
|||
msgid "This account has not been configured for email. Request failed."
|
||||
msgstr "Dieses Konto ist nicht für Email konfiguriert. Anfrage fehlgeschlagen."
|
||||
|
||||
#: ../../mod/dfrn_request.php:372
|
||||
#: ../../mod/dfrn_request.php:432
|
||||
msgid "Unable to resolve your name at the provided location."
|
||||
msgstr "Konnte deinen Namen an der angegebenen Stelle nicht finden."
|
||||
|
||||
#: ../../mod/dfrn_request.php:385
|
||||
#: ../../mod/dfrn_request.php:445
|
||||
msgid "You have already introduced yourself here."
|
||||
msgstr "Du hast dich hier bereits vorgestellt."
|
||||
|
||||
#: ../../mod/dfrn_request.php:389
|
||||
#: ../../mod/dfrn_request.php:449
|
||||
#, php-format
|
||||
msgid "Apparently you are already friends with %s."
|
||||
msgstr "Es scheint so, als ob du bereits mit %s befreundet bist."
|
||||
|
||||
#: ../../mod/dfrn_request.php:410
|
||||
#: ../../mod/dfrn_request.php:470
|
||||
msgid "Invalid profile URL."
|
||||
msgstr "Ungültige Profil-URL."
|
||||
|
||||
#: ../../mod/dfrn_request.php:416 ../../mod/follow.php:20
|
||||
#: ../../mod/dfrn_request.php:476 ../../mod/follow.php:20
|
||||
msgid "Disallowed profile URL."
|
||||
msgstr "Nicht erlaubte Profil-URL."
|
||||
|
||||
#: ../../mod/dfrn_request.php:485 ../../mod/contacts.php:102
|
||||
#: ../../mod/dfrn_request.php:545 ../../mod/contacts.php:102
|
||||
msgid "Failed to update contact record."
|
||||
msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
|
||||
|
||||
#: ../../mod/dfrn_request.php:506
|
||||
#: ../../mod/dfrn_request.php:566
|
||||
msgid "Your introduction has been sent."
|
||||
msgstr "Deine Kontaktanfrage wurde gesendet."
|
||||
|
||||
#: ../../mod/dfrn_request.php:559
|
||||
#: ../../mod/dfrn_request.php:619
|
||||
msgid "Please login to confirm introduction."
|
||||
msgstr "Bitte melde dich an, um die Kontaktanfrage zu bestätigen."
|
||||
|
||||
#: ../../mod/dfrn_request.php:573
|
||||
#: ../../mod/dfrn_request.php:633
|
||||
msgid ""
|
||||
"Incorrect identity currently logged in. Please login to "
|
||||
"<strong>this</strong> profile."
|
||||
msgstr "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an."
|
||||
|
||||
#: ../../mod/dfrn_request.php:585
|
||||
#: ../../mod/dfrn_request.php:645
|
||||
#, php-format
|
||||
msgid "Welcome home %s."
|
||||
msgstr "Willkommen zurück %s."
|
||||
|
||||
#: ../../mod/dfrn_request.php:586
|
||||
#: ../../mod/dfrn_request.php:646
|
||||
#, php-format
|
||||
msgid "Please confirm your introduction/connection request to %s."
|
||||
msgstr "Bitte bestätige deine Kontaktanfrage bei %s."
|
||||
|
||||
#: ../../mod/dfrn_request.php:587
|
||||
#: ../../mod/dfrn_request.php:647
|
||||
msgid "Confirm"
|
||||
msgstr "Bestätigen"
|
||||
|
||||
#: ../../mod/dfrn_request.php:628 ../../include/items.php:2691
|
||||
#: ../../mod/dfrn_request.php:688 ../../include/items.php:2691
|
||||
msgid "[Name Withheld]"
|
||||
msgstr "[Name unterdrückt]"
|
||||
|
||||
#: ../../mod/dfrn_request.php:715
|
||||
#: ../../mod/dfrn_request.php:780
|
||||
msgid ""
|
||||
"Please enter your 'Identity Address' from one of the following supported "
|
||||
"communications networks:"
|
||||
msgstr "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:"
|
||||
|
||||
#: ../../mod/dfrn_request.php:731
|
||||
#: ../../mod/dfrn_request.php:796
|
||||
msgid "<strike>Connect as an email follower</strike> (Coming soon)"
|
||||
msgstr "<strike>Als E-Mail-Kontakt verbinden</strike> (In Kürze verfügbar)"
|
||||
|
||||
#: ../../mod/dfrn_request.php:733
|
||||
#: ../../mod/dfrn_request.php:798
|
||||
msgid ""
|
||||
"If you are not yet a member of the free social web, <a "
|
||||
"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
|
||||
" Friendica site and join us today</a>."
|
||||
msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
|
||||
|
||||
#: ../../mod/dfrn_request.php:736
|
||||
#: ../../mod/dfrn_request.php:801
|
||||
msgid "Friend/Connection Request"
|
||||
msgstr "Freundschafts-/Kontaktanfrage"
|
||||
|
||||
#: ../../mod/dfrn_request.php:737
|
||||
#: ../../mod/dfrn_request.php:802
|
||||
msgid ""
|
||||
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
|
||||
"testuser@identi.ca"
|
||||
msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
|
||||
|
||||
#: ../../mod/dfrn_request.php:738
|
||||
#: ../../mod/dfrn_request.php:803
|
||||
msgid "Please answer the following:"
|
||||
msgstr "Bitte beantworte Folgendes:"
|
||||
|
||||
#: ../../mod/dfrn_request.php:739
|
||||
#: ../../mod/dfrn_request.php:804
|
||||
#, php-format
|
||||
msgid "Does %s know you?"
|
||||
msgstr "Kennt %s dich?"
|
||||
|
||||
#: ../../mod/dfrn_request.php:742
|
||||
#: ../../mod/dfrn_request.php:807
|
||||
msgid "Add a personal note:"
|
||||
msgstr "Eine persönliche Notiz beifügen:"
|
||||
|
||||
#: ../../mod/dfrn_request.php:744 ../../include/contact_selectors.php:76
|
||||
#: ../../mod/dfrn_request.php:809 ../../include/contact_selectors.php:76
|
||||
msgid "Friendica"
|
||||
msgstr "Friendica"
|
||||
|
||||
#: ../../mod/dfrn_request.php:745
|
||||
#: ../../mod/dfrn_request.php:810
|
||||
msgid "StatusNet/Federated Social Web"
|
||||
msgstr "StatusNet/Federated Social Web"
|
||||
|
||||
#: ../../mod/dfrn_request.php:746 ../../mod/settings.php:629
|
||||
#: ../../mod/dfrn_request.php:811 ../../mod/settings.php:634
|
||||
#: ../../include/contact_selectors.php:80
|
||||
msgid "Diaspora"
|
||||
msgstr "Diaspora"
|
||||
|
||||
#: ../../mod/dfrn_request.php:747
|
||||
#: ../../mod/dfrn_request.php:812
|
||||
#, php-format
|
||||
msgid ""
|
||||
" - please do not use this form. Instead, enter %s into your Diaspora search"
|
||||
" bar."
|
||||
msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste."
|
||||
|
||||
#: ../../mod/dfrn_request.php:748
|
||||
#: ../../mod/dfrn_request.php:813
|
||||
msgid "Your Identity Address:"
|
||||
msgstr "Adresse deines Profils:"
|
||||
|
||||
#: ../../mod/dfrn_request.php:751
|
||||
#: ../../mod/dfrn_request.php:816
|
||||
msgid "Submit Request"
|
||||
msgstr "Anfrage abschicken"
|
||||
|
||||
|
|
@ -1247,8 +1211,8 @@ msgid "Discard"
|
|||
msgstr "Verwerfen"
|
||||
|
||||
#: ../../mod/notifications.php:51 ../../mod/notifications.php:160
|
||||
#: ../../mod/notifications.php:206 ../../mod/contacts.php:308
|
||||
#: ../../mod/contacts.php:351
|
||||
#: ../../mod/notifications.php:206 ../../mod/contacts.php:295
|
||||
#: ../../mod/contacts.php:344
|
||||
msgid "Ignore"
|
||||
msgstr "Ignorieren"
|
||||
|
||||
|
|
@ -1264,14 +1228,7 @@ msgstr "Netzwerk"
|
|||
msgid "Personal"
|
||||
msgstr "Persönlich"
|
||||
|
||||
#: ../../mod/notifications.php:90
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:229
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:227
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:227
|
||||
#: ../../view/theme/diabook/theme.php:246
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:229
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:229
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:229
|
||||
#: ../../mod/notifications.php:90 ../../view/theme/diabook/theme.php:251
|
||||
#: ../../include/nav.php:77 ../../include/nav.php:115
|
||||
msgid "Home"
|
||||
msgstr "Pinnwand"
|
||||
|
|
@ -1307,7 +1264,7 @@ msgid "suggested by %s"
|
|||
msgstr "vorgeschlagen von %s"
|
||||
|
||||
#: ../../mod/notifications.php:153 ../../mod/notifications.php:200
|
||||
#: ../../mod/contacts.php:356
|
||||
#: ../../mod/contacts.php:350
|
||||
msgid "Hide this contact from others"
|
||||
msgstr "Verberge diesen Kontakt vor anderen"
|
||||
|
||||
|
|
@ -1320,7 +1277,7 @@ msgid "if applicable"
|
|||
msgstr "falls anwendbar"
|
||||
|
||||
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
|
||||
#: ../../mod/admin.php:575
|
||||
#: ../../mod/admin.php:577
|
||||
msgid "Approve"
|
||||
msgstr "Genehmigen"
|
||||
|
||||
|
|
@ -1457,218 +1414,231 @@ msgstr "Kontakt wurde ignoriert"
|
|||
msgid "Contact has been unignored"
|
||||
msgstr "Kontakt wird nicht mehr ignoriert"
|
||||
|
||||
#: ../../mod/contacts.php:200
|
||||
msgid "stopped following"
|
||||
msgstr "wird nicht mehr gefolgt"
|
||||
#: ../../mod/contacts.php:195
|
||||
msgid "Contact has been archived"
|
||||
msgstr "Kontakt wurde archiviert"
|
||||
|
||||
#: ../../mod/contacts.php:221
|
||||
#: ../../mod/contacts.php:195
|
||||
msgid "Contact has been unarchived"
|
||||
msgstr "Kontakt wurde aus dem Archiv geholt"
|
||||
|
||||
#: ../../mod/contacts.php:208
|
||||
msgid "Contact has been removed."
|
||||
msgstr "Kontakt wurde entfernt."
|
||||
|
||||
#: ../../mod/contacts.php:251
|
||||
#: ../../mod/contacts.php:238
|
||||
#, php-format
|
||||
msgid "You are mutual friends with %s"
|
||||
msgstr "Du hast mit %s eine beidseitige Freundschaft"
|
||||
|
||||
#: ../../mod/contacts.php:255
|
||||
#: ../../mod/contacts.php:242
|
||||
#, php-format
|
||||
msgid "You are sharing with %s"
|
||||
msgstr "Du teilst mit %s"
|
||||
|
||||
#: ../../mod/contacts.php:260
|
||||
#: ../../mod/contacts.php:247
|
||||
#, php-format
|
||||
msgid "%s is sharing with you"
|
||||
msgstr "%s teilt mit Dir"
|
||||
|
||||
#: ../../mod/contacts.php:277
|
||||
#: ../../mod/contacts.php:264
|
||||
msgid "Private communications are not available for this contact."
|
||||
msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
|
||||
|
||||
#: ../../mod/contacts.php:280
|
||||
#: ../../mod/contacts.php:267
|
||||
msgid "Never"
|
||||
msgstr "Niemals"
|
||||
|
||||
#: ../../mod/contacts.php:284
|
||||
#: ../../mod/contacts.php:271
|
||||
msgid "(Update was successful)"
|
||||
msgstr "(Aktualisierung war erfolgreich)"
|
||||
|
||||
#: ../../mod/contacts.php:284
|
||||
#: ../../mod/contacts.php:271
|
||||
msgid "(Update was not successful)"
|
||||
msgstr "(Aktualisierung war nicht erfolgreich)"
|
||||
|
||||
#: ../../mod/contacts.php:286
|
||||
#: ../../mod/contacts.php:273
|
||||
msgid "Suggest friends"
|
||||
msgstr "Kontakte vorschlagen"
|
||||
|
||||
#: ../../mod/contacts.php:290
|
||||
#: ../../mod/contacts.php:277
|
||||
#, php-format
|
||||
msgid "Network type: %s"
|
||||
msgstr "Netzwerk Typ: %s"
|
||||
|
||||
#: ../../mod/contacts.php:293
|
||||
#: ../../mod/contacts.php:280
|
||||
#, 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:298
|
||||
#: ../../mod/contacts.php:285
|
||||
msgid "View all contacts"
|
||||
msgstr "Alle Kontakte anzeigen"
|
||||
|
||||
#: ../../mod/contacts.php:303 ../../mod/contacts.php:350
|
||||
#: ../../mod/admin.php:579
|
||||
#: ../../mod/contacts.php:290 ../../mod/contacts.php:343
|
||||
#: ../../mod/admin.php:581
|
||||
msgid "Unblock"
|
||||
msgstr "Entsperren"
|
||||
|
||||
#: ../../mod/contacts.php:303 ../../mod/contacts.php:350
|
||||
#: ../../mod/admin.php:578
|
||||
#: ../../mod/contacts.php:290 ../../mod/contacts.php:343
|
||||
#: ../../mod/admin.php:580
|
||||
msgid "Block"
|
||||
msgstr "Sperren"
|
||||
|
||||
#: ../../mod/contacts.php:308 ../../mod/contacts.php:351
|
||||
#: ../../mod/contacts.php:295 ../../mod/contacts.php:344
|
||||
msgid "Unignore"
|
||||
msgstr "Ignorieren aufheben"
|
||||
|
||||
#: ../../mod/contacts.php:313
|
||||
#: ../../mod/contacts.php:301
|
||||
msgid "Unarchive"
|
||||
msgstr "Unarchivieren"
|
||||
|
||||
#: ../../mod/contacts.php:301
|
||||
msgid "Archive"
|
||||
msgstr "Archivieren"
|
||||
|
||||
#: ../../mod/contacts.php:306
|
||||
msgid "Repair"
|
||||
msgstr "Reparieren"
|
||||
|
||||
#: ../../mod/contacts.php:323
|
||||
#: ../../mod/contacts.php:316
|
||||
msgid "Contact Editor"
|
||||
msgstr "Kontakt Editor"
|
||||
|
||||
#: ../../mod/contacts.php:326
|
||||
#: ../../mod/contacts.php:319
|
||||
msgid "Profile Visibility"
|
||||
msgstr "Profil Anzeige"
|
||||
|
||||
#: ../../mod/contacts.php:327
|
||||
#: ../../mod/contacts.php:320
|
||||
#, 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:328
|
||||
#: ../../mod/contacts.php:321
|
||||
msgid "Contact Information / Notes"
|
||||
msgstr "Kontakt Informationen / Notizen"
|
||||
|
||||
#: ../../mod/contacts.php:329
|
||||
#: ../../mod/contacts.php:322
|
||||
msgid "Edit contact notes"
|
||||
msgstr "Notizen zum Kontakt bearbiten"
|
||||
|
||||
#: ../../mod/contacts.php:334 ../../mod/contacts.php:507
|
||||
#: ../../mod/contacts.php:327 ../../mod/contacts.php:511
|
||||
#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
|
||||
#, php-format
|
||||
msgid "Visit %s's profile [%s]"
|
||||
msgstr "Besuche %ss Profil [%s]"
|
||||
|
||||
#: ../../mod/contacts.php:335
|
||||
#: ../../mod/contacts.php:328
|
||||
msgid "Block/Unblock contact"
|
||||
msgstr "Kontakt blockieren/freischalten"
|
||||
|
||||
#: ../../mod/contacts.php:336
|
||||
#: ../../mod/contacts.php:329
|
||||
msgid "Ignore contact"
|
||||
msgstr "Ignoriere den Kontakt"
|
||||
|
||||
#: ../../mod/contacts.php:337
|
||||
#: ../../mod/contacts.php:330
|
||||
msgid "Repair URL settings"
|
||||
msgstr "URL Einstellungen reparieren"
|
||||
|
||||
#: ../../mod/contacts.php:338
|
||||
#: ../../mod/contacts.php:331
|
||||
msgid "View conversations"
|
||||
msgstr "Unterhaltungen anzeigen"
|
||||
|
||||
#: ../../mod/contacts.php:340
|
||||
#: ../../mod/contacts.php:333
|
||||
msgid "Delete contact"
|
||||
msgstr "Lösche den Kontakt"
|
||||
|
||||
#: ../../mod/contacts.php:344
|
||||
#: ../../mod/contacts.php:337
|
||||
msgid "Last update:"
|
||||
msgstr "letzte Aktualisierung:"
|
||||
|
||||
#: ../../mod/contacts.php:345
|
||||
#: ../../mod/contacts.php:338
|
||||
msgid "Update public posts"
|
||||
msgstr "Öffentliche Beiträge aktualisieren"
|
||||
|
||||
#: ../../mod/contacts.php:347 ../../mod/admin.php:1051
|
||||
#: ../../mod/contacts.php:340 ../../mod/admin.php:1053
|
||||
msgid "Update now"
|
||||
msgstr "Jetzt aktualisieren"
|
||||
|
||||
#: ../../mod/contacts.php:354
|
||||
#: ../../mod/contacts.php:347
|
||||
msgid "Currently blocked"
|
||||
msgstr "Derzeit geblockt"
|
||||
|
||||
#: ../../mod/contacts.php:355
|
||||
#: ../../mod/contacts.php:348
|
||||
msgid "Currently ignored"
|
||||
msgstr "Derzeit ignoriert"
|
||||
|
||||
#: ../../mod/contacts.php:356
|
||||
#: ../../mod/contacts.php:349
|
||||
msgid "Currently archived"
|
||||
msgstr "Momentan archiviert"
|
||||
|
||||
#: ../../mod/contacts.php:350
|
||||
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:405
|
||||
#: ../../mod/contacts.php:403
|
||||
msgid "Suggestions"
|
||||
msgstr "Kontaktvorschläge"
|
||||
|
||||
#: ../../mod/contacts.php:410 ../../mod/group.php:191
|
||||
#: ../../mod/contacts.php:408 ../../mod/group.php:191
|
||||
msgid "All Contacts"
|
||||
msgstr "Alle Kontakte"
|
||||
|
||||
#: ../../mod/contacts.php:415
|
||||
msgid "Unblocked Contacts"
|
||||
msgstr "Nicht blockierte Kontakte"
|
||||
#: ../../mod/contacts.php:413
|
||||
msgid "Unblocked"
|
||||
msgstr "Ungeblockt"
|
||||
|
||||
#: ../../mod/contacts.php:421
|
||||
msgid "Blocked Contacts"
|
||||
msgstr "Blockierte Kontakte"
|
||||
#: ../../mod/contacts.php:419
|
||||
msgid "Blocked"
|
||||
msgstr "Geblockt"
|
||||
|
||||
#: ../../mod/contacts.php:427
|
||||
msgid "Ignored Contacts"
|
||||
msgstr "Ignorierte Kontakte"
|
||||
#: ../../mod/contacts.php:425
|
||||
msgid "Ignored"
|
||||
msgstr "Ignoriert"
|
||||
|
||||
#: ../../mod/contacts.php:433
|
||||
msgid "Hidden Contacts"
|
||||
msgstr "Verborgene Kontakte"
|
||||
#: ../../mod/contacts.php:431
|
||||
msgid "Archived"
|
||||
msgstr "Archiviert"
|
||||
|
||||
#: ../../mod/contacts.php:483
|
||||
#: ../../mod/contacts.php:437
|
||||
msgid "Hidden"
|
||||
msgstr "Verborgen"
|
||||
|
||||
#: ../../mod/contacts.php:487
|
||||
msgid "Mutual Friendship"
|
||||
msgstr "Beidseitige Freundschaft"
|
||||
|
||||
#: ../../mod/contacts.php:487
|
||||
#: ../../mod/contacts.php:491
|
||||
msgid "is a fan of yours"
|
||||
msgstr "ist ein Fan von dir"
|
||||
|
||||
#: ../../mod/contacts.php:491
|
||||
#: ../../mod/contacts.php:495
|
||||
msgid "you are a fan of"
|
||||
msgstr "du bist Fan von"
|
||||
|
||||
#: ../../mod/contacts.php:508 ../../mod/nogroup.php:41
|
||||
#: ../../mod/contacts.php:512 ../../mod/nogroup.php:41
|
||||
msgid "Edit contact"
|
||||
msgstr "Kontakt bearbeiten"
|
||||
|
||||
#: ../../mod/contacts.php:529
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:231
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:229
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:229
|
||||
#: ../../view/theme/diabook/theme.php:248
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:231
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:231
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:231
|
||||
#: ../../mod/contacts.php:533 ../../view/theme/diabook/theme.php:253
|
||||
#: ../../include/nav.php:139
|
||||
msgid "Contacts"
|
||||
msgstr "Kontakte"
|
||||
|
||||
#: ../../mod/contacts.php:533
|
||||
#: ../../mod/contacts.php:537
|
||||
msgid "Search your contacts"
|
||||
msgstr "Suche in deinen Kontakten"
|
||||
|
||||
#: ../../mod/contacts.php:534 ../../mod/directory.php:57
|
||||
#: ../../mod/contacts.php:538 ../../mod/directory.php:57
|
||||
msgid "Finding: "
|
||||
msgstr "Funde: "
|
||||
|
||||
#: ../../mod/contacts.php:535 ../../mod/directory.php:59
|
||||
#: ../../mod/contacts.php:539 ../../mod/directory.php:59
|
||||
#: ../../include/contact_widgets.php:33
|
||||
msgid "Find"
|
||||
msgstr "Finde"
|
||||
|
|
@ -1690,7 +1660,7 @@ msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
|
|||
#: ../../mod/register.php:388 ../../mod/register.php:442
|
||||
#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:732
|
||||
#: ../../addon/facebook/facebook.php:650
|
||||
#: ../../addon/facebook/facebook.php:1136
|
||||
#: ../../addon/facebook/facebook.php:1139
|
||||
#: ../../addon/testdrive/testdrive.php:58 ../../include/items.php:2700
|
||||
msgid "Administrator"
|
||||
msgstr "Administrator"
|
||||
|
|
@ -1769,468 +1739,472 @@ msgstr "Verbundene Programme"
|
|||
msgid "Export personal data"
|
||||
msgstr "Persönliche Daten exportieren"
|
||||
|
||||
#: ../../mod/settings.php:83 ../../mod/admin.php:665 ../../mod/admin.php:870
|
||||
#: ../../mod/settings.php:80
|
||||
msgid "Remove account"
|
||||
msgstr "Account entfernen"
|
||||
|
||||
#: ../../mod/settings.php:88 ../../mod/admin.php:667 ../../mod/admin.php:872
|
||||
#: ../../addon/mathjax/mathjax.php:36 ../../include/nav.php:137
|
||||
msgid "Settings"
|
||||
msgstr "Einstellungen"
|
||||
|
||||
#: ../../mod/settings.php:126
|
||||
#: ../../mod/settings.php:131
|
||||
msgid "Missing some important data!"
|
||||
msgstr "Wichtige Daten fehlen!"
|
||||
|
||||
#: ../../mod/settings.php:129 ../../mod/settings.php:558
|
||||
#: ../../mod/settings.php:134 ../../mod/settings.php:563
|
||||
#: ../../mod/admin.php:97
|
||||
msgid "Update"
|
||||
msgstr "Aktualisierungen"
|
||||
|
||||
#: ../../mod/settings.php:234
|
||||
#: ../../mod/settings.php:239
|
||||
msgid "Failed to connect with email account using the settings provided."
|
||||
msgstr "Konnte das Email Konto mit den angegebenen Einstellungen nicht erreichen."
|
||||
|
||||
#: ../../mod/settings.php:239
|
||||
#: ../../mod/settings.php:244
|
||||
msgid "Email settings updated."
|
||||
msgstr "EMail Einstellungen bearbeitet."
|
||||
|
||||
#: ../../mod/settings.php:298
|
||||
#: ../../mod/settings.php:303
|
||||
msgid "Passwords do not match. Password unchanged."
|
||||
msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
|
||||
|
||||
#: ../../mod/settings.php:303
|
||||
#: ../../mod/settings.php:308
|
||||
msgid "Empty passwords are not allowed. Password unchanged."
|
||||
msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
|
||||
|
||||
#: ../../mod/settings.php:314
|
||||
#: ../../mod/settings.php:319
|
||||
msgid "Password changed."
|
||||
msgstr "Passwort ändern."
|
||||
|
||||
#: ../../mod/settings.php:316
|
||||
#: ../../mod/settings.php:321
|
||||
msgid "Password update failed. Please try again."
|
||||
msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
|
||||
|
||||
#: ../../mod/settings.php:379
|
||||
#: ../../mod/settings.php:384
|
||||
msgid " Please use a shorter name."
|
||||
msgstr " Bitte verwende einen kürzeren Namen."
|
||||
|
||||
#: ../../mod/settings.php:381
|
||||
#: ../../mod/settings.php:386
|
||||
msgid " Name too short."
|
||||
msgstr " Name ist zu kurz."
|
||||
|
||||
#: ../../mod/settings.php:387
|
||||
#: ../../mod/settings.php:392
|
||||
msgid " Not valid email."
|
||||
msgstr " Keine gültige E-Mail."
|
||||
|
||||
#: ../../mod/settings.php:389
|
||||
#: ../../mod/settings.php:394
|
||||
msgid " Cannot change to that email."
|
||||
msgstr "Ändern der E-Mail nicht möglich. "
|
||||
|
||||
#: ../../mod/settings.php:461 ../../addon/facebook/facebook.php:469
|
||||
#: ../../addon/impressum/impressum.php:75
|
||||
#: ../../mod/settings.php:466 ../../addon/facebook/facebook.php:469
|
||||
#: ../../addon/impressum/impressum.php:77
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:80
|
||||
#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105
|
||||
#: ../../addon/twitter/twitter.php:370
|
||||
msgid "Settings updated."
|
||||
msgstr "Einstellungen aktualisiert."
|
||||
|
||||
#: ../../mod/settings.php:531 ../../mod/settings.php:557
|
||||
#: ../../mod/settings.php:593
|
||||
#: ../../mod/settings.php:536 ../../mod/settings.php:562
|
||||
#: ../../mod/settings.php:598
|
||||
msgid "Add application"
|
||||
msgstr "Programm hinzufügen"
|
||||
|
||||
#: ../../mod/settings.php:535 ../../mod/settings.php:561
|
||||
#: ../../mod/settings.php:540 ../../mod/settings.php:566
|
||||
#: ../../addon/statusnet/statusnet.php:547
|
||||
msgid "Consumer Key"
|
||||
msgstr "Consumer Key"
|
||||
|
||||
#: ../../mod/settings.php:536 ../../mod/settings.php:562
|
||||
#: ../../mod/settings.php:541 ../../mod/settings.php:567
|
||||
#: ../../addon/statusnet/statusnet.php:546
|
||||
msgid "Consumer Secret"
|
||||
msgstr "Consumer Secret"
|
||||
|
||||
#: ../../mod/settings.php:537 ../../mod/settings.php:563
|
||||
#: ../../mod/settings.php:542 ../../mod/settings.php:568
|
||||
msgid "Redirect"
|
||||
msgstr "Umleiten"
|
||||
|
||||
#: ../../mod/settings.php:538 ../../mod/settings.php:564
|
||||
#: ../../mod/settings.php:543 ../../mod/settings.php:569
|
||||
msgid "Icon url"
|
||||
msgstr "Icon URL"
|
||||
|
||||
#: ../../mod/settings.php:549
|
||||
#: ../../mod/settings.php:554
|
||||
msgid "You can't edit this application."
|
||||
msgstr "Du kannst dieses Programm nicht bearbeiten."
|
||||
|
||||
#: ../../mod/settings.php:592
|
||||
#: ../../mod/settings.php:597
|
||||
msgid "Connected Apps"
|
||||
msgstr "Verbundene Programme"
|
||||
|
||||
#: ../../mod/settings.php:596
|
||||
#: ../../mod/settings.php:601
|
||||
msgid "Client key starts with"
|
||||
msgstr "Anwender Schlüssel beginnt mit"
|
||||
|
||||
#: ../../mod/settings.php:597
|
||||
#: ../../mod/settings.php:602
|
||||
msgid "No name"
|
||||
msgstr "Kein Name"
|
||||
|
||||
#: ../../mod/settings.php:598
|
||||
#: ../../mod/settings.php:603
|
||||
msgid "Remove authorization"
|
||||
msgstr "Autorisierung entziehen"
|
||||
|
||||
#: ../../mod/settings.php:609
|
||||
#: ../../mod/settings.php:614
|
||||
msgid "No Plugin settings configured"
|
||||
msgstr "Keine Plugin-Einstellungen konfiguriert"
|
||||
|
||||
#: ../../mod/settings.php:617 ../../addon/widgets/widgets.php:123
|
||||
#: ../../mod/settings.php:622 ../../addon/widgets/widgets.php:123
|
||||
msgid "Plugin Settings"
|
||||
msgstr "Plugin-Einstellungen"
|
||||
|
||||
#: ../../mod/settings.php:629 ../../mod/settings.php:630
|
||||
#: ../../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:629 ../../mod/settings.php:630
|
||||
#: ../../mod/settings.php:634 ../../mod/settings.php:635
|
||||
msgid "enabled"
|
||||
msgstr "eingeschaltet"
|
||||
|
||||
#: ../../mod/settings.php:629 ../../mod/settings.php:630
|
||||
#: ../../mod/settings.php:634 ../../mod/settings.php:635
|
||||
msgid "disabled"
|
||||
msgstr "ausgeschaltet"
|
||||
|
||||
#: ../../mod/settings.php:630
|
||||
#: ../../mod/settings.php:635
|
||||
msgid "StatusNet"
|
||||
msgstr "StatusNet"
|
||||
|
||||
#: ../../mod/settings.php:660
|
||||
#: ../../mod/settings.php:665
|
||||
msgid "Connector Settings"
|
||||
msgstr "Verbindungs-Einstellungen"
|
||||
|
||||
#: ../../mod/settings.php:665
|
||||
#: ../../mod/settings.php:670
|
||||
msgid "Email/Mailbox Setup"
|
||||
msgstr "E-Mail/Postfach-Einstellungen"
|
||||
|
||||
#: ../../mod/settings.php:666
|
||||
#: ../../mod/settings.php:671
|
||||
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:667
|
||||
#: ../../mod/settings.php:672
|
||||
msgid "Last successful email check:"
|
||||
msgstr "Letzter erfolgreicher Email Check"
|
||||
|
||||
#: ../../mod/settings.php:668
|
||||
#: ../../mod/settings.php:673
|
||||
msgid "Email access is disabled on this site."
|
||||
msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
|
||||
|
||||
#: ../../mod/settings.php:669
|
||||
#: ../../mod/settings.php:674
|
||||
msgid "IMAP server name:"
|
||||
msgstr "IMAP-Server-Name:"
|
||||
|
||||
#: ../../mod/settings.php:670
|
||||
#: ../../mod/settings.php:675
|
||||
msgid "IMAP port:"
|
||||
msgstr "IMAP-Port:"
|
||||
|
||||
#: ../../mod/settings.php:671
|
||||
#: ../../mod/settings.php:676
|
||||
msgid "Security:"
|
||||
msgstr "Sicherheit:"
|
||||
|
||||
#: ../../mod/settings.php:671 ../../mod/settings.php:676
|
||||
#: ../../mod/settings.php:676 ../../mod/settings.php:681
|
||||
msgid "None"
|
||||
msgstr "Keine"
|
||||
|
||||
#: ../../mod/settings.php:672
|
||||
#: ../../mod/settings.php:677
|
||||
msgid "Email login name:"
|
||||
msgstr "E-Mail-Login-Name:"
|
||||
|
||||
#: ../../mod/settings.php:673
|
||||
#: ../../mod/settings.php:678
|
||||
msgid "Email password:"
|
||||
msgstr "E-Mail-Passwort:"
|
||||
|
||||
#: ../../mod/settings.php:674
|
||||
#: ../../mod/settings.php:679
|
||||
msgid "Reply-to address:"
|
||||
msgstr "Reply-to Adresse:"
|
||||
|
||||
#: ../../mod/settings.php:675
|
||||
#: ../../mod/settings.php:680
|
||||
msgid "Send public posts to all email contacts:"
|
||||
msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
|
||||
|
||||
#: ../../mod/settings.php:676
|
||||
#: ../../mod/settings.php:681
|
||||
msgid "Action after import:"
|
||||
msgstr "Aktion nach Import:"
|
||||
|
||||
#: ../../mod/settings.php:676
|
||||
#: ../../mod/settings.php:681
|
||||
msgid "Mark as seen"
|
||||
msgstr "Als gelesen markieren"
|
||||
|
||||
#: ../../mod/settings.php:676
|
||||
#: ../../mod/settings.php:681
|
||||
msgid "Move to folder"
|
||||
msgstr "In einen Ordner verschieben"
|
||||
|
||||
#: ../../mod/settings.php:677
|
||||
#: ../../mod/settings.php:682
|
||||
msgid "Move to folder:"
|
||||
msgstr "In diesen Ordner verschieben:"
|
||||
|
||||
#: ../../mod/settings.php:737
|
||||
#: ../../mod/settings.php:742
|
||||
msgid "Display Settings"
|
||||
msgstr "Anzeige Einstellungen"
|
||||
|
||||
#: ../../mod/settings.php:743
|
||||
#: ../../mod/settings.php:748
|
||||
msgid "Display Theme:"
|
||||
msgstr "Theme:"
|
||||
|
||||
#: ../../mod/settings.php:744
|
||||
#: ../../mod/settings.php:749
|
||||
msgid "Update browser every xx seconds"
|
||||
msgstr "Browser alle xx Sekunden aktualisieren"
|
||||
|
||||
#: ../../mod/settings.php:744
|
||||
#: ../../mod/settings.php:749
|
||||
msgid "Minimum of 10 seconds, no maximum"
|
||||
msgstr "Minimal 10 Sekunden, kein Maximum"
|
||||
|
||||
#: ../../mod/settings.php:745
|
||||
#: ../../mod/settings.php:750
|
||||
msgid "Number of items to display on the network page:"
|
||||
msgstr "Zahl der Beiträge, welche pro Netzwerkseite angezeigt werden sollen: "
|
||||
|
||||
#: ../../mod/settings.php:745
|
||||
#: ../../mod/settings.php:750
|
||||
msgid "Maximum of 100 items"
|
||||
msgstr "Maximal 100 Beiträge"
|
||||
|
||||
#: ../../mod/settings.php:746
|
||||
#: ../../mod/settings.php:751
|
||||
msgid "Don't show emoticons"
|
||||
msgstr "Keine Smilies anzeigen"
|
||||
|
||||
#: ../../mod/settings.php:811 ../../mod/admin.php:173 ../../mod/admin.php:551
|
||||
#: ../../mod/settings.php:816 ../../mod/admin.php:173 ../../mod/admin.php:553
|
||||
msgid "Normal Account"
|
||||
msgstr "Normaler Account"
|
||||
|
||||
#: ../../mod/settings.php:812
|
||||
#: ../../mod/settings.php:817
|
||||
msgid "This account is a normal personal profile"
|
||||
msgstr "Dieser Account ist ein normales persönliches Profil"
|
||||
|
||||
#: ../../mod/settings.php:815 ../../mod/admin.php:174 ../../mod/admin.php:552
|
||||
#: ../../mod/settings.php:820 ../../mod/admin.php:174 ../../mod/admin.php:554
|
||||
msgid "Soapbox Account"
|
||||
msgstr "Sandkasten-Account"
|
||||
|
||||
#: ../../mod/settings.php:816
|
||||
#: ../../mod/settings.php:821
|
||||
msgid "Automatically approve all connection/friend requests as read-only fans"
|
||||
msgstr "Freundschaftsanfragen werden automatisch als Nurlese-Fans akzeptiert"
|
||||
|
||||
#: ../../mod/settings.php:819 ../../mod/admin.php:175 ../../mod/admin.php:553
|
||||
#: ../../mod/settings.php:824 ../../mod/admin.php:175 ../../mod/admin.php:555
|
||||
msgid "Community/Celebrity Account"
|
||||
msgstr "Gemeinschafts/Promi-Account"
|
||||
|
||||
#: ../../mod/settings.php:820
|
||||
#: ../../mod/settings.php:825
|
||||
msgid ""
|
||||
"Automatically approve all connection/friend requests as read-write fans"
|
||||
msgstr "Freundschaftsanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert"
|
||||
|
||||
#: ../../mod/settings.php:823 ../../mod/admin.php:176 ../../mod/admin.php:554
|
||||
#: ../../mod/settings.php:828 ../../mod/admin.php:176 ../../mod/admin.php:556
|
||||
msgid "Automatic Friend Account"
|
||||
msgstr "Automatischer Freundesaccount"
|
||||
|
||||
#: ../../mod/settings.php:824
|
||||
#: ../../mod/settings.php:829
|
||||
msgid "Automatically approve all connection/friend requests as friends"
|
||||
msgstr "Freundschaftsanfragen werden automatisch als Freund akzeptiert"
|
||||
|
||||
#: ../../mod/settings.php:834
|
||||
#: ../../mod/settings.php:839
|
||||
msgid "OpenID:"
|
||||
msgstr "OpenID:"
|
||||
|
||||
#: ../../mod/settings.php:834
|
||||
#: ../../mod/settings.php:839
|
||||
msgid "(Optional) Allow this OpenID to login to this account."
|
||||
msgstr "(Optional) Erlaube die Anmeldung für diesen Account mit dieser OpenID."
|
||||
|
||||
#: ../../mod/settings.php:844
|
||||
#: ../../mod/settings.php:849
|
||||
msgid "Publish your default profile in your local site directory?"
|
||||
msgstr "Veröffentliche dein Standardprofil im Verzeichnis der lokalen Seite?"
|
||||
|
||||
#: ../../mod/settings.php:850
|
||||
#: ../../mod/settings.php:855
|
||||
msgid "Publish your default profile in the global social directory?"
|
||||
msgstr "Veröffentliche dein Standardprofil im weltweiten Verzeichnis?"
|
||||
|
||||
#: ../../mod/settings.php:858
|
||||
#: ../../mod/settings.php:863
|
||||
msgid "Hide your contact/friend list from viewers of your default profile?"
|
||||
msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
|
||||
|
||||
#: ../../mod/settings.php:862
|
||||
#: ../../mod/settings.php:867
|
||||
msgid "Hide your profile details from unknown viewers?"
|
||||
msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
|
||||
|
||||
#: ../../mod/settings.php:867
|
||||
#: ../../mod/settings.php:872
|
||||
msgid "Allow friends to post to your profile page?"
|
||||
msgstr "Deinen Kontakten erlauben, auf deine Pinnwand zu schreiben?"
|
||||
|
||||
#: ../../mod/settings.php:873
|
||||
#: ../../mod/settings.php:878
|
||||
msgid "Allow friends to tag your posts?"
|
||||
msgstr "Deinen Kontakten erlauben, deine Beiträge mit Schlagwörtern zu versehen?"
|
||||
|
||||
#: ../../mod/settings.php:879
|
||||
#: ../../mod/settings.php:884
|
||||
msgid "Allow us to suggest you as a potential friend to new members?"
|
||||
msgstr "Erlaube uns dich als potentiellen Kontakt für neue Mitglieder vorzuschlagen?"
|
||||
|
||||
#: ../../mod/settings.php:885
|
||||
#: ../../mod/settings.php:890
|
||||
msgid "Permit unknown people to send you private mail?"
|
||||
msgstr "Erlaube es Unbekannten dir private Nachrichten zu schicken?"
|
||||
|
||||
#: ../../mod/settings.php:896
|
||||
#: ../../mod/settings.php:901
|
||||
msgid "Profile is <strong>not published</strong>."
|
||||
msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
|
||||
|
||||
#: ../../mod/settings.php:902 ../../mod/profile_photo.php:211
|
||||
#: ../../mod/settings.php:907 ../../mod/profile_photo.php:211
|
||||
msgid "or"
|
||||
msgstr "oder"
|
||||
|
||||
#: ../../mod/settings.php:907
|
||||
#: ../../mod/settings.php:912
|
||||
msgid "Your Identity Address is"
|
||||
msgstr "Die Adresse deines Profils lautet:"
|
||||
|
||||
#: ../../mod/settings.php:918
|
||||
#: ../../mod/settings.php:923
|
||||
msgid "Automatically expire posts after this many days:"
|
||||
msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen"
|
||||
|
||||
#: ../../mod/settings.php:918
|
||||
#: ../../mod/settings.php:923
|
||||
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:919
|
||||
#: ../../mod/settings.php:924
|
||||
msgid "Advanced expiration settings"
|
||||
msgstr "Erweiterte Verfallseinstellungen"
|
||||
|
||||
#: ../../mod/settings.php:920
|
||||
#: ../../mod/settings.php:925
|
||||
msgid "Advanced Expiration"
|
||||
msgstr "Erweitertes Verfallen"
|
||||
|
||||
#: ../../mod/settings.php:921
|
||||
#: ../../mod/settings.php:926
|
||||
msgid "Expire posts:"
|
||||
msgstr "Beiträge verfallen lassen:"
|
||||
|
||||
#: ../../mod/settings.php:922
|
||||
#: ../../mod/settings.php:927
|
||||
msgid "Expire personal notes:"
|
||||
msgstr "Persönliche Notizen verfallen lassen:"
|
||||
|
||||
#: ../../mod/settings.php:923
|
||||
#: ../../mod/settings.php:928
|
||||
msgid "Expire starred posts:"
|
||||
msgstr "Markierte Beiträge verfallen lassen:"
|
||||
|
||||
#: ../../mod/settings.php:924
|
||||
#: ../../mod/settings.php:929
|
||||
msgid "Expire photos:"
|
||||
msgstr "Fotos verfallen lassen:"
|
||||
|
||||
#: ../../mod/settings.php:928
|
||||
#: ../../mod/settings.php:933
|
||||
msgid "Account Settings"
|
||||
msgstr "Account-Einstellungen"
|
||||
|
||||
#: ../../mod/settings.php:937
|
||||
#: ../../mod/settings.php:942
|
||||
msgid "Password Settings"
|
||||
msgstr "Passwort-Einstellungen"
|
||||
|
||||
#: ../../mod/settings.php:938
|
||||
#: ../../mod/settings.php:943
|
||||
msgid "New Password:"
|
||||
msgstr "Neues Passwort:"
|
||||
|
||||
#: ../../mod/settings.php:939
|
||||
#: ../../mod/settings.php:944
|
||||
msgid "Confirm:"
|
||||
msgstr "Bestätigen:"
|
||||
|
||||
#: ../../mod/settings.php:939
|
||||
#: ../../mod/settings.php:944
|
||||
msgid "Leave password fields blank unless changing"
|
||||
msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern"
|
||||
|
||||
#: ../../mod/settings.php:943
|
||||
#: ../../mod/settings.php:948
|
||||
msgid "Basic Settings"
|
||||
msgstr "Grundeinstellungen"
|
||||
|
||||
#: ../../mod/settings.php:944 ../../include/profile_advanced.php:15
|
||||
#: ../../mod/settings.php:949 ../../include/profile_advanced.php:15
|
||||
msgid "Full Name:"
|
||||
msgstr "Kompletter Name:"
|
||||
|
||||
#: ../../mod/settings.php:945
|
||||
#: ../../mod/settings.php:950
|
||||
msgid "Email Address:"
|
||||
msgstr "Emailadresse:"
|
||||
|
||||
#: ../../mod/settings.php:946
|
||||
#: ../../mod/settings.php:951
|
||||
msgid "Your Timezone:"
|
||||
msgstr "Deine Zeitzone:"
|
||||
|
||||
#: ../../mod/settings.php:947
|
||||
#: ../../mod/settings.php:952
|
||||
msgid "Default Post Location:"
|
||||
msgstr "Standardstandort:"
|
||||
|
||||
#: ../../mod/settings.php:948
|
||||
#: ../../mod/settings.php:953
|
||||
msgid "Use Browser Location:"
|
||||
msgstr "Verwende den Standort des Browsers:"
|
||||
|
||||
#: ../../mod/settings.php:951
|
||||
#: ../../mod/settings.php:956
|
||||
msgid "Security and Privacy Settings"
|
||||
msgstr "Sicherheits- und Privatsphäre-Einstellungen"
|
||||
|
||||
#: ../../mod/settings.php:953
|
||||
#: ../../mod/settings.php:958
|
||||
msgid "Maximum Friend Requests/Day:"
|
||||
msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:"
|
||||
|
||||
#: ../../mod/settings.php:953 ../../mod/settings.php:968
|
||||
#: ../../mod/settings.php:958 ../../mod/settings.php:973
|
||||
msgid "(to prevent spam abuse)"
|
||||
msgstr "(um SPAM zu vermeiden)"
|
||||
|
||||
#: ../../mod/settings.php:954
|
||||
#: ../../mod/settings.php:959
|
||||
msgid "Default Post Permissions"
|
||||
msgstr "Standard-Zugriffsrechte für Beiträge"
|
||||
|
||||
#: ../../mod/settings.php:955
|
||||
#: ../../mod/settings.php:960
|
||||
msgid "(click to open/close)"
|
||||
msgstr "(klicke zum öffnen/schließen)"
|
||||
|
||||
#: ../../mod/settings.php:968
|
||||
#: ../../mod/settings.php:973
|
||||
msgid "Maximum private messages per day from unknown people:"
|
||||
msgstr "Maximale Anzahl von privaten Nachrichten, die dir unbekannte Personen pro Tag senden dürfen:"
|
||||
|
||||
#: ../../mod/settings.php:971
|
||||
#: ../../mod/settings.php:976
|
||||
msgid "Notification Settings"
|
||||
msgstr "Benachrichtigungseinstellungen"
|
||||
|
||||
#: ../../mod/settings.php:972
|
||||
#: ../../mod/settings.php:977
|
||||
msgid "By default post a status message when:"
|
||||
msgstr "Standardmäßig eine Status-Nachricht posten wenn:"
|
||||
|
||||
#: ../../mod/settings.php:973
|
||||
#: ../../mod/settings.php:978
|
||||
msgid "accepting a friend request"
|
||||
msgstr "akzeptieren einer Freundschaftsanfrage"
|
||||
|
||||
#: ../../mod/settings.php:974
|
||||
#: ../../mod/settings.php:979
|
||||
msgid "making an <em>interesting</em> profile change"
|
||||
msgstr "<em>interessante</em> Änderungen am Profil gemacht werden"
|
||||
|
||||
#: ../../mod/settings.php:975
|
||||
#: ../../mod/settings.php:980
|
||||
msgid "Send a notification email when:"
|
||||
msgstr "Benachrichtigungs-E-Mail senden wenn:"
|
||||
|
||||
#: ../../mod/settings.php:976
|
||||
#: ../../mod/settings.php:981
|
||||
msgid "You receive an introduction"
|
||||
msgstr "- du eine Kontaktanfrage erhältst"
|
||||
|
||||
#: ../../mod/settings.php:977
|
||||
#: ../../mod/settings.php:982
|
||||
msgid "Your introductions are confirmed"
|
||||
msgstr "- eine deiner Kontaktanfragen akzeptiert wurde"
|
||||
|
||||
#: ../../mod/settings.php:978
|
||||
#: ../../mod/settings.php:983
|
||||
msgid "Someone writes on your profile wall"
|
||||
msgstr "- jemand etwas auf deine Pinnwand schreibt"
|
||||
|
||||
#: ../../mod/settings.php:979
|
||||
#: ../../mod/settings.php:984
|
||||
msgid "Someone writes a followup comment"
|
||||
msgstr "- jemand auch einen Kommentar verfasst"
|
||||
|
||||
#: ../../mod/settings.php:980
|
||||
#: ../../mod/settings.php:985
|
||||
msgid "You receive a private message"
|
||||
msgstr "- du eine private Nachricht erhältst"
|
||||
|
||||
#: ../../mod/settings.php:981
|
||||
#: ../../mod/settings.php:986
|
||||
msgid "You receive a friend suggestion"
|
||||
msgstr "- du eine Empfehlung erhältst"
|
||||
|
||||
#: ../../mod/settings.php:982
|
||||
#: ../../mod/settings.php:987
|
||||
msgid "You are tagged in a post"
|
||||
msgstr "- du in einem Beitrag erwähnt wurdest"
|
||||
|
||||
#: ../../mod/settings.php:985
|
||||
#: ../../mod/settings.php:990
|
||||
msgid "Advanced Page Settings"
|
||||
msgstr "Erweiterte Seiten-Einstellungen"
|
||||
|
||||
|
|
@ -2320,12 +2294,14 @@ 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:1476
|
||||
#: ../../mod/notes.php:44 ../../boot.php:1486
|
||||
msgid "Personal Notes"
|
||||
msgstr "Persönliche Notizen"
|
||||
|
||||
#: ../../mod/notes.php:63 ../../mod/filer.php:30
|
||||
#: ../../addon/facebook/facebook.php:715 ../../include/text.php:652
|
||||
#: ../../addon/facebook/facebook.php:717
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:147
|
||||
#: ../../include/text.php:652
|
||||
msgid "Save"
|
||||
msgstr "Speichern"
|
||||
|
||||
|
|
@ -2359,7 +2335,7 @@ msgid "No recipient."
|
|||
msgstr "Kein Empfänger."
|
||||
|
||||
#: ../../mod/wallmessage.php:124 ../../mod/message.php:169
|
||||
#: ../../include/conversation.php:910
|
||||
#: ../../include/conversation.php:918
|
||||
msgid "Please enter a link URL:"
|
||||
msgstr "Bitte gib die URL des Links ein:"
|
||||
|
||||
|
|
@ -2375,17 +2351,17 @@ msgid ""
|
|||
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:178
|
||||
#: ../../mod/message.php:347
|
||||
#: ../../mod/message.php:370
|
||||
msgid "To:"
|
||||
msgstr "An:"
|
||||
|
||||
#: ../../mod/wallmessage.php:134 ../../mod/message.php:179
|
||||
#: ../../mod/message.php:348
|
||||
#: ../../mod/message.php:371
|
||||
msgid "Subject:"
|
||||
msgstr "Betreff:"
|
||||
|
||||
#: ../../mod/wallmessage.php:140 ../../mod/message.php:183
|
||||
#: ../../mod/message.php:351 ../../mod/invite.php:113
|
||||
#: ../../mod/message.php:374 ../../mod/invite.php:113
|
||||
msgid "Your message:"
|
||||
msgstr "Deine Nachricht:"
|
||||
|
||||
|
|
@ -2567,16 +2543,9 @@ msgstr "Ungültiger Profil-Bezeichner"
|
|||
msgid "Profile Visibility Editor"
|
||||
msgstr "Editor für die Profil-Sichtbarkeit"
|
||||
|
||||
#: ../../mod/profperm.php:103
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:230
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:228
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:228
|
||||
#: ../../view/theme/diabook/theme.php:247
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:230
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:230
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:230
|
||||
#: ../../mod/profperm.php:103 ../../view/theme/diabook/theme.php:252
|
||||
#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:74
|
||||
#: ../../include/nav.php:50 ../../boot.php:1458
|
||||
#: ../../include/nav.php:50 ../../boot.php:1468
|
||||
msgid "Profile"
|
||||
msgstr "Profil"
|
||||
|
||||
|
|
@ -2725,7 +2694,7 @@ msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung mögli
|
|||
msgid "Your invitation ID: "
|
||||
msgstr "ID deiner Einladung: "
|
||||
|
||||
#: ../../mod/register.php:553 ../../mod/admin.php:393
|
||||
#: ../../mod/register.php:553 ../../mod/admin.php:394
|
||||
msgid "Registration"
|
||||
msgstr "Registrierung"
|
||||
|
||||
|
|
@ -2757,39 +2726,20 @@ msgid "People Search"
|
|||
msgstr "Personen Suche"
|
||||
|
||||
#: ../../mod/like.php:127 ../../mod/tagger.php:70
|
||||
#: ../../addon/facebook/facebook.php:1655
|
||||
#: ../../addon/facebook/facebook.php:1533
|
||||
#: ../../addon/communityhome/communityhome.php:158
|
||||
#: ../../addon/communityhome/communityhome.php:167
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:83
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:92
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:82
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:91
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:82
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:91
|
||||
#: ../../view/theme/diabook/theme.php:97
|
||||
#: ../../view/theme/diabook/theme.php:106
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:83
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:92
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:83
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:92
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:83
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:92
|
||||
#: ../../include/diaspora.php:1654 ../../include/conversation.php:48
|
||||
#: ../../include/conversation.php:57 ../../include/conversation.php:121
|
||||
#: ../../include/conversation.php:130
|
||||
#: ../../view/theme/diabook/theme.php:102
|
||||
#: ../../view/theme/diabook/theme.php:111 ../../include/diaspora.php:1654
|
||||
#: ../../include/conversation.php:48 ../../include/conversation.php:57
|
||||
#: ../../include/conversation.php:121 ../../include/conversation.php:130
|
||||
msgid "status"
|
||||
msgstr "Status"
|
||||
|
||||
#: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1659
|
||||
#: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1537
|
||||
#: ../../addon/communityhome/communityhome.php:172
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:97
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:96
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:96
|
||||
#: ../../view/theme/diabook/theme.php:111
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:97
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:97
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:97
|
||||
#: ../../include/diaspora.php:1670 ../../include/conversation.php:65
|
||||
#: ../../view/theme/diabook/theme.php:116 ../../include/diaspora.php:1670
|
||||
#: ../../include/conversation.php:65
|
||||
#, php-format
|
||||
msgid "%1$s likes %2$s's %3$s"
|
||||
msgstr "%1$s mag %2$ss %3$s"
|
||||
|
|
@ -2800,7 +2750,7 @@ 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:149
|
||||
#: ../../mod/admin.php:614 ../../mod/admin.php:813 ../../mod/display.php:37
|
||||
#: ../../mod/admin.php:616 ../../mod/admin.php:815 ../../mod/display.php:37
|
||||
#: ../../mod/display.php:142 ../../include/items.php:3083
|
||||
msgid "Item not found."
|
||||
msgstr "Beitrag nicht gefunden."
|
||||
|
|
@ -2809,15 +2759,8 @@ msgstr "Beitrag nicht gefunden."
|
|||
msgid "Access denied."
|
||||
msgstr "Zugriff verweigert."
|
||||
|
||||
#: ../../mod/fbrowser.php:23
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:232
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:230
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:230
|
||||
#: ../../view/theme/diabook/theme.php:249
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:232
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:232
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:232
|
||||
#: ../../include/nav.php:51 ../../boot.php:1463
|
||||
#: ../../mod/fbrowser.php:23 ../../view/theme/diabook/theme.php:254
|
||||
#: ../../include/nav.php:51 ../../boot.php:1473
|
||||
msgid "Photos"
|
||||
msgstr "Bilder"
|
||||
|
||||
|
|
@ -2846,8 +2789,8 @@ msgstr "Konnte den Originalbeitrag nicht finden."
|
|||
msgid "Empty post discarded."
|
||||
msgstr "Leerer Beitrag wurde verworfen."
|
||||
|
||||
#: ../../mod/item.php:372 ../../mod/wall_upload.php:85
|
||||
#: ../../mod/wall_upload.php:94 ../../mod/wall_upload.php:101
|
||||
#: ../../mod/item.php:372 ../../mod/wall_upload.php:99
|
||||
#: ../../mod/wall_upload.php:108 ../../mod/wall_upload.php:115
|
||||
#: ../../include/message.php:144
|
||||
msgid "Wall Photos"
|
||||
msgstr "Pinnwand-Bilder"
|
||||
|
|
@ -2899,7 +2842,7 @@ msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue
|
|||
msgid "Unable to process image"
|
||||
msgstr "Bild konnte nicht verarbeitet werden"
|
||||
|
||||
#: ../../mod/profile_photo.php:115 ../../mod/wall_upload.php:60
|
||||
#: ../../mod/profile_photo.php:115 ../../mod/wall_upload.php:74
|
||||
#, php-format
|
||||
msgid "Image exceeds size limit of %d"
|
||||
msgstr "Bildgröße überschreitet das Limit von %d"
|
||||
|
|
@ -2993,7 +2936,7 @@ msgstr "Du und %s"
|
|||
msgid "%s and You"
|
||||
msgstr "%s und Du"
|
||||
|
||||
#: ../../mod/message.php:242 ../../mod/message.php:340
|
||||
#: ../../mod/message.php:242 ../../mod/message.php:363
|
||||
msgid "Delete conversation"
|
||||
msgstr "Unterhaltung löschen"
|
||||
|
||||
|
|
@ -3012,17 +2955,17 @@ msgstr[1] "%d Nachrichten"
|
|||
msgid "Message not available."
|
||||
msgstr "Nachricht nicht verfügbar."
|
||||
|
||||
#: ../../mod/message.php:324
|
||||
#: ../../mod/message.php:347
|
||||
msgid "Delete message"
|
||||
msgstr "Nachricht löschen"
|
||||
|
||||
#: ../../mod/message.php:342
|
||||
#: ../../mod/message.php:365
|
||||
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:346
|
||||
#: ../../mod/message.php:369
|
||||
msgid "Send Reply"
|
||||
msgstr "Antwort senden"
|
||||
|
||||
|
|
@ -3039,23 +2982,23 @@ msgstr "Keine Freunde zum Anzeigen."
|
|||
msgid "Theme settings updated."
|
||||
msgstr "Themen Einstellungen aktualisiert."
|
||||
|
||||
#: ../../mod/admin.php:93 ../../mod/admin.php:391
|
||||
#: ../../mod/admin.php:93 ../../mod/admin.php:392
|
||||
msgid "Site"
|
||||
msgstr "Seite"
|
||||
|
||||
#: ../../mod/admin.php:94 ../../mod/admin.php:569 ../../mod/admin.php:581
|
||||
#: ../../mod/admin.php:94 ../../mod/admin.php:571 ../../mod/admin.php:583
|
||||
msgid "Users"
|
||||
msgstr "Nutzer"
|
||||
|
||||
#: ../../mod/admin.php:95 ../../mod/admin.php:663 ../../mod/admin.php:705
|
||||
#: ../../mod/admin.php:95 ../../mod/admin.php:665 ../../mod/admin.php:707
|
||||
msgid "Plugins"
|
||||
msgstr "Plugins"
|
||||
|
||||
#: ../../mod/admin.php:96 ../../mod/admin.php:868 ../../mod/admin.php:904
|
||||
#: ../../mod/admin.php:96 ../../mod/admin.php:870 ../../mod/admin.php:906
|
||||
msgid "Themes"
|
||||
msgstr "Themen"
|
||||
|
||||
#: ../../mod/admin.php:111 ../../mod/admin.php:992
|
||||
#: ../../mod/admin.php:111 ../../mod/admin.php:994
|
||||
msgid "Logs"
|
||||
msgstr "Protokolle"
|
||||
|
||||
|
|
@ -3063,9 +3006,9 @@ msgstr "Protokolle"
|
|||
msgid "User registrations waiting for confirmation"
|
||||
msgstr "Nutzeranmeldungen die auf Bestätigung warten"
|
||||
|
||||
#: ../../mod/admin.php:188 ../../mod/admin.php:390 ../../mod/admin.php:568
|
||||
#: ../../mod/admin.php:662 ../../mod/admin.php:704 ../../mod/admin.php:867
|
||||
#: ../../mod/admin.php:903 ../../mod/admin.php:991
|
||||
#: ../../mod/admin.php:188 ../../mod/admin.php:391 ../../mod/admin.php:570
|
||||
#: ../../mod/admin.php:664 ../../mod/admin.php:706 ../../mod/admin.php:869
|
||||
#: ../../mod/admin.php:905 ../../mod/admin.php:993
|
||||
msgid "Administration"
|
||||
msgstr "Administration"
|
||||
|
||||
|
|
@ -3089,427 +3032,438 @@ msgstr "Version"
|
|||
msgid "Active plugins"
|
||||
msgstr "Aktive Plugins"
|
||||
|
||||
#: ../../mod/admin.php:329
|
||||
#: ../../mod/admin.php:330
|
||||
msgid "Site settings updated."
|
||||
msgstr "Seiteneinstellungen aktualisiert."
|
||||
|
||||
#: ../../mod/admin.php:377
|
||||
#: ../../mod/admin.php:378
|
||||
msgid "Closed"
|
||||
msgstr "Geschlossen"
|
||||
|
||||
#: ../../mod/admin.php:378
|
||||
#: ../../mod/admin.php:379
|
||||
msgid "Requires approval"
|
||||
msgstr "Bedarf der Zustimmung"
|
||||
|
||||
#: ../../mod/admin.php:379
|
||||
#: ../../mod/admin.php:380
|
||||
msgid "Open"
|
||||
msgstr "Offen"
|
||||
|
||||
#: ../../mod/admin.php:383
|
||||
#: ../../mod/admin.php:384
|
||||
msgid "No SSL policy, links will track page SSL state"
|
||||
msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
|
||||
|
||||
#: ../../mod/admin.php:384
|
||||
#: ../../mod/admin.php:385
|
||||
msgid "Force all links to use SSL"
|
||||
msgstr "SSL für alle Links erzwingen"
|
||||
|
||||
#: ../../mod/admin.php:385
|
||||
#: ../../mod/admin.php:386
|
||||
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:394
|
||||
#: ../../mod/admin.php:395
|
||||
msgid "File upload"
|
||||
msgstr "Datei hochladen"
|
||||
|
||||
#: ../../mod/admin.php:395
|
||||
#: ../../mod/admin.php:396
|
||||
msgid "Policies"
|
||||
msgstr "Regeln"
|
||||
|
||||
#: ../../mod/admin.php:396
|
||||
#: ../../mod/admin.php:397
|
||||
msgid "Advanced"
|
||||
msgstr "Erweitert"
|
||||
|
||||
#: ../../mod/admin.php:400 ../../addon/statusnet/statusnet.php:544
|
||||
#: ../../mod/admin.php:401 ../../addon/statusnet/statusnet.php:544
|
||||
msgid "Site name"
|
||||
msgstr "Seitenname"
|
||||
|
||||
#: ../../mod/admin.php:401
|
||||
#: ../../mod/admin.php:402
|
||||
msgid "Banner/Logo"
|
||||
msgstr "Banner/Logo"
|
||||
|
||||
#: ../../mod/admin.php:402
|
||||
#: ../../mod/admin.php:403
|
||||
msgid "System language"
|
||||
msgstr "Systemsprache"
|
||||
|
||||
#: ../../mod/admin.php:403
|
||||
#: ../../mod/admin.php:404
|
||||
msgid "System theme"
|
||||
msgstr "Systemweites Thema"
|
||||
|
||||
#: ../../mod/admin.php:403
|
||||
#: ../../mod/admin.php:404
|
||||
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:404
|
||||
#: ../../mod/admin.php:405
|
||||
msgid "SSL link policy"
|
||||
msgstr "Regeln für SSL Links"
|
||||
|
||||
#: ../../mod/admin.php:404
|
||||
#: ../../mod/admin.php:405
|
||||
msgid "Determines whether generated links should be forced to use SSL"
|
||||
msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
|
||||
|
||||
#: ../../mod/admin.php:405
|
||||
#: ../../mod/admin.php:406
|
||||
msgid "Maximum image size"
|
||||
msgstr "Maximale Größe von Bildern"
|
||||
|
||||
#: ../../mod/admin.php:405
|
||||
#: ../../mod/admin.php:406
|
||||
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:407
|
||||
#: ../../mod/admin.php:408
|
||||
msgid "Register policy"
|
||||
msgstr "Registrierungsmethode"
|
||||
|
||||
#: ../../mod/admin.php:408
|
||||
#: ../../mod/admin.php:409
|
||||
msgid "Register text"
|
||||
msgstr "Registrierungstext"
|
||||
|
||||
#: ../../mod/admin.php:408
|
||||
#: ../../mod/admin.php:409
|
||||
msgid "Will be displayed prominently on the registration page."
|
||||
msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt."
|
||||
|
||||
#: ../../mod/admin.php:409
|
||||
#: ../../mod/admin.php:410
|
||||
msgid "Accounts abandoned after x days"
|
||||
msgstr "Accounts gelten nach x Tagen als unbenutzt"
|
||||
|
||||
#: ../../mod/admin.php:409
|
||||
#: ../../mod/admin.php:410
|
||||
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 Accounts nicht mehr benutzt werden. 0 eingeben für kein Limit."
|
||||
|
||||
#: ../../mod/admin.php:410
|
||||
#: ../../mod/admin.php:411
|
||||
msgid "Allowed friend domains"
|
||||
msgstr "Erlaubte Domains für Kontakte"
|
||||
|
||||
#: ../../mod/admin.php:410
|
||||
#: ../../mod/admin.php:411
|
||||
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:411
|
||||
#: ../../mod/admin.php:412
|
||||
msgid "Allowed email domains"
|
||||
msgstr "Erlaubte Domains für Emails"
|
||||
|
||||
#: ../../mod/admin.php:411
|
||||
#: ../../mod/admin.php:412
|
||||
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:412
|
||||
#: ../../mod/admin.php:413
|
||||
msgid "Block public"
|
||||
msgstr "Öffentlichen Zugriff blockieren"
|
||||
|
||||
#: ../../mod/admin.php:412
|
||||
#: ../../mod/admin.php:413
|
||||
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:413
|
||||
#: ../../mod/admin.php:414
|
||||
msgid "Force publish"
|
||||
msgstr "Erzwinge Veröffentlichung"
|
||||
|
||||
#: ../../mod/admin.php:413
|
||||
#: ../../mod/admin.php:414
|
||||
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:414
|
||||
#: ../../mod/admin.php:415
|
||||
msgid "Global directory update URL"
|
||||
msgstr "URL für Updates beim weltweiten Verzeichnis"
|
||||
|
||||
#: ../../mod/admin.php:414
|
||||
#: ../../mod/admin.php:415
|
||||
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:416
|
||||
#: ../../mod/admin.php:417
|
||||
msgid "Block multiple registrations"
|
||||
msgstr "Unterbinde Mehrfachregistrierung"
|
||||
|
||||
#: ../../mod/admin.php:416
|
||||
#: ../../mod/admin.php:417
|
||||
msgid "Disallow users to register additional accounts for use as pages."
|
||||
msgstr "Benutzern nicht erlauben, weitere Accounts als zusätzliche Profile anzulegen."
|
||||
|
||||
#: ../../mod/admin.php:417
|
||||
#: ../../mod/admin.php:418
|
||||
msgid "OpenID support"
|
||||
msgstr "OpenID Unterstützung"
|
||||
|
||||
#: ../../mod/admin.php:417
|
||||
#: ../../mod/admin.php:418
|
||||
msgid "OpenID support for registration and logins."
|
||||
msgstr "OpenID-Unterstützung für Registrierung und Login."
|
||||
|
||||
#: ../../mod/admin.php:418
|
||||
#: ../../mod/admin.php:419
|
||||
msgid "Fullname check"
|
||||
msgstr "Namen auf Vollständigkeit überprüfen"
|
||||
|
||||
#: ../../mod/admin.php:418
|
||||
#: ../../mod/admin.php:419
|
||||
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:419
|
||||
#: ../../mod/admin.php:420
|
||||
msgid "UTF-8 Regular expressions"
|
||||
msgstr "UTF-8 Reguläre Ausdrücke"
|
||||
|
||||
#: ../../mod/admin.php:419
|
||||
#: ../../mod/admin.php:420
|
||||
msgid "Use PHP UTF8 regular expressions"
|
||||
msgstr "PHP UTF8 Ausdrücke verwenden"
|
||||
|
||||
#: ../../mod/admin.php:420
|
||||
#: ../../mod/admin.php:421
|
||||
msgid "Show Community Page"
|
||||
msgstr "Gemeinschaftsseite anzeigen"
|
||||
|
||||
#: ../../mod/admin.php:420
|
||||
#: ../../mod/admin.php:421
|
||||
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:421
|
||||
#: ../../mod/admin.php:422
|
||||
msgid "Enable OStatus support"
|
||||
msgstr "OStatus Unterstützung aktivieren"
|
||||
|
||||
#: ../../mod/admin.php:421
|
||||
#: ../../mod/admin.php:422
|
||||
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:422
|
||||
#: ../../mod/admin.php:423
|
||||
msgid "Enable Diaspora support"
|
||||
msgstr "Diaspora-Support aktivieren"
|
||||
|
||||
#: ../../mod/admin.php:422
|
||||
#: ../../mod/admin.php:423
|
||||
msgid "Provide built-in Diaspora network compatibility."
|
||||
msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
|
||||
|
||||
#: ../../mod/admin.php:423
|
||||
#: ../../mod/admin.php:424
|
||||
msgid "Only allow Friendica contacts"
|
||||
msgstr "Nur Friendica-Kontakte erlauben"
|
||||
|
||||
#: ../../mod/admin.php:423
|
||||
#: ../../mod/admin.php:424
|
||||
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:424
|
||||
#: ../../mod/admin.php:425
|
||||
msgid "Verify SSL"
|
||||
msgstr "SSL Überprüfen"
|
||||
|
||||
#: ../../mod/admin.php:424
|
||||
#: ../../mod/admin.php:425
|
||||
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 Zertifikat Kontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann."
|
||||
|
||||
#: ../../mod/admin.php:425
|
||||
#: ../../mod/admin.php:426
|
||||
msgid "Proxy user"
|
||||
msgstr "Proxy Nutzer"
|
||||
|
||||
#: ../../mod/admin.php:426
|
||||
#: ../../mod/admin.php:427
|
||||
msgid "Proxy URL"
|
||||
msgstr "Proxy URL"
|
||||
|
||||
#: ../../mod/admin.php:427
|
||||
#: ../../mod/admin.php:428
|
||||
msgid "Network timeout"
|
||||
msgstr "Netzwerk Wartezeit"
|
||||
|
||||
#: ../../mod/admin.php:427
|
||||
#: ../../mod/admin.php:428
|
||||
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:453
|
||||
#: ../../mod/admin.php:429
|
||||
msgid "Delivery interval"
|
||||
msgstr "Zustellungsintervall"
|
||||
|
||||
#: ../../mod/admin.php:429
|
||||
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:455
|
||||
#, 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:460
|
||||
#: ../../mod/admin.php:462
|
||||
#, 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:499
|
||||
#: ../../mod/admin.php:501
|
||||
#, php-format
|
||||
msgid "User '%s' deleted"
|
||||
msgstr "Nutzer '%s' gelöscht"
|
||||
|
||||
#: ../../mod/admin.php:507
|
||||
#: ../../mod/admin.php:509
|
||||
#, php-format
|
||||
msgid "User '%s' unblocked"
|
||||
msgstr "Nutzer '%s' entsperrt"
|
||||
|
||||
#: ../../mod/admin.php:507
|
||||
#: ../../mod/admin.php:509
|
||||
#, php-format
|
||||
msgid "User '%s' blocked"
|
||||
msgstr "Nutzer '%s' gesperrt"
|
||||
|
||||
#: ../../mod/admin.php:571
|
||||
#: ../../mod/admin.php:573
|
||||
msgid "select all"
|
||||
msgstr "Alle auswählen"
|
||||
|
||||
#: ../../mod/admin.php:572
|
||||
#: ../../mod/admin.php:574
|
||||
msgid "User registrations waiting for confirm"
|
||||
msgstr "Neuanmeldungen, die auf deine Bestätigung warten"
|
||||
|
||||
#: ../../mod/admin.php:573
|
||||
#: ../../mod/admin.php:575
|
||||
msgid "Request date"
|
||||
msgstr "Anfrage Datum"
|
||||
|
||||
#: ../../mod/admin.php:573 ../../mod/admin.php:582
|
||||
#: ../../mod/admin.php:575 ../../mod/admin.php:584
|
||||
#: ../../include/contact_selectors.php:79
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
#: ../../mod/admin.php:574
|
||||
#: ../../mod/admin.php:576
|
||||
msgid "No registrations."
|
||||
msgstr "Keine Neuanmeldungen."
|
||||
|
||||
#: ../../mod/admin.php:576
|
||||
#: ../../mod/admin.php:578
|
||||
msgid "Deny"
|
||||
msgstr "Verwehren"
|
||||
|
||||
#: ../../mod/admin.php:582
|
||||
#: ../../mod/admin.php:584
|
||||
msgid "Register date"
|
||||
msgstr "Anmeldedatum"
|
||||
|
||||
#: ../../mod/admin.php:582
|
||||
#: ../../mod/admin.php:584
|
||||
msgid "Last login"
|
||||
msgstr "Letzte Anmeldung"
|
||||
|
||||
#: ../../mod/admin.php:582
|
||||
#: ../../mod/admin.php:584
|
||||
msgid "Last item"
|
||||
msgstr "Letzter Beitrag"
|
||||
|
||||
#: ../../mod/admin.php:582
|
||||
#: ../../mod/admin.php:584
|
||||
msgid "Account"
|
||||
msgstr "Nutzerkonto"
|
||||
|
||||
#: ../../mod/admin.php:584
|
||||
#: ../../mod/admin.php:586
|
||||
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:585
|
||||
#: ../../mod/admin.php:587
|
||||
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:626
|
||||
#: ../../mod/admin.php:628
|
||||
#, php-format
|
||||
msgid "Plugin %s disabled."
|
||||
msgstr "Plugin %s deaktiviert."
|
||||
|
||||
#: ../../mod/admin.php:630
|
||||
#: ../../mod/admin.php:632
|
||||
#, php-format
|
||||
msgid "Plugin %s enabled."
|
||||
msgstr "Plugin %s aktiviert."
|
||||
|
||||
#: ../../mod/admin.php:640 ../../mod/admin.php:838
|
||||
#: ../../mod/admin.php:642 ../../mod/admin.php:840
|
||||
msgid "Disable"
|
||||
msgstr "Ausschalten"
|
||||
|
||||
#: ../../mod/admin.php:642 ../../mod/admin.php:840
|
||||
#: ../../mod/admin.php:644 ../../mod/admin.php:842
|
||||
msgid "Enable"
|
||||
msgstr "Einschalten"
|
||||
|
||||
#: ../../mod/admin.php:664 ../../mod/admin.php:869
|
||||
#: ../../mod/admin.php:666 ../../mod/admin.php:871
|
||||
msgid "Toggle"
|
||||
msgstr "Umschalten"
|
||||
|
||||
#: ../../mod/admin.php:672 ../../mod/admin.php:879
|
||||
#: ../../mod/admin.php:674 ../../mod/admin.php:881
|
||||
msgid "Author: "
|
||||
msgstr "Autor:"
|
||||
|
||||
#: ../../mod/admin.php:673 ../../mod/admin.php:880
|
||||
#: ../../mod/admin.php:675 ../../mod/admin.php:882
|
||||
msgid "Maintainer: "
|
||||
msgstr "Betreuer:"
|
||||
|
||||
#: ../../mod/admin.php:802
|
||||
#: ../../mod/admin.php:804
|
||||
msgid "No themes found."
|
||||
msgstr "Keine Themen gefunden."
|
||||
|
||||
#: ../../mod/admin.php:861
|
||||
#: ../../mod/admin.php:863
|
||||
msgid "Screenshot"
|
||||
msgstr "Bildschirmfoto"
|
||||
|
||||
#: ../../mod/admin.php:909
|
||||
#: ../../mod/admin.php:911
|
||||
msgid "[Experimental]"
|
||||
msgstr "[Experimentell]"
|
||||
|
||||
#: ../../mod/admin.php:910
|
||||
#: ../../mod/admin.php:912
|
||||
msgid "[Unsupported]"
|
||||
msgstr "[Nicht unterstützt]"
|
||||
|
||||
#: ../../mod/admin.php:937
|
||||
#: ../../mod/admin.php:939
|
||||
msgid "Log settings updated."
|
||||
msgstr "Protokolleinstellungen aktualisiert."
|
||||
|
||||
#: ../../mod/admin.php:994
|
||||
#: ../../mod/admin.php:996
|
||||
msgid "Clear"
|
||||
msgstr "löschen"
|
||||
|
||||
#: ../../mod/admin.php:1000
|
||||
#: ../../mod/admin.php:1002
|
||||
msgid "Debugging"
|
||||
msgstr "Protokoll führen"
|
||||
|
||||
#: ../../mod/admin.php:1001
|
||||
#: ../../mod/admin.php:1003
|
||||
msgid "Log file"
|
||||
msgstr "Protokolldatei"
|
||||
|
||||
#: ../../mod/admin.php:1001
|
||||
#: ../../mod/admin.php:1003
|
||||
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:1002
|
||||
#: ../../mod/admin.php:1004
|
||||
msgid "Log level"
|
||||
msgstr "Protokoll-Level"
|
||||
|
||||
#: ../../mod/admin.php:1052
|
||||
#: ../../mod/admin.php:1054
|
||||
msgid "Close"
|
||||
msgstr "Schließen"
|
||||
|
||||
#: ../../mod/admin.php:1058
|
||||
#: ../../mod/admin.php:1060
|
||||
msgid "FTP Host"
|
||||
msgstr "FTP Host"
|
||||
|
||||
#: ../../mod/admin.php:1059
|
||||
#: ../../mod/admin.php:1061
|
||||
msgid "FTP Path"
|
||||
msgstr "FTP Pfad"
|
||||
|
||||
#: ../../mod/admin.php:1060
|
||||
#: ../../mod/admin.php:1062
|
||||
msgid "FTP User"
|
||||
msgstr "FTP Nutzername"
|
||||
|
||||
#: ../../mod/admin.php:1061
|
||||
#: ../../mod/admin.php:1063
|
||||
msgid "FTP Password"
|
||||
msgstr "FTP Passwort"
|
||||
|
||||
|
|
@ -3517,56 +3471,56 @@ msgstr "FTP Passwort"
|
|||
msgid "Requested profile is not available."
|
||||
msgstr "Das angefragte Profil ist nicht vorhanden."
|
||||
|
||||
#: ../../mod/profile.php:124 ../../mod/display.php:75
|
||||
#: ../../mod/profile.php:126 ../../mod/display.php:75
|
||||
msgid "Access to this profile has been restricted."
|
||||
msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
|
||||
|
||||
#: ../../mod/profile.php:145
|
||||
#: ../../mod/profile.php:147
|
||||
msgid "Tips for New Members"
|
||||
msgstr "Tipps für neue Nutzer"
|
||||
|
||||
#: ../../mod/ping.php:175
|
||||
#: ../../mod/ping.php:177
|
||||
msgid "{0} wants to be your friend"
|
||||
msgstr "{0} möchte mit dir in Kontakt treten"
|
||||
|
||||
#: ../../mod/ping.php:180
|
||||
#: ../../mod/ping.php:182
|
||||
msgid "{0} sent you a message"
|
||||
msgstr "{0} hat dir eine Nachricht geschickt"
|
||||
|
||||
#: ../../mod/ping.php:185
|
||||
#: ../../mod/ping.php:187
|
||||
msgid "{0} requested registration"
|
||||
msgstr "{0} möchte sich registrieren"
|
||||
|
||||
#: ../../mod/ping.php:191
|
||||
#: ../../mod/ping.php:193
|
||||
#, php-format
|
||||
msgid "{0} commented %s's post"
|
||||
msgstr "{0} kommentierte einen Beitrag von %s"
|
||||
|
||||
#: ../../mod/ping.php:196
|
||||
#: ../../mod/ping.php:198
|
||||
#, php-format
|
||||
msgid "{0} liked %s's post"
|
||||
msgstr "{0} mag %ss Beitrag"
|
||||
|
||||
#: ../../mod/ping.php:201
|
||||
#: ../../mod/ping.php:203
|
||||
#, php-format
|
||||
msgid "{0} disliked %s's post"
|
||||
msgstr "{0} mag %ss Beitrag nicht"
|
||||
|
||||
#: ../../mod/ping.php:206
|
||||
#: ../../mod/ping.php:208
|
||||
#, php-format
|
||||
msgid "{0} is now friends with %s"
|
||||
msgstr "{0} ist jetzt mit %s befreundet"
|
||||
|
||||
#: ../../mod/ping.php:211
|
||||
#: ../../mod/ping.php:213
|
||||
msgid "{0} posted"
|
||||
msgstr "{0} hat etwas veröffentlicht"
|
||||
|
||||
#: ../../mod/ping.php:216
|
||||
#: ../../mod/ping.php:218
|
||||
#, php-format
|
||||
msgid "{0} tagged %s's post with #%s"
|
||||
msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen"
|
||||
|
||||
#: ../../mod/ping.php:222
|
||||
#: ../../mod/ping.php:224
|
||||
msgid "{0} mentioned you in a post"
|
||||
msgstr "{0} hat dich in einem Beitrag erwähnt"
|
||||
|
||||
|
|
@ -3922,7 +3876,7 @@ msgstr "sichtbar für jeden"
|
|||
msgid "Edit visibility"
|
||||
msgstr "Sichtbarkeit bearbeiten"
|
||||
|
||||
#: ../../mod/filer.php:29 ../../include/conversation.php:914
|
||||
#: ../../mod/filer.php:29 ../../include/conversation.php:922
|
||||
msgid "Save to Folder:"
|
||||
msgstr "In diesen Ordner verschieben:"
|
||||
|
||||
|
|
@ -3970,14 +3924,7 @@ msgstr "Hinzufügen"
|
|||
msgid "No entries."
|
||||
msgstr "Keine Einträge"
|
||||
|
||||
#: ../../mod/suggest.php:38
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:145
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:143
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:143
|
||||
#: ../../view/theme/diabook/theme.php:158
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:145
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:145
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:145
|
||||
#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:163
|
||||
#: ../../include/contact_widgets.php:34
|
||||
msgid "Friend Suggestions"
|
||||
msgstr "Kontaktvorschläge"
|
||||
|
|
@ -3992,14 +3939,7 @@ msgstr "Keine Vorschläge. Falls der Server frisch aufgesetzt wurde, versuche es
|
|||
msgid "Ignore/Hide"
|
||||
msgstr "Ignorieren/Verbergen"
|
||||
|
||||
#: ../../mod/directory.php:47
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:143
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:141
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:141
|
||||
#: ../../view/theme/diabook/theme.php:156
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:143
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:143
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:143
|
||||
#: ../../mod/directory.php:47 ../../view/theme/diabook/theme.php:161
|
||||
msgid "Global Directory"
|
||||
msgstr "Weltweites Verzeichnis"
|
||||
|
||||
|
|
@ -4278,93 +4218,99 @@ msgstr "Facebook-Verbindungseinstellungen"
|
|||
msgid "Facebook API Key"
|
||||
msgstr "Facebook API Schlüssel"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:700
|
||||
#: ../../addon/facebook/facebook.php:701
|
||||
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:705
|
||||
#: ../../addon/facebook/facebook.php:706
|
||||
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:707
|
||||
#: ../../addon/facebook/facebook.php:708
|
||||
msgid "The given API Key seems to work correctly."
|
||||
msgstr "Der angegebene API Schlüssel scheint korrekt zu funktionieren."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:709
|
||||
#: ../../addon/facebook/facebook.php:710
|
||||
msgid ""
|
||||
"The correctness of the API Key could not be detected. Somthing strange's "
|
||||
"going on."
|
||||
msgstr "Die Echtheit des API Schlüssels konnte nicht überprüft werden. Etwas Merkwürdiges ist hier im Gange."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:712
|
||||
#: ../../addon/facebook/facebook.php:713
|
||||
msgid "App-ID / API-Key"
|
||||
msgstr "App-ID / API-Key"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:713
|
||||
#: ../../addon/facebook/facebook.php:714
|
||||
msgid "Application secret"
|
||||
msgstr "Anwendungs-Geheimnis"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:714
|
||||
#: ../../addon/facebook/facebook.php:715
|
||||
#, php-format
|
||||
msgid "Polling Interval (min. %1$s minutes)"
|
||||
msgstr "Abrufintervall (min. %1$s Minuten)"
|
||||
msgid "Polling Interval in minutes (minimum %1$s minutes)"
|
||||
msgstr "Abfrage-Intervall in Minuten (min %1$s Minuten)"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:718
|
||||
#: ../../addon/facebook/facebook.php:716
|
||||
msgid ""
|
||||
"Synchronize comments (no comments on Facebook are missed, at the cost of "
|
||||
"increased system load)"
|
||||
msgstr "Kommentare synchronisieren (Kein Kommentar von Facebook geht verlohren, verursacht höhere Last auf dem Server)"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:720
|
||||
msgid "Real-Time Updates"
|
||||
msgstr "Echt-Zeit Aktualisierungen"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:722
|
||||
#: ../../addon/facebook/facebook.php:724
|
||||
msgid "Real-Time Updates are activated."
|
||||
msgstr "Echtzeit-Updates sind aktiviert."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:723
|
||||
#: ../../addon/facebook/facebook.php:725
|
||||
msgid "Deactivate Real-Time Updates"
|
||||
msgstr "Echtzeit-Updates deaktivieren"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:725
|
||||
#: ../../addon/facebook/facebook.php:727
|
||||
msgid "Real-Time Updates not activated."
|
||||
msgstr "Echtzeit-Updates nicht aktiviert."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:725
|
||||
#: ../../addon/facebook/facebook.php:727
|
||||
msgid "Activate Real-Time Updates"
|
||||
msgstr "Echtzeit-Updates aktivieren"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:743
|
||||
#: ../../addon/facebook/facebook.php:746
|
||||
msgid "The new values have been saved."
|
||||
msgstr "Die neuen Einstellungen wurden gespeichert."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:767
|
||||
#: ../../addon/facebook/facebook.php:770
|
||||
msgid "Post to Facebook"
|
||||
msgstr "Bei Facebook veröffentlichen"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:865
|
||||
#: ../../addon/facebook/facebook.php:868
|
||||
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:1085
|
||||
#: ../../addon/facebook/facebook.php:1088
|
||||
msgid "View on Friendica"
|
||||
msgstr "In Friendica betrachten"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:1118
|
||||
#: ../../addon/facebook/facebook.php:1121
|
||||
msgid "Facebook post failed. Queued for retry."
|
||||
msgstr "Veröffentlichung bei Facebook gescheitert. Wir versuchen es später erneut."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:1158
|
||||
#: ../../addon/facebook/facebook.php:1161
|
||||
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:1159
|
||||
#: ../../addon/facebook/facebook.php:1162
|
||||
msgid "Facebook connection became invalid"
|
||||
msgstr "Facebook Anmeldedaten sind ungültig geworden"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:1160
|
||||
#: ../../addon/facebook/facebook.php:1163
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Hi %1$s,\n"
|
||||
|
|
@ -4372,6 +4318,26 @@ msgid ""
|
|||
"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s."
|
||||
msgstr "Hi %1$s,\n\ndie Verbindung von deinem Account auf %2$s und Facebook funktioniert derzeit nicht. Dies ist im Allgemeinen das Ergebnis einer Passwortänderung bei Facebook. Um die Verbindung wieder zu aktivieren musst du %3$sden Facebook-Connector neu Authentifizieren%4$s."
|
||||
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:144
|
||||
msgid "Lifetime of the cache (in hours)"
|
||||
msgstr "Lebenszeit des Caches (in Stunden)"
|
||||
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:149
|
||||
msgid "Cache Statistics"
|
||||
msgstr "Cache Statistik"
|
||||
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:152
|
||||
msgid "Number of items"
|
||||
msgstr "Anzahl der Einträge"
|
||||
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:154
|
||||
msgid "Size of the cache"
|
||||
msgstr "Größe des Caches"
|
||||
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:156
|
||||
msgid "Delete the whole cache"
|
||||
msgstr "Cache leeren"
|
||||
|
||||
#: ../../addon/widgets/widget_like.php:58
|
||||
#, php-format
|
||||
msgid "%d person likes this"
|
||||
|
|
@ -4386,6 +4352,10 @@ msgid_plural "%d people don't like this"
|
|||
msgstr[0] " %d Person mag das nicht"
|
||||
msgstr[1] "%d Leute mögen das nicht"
|
||||
|
||||
#: ../../addon/widgets/widget_friendheader.php:40
|
||||
msgid "Get added to this list!"
|
||||
msgstr "Werde Mitglied dieser Liste"
|
||||
|
||||
#: ../../addon/widgets/widgets.php:56
|
||||
msgid "Generate new key"
|
||||
msgstr "Neuen Schlüssel erstellen"
|
||||
|
|
@ -4529,15 +4499,8 @@ msgid "Latest likes"
|
|||
msgstr "Neueste Favoriten"
|
||||
|
||||
#: ../../addon/communityhome/communityhome.php:155
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:80
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:79
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:79
|
||||
#: ../../view/theme/diabook/theme.php:94
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:80
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:80
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:80
|
||||
#: ../../include/text.php:1302 ../../include/conversation.php:45
|
||||
#: ../../include/conversation.php:118
|
||||
#: ../../view/theme/diabook/theme.php:99 ../../include/text.php:1302
|
||||
#: ../../include/conversation.php:45 ../../include/conversation.php:118
|
||||
msgid "event"
|
||||
msgstr "Veranstaltung"
|
||||
|
||||
|
|
@ -4745,68 +4708,70 @@ msgstr "OEmbed für Youtube Videos verwenden"
|
|||
msgid "URL to embed:"
|
||||
msgstr "URL zum Einbetten:"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:34
|
||||
#: ../../addon/impressum/impressum.php:36
|
||||
msgid "Impressum"
|
||||
msgstr "Impressum"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:47
|
||||
#: ../../addon/impressum/impressum.php:49
|
||||
#: ../../addon/impressum/impressum.php:81
|
||||
#: ../../addon/impressum/impressum.php:51
|
||||
#: ../../addon/impressum/impressum.php:83
|
||||
msgid "Site Owner"
|
||||
msgstr "Betreiber der Seite"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:47
|
||||
#: ../../addon/impressum/impressum.php:85
|
||||
#: ../../addon/impressum/impressum.php:49
|
||||
#: ../../addon/impressum/impressum.php:87
|
||||
msgid "Email Address"
|
||||
msgstr "Email Adresse"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:52
|
||||
#: ../../addon/impressum/impressum.php:83
|
||||
#: ../../addon/impressum/impressum.php:54
|
||||
#: ../../addon/impressum/impressum.php:85
|
||||
msgid "Postal Address"
|
||||
msgstr "Postalische Anschrift"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:58
|
||||
#: ../../addon/impressum/impressum.php:60
|
||||
msgid ""
|
||||
"The impressum addon needs to be configured!<br />Please add at least the "
|
||||
"<tt>owner</tt> variable to your config file. For other variables please "
|
||||
"refer to the README file of the addon."
|
||||
msgstr "Das Impressums-Plugin muss noch konfiguriert werden.<br />Bitte gebe mindestens den <tt>Betreiber</tt> in der Konfiguration an. Alle weiteren Parameter werden in der README-Datei des Addons erläutert."
|
||||
|
||||
#: ../../addon/impressum/impressum.php:81
|
||||
#: ../../addon/impressum/impressum.php:83
|
||||
msgid "The page operators name."
|
||||
msgstr "Name des Server-Administrators"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:82
|
||||
#: ../../addon/impressum/impressum.php:84
|
||||
msgid "Site Owners Profile"
|
||||
msgstr "Profil des Seitenbetreibers"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:82
|
||||
#: ../../addon/impressum/impressum.php:84
|
||||
msgid "Profile address of the operator."
|
||||
msgstr "Profil-Adresse des Server-Administrators"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:83
|
||||
msgid "How to contact the operator via snail mail."
|
||||
msgstr "Wie erreicht man den Betreiber der Seite postalisch."
|
||||
#: ../../addon/impressum/impressum.php:85
|
||||
msgid "How to contact the operator via snail mail. You can use BBCode here."
|
||||
msgstr "Kontaktmöglichkeiten zum Administrator via Schneckenpost. Du kannst BBCode verwenden."
|
||||
|
||||
#: ../../addon/impressum/impressum.php:84
|
||||
#: ../../addon/impressum/impressum.php:86
|
||||
msgid "Notes"
|
||||
msgstr "Hinweise"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:84
|
||||
msgid "Additional notes that are displayed beneath the contact information."
|
||||
msgstr "Zusätzliche Angaben, die unterhalb der Kontakt-Informationen angezeigt werden."
|
||||
#: ../../addon/impressum/impressum.php:86
|
||||
msgid ""
|
||||
"Additional notes that are displayed beneath the contact information. You can"
|
||||
" use BBCode here."
|
||||
msgstr "Zusätzliche Informationen die neben den Kontaktmöglichkeiten angezeigt werden. Du kannst BBCode verwenden."
|
||||
|
||||
#: ../../addon/impressum/impressum.php:85
|
||||
#: ../../addon/impressum/impressum.php:87
|
||||
msgid "How to contact the operator via email. (will be displayed obfuscated)"
|
||||
msgstr "Wie erreichts man den Betreiber per Email. (Adresse wird verschleiert dargestellt)"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:86
|
||||
#: ../../addon/impressum/impressum.php:88
|
||||
msgid "Footer note"
|
||||
msgstr "Fußnote"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:86
|
||||
msgid "Text for the footer."
|
||||
msgstr "Text für die Fußnote"
|
||||
#: ../../addon/impressum/impressum.php:88
|
||||
msgid "Text for the footer. You can use BBCode here."
|
||||
msgstr "Text für die Fußzeile. Du kannst BBCode verwenden."
|
||||
|
||||
#: ../../addon/buglink/buglink.php:15
|
||||
msgid "Report Bug"
|
||||
|
|
@ -5430,228 +5395,100 @@ msgstr "Posterous-Passwort"
|
|||
msgid "Post to Posterous by default"
|
||||
msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei Posterous"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:29
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:28
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:28
|
||||
#: ../../view/theme/diabook/theme.php:43
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:29
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:29
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:29
|
||||
msgid "Last users"
|
||||
msgstr "Letzte Nutzer"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:58
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:57
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:57
|
||||
#: ../../view/theme/diabook/theme.php:72
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:58
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:58
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:58
|
||||
msgid "Last likes"
|
||||
msgstr "Zuletzt gemocht"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:103
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:102
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:102
|
||||
#: ../../view/theme/diabook/theme.php:117
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:103
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:103
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:103
|
||||
msgid "Last photos"
|
||||
msgstr "Letzte Fotos"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:141
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:139
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:139
|
||||
#: ../../view/theme/diabook/theme.php:154
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:141
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:141
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:141
|
||||
msgid "Find Friends"
|
||||
msgstr "Freunde finden"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:142
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:140
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:140
|
||||
#: ../../view/theme/diabook/theme.php:155
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:142
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:142
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:142
|
||||
msgid "Local Directory"
|
||||
msgstr "Lokales Verzeichnis"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:144
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:142
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:142
|
||||
#: ../../view/theme/diabook/theme.php:157
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:144
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:144
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:144
|
||||
#: ../../include/contact_widgets.php:35
|
||||
msgid "Similar Interests"
|
||||
msgstr "Ähnliche Interessen"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:146
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:144
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:144
|
||||
#: ../../view/theme/diabook/theme.php:159
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:146
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:146
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:146
|
||||
#: ../../include/contact_widgets.php:37
|
||||
msgid "Invite Friends"
|
||||
msgstr "Freunde einladen"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:161
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:236
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:159
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:234
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:159
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:234
|
||||
#: ../../view/theme/diabook/theme.php:175
|
||||
#: ../../view/theme/diabook/theme.php:253
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:161
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:236
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:161
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:236
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:161
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:236
|
||||
msgid "Community Pages"
|
||||
msgstr "Foren"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:194
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:192
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:192
|
||||
#: ../../view/theme/diabook/theme.php:208
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:194
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:194
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:194
|
||||
msgid "Help or @NewHere ?"
|
||||
msgstr "Hilfe oder @NewHere"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:200
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:198
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:198
|
||||
#: ../../view/theme/diabook/theme.php:214
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:200
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:200
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:200
|
||||
msgid "Connect Services"
|
||||
msgstr "Verbinde Dienste"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:229
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:227
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:227
|
||||
#: ../../view/theme/diabook/theme.php:246
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:229
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:229
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:229
|
||||
#: ../../include/nav.php:49 ../../include/nav.php:115
|
||||
msgid "Your posts and conversations"
|
||||
msgstr "Deine Beiträge und Unterhaltungen"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:230
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:228
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:228
|
||||
#: ../../view/theme/diabook/theme.php:247
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:230
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:230
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:230
|
||||
#: ../../include/nav.php:50
|
||||
msgid "Your profile page"
|
||||
msgstr "Deine Profilseite"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:231
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:229
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:229
|
||||
#: ../../view/theme/diabook/theme.php:248
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:231
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:231
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:231
|
||||
msgid "Your contacts"
|
||||
msgstr "Deine Kontakte"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:232
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:230
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:230
|
||||
#: ../../view/theme/diabook/theme.php:249
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:232
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:232
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:232
|
||||
#: ../../include/nav.php:51
|
||||
msgid "Your photos"
|
||||
msgstr "Deine Fotos"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:233
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:231
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:231
|
||||
#: ../../view/theme/diabook/theme.php:250
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:233
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:233
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:233
|
||||
#: ../../include/nav.php:52
|
||||
msgid "Your events"
|
||||
msgstr "Deine Ereignisse"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:234
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:232
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:232
|
||||
#: ../../view/theme/diabook/theme.php:251
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:234
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:234
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:234
|
||||
#: ../../include/nav.php:53
|
||||
msgid "Personal notes"
|
||||
msgstr "Persönliche Notizen"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:234
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:232
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:232
|
||||
#: ../../view/theme/diabook/theme.php:251
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:234
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:234
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:234
|
||||
#: ../../include/nav.php:53
|
||||
msgid "Your personal photos"
|
||||
msgstr "Deine privaten Fotos"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/config.php:78
|
||||
#: ../../view/theme/diabook/diabook-red/config.php:78
|
||||
#: ../../view/theme/diabook/diabook-blue/config.php:78
|
||||
#: ../../view/theme/diabook/diabook-dark/config.php:78
|
||||
#: ../../view/theme/diabook/diabook-aerith/config.php:78
|
||||
#: ../../view/theme/diabook/diabook-pink/config.php:78
|
||||
#: ../../view/theme/cleanzero/config.php:73
|
||||
#: ../../view/theme/diabook/config.php:93
|
||||
#: ../../view/theme/quattro/config.php:54
|
||||
#: ../../view/theme/quattro/config.php:54 ../../view/theme/dispy/config.php:72
|
||||
msgid "Theme settings"
|
||||
msgstr "Themen Einstellungen"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/config.php:79
|
||||
#: ../../view/theme/diabook/diabook-red/config.php:79
|
||||
#: ../../view/theme/diabook/diabook-blue/config.php:79
|
||||
#: ../../view/theme/diabook/diabook-dark/config.php:79
|
||||
#: ../../view/theme/diabook/diabook-aerith/config.php:79
|
||||
#: ../../view/theme/diabook/diabook-pink/config.php:79
|
||||
#: ../../view/theme/diabook/config.php:94
|
||||
#: ../../view/theme/cleanzero/config.php:74
|
||||
msgid "Set resize level for images in posts and comments (width and height)"
|
||||
msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"
|
||||
|
||||
#: ../../view/theme/cleanzero/config.php:75
|
||||
#: ../../view/theme/diabook/config.php:94 ../../view/theme/dispy/config.php:73
|
||||
msgid "Set font-size for posts and comments"
|
||||
msgstr "Schriftgröße für Beiträge und Kommentare festlegen"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/config.php:80
|
||||
#: ../../view/theme/diabook/diabook-red/config.php:80
|
||||
#: ../../view/theme/diabook/diabook-blue/config.php:80
|
||||
#: ../../view/theme/diabook/diabook-dark/config.php:80
|
||||
#: ../../view/theme/diabook/diabook-aerith/config.php:80
|
||||
#: ../../view/theme/diabook/diabook-pink/config.php:80
|
||||
#: ../../view/theme/diabook/config.php:95
|
||||
#: ../../view/theme/cleanzero/config.php:76
|
||||
#: ../../view/theme/quattro/config.php:56
|
||||
msgid "Color scheme"
|
||||
msgstr "Farbschema"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:48
|
||||
msgid "Last users"
|
||||
msgstr "Letzte Nutzer"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:77
|
||||
msgid "Last likes"
|
||||
msgstr "Zuletzt gemocht"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:122
|
||||
msgid "Last photos"
|
||||
msgstr "Letzte Fotos"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:159
|
||||
msgid "Find Friends"
|
||||
msgstr "Freunde finden"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:160
|
||||
msgid "Local Directory"
|
||||
msgstr "Lokales Verzeichnis"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:162 ../../include/contact_widgets.php:35
|
||||
msgid "Similar Interests"
|
||||
msgstr "Ähnliche Interessen"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:164 ../../include/contact_widgets.php:37
|
||||
msgid "Invite Friends"
|
||||
msgstr "Freunde einladen"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:180
|
||||
#: ../../view/theme/diabook/theme.php:258
|
||||
msgid "Community Pages"
|
||||
msgstr "Foren"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:213
|
||||
msgid "Help or @NewHere ?"
|
||||
msgstr "Hilfe oder @NewHere"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:219
|
||||
msgid "Connect Services"
|
||||
msgstr "Verbinde Dienste"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:251 ../../include/nav.php:49
|
||||
#: ../../include/nav.php:115
|
||||
msgid "Your posts and conversations"
|
||||
msgstr "Deine Beiträge und Unterhaltungen"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:252 ../../include/nav.php:50
|
||||
msgid "Your profile page"
|
||||
msgstr "Deine Profilseite"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:253
|
||||
msgid "Your contacts"
|
||||
msgstr "Deine Kontakte"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:254 ../../include/nav.php:51
|
||||
msgid "Your photos"
|
||||
msgstr "Deine Fotos"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:255 ../../include/nav.php:52
|
||||
msgid "Your events"
|
||||
msgstr "Deine Ereignisse"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:256 ../../include/nav.php:53
|
||||
msgid "Personal notes"
|
||||
msgstr "Persönliche Notizen"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:256 ../../include/nav.php:53
|
||||
msgid "Your personal photos"
|
||||
msgstr "Deine privaten Fotos"
|
||||
|
||||
#: ../../view/theme/diabook/config.php:95 ../../view/theme/dispy/config.php:74
|
||||
msgid "Set line-height for posts and comments"
|
||||
msgstr "Liniengröße für Beiträge und Kommantare festlegen"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/config.php:81
|
||||
#: ../../view/theme/diabook/diabook-red/config.php:81
|
||||
#: ../../view/theme/diabook/diabook-blue/config.php:81
|
||||
#: ../../view/theme/diabook/diabook-dark/config.php:81
|
||||
#: ../../view/theme/diabook/diabook-aerith/config.php:81
|
||||
#: ../../view/theme/diabook/diabook-pink/config.php:81
|
||||
#: ../../view/theme/diabook/config.php:96
|
||||
msgid "Set resolution for middle column"
|
||||
msgstr "Auflösung für die Mittelspalte setzen"
|
||||
|
|
@ -5672,9 +5509,9 @@ msgstr "Links"
|
|||
msgid "Center"
|
||||
msgstr "Mitte"
|
||||
|
||||
#: ../../view/theme/quattro/config.php:56
|
||||
msgid "Color scheme"
|
||||
msgstr "Farbschema"
|
||||
#: ../../view/theme/dispy/config.php:75
|
||||
msgid "Set colour scheme"
|
||||
msgstr "Farbschema wählen"
|
||||
|
||||
#: ../../include/profile_advanced.php:17 ../../boot.php:1085
|
||||
msgid "Gender:"
|
||||
|
|
@ -6065,12 +5902,12 @@ msgstr "Beginnt:"
|
|||
msgid "Finishes:"
|
||||
msgstr "Endet:"
|
||||
|
||||
#: ../../include/delivery.php:434 ../../include/notifier.php:651
|
||||
#: ../../include/delivery.php:434 ../../include/notifier.php:652
|
||||
msgid "(no subject)"
|
||||
msgstr "(kein Betreff)"
|
||||
|
||||
#: ../../include/delivery.php:441 ../../include/enotify.php:23
|
||||
#: ../../include/notifier.php:658
|
||||
#: ../../include/notifier.php:659
|
||||
msgid "noreply"
|
||||
msgstr "noreply"
|
||||
|
||||
|
|
@ -6293,7 +6130,7 @@ msgstr "Abmelden"
|
|||
msgid "End this session"
|
||||
msgstr "Diese Sitzung beenden"
|
||||
|
||||
#: ../../include/nav.php:49 ../../boot.php:1453
|
||||
#: ../../include/nav.php:49 ../../boot.php:1463
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
|
|
@ -6543,7 +6380,7 @@ msgstr "Sekunden"
|
|||
msgid "%1$d %2$s ago"
|
||||
msgstr "%1$d %2$s her"
|
||||
|
||||
#: ../../include/poller.php:543
|
||||
#: ../../include/onepoll.php:402
|
||||
msgid "From: "
|
||||
msgstr "Von: "
|
||||
|
||||
|
|
@ -6551,7 +6388,7 @@ msgstr "Von: "
|
|||
msgid "$1 wrote:"
|
||||
msgstr "$1 hat geschrieben:"
|
||||
|
||||
#: ../../include/bbcode.php:238 ../../include/bbcode.php:304
|
||||
#: ../../include/bbcode.php:238 ../../include/bbcode.php:307
|
||||
msgid "Image/photo"
|
||||
msgstr "Bild/Foto"
|
||||
|
||||
|
|
@ -6799,30 +6636,34 @@ msgid ""
|
|||
"form has been opened for too long (>3 hours) before submitting it."
|
||||
msgstr "Das Sicherheits-Merkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
|
||||
|
||||
#: ../../include/Contact.php:145 ../../include/conversation.php:809
|
||||
#: ../../include/Contact.php:96
|
||||
msgid "stopped following"
|
||||
msgstr "wird nicht mehr gefolgt"
|
||||
|
||||
#: ../../include/Contact.php:188 ../../include/conversation.php:817
|
||||
msgid "View Status"
|
||||
msgstr "Pinnwand anschauen"
|
||||
|
||||
#: ../../include/Contact.php:146 ../../include/conversation.php:810
|
||||
#: ../../include/Contact.php:189 ../../include/conversation.php:818
|
||||
msgid "View Profile"
|
||||
msgstr "Profil anschauen"
|
||||
|
||||
#: ../../include/Contact.php:147 ../../include/conversation.php:811
|
||||
#: ../../include/Contact.php:190 ../../include/conversation.php:819
|
||||
msgid "View Photos"
|
||||
msgstr "Bilder anschauen"
|
||||
|
||||
#: ../../include/Contact.php:148 ../../include/Contact.php:161
|
||||
#: ../../include/conversation.php:812
|
||||
#: ../../include/Contact.php:191 ../../include/Contact.php:204
|
||||
#: ../../include/conversation.php:820
|
||||
msgid "Network Posts"
|
||||
msgstr "Netzwerk Beiträge"
|
||||
|
||||
#: ../../include/Contact.php:149 ../../include/Contact.php:161
|
||||
#: ../../include/conversation.php:813
|
||||
#: ../../include/Contact.php:192 ../../include/Contact.php:204
|
||||
#: ../../include/conversation.php:821
|
||||
msgid "Edit Contact"
|
||||
msgstr "Kontakt bearbeiten"
|
||||
|
||||
#: ../../include/Contact.php:150 ../../include/Contact.php:161
|
||||
#: ../../include/conversation.php:814
|
||||
#: ../../include/Contact.php:193 ../../include/Contact.php:204
|
||||
#: ../../include/conversation.php:822
|
||||
msgid "Send PM"
|
||||
msgstr "Private Nachricht senden"
|
||||
|
||||
|
|
@ -6835,17 +6676,17 @@ msgstr "Nachricht/Beitrag"
|
|||
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:317 ../../include/conversation.php:575
|
||||
#: ../../include/conversation.php:317 ../../include/conversation.php:583
|
||||
msgid "Select"
|
||||
msgstr "Auswählen"
|
||||
|
||||
#: ../../include/conversation.php:334 ../../include/conversation.php:668
|
||||
#: ../../include/conversation.php:669
|
||||
#: ../../include/conversation.php:334 ../../include/conversation.php:676
|
||||
#: ../../include/conversation.php:677
|
||||
#, php-format
|
||||
msgid "View %s's profile @ %s"
|
||||
msgstr "Das Profil von %s auf %s betrachten."
|
||||
|
||||
#: ../../include/conversation.php:344 ../../include/conversation.php:680
|
||||
#: ../../include/conversation.php:344 ../../include/conversation.php:688
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr "%s von %s"
|
||||
|
|
@ -6877,142 +6718,174 @@ msgstr "Teile dieses"
|
|||
msgid "share"
|
||||
msgstr "Teilen"
|
||||
|
||||
#: ../../include/conversation.php:588
|
||||
#: ../../include/conversation.php:556
|
||||
msgid "Bold"
|
||||
msgstr "Fett"
|
||||
|
||||
#: ../../include/conversation.php:557
|
||||
msgid "Italic"
|
||||
msgstr "Kursiv"
|
||||
|
||||
#: ../../include/conversation.php:558
|
||||
msgid "Underline"
|
||||
msgstr "Unterstrichen"
|
||||
|
||||
#: ../../include/conversation.php:559
|
||||
msgid "Quote"
|
||||
msgstr "Zitat"
|
||||
|
||||
#: ../../include/conversation.php:560
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#: ../../include/conversation.php:561
|
||||
msgid "Image"
|
||||
msgstr "Bild"
|
||||
|
||||
#: ../../include/conversation.php:562
|
||||
msgid "Link"
|
||||
msgstr "Verweis"
|
||||
|
||||
#: ../../include/conversation.php:563
|
||||
msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
#: ../../include/conversation.php:596
|
||||
msgid "add star"
|
||||
msgstr "markieren"
|
||||
|
||||
#: ../../include/conversation.php:589
|
||||
#: ../../include/conversation.php:597
|
||||
msgid "remove star"
|
||||
msgstr "Markierung entfernen"
|
||||
|
||||
#: ../../include/conversation.php:590
|
||||
#: ../../include/conversation.php:598
|
||||
msgid "toggle star status"
|
||||
msgstr "Markierung umschalten"
|
||||
|
||||
#: ../../include/conversation.php:593
|
||||
#: ../../include/conversation.php:601
|
||||
msgid "starred"
|
||||
msgstr "markiert"
|
||||
|
||||
#: ../../include/conversation.php:594
|
||||
#: ../../include/conversation.php:602
|
||||
msgid "add tag"
|
||||
msgstr "Tag hinzufügen"
|
||||
|
||||
#: ../../include/conversation.php:598
|
||||
#: ../../include/conversation.php:606
|
||||
msgid "save to folder"
|
||||
msgstr "In Ordner speichern"
|
||||
|
||||
#: ../../include/conversation.php:670
|
||||
#: ../../include/conversation.php:678
|
||||
msgid "to"
|
||||
msgstr "zu"
|
||||
|
||||
#: ../../include/conversation.php:671
|
||||
#: ../../include/conversation.php:679
|
||||
msgid "Wall-to-Wall"
|
||||
msgstr "Wall-to-Wall"
|
||||
|
||||
#: ../../include/conversation.php:672
|
||||
#: ../../include/conversation.php:680
|
||||
msgid "via Wall-To-Wall:"
|
||||
msgstr "via Wall-To-Wall:"
|
||||
|
||||
#: ../../include/conversation.php:717
|
||||
#: ../../include/conversation.php:725
|
||||
msgid "Delete Selected Items"
|
||||
msgstr "Lösche die markierten Beiträge"
|
||||
|
||||
#: ../../include/conversation.php:868
|
||||
#: ../../include/conversation.php:876
|
||||
#, php-format
|
||||
msgid "%s likes this."
|
||||
msgstr "%s mag das."
|
||||
|
||||
#: ../../include/conversation.php:868
|
||||
#: ../../include/conversation.php:876
|
||||
#, php-format
|
||||
msgid "%s doesn't like this."
|
||||
msgstr "%s mag das nicht."
|
||||
|
||||
#: ../../include/conversation.php:872
|
||||
#: ../../include/conversation.php:880
|
||||
#, 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:874
|
||||
#: ../../include/conversation.php:882
|
||||
#, 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:880
|
||||
#: ../../include/conversation.php:888
|
||||
msgid "and"
|
||||
msgstr "und"
|
||||
|
||||
#: ../../include/conversation.php:883
|
||||
#: ../../include/conversation.php:891
|
||||
#, php-format
|
||||
msgid ", and %d other people"
|
||||
msgstr " und %d andere"
|
||||
|
||||
#: ../../include/conversation.php:884
|
||||
#: ../../include/conversation.php:892
|
||||
#, php-format
|
||||
msgid "%s like this."
|
||||
msgstr "%s mögen das."
|
||||
|
||||
#: ../../include/conversation.php:884
|
||||
#: ../../include/conversation.php:892
|
||||
#, php-format
|
||||
msgid "%s don't like this."
|
||||
msgstr "%s mögen das nicht."
|
||||
|
||||
#: ../../include/conversation.php:909
|
||||
#: ../../include/conversation.php:917
|
||||
msgid "Visible to <strong>everybody</strong>"
|
||||
msgstr "Für <strong>jedermann</strong> sichtbar"
|
||||
|
||||
#: ../../include/conversation.php:911
|
||||
#: ../../include/conversation.php:919
|
||||
msgid "Please enter a video link/URL:"
|
||||
msgstr "Bitte Link/URL zum Video einfügen:"
|
||||
|
||||
#: ../../include/conversation.php:912
|
||||
#: ../../include/conversation.php:920
|
||||
msgid "Please enter an audio link/URL:"
|
||||
msgstr "Bitte Link/URL zum Audio einfügen:"
|
||||
|
||||
#: ../../include/conversation.php:913
|
||||
#: ../../include/conversation.php:921
|
||||
msgid "Tag term:"
|
||||
msgstr "Tag:"
|
||||
|
||||
#: ../../include/conversation.php:915
|
||||
#: ../../include/conversation.php:923
|
||||
msgid "Where are you right now?"
|
||||
msgstr "Wo hältst du dich jetzt gerade auf?"
|
||||
|
||||
#: ../../include/conversation.php:958
|
||||
#: ../../include/conversation.php:966
|
||||
msgid "upload photo"
|
||||
msgstr "Bild hochladen"
|
||||
|
||||
#: ../../include/conversation.php:960
|
||||
#: ../../include/conversation.php:968
|
||||
msgid "attach file"
|
||||
msgstr "Datei anhängen"
|
||||
|
||||
#: ../../include/conversation.php:962
|
||||
#: ../../include/conversation.php:970
|
||||
msgid "web link"
|
||||
msgstr "Weblink"
|
||||
|
||||
#: ../../include/conversation.php:963
|
||||
#: ../../include/conversation.php:971
|
||||
msgid "Insert video link"
|
||||
msgstr "Video-Adresse einfügen"
|
||||
|
||||
#: ../../include/conversation.php:964
|
||||
#: ../../include/conversation.php:972
|
||||
msgid "video link"
|
||||
msgstr "Video-Link"
|
||||
|
||||
#: ../../include/conversation.php:965
|
||||
#: ../../include/conversation.php:973
|
||||
msgid "Insert audio link"
|
||||
msgstr "Audio-Adresse einfügen"
|
||||
|
||||
#: ../../include/conversation.php:966
|
||||
#: ../../include/conversation.php:974
|
||||
msgid "audio link"
|
||||
msgstr "Audio-Link"
|
||||
|
||||
#: ../../include/conversation.php:968
|
||||
#: ../../include/conversation.php:976
|
||||
msgid "set location"
|
||||
msgstr "Ort setzen"
|
||||
|
||||
#: ../../include/conversation.php:970
|
||||
#: ../../include/conversation.php:978
|
||||
msgid "clear location"
|
||||
msgstr "Ort löschen"
|
||||
|
||||
#: ../../include/conversation.php:977
|
||||
#: ../../include/conversation.php:985
|
||||
msgid "permissions"
|
||||
msgstr "Zugriffsrechte"
|
||||
|
||||
|
|
@ -7052,34 +6925,34 @@ msgstr "Profil bearbeiten"
|
|||
msgid "Message"
|
||||
msgstr "Nachricht"
|
||||
|
||||
#: ../../boot.php:1151 ../../boot.php:1223
|
||||
#: ../../boot.php:1151 ../../boot.php:1227
|
||||
msgid "g A l F d"
|
||||
msgstr "l, d. F G \\U\\h\\r"
|
||||
|
||||
#: ../../boot.php:1152 ../../boot.php:1224
|
||||
#: ../../boot.php:1152 ../../boot.php:1228
|
||||
msgid "F d"
|
||||
msgstr "d. F"
|
||||
|
||||
#: ../../boot.php:1177
|
||||
msgid "Birthday Reminders"
|
||||
msgstr "Geburtstagserinnerungen"
|
||||
|
||||
#: ../../boot.php:1178
|
||||
msgid "Birthdays this week:"
|
||||
msgstr "Geburtstage diese Woche:"
|
||||
|
||||
#: ../../boot.php:1201 ../../boot.php:1266
|
||||
#: ../../boot.php:1197 ../../boot.php:1268
|
||||
msgid "[today]"
|
||||
msgstr "[heute]"
|
||||
|
||||
#: ../../boot.php:1247
|
||||
#: ../../boot.php:1209
|
||||
msgid "Birthday Reminders"
|
||||
msgstr "Geburtstagserinnerungen"
|
||||
|
||||
#: ../../boot.php:1210
|
||||
msgid "Birthdays this week:"
|
||||
msgstr "Geburtstage diese Woche:"
|
||||
|
||||
#: ../../boot.php:1261
|
||||
msgid "[No description]"
|
||||
msgstr "[keine Beschreibung]"
|
||||
|
||||
#: ../../boot.php:1279
|
||||
msgid "Event Reminders"
|
||||
msgstr "Veranstaltungserinnerungen"
|
||||
|
||||
#: ../../boot.php:1248
|
||||
#: ../../boot.php:1280
|
||||
msgid "Events this week:"
|
||||
msgstr "Veranstaltungen diese Woche"
|
||||
|
||||
#: ../../boot.php:1260
|
||||
msgid "[No description]"
|
||||
msgstr "[keine Beschreibung]"
|
||||
|
|
|
|||
|
|
@ -1,34 +1,34 @@
|
|||
|
||||
Hallo $[username],
|
||||
Danke für deine Anmeldung auf $[sitename]. Dein Account wurde angelegt.
|
||||
Die Login Details sind die folgenden:
|
||||
|
||||
|
||||
Adresse der Seite: $[siteurl]
|
||||
Login Name: $[email]
|
||||
Passwort: $[password]
|
||||
|
||||
Du kannst das Passwort in den "Einstellungen" zu deinem Account ändern
|
||||
nachdem du dich eingeloggt hast.
|
||||
|
||||
Bitte nimm dir einige Augenblicke Zeit um die anderen Einstellungen auf der Seite zu überprüfen.
|
||||
|
||||
Eventuell möchtest du außerdem einige grundlegenden Informationen in dein Standart-Profil eintragen
|
||||
(auf der "Profile" Seite) damit andere Leute dich einfacher finden können.
|
||||
|
||||
Wir empfehlen den kompletten Namen anzugeben, ein eigenes Profil-Foto,
|
||||
ein paar "Profil-Schlüsselwörter" anzugeben (damit man leichter Gleichinteressierte finden kann) - und
|
||||
natürlich in welchen Land Du lebst; wenn Du es nicht genauer angeben möchtest
|
||||
dann das.
|
||||
|
||||
Wir respektieren Ihr Recht auf Privatsphäre, und keines dieser Elemente sind notwendig.
|
||||
Wenn Du hier neu bist und keinen kennst, wird man Dir helfen
|
||||
ein paar neue und interessante Freunde zu finden.
|
||||
|
||||
|
||||
Danke dir und willkommen auf $[sitename].
|
||||
|
||||
Beste Grüße,
|
||||
$[sitename] Administrator
|
||||
|
||||
|
||||
Hallo $[username],
|
||||
Danke für deine Anmeldung auf $[sitename]. Dein Account wurde angelegt.
|
||||
Die Login Details sind die folgenden:
|
||||
|
||||
|
||||
Adresse der Seite: $[siteurl]
|
||||
Login Name: $[email]
|
||||
Passwort: $[password]
|
||||
|
||||
Du kannst das Passwort in den "Einstellungen" zu deinem Account ändern
|
||||
nachdem du dich eingeloggt hast.
|
||||
|
||||
Bitte nimm dir einige Augenblicke Zeit um die anderen Einstellungen auf der Seite zu überprüfen.
|
||||
|
||||
Eventuell möchtest du außerdem einige grundlegenden Informationen in dein Standart-Profil eintragen
|
||||
(auf der "Profile" Seite) damit andere Leute dich einfacher finden können.
|
||||
|
||||
Wir empfehlen den kompletten Namen anzugeben, ein eigenes Profil-Foto,
|
||||
ein paar "Profil-Schlüsselwörter" anzugeben (damit man leichter Gleichinteressierte finden kann) - und
|
||||
natürlich in welchen Land Du lebst; wenn Du es nicht genauer angeben möchtest
|
||||
dann das.
|
||||
|
||||
Wir respektieren Ihr Recht auf Privatsphäre, und keines dieser Elemente sind notwendig.
|
||||
Wenn Du hier neu bist und keinen kennst, wird man Dir helfen
|
||||
ein paar neue und interessante Freunde zu finden.
|
||||
|
||||
|
||||
Danke dir und willkommen auf $[sitename].
|
||||
|
||||
Beste Grüße,
|
||||
$[sitename] Administrator
|
||||
|
||||
|
||||
|
|
@ -138,7 +138,7 @@ $a->strings["Permission settings"] = "Berechtigungseinstellungen";
|
|||
$a->strings["CC: email addresses"] = "Cc:-E-Mail-Addressen";
|
||||
$a->strings["Public post"] = "Öffentlicher Beitrag";
|
||||
$a->strings["Set title"] = "Titel setzen";
|
||||
$a->strings["Categories (comma-separated list)"] = "Kategorien (mit Komma separierte Liste)";
|
||||
$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)";
|
||||
$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com";
|
||||
$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert.";
|
||||
$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt einige Profildaten nicht zur Verfügung.";
|
||||
|
|
@ -301,7 +301,8 @@ $a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
|
|||
$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
|
||||
$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
|
||||
$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
|
||||
$a->strings["stopped following"] = "wird nicht mehr gefolgt";
|
||||
$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
|
||||
$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
|
||||
$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
|
||||
$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft";
|
||||
$a->strings["You are sharing with %s"] = "Du teilst mit %s";
|
||||
|
|
@ -320,6 +321,8 @@ $a->strings["View all contacts"] = "Alle Kontakte anzeigen";
|
|||
$a->strings["Unblock"] = "Entsperren";
|
||||
$a->strings["Block"] = "Sperren";
|
||||
$a->strings["Unignore"] = "Ignorieren aufheben";
|
||||
$a->strings["Unarchive"] = "Unarchivieren";
|
||||
$a->strings["Archive"] = "Archivieren";
|
||||
$a->strings["Repair"] = "Reparieren";
|
||||
$a->strings["Contact Editor"] = "Kontakt Editor";
|
||||
$a->strings["Profile Visibility"] = "Profil Anzeige";
|
||||
|
|
@ -337,13 +340,15 @@ $a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
|
|||
$a->strings["Update now"] = "Jetzt aktualisieren";
|
||||
$a->strings["Currently blocked"] = "Derzeit geblockt";
|
||||
$a->strings["Currently ignored"] = "Derzeit ignoriert";
|
||||
$a->strings["Currently archived"] = "Momentan archiviert";
|
||||
$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein";
|
||||
$a->strings["Suggestions"] = "Kontaktvorschläge";
|
||||
$a->strings["All Contacts"] = "Alle Kontakte";
|
||||
$a->strings["Unblocked Contacts"] = "Nicht blockierte Kontakte";
|
||||
$a->strings["Blocked Contacts"] = "Blockierte Kontakte";
|
||||
$a->strings["Ignored Contacts"] = "Ignorierte Kontakte";
|
||||
$a->strings["Hidden Contacts"] = "Verborgene Kontakte";
|
||||
$a->strings["Unblocked"] = "Ungeblockt";
|
||||
$a->strings["Blocked"] = "Geblockt";
|
||||
$a->strings["Ignored"] = "Ignoriert";
|
||||
$a->strings["Archived"] = "Archiviert";
|
||||
$a->strings["Hidden"] = "Verborgen";
|
||||
$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft";
|
||||
$a->strings["is a fan of yours"] = "ist ein Fan von dir";
|
||||
$a->strings["you are a fan of"] = "du bist Fan von";
|
||||
|
|
@ -373,6 +378,7 @@ $a->strings["Connector settings"] = "Connector-Einstellungen";
|
|||
$a->strings["Plugin settings"] = "Plugin-Einstellungen";
|
||||
$a->strings["Connected apps"] = "Verbundene Programme";
|
||||
$a->strings["Export personal data"] = "Persönliche Daten exportieren";
|
||||
$a->strings["Remove account"] = "Account entfernen";
|
||||
$a->strings["Settings"] = "Einstellungen";
|
||||
$a->strings["Missing some important data!"] = "Wichtige Daten fehlen!";
|
||||
$a->strings["Update"] = "Aktualisierungen";
|
||||
|
|
@ -723,6 +729,8 @@ $a->strings["Proxy user"] = "Proxy Nutzer";
|
|||
$a->strings["Proxy URL"] = "Proxy URL";
|
||||
$a->strings["Network timeout"] = "Netzwerk Wartezeit";
|
||||
$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen).";
|
||||
$a->strings["Delivery interval"] = "Zustellungsintervall";
|
||||
$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server.";
|
||||
$a->strings["%s user blocked/unblocked"] = array(
|
||||
0 => "%s Benutzer geblockt/freigegeben",
|
||||
1 => "%s Benutzer geblockt/freigegeben",
|
||||
|
|
@ -947,7 +955,8 @@ $a->strings["The given API Key seems to work correctly."] = "Der angegebene API
|
|||
$a->strings["The correctness of the API Key could not be detected. Somthing strange's going on."] = "Die Echtheit des API Schlüssels konnte nicht überprüft werden. Etwas Merkwürdiges ist hier im Gange.";
|
||||
$a->strings["App-ID / API-Key"] = "App-ID / API-Key";
|
||||
$a->strings["Application secret"] = "Anwendungs-Geheimnis";
|
||||
$a->strings["Polling Interval (min. %1\$s minutes)"] = "Abrufintervall (min. %1\$s Minuten)";
|
||||
$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "Abfrage-Intervall in Minuten (min %1\$s Minuten)";
|
||||
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "Kommentare synchronisieren (Kein Kommentar von Facebook geht verlohren, verursacht höhere Last auf dem Server)";
|
||||
$a->strings["Real-Time Updates"] = "Echt-Zeit Aktualisierungen";
|
||||
$a->strings["Real-Time Updates are activated."] = "Echtzeit-Updates sind aktiviert.";
|
||||
$a->strings["Deactivate Real-Time Updates"] = "Echtzeit-Updates deaktivieren";
|
||||
|
|
@ -961,6 +970,11 @@ $a->strings["Facebook post failed. Queued for retry."] = "Veröffentlichung bei
|
|||
$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "Deine Facebook Anmeldedaten sind ungültig geworden. Bitte re-authentifiziere dich.";
|
||||
$a->strings["Facebook connection became invalid"] = "Facebook Anmeldedaten sind ungültig geworden";
|
||||
$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = "Hi %1\$s,\n\ndie Verbindung von deinem Account auf %2\$s und Facebook funktioniert derzeit nicht. Dies ist im Allgemeinen das Ergebnis einer Passwortänderung bei Facebook. Um die Verbindung wieder zu aktivieren musst du %3\$sden Facebook-Connector neu Authentifizieren%4\$s.";
|
||||
$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";
|
||||
$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",
|
||||
|
|
@ -969,6 +983,7 @@ $a->strings["%d person doesn't like this"] = array(
|
|||
0 => " %d Person mag das nicht",
|
||||
1 => "%d Leute mögen das nicht",
|
||||
);
|
||||
$a->strings["Get added to this list!"] = "Werde Mitglied dieser Liste";
|
||||
$a->strings["Generate new key"] = "Neuen Schlüssel erstellen";
|
||||
$a->strings["Widgets key"] = "Widgets Schlüssel";
|
||||
$a->strings["Widgets available"] = "Verfügbare Widgets";
|
||||
|
|
@ -1058,12 +1073,12 @@ $a->strings["The impressum addon needs to be configured!<br />Please add at leas
|
|||
$a->strings["The page operators name."] = "Name des Server-Administrators";
|
||||
$a->strings["Site Owners Profile"] = "Profil des Seitenbetreibers";
|
||||
$a->strings["Profile address of the operator."] = "Profil-Adresse des Server-Administrators";
|
||||
$a->strings["How to contact the operator via snail mail."] = "Wie erreicht man den Betreiber der Seite postalisch.";
|
||||
$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "Kontaktmöglichkeiten zum Administrator via Schneckenpost. Du kannst BBCode verwenden.";
|
||||
$a->strings["Notes"] = "Hinweise";
|
||||
$a->strings["Additional notes that are displayed beneath the contact information."] = "Zusätzliche Angaben, die unterhalb der Kontakt-Informationen angezeigt werden.";
|
||||
$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "Zusätzliche Informationen die neben den Kontaktmöglichkeiten angezeigt werden. Du kannst BBCode verwenden.";
|
||||
$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "Wie erreichts man den Betreiber per Email. (Adresse wird verschleiert dargestellt)";
|
||||
$a->strings["Footer note"] = "Fußnote";
|
||||
$a->strings["Text for the footer."] = "Text für die Fußnote";
|
||||
$a->strings["Text for the footer. You can use BBCode here."] = "Text für die Fußzeile. Du kannst BBCode verwenden.";
|
||||
$a->strings["Report Bug"] = "Fehlerreport erstellen";
|
||||
$a->strings["\"Blockem\" Settings"] = "\"Blockem\"-Einstellungen";
|
||||
$a->strings["Comma separated profile URLS to block"] = "Profil-URLs, die blockiert werden sollen (durch Kommas getrennt)";
|
||||
|
|
@ -1204,6 +1219,10 @@ $a->strings["Enable Posterous Post Plugin"] = "Posterous-Plugin aktivieren";
|
|||
$a->strings["Posterous login"] = "Posterous-Anmeldename";
|
||||
$a->strings["Posterous password"] = "Posterous-Passwort";
|
||||
$a->strings["Post to Posterous by default"] = "Veröffentliche öffentliche Beiträge standardmäßig bei Posterous";
|
||||
$a->strings["Theme settings"] = "Themen Einstellungen";
|
||||
$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)";
|
||||
$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen";
|
||||
$a->strings["Color scheme"] = "Farbschema";
|
||||
$a->strings["Last users"] = "Letzte Nutzer";
|
||||
$a->strings["Last likes"] = "Zuletzt gemocht";
|
||||
$a->strings["Last photos"] = "Letzte Fotos";
|
||||
|
|
@ -1221,15 +1240,13 @@ $a->strings["Your photos"] = "Deine Fotos";
|
|||
$a->strings["Your events"] = "Deine Ereignisse";
|
||||
$a->strings["Personal notes"] = "Persönliche Notizen";
|
||||
$a->strings["Your personal photos"] = "Deine privaten Fotos";
|
||||
$a->strings["Theme settings"] = "Themen Einstellungen";
|
||||
$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen";
|
||||
$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen";
|
||||
$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen";
|
||||
$a->strings["Set color scheme"] = "Wähle Farbschema";
|
||||
$a->strings["Alignment"] = "Ausrichtung";
|
||||
$a->strings["Left"] = "Links";
|
||||
$a->strings["Center"] = "Mitte";
|
||||
$a->strings["Color scheme"] = "Farbschema";
|
||||
$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";
|
||||
|
|
@ -1505,6 +1522,7 @@ $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 Sicherheits-Merkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden).";
|
||||
$a->strings["stopped following"] = "wird nicht mehr gefolgt";
|
||||
$a->strings["View Status"] = "Pinnwand anschauen";
|
||||
$a->strings["View Profile"] = "Profil anschauen";
|
||||
$a->strings["View Photos"] = "Bilder anschauen";
|
||||
|
|
@ -1525,6 +1543,14 @@ $a->strings["like"] = "mag ich";
|
|||
$a->strings["dislike"] = "mag ich nicht";
|
||||
$a->strings["Share this"] = "Teile dieses";
|
||||
$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";
|
||||
|
|
@ -1569,9 +1595,9 @@ $a->strings["Edit profile"] = "Profil bearbeiten";
|
|||
$a->strings["Message"] = "Nachricht";
|
||||
$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r";
|
||||
$a->strings["F d"] = "d. F";
|
||||
$a->strings["[today]"] = "[heute]";
|
||||
$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen";
|
||||
$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:";
|
||||
$a->strings["[today]"] = "[heute]";
|
||||
$a->strings["[No description]"] = "[keine Beschreibung]";
|
||||
$a->strings["Event Reminders"] = "Veranstaltungserinnerungen";
|
||||
$a->strings["Events this week:"] = "Veranstaltungen diese Woche";
|
||||
$a->strings["[No description]"] = "[keine Beschreibung]";
|
||||
|
|
|
|||
1481
view/eo/messages.po
1481
view/eo/messages.po
|
|
@ -9,8 +9,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
|
||||
"POT-Creation-Date: 2012-04-23 10:00-0700\n"
|
||||
"PO-Revision-Date: 2012-04-25 06:35+0000\n"
|
||||
"POT-Creation-Date: 2012-04-28 10:00-0700\n"
|
||||
"PO-Revision-Date: 2012-04-29 20:18+0000\n"
|
||||
"Last-Translator: Martin Schmitt <mas@scsy.de>\n"
|
||||
"Language-Team: Esperanto (http://www.transifex.net/projects/p/friendica/language/eo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
@ -41,8 +41,8 @@ msgstr "Ĝisdatigo de kontakto malsukcesis."
|
|||
#: ../../mod/api.php:31 ../../mod/photos.php:130 ../../mod/photos.php:865
|
||||
#: ../../mod/editpost.php:10 ../../mod/install.php:171
|
||||
#: ../../mod/notifications.php:66 ../../mod/contacts.php:125
|
||||
#: ../../mod/settings.php:99 ../../mod/settings.php:514
|
||||
#: ../../mod/settings.php:519 ../../mod/manage.php:86 ../../mod/network.php:6
|
||||
#: ../../mod/settings.php:104 ../../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
|
||||
|
|
@ -87,8 +87,8 @@ msgstr "Bonvolu klaki 'malantaŭen' en via retesplorilo <strong>nun</strong> se
|
|||
msgid "Return to contact editor"
|
||||
msgstr "Reen al kontakta redaktilo"
|
||||
|
||||
#: ../../mod/crepair.php:148 ../../mod/settings.php:534
|
||||
#: ../../mod/settings.php:560 ../../mod/admin.php:573 ../../mod/admin.php:582
|
||||
#: ../../mod/crepair.php:148 ../../mod/settings.php:539
|
||||
#: ../../mod/settings.php:565 ../../mod/admin.php:575 ../../mod/admin.php:584
|
||||
msgid "Name"
|
||||
msgstr "Nomo"
|
||||
|
||||
|
|
@ -129,19 +129,19 @@ msgstr "Nova bildo el tiu adreso"
|
|||
#: ../../mod/photos.php:1193 ../../mod/photos.php:1233
|
||||
#: ../../mod/photos.php:1273 ../../mod/photos.php:1304
|
||||
#: ../../mod/install.php:251 ../../mod/install.php:289
|
||||
#: ../../mod/localtime.php:45 ../../mod/contacts.php:325
|
||||
#: ../../mod/settings.php:532 ../../mod/settings.php:678
|
||||
#: ../../mod/settings.php:739 ../../mod/settings.php:930
|
||||
#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:392
|
||||
#: ../../mod/admin.php:570 ../../mod/admin.php:706 ../../mod/admin.php:905
|
||||
#: ../../mod/admin.php:993 ../../mod/profiles.php:498 ../../mod/invite.php:119
|
||||
#: ../../mod/localtime.php:45 ../../mod/contacts.php:318
|
||||
#: ../../mod/settings.php:537 ../../mod/settings.php:683
|
||||
#: ../../mod/settings.php:744 ../../mod/settings.php:935
|
||||
#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:393
|
||||
#: ../../mod/admin.php:572 ../../mod/admin.php:708 ../../mod/admin.php:907
|
||||
#: ../../mod/admin.php:995 ../../mod/profiles.php:498 ../../mod/invite.php:119
|
||||
#: ../../addon/facebook/facebook.php:574 ../../addon/yourls/yourls.php:76
|
||||
#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:57
|
||||
#: ../../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/geonames/geonames.php:187
|
||||
#: ../../addon/oembed.old/oembed.php:41 ../../addon/impressum/impressum.php:80
|
||||
#: ../../addon/oembed.old/oembed.php:41 ../../addon/impressum/impressum.php:82
|
||||
#: ../../addon/blockem/blockem.php:57 ../../addon/qcomment/qcomment.php:61
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:70
|
||||
#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84
|
||||
|
|
@ -160,14 +160,10 @@ msgstr "Nova bildo el tiu adreso"
|
|||
#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:375
|
||||
#: ../../addon/irc/irc.php:55 ../../addon/blogger/blogger.php:102
|
||||
#: ../../addon/posterous/posterous.php:90
|
||||
#: ../../view/theme/diabook/diabook-green/config.php:76
|
||||
#: ../../view/theme/diabook/diabook-red/config.php:76
|
||||
#: ../../view/theme/diabook/diabook-blue/config.php:76
|
||||
#: ../../view/theme/diabook/diabook-dark/config.php:76
|
||||
#: ../../view/theme/diabook/diabook-aerith/config.php:76
|
||||
#: ../../view/theme/diabook/diabook-pink/config.php:76
|
||||
#: ../../view/theme/cleanzero/config.php:71
|
||||
#: ../../view/theme/diabook/config.php:91
|
||||
#: ../../view/theme/quattro/config.php:52 ../../include/conversation.php:555
|
||||
#: ../../view/theme/quattro/config.php:52 ../../view/theme/dispy/config.php:70
|
||||
#: ../../include/conversation.php:555
|
||||
msgid "Submit"
|
||||
msgstr "Sendi"
|
||||
|
||||
|
|
@ -225,15 +221,8 @@ msgstr "Redakti okazon"
|
|||
msgid "link to source"
|
||||
msgstr "ligi al fonto"
|
||||
|
||||
#: ../../mod/events.php:296
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:233
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:231
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:231
|
||||
#: ../../view/theme/diabook/theme.php:250
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:233
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:233
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:233
|
||||
#: ../../include/nav.php:52 ../../boot.php:1471
|
||||
#: ../../mod/events.php:296 ../../view/theme/diabook/theme.php:255
|
||||
#: ../../include/nav.php:52 ../../boot.php:1481
|
||||
msgid "Events"
|
||||
msgstr "Okazoj"
|
||||
|
||||
|
|
@ -292,8 +281,8 @@ msgid "Share this event"
|
|||
msgstr "Kunhavigi la okazon"
|
||||
|
||||
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
|
||||
#: ../../mod/dfrn_request.php:800 ../../mod/settings.php:533
|
||||
#: ../../mod/settings.php:559 ../../addon/js_upload/js_upload.php:45
|
||||
#: ../../mod/dfrn_request.php:817 ../../mod/settings.php:538
|
||||
#: ../../mod/settings.php:564 ../../addon/js_upload/js_upload.php:45
|
||||
msgid "Cancel"
|
||||
msgstr "Nuligi"
|
||||
|
||||
|
|
@ -336,24 +325,24 @@ msgid ""
|
|||
" and/or create new posts for you?"
|
||||
msgstr "Ĉu rajtigi ĉi tiun programon por atingi viajn afiŝojn kaj kontaktojn kaj/aŭ krei novajn afiŝojn?"
|
||||
|
||||
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:788
|
||||
#: ../../mod/settings.php:844 ../../mod/settings.php:850
|
||||
#: ../../mod/settings.php:858 ../../mod/settings.php:862
|
||||
#: ../../mod/settings.php:867 ../../mod/settings.php:873
|
||||
#: ../../mod/settings.php:879 ../../mod/settings.php:885
|
||||
#: ../../mod/settings.php:921 ../../mod/settings.php:922
|
||||
#: ../../mod/settings.php:923 ../../mod/settings.php:924
|
||||
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:805
|
||||
#: ../../mod/settings.php:849 ../../mod/settings.php:855
|
||||
#: ../../mod/settings.php:863 ../../mod/settings.php:867
|
||||
#: ../../mod/settings.php:872 ../../mod/settings.php:878
|
||||
#: ../../mod/settings.php:884 ../../mod/settings.php:890
|
||||
#: ../../mod/settings.php:926 ../../mod/settings.php:927
|
||||
#: ../../mod/settings.php:928 ../../mod/settings.php:929
|
||||
#: ../../mod/register.php:532 ../../mod/profiles.php:475
|
||||
msgid "Yes"
|
||||
msgstr "Jes"
|
||||
|
||||
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:789
|
||||
#: ../../mod/settings.php:844 ../../mod/settings.php:850
|
||||
#: ../../mod/settings.php:858 ../../mod/settings.php:862
|
||||
#: ../../mod/settings.php:867 ../../mod/settings.php:873
|
||||
#: ../../mod/settings.php:879 ../../mod/settings.php:885
|
||||
#: ../../mod/settings.php:921 ../../mod/settings.php:922
|
||||
#: ../../mod/settings.php:923 ../../mod/settings.php:924
|
||||
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:806
|
||||
#: ../../mod/settings.php:849 ../../mod/settings.php:855
|
||||
#: ../../mod/settings.php:863 ../../mod/settings.php:867
|
||||
#: ../../mod/settings.php:872 ../../mod/settings.php:878
|
||||
#: ../../mod/settings.php:884 ../../mod/settings.php:890
|
||||
#: ../../mod/settings.php:926 ../../mod/settings.php:927
|
||||
#: ../../mod/settings.php:928 ../../mod/settings.php:929
|
||||
#: ../../mod/register.php:533 ../../mod/profiles.php:476
|
||||
msgid "No"
|
||||
msgstr "Ne"
|
||||
|
|
@ -365,13 +354,7 @@ msgstr "Bildalbumoj"
|
|||
#: ../../mod/photos.php:51 ../../mod/photos.php:151 ../../mod/photos.php:879
|
||||
#: ../../mod/photos.php:950 ../../mod/photos.php:965 ../../mod/photos.php:1382
|
||||
#: ../../mod/photos.php:1394 ../../addon/communityhome/communityhome.php:110
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:116
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:115
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:115
|
||||
#: ../../view/theme/diabook/theme.php:130
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:116
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:116
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:116
|
||||
#: ../../view/theme/diabook/theme.php:135
|
||||
msgid "Contact Photos"
|
||||
msgstr "Kontaktbildoj"
|
||||
|
||||
|
|
@ -394,13 +377,7 @@ msgstr "Kontaktoj informoj ne disponeblas"
|
|||
#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:174
|
||||
#: ../../mod/profile_photo.php:252 ../../mod/profile_photo.php:261
|
||||
#: ../../addon/communityhome/communityhome.php:111
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:117
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:116
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:116
|
||||
#: ../../view/theme/diabook/theme.php:131
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:117
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:117
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:117
|
||||
#: ../../view/theme/diabook/theme.php:136
|
||||
msgid "Profile Photos"
|
||||
msgstr "Profilbildoj"
|
||||
|
||||
|
|
@ -422,15 +399,9 @@ msgstr "estas markita en"
|
|||
|
||||
#: ../../mod/photos.php:528 ../../mod/like.php:127 ../../mod/tagger.php:70
|
||||
#: ../../addon/communityhome/communityhome.php:163
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:88
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:87
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:87
|
||||
#: ../../view/theme/diabook/theme.php:102
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:88
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:88
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:88
|
||||
#: ../../include/text.php:1304 ../../include/diaspora.php:1654
|
||||
#: ../../include/conversation.php:53 ../../include/conversation.php:126
|
||||
#: ../../view/theme/diabook/theme.php:107 ../../include/text.php:1304
|
||||
#: ../../include/diaspora.php:1654 ../../include/conversation.php:53
|
||||
#: ../../include/conversation.php:126
|
||||
msgid "photo"
|
||||
msgstr "bildo"
|
||||
|
||||
|
|
@ -457,7 +428,7 @@ msgid "Image upload failed."
|
|||
msgstr "Alŝuto de bildo malsukcesis."
|
||||
|
||||
#: ../../mod/photos.php:759 ../../mod/community.php:16
|
||||
#: ../../mod/dfrn_request.php:719 ../../mod/viewcontacts.php:17
|
||||
#: ../../mod/dfrn_request.php:731 ../../mod/viewcontacts.php:17
|
||||
#: ../../mod/display.php:7 ../../mod/search.php:71 ../../mod/directory.php:29
|
||||
msgid "Public access denied."
|
||||
msgstr "Publika atingo ne permesita."
|
||||
|
|
@ -559,14 +530,14 @@ msgstr "Mi ŝatas tion (ŝalti)"
|
|||
msgid "I don't like this (toggle)"
|
||||
msgstr "Mi malŝatas tion(ŝalti)"
|
||||
|
||||
#: ../../mod/photos.php:1213 ../../include/conversation.php:956
|
||||
#: ../../mod/photos.php:1213 ../../include/conversation.php:964
|
||||
msgid "Share"
|
||||
msgstr "Kunhavigi"
|
||||
|
||||
#: ../../mod/photos.php:1214 ../../mod/editpost.php:104
|
||||
#: ../../mod/wallmessage.php:145 ../../mod/message.php:188
|
||||
#: ../../mod/message.php:357 ../../include/conversation.php:361
|
||||
#: ../../include/conversation.php:698 ../../include/conversation.php:975
|
||||
#: ../../mod/message.php:380 ../../include/conversation.php:361
|
||||
#: ../../include/conversation.php:706 ../../include/conversation.php:983
|
||||
msgid "Please wait"
|
||||
msgstr "Bonvolu atendi"
|
||||
|
||||
|
|
@ -582,13 +553,13 @@ msgid "Comment"
|
|||
msgstr "Komenti"
|
||||
|
||||
#: ../../mod/photos.php:1234 ../../mod/editpost.php:125
|
||||
#: ../../include/conversation.php:556 ../../include/conversation.php:993
|
||||
#: ../../include/conversation.php:564 ../../include/conversation.php:1001
|
||||
msgid "Preview"
|
||||
msgstr "Antaŭrigardi"
|
||||
|
||||
#: ../../mod/photos.php:1331 ../../mod/settings.php:595
|
||||
#: ../../mod/settings.php:676 ../../mod/group.php:168 ../../mod/admin.php:577
|
||||
#: ../../include/conversation.php:318 ../../include/conversation.php:576
|
||||
#: ../../mod/photos.php:1331 ../../mod/settings.php:600
|
||||
#: ../../mod/settings.php:681 ../../mod/group.php:168 ../../mod/admin.php:579
|
||||
#: ../../include/conversation.php:318 ../../include/conversation.php:584
|
||||
msgid "Delete"
|
||||
msgstr "Forviŝi"
|
||||
|
||||
|
|
@ -604,19 +575,12 @@ msgstr "̂Ĵusaj bildoj"
|
|||
msgid "Not available."
|
||||
msgstr "Ne disponebla."
|
||||
|
||||
#: ../../mod/community.php:30
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:235
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:233
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:233
|
||||
#: ../../view/theme/diabook/theme.php:252
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:235
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:235
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:235
|
||||
#: ../../mod/community.php:30 ../../view/theme/diabook/theme.php:257
|
||||
#: ../../include/nav.php:101
|
||||
msgid "Community"
|
||||
msgstr "Komunumo"
|
||||
|
||||
#: ../../mod/community.php:61 ../../mod/search.php:115
|
||||
#: ../../mod/community.php:61 ../../mod/search.php:128
|
||||
msgid "No results."
|
||||
msgstr "Nenion trovita."
|
||||
|
||||
|
|
@ -660,28 +624,28 @@ msgstr "Elemento ne trovita"
|
|||
msgid "Edit post"
|
||||
msgstr "Redakti afiŝon"
|
||||
|
||||
#: ../../mod/editpost.php:80 ../../include/conversation.php:942
|
||||
#: ../../mod/editpost.php:80 ../../include/conversation.php:950
|
||||
msgid "Post to Email"
|
||||
msgstr "Sendi tra retpoŝto"
|
||||
|
||||
#: ../../mod/editpost.php:95 ../../mod/settings.php:594
|
||||
#: ../../include/conversation.php:563
|
||||
#: ../../mod/editpost.php:95 ../../mod/settings.php:599
|
||||
#: ../../include/conversation.php:571
|
||||
msgid "Edit"
|
||||
msgstr "Redakti"
|
||||
|
||||
#: ../../mod/editpost.php:96 ../../mod/wallmessage.php:143
|
||||
#: ../../mod/message.php:186 ../../mod/message.php:355
|
||||
#: ../../include/conversation.php:957
|
||||
#: ../../mod/message.php:186 ../../mod/message.php:378
|
||||
#: ../../include/conversation.php:965
|
||||
msgid "Upload photo"
|
||||
msgstr "Alŝuti bildon"
|
||||
|
||||
#: ../../mod/editpost.php:97 ../../include/conversation.php:959
|
||||
#: ../../mod/editpost.php:97 ../../include/conversation.php:967
|
||||
msgid "Attach file"
|
||||
msgstr "Kunligi dosieron"
|
||||
|
||||
#: ../../mod/editpost.php:98 ../../mod/wallmessage.php:144
|
||||
#: ../../mod/message.php:187 ../../mod/message.php:356
|
||||
#: ../../include/conversation.php:961
|
||||
#: ../../mod/message.php:187 ../../mod/message.php:379
|
||||
#: ../../include/conversation.php:969
|
||||
msgid "Insert web link"
|
||||
msgstr "Enmeti retan adreson"
|
||||
|
||||
|
|
@ -697,35 +661,35 @@ msgstr "Enmeti videton en formato Vorbis [.ogg]"
|
|||
msgid "Insert Vorbis [.ogg] audio"
|
||||
msgstr "Enmeti sonon en formato Vorbis [.ogg]"
|
||||
|
||||
#: ../../mod/editpost.php:102 ../../include/conversation.php:967
|
||||
#: ../../mod/editpost.php:102 ../../include/conversation.php:975
|
||||
msgid "Set your location"
|
||||
msgstr "Agordi vian lokon"
|
||||
|
||||
#: ../../mod/editpost.php:103 ../../include/conversation.php:969
|
||||
#: ../../mod/editpost.php:103 ../../include/conversation.php:977
|
||||
msgid "Clear browser location"
|
||||
msgstr "Forviŝu retesplorilan lokon"
|
||||
|
||||
#: ../../mod/editpost.php:105 ../../include/conversation.php:976
|
||||
#: ../../mod/editpost.php:105 ../../include/conversation.php:984
|
||||
msgid "Permission settings"
|
||||
msgstr "Permesagordoj"
|
||||
|
||||
#: ../../mod/editpost.php:113 ../../include/conversation.php:985
|
||||
#: ../../mod/editpost.php:113 ../../include/conversation.php:993
|
||||
msgid "CC: email addresses"
|
||||
msgstr "CC: retpoŝtadresojn"
|
||||
|
||||
#: ../../mod/editpost.php:114 ../../include/conversation.php:986
|
||||
#: ../../mod/editpost.php:114 ../../include/conversation.php:994
|
||||
msgid "Public post"
|
||||
msgstr "Publika afiŝo"
|
||||
|
||||
#: ../../mod/editpost.php:117 ../../include/conversation.php:972
|
||||
#: ../../mod/editpost.php:117 ../../include/conversation.php:980
|
||||
msgid "Set title"
|
||||
msgstr "Redakti titolon"
|
||||
|
||||
#: ../../mod/editpost.php:119 ../../include/conversation.php:974
|
||||
#: ../../mod/editpost.php:119 ../../include/conversation.php:982
|
||||
msgid "Categories (comma-separated list)"
|
||||
msgstr "Kategorioj (disigita per komo)"
|
||||
|
||||
#: ../../mod/editpost.php:120 ../../include/conversation.php:988
|
||||
#: ../../mod/editpost.php:120 ../../include/conversation.php:996
|
||||
msgid "Example: bob@example.com, mary@example.com"
|
||||
msgstr "Ekzemple: bob@example.com, mary@example.com"
|
||||
|
||||
|
|
@ -733,19 +697,19 @@ msgstr "Ekzemple: bob@example.com, mary@example.com"
|
|||
msgid "This introduction has already been accepted."
|
||||
msgstr "Tia prezento jam estas akceptita"
|
||||
|
||||
#: ../../mod/dfrn_request.php:117 ../../mod/dfrn_request.php:475
|
||||
#: ../../mod/dfrn_request.php:117 ../../mod/dfrn_request.php:487
|
||||
msgid "Profile location is not valid or does not contain profile information."
|
||||
msgstr "La adreso de la profilo ne validas aŭ ne enhavas profilinformojn."
|
||||
|
||||
#: ../../mod/dfrn_request.php:122 ../../mod/dfrn_request.php:480
|
||||
#: ../../mod/dfrn_request.php:122 ../../mod/dfrn_request.php:492
|
||||
msgid "Warning: profile location has no identifiable owner name."
|
||||
msgstr "Averto: La adreso de la profilo ne enhavas identeblan personan nomon."
|
||||
|
||||
#: ../../mod/dfrn_request.php:124 ../../mod/dfrn_request.php:482
|
||||
#: ../../mod/dfrn_request.php:124 ../../mod/dfrn_request.php:494
|
||||
msgid "Warning: profile location has no profile photo."
|
||||
msgstr "Averto: La adreso de la profilo ne enhavas bildon."
|
||||
|
||||
#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:485
|
||||
#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:497
|
||||
#, php-format
|
||||
msgid "%d required parameter was not found at the given location"
|
||||
msgid_plural "%d required parameters were not found at the given location"
|
||||
|
|
@ -789,128 +753,128 @@ msgstr "Nevalida repoŝtadreso."
|
|||
msgid "This account has not been configured for email. Request failed."
|
||||
msgstr "La konto ne estas agordita por retpoŝto. La peto malsukcesis."
|
||||
|
||||
#: ../../mod/dfrn_request.php:420
|
||||
#: ../../mod/dfrn_request.php:432
|
||||
msgid "Unable to resolve your name at the provided location."
|
||||
msgstr "Via nomo ne troveblas al la donita adreso."
|
||||
|
||||
#: ../../mod/dfrn_request.php:433
|
||||
#: ../../mod/dfrn_request.php:445
|
||||
msgid "You have already introduced yourself here."
|
||||
msgstr "Vi vin jam prezentis tie."
|
||||
|
||||
#: ../../mod/dfrn_request.php:437
|
||||
#: ../../mod/dfrn_request.php:449
|
||||
#, php-format
|
||||
msgid "Apparently you are already friends with %s."
|
||||
msgstr "Ŝajnas kvazaŭ vi jam amikiĝis kun %s."
|
||||
|
||||
#: ../../mod/dfrn_request.php:458
|
||||
#: ../../mod/dfrn_request.php:470
|
||||
msgid "Invalid profile URL."
|
||||
msgstr "Nevalida adreso de profilo."
|
||||
|
||||
#: ../../mod/dfrn_request.php:464 ../../mod/follow.php:20
|
||||
#: ../../mod/dfrn_request.php:476 ../../mod/follow.php:20
|
||||
msgid "Disallowed profile URL."
|
||||
msgstr "Malpermesita adreso de profilo."
|
||||
|
||||
#: ../../mod/dfrn_request.php:533 ../../mod/contacts.php:102
|
||||
#: ../../mod/dfrn_request.php:545 ../../mod/contacts.php:102
|
||||
msgid "Failed to update contact record."
|
||||
msgstr "Ĝisdatigo de via kontaktrikordo malsukcesis."
|
||||
|
||||
#: ../../mod/dfrn_request.php:554
|
||||
#: ../../mod/dfrn_request.php:566
|
||||
msgid "Your introduction has been sent."
|
||||
msgstr "Via prezento estas sendita."
|
||||
|
||||
#: ../../mod/dfrn_request.php:607
|
||||
#: ../../mod/dfrn_request.php:619
|
||||
msgid "Please login to confirm introduction."
|
||||
msgstr "Bonvolu ensaluti por jesigi la prezenton."
|
||||
|
||||
#: ../../mod/dfrn_request.php:621
|
||||
#: ../../mod/dfrn_request.php:633
|
||||
msgid ""
|
||||
"Incorrect identity currently logged in. Please login to "
|
||||
"<strong>this</strong> profile."
|
||||
msgstr "Malĝusta identaĵo ensalutata. Bonvolu ensaluti en <strong>tiun</strong> profilon."
|
||||
|
||||
#: ../../mod/dfrn_request.php:633
|
||||
#: ../../mod/dfrn_request.php:645
|
||||
#, php-format
|
||||
msgid "Welcome home %s."
|
||||
msgstr "Bonvenon hejme, %s."
|
||||
|
||||
#: ../../mod/dfrn_request.php:634
|
||||
#: ../../mod/dfrn_request.php:646
|
||||
#, php-format
|
||||
msgid "Please confirm your introduction/connection request to %s."
|
||||
msgstr "Bonvolu konfirmi vian prezenton / kontaktpeton al %s."
|
||||
|
||||
#: ../../mod/dfrn_request.php:635
|
||||
#: ../../mod/dfrn_request.php:647
|
||||
msgid "Confirm"
|
||||
msgstr "Konfirmi."
|
||||
|
||||
#: ../../mod/dfrn_request.php:676 ../../include/items.php:2691
|
||||
#: ../../mod/dfrn_request.php:688 ../../include/items.php:2691
|
||||
msgid "[Name Withheld]"
|
||||
msgstr "[Kaŝita nomo]"
|
||||
|
||||
#: ../../mod/dfrn_request.php:763
|
||||
#: ../../mod/dfrn_request.php:780
|
||||
msgid ""
|
||||
"Please enter your 'Identity Address' from one of the following supported "
|
||||
"communications networks:"
|
||||
msgstr "Bonvolu entajpi vian 'Identecan Adreson' de iu de tiuj subtenataj komunikaj retejoj: "
|
||||
|
||||
#: ../../mod/dfrn_request.php:779
|
||||
#: ../../mod/dfrn_request.php:796
|
||||
msgid "<strike>Connect as an email follower</strike> (Coming soon)"
|
||||
msgstr "<strike>Konektu kiel retpoŝta sekvanto</strike> (Baldaŭ venos)"
|
||||
|
||||
#: ../../mod/dfrn_request.php:781
|
||||
#: ../../mod/dfrn_request.php:798
|
||||
msgid ""
|
||||
"If you are not yet a member of the free social web, <a "
|
||||
"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
|
||||
" Friendica site and join us today</a>."
|
||||
msgstr "Se vi ne estas membro de la libra interkona reto, <a href=\"http://dir.friendica.com/siteinfo\">sekvu ĉi-ligilon por trovi publikan Friendica retejon kaj aliĝi kun ni hodiaŭ</a>."
|
||||
|
||||
#: ../../mod/dfrn_request.php:784
|
||||
#: ../../mod/dfrn_request.php:801
|
||||
msgid "Friend/Connection Request"
|
||||
msgstr "Prezento / Konektpeto"
|
||||
|
||||
#: ../../mod/dfrn_request.php:785
|
||||
#: ../../mod/dfrn_request.php:802
|
||||
msgid ""
|
||||
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
|
||||
"testuser@identi.ca"
|
||||
msgstr "Ekzemploj: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
|
||||
|
||||
#: ../../mod/dfrn_request.php:786
|
||||
#: ../../mod/dfrn_request.php:803
|
||||
msgid "Please answer the following:"
|
||||
msgstr "Bonvolu respondi:"
|
||||
|
||||
#: ../../mod/dfrn_request.php:787
|
||||
#: ../../mod/dfrn_request.php:804
|
||||
#, php-format
|
||||
msgid "Does %s know you?"
|
||||
msgstr "Ĉu %s konas vin?"
|
||||
|
||||
#: ../../mod/dfrn_request.php:790
|
||||
#: ../../mod/dfrn_request.php:807
|
||||
msgid "Add a personal note:"
|
||||
msgstr "Aldoni personan noton:"
|
||||
|
||||
#: ../../mod/dfrn_request.php:792 ../../include/contact_selectors.php:76
|
||||
#: ../../mod/dfrn_request.php:809 ../../include/contact_selectors.php:76
|
||||
msgid "Friendica"
|
||||
msgstr "Friendica"
|
||||
|
||||
#: ../../mod/dfrn_request.php:793
|
||||
#: ../../mod/dfrn_request.php:810
|
||||
msgid "StatusNet/Federated Social Web"
|
||||
msgstr "StatusNet/Federaciaj interkonaj retejoj"
|
||||
|
||||
#: ../../mod/dfrn_request.php:794 ../../mod/settings.php:629
|
||||
#: ../../mod/dfrn_request.php:811 ../../mod/settings.php:634
|
||||
#: ../../include/contact_selectors.php:80
|
||||
msgid "Diaspora"
|
||||
msgstr "Diaspora"
|
||||
|
||||
#: ../../mod/dfrn_request.php:795
|
||||
#: ../../mod/dfrn_request.php:812
|
||||
#, php-format
|
||||
msgid ""
|
||||
" - please do not use this form. Instead, enter %s into your Diaspora search"
|
||||
" bar."
|
||||
msgstr " - bonvolu ne uzi ĉi formo. Anstataŭe, entajpu %s en la Diaspora serĉilo."
|
||||
|
||||
#: ../../mod/dfrn_request.php:796
|
||||
#: ../../mod/dfrn_request.php:813
|
||||
msgid "Your Identity Address:"
|
||||
msgstr "Via identeca adreso:"
|
||||
|
||||
#: ../../mod/dfrn_request.php:799
|
||||
#: ../../mod/dfrn_request.php:816
|
||||
msgid "Submit Request"
|
||||
msgstr "Sendi peton"
|
||||
|
||||
|
|
@ -1237,8 +1201,8 @@ msgid "Discard"
|
|||
msgstr "Forviŝi"
|
||||
|
||||
#: ../../mod/notifications.php:51 ../../mod/notifications.php:160
|
||||
#: ../../mod/notifications.php:206 ../../mod/contacts.php:308
|
||||
#: ../../mod/contacts.php:351
|
||||
#: ../../mod/notifications.php:206 ../../mod/contacts.php:295
|
||||
#: ../../mod/contacts.php:344
|
||||
msgid "Ignore"
|
||||
msgstr "Ignori"
|
||||
|
||||
|
|
@ -1254,14 +1218,7 @@ msgstr "Reto"
|
|||
msgid "Personal"
|
||||
msgstr "Propra"
|
||||
|
||||
#: ../../mod/notifications.php:90
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:229
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:227
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:227
|
||||
#: ../../view/theme/diabook/theme.php:246
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:229
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:229
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:229
|
||||
#: ../../mod/notifications.php:90 ../../view/theme/diabook/theme.php:251
|
||||
#: ../../include/nav.php:77 ../../include/nav.php:115
|
||||
msgid "Home"
|
||||
msgstr "Hejmo"
|
||||
|
|
@ -1297,7 +1254,7 @@ msgid "suggested by %s"
|
|||
msgstr "sugestita de %s"
|
||||
|
||||
#: ../../mod/notifications.php:153 ../../mod/notifications.php:200
|
||||
#: ../../mod/contacts.php:356
|
||||
#: ../../mod/contacts.php:350
|
||||
msgid "Hide this contact from others"
|
||||
msgstr "Kaŝi ĉi tiun kontakton al aliaj"
|
||||
|
||||
|
|
@ -1310,7 +1267,7 @@ msgid "if applicable"
|
|||
msgstr "se aplikebla"
|
||||
|
||||
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
|
||||
#: ../../mod/admin.php:575
|
||||
#: ../../mod/admin.php:577
|
||||
msgid "Approve"
|
||||
msgstr "Aprobi"
|
||||
|
||||
|
|
@ -1447,218 +1404,231 @@ msgstr "Kontakto estas ignorita."
|
|||
msgid "Contact has been unignored"
|
||||
msgstr "Kontakto estas malignorita."
|
||||
|
||||
#: ../../mod/contacts.php:200
|
||||
msgid "stopped following"
|
||||
msgstr "ne plu sekvas"
|
||||
#: ../../mod/contacts.php:195
|
||||
msgid "Contact has been archived"
|
||||
msgstr "Enarkivigis kontakton"
|
||||
|
||||
#: ../../mod/contacts.php:221
|
||||
#: ../../mod/contacts.php:195
|
||||
msgid "Contact has been unarchived"
|
||||
msgstr "Elarkivigis kontakton"
|
||||
|
||||
#: ../../mod/contacts.php:208
|
||||
msgid "Contact has been removed."
|
||||
msgstr "Kontakto estas forigita."
|
||||
|
||||
#: ../../mod/contacts.php:251
|
||||
#: ../../mod/contacts.php:238
|
||||
#, php-format
|
||||
msgid "You are mutual friends with %s"
|
||||
msgstr "Vi estas reciproka amiko de %s"
|
||||
|
||||
#: ../../mod/contacts.php:255
|
||||
#: ../../mod/contacts.php:242
|
||||
#, php-format
|
||||
msgid "You are sharing with %s"
|
||||
msgstr "Vi kunhavigas kun %s"
|
||||
|
||||
#: ../../mod/contacts.php:260
|
||||
#: ../../mod/contacts.php:247
|
||||
#, php-format
|
||||
msgid "%s is sharing with you"
|
||||
msgstr "%s kunhavigas kun vi"
|
||||
|
||||
#: ../../mod/contacts.php:277
|
||||
#: ../../mod/contacts.php:264
|
||||
msgid "Private communications are not available for this contact."
|
||||
msgstr "Privataj komunikadoj ne disponeblas por ĉi tiu kontakto."
|
||||
|
||||
#: ../../mod/contacts.php:280
|
||||
#: ../../mod/contacts.php:267
|
||||
msgid "Never"
|
||||
msgstr "Neniam"
|
||||
|
||||
#: ../../mod/contacts.php:284
|
||||
#: ../../mod/contacts.php:271
|
||||
msgid "(Update was successful)"
|
||||
msgstr "(Ĝisdatigo sukcesis.)"
|
||||
|
||||
#: ../../mod/contacts.php:284
|
||||
#: ../../mod/contacts.php:271
|
||||
msgid "(Update was not successful)"
|
||||
msgstr "(Ĝisdatigo malsukcesis.)"
|
||||
|
||||
#: ../../mod/contacts.php:286
|
||||
#: ../../mod/contacts.php:273
|
||||
msgid "Suggest friends"
|
||||
msgstr "Sugesti amikojn"
|
||||
|
||||
#: ../../mod/contacts.php:290
|
||||
#: ../../mod/contacts.php:277
|
||||
#, php-format
|
||||
msgid "Network type: %s"
|
||||
msgstr "Reta tipo: %s"
|
||||
|
||||
#: ../../mod/contacts.php:293
|
||||
#: ../../mod/contacts.php:280
|
||||
#, php-format
|
||||
msgid "%d contact in common"
|
||||
msgid_plural "%d contacts in common"
|
||||
msgstr[0] "%d komuna kontakto"
|
||||
msgstr[1] "%d komunaj kontaktoj"
|
||||
|
||||
#: ../../mod/contacts.php:298
|
||||
#: ../../mod/contacts.php:285
|
||||
msgid "View all contacts"
|
||||
msgstr "Vidi ĉiujn kontaktojn"
|
||||
|
||||
#: ../../mod/contacts.php:303 ../../mod/contacts.php:350
|
||||
#: ../../mod/admin.php:579
|
||||
#: ../../mod/contacts.php:290 ../../mod/contacts.php:343
|
||||
#: ../../mod/admin.php:581
|
||||
msgid "Unblock"
|
||||
msgstr "Malbloki"
|
||||
|
||||
#: ../../mod/contacts.php:303 ../../mod/contacts.php:350
|
||||
#: ../../mod/admin.php:578
|
||||
#: ../../mod/contacts.php:290 ../../mod/contacts.php:343
|
||||
#: ../../mod/admin.php:580
|
||||
msgid "Block"
|
||||
msgstr "Bloki"
|
||||
|
||||
#: ../../mod/contacts.php:308 ../../mod/contacts.php:351
|
||||
#: ../../mod/contacts.php:295 ../../mod/contacts.php:344
|
||||
msgid "Unignore"
|
||||
msgstr "Malignori"
|
||||
|
||||
#: ../../mod/contacts.php:313
|
||||
#: ../../mod/contacts.php:301
|
||||
msgid "Unarchive"
|
||||
msgstr "Elarkivigi"
|
||||
|
||||
#: ../../mod/contacts.php:301
|
||||
msgid "Archive"
|
||||
msgstr "Enarkivigi"
|
||||
|
||||
#: ../../mod/contacts.php:306
|
||||
msgid "Repair"
|
||||
msgstr "Ripari"
|
||||
|
||||
#: ../../mod/contacts.php:323
|
||||
#: ../../mod/contacts.php:316
|
||||
msgid "Contact Editor"
|
||||
msgstr "Kontakta redaktilo."
|
||||
|
||||
#: ../../mod/contacts.php:326
|
||||
#: ../../mod/contacts.php:319
|
||||
msgid "Profile Visibility"
|
||||
msgstr "Videbleco de profilo"
|
||||
|
||||
#: ../../mod/contacts.php:327
|
||||
#: ../../mod/contacts.php:320
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please choose the profile you would like to display to %s when viewing your "
|
||||
"profile securely."
|
||||
msgstr "Bonvolu elekti la profilon kiu vi volas montri al %s aspektinde kiam sekure aspektante vian profilon."
|
||||
|
||||
#: ../../mod/contacts.php:328
|
||||
#: ../../mod/contacts.php:321
|
||||
msgid "Contact Information / Notes"
|
||||
msgstr "Kontaktaj informoj / Notoj"
|
||||
|
||||
#: ../../mod/contacts.php:329
|
||||
#: ../../mod/contacts.php:322
|
||||
msgid "Edit contact notes"
|
||||
msgstr "Redakti kontaktnotojn"
|
||||
|
||||
#: ../../mod/contacts.php:334 ../../mod/contacts.php:507
|
||||
#: ../../mod/contacts.php:327 ../../mod/contacts.php:511
|
||||
#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
|
||||
#, php-format
|
||||
msgid "Visit %s's profile [%s]"
|
||||
msgstr "Viziti la profilon de %s [%s]"
|
||||
|
||||
#: ../../mod/contacts.php:335
|
||||
#: ../../mod/contacts.php:328
|
||||
msgid "Block/Unblock contact"
|
||||
msgstr "Bloki/Malbloki kontakton"
|
||||
|
||||
#: ../../mod/contacts.php:336
|
||||
#: ../../mod/contacts.php:329
|
||||
msgid "Ignore contact"
|
||||
msgstr "Ignori kontakton"
|
||||
|
||||
#: ../../mod/contacts.php:337
|
||||
#: ../../mod/contacts.php:330
|
||||
msgid "Repair URL settings"
|
||||
msgstr "Ripari URL agordoj"
|
||||
|
||||
#: ../../mod/contacts.php:338
|
||||
#: ../../mod/contacts.php:331
|
||||
msgid "View conversations"
|
||||
msgstr "Vidi konversaciojn"
|
||||
|
||||
#: ../../mod/contacts.php:340
|
||||
#: ../../mod/contacts.php:333
|
||||
msgid "Delete contact"
|
||||
msgstr "Forviŝi kontakton"
|
||||
|
||||
#: ../../mod/contacts.php:344
|
||||
#: ../../mod/contacts.php:337
|
||||
msgid "Last update:"
|
||||
msgstr "Plej ĵusa ĝisdatigo:"
|
||||
|
||||
#: ../../mod/contacts.php:345
|
||||
#: ../../mod/contacts.php:338
|
||||
msgid "Update public posts"
|
||||
msgstr "Ĝisdatigi publikajn afiŝojn"
|
||||
|
||||
#: ../../mod/contacts.php:347 ../../mod/admin.php:1051
|
||||
#: ../../mod/contacts.php:340 ../../mod/admin.php:1053
|
||||
msgid "Update now"
|
||||
msgstr "Ĝisdatigi nun"
|
||||
|
||||
#: ../../mod/contacts.php:354
|
||||
#: ../../mod/contacts.php:347
|
||||
msgid "Currently blocked"
|
||||
msgstr "Nuntempe blokata"
|
||||
|
||||
#: ../../mod/contacts.php:355
|
||||
#: ../../mod/contacts.php:348
|
||||
msgid "Currently ignored"
|
||||
msgstr "Nuntempe ignorata"
|
||||
|
||||
#: ../../mod/contacts.php:356
|
||||
#: ../../mod/contacts.php:349
|
||||
msgid "Currently archived"
|
||||
msgstr "Nuntempe enarkivigita"
|
||||
|
||||
#: ../../mod/contacts.php:350
|
||||
msgid ""
|
||||
"Replies/likes to your public posts <strong>may</strong> still be visible"
|
||||
msgstr "Rispondoj/ŝataĵo al viaj publikaj afiŝoj <strong>eble</strong> plu estos videbla"
|
||||
|
||||
#: ../../mod/contacts.php:405
|
||||
#: ../../mod/contacts.php:403
|
||||
msgid "Suggestions"
|
||||
msgstr "Sugestoj"
|
||||
|
||||
#: ../../mod/contacts.php:410 ../../mod/group.php:191
|
||||
#: ../../mod/contacts.php:408 ../../mod/group.php:191
|
||||
msgid "All Contacts"
|
||||
msgstr "Ĉiuj Kontaktoj"
|
||||
|
||||
#: ../../mod/contacts.php:415
|
||||
msgid "Unblocked Contacts"
|
||||
msgstr "Malblokitaj Kontaktoj"
|
||||
#: ../../mod/contacts.php:413
|
||||
msgid "Unblocked"
|
||||
msgstr "Malblokita"
|
||||
|
||||
#: ../../mod/contacts.php:421
|
||||
msgid "Blocked Contacts"
|
||||
msgstr "Blokitaj Kontaktoj"
|
||||
#: ../../mod/contacts.php:419
|
||||
msgid "Blocked"
|
||||
msgstr "Blokita"
|
||||
|
||||
#: ../../mod/contacts.php:427
|
||||
msgid "Ignored Contacts"
|
||||
msgstr "Ignoritaj Kontaktoj"
|
||||
#: ../../mod/contacts.php:425
|
||||
msgid "Ignored"
|
||||
msgstr "Ignorita"
|
||||
|
||||
#: ../../mod/contacts.php:433
|
||||
msgid "Hidden Contacts"
|
||||
msgstr "Kaŝitaj Kontaktoj"
|
||||
#: ../../mod/contacts.php:431
|
||||
msgid "Archived"
|
||||
msgstr "Enarkivigita"
|
||||
|
||||
#: ../../mod/contacts.php:483
|
||||
#: ../../mod/contacts.php:437
|
||||
msgid "Hidden"
|
||||
msgstr "Kaŝita"
|
||||
|
||||
#: ../../mod/contacts.php:487
|
||||
msgid "Mutual Friendship"
|
||||
msgstr "Reciproka amikeco"
|
||||
|
||||
#: ../../mod/contacts.php:487
|
||||
#: ../../mod/contacts.php:491
|
||||
msgid "is a fan of yours"
|
||||
msgstr "estas admiranto de vi"
|
||||
|
||||
#: ../../mod/contacts.php:491
|
||||
#: ../../mod/contacts.php:495
|
||||
msgid "you are a fan of"
|
||||
msgstr "vi estas admiranto de"
|
||||
|
||||
#: ../../mod/contacts.php:508 ../../mod/nogroup.php:41
|
||||
#: ../../mod/contacts.php:512 ../../mod/nogroup.php:41
|
||||
msgid "Edit contact"
|
||||
msgstr "Redakti kontakton"
|
||||
|
||||
#: ../../mod/contacts.php:529
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:231
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:229
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:229
|
||||
#: ../../view/theme/diabook/theme.php:248
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:231
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:231
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:231
|
||||
#: ../../mod/contacts.php:533 ../../view/theme/diabook/theme.php:253
|
||||
#: ../../include/nav.php:139
|
||||
msgid "Contacts"
|
||||
msgstr "Kontaktoj"
|
||||
|
||||
#: ../../mod/contacts.php:533
|
||||
#: ../../mod/contacts.php:537
|
||||
msgid "Search your contacts"
|
||||
msgstr "Serĉi viajn kontaktojn"
|
||||
|
||||
#: ../../mod/contacts.php:534 ../../mod/directory.php:57
|
||||
#: ../../mod/contacts.php:538 ../../mod/directory.php:57
|
||||
msgid "Finding: "
|
||||
msgstr "Trovata:"
|
||||
|
||||
#: ../../mod/contacts.php:535 ../../mod/directory.php:59
|
||||
#: ../../mod/contacts.php:539 ../../mod/directory.php:59
|
||||
#: ../../include/contact_widgets.php:33
|
||||
msgid "Find"
|
||||
msgstr "Trovi"
|
||||
|
|
@ -1759,468 +1729,472 @@ msgstr "Konektitaj programoj"
|
|||
msgid "Export personal data"
|
||||
msgstr "Eksporto"
|
||||
|
||||
#: ../../mod/settings.php:83 ../../mod/admin.php:665 ../../mod/admin.php:870
|
||||
#: ../../mod/settings.php:80
|
||||
msgid "Remove account"
|
||||
msgstr "Forigi konton"
|
||||
|
||||
#: ../../mod/settings.php:88 ../../mod/admin.php:667 ../../mod/admin.php:872
|
||||
#: ../../addon/mathjax/mathjax.php:36 ../../include/nav.php:137
|
||||
msgid "Settings"
|
||||
msgstr "Agordoj"
|
||||
|
||||
#: ../../mod/settings.php:126
|
||||
#: ../../mod/settings.php:131
|
||||
msgid "Missing some important data!"
|
||||
msgstr "Mankas importantaj datumoj!"
|
||||
|
||||
#: ../../mod/settings.php:129 ../../mod/settings.php:558
|
||||
#: ../../mod/settings.php:134 ../../mod/settings.php:563
|
||||
#: ../../mod/admin.php:97
|
||||
msgid "Update"
|
||||
msgstr "Ĝisdatigi"
|
||||
|
||||
#: ../../mod/settings.php:234
|
||||
#: ../../mod/settings.php:239
|
||||
msgid "Failed to connect with email account using the settings provided."
|
||||
msgstr "Ne sukcesis konekti al retpoŝtkonto kun la provizitaj agordoj."
|
||||
|
||||
#: ../../mod/settings.php:239
|
||||
#: ../../mod/settings.php:244
|
||||
msgid "Email settings updated."
|
||||
msgstr "Retpoŝtagordoj ĝisdatigita"
|
||||
|
||||
#: ../../mod/settings.php:298
|
||||
#: ../../mod/settings.php:303
|
||||
msgid "Passwords do not match. Password unchanged."
|
||||
msgstr "La pasvortoj ne estas egala. Pasvorto ne ŝanĝita."
|
||||
|
||||
#: ../../mod/settings.php:303
|
||||
#: ../../mod/settings.php:308
|
||||
msgid "Empty passwords are not allowed. Password unchanged."
|
||||
msgstr "Malplenaj pasvortoj ne estas permesita. Pasvorto ne ŝanĝita."
|
||||
|
||||
#: ../../mod/settings.php:314
|
||||
#: ../../mod/settings.php:319
|
||||
msgid "Password changed."
|
||||
msgstr "Pasvorto ŝanĝita."
|
||||
|
||||
#: ../../mod/settings.php:316
|
||||
#: ../../mod/settings.php:321
|
||||
msgid "Password update failed. Please try again."
|
||||
msgstr "Ĝisdatigo de pasvorto malsukcesis. Bonvolu provi refoje."
|
||||
|
||||
#: ../../mod/settings.php:379
|
||||
#: ../../mod/settings.php:384
|
||||
msgid " Please use a shorter name."
|
||||
msgstr " Bonvolu uzi pli mallongan nomon."
|
||||
|
||||
#: ../../mod/settings.php:381
|
||||
#: ../../mod/settings.php:386
|
||||
msgid " Name too short."
|
||||
msgstr " Nomo estas tro mallonga."
|
||||
|
||||
#: ../../mod/settings.php:387
|
||||
#: ../../mod/settings.php:392
|
||||
msgid " Not valid email."
|
||||
msgstr " Repoŝtadreso ne validas."
|
||||
|
||||
#: ../../mod/settings.php:389
|
||||
#: ../../mod/settings.php:394
|
||||
msgid " Cannot change to that email."
|
||||
msgstr " Ne povas ŝanĝi al tio retpoŝtadreso."
|
||||
|
||||
#: ../../mod/settings.php:461 ../../addon/facebook/facebook.php:469
|
||||
#: ../../addon/impressum/impressum.php:75
|
||||
#: ../../mod/settings.php:466 ../../addon/facebook/facebook.php:469
|
||||
#: ../../addon/impressum/impressum.php:77
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:80
|
||||
#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105
|
||||
#: ../../addon/twitter/twitter.php:370
|
||||
msgid "Settings updated."
|
||||
msgstr "Agordoj ĝisdatigita."
|
||||
|
||||
#: ../../mod/settings.php:531 ../../mod/settings.php:557
|
||||
#: ../../mod/settings.php:593
|
||||
#: ../../mod/settings.php:536 ../../mod/settings.php:562
|
||||
#: ../../mod/settings.php:598
|
||||
msgid "Add application"
|
||||
msgstr "Aldoni programon"
|
||||
|
||||
#: ../../mod/settings.php:535 ../../mod/settings.php:561
|
||||
#: ../../mod/settings.php:540 ../../mod/settings.php:566
|
||||
#: ../../addon/statusnet/statusnet.php:547
|
||||
msgid "Consumer Key"
|
||||
msgstr "Ŝlosilo de kliento"
|
||||
|
||||
#: ../../mod/settings.php:536 ../../mod/settings.php:562
|
||||
#: ../../mod/settings.php:541 ../../mod/settings.php:567
|
||||
#: ../../addon/statusnet/statusnet.php:546
|
||||
msgid "Consumer Secret"
|
||||
msgstr "Sekreto de kliento"
|
||||
|
||||
#: ../../mod/settings.php:537 ../../mod/settings.php:563
|
||||
#: ../../mod/settings.php:542 ../../mod/settings.php:568
|
||||
msgid "Redirect"
|
||||
msgstr "Alidirekto"
|
||||
|
||||
#: ../../mod/settings.php:538 ../../mod/settings.php:564
|
||||
#: ../../mod/settings.php:543 ../../mod/settings.php:569
|
||||
msgid "Icon url"
|
||||
msgstr "Piktograma adreso"
|
||||
|
||||
#: ../../mod/settings.php:549
|
||||
#: ../../mod/settings.php:554
|
||||
msgid "You can't edit this application."
|
||||
msgstr "Ĉi tio programo ne estas redaktebla."
|
||||
|
||||
#: ../../mod/settings.php:592
|
||||
#: ../../mod/settings.php:597
|
||||
msgid "Connected Apps"
|
||||
msgstr "Konektitaj Programoj"
|
||||
|
||||
#: ../../mod/settings.php:596
|
||||
#: ../../mod/settings.php:601
|
||||
msgid "Client key starts with"
|
||||
msgstr "Ŝlosilo de kliento komencas kun"
|
||||
|
||||
#: ../../mod/settings.php:597
|
||||
#: ../../mod/settings.php:602
|
||||
msgid "No name"
|
||||
msgstr "Neniu nomo"
|
||||
|
||||
#: ../../mod/settings.php:598
|
||||
#: ../../mod/settings.php:603
|
||||
msgid "Remove authorization"
|
||||
msgstr "Forviŝi rajtigon"
|
||||
|
||||
#: ../../mod/settings.php:609
|
||||
#: ../../mod/settings.php:614
|
||||
msgid "No Plugin settings configured"
|
||||
msgstr "Neniom da kromprogramoagordoj farita"
|
||||
|
||||
#: ../../mod/settings.php:617 ../../addon/widgets/widgets.php:123
|
||||
#: ../../mod/settings.php:622 ../../addon/widgets/widgets.php:123
|
||||
msgid "Plugin Settings"
|
||||
msgstr "Kromprogramoagordoj"
|
||||
|
||||
#: ../../mod/settings.php:629 ../../mod/settings.php:630
|
||||
#: ../../mod/settings.php:634 ../../mod/settings.php:635
|
||||
#, php-format
|
||||
msgid "Built-in support for %s connectivity is %s"
|
||||
msgstr "Integrita subteno por %s koneto estas %s"
|
||||
|
||||
#: ../../mod/settings.php:629 ../../mod/settings.php:630
|
||||
#: ../../mod/settings.php:634 ../../mod/settings.php:635
|
||||
msgid "enabled"
|
||||
msgstr "ŝaltita"
|
||||
|
||||
#: ../../mod/settings.php:629 ../../mod/settings.php:630
|
||||
#: ../../mod/settings.php:634 ../../mod/settings.php:635
|
||||
msgid "disabled"
|
||||
msgstr "malŝaltita"
|
||||
|
||||
#: ../../mod/settings.php:630
|
||||
#: ../../mod/settings.php:635
|
||||
msgid "StatusNet"
|
||||
msgstr "StatusNet"
|
||||
|
||||
#: ../../mod/settings.php:660
|
||||
#: ../../mod/settings.php:665
|
||||
msgid "Connector Settings"
|
||||
msgstr "Konektiloagordoj"
|
||||
|
||||
#: ../../mod/settings.php:665
|
||||
#: ../../mod/settings.php:670
|
||||
msgid "Email/Mailbox Setup"
|
||||
msgstr "Agordoj pri Retpoŝto"
|
||||
|
||||
#: ../../mod/settings.php:666
|
||||
#: ../../mod/settings.php:671
|
||||
msgid ""
|
||||
"If you wish to communicate with email contacts using this service "
|
||||
"(optional), please specify how to connect to your mailbox."
|
||||
msgstr "Se vi volas uzi ĉi tiun servon por komuniki tra retpoŝto (nedeviga), bonvolu specifi kiel konekti al vian retpoŝtkonton."
|
||||
|
||||
#: ../../mod/settings.php:667
|
||||
#: ../../mod/settings.php:672
|
||||
msgid "Last successful email check:"
|
||||
msgstr "Plej ĵusa sukcesa kontrolo de poŝto:"
|
||||
|
||||
#: ../../mod/settings.php:668
|
||||
#: ../../mod/settings.php:673
|
||||
msgid "Email access is disabled on this site."
|
||||
msgstr "Retpoŝta atingo ne disponeblas ĉi tie."
|
||||
|
||||
#: ../../mod/settings.php:669
|
||||
#: ../../mod/settings.php:674
|
||||
msgid "IMAP server name:"
|
||||
msgstr "Nomo de IMAP servilo:"
|
||||
|
||||
#: ../../mod/settings.php:670
|
||||
#: ../../mod/settings.php:675
|
||||
msgid "IMAP port:"
|
||||
msgstr "Numero de IMAP pordo:"
|
||||
|
||||
#: ../../mod/settings.php:671
|
||||
#: ../../mod/settings.php:676
|
||||
msgid "Security:"
|
||||
msgstr "Sekureco:"
|
||||
|
||||
#: ../../mod/settings.php:671 ../../mod/settings.php:676
|
||||
#: ../../mod/settings.php:676 ../../mod/settings.php:681
|
||||
msgid "None"
|
||||
msgstr "Nenio"
|
||||
|
||||
#: ../../mod/settings.php:672
|
||||
#: ../../mod/settings.php:677
|
||||
msgid "Email login name:"
|
||||
msgstr "Retpoŝta salutnomo:"
|
||||
|
||||
#: ../../mod/settings.php:673
|
||||
#: ../../mod/settings.php:678
|
||||
msgid "Email password:"
|
||||
msgstr "Retpoŝta pasvorto:"
|
||||
|
||||
#: ../../mod/settings.php:674
|
||||
#: ../../mod/settings.php:679
|
||||
msgid "Reply-to address:"
|
||||
msgstr "Responda adreso (Reply-to):"
|
||||
|
||||
#: ../../mod/settings.php:675
|
||||
#: ../../mod/settings.php:680
|
||||
msgid "Send public posts to all email contacts:"
|
||||
msgstr "Sendu publikajn afiŝojn al ĉiuj retpoŝtkontaktoj:"
|
||||
|
||||
#: ../../mod/settings.php:676
|
||||
#: ../../mod/settings.php:681
|
||||
msgid "Action after import:"
|
||||
msgstr "Ago post la importado:"
|
||||
|
||||
#: ../../mod/settings.php:676
|
||||
#: ../../mod/settings.php:681
|
||||
msgid "Mark as seen"
|
||||
msgstr "Marki kiel legita"
|
||||
|
||||
#: ../../mod/settings.php:676
|
||||
#: ../../mod/settings.php:681
|
||||
msgid "Move to folder"
|
||||
msgstr "Movi al dosierujo"
|
||||
|
||||
#: ../../mod/settings.php:677
|
||||
#: ../../mod/settings.php:682
|
||||
msgid "Move to folder:"
|
||||
msgstr "Movi al dosierujo:"
|
||||
|
||||
#: ../../mod/settings.php:737
|
||||
#: ../../mod/settings.php:742
|
||||
msgid "Display Settings"
|
||||
msgstr "Ekranagordoj"
|
||||
|
||||
#: ../../mod/settings.php:743
|
||||
#: ../../mod/settings.php:748
|
||||
msgid "Display Theme:"
|
||||
msgstr "Vidiga etoso:"
|
||||
|
||||
#: ../../mod/settings.php:744
|
||||
#: ../../mod/settings.php:749
|
||||
msgid "Update browser every xx seconds"
|
||||
msgstr "Ĝisdatigu retesplorilon ĉiu xxx sekundoj"
|
||||
|
||||
#: ../../mod/settings.php:744
|
||||
#: ../../mod/settings.php:749
|
||||
msgid "Minimum of 10 seconds, no maximum"
|
||||
msgstr "Minimume 10 sekundoj, sen maksimumo"
|
||||
|
||||
#: ../../mod/settings.php:745
|
||||
#: ../../mod/settings.php:750
|
||||
msgid "Number of items to display on the network page:"
|
||||
msgstr "Kvanto da elementoj kiuj estos montrata ĉe la reto paĝo."
|
||||
|
||||
#: ../../mod/settings.php:745
|
||||
#: ../../mod/settings.php:750
|
||||
msgid "Maximum of 100 items"
|
||||
msgstr "Maksimume 100 eroj"
|
||||
|
||||
#: ../../mod/settings.php:746
|
||||
#: ../../mod/settings.php:751
|
||||
msgid "Don't show emoticons"
|
||||
msgstr "Ne montru ridetulojn"
|
||||
|
||||
#: ../../mod/settings.php:811 ../../mod/admin.php:173 ../../mod/admin.php:551
|
||||
#: ../../mod/settings.php:816 ../../mod/admin.php:173 ../../mod/admin.php:553
|
||||
msgid "Normal Account"
|
||||
msgstr "Normala konto"
|
||||
|
||||
#: ../../mod/settings.php:812
|
||||
#: ../../mod/settings.php:817
|
||||
msgid "This account is a normal personal profile"
|
||||
msgstr "Tiu konto estas normala persona profilo"
|
||||
|
||||
#: ../../mod/settings.php:815 ../../mod/admin.php:174 ../../mod/admin.php:552
|
||||
#: ../../mod/settings.php:820 ../../mod/admin.php:174 ../../mod/admin.php:554
|
||||
msgid "Soapbox Account"
|
||||
msgstr "Soapbox Konto"
|
||||
|
||||
#: ../../mod/settings.php:816
|
||||
#: ../../mod/settings.php:821
|
||||
msgid "Automatically approve all connection/friend requests as read-only fans"
|
||||
msgstr "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel nurlegaj admirantoj"
|
||||
|
||||
#: ../../mod/settings.php:819 ../../mod/admin.php:175 ../../mod/admin.php:553
|
||||
#: ../../mod/settings.php:824 ../../mod/admin.php:175 ../../mod/admin.php:555
|
||||
msgid "Community/Celebrity Account"
|
||||
msgstr "Komunuma/eminentula Konto"
|
||||
|
||||
#: ../../mod/settings.php:820
|
||||
#: ../../mod/settings.php:825
|
||||
msgid ""
|
||||
"Automatically approve all connection/friend requests as read-write fans"
|
||||
msgstr "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel admirantoj kapable legi kaj skribi"
|
||||
|
||||
#: ../../mod/settings.php:823 ../../mod/admin.php:176 ../../mod/admin.php:554
|
||||
#: ../../mod/settings.php:828 ../../mod/admin.php:176 ../../mod/admin.php:556
|
||||
msgid "Automatic Friend Account"
|
||||
msgstr "Aŭtomata Amika Konto"
|
||||
|
||||
#: ../../mod/settings.php:824
|
||||
#: ../../mod/settings.php:829
|
||||
msgid "Automatically approve all connection/friend requests as friends"
|
||||
msgstr "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel amikoj"
|
||||
|
||||
#: ../../mod/settings.php:834
|
||||
#: ../../mod/settings.php:839
|
||||
msgid "OpenID:"
|
||||
msgstr "OpenID:"
|
||||
|
||||
#: ../../mod/settings.php:834
|
||||
#: ../../mod/settings.php:839
|
||||
msgid "(Optional) Allow this OpenID to login to this account."
|
||||
msgstr "(Nedeviga) Permesi atingon al la konton al ĉi tio OpenID."
|
||||
|
||||
#: ../../mod/settings.php:844
|
||||
#: ../../mod/settings.php:849
|
||||
msgid "Publish your default profile in your local site directory?"
|
||||
msgstr "Publikigi vian defaŭltan profilon en la loka reteja katalogo?"
|
||||
|
||||
#: ../../mod/settings.php:850
|
||||
#: ../../mod/settings.php:855
|
||||
msgid "Publish your default profile in the global social directory?"
|
||||
msgstr "Publikigi vian defaŭltan profilon en la tutmonda interkona katalogo?"
|
||||
|
||||
#: ../../mod/settings.php:858
|
||||
#: ../../mod/settings.php:863
|
||||
msgid "Hide your contact/friend list from viewers of your default profile?"
|
||||
msgstr "Kaŝi vian liston de kontaktoj/amiko al spektantoj de via defaŭlta profilo?"
|
||||
|
||||
#: ../../mod/settings.php:862
|
||||
#: ../../mod/settings.php:867
|
||||
msgid "Hide your profile details from unknown viewers?"
|
||||
msgstr "Kaŝi viajn profilajn detalojn al nekonataj spektantoj?"
|
||||
|
||||
#: ../../mod/settings.php:867
|
||||
#: ../../mod/settings.php:872
|
||||
msgid "Allow friends to post to your profile page?"
|
||||
msgstr "Ĉu amikoj povu afiŝi al via profilo?"
|
||||
|
||||
#: ../../mod/settings.php:873
|
||||
#: ../../mod/settings.php:878
|
||||
msgid "Allow friends to tag your posts?"
|
||||
msgstr "Ĉu amikoj povu aldoni markojn al viaj afiŝoj?"
|
||||
|
||||
#: ../../mod/settings.php:879
|
||||
#: ../../mod/settings.php:884
|
||||
msgid "Allow us to suggest you as a potential friend to new members?"
|
||||
msgstr "Ĉu ni povu sugesti vin kiel amiko al novaj membroj?"
|
||||
|
||||
#: ../../mod/settings.php:885
|
||||
#: ../../mod/settings.php:890
|
||||
msgid "Permit unknown people to send you private mail?"
|
||||
msgstr "Permesigi nekonatulojn sendi retpoŝton al vi?"
|
||||
|
||||
#: ../../mod/settings.php:896
|
||||
#: ../../mod/settings.php:901
|
||||
msgid "Profile is <strong>not published</strong>."
|
||||
msgstr "Profilo <strong>ne estas publika</strong>."
|
||||
|
||||
#: ../../mod/settings.php:902 ../../mod/profile_photo.php:211
|
||||
#: ../../mod/settings.php:907 ../../mod/profile_photo.php:211
|
||||
msgid "or"
|
||||
msgstr "aŭ"
|
||||
|
||||
#: ../../mod/settings.php:907
|
||||
#: ../../mod/settings.php:912
|
||||
msgid "Your Identity Address is"
|
||||
msgstr "Via identeca adreso estas"
|
||||
|
||||
#: ../../mod/settings.php:918
|
||||
#: ../../mod/settings.php:923
|
||||
msgid "Automatically expire posts after this many days:"
|
||||
msgstr "Automatike senvalidigi afiŝojn post tiom da tagoj:"
|
||||
|
||||
#: ../../mod/settings.php:918
|
||||
#: ../../mod/settings.php:923
|
||||
msgid "If empty, posts will not expire. Expired posts will be deleted"
|
||||
msgstr "Se malplena, afiŝoj neniam senvalidiĝos. Senvalidigitajn afiŝon estos forviŝata"
|
||||
|
||||
#: ../../mod/settings.php:919
|
||||
#: ../../mod/settings.php:924
|
||||
msgid "Advanced expiration settings"
|
||||
msgstr "Detalaj agordoj rilate al senvalidiĝo"
|
||||
|
||||
#: ../../mod/settings.php:920
|
||||
#: ../../mod/settings.php:925
|
||||
msgid "Advanced Expiration"
|
||||
msgstr "Detala senvalidiĝo"
|
||||
|
||||
#: ../../mod/settings.php:921
|
||||
#: ../../mod/settings.php:926
|
||||
msgid "Expire posts:"
|
||||
msgstr "Senvalidigi afiŝojn:"
|
||||
|
||||
#: ../../mod/settings.php:922
|
||||
#: ../../mod/settings.php:927
|
||||
msgid "Expire personal notes:"
|
||||
msgstr "Senvalidigi personajn notojn:"
|
||||
|
||||
#: ../../mod/settings.php:923
|
||||
#: ../../mod/settings.php:928
|
||||
msgid "Expire starred posts:"
|
||||
msgstr "Senvalidigi steligitajn afiŝojn:"
|
||||
|
||||
#: ../../mod/settings.php:924
|
||||
#: ../../mod/settings.php:929
|
||||
msgid "Expire photos:"
|
||||
msgstr "Senvalidigi bildojn:"
|
||||
|
||||
#: ../../mod/settings.php:928
|
||||
#: ../../mod/settings.php:933
|
||||
msgid "Account Settings"
|
||||
msgstr "Kontoagordoj"
|
||||
|
||||
#: ../../mod/settings.php:937
|
||||
#: ../../mod/settings.php:942
|
||||
msgid "Password Settings"
|
||||
msgstr "Agordoj pri Pasvorto"
|
||||
|
||||
#: ../../mod/settings.php:938
|
||||
#: ../../mod/settings.php:943
|
||||
msgid "New Password:"
|
||||
msgstr "Nova pasvorto:"
|
||||
|
||||
#: ../../mod/settings.php:939
|
||||
#: ../../mod/settings.php:944
|
||||
msgid "Confirm:"
|
||||
msgstr "Konfirmi:"
|
||||
|
||||
#: ../../mod/settings.php:939
|
||||
#: ../../mod/settings.php:944
|
||||
msgid "Leave password fields blank unless changing"
|
||||
msgstr "Lasu pasvortkampojn malplenaj se vi ne ŝanĝas la pasvorton."
|
||||
|
||||
#: ../../mod/settings.php:943
|
||||
#: ../../mod/settings.php:948
|
||||
msgid "Basic Settings"
|
||||
msgstr "Bazaj Agordoj"
|
||||
|
||||
#: ../../mod/settings.php:944 ../../include/profile_advanced.php:15
|
||||
#: ../../mod/settings.php:949 ../../include/profile_advanced.php:15
|
||||
msgid "Full Name:"
|
||||
msgstr "Plena Nomo:"
|
||||
|
||||
#: ../../mod/settings.php:945
|
||||
#: ../../mod/settings.php:950
|
||||
msgid "Email Address:"
|
||||
msgstr "Retpoŝtadreso:"
|
||||
|
||||
#: ../../mod/settings.php:946
|
||||
#: ../../mod/settings.php:951
|
||||
msgid "Your Timezone:"
|
||||
msgstr "Via Horzono:"
|
||||
|
||||
#: ../../mod/settings.php:947
|
||||
#: ../../mod/settings.php:952
|
||||
msgid "Default Post Location:"
|
||||
msgstr "Defaŭlta Loko por Afiŝoj:"
|
||||
|
||||
#: ../../mod/settings.php:948
|
||||
#: ../../mod/settings.php:953
|
||||
msgid "Use Browser Location:"
|
||||
msgstr "Uzu Lokon laŭ Retesplorilo:"
|
||||
|
||||
#: ../../mod/settings.php:951
|
||||
#: ../../mod/settings.php:956
|
||||
msgid "Security and Privacy Settings"
|
||||
msgstr "Agordoj pri Sekureco kaj Privateco"
|
||||
|
||||
#: ../../mod/settings.php:953
|
||||
#: ../../mod/settings.php:958
|
||||
msgid "Maximum Friend Requests/Day:"
|
||||
msgstr "Taga maksimumo da kontaktpetoj:"
|
||||
|
||||
#: ../../mod/settings.php:953 ../../mod/settings.php:968
|
||||
#: ../../mod/settings.php:958 ../../mod/settings.php:973
|
||||
msgid "(to prevent spam abuse)"
|
||||
msgstr "(por malhelpi spamaĵojn)"
|
||||
|
||||
#: ../../mod/settings.php:954
|
||||
#: ../../mod/settings.php:959
|
||||
msgid "Default Post Permissions"
|
||||
msgstr "Defaŭltaj permesoj por afiŝoj"
|
||||
|
||||
#: ../../mod/settings.php:955
|
||||
#: ../../mod/settings.php:960
|
||||
msgid "(click to open/close)"
|
||||
msgstr "(klaku por malfermi/fermi)"
|
||||
|
||||
#: ../../mod/settings.php:968
|
||||
#: ../../mod/settings.php:973
|
||||
msgid "Maximum private messages per day from unknown people:"
|
||||
msgstr "Taga maksimumo da privataj mesaĝoj."
|
||||
|
||||
#: ../../mod/settings.php:971
|
||||
#: ../../mod/settings.php:976
|
||||
msgid "Notification Settings"
|
||||
msgstr "Agordoj pri Atentigoj"
|
||||
|
||||
#: ../../mod/settings.php:972
|
||||
#: ../../mod/settings.php:977
|
||||
msgid "By default post a status message when:"
|
||||
msgstr "Defaŭlte afiŝi statmesaĝon okaze de:"
|
||||
|
||||
#: ../../mod/settings.php:973
|
||||
#: ../../mod/settings.php:978
|
||||
msgid "accepting a friend request"
|
||||
msgstr "akcepti kontaktpeton"
|
||||
|
||||
#: ../../mod/settings.php:974
|
||||
#: ../../mod/settings.php:979
|
||||
msgid "making an <em>interesting</em> profile change"
|
||||
msgstr "fari <em>interesan</em> profilŝanĝon"
|
||||
|
||||
#: ../../mod/settings.php:975
|
||||
#: ../../mod/settings.php:980
|
||||
msgid "Send a notification email when:"
|
||||
msgstr "Sendu atentiga repoŝton se:"
|
||||
|
||||
#: ../../mod/settings.php:976
|
||||
#: ../../mod/settings.php:981
|
||||
msgid "You receive an introduction"
|
||||
msgstr "Vi ricevas inviton"
|
||||
|
||||
#: ../../mod/settings.php:977
|
||||
#: ../../mod/settings.php:982
|
||||
msgid "Your introductions are confirmed"
|
||||
msgstr "Viaj prezentoj estas konfirmata."
|
||||
|
||||
#: ../../mod/settings.php:978
|
||||
#: ../../mod/settings.php:983
|
||||
msgid "Someone writes on your profile wall"
|
||||
msgstr "Iu skribas je via profila muro."
|
||||
|
||||
#: ../../mod/settings.php:979
|
||||
#: ../../mod/settings.php:984
|
||||
msgid "Someone writes a followup comment"
|
||||
msgstr "Iu skribas sekvan komenton"
|
||||
|
||||
#: ../../mod/settings.php:980
|
||||
#: ../../mod/settings.php:985
|
||||
msgid "You receive a private message"
|
||||
msgstr "Vi ricevas privatan mesaĝon."
|
||||
|
||||
#: ../../mod/settings.php:981
|
||||
#: ../../mod/settings.php:986
|
||||
msgid "You receive a friend suggestion"
|
||||
msgstr "Vi ricevas amikosugeston"
|
||||
|
||||
#: ../../mod/settings.php:982
|
||||
#: ../../mod/settings.php:987
|
||||
msgid "You are tagged in a post"
|
||||
msgstr "Vi estas markita en afiŝon"
|
||||
|
||||
#: ../../mod/settings.php:985
|
||||
#: ../../mod/settings.php:990
|
||||
msgid "Advanced Page Settings"
|
||||
msgstr "Specialaj agordoj pri paĝoj"
|
||||
|
||||
|
|
@ -2310,7 +2284,7 @@ msgstr "La privateco de privataj mesaĝoj al ĉi tiu persono ne ĉiam estas gara
|
|||
msgid "Invalid contact."
|
||||
msgstr "Nevalida kontakto."
|
||||
|
||||
#: ../../mod/notes.php:44 ../../boot.php:1476
|
||||
#: ../../mod/notes.php:44 ../../boot.php:1486
|
||||
msgid "Personal Notes"
|
||||
msgstr "Personaj Notoj"
|
||||
|
||||
|
|
@ -2351,7 +2325,7 @@ msgid "No recipient."
|
|||
msgstr "Neniom da ricevontoj."
|
||||
|
||||
#: ../../mod/wallmessage.php:124 ../../mod/message.php:169
|
||||
#: ../../include/conversation.php:910
|
||||
#: ../../include/conversation.php:918
|
||||
msgid "Please enter a link URL:"
|
||||
msgstr "Bonvolu entajpu adreson de ligilo:"
|
||||
|
||||
|
|
@ -2367,17 +2341,17 @@ msgid ""
|
|||
msgstr "Se vi deziras ke %s respondu, bonvolu kontroli ke la privatecaj agordoj je via retejo permesas privatajn mesaĝojn de nekonataj sendantoj."
|
||||
|
||||
#: ../../mod/wallmessage.php:133 ../../mod/message.php:178
|
||||
#: ../../mod/message.php:347
|
||||
#: ../../mod/message.php:370
|
||||
msgid "To:"
|
||||
msgstr "Al:"
|
||||
|
||||
#: ../../mod/wallmessage.php:134 ../../mod/message.php:179
|
||||
#: ../../mod/message.php:348
|
||||
#: ../../mod/message.php:371
|
||||
msgid "Subject:"
|
||||
msgstr "Temo:"
|
||||
|
||||
#: ../../mod/wallmessage.php:140 ../../mod/message.php:183
|
||||
#: ../../mod/message.php:351 ../../mod/invite.php:113
|
||||
#: ../../mod/message.php:374 ../../mod/invite.php:113
|
||||
msgid "Your message:"
|
||||
msgstr "Via mesaĝo:"
|
||||
|
||||
|
|
@ -2559,16 +2533,9 @@ msgstr "Nevaliada profila identigilo."
|
|||
msgid "Profile Visibility Editor"
|
||||
msgstr "Redaktilo por profila videbleco."
|
||||
|
||||
#: ../../mod/profperm.php:103
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:230
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:228
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:228
|
||||
#: ../../view/theme/diabook/theme.php:247
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:230
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:230
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:230
|
||||
#: ../../mod/profperm.php:103 ../../view/theme/diabook/theme.php:252
|
||||
#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:74
|
||||
#: ../../include/nav.php:50 ../../boot.php:1458
|
||||
#: ../../include/nav.php:50 ../../boot.php:1468
|
||||
msgid "Profile"
|
||||
msgstr "Profilo"
|
||||
|
||||
|
|
@ -2717,7 +2684,7 @@ msgstr "Membriĝi ĉi tie nur eblas laŭ invito."
|
|||
msgid "Your invitation ID: "
|
||||
msgstr "Via invita idento: "
|
||||
|
||||
#: ../../mod/register.php:553 ../../mod/admin.php:393
|
||||
#: ../../mod/register.php:553 ../../mod/admin.php:394
|
||||
msgid "Registration"
|
||||
msgstr "Registrado"
|
||||
|
||||
|
|
@ -2752,36 +2719,17 @@ msgstr "Serĉi Membrojn"
|
|||
#: ../../addon/facebook/facebook.php:1533
|
||||
#: ../../addon/communityhome/communityhome.php:158
|
||||
#: ../../addon/communityhome/communityhome.php:167
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:83
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:92
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:82
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:91
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:82
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:91
|
||||
#: ../../view/theme/diabook/theme.php:97
|
||||
#: ../../view/theme/diabook/theme.php:106
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:83
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:92
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:83
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:92
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:83
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:92
|
||||
#: ../../include/diaspora.php:1654 ../../include/conversation.php:48
|
||||
#: ../../include/conversation.php:57 ../../include/conversation.php:121
|
||||
#: ../../include/conversation.php:130
|
||||
#: ../../view/theme/diabook/theme.php:102
|
||||
#: ../../view/theme/diabook/theme.php:111 ../../include/diaspora.php:1654
|
||||
#: ../../include/conversation.php:48 ../../include/conversation.php:57
|
||||
#: ../../include/conversation.php:121 ../../include/conversation.php:130
|
||||
msgid "status"
|
||||
msgstr "staton"
|
||||
|
||||
#: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1537
|
||||
#: ../../addon/communityhome/communityhome.php:172
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:97
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:96
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:96
|
||||
#: ../../view/theme/diabook/theme.php:111
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:97
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:97
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:97
|
||||
#: ../../include/diaspora.php:1670 ../../include/conversation.php:65
|
||||
#: ../../view/theme/diabook/theme.php:116 ../../include/diaspora.php:1670
|
||||
#: ../../include/conversation.php:65
|
||||
#, php-format
|
||||
msgid "%1$s likes %2$s's %3$s"
|
||||
msgstr "%1$s ŝatas la %3$s de %2$s"
|
||||
|
|
@ -2792,7 +2740,7 @@ msgid "%1$s doesn't like %2$s's %3$s"
|
|||
msgstr "%1$s malŝatas la %3$s de %2$s"
|
||||
|
||||
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:149
|
||||
#: ../../mod/admin.php:614 ../../mod/admin.php:813 ../../mod/display.php:37
|
||||
#: ../../mod/admin.php:616 ../../mod/admin.php:815 ../../mod/display.php:37
|
||||
#: ../../mod/display.php:142 ../../include/items.php:3083
|
||||
msgid "Item not found."
|
||||
msgstr "Elemento ne estas trovita."
|
||||
|
|
@ -2801,15 +2749,8 @@ msgstr "Elemento ne estas trovita."
|
|||
msgid "Access denied."
|
||||
msgstr "Atingo nepermesita."
|
||||
|
||||
#: ../../mod/fbrowser.php:23
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:232
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:230
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:230
|
||||
#: ../../view/theme/diabook/theme.php:249
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:232
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:232
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:232
|
||||
#: ../../include/nav.php:51 ../../boot.php:1463
|
||||
#: ../../mod/fbrowser.php:23 ../../view/theme/diabook/theme.php:254
|
||||
#: ../../include/nav.php:51 ../../boot.php:1473
|
||||
msgid "Photos"
|
||||
msgstr "Bildoj"
|
||||
|
||||
|
|
@ -2985,7 +2926,7 @@ msgstr "Vi kaj %s"
|
|||
msgid "%s and You"
|
||||
msgstr "%s kaj vi"
|
||||
|
||||
#: ../../mod/message.php:242 ../../mod/message.php:340
|
||||
#: ../../mod/message.php:242 ../../mod/message.php:363
|
||||
msgid "Delete conversation"
|
||||
msgstr "Forviŝi dialogon"
|
||||
|
||||
|
|
@ -3004,17 +2945,17 @@ msgstr[1] "%d mesaĝoj"
|
|||
msgid "Message not available."
|
||||
msgstr "Mesaĝo nedisponebla."
|
||||
|
||||
#: ../../mod/message.php:324
|
||||
#: ../../mod/message.php:347
|
||||
msgid "Delete message"
|
||||
msgstr "Forviŝu mesaĝon"
|
||||
|
||||
#: ../../mod/message.php:342
|
||||
#: ../../mod/message.php:365
|
||||
msgid ""
|
||||
"No secure communications available. You <strong>may</strong> be able to "
|
||||
"respond from the sender's profile page."
|
||||
msgstr "Sekura komunikado ne disponeblas. Vi <strong>eble</strong> povus respondi sur la profilpaĝo de la sendanto."
|
||||
|
||||
#: ../../mod/message.php:346
|
||||
#: ../../mod/message.php:369
|
||||
msgid "Send Reply"
|
||||
msgstr "Respondi"
|
||||
|
||||
|
|
@ -3031,23 +2972,23 @@ msgstr "Neniom da amiko al montri."
|
|||
msgid "Theme settings updated."
|
||||
msgstr "Gisdatigis agordojn pri etosoj."
|
||||
|
||||
#: ../../mod/admin.php:93 ../../mod/admin.php:391
|
||||
#: ../../mod/admin.php:93 ../../mod/admin.php:392
|
||||
msgid "Site"
|
||||
msgstr "Retejo"
|
||||
|
||||
#: ../../mod/admin.php:94 ../../mod/admin.php:569 ../../mod/admin.php:581
|
||||
#: ../../mod/admin.php:94 ../../mod/admin.php:571 ../../mod/admin.php:583
|
||||
msgid "Users"
|
||||
msgstr "Uzantoj"
|
||||
|
||||
#: ../../mod/admin.php:95 ../../mod/admin.php:663 ../../mod/admin.php:705
|
||||
#: ../../mod/admin.php:95 ../../mod/admin.php:665 ../../mod/admin.php:707
|
||||
msgid "Plugins"
|
||||
msgstr "Kromprogramoj"
|
||||
|
||||
#: ../../mod/admin.php:96 ../../mod/admin.php:868 ../../mod/admin.php:904
|
||||
#: ../../mod/admin.php:96 ../../mod/admin.php:870 ../../mod/admin.php:906
|
||||
msgid "Themes"
|
||||
msgstr "Etosoj"
|
||||
|
||||
#: ../../mod/admin.php:111 ../../mod/admin.php:992
|
||||
#: ../../mod/admin.php:111 ../../mod/admin.php:994
|
||||
msgid "Logs"
|
||||
msgstr "Protokoloj"
|
||||
|
||||
|
|
@ -3055,9 +2996,9 @@ msgstr "Protokoloj"
|
|||
msgid "User registrations waiting for confirmation"
|
||||
msgstr "Uzantaj registradoj atendante konfirmon"
|
||||
|
||||
#: ../../mod/admin.php:188 ../../mod/admin.php:390 ../../mod/admin.php:568
|
||||
#: ../../mod/admin.php:662 ../../mod/admin.php:704 ../../mod/admin.php:867
|
||||
#: ../../mod/admin.php:903 ../../mod/admin.php:991
|
||||
#: ../../mod/admin.php:188 ../../mod/admin.php:391 ../../mod/admin.php:570
|
||||
#: ../../mod/admin.php:664 ../../mod/admin.php:706 ../../mod/admin.php:869
|
||||
#: ../../mod/admin.php:905 ../../mod/admin.php:993
|
||||
msgid "Administration"
|
||||
msgstr "Administrado"
|
||||
|
||||
|
|
@ -3081,427 +3022,438 @@ msgstr "Versio"
|
|||
msgid "Active plugins"
|
||||
msgstr "Ŝaltitaj kromprogramoj"
|
||||
|
||||
#: ../../mod/admin.php:329
|
||||
#: ../../mod/admin.php:330
|
||||
msgid "Site settings updated."
|
||||
msgstr "Ĝisdatigis retejaj agordoj."
|
||||
|
||||
#: ../../mod/admin.php:377
|
||||
#: ../../mod/admin.php:378
|
||||
msgid "Closed"
|
||||
msgstr "Ferma"
|
||||
|
||||
#: ../../mod/admin.php:378
|
||||
#: ../../mod/admin.php:379
|
||||
msgid "Requires approval"
|
||||
msgstr "Bezonas aprobon"
|
||||
|
||||
#: ../../mod/admin.php:379
|
||||
#: ../../mod/admin.php:380
|
||||
msgid "Open"
|
||||
msgstr "Malferma"
|
||||
|
||||
#: ../../mod/admin.php:383
|
||||
#: ../../mod/admin.php:384
|
||||
msgid "No SSL policy, links will track page SSL state"
|
||||
msgstr "Sen SSL strategio. Ligiloj sekvos la SSL staton de la paĝo."
|
||||
|
||||
#: ../../mod/admin.php:384
|
||||
#: ../../mod/admin.php:385
|
||||
msgid "Force all links to use SSL"
|
||||
msgstr "Devigi ke ĉiuj ligiloj uzu SSL."
|
||||
|
||||
#: ../../mod/admin.php:385
|
||||
#: ../../mod/admin.php:386
|
||||
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
|
||||
msgstr "Memsubskribita atestilo, nur uzu SSL por lokaj ligiloj (malkuraĝigata)"
|
||||
|
||||
#: ../../mod/admin.php:394
|
||||
#: ../../mod/admin.php:395
|
||||
msgid "File upload"
|
||||
msgstr "Alŝuto"
|
||||
|
||||
#: ../../mod/admin.php:395
|
||||
#: ../../mod/admin.php:396
|
||||
msgid "Policies"
|
||||
msgstr "Politiko"
|
||||
|
||||
#: ../../mod/admin.php:396
|
||||
#: ../../mod/admin.php:397
|
||||
msgid "Advanced"
|
||||
msgstr "Altnivela"
|
||||
|
||||
#: ../../mod/admin.php:400 ../../addon/statusnet/statusnet.php:544
|
||||
#: ../../mod/admin.php:401 ../../addon/statusnet/statusnet.php:544
|
||||
msgid "Site name"
|
||||
msgstr "Nomo de retejo"
|
||||
|
||||
#: ../../mod/admin.php:401
|
||||
#: ../../mod/admin.php:402
|
||||
msgid "Banner/Logo"
|
||||
msgstr "Emblemo"
|
||||
|
||||
#: ../../mod/admin.php:402
|
||||
#: ../../mod/admin.php:403
|
||||
msgid "System language"
|
||||
msgstr "Sistema lingvo"
|
||||
|
||||
#: ../../mod/admin.php:403
|
||||
#: ../../mod/admin.php:404
|
||||
msgid "System theme"
|
||||
msgstr "Sistema etoso"
|
||||
|
||||
#: ../../mod/admin.php:403
|
||||
#: ../../mod/admin.php:404
|
||||
msgid ""
|
||||
"Default system theme - may be over-ridden by user profiles - <a href='#' "
|
||||
"id='cnftheme'>change theme settings</a>"
|
||||
msgstr "Defaŭlta sistema etoso - transpasebla de uzantprofiloj - <a href='#' id='cnftheme'>redakti agordoj pri etosoj</a>"
|
||||
|
||||
#: ../../mod/admin.php:404
|
||||
#: ../../mod/admin.php:405
|
||||
msgid "SSL link policy"
|
||||
msgstr "Strategio por SSL ligiloj"
|
||||
|
||||
#: ../../mod/admin.php:404
|
||||
#: ../../mod/admin.php:405
|
||||
msgid "Determines whether generated links should be forced to use SSL"
|
||||
msgstr "Difinas ĉu generotaj ligiloj devige uzu SSL."
|
||||
|
||||
#: ../../mod/admin.php:405
|
||||
#: ../../mod/admin.php:406
|
||||
msgid "Maximum image size"
|
||||
msgstr "Maksimuma bildgrando"
|
||||
|
||||
#: ../../mod/admin.php:405
|
||||
#: ../../mod/admin.php:406
|
||||
msgid ""
|
||||
"Maximum size in bytes of uploaded images. Default is 0, which means no "
|
||||
"limits."
|
||||
msgstr "Maksimuma grando en bajtoj por alŝutotaj bildoj. Defaŭlte 0, kio signifas neniu limito."
|
||||
|
||||
#: ../../mod/admin.php:407
|
||||
#: ../../mod/admin.php:408
|
||||
msgid "Register policy"
|
||||
msgstr "Interkonsento pri registrado"
|
||||
|
||||
#: ../../mod/admin.php:408
|
||||
#: ../../mod/admin.php:409
|
||||
msgid "Register text"
|
||||
msgstr "Interkonsento teksto"
|
||||
|
||||
#: ../../mod/admin.php:408
|
||||
#: ../../mod/admin.php:409
|
||||
msgid "Will be displayed prominently on the registration page."
|
||||
msgstr "Tio estos eminente montrata en la registro paĝo."
|
||||
|
||||
#: ../../mod/admin.php:409
|
||||
#: ../../mod/admin.php:410
|
||||
msgid "Accounts abandoned after x days"
|
||||
msgstr "Kontoj forlasitaj post x tagoj"
|
||||
|
||||
#: ../../mod/admin.php:409
|
||||
#: ../../mod/admin.php:410
|
||||
msgid ""
|
||||
"Will not waste system resources polling external sites for abandonded "
|
||||
"accounts. Enter 0 for no time limit."
|
||||
msgstr "Mi ne malŝparu energion por enketi aliajn retejojn pri forlasitaj kontoj. Entajpu 0 por ne uzi templimo."
|
||||
|
||||
#: ../../mod/admin.php:410
|
||||
#: ../../mod/admin.php:411
|
||||
msgid "Allowed friend domains"
|
||||
msgstr "Permesitaj amikaj domainoj"
|
||||
|
||||
#: ../../mod/admin.php:410
|
||||
#: ../../mod/admin.php:411
|
||||
msgid ""
|
||||
"Comma separated list of domains which are allowed to establish friendships "
|
||||
"with this site. Wildcards are accepted. Empty to allow any domains"
|
||||
msgstr "Perkome disigita listo da domajnoj kiuj rajtas konstrui amikecojn kun ĉi tiu retejo. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn."
|
||||
|
||||
#: ../../mod/admin.php:411
|
||||
#: ../../mod/admin.php:412
|
||||
msgid "Allowed email domains"
|
||||
msgstr "Permesitaj retpoŝtaj domajnoj"
|
||||
|
||||
#: ../../mod/admin.php:411
|
||||
#: ../../mod/admin.php:412
|
||||
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 "Perkome disigita listo da domajnoj kiuj uzeblas kiel retpoŝtaj adresoj en novaj registradoj. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn."
|
||||
|
||||
#: ../../mod/admin.php:412
|
||||
#: ../../mod/admin.php:413
|
||||
msgid "Block public"
|
||||
msgstr "Bloki publike"
|
||||
|
||||
#: ../../mod/admin.php:412
|
||||
#: ../../mod/admin.php:413
|
||||
msgid ""
|
||||
"Check to block public access to all otherwise public personal pages on this "
|
||||
"site unless you are currently logged in."
|
||||
msgstr "Elektu por bloki publikan atingon al ĉiuj alie publikajn paĝojn en ĉi tiu retejo kiam vi ne estas ensalutita."
|
||||
|
||||
#: ../../mod/admin.php:413
|
||||
#: ../../mod/admin.php:414
|
||||
msgid "Force publish"
|
||||
msgstr "Devigi publikigon"
|
||||
|
||||
#: ../../mod/admin.php:413
|
||||
#: ../../mod/admin.php:414
|
||||
msgid ""
|
||||
"Check to force all profiles on this site to be listed in the site directory."
|
||||
msgstr "Elektu por devigi la registradon en la loka katalogo al ĉiuj profiloj en ĉi tiu retejo."
|
||||
|
||||
#: ../../mod/admin.php:414
|
||||
#: ../../mod/admin.php:415
|
||||
msgid "Global directory update URL"
|
||||
msgstr "Ĝenerala adreso por ĝisdatigi la katalogon"
|
||||
|
||||
#: ../../mod/admin.php:414
|
||||
#: ../../mod/admin.php:415
|
||||
msgid ""
|
||||
"URL to update the global directory. If this is not set, the global directory"
|
||||
" is completely unavailable to the application."
|
||||
msgstr "URL adreso por ĝisdatigi la tutmondan katalogon. Se ne agordita, la tutmonda katatolge tute ne disponeblas al la programo."
|
||||
|
||||
#: ../../mod/admin.php:416
|
||||
#: ../../mod/admin.php:417
|
||||
msgid "Block multiple registrations"
|
||||
msgstr "Bloki pluroblajn registradojn."
|
||||
|
||||
#: ../../mod/admin.php:416
|
||||
#: ../../mod/admin.php:417
|
||||
msgid "Disallow users to register additional accounts for use as pages."
|
||||
msgstr "Malpermesi al uzantoj la permeson por registri pluajn kontojn kiel paĝoj."
|
||||
|
||||
#: ../../mod/admin.php:417
|
||||
#: ../../mod/admin.php:418
|
||||
msgid "OpenID support"
|
||||
msgstr "Subteno por OpenID"
|
||||
|
||||
#: ../../mod/admin.php:417
|
||||
#: ../../mod/admin.php:418
|
||||
msgid "OpenID support for registration and logins."
|
||||
msgstr "Subteni OpenID por registrado kaj ensaluto."
|
||||
|
||||
#: ../../mod/admin.php:418
|
||||
#: ../../mod/admin.php:419
|
||||
msgid "Fullname check"
|
||||
msgstr "Kontroli plenan nomon"
|
||||
|
||||
#: ../../mod/admin.php:418
|
||||
#: ../../mod/admin.php:419
|
||||
msgid ""
|
||||
"Force users to register with a space between firstname and lastname in Full "
|
||||
"name, as an antispam measure"
|
||||
msgstr "Kiel kontraŭspamilo, devigi uzantoj al registrado kun spaceto inter la persona nomo kaj la familia nomo."
|
||||
|
||||
#: ../../mod/admin.php:419
|
||||
#: ../../mod/admin.php:420
|
||||
msgid "UTF-8 Regular expressions"
|
||||
msgstr "UTF-8 regulaj exprimoj"
|
||||
|
||||
#: ../../mod/admin.php:419
|
||||
#: ../../mod/admin.php:420
|
||||
msgid "Use PHP UTF8 regular expressions"
|
||||
msgstr "Uzi PHP UTF8 regulajn esprimojn."
|
||||
|
||||
#: ../../mod/admin.php:420
|
||||
#: ../../mod/admin.php:421
|
||||
msgid "Show Community Page"
|
||||
msgstr "Montri Komunuma Paĝo"
|
||||
|
||||
#: ../../mod/admin.php:420
|
||||
#: ../../mod/admin.php:421
|
||||
msgid ""
|
||||
"Display a Community page showing all recent public postings on this site."
|
||||
msgstr "Montri komunuma paĝo kun ĉiuj ĵusaj afiŝoj en ĉi tiu retejo."
|
||||
|
||||
#: ../../mod/admin.php:421
|
||||
#: ../../mod/admin.php:422
|
||||
msgid "Enable OStatus support"
|
||||
msgstr "Ŝalti subtenon por OStatus"
|
||||
|
||||
#: ../../mod/admin.php:421
|
||||
#: ../../mod/admin.php:422
|
||||
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 "Provizi integritan OStatus (identi.ca, status.net ktp) subtenon. Ĉiuj komunikadoj en OStatus estas publikaj, do privatecaj avertoj aperos de tempo al tempo."
|
||||
|
||||
#: ../../mod/admin.php:422
|
||||
#: ../../mod/admin.php:423
|
||||
msgid "Enable Diaspora support"
|
||||
msgstr "Ŝalti subtenon por Diaspora"
|
||||
|
||||
#: ../../mod/admin.php:422
|
||||
#: ../../mod/admin.php:423
|
||||
msgid "Provide built-in Diaspora network compatibility."
|
||||
msgstr "Provizi integritan Diaspora subtenon."
|
||||
|
||||
#: ../../mod/admin.php:423
|
||||
#: ../../mod/admin.php:424
|
||||
msgid "Only allow Friendica contacts"
|
||||
msgstr "Nur permesigi Friendica kontaktojn"
|
||||
|
||||
#: ../../mod/admin.php:423
|
||||
#: ../../mod/admin.php:424
|
||||
msgid ""
|
||||
"All contacts must use Friendica protocols. All other built-in communication "
|
||||
"protocols disabled."
|
||||
msgstr "Ĉiuj kontaktoj devas uzi Friendica protokolojn. Ĉiuj aliaj komunikaj protokoloj malaktivita."
|
||||
|
||||
#: ../../mod/admin.php:424
|
||||
#: ../../mod/admin.php:425
|
||||
msgid "Verify SSL"
|
||||
msgstr "Kontroli SSL"
|
||||
|
||||
#: ../../mod/admin.php:424
|
||||
#: ../../mod/admin.php:425
|
||||
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 "Se vi deziras, vi povas aktivigi severan kontroladon de SSL atestiloj. Pro tio, vie (tute) ne eblos konekti al SSL retejoj kun memsubskribitaj atestiloj."
|
||||
|
||||
#: ../../mod/admin.php:425
|
||||
#: ../../mod/admin.php:426
|
||||
msgid "Proxy user"
|
||||
msgstr "Uzantnomo por retperanto"
|
||||
|
||||
#: ../../mod/admin.php:426
|
||||
#: ../../mod/admin.php:427
|
||||
msgid "Proxy URL"
|
||||
msgstr "URL adreso de retperanto"
|
||||
|
||||
#: ../../mod/admin.php:427
|
||||
#: ../../mod/admin.php:428
|
||||
msgid "Network timeout"
|
||||
msgstr "Reta tempolimo"
|
||||
|
||||
#: ../../mod/admin.php:427
|
||||
#: ../../mod/admin.php:428
|
||||
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
|
||||
msgstr "Valoro en sekundoj. Uzu 0 por mallimitigi (ne rekomendata)."
|
||||
|
||||
#: ../../mod/admin.php:453
|
||||
#: ../../mod/admin.php:429
|
||||
msgid "Delivery interval"
|
||||
msgstr "Intervalo de liverado"
|
||||
|
||||
#: ../../mod/admin.php:429
|
||||
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 "Malfruigi fonan liveradon dum tiom da sekundoj por malpliigi la ŝargon de la sistemo. Rekomendoj: 4-5 por komunaj serviloj, 2-3 por virtualaj privataj serviloj, 0-1 por grandaj dediĉitaj serviloj."
|
||||
|
||||
#: ../../mod/admin.php:455
|
||||
#, php-format
|
||||
msgid "%s user blocked/unblocked"
|
||||
msgid_plural "%s users blocked/unblocked"
|
||||
msgstr[0] "Blokis/malblokis %s uzanton"
|
||||
msgstr[1] "Blokis/malblokis %s uzantojn"
|
||||
|
||||
#: ../../mod/admin.php:460
|
||||
#: ../../mod/admin.php:462
|
||||
#, php-format
|
||||
msgid "%s user deleted"
|
||||
msgid_plural "%s users deleted"
|
||||
msgstr[0] "%s uzanto forviŝita"
|
||||
msgstr[1] "%s uzanto forviŝitaj"
|
||||
|
||||
#: ../../mod/admin.php:499
|
||||
#: ../../mod/admin.php:501
|
||||
#, php-format
|
||||
msgid "User '%s' deleted"
|
||||
msgstr "Uzanto '%s' forviŝita"
|
||||
|
||||
#: ../../mod/admin.php:507
|
||||
#: ../../mod/admin.php:509
|
||||
#, php-format
|
||||
msgid "User '%s' unblocked"
|
||||
msgstr "Uzanto '%s' malblokita"
|
||||
|
||||
#: ../../mod/admin.php:507
|
||||
#: ../../mod/admin.php:509
|
||||
#, php-format
|
||||
msgid "User '%s' blocked"
|
||||
msgstr "Uzanto '%s' blokita"
|
||||
|
||||
#: ../../mod/admin.php:571
|
||||
#: ../../mod/admin.php:573
|
||||
msgid "select all"
|
||||
msgstr "elekti ĉiujn"
|
||||
|
||||
#: ../../mod/admin.php:572
|
||||
#: ../../mod/admin.php:574
|
||||
msgid "User registrations waiting for confirm"
|
||||
msgstr "Registriĝoj atendante aprobon"
|
||||
|
||||
#: ../../mod/admin.php:573
|
||||
#: ../../mod/admin.php:575
|
||||
msgid "Request date"
|
||||
msgstr "Dato de peto"
|
||||
|
||||
#: ../../mod/admin.php:573 ../../mod/admin.php:582
|
||||
#: ../../mod/admin.php:575 ../../mod/admin.php:584
|
||||
#: ../../include/contact_selectors.php:79
|
||||
msgid "Email"
|
||||
msgstr "Retpoŝto"
|
||||
|
||||
#: ../../mod/admin.php:574
|
||||
#: ../../mod/admin.php:576
|
||||
msgid "No registrations."
|
||||
msgstr "Neniom da registriĝoj."
|
||||
|
||||
#: ../../mod/admin.php:576
|
||||
#: ../../mod/admin.php:578
|
||||
msgid "Deny"
|
||||
msgstr "Negi"
|
||||
|
||||
#: ../../mod/admin.php:582
|
||||
#: ../../mod/admin.php:584
|
||||
msgid "Register date"
|
||||
msgstr "Dato de registrado"
|
||||
|
||||
#: ../../mod/admin.php:582
|
||||
#: ../../mod/admin.php:584
|
||||
msgid "Last login"
|
||||
msgstr "Plej ĵusa ensaluto"
|
||||
|
||||
#: ../../mod/admin.php:582
|
||||
#: ../../mod/admin.php:584
|
||||
msgid "Last item"
|
||||
msgstr "Plej ĵusa elemento"
|
||||
|
||||
#: ../../mod/admin.php:582
|
||||
#: ../../mod/admin.php:584
|
||||
msgid "Account"
|
||||
msgstr "Konto"
|
||||
|
||||
#: ../../mod/admin.php:584
|
||||
#: ../../mod/admin.php:586
|
||||
msgid ""
|
||||
"Selected users will be deleted!\\n\\nEverything these users had posted on "
|
||||
"this site will be permanently deleted!\\n\\nAre you sure?"
|
||||
msgstr "La elektitaj uzantkontoj estas forviŝotaj!\\n\\nĈiuj elementoj kiujn ili afiŝis je la retpaĝo estos permanente forviŝitaj.\\n\\nĈu vi certas?"
|
||||
|
||||
#: ../../mod/admin.php:585
|
||||
#: ../../mod/admin.php:587
|
||||
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 "La uzanto {0} estas forviŝota!\\n\\nĈiuj elementoj kiujn li afiŝis je la retpaĝo estos permanente forviŝitaj.\\n\\nĈu vi certas?"
|
||||
|
||||
#: ../../mod/admin.php:626
|
||||
#: ../../mod/admin.php:628
|
||||
#, php-format
|
||||
msgid "Plugin %s disabled."
|
||||
msgstr "Kromprogramo %s estas malŝaltita."
|
||||
|
||||
#: ../../mod/admin.php:630
|
||||
#: ../../mod/admin.php:632
|
||||
#, php-format
|
||||
msgid "Plugin %s enabled."
|
||||
msgstr "Kromprogramo %s estas ŝaltita."
|
||||
|
||||
#: ../../mod/admin.php:640 ../../mod/admin.php:838
|
||||
#: ../../mod/admin.php:642 ../../mod/admin.php:840
|
||||
msgid "Disable"
|
||||
msgstr "Malŝalti"
|
||||
|
||||
#: ../../mod/admin.php:642 ../../mod/admin.php:840
|
||||
#: ../../mod/admin.php:644 ../../mod/admin.php:842
|
||||
msgid "Enable"
|
||||
msgstr "Ŝalti"
|
||||
|
||||
#: ../../mod/admin.php:664 ../../mod/admin.php:869
|
||||
#: ../../mod/admin.php:666 ../../mod/admin.php:871
|
||||
msgid "Toggle"
|
||||
msgstr "Ŝalti/Malŝalti"
|
||||
|
||||
#: ../../mod/admin.php:672 ../../mod/admin.php:879
|
||||
#: ../../mod/admin.php:674 ../../mod/admin.php:881
|
||||
msgid "Author: "
|
||||
msgstr "Aŭtoro: "
|
||||
|
||||
#: ../../mod/admin.php:673 ../../mod/admin.php:880
|
||||
#: ../../mod/admin.php:675 ../../mod/admin.php:882
|
||||
msgid "Maintainer: "
|
||||
msgstr "Prizorganto: "
|
||||
|
||||
#: ../../mod/admin.php:802
|
||||
#: ../../mod/admin.php:804
|
||||
msgid "No themes found."
|
||||
msgstr "Ne trovis etosojn."
|
||||
|
||||
#: ../../mod/admin.php:861
|
||||
#: ../../mod/admin.php:863
|
||||
msgid "Screenshot"
|
||||
msgstr "Ekrankopio"
|
||||
|
||||
#: ../../mod/admin.php:909
|
||||
#: ../../mod/admin.php:911
|
||||
msgid "[Experimental]"
|
||||
msgstr "[Eksperimenta]"
|
||||
|
||||
#: ../../mod/admin.php:910
|
||||
#: ../../mod/admin.php:912
|
||||
msgid "[Unsupported]"
|
||||
msgstr "[Nesubtenata]"
|
||||
|
||||
#: ../../mod/admin.php:937
|
||||
#: ../../mod/admin.php:939
|
||||
msgid "Log settings updated."
|
||||
msgstr "Protokolagordoj ĝisdatigitaj."
|
||||
|
||||
#: ../../mod/admin.php:994
|
||||
#: ../../mod/admin.php:996
|
||||
msgid "Clear"
|
||||
msgstr "Forviŝi"
|
||||
|
||||
#: ../../mod/admin.php:1000
|
||||
#: ../../mod/admin.php:1002
|
||||
msgid "Debugging"
|
||||
msgstr "Sencimigado"
|
||||
|
||||
#: ../../mod/admin.php:1001
|
||||
#: ../../mod/admin.php:1003
|
||||
msgid "Log file"
|
||||
msgstr "Protokolo"
|
||||
|
||||
#: ../../mod/admin.php:1001
|
||||
#: ../../mod/admin.php:1003
|
||||
msgid ""
|
||||
"Must be writable by web server. Relative to your Friendica top-level "
|
||||
"directory."
|
||||
msgstr "Devas esti skribebla de la retservilo. Relativa al via plej supra Friendica dosierujo."
|
||||
|
||||
#: ../../mod/admin.php:1002
|
||||
#: ../../mod/admin.php:1004
|
||||
msgid "Log level"
|
||||
msgstr "Protokolnivelo"
|
||||
|
||||
#: ../../mod/admin.php:1052
|
||||
#: ../../mod/admin.php:1054
|
||||
msgid "Close"
|
||||
msgstr "Fermi"
|
||||
|
||||
#: ../../mod/admin.php:1058
|
||||
#: ../../mod/admin.php:1060
|
||||
msgid "FTP Host"
|
||||
msgstr "FTP Servilo"
|
||||
|
||||
#: ../../mod/admin.php:1059
|
||||
#: ../../mod/admin.php:1061
|
||||
msgid "FTP Path"
|
||||
msgstr "FTP Vojo"
|
||||
|
||||
#: ../../mod/admin.php:1060
|
||||
#: ../../mod/admin.php:1062
|
||||
msgid "FTP User"
|
||||
msgstr "FTP Uzanto"
|
||||
|
||||
#: ../../mod/admin.php:1061
|
||||
#: ../../mod/admin.php:1063
|
||||
msgid "FTP Password"
|
||||
msgstr "FTP Pasvorto"
|
||||
|
||||
|
|
@ -3509,11 +3461,11 @@ msgstr "FTP Pasvorto"
|
|||
msgid "Requested profile is not available."
|
||||
msgstr "La petita profilo ne disponeblas."
|
||||
|
||||
#: ../../mod/profile.php:124 ../../mod/display.php:75
|
||||
#: ../../mod/profile.php:126 ../../mod/display.php:75
|
||||
msgid "Access to this profile has been restricted."
|
||||
msgstr "Atingo al ĉi tio profilo estas limitigita"
|
||||
|
||||
#: ../../mod/profile.php:145
|
||||
#: ../../mod/profile.php:147
|
||||
msgid "Tips for New Members"
|
||||
msgstr "Konsilo por novaj membroj"
|
||||
|
||||
|
|
@ -3914,7 +3866,7 @@ msgstr "videbla al ĉiuj"
|
|||
msgid "Edit visibility"
|
||||
msgstr "Redakti videblecon"
|
||||
|
||||
#: ../../mod/filer.php:29 ../../include/conversation.php:914
|
||||
#: ../../mod/filer.php:29 ../../include/conversation.php:922
|
||||
msgid "Save to Folder:"
|
||||
msgstr "Konservi en Dosierujo:"
|
||||
|
||||
|
|
@ -3962,14 +3914,7 @@ msgstr "Aldoni"
|
|||
msgid "No entries."
|
||||
msgstr "Neniom da afiŝoj."
|
||||
|
||||
#: ../../mod/suggest.php:38
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:145
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:143
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:143
|
||||
#: ../../view/theme/diabook/theme.php:158
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:145
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:145
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:145
|
||||
#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:163
|
||||
#: ../../include/contact_widgets.php:34
|
||||
msgid "Friend Suggestions"
|
||||
msgstr "Amikosugestoj."
|
||||
|
|
@ -3984,14 +3929,7 @@ msgstr "Neniu sugestoj disponeblas. Se ĉi tiu estas nova retejo, bonvolu reprov
|
|||
msgid "Ignore/Hide"
|
||||
msgstr "Ignori/Kaŝi"
|
||||
|
||||
#: ../../mod/directory.php:47
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:143
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:141
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:141
|
||||
#: ../../view/theme/diabook/theme.php:156
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:143
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:143
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:143
|
||||
#: ../../mod/directory.php:47 ../../view/theme/diabook/theme.php:161
|
||||
msgid "Global Directory"
|
||||
msgstr "Tutmonda Katalogo"
|
||||
|
||||
|
|
@ -4303,8 +4241,8 @@ msgstr "Programo sekreto"
|
|||
|
||||
#: ../../addon/facebook/facebook.php:715
|
||||
#, php-format
|
||||
msgid "Polling Interval (min. %1$s minutes)"
|
||||
msgstr "Intervalo por la enketilo (poller intervalo, minimume %1$s mintuoj) "
|
||||
msgid "Polling Interval in minutes (minimum %1$s minutes)"
|
||||
msgstr "Intervalo de enketo en minutoj (minimume %1$s minutoj)"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:716
|
||||
msgid ""
|
||||
|
|
@ -4404,6 +4342,10 @@ msgid_plural "%d people don't like this"
|
|||
msgstr[0] "%d homo malŝatas tiun"
|
||||
msgstr[1] "%d homo malŝatas tiun"
|
||||
|
||||
#: ../../addon/widgets/widget_friendheader.php:40
|
||||
msgid "Get added to this list!"
|
||||
msgstr "Iĝu membro de ĉi tiu listo!"
|
||||
|
||||
#: ../../addon/widgets/widgets.php:56
|
||||
msgid "Generate new key"
|
||||
msgstr "Generi novan ĉifroŝlosilon"
|
||||
|
|
@ -4547,15 +4489,8 @@ msgid "Latest likes"
|
|||
msgstr "Ĵusaj ŝatitaĵoj"
|
||||
|
||||
#: ../../addon/communityhome/communityhome.php:155
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:80
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:79
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:79
|
||||
#: ../../view/theme/diabook/theme.php:94
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:80
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:80
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:80
|
||||
#: ../../include/text.php:1302 ../../include/conversation.php:45
|
||||
#: ../../include/conversation.php:118
|
||||
#: ../../view/theme/diabook/theme.php:99 ../../include/text.php:1302
|
||||
#: ../../include/conversation.php:45 ../../include/conversation.php:118
|
||||
msgid "event"
|
||||
msgstr "okazo"
|
||||
|
||||
|
|
@ -4763,68 +4698,70 @@ msgstr "Uzi OEmbed por YouTube videtoj"
|
|||
msgid "URL to embed:"
|
||||
msgstr "Enigi la URL adreson:"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:34
|
||||
#: ../../addon/impressum/impressum.php:36
|
||||
msgid "Impressum"
|
||||
msgstr "Kolofono"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:47
|
||||
#: ../../addon/impressum/impressum.php:49
|
||||
#: ../../addon/impressum/impressum.php:81
|
||||
#: ../../addon/impressum/impressum.php:51
|
||||
#: ../../addon/impressum/impressum.php:83
|
||||
msgid "Site Owner"
|
||||
msgstr "Proprietulo de la paĝo"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:47
|
||||
#: ../../addon/impressum/impressum.php:85
|
||||
#: ../../addon/impressum/impressum.php:49
|
||||
#: ../../addon/impressum/impressum.php:87
|
||||
msgid "Email Address"
|
||||
msgstr "Retpoŝta Adreso"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:52
|
||||
#: ../../addon/impressum/impressum.php:83
|
||||
#: ../../addon/impressum/impressum.php:54
|
||||
#: ../../addon/impressum/impressum.php:85
|
||||
msgid "Postal Address"
|
||||
msgstr "Poŝta Adreso"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:58
|
||||
#: ../../addon/impressum/impressum.php:60
|
||||
msgid ""
|
||||
"The impressum addon needs to be configured!<br />Please add at least the "
|
||||
"<tt>owner</tt> variable to your config file. For other variables please "
|
||||
"refer to the README file of the addon."
|
||||
msgstr "La kolofono (impressum) kromprogramo bezonas agordojn!<br />Bonvolu aldoni minimume la <tt>owner</tt> variablon al via agorda dosiero. Por aliaj variabloj, bonvolu legi la README dosieron de la kromprogramo."
|
||||
|
||||
#: ../../addon/impressum/impressum.php:81
|
||||
#: ../../addon/impressum/impressum.php:83
|
||||
msgid "The page operators name."
|
||||
msgstr "La nomo de la funkciigisto de la retejo."
|
||||
|
||||
#: ../../addon/impressum/impressum.php:82
|
||||
#: ../../addon/impressum/impressum.php:84
|
||||
msgid "Site Owners Profile"
|
||||
msgstr "Profilo de la Proprietulo de la Retejo"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:82
|
||||
#: ../../addon/impressum/impressum.php:84
|
||||
msgid "Profile address of the operator."
|
||||
msgstr "La profilo de la funkciigisto de la retejo."
|
||||
|
||||
#: ../../addon/impressum/impressum.php:83
|
||||
msgid "How to contact the operator via snail mail."
|
||||
msgstr "Kiel kontakti la funkciigiston de la retejo tra paperpoŝto."
|
||||
#: ../../addon/impressum/impressum.php:85
|
||||
msgid "How to contact the operator via snail mail. You can use BBCode here."
|
||||
msgstr "Kiel poŝte kontakti la funkciigisto de la retejo. Vi eblas uzi BBCode ĉi tie."
|
||||
|
||||
#: ../../addon/impressum/impressum.php:84
|
||||
#: ../../addon/impressum/impressum.php:86
|
||||
msgid "Notes"
|
||||
msgstr "Notoj"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:84
|
||||
msgid "Additional notes that are displayed beneath the contact information."
|
||||
msgstr "Pliaj notoj kiuj estas montrigota malsupre la kontaktinformojn."
|
||||
#: ../../addon/impressum/impressum.php:86
|
||||
msgid ""
|
||||
"Additional notes that are displayed beneath the contact information. You can"
|
||||
" use BBCode here."
|
||||
msgstr "Pli da notoj kiuj aperas sub la kontaktinformoj. Vi eblas uzi BBCode ĉi tie."
|
||||
|
||||
#: ../../addon/impressum/impressum.php:85
|
||||
#: ../../addon/impressum/impressum.php:87
|
||||
msgid "How to contact the operator via email. (will be displayed obfuscated)"
|
||||
msgstr "Kiel kontakti la funkciigiston de la retejo tra retpoŝto. (montriĝos vuale) "
|
||||
|
||||
#: ../../addon/impressum/impressum.php:86
|
||||
#: ../../addon/impressum/impressum.php:88
|
||||
msgid "Footer note"
|
||||
msgstr "Paĝpiednoto"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:86
|
||||
msgid "Text for the footer."
|
||||
msgstr "Teksto por la paĝpiedo."
|
||||
#: ../../addon/impressum/impressum.php:88
|
||||
msgid "Text for the footer. You can use BBCode here."
|
||||
msgstr "Teksto por la paĝpiedo. Vie eblas uzi BBCode ĉi tie."
|
||||
|
||||
#: ../../addon/buglink/buglink.php:15
|
||||
msgid "Report Bug"
|
||||
|
|
@ -5448,228 +5385,100 @@ msgstr "Posterous pasvorto"
|
|||
msgid "Post to Posterous by default"
|
||||
msgstr "Defaŭlte afiŝi al Posterous"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:29
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:28
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:28
|
||||
#: ../../view/theme/diabook/theme.php:43
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:29
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:29
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:29
|
||||
msgid "Last users"
|
||||
msgstr "Ĵusaj uzantoj"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:58
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:57
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:57
|
||||
#: ../../view/theme/diabook/theme.php:72
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:58
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:58
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:58
|
||||
msgid "Last likes"
|
||||
msgstr "Ĵusaj ŝatitaj elementoj"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:103
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:102
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:102
|
||||
#: ../../view/theme/diabook/theme.php:117
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:103
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:103
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:103
|
||||
msgid "Last photos"
|
||||
msgstr "Ĵusaj bildoj"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:141
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:139
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:139
|
||||
#: ../../view/theme/diabook/theme.php:154
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:141
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:141
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:141
|
||||
msgid "Find Friends"
|
||||
msgstr "Trovi Amikojn"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:142
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:140
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:140
|
||||
#: ../../view/theme/diabook/theme.php:155
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:142
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:142
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:142
|
||||
msgid "Local Directory"
|
||||
msgstr "Loka Katalogo"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:144
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:142
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:142
|
||||
#: ../../view/theme/diabook/theme.php:157
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:144
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:144
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:144
|
||||
#: ../../include/contact_widgets.php:35
|
||||
msgid "Similar Interests"
|
||||
msgstr "Similaj Interesoj"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:146
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:144
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:144
|
||||
#: ../../view/theme/diabook/theme.php:159
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:146
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:146
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:146
|
||||
#: ../../include/contact_widgets.php:37
|
||||
msgid "Invite Friends"
|
||||
msgstr "Inviti amikojn"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:161
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:236
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:159
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:234
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:159
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:234
|
||||
#: ../../view/theme/diabook/theme.php:175
|
||||
#: ../../view/theme/diabook/theme.php:253
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:161
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:236
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:161
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:236
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:161
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:236
|
||||
msgid "Community Pages"
|
||||
msgstr "Komunumaj paĝoj"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:194
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:192
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:192
|
||||
#: ../../view/theme/diabook/theme.php:208
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:194
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:194
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:194
|
||||
msgid "Help or @NewHere ?"
|
||||
msgstr "Helpu aŭ @NewHere ?"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:200
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:198
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:198
|
||||
#: ../../view/theme/diabook/theme.php:214
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:200
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:200
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:200
|
||||
msgid "Connect Services"
|
||||
msgstr "Konekti Servojn"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:229
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:227
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:227
|
||||
#: ../../view/theme/diabook/theme.php:246
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:229
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:229
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:229
|
||||
#: ../../include/nav.php:49 ../../include/nav.php:115
|
||||
msgid "Your posts and conversations"
|
||||
msgstr "Viaj afiŝoj kaj komunikadoj"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:230
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:228
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:228
|
||||
#: ../../view/theme/diabook/theme.php:247
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:230
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:230
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:230
|
||||
#: ../../include/nav.php:50
|
||||
msgid "Your profile page"
|
||||
msgstr "Via profilo"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:231
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:229
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:229
|
||||
#: ../../view/theme/diabook/theme.php:248
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:231
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:231
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:231
|
||||
msgid "Your contacts"
|
||||
msgstr "Viaj kontaktoj"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:232
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:230
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:230
|
||||
#: ../../view/theme/diabook/theme.php:249
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:232
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:232
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:232
|
||||
#: ../../include/nav.php:51
|
||||
msgid "Your photos"
|
||||
msgstr "Viaj bildoj"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:233
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:231
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:231
|
||||
#: ../../view/theme/diabook/theme.php:250
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:233
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:233
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:233
|
||||
#: ../../include/nav.php:52
|
||||
msgid "Your events"
|
||||
msgstr "Viaj okazoj"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:234
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:232
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:232
|
||||
#: ../../view/theme/diabook/theme.php:251
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:234
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:234
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:234
|
||||
#: ../../include/nav.php:53
|
||||
msgid "Personal notes"
|
||||
msgstr "Personaj notoj"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/theme.php:234
|
||||
#: ../../view/theme/diabook/diabook-red/theme.php:232
|
||||
#: ../../view/theme/diabook/diabook-blue/theme.php:232
|
||||
#: ../../view/theme/diabook/theme.php:251
|
||||
#: ../../view/theme/diabook/diabook-dark/theme.php:234
|
||||
#: ../../view/theme/diabook/diabook-aerith/theme.php:234
|
||||
#: ../../view/theme/diabook/diabook-pink/theme.php:234
|
||||
#: ../../include/nav.php:53
|
||||
msgid "Your personal photos"
|
||||
msgstr "Viaj personaj bildoj"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/config.php:78
|
||||
#: ../../view/theme/diabook/diabook-red/config.php:78
|
||||
#: ../../view/theme/diabook/diabook-blue/config.php:78
|
||||
#: ../../view/theme/diabook/diabook-dark/config.php:78
|
||||
#: ../../view/theme/diabook/diabook-aerith/config.php:78
|
||||
#: ../../view/theme/diabook/diabook-pink/config.php:78
|
||||
#: ../../view/theme/cleanzero/config.php:73
|
||||
#: ../../view/theme/diabook/config.php:93
|
||||
#: ../../view/theme/quattro/config.php:54
|
||||
#: ../../view/theme/quattro/config.php:54 ../../view/theme/dispy/config.php:72
|
||||
msgid "Theme settings"
|
||||
msgstr "Agordoj pri la etoso"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/config.php:79
|
||||
#: ../../view/theme/diabook/diabook-red/config.php:79
|
||||
#: ../../view/theme/diabook/diabook-blue/config.php:79
|
||||
#: ../../view/theme/diabook/diabook-dark/config.php:79
|
||||
#: ../../view/theme/diabook/diabook-aerith/config.php:79
|
||||
#: ../../view/theme/diabook/diabook-pink/config.php:79
|
||||
#: ../../view/theme/diabook/config.php:94
|
||||
#: ../../view/theme/cleanzero/config.php:74
|
||||
msgid "Set resize level for images in posts and comments (width and height)"
|
||||
msgstr "Agordi la regrandignivelo por bildoj en afiŝoj kaj komentoj (larĝo kaj alto)"
|
||||
|
||||
#: ../../view/theme/cleanzero/config.php:75
|
||||
#: ../../view/theme/diabook/config.php:94 ../../view/theme/dispy/config.php:73
|
||||
msgid "Set font-size for posts and comments"
|
||||
msgstr "Agordi la tiparan grandon por afiŝoj kaj komentoj"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/config.php:80
|
||||
#: ../../view/theme/diabook/diabook-red/config.php:80
|
||||
#: ../../view/theme/diabook/diabook-blue/config.php:80
|
||||
#: ../../view/theme/diabook/diabook-dark/config.php:80
|
||||
#: ../../view/theme/diabook/diabook-aerith/config.php:80
|
||||
#: ../../view/theme/diabook/diabook-pink/config.php:80
|
||||
#: ../../view/theme/diabook/config.php:95
|
||||
#: ../../view/theme/cleanzero/config.php:76
|
||||
#: ../../view/theme/quattro/config.php:56
|
||||
msgid "Color scheme"
|
||||
msgstr "Kolorskemo"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:48
|
||||
msgid "Last users"
|
||||
msgstr "Ĵusaj uzantoj"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:77
|
||||
msgid "Last likes"
|
||||
msgstr "Ĵusaj ŝatitaj elementoj"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:122
|
||||
msgid "Last photos"
|
||||
msgstr "Ĵusaj bildoj"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:159
|
||||
msgid "Find Friends"
|
||||
msgstr "Trovi Amikojn"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:160
|
||||
msgid "Local Directory"
|
||||
msgstr "Loka Katalogo"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:162 ../../include/contact_widgets.php:35
|
||||
msgid "Similar Interests"
|
||||
msgstr "Similaj Interesoj"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:164 ../../include/contact_widgets.php:37
|
||||
msgid "Invite Friends"
|
||||
msgstr "Inviti amikojn"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:180
|
||||
#: ../../view/theme/diabook/theme.php:258
|
||||
msgid "Community Pages"
|
||||
msgstr "Komunumaj paĝoj"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:213
|
||||
msgid "Help or @NewHere ?"
|
||||
msgstr "Helpu aŭ @NewHere ?"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:219
|
||||
msgid "Connect Services"
|
||||
msgstr "Konekti Servojn"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:251 ../../include/nav.php:49
|
||||
#: ../../include/nav.php:115
|
||||
msgid "Your posts and conversations"
|
||||
msgstr "Viaj afiŝoj kaj komunikadoj"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:252 ../../include/nav.php:50
|
||||
msgid "Your profile page"
|
||||
msgstr "Via profilo"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:253
|
||||
msgid "Your contacts"
|
||||
msgstr "Viaj kontaktoj"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:254 ../../include/nav.php:51
|
||||
msgid "Your photos"
|
||||
msgstr "Viaj bildoj"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:255 ../../include/nav.php:52
|
||||
msgid "Your events"
|
||||
msgstr "Viaj okazoj"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:256 ../../include/nav.php:53
|
||||
msgid "Personal notes"
|
||||
msgstr "Personaj notoj"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:256 ../../include/nav.php:53
|
||||
msgid "Your personal photos"
|
||||
msgstr "Viaj personaj bildoj"
|
||||
|
||||
#: ../../view/theme/diabook/config.php:95 ../../view/theme/dispy/config.php:74
|
||||
msgid "Set line-height for posts and comments"
|
||||
msgstr "Agordi la linigrandon por afiŝoj kaj komentoj"
|
||||
|
||||
#: ../../view/theme/diabook/diabook-green/config.php:81
|
||||
#: ../../view/theme/diabook/diabook-red/config.php:81
|
||||
#: ../../view/theme/diabook/diabook-blue/config.php:81
|
||||
#: ../../view/theme/diabook/diabook-dark/config.php:81
|
||||
#: ../../view/theme/diabook/diabook-aerith/config.php:81
|
||||
#: ../../view/theme/diabook/diabook-pink/config.php:81
|
||||
#: ../../view/theme/diabook/config.php:96
|
||||
msgid "Set resolution for middle column"
|
||||
msgstr "Agordi la distingivon por la meza kolumno"
|
||||
|
|
@ -5690,9 +5499,9 @@ msgstr "Maldekstren"
|
|||
msgid "Center"
|
||||
msgstr "Centren"
|
||||
|
||||
#: ../../view/theme/quattro/config.php:56
|
||||
msgid "Color scheme"
|
||||
msgstr "Kolorskemo"
|
||||
#: ../../view/theme/dispy/config.php:75
|
||||
msgid "Set colour scheme"
|
||||
msgstr "Agordi Kolorskemon"
|
||||
|
||||
#: ../../include/profile_advanced.php:17 ../../boot.php:1085
|
||||
msgid "Gender:"
|
||||
|
|
@ -6083,12 +5892,12 @@ msgstr "Ekas:"
|
|||
msgid "Finishes:"
|
||||
msgstr "Finas:"
|
||||
|
||||
#: ../../include/delivery.php:434 ../../include/notifier.php:651
|
||||
#: ../../include/delivery.php:434 ../../include/notifier.php:652
|
||||
msgid "(no subject)"
|
||||
msgstr "(neniu temo)"
|
||||
|
||||
#: ../../include/delivery.php:441 ../../include/enotify.php:23
|
||||
#: ../../include/notifier.php:658
|
||||
#: ../../include/notifier.php:659
|
||||
msgid "noreply"
|
||||
msgstr "nerespondi"
|
||||
|
||||
|
|
@ -6311,7 +6120,7 @@ msgstr "Elsaluti"
|
|||
msgid "End this session"
|
||||
msgstr "Fini ĉi-tiun seancon"
|
||||
|
||||
#: ../../include/nav.php:49 ../../boot.php:1453
|
||||
#: ../../include/nav.php:49 ../../boot.php:1463
|
||||
msgid "Status"
|
||||
msgstr "Stato"
|
||||
|
||||
|
|
@ -6561,7 +6370,7 @@ msgstr "sekundoj"
|
|||
msgid "%1$d %2$s ago"
|
||||
msgstr "antaŭ %1$d %2$s"
|
||||
|
||||
#: ../../include/poller.php:543
|
||||
#: ../../include/onepoll.php:402
|
||||
msgid "From: "
|
||||
msgstr "De: "
|
||||
|
||||
|
|
@ -6817,30 +6626,34 @@ msgid ""
|
|||
"form has been opened for too long (>3 hours) before submitting it."
|
||||
msgstr "La sekuriga ĵetono de la formo estis malĝusta. Tio verŝajne okazis ĉar la formo estis malfermita dum tro longa tempo (>3 horoj) antaŭ la sendado."
|
||||
|
||||
#: ../../include/Contact.php:145 ../../include/conversation.php:809
|
||||
#: ../../include/Contact.php:96
|
||||
msgid "stopped following"
|
||||
msgstr "ne plu sekvas"
|
||||
|
||||
#: ../../include/Contact.php:188 ../../include/conversation.php:817
|
||||
msgid "View Status"
|
||||
msgstr "Vidi Staton"
|
||||
|
||||
#: ../../include/Contact.php:146 ../../include/conversation.php:810
|
||||
#: ../../include/Contact.php:189 ../../include/conversation.php:818
|
||||
msgid "View Profile"
|
||||
msgstr "Vidi Profilon"
|
||||
|
||||
#: ../../include/Contact.php:147 ../../include/conversation.php:811
|
||||
#: ../../include/Contact.php:190 ../../include/conversation.php:819
|
||||
msgid "View Photos"
|
||||
msgstr "Vidi Bildojn"
|
||||
|
||||
#: ../../include/Contact.php:148 ../../include/Contact.php:161
|
||||
#: ../../include/conversation.php:812
|
||||
#: ../../include/Contact.php:191 ../../include/Contact.php:204
|
||||
#: ../../include/conversation.php:820
|
||||
msgid "Network Posts"
|
||||
msgstr "Enretaj Afiŝoj"
|
||||
|
||||
#: ../../include/Contact.php:149 ../../include/Contact.php:161
|
||||
#: ../../include/conversation.php:813
|
||||
#: ../../include/Contact.php:192 ../../include/Contact.php:204
|
||||
#: ../../include/conversation.php:821
|
||||
msgid "Edit Contact"
|
||||
msgstr "Redakti Kontakton"
|
||||
|
||||
#: ../../include/Contact.php:150 ../../include/Contact.php:161
|
||||
#: ../../include/conversation.php:814
|
||||
#: ../../include/Contact.php:193 ../../include/Contact.php:204
|
||||
#: ../../include/conversation.php:822
|
||||
msgid "Send PM"
|
||||
msgstr "Sendi PM"
|
||||
|
||||
|
|
@ -6853,17 +6666,17 @@ msgstr "afiŝo/elemento"
|
|||
msgid "%1$s marked %2$s's %3$s as favorite"
|
||||
msgstr "%1$s markis la %3$s de %2$s kiel preferita."
|
||||
|
||||
#: ../../include/conversation.php:317 ../../include/conversation.php:575
|
||||
#: ../../include/conversation.php:317 ../../include/conversation.php:583
|
||||
msgid "Select"
|
||||
msgstr "Elekti"
|
||||
|
||||
#: ../../include/conversation.php:334 ../../include/conversation.php:668
|
||||
#: ../../include/conversation.php:669
|
||||
#: ../../include/conversation.php:334 ../../include/conversation.php:676
|
||||
#: ../../include/conversation.php:677
|
||||
#, php-format
|
||||
msgid "View %s's profile @ %s"
|
||||
msgstr "Vidi la profilon de %s ĉe %s"
|
||||
|
||||
#: ../../include/conversation.php:344 ../../include/conversation.php:680
|
||||
#: ../../include/conversation.php:344 ../../include/conversation.php:688
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr "%s de %s"
|
||||
|
|
@ -6895,142 +6708,174 @@ msgstr "Kunhavigi ĉi tiun"
|
|||
msgid "share"
|
||||
msgstr "kunhavigi"
|
||||
|
||||
#: ../../include/conversation.php:588
|
||||
#: ../../include/conversation.php:556
|
||||
msgid "Bold"
|
||||
msgstr "Grasa"
|
||||
|
||||
#: ../../include/conversation.php:557
|
||||
msgid "Italic"
|
||||
msgstr "Kursiva"
|
||||
|
||||
#: ../../include/conversation.php:558
|
||||
msgid "Underline"
|
||||
msgstr "Substreki"
|
||||
|
||||
#: ../../include/conversation.php:559
|
||||
msgid "Quote"
|
||||
msgstr "Citaĵo"
|
||||
|
||||
#: ../../include/conversation.php:560
|
||||
msgid "Code"
|
||||
msgstr "Kodo"
|
||||
|
||||
#: ../../include/conversation.php:561
|
||||
msgid "Image"
|
||||
msgstr "Bildo"
|
||||
|
||||
#: ../../include/conversation.php:562
|
||||
msgid "Link"
|
||||
msgstr "Ligilo"
|
||||
|
||||
#: ../../include/conversation.php:563
|
||||
msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
#: ../../include/conversation.php:596
|
||||
msgid "add star"
|
||||
msgstr "aldoni stelon"
|
||||
|
||||
#: ../../include/conversation.php:589
|
||||
#: ../../include/conversation.php:597
|
||||
msgid "remove star"
|
||||
msgstr "forpreni stelon"
|
||||
|
||||
#: ../../include/conversation.php:590
|
||||
#: ../../include/conversation.php:598
|
||||
msgid "toggle star status"
|
||||
msgstr "ŝalti/malŝalti steloŝtato"
|
||||
|
||||
#: ../../include/conversation.php:593
|
||||
#: ../../include/conversation.php:601
|
||||
msgid "starred"
|
||||
msgstr "steligita"
|
||||
|
||||
#: ../../include/conversation.php:594
|
||||
#: ../../include/conversation.php:602
|
||||
msgid "add tag"
|
||||
msgstr "aldoni markon"
|
||||
|
||||
#: ../../include/conversation.php:598
|
||||
#: ../../include/conversation.php:606
|
||||
msgid "save to folder"
|
||||
msgstr "konservi en dosierujo"
|
||||
|
||||
#: ../../include/conversation.php:670
|
||||
#: ../../include/conversation.php:678
|
||||
msgid "to"
|
||||
msgstr "al"
|
||||
|
||||
#: ../../include/conversation.php:671
|
||||
#: ../../include/conversation.php:679
|
||||
msgid "Wall-to-Wall"
|
||||
msgstr "Muro-al-Muro"
|
||||
|
||||
#: ../../include/conversation.php:672
|
||||
#: ../../include/conversation.php:680
|
||||
msgid "via Wall-To-Wall:"
|
||||
msgstr "tra Muro-al-Muro:"
|
||||
|
||||
#: ../../include/conversation.php:717
|
||||
#: ../../include/conversation.php:725
|
||||
msgid "Delete Selected Items"
|
||||
msgstr "Forviŝi Elektitajn Elementojn"
|
||||
|
||||
#: ../../include/conversation.php:868
|
||||
#: ../../include/conversation.php:876
|
||||
#, php-format
|
||||
msgid "%s likes this."
|
||||
msgstr "%s ŝatas tiun."
|
||||
|
||||
#: ../../include/conversation.php:868
|
||||
#: ../../include/conversation.php:876
|
||||
#, php-format
|
||||
msgid "%s doesn't like this."
|
||||
msgstr "%s malŝatas tiun."
|
||||
|
||||
#: ../../include/conversation.php:872
|
||||
#: ../../include/conversation.php:880
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> like this."
|
||||
msgstr "<span %1$s>%2$d homoj</span> ŝatas tiun."
|
||||
|
||||
#: ../../include/conversation.php:874
|
||||
#: ../../include/conversation.php:882
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> don't like this."
|
||||
msgstr "<span %1$s>%2$d homoj</span>malŝatas tiun."
|
||||
|
||||
#: ../../include/conversation.php:880
|
||||
#: ../../include/conversation.php:888
|
||||
msgid "and"
|
||||
msgstr "kaj"
|
||||
|
||||
#: ../../include/conversation.php:883
|
||||
#: ../../include/conversation.php:891
|
||||
#, php-format
|
||||
msgid ", and %d other people"
|
||||
msgstr ", kaj %d aliaj homoj."
|
||||
|
||||
#: ../../include/conversation.php:884
|
||||
#: ../../include/conversation.php:892
|
||||
#, php-format
|
||||
msgid "%s like this."
|
||||
msgstr "%s ŝatas tiun."
|
||||
|
||||
#: ../../include/conversation.php:884
|
||||
#: ../../include/conversation.php:892
|
||||
#, php-format
|
||||
msgid "%s don't like this."
|
||||
msgstr "%s malŝatas tiun."
|
||||
|
||||
#: ../../include/conversation.php:909
|
||||
#: ../../include/conversation.php:917
|
||||
msgid "Visible to <strong>everybody</strong>"
|
||||
msgstr "Videbla al <strong>ĉiuj</strong>"
|
||||
|
||||
#: ../../include/conversation.php:911
|
||||
#: ../../include/conversation.php:919
|
||||
msgid "Please enter a video link/URL:"
|
||||
msgstr "Bonvolu entajpi ligilon/adreson de video:"
|
||||
|
||||
#: ../../include/conversation.php:912
|
||||
#: ../../include/conversation.php:920
|
||||
msgid "Please enter an audio link/URL:"
|
||||
msgstr "Bonvolu entajpi ligilon/adreson de sono:"
|
||||
|
||||
#: ../../include/conversation.php:913
|
||||
#: ../../include/conversation.php:921
|
||||
msgid "Tag term:"
|
||||
msgstr "Markfrazo:"
|
||||
|
||||
#: ../../include/conversation.php:915
|
||||
#: ../../include/conversation.php:923
|
||||
msgid "Where are you right now?"
|
||||
msgstr "Kie vi estas nun?"
|
||||
|
||||
#: ../../include/conversation.php:958
|
||||
#: ../../include/conversation.php:966
|
||||
msgid "upload photo"
|
||||
msgstr "alŝuti bildon"
|
||||
|
||||
#: ../../include/conversation.php:960
|
||||
#: ../../include/conversation.php:968
|
||||
msgid "attach file"
|
||||
msgstr "kunsendi dosieron"
|
||||
|
||||
#: ../../include/conversation.php:962
|
||||
#: ../../include/conversation.php:970
|
||||
msgid "web link"
|
||||
msgstr "TTT ligilo"
|
||||
|
||||
#: ../../include/conversation.php:963
|
||||
#: ../../include/conversation.php:971
|
||||
msgid "Insert video link"
|
||||
msgstr "Alglui ligilon de video"
|
||||
|
||||
#: ../../include/conversation.php:964
|
||||
#: ../../include/conversation.php:972
|
||||
msgid "video link"
|
||||
msgstr "video ligilo"
|
||||
|
||||
#: ../../include/conversation.php:965
|
||||
#: ../../include/conversation.php:973
|
||||
msgid "Insert audio link"
|
||||
msgstr "Alglui ligilon de sono"
|
||||
|
||||
#: ../../include/conversation.php:966
|
||||
#: ../../include/conversation.php:974
|
||||
msgid "audio link"
|
||||
msgstr "sono ligilo"
|
||||
|
||||
#: ../../include/conversation.php:968
|
||||
#: ../../include/conversation.php:976
|
||||
msgid "set location"
|
||||
msgstr "agordi lokon"
|
||||
|
||||
#: ../../include/conversation.php:970
|
||||
#: ../../include/conversation.php:978
|
||||
msgid "clear location"
|
||||
msgstr "forviŝi lokon"
|
||||
|
||||
#: ../../include/conversation.php:977
|
||||
#: ../../include/conversation.php:985
|
||||
msgid "permissions"
|
||||
msgstr "permesoj"
|
||||
|
||||
|
|
@ -7070,34 +6915,34 @@ msgstr "Redakti profilon"
|
|||
msgid "Message"
|
||||
msgstr "Mesaĝo"
|
||||
|
||||
#: ../../boot.php:1151 ../../boot.php:1223
|
||||
#: ../../boot.php:1151 ../../boot.php:1227
|
||||
msgid "g A l F d"
|
||||
msgstr "\\j\\e \\l\\a G\\a \\h\\o\\r\\o, l F d"
|
||||
|
||||
#: ../../boot.php:1152 ../../boot.php:1224
|
||||
#: ../../boot.php:1152 ../../boot.php:1228
|
||||
msgid "F d"
|
||||
msgstr "F d"
|
||||
|
||||
#: ../../boot.php:1177
|
||||
msgid "Birthday Reminders"
|
||||
msgstr "Memorigilo pri naskiĝtagoj"
|
||||
|
||||
#: ../../boot.php:1178
|
||||
msgid "Birthdays this week:"
|
||||
msgstr "Naskiĝtagoj ĉi-semajne:"
|
||||
|
||||
#: ../../boot.php:1201 ../../boot.php:1266
|
||||
#: ../../boot.php:1197 ../../boot.php:1268
|
||||
msgid "[today]"
|
||||
msgstr "[hodiaŭ]"
|
||||
|
||||
#: ../../boot.php:1247
|
||||
#: ../../boot.php:1209
|
||||
msgid "Birthday Reminders"
|
||||
msgstr "Memorigilo pri naskiĝtagoj"
|
||||
|
||||
#: ../../boot.php:1210
|
||||
msgid "Birthdays this week:"
|
||||
msgstr "Naskiĝtagoj ĉi-semajne:"
|
||||
|
||||
#: ../../boot.php:1261
|
||||
msgid "[No description]"
|
||||
msgstr "[Neniu priskribo]"
|
||||
|
||||
#: ../../boot.php:1279
|
||||
msgid "Event Reminders"
|
||||
msgstr "Memorigiloj pri Okazoj"
|
||||
|
||||
#: ../../boot.php:1248
|
||||
#: ../../boot.php:1280
|
||||
msgid "Events this week:"
|
||||
msgstr "Okazoj ĉi-semajne:"
|
||||
|
||||
#: ../../boot.php:1260
|
||||
msgid "[No description]"
|
||||
msgstr "[Neniu priskribo]"
|
||||
|
|
|
|||
|
|
@ -301,7 +301,8 @@ $a->strings["Contact has been blocked"] = "Kontakto estas blokita.";
|
|||
$a->strings["Contact has been unblocked"] = "Kontakto estas malblokita.";
|
||||
$a->strings["Contact has been ignored"] = "Kontakto estas ignorita.";
|
||||
$a->strings["Contact has been unignored"] = "Kontakto estas malignorita.";
|
||||
$a->strings["stopped following"] = "ne plu sekvas";
|
||||
$a->strings["Contact has been archived"] = "Enarkivigis kontakton";
|
||||
$a->strings["Contact has been unarchived"] = "Elarkivigis kontakton";
|
||||
$a->strings["Contact has been removed."] = "Kontakto estas forigita.";
|
||||
$a->strings["You are mutual friends with %s"] = "Vi estas reciproka amiko de %s";
|
||||
$a->strings["You are sharing with %s"] = "Vi kunhavigas kun %s";
|
||||
|
|
@ -320,6 +321,8 @@ $a->strings["View all contacts"] = "Vidi ĉiujn kontaktojn";
|
|||
$a->strings["Unblock"] = "Malbloki";
|
||||
$a->strings["Block"] = "Bloki";
|
||||
$a->strings["Unignore"] = "Malignori";
|
||||
$a->strings["Unarchive"] = "Elarkivigi";
|
||||
$a->strings["Archive"] = "Enarkivigi";
|
||||
$a->strings["Repair"] = "Ripari";
|
||||
$a->strings["Contact Editor"] = "Kontakta redaktilo.";
|
||||
$a->strings["Profile Visibility"] = "Videbleco de profilo";
|
||||
|
|
@ -337,13 +340,15 @@ $a->strings["Update public posts"] = "Ĝisdatigi publikajn afiŝojn";
|
|||
$a->strings["Update now"] = "Ĝisdatigi nun";
|
||||
$a->strings["Currently blocked"] = "Nuntempe blokata";
|
||||
$a->strings["Currently ignored"] = "Nuntempe ignorata";
|
||||
$a->strings["Currently archived"] = "Nuntempe enarkivigita";
|
||||
$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Rispondoj/ŝataĵo al viaj publikaj afiŝoj <strong>eble</strong> plu estos videbla";
|
||||
$a->strings["Suggestions"] = "Sugestoj";
|
||||
$a->strings["All Contacts"] = "Ĉiuj Kontaktoj";
|
||||
$a->strings["Unblocked Contacts"] = "Malblokitaj Kontaktoj";
|
||||
$a->strings["Blocked Contacts"] = "Blokitaj Kontaktoj";
|
||||
$a->strings["Ignored Contacts"] = "Ignoritaj Kontaktoj";
|
||||
$a->strings["Hidden Contacts"] = "Kaŝitaj Kontaktoj";
|
||||
$a->strings["Unblocked"] = "Malblokita";
|
||||
$a->strings["Blocked"] = "Blokita";
|
||||
$a->strings["Ignored"] = "Ignorita";
|
||||
$a->strings["Archived"] = "Enarkivigita";
|
||||
$a->strings["Hidden"] = "Kaŝita";
|
||||
$a->strings["Mutual Friendship"] = "Reciproka amikeco";
|
||||
$a->strings["is a fan of yours"] = "estas admiranto de vi";
|
||||
$a->strings["you are a fan of"] = "vi estas admiranto de";
|
||||
|
|
@ -373,6 +378,7 @@ $a->strings["Connector settings"] = "Konektiloj";
|
|||
$a->strings["Plugin settings"] = "Kromprogramoj";
|
||||
$a->strings["Connected apps"] = "Konektitaj programoj";
|
||||
$a->strings["Export personal data"] = "Eksporto";
|
||||
$a->strings["Remove account"] = "Forigi konton";
|
||||
$a->strings["Settings"] = "Agordoj";
|
||||
$a->strings["Missing some important data!"] = "Mankas importantaj datumoj!";
|
||||
$a->strings["Update"] = "Ĝisdatigi";
|
||||
|
|
@ -723,6 +729,8 @@ $a->strings["Proxy user"] = "Uzantnomo por retperanto";
|
|||
$a->strings["Proxy URL"] = "URL adreso de retperanto";
|
||||
$a->strings["Network timeout"] = "Reta tempolimo";
|
||||
$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valoro en sekundoj. Uzu 0 por mallimitigi (ne rekomendata).";
|
||||
$a->strings["Delivery interval"] = "Intervalo de liverado";
|
||||
$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Malfruigi fonan liveradon dum tiom da sekundoj por malpliigi la ŝargon de la sistemo. Rekomendoj: 4-5 por komunaj serviloj, 2-3 por virtualaj privataj serviloj, 0-1 por grandaj dediĉitaj serviloj.";
|
||||
$a->strings["%s user blocked/unblocked"] = array(
|
||||
0 => "Blokis/malblokis %s uzanton",
|
||||
1 => "Blokis/malblokis %s uzantojn",
|
||||
|
|
@ -947,7 +955,7 @@ $a->strings["The given API Key seems to work correctly."] = "La API ŝlosilo ŝa
|
|||
$a->strings["The correctness of the API Key could not be detected. Somthing strange's going on."] = "Ne povis kontroli la ĝustecon de la API ŝlosilo. Ia stranga afero okazas. ";
|
||||
$a->strings["App-ID / API-Key"] = "Programo ID / API Ŝlosilo";
|
||||
$a->strings["Application secret"] = "Programo sekreto";
|
||||
$a->strings["Polling Interval (min. %1\$s minutes)"] = "Intervalo por la enketilo (poller intervalo, minimume %1\$s mintuoj) ";
|
||||
$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "Intervalo de enketo en minutoj (minimume %1\$s minutoj)";
|
||||
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "Sinkronigi komentojn (vi ricevas ĉiujn komentojn de Facebook, sed la ŝargo de la sistemo iom kreskas)";
|
||||
$a->strings["Real-Time Updates"] = "Realtempaj Ĝisdatigoj";
|
||||
$a->strings["Real-Time Updates are activated."] = "Realtempaj Ĝisdatigoj estas ŝaltita";
|
||||
|
|
@ -975,6 +983,7 @@ $a->strings["%d person doesn't like this"] = array(
|
|||
0 => "%d homo malŝatas tiun",
|
||||
1 => "%d homo malŝatas tiun",
|
||||
);
|
||||
$a->strings["Get added to this list!"] = "Iĝu membro de ĉi tiu listo!";
|
||||
$a->strings["Generate new key"] = "Generi novan ĉifroŝlosilon";
|
||||
$a->strings["Widgets key"] = "Ŝlosilo por fenestraĵoj";
|
||||
$a->strings["Widgets available"] = "Disponeblaj fenestraĵoj";
|
||||
|
|
@ -1064,12 +1073,12 @@ $a->strings["The impressum addon needs to be configured!<br />Please add at leas
|
|||
$a->strings["The page operators name."] = "La nomo de la funkciigisto de la retejo.";
|
||||
$a->strings["Site Owners Profile"] = "Profilo de la Proprietulo de la Retejo";
|
||||
$a->strings["Profile address of the operator."] = "La profilo de la funkciigisto de la retejo.";
|
||||
$a->strings["How to contact the operator via snail mail."] = "Kiel kontakti la funkciigiston de la retejo tra paperpoŝto.";
|
||||
$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "Kiel poŝte kontakti la funkciigisto de la retejo. Vi eblas uzi BBCode ĉi tie.";
|
||||
$a->strings["Notes"] = "Notoj";
|
||||
$a->strings["Additional notes that are displayed beneath the contact information."] = "Pliaj notoj kiuj estas montrigota malsupre la kontaktinformojn.";
|
||||
$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "Pli da notoj kiuj aperas sub la kontaktinformoj. Vi eblas uzi BBCode ĉi tie.";
|
||||
$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "Kiel kontakti la funkciigiston de la retejo tra retpoŝto. (montriĝos vuale) ";
|
||||
$a->strings["Footer note"] = "Paĝpiednoto";
|
||||
$a->strings["Text for the footer."] = "Teksto por la paĝpiedo.";
|
||||
$a->strings["Text for the footer. You can use BBCode here."] = "Teksto por la paĝpiedo. Vie eblas uzi BBCode ĉi tie.";
|
||||
$a->strings["Report Bug"] = "Skribi cimraporton";
|
||||
$a->strings["\"Blockem\" Settings"] = "\"Blockem\" Agordoj";
|
||||
$a->strings["Comma separated profile URLS to block"] = "Blokotaj URL adresoj, disigita per komo";
|
||||
|
|
@ -1210,6 +1219,10 @@ $a->strings["Enable Posterous Post Plugin"] = "Ŝalti la Poserous-afiŝo krompro
|
|||
$a->strings["Posterous login"] = "Posterous salutnomo";
|
||||
$a->strings["Posterous password"] = "Posterous pasvorto";
|
||||
$a->strings["Post to Posterous by default"] = "Defaŭlte afiŝi al Posterous";
|
||||
$a->strings["Theme settings"] = "Agordoj pri la etoso";
|
||||
$a->strings["Set resize level for images in posts and comments (width and height)"] = "Agordi la regrandignivelo por bildoj en afiŝoj kaj komentoj (larĝo kaj alto)";
|
||||
$a->strings["Set font-size for posts and comments"] = "Agordi la tiparan grandon por afiŝoj kaj komentoj";
|
||||
$a->strings["Color scheme"] = "Kolorskemo";
|
||||
$a->strings["Last users"] = "Ĵusaj uzantoj";
|
||||
$a->strings["Last likes"] = "Ĵusaj ŝatitaj elementoj";
|
||||
$a->strings["Last photos"] = "Ĵusaj bildoj";
|
||||
|
|
@ -1227,15 +1240,13 @@ $a->strings["Your photos"] = "Viaj bildoj";
|
|||
$a->strings["Your events"] = "Viaj okazoj";
|
||||
$a->strings["Personal notes"] = "Personaj notoj";
|
||||
$a->strings["Your personal photos"] = "Viaj personaj bildoj";
|
||||
$a->strings["Theme settings"] = "Agordoj pri la etoso";
|
||||
$a->strings["Set font-size for posts and comments"] = "Agordi la tiparan grandon por afiŝoj kaj komentoj";
|
||||
$a->strings["Set line-height for posts and comments"] = "Agordi la linigrandon por afiŝoj kaj komentoj";
|
||||
$a->strings["Set resolution for middle column"] = "Agordi la distingivon por la meza kolumno";
|
||||
$a->strings["Set color scheme"] = "Agordi Kolorskemon";
|
||||
$a->strings["Alignment"] = "Ĝisrandigo";
|
||||
$a->strings["Left"] = "Maldekstren";
|
||||
$a->strings["Center"] = "Centren";
|
||||
$a->strings["Color scheme"] = "Kolorskemo";
|
||||
$a->strings["Set colour scheme"] = "Agordi Kolorskemon";
|
||||
$a->strings["Gender:"] = "Sekso:";
|
||||
$a->strings["j F, Y"] = "j F, Y";
|
||||
$a->strings["j F"] = "j F";
|
||||
|
|
@ -1511,6 +1522,7 @@ $a->strings["Welcome "] = "Bonvenon ";
|
|||
$a->strings["Please upload a profile photo."] = "Bonvolu alŝuti profilbildon.";
|
||||
$a->strings["Welcome back "] = "Bonvenon ";
|
||||
$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."] = "La sekuriga ĵetono de la formo estis malĝusta. Tio verŝajne okazis ĉar la formo estis malfermita dum tro longa tempo (>3 horoj) antaŭ la sendado.";
|
||||
$a->strings["stopped following"] = "ne plu sekvas";
|
||||
$a->strings["View Status"] = "Vidi Staton";
|
||||
$a->strings["View Profile"] = "Vidi Profilon";
|
||||
$a->strings["View Photos"] = "Vidi Bildojn";
|
||||
|
|
@ -1531,6 +1543,14 @@ $a->strings["like"] = "ŝati";
|
|||
$a->strings["dislike"] = "malŝati";
|
||||
$a->strings["Share this"] = "Kunhavigi ĉi tiun";
|
||||
$a->strings["share"] = "kunhavigi";
|
||||
$a->strings["Bold"] = "Grasa";
|
||||
$a->strings["Italic"] = "Kursiva";
|
||||
$a->strings["Underline"] = "Substreki";
|
||||
$a->strings["Quote"] = "Citaĵo";
|
||||
$a->strings["Code"] = "Kodo";
|
||||
$a->strings["Image"] = "Bildo";
|
||||
$a->strings["Link"] = "Ligilo";
|
||||
$a->strings["Video"] = "Video";
|
||||
$a->strings["add star"] = "aldoni stelon";
|
||||
$a->strings["remove star"] = "forpreni stelon";
|
||||
$a->strings["toggle star status"] = "ŝalti/malŝalti steloŝtato";
|
||||
|
|
@ -1575,9 +1595,9 @@ $a->strings["Edit profile"] = "Redakti profilon";
|
|||
$a->strings["Message"] = "Mesaĝo";
|
||||
$a->strings["g A l F d"] = "\\j\\e \\l\\a G\\a \\h\\o\\r\\o, l F d";
|
||||
$a->strings["F d"] = "F d";
|
||||
$a->strings["[today]"] = "[hodiaŭ]";
|
||||
$a->strings["Birthday Reminders"] = "Memorigilo pri naskiĝtagoj";
|
||||
$a->strings["Birthdays this week:"] = "Naskiĝtagoj ĉi-semajne:";
|
||||
$a->strings["[today]"] = "[hodiaŭ]";
|
||||
$a->strings["[No description]"] = "[Neniu priskribo]";
|
||||
$a->strings["Event Reminders"] = "Memorigiloj pri Okazoj";
|
||||
$a->strings["Events this week:"] = "Okazoj ĉi-semajne:";
|
||||
$a->strings["[No description]"] = "[Neniu priskribo]";
|
||||
|
|
|
|||
17
view/failed_updates.tpl
Normal file
17
view/failed_updates.tpl
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<h2>$banner</h2>
|
||||
|
||||
<div id="failed_updates_desc">$desc</div>
|
||||
|
||||
{{ if $failed }}
|
||||
{{ for $failed as $f }}
|
||||
|
||||
<h4>$f</h4>
|
||||
<ul>
|
||||
<li><a href="$base/admin/dbsync/mark/$f">$mark</a></li>
|
||||
<li><a href="$base/admin/dbsync/$f">$apply</a></li>
|
||||
</ul>
|
||||
|
||||
<hr />
|
||||
{{ endfor }}
|
||||
{{ endif }}
|
||||
|
||||
|
|
@ -6,6 +6,7 @@
|
|||
<link rel="stylesheet" href="$baseurl/library/jgrowl/jquery.jgrowl.css" type="text/css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="$stylesheet" media="all" />
|
||||
<meta name="viewport" content="width=800, initial-scale=1, maximum-scale=3">
|
||||
|
||||
<link rel="shortcut icon" href="$baseurl/images/friendica-32.png" />
|
||||
<link rel="search"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue