Merge remote-tracking branch 'upstream/develop' into develop
This commit is contained in:
commit
b21703f778
11 changed files with 12693 additions and 12753 deletions
25
mod/cb.php
25
mod/cb.php
|
|
@ -1,25 +0,0 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* General purpose landing page for plugins/addons
|
||||
*/
|
||||
|
||||
use Friendica\App;
|
||||
|
||||
function cb_init(App $a) {
|
||||
call_hooks('cb_init');
|
||||
}
|
||||
|
||||
function cb_post(App $a) {
|
||||
call_hooks('cb_post', $_POST);
|
||||
}
|
||||
|
||||
function cb_afterpost(App $a) {
|
||||
call_hooks('cb_afterpost');
|
||||
}
|
||||
|
||||
function cb_content(App $a) {
|
||||
$o = '';
|
||||
call_hooks('cb_content', $o);
|
||||
return $o;
|
||||
}
|
||||
147
mod/mood.php
147
mod/mood.php
|
|
@ -1,147 +0,0 @@
|
|||
<?php
|
||||
|
||||
use Friendica\App;
|
||||
use Friendica\Core\System;
|
||||
use Friendica\Core\Worker;
|
||||
use Friendica\Database\DBM;
|
||||
|
||||
require_once('include/security.php');
|
||||
require_once('include/bbcode.php');
|
||||
require_once('include/items.php');
|
||||
|
||||
function mood_init(App $a) {
|
||||
|
||||
if (! local_user()) {
|
||||
return;
|
||||
}
|
||||
|
||||
$uid = local_user();
|
||||
$verb = notags(trim($_GET['verb']));
|
||||
|
||||
if(! $verb)
|
||||
return;
|
||||
|
||||
$verbs = get_mood_verbs();
|
||||
|
||||
if(! in_array($verb,$verbs))
|
||||
return;
|
||||
|
||||
$activity = ACTIVITY_MOOD . '#' . urlencode($verb);
|
||||
|
||||
$parent = ((x($_GET,'parent')) ? intval($_GET['parent']) : 0);
|
||||
|
||||
|
||||
logger('mood: verb ' . $verb, LOGGER_DEBUG);
|
||||
|
||||
|
||||
if($parent) {
|
||||
$r = q("select uri, private, allow_cid, allow_gid, deny_cid, deny_gid
|
||||
from item where id = %d and parent = %d and uid = %d limit 1",
|
||||
intval($parent),
|
||||
intval($parent),
|
||||
intval($uid)
|
||||
);
|
||||
if (DBM::is_result($r)) {
|
||||
$parent_uri = $r[0]['uri'];
|
||||
$private = $r[0]['private'];
|
||||
$allow_cid = $r[0]['allow_cid'];
|
||||
$allow_gid = $r[0]['allow_gid'];
|
||||
$deny_cid = $r[0]['deny_cid'];
|
||||
$deny_gid = $r[0]['deny_gid'];
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
||||
$private = 0;
|
||||
|
||||
$allow_cid = $a->user['allow_cid'];
|
||||
$allow_gid = $a->user['allow_gid'];
|
||||
$deny_cid = $a->user['deny_cid'];
|
||||
$deny_gid = $a->user['deny_gid'];
|
||||
}
|
||||
|
||||
$poster = $a->contact;
|
||||
|
||||
$uri = item_new_uri($a->get_hostname(),$uid);
|
||||
|
||||
$action = sprintf( t('%1$s is currently %2$s'), '[url=' . $poster['url'] . ']' . $poster['name'] . '[/url]' , $verbs[$verb]);
|
||||
|
||||
$arr = array();
|
||||
$arr['guid'] = get_guid(32);
|
||||
$arr['uid'] = $uid;
|
||||
$arr['uri'] = $uri;
|
||||
$arr['parent-uri'] = (($parent_uri) ? $parent_uri : $uri);
|
||||
$arr['type'] = 'activity';
|
||||
$arr['wall'] = 1;
|
||||
$arr['contact-id'] = $poster['id'];
|
||||
$arr['owner-name'] = $poster['name'];
|
||||
$arr['owner-link'] = $poster['url'];
|
||||
$arr['owner-avatar'] = $poster['thumb'];
|
||||
$arr['author-name'] = $poster['name'];
|
||||
$arr['author-link'] = $poster['url'];
|
||||
$arr['author-avatar'] = $poster['thumb'];
|
||||
$arr['title'] = '';
|
||||
$arr['allow_cid'] = $allow_cid;
|
||||
$arr['allow_gid'] = $allow_gid;
|
||||
$arr['deny_cid'] = $deny_cid;
|
||||
$arr['deny_gid'] = $deny_gid;
|
||||
$arr['last-child'] = 1;
|
||||
$arr['visible'] = 1;
|
||||
$arr['verb'] = $activity;
|
||||
$arr['private'] = $private;
|
||||
|
||||
$arr['origin'] = 1;
|
||||
$arr['body'] = $action;
|
||||
|
||||
$item_id = item_store($arr);
|
||||
if($item_id) {
|
||||
q("UPDATE `item` SET `plink` = '%s' WHERE `uid` = %d AND `id` = %d",
|
||||
dbesc(System::baseUrl() . '/display/' . $poster['nickname'] . '/' . $item_id),
|
||||
intval($uid),
|
||||
intval($item_id)
|
||||
);
|
||||
Worker::add(PRIORITY_HIGH, "Notifier", "tag", $item_id);
|
||||
}
|
||||
|
||||
|
||||
call_hooks('post_local_end', $arr);
|
||||
|
||||
Worker::add(PRIORITY_HIGH, "Notifier", "like", $post_id);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
|
||||
function mood_content(App $a) {
|
||||
|
||||
if (! local_user()) {
|
||||
notice( t('Permission denied.') . EOL);
|
||||
return;
|
||||
}
|
||||
|
||||
$parent = ((x($_GET,'parent')) ? intval($_GET['parent']) : '0');
|
||||
|
||||
|
||||
|
||||
$verbs = get_mood_verbs();
|
||||
|
||||
$shortlist = array();
|
||||
foreach($verbs as $k => $v)
|
||||
if($v !== 'NOTRANSLATION')
|
||||
$shortlist[] = array($k,$v);
|
||||
|
||||
|
||||
$tpl = get_markup_template('mood_content.tpl');
|
||||
|
||||
$o = replace_macros($tpl,array(
|
||||
'$title' => t('Mood'),
|
||||
'$desc' => t('Set your current mood and tell your friends'),
|
||||
'$verbs' => $shortlist,
|
||||
'$parent' => $parent,
|
||||
'$submit' => t('Submit'),
|
||||
));
|
||||
|
||||
return $o;
|
||||
|
||||
}
|
||||
|
|
@ -1,29 +0,0 @@
|
|||
<?php
|
||||
|
||||
use Friendica\App;
|
||||
use Friendica\Core\System;
|
||||
|
||||
require_once("include/nav.php");
|
||||
|
||||
function navigation_content(App $a) {
|
||||
|
||||
$nav_info = nav_info($a);
|
||||
|
||||
/**
|
||||
* Build the page
|
||||
*/
|
||||
|
||||
$tpl = get_markup_template('navigation.tpl');
|
||||
return replace_macros($tpl, array(
|
||||
'$baseurl' => System::baseUrl(),
|
||||
'$sitelocation' => $nav_info['sitelocation'],
|
||||
'$nav' => $nav_info['nav'],
|
||||
'$banner' => $nav_info['banner'],
|
||||
'$emptynotifications' => t('Nothing new here'),
|
||||
'$userinfo' => $nav_info['userinfo'],
|
||||
'$sel' => $a->nav_sel,
|
||||
'$apps' => $a->apps,
|
||||
'$clear_notifs' => t('Clear notifications')
|
||||
));
|
||||
|
||||
}
|
||||
|
|
@ -1,54 +0,0 @@
|
|||
<?php
|
||||
|
||||
use Friendica\App;
|
||||
use Friendica\Core\Config;
|
||||
use Friendica\Database\DBM;
|
||||
|
||||
function qsearch_init(App $a) {
|
||||
|
||||
if (! local_user()) {
|
||||
killme();
|
||||
}
|
||||
|
||||
$limit = (Config::get('system','qsearch_limit') ? intval(Config::get('system','qsearch_limit')) : 100);
|
||||
|
||||
$search = ((x($_GET,'s')) ? notags(trim(urldecode($_GET['s']))) : '');
|
||||
|
||||
if(! strlen($search))
|
||||
killme();
|
||||
|
||||
|
||||
if($search)
|
||||
$search = dbesc($search);
|
||||
|
||||
$results = array();
|
||||
|
||||
$r = q("SELECT * FROM `group` WHERE `name` REGEXP '$search' AND `deleted` = 0 AND `uid` = %d LIMIT 0, %d ",
|
||||
intval(local_user()),
|
||||
intval($limit)
|
||||
);
|
||||
|
||||
if (DBM::is_result($r)) {
|
||||
|
||||
foreach($r as $rr)
|
||||
$results[] = array( 0, (int) $rr['id'], $rr['name'], '', '');
|
||||
}
|
||||
|
||||
$sql_extra = ((strlen($search)) ? " AND (`name` REGEXP '$search' OR `nick` REGEXP '$search') " : "");
|
||||
|
||||
|
||||
$r = q("SELECT * FROM `contact` WHERE `uid` = %d $sql_extra ORDER BY `name` ASC LIMIT 0, %d ",
|
||||
intval(local_user()),
|
||||
intval($limit)
|
||||
);
|
||||
|
||||
|
||||
if (DBM::is_result($r)) {
|
||||
|
||||
foreach($r as $rr)
|
||||
$results[] = array( (int) $rr['id'], 0, $rr['name'],$rr['url'],$rr['photo']);
|
||||
}
|
||||
|
||||
echo json_encode((object) $results);
|
||||
killme();
|
||||
}
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
<?php
|
||||
|
||||
use Friendica\App;
|
||||
|
||||
function session_content(App $a) {
|
||||
|
||||
}
|
||||
|
|
@ -37,8 +37,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-07 07:03+0100\n"
|
||||
"PO-Revision-Date: 2017-11-10 06:45+0000\n"
|
||||
"POT-Creation-Date: 2017-11-27 09:19+0100\n"
|
||||
"PO-Revision-Date: 2017-12-07 06:04+0000\n"
|
||||
"Last-Translator: Tobias Diekershoff <tobias.diekershoff@gmx.net>\n"
|
||||
"Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
@ -47,303 +47,6 @@ msgstr ""
|
|||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: include/features.php:65
|
||||
msgid "General Features"
|
||||
msgstr "Allgemeine Features"
|
||||
|
||||
#: include/features.php:67
|
||||
msgid "Multiple Profiles"
|
||||
msgstr "Mehrere Profile"
|
||||
|
||||
#: include/features.php:67
|
||||
msgid "Ability to create multiple profiles"
|
||||
msgstr "Möglichkeit mehrere Profile zu erstellen"
|
||||
|
||||
#: include/features.php:68
|
||||
msgid "Photo Location"
|
||||
msgstr "Aufnahmeort"
|
||||
|
||||
#: include/features.php:68
|
||||
msgid ""
|
||||
"Photo metadata is normally stripped. This extracts the location (if present)"
|
||||
" prior to stripping metadata and links it to a map."
|
||||
msgstr "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden."
|
||||
|
||||
#: include/features.php:69
|
||||
msgid "Export Public Calendar"
|
||||
msgstr "Öffentlichen Kalender exportieren"
|
||||
|
||||
#: include/features.php:69
|
||||
msgid "Ability for visitors to download the public calendar"
|
||||
msgstr "Möglichkeit für Besucher den öffentlichen Kalender herunter zu laden"
|
||||
|
||||
#: include/features.php:74
|
||||
msgid "Post Composition Features"
|
||||
msgstr "Beitragserstellung Features"
|
||||
|
||||
#: include/features.php:75
|
||||
msgid "Post Preview"
|
||||
msgstr "Beitragsvorschau"
|
||||
|
||||
#: include/features.php:75
|
||||
msgid "Allow previewing posts and comments before publishing them"
|
||||
msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
|
||||
|
||||
#: include/features.php:76
|
||||
msgid "Auto-mention Forums"
|
||||
msgstr "Foren automatisch erwähnen"
|
||||
|
||||
#: include/features.php:76
|
||||
msgid ""
|
||||
"Add/remove mention when a forum page is selected/deselected in ACL window."
|
||||
msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde."
|
||||
|
||||
#: include/features.php:81
|
||||
msgid "Network Sidebar Widgets"
|
||||
msgstr "Widgets für Netzwerk und Seitenleiste"
|
||||
|
||||
#: include/features.php:82
|
||||
msgid "Search by Date"
|
||||
msgstr "Archiv"
|
||||
|
||||
#: include/features.php:82
|
||||
msgid "Ability to select posts by date ranges"
|
||||
msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
|
||||
|
||||
#: include/features.php:83 include/features.php:113
|
||||
msgid "List Forums"
|
||||
msgstr "Zeige Foren"
|
||||
|
||||
#: include/features.php:83
|
||||
msgid "Enable widget to display the forums your are connected with"
|
||||
msgstr "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen"
|
||||
|
||||
#: include/features.php:84
|
||||
msgid "Group Filter"
|
||||
msgstr "Gruppen Filter"
|
||||
|
||||
#: include/features.php:84
|
||||
msgid "Enable widget to display Network posts only from selected group"
|
||||
msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
|
||||
|
||||
#: include/features.php:85
|
||||
msgid "Network Filter"
|
||||
msgstr "Netzwerk Filter"
|
||||
|
||||
#: include/features.php:85
|
||||
msgid "Enable widget to display Network posts only from selected network"
|
||||
msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."
|
||||
|
||||
#: include/features.php:86 mod/search.php:37 mod/network.php:196
|
||||
msgid "Saved Searches"
|
||||
msgstr "Gespeicherte Suchen"
|
||||
|
||||
#: include/features.php:86
|
||||
msgid "Save search terms for re-use"
|
||||
msgstr "Speichere Suchanfragen für spätere Wiederholung."
|
||||
|
||||
#: include/features.php:91
|
||||
msgid "Network Tabs"
|
||||
msgstr "Netzwerk Reiter"
|
||||
|
||||
#: include/features.php:92
|
||||
msgid "Network Personal Tab"
|
||||
msgstr "Netzwerk-Reiter: Persönlich"
|
||||
|
||||
#: include/features.php:92
|
||||
msgid "Enable tab to display only Network posts that you've interacted on"
|
||||
msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast"
|
||||
|
||||
#: include/features.php:93
|
||||
msgid "Network New Tab"
|
||||
msgstr "Netzwerk-Reiter: Neue"
|
||||
|
||||
#: include/features.php:93
|
||||
msgid "Enable tab to display only new Network posts (from the last 12 hours)"
|
||||
msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"
|
||||
|
||||
#: include/features.php:94
|
||||
msgid "Network Shared Links Tab"
|
||||
msgstr "Netzwerk-Reiter: Geteilte Links"
|
||||
|
||||
#: include/features.php:94
|
||||
msgid "Enable tab to display only Network posts with links in them"
|
||||
msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"
|
||||
|
||||
#: include/features.php:99
|
||||
msgid "Post/Comment Tools"
|
||||
msgstr "Werkzeuge für Beiträge und Kommentare"
|
||||
|
||||
#: include/features.php:100
|
||||
msgid "Multiple Deletion"
|
||||
msgstr "Mehrere Beiträge löschen"
|
||||
|
||||
#: include/features.php:100
|
||||
msgid "Select and delete multiple posts/comments at once"
|
||||
msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
|
||||
|
||||
#: include/features.php:101
|
||||
msgid "Edit Sent Posts"
|
||||
msgstr "Gesendete Beiträge editieren"
|
||||
|
||||
#: include/features.php:101
|
||||
msgid "Edit and correct posts and comments after sending"
|
||||
msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren."
|
||||
|
||||
#: include/features.php:102
|
||||
msgid "Tagging"
|
||||
msgstr "Tagging"
|
||||
|
||||
#: include/features.php:102
|
||||
msgid "Ability to tag existing posts"
|
||||
msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
|
||||
|
||||
#: include/features.php:103
|
||||
msgid "Post Categories"
|
||||
msgstr "Beitragskategorien"
|
||||
|
||||
#: include/features.php:103
|
||||
msgid "Add categories to your posts"
|
||||
msgstr "Eigene Beiträge mit Kategorien versehen"
|
||||
|
||||
#: include/features.php:104 include/contact_widgets.php:167
|
||||
msgid "Saved Folders"
|
||||
msgstr "Gespeicherte Ordner"
|
||||
|
||||
#: include/features.php:104
|
||||
msgid "Ability to file posts under folders"
|
||||
msgstr "Beiträge in Ordnern speichern aktivieren"
|
||||
|
||||
#: include/features.php:105
|
||||
msgid "Dislike Posts"
|
||||
msgstr "Beiträge 'nicht mögen'"
|
||||
|
||||
#: include/features.php:105
|
||||
msgid "Ability to dislike posts/comments"
|
||||
msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
|
||||
|
||||
#: include/features.php:106
|
||||
msgid "Star Posts"
|
||||
msgstr "Beiträge Markieren"
|
||||
|
||||
#: include/features.php:106
|
||||
msgid "Ability to mark special posts with a star indicator"
|
||||
msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren"
|
||||
|
||||
#: include/features.php:107
|
||||
msgid "Mute Post Notifications"
|
||||
msgstr "Benachrichtigungen für Beiträge Stumm schalten"
|
||||
|
||||
#: include/features.php:107
|
||||
msgid "Ability to mute notifications for a thread"
|
||||
msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"
|
||||
|
||||
#: include/features.php:112
|
||||
msgid "Advanced Profile Settings"
|
||||
msgstr "Erweiterte Profil-Einstellungen"
|
||||
|
||||
#: include/features.php:113
|
||||
msgid "Show visitors public community forums at the Advanced Profile Page"
|
||||
msgstr "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite"
|
||||
|
||||
#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:697
|
||||
msgid "Miscellaneous"
|
||||
msgstr "Verschiedenes"
|
||||
|
||||
#: include/datetime.php:196 include/identity.php:655
|
||||
msgid "Birthday:"
|
||||
msgstr "Geburtstag:"
|
||||
|
||||
#: include/datetime.php:198 mod/profiles.php:720
|
||||
msgid "Age: "
|
||||
msgstr "Alter: "
|
||||
|
||||
#: include/datetime.php:200
|
||||
msgid "YYYY-MM-DD or MM-DD"
|
||||
msgstr "YYYY-MM-DD oder MM-DD"
|
||||
|
||||
#: include/datetime.php:370
|
||||
msgid "never"
|
||||
msgstr "nie"
|
||||
|
||||
#: include/datetime.php:376
|
||||
msgid "less than a second ago"
|
||||
msgstr "vor weniger als einer Sekunde"
|
||||
|
||||
#: include/datetime.php:379
|
||||
msgid "year"
|
||||
msgstr "Jahr"
|
||||
|
||||
#: include/datetime.php:379
|
||||
msgid "years"
|
||||
msgstr "Jahre"
|
||||
|
||||
#: include/datetime.php:380 include/event.php:490 mod/cal.php:282
|
||||
#: mod/events.php:393
|
||||
msgid "month"
|
||||
msgstr "Monat"
|
||||
|
||||
#: include/datetime.php:380
|
||||
msgid "months"
|
||||
msgstr "Monate"
|
||||
|
||||
#: include/datetime.php:381 include/event.php:491 mod/cal.php:283
|
||||
#: mod/events.php:394
|
||||
msgid "week"
|
||||
msgstr "Woche"
|
||||
|
||||
#: include/datetime.php:381
|
||||
msgid "weeks"
|
||||
msgstr "Wochen"
|
||||
|
||||
#: include/datetime.php:382 include/event.php:492 mod/cal.php:284
|
||||
#: mod/events.php:395
|
||||
msgid "day"
|
||||
msgstr "Tag"
|
||||
|
||||
#: include/datetime.php:382
|
||||
msgid "days"
|
||||
msgstr "Tage"
|
||||
|
||||
#: include/datetime.php:383
|
||||
msgid "hour"
|
||||
msgstr "Stunde"
|
||||
|
||||
#: include/datetime.php:383
|
||||
msgid "hours"
|
||||
msgstr "Stunden"
|
||||
|
||||
#: include/datetime.php:384
|
||||
msgid "minute"
|
||||
msgstr "Minute"
|
||||
|
||||
#: include/datetime.php:384
|
||||
msgid "minutes"
|
||||
msgstr "Minuten"
|
||||
|
||||
#: include/datetime.php:385
|
||||
msgid "second"
|
||||
msgstr "Sekunde"
|
||||
|
||||
#: include/datetime.php:385
|
||||
msgid "seconds"
|
||||
msgstr "Sekunden"
|
||||
|
||||
#: include/datetime.php:394
|
||||
#, php-format
|
||||
msgid "%1$d %2$s ago"
|
||||
msgstr "vor %1$d %2$s"
|
||||
|
||||
#: include/datetime.php:620
|
||||
#, php-format
|
||||
msgid "%s's birthday"
|
||||
msgstr "%ss Geburtstag"
|
||||
|
||||
#: include/datetime.php:621 include/dfrn.php:1361
|
||||
#, php-format
|
||||
msgid "Happy Birthday %s"
|
||||
msgstr "Herzlichen Glückwunsch %s"
|
||||
|
||||
#: include/profile_selectors.php:6
|
||||
msgid "Male"
|
||||
msgstr "Männlich"
|
||||
|
|
@ -396,7 +99,7 @@ msgstr "Nicht spezifiziert"
|
|||
msgid "Other"
|
||||
msgstr "Andere"
|
||||
|
||||
#: include/profile_selectors.php:6 include/conversation.php:1565
|
||||
#: include/profile_selectors.php:6 include/conversation.php:1645
|
||||
msgid "Undecided"
|
||||
msgid_plural "Undecided"
|
||||
msgstr[0] "Unentschieden"
|
||||
|
|
@ -490,7 +193,7 @@ msgstr "Untreu"
|
|||
msgid "Sex Addict"
|
||||
msgstr "Sexbesessen"
|
||||
|
||||
#: include/profile_selectors.php:42 include/user.php:256 include/user.php:260
|
||||
#: include/profile_selectors.php:42 include/user.php:257 include/user.php:261
|
||||
msgid "Friends"
|
||||
msgstr "Kontakte"
|
||||
|
||||
|
|
@ -578,198 +281,276 @@ msgstr "Ist mir nicht wichtig"
|
|||
msgid "Ask me"
|
||||
msgstr "Frag mich"
|
||||
|
||||
#: include/group.php:25
|
||||
msgid ""
|
||||
"A deleted group with this name was revived. Existing item permissions "
|
||||
"<strong>may</strong> apply to this group and any future members. If this is "
|
||||
"not what you intended, please create another group with a different name."
|
||||
msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
|
||||
#: include/Photo.php:998 include/Photo.php:1014 include/Photo.php:1022
|
||||
#: include/Photo.php:1047 include/message.php:140 mod/item.php:582
|
||||
#: mod/wall_upload.php:228
|
||||
msgid "Wall Photos"
|
||||
msgstr "Pinnwand-Bilder"
|
||||
|
||||
#: include/group.php:201
|
||||
msgid "Default privacy group for new contacts"
|
||||
msgstr "Voreingestellte Gruppe für neue Kontakte"
|
||||
#: include/acl_selectors.php:357
|
||||
msgid "Post to Email"
|
||||
msgstr "An E-Mail senden"
|
||||
|
||||
#: include/group.php:234
|
||||
msgid "Everybody"
|
||||
msgstr "Alle Kontakte"
|
||||
|
||||
#: include/group.php:257
|
||||
msgid "edit"
|
||||
msgstr "bearbeiten"
|
||||
|
||||
#: include/group.php:278 mod/newmember.php:39
|
||||
msgid "Groups"
|
||||
msgstr "Gruppen"
|
||||
|
||||
#: include/group.php:280
|
||||
msgid "Edit groups"
|
||||
msgstr "Gruppen bearbeiten"
|
||||
|
||||
#: include/group.php:282
|
||||
msgid "Edit group"
|
||||
msgstr "Gruppe bearbeiten"
|
||||
|
||||
#: include/group.php:283
|
||||
msgid "Create a new group"
|
||||
msgstr "Neue Gruppe erstellen"
|
||||
|
||||
#: include/group.php:284 mod/group.php:101 mod/group.php:198
|
||||
msgid "Group Name: "
|
||||
msgstr "Gruppenname:"
|
||||
|
||||
#: include/group.php:286
|
||||
msgid "Contacts not in any group"
|
||||
msgstr "Kontakte in keiner Gruppe"
|
||||
|
||||
#: include/group.php:288 mod/network.php:197
|
||||
msgid "add"
|
||||
msgstr "hinzufügen"
|
||||
|
||||
#: include/ForumManager.php:119 include/nav.php:134 include/text.php:1100
|
||||
#: view/theme/vier/theme.php:249
|
||||
msgid "Forums"
|
||||
msgstr "Foren"
|
||||
|
||||
#: include/ForumManager.php:121 view/theme/vier/theme.php:251
|
||||
msgid "External link to forum"
|
||||
msgstr "Externer Link zum Forum"
|
||||
|
||||
#: include/ForumManager.php:124 include/contact_widgets.php:272
|
||||
#: include/items.php:2413 object/Item.php:417 view/theme/vier/theme.php:254
|
||||
#: src/App.php:523
|
||||
msgid "show more"
|
||||
msgstr "mehr anzeigen"
|
||||
|
||||
#: include/NotificationsManager.php:157
|
||||
msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: include/NotificationsManager.php:164 include/nav.php:161 mod/admin.php:590
|
||||
#: view/theme/frio/theme.php:260
|
||||
msgid "Network"
|
||||
msgstr "Netzwerk"
|
||||
|
||||
#: include/NotificationsManager.php:171 mod/network.php:914
|
||||
#: mod/profiles.php:695
|
||||
msgid "Personal"
|
||||
msgstr "Persönlich"
|
||||
|
||||
#: include/NotificationsManager.php:178 include/nav.php:108
|
||||
#: include/nav.php:164
|
||||
msgid "Home"
|
||||
msgstr "Pinnwand"
|
||||
|
||||
#: include/NotificationsManager.php:185 include/nav.php:169
|
||||
msgid "Introductions"
|
||||
msgstr "Kontaktanfragen"
|
||||
|
||||
#: include/NotificationsManager.php:243 include/NotificationsManager.php:255
|
||||
#: include/acl_selectors.php:362
|
||||
#, php-format
|
||||
msgid "%s commented on %s's post"
|
||||
msgstr "%s hat %ss Beitrag kommentiert"
|
||||
msgid "Connectors disabled, since \"%s\" is enabled."
|
||||
msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."
|
||||
|
||||
#: include/NotificationsManager.php:254
|
||||
#: include/acl_selectors.php:363 mod/settings.php:1172
|
||||
msgid "Hide your profile details from unknown viewers?"
|
||||
msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
|
||||
|
||||
#: include/acl_selectors.php:369
|
||||
msgid "Visible to everybody"
|
||||
msgstr "Für jeden sichtbar"
|
||||
|
||||
#: include/acl_selectors.php:370 view/theme/vier/config.php:113
|
||||
msgid "show"
|
||||
msgstr "zeigen"
|
||||
|
||||
#: include/acl_selectors.php:371 view/theme/vier/config.php:113
|
||||
msgid "don't show"
|
||||
msgstr "nicht zeigen"
|
||||
|
||||
#: include/acl_selectors.php:377 mod/editpost.php:128
|
||||
msgid "CC: email addresses"
|
||||
msgstr "Cc: E-Mail-Addressen"
|
||||
|
||||
#: include/acl_selectors.php:378 mod/editpost.php:135
|
||||
msgid "Example: bob@example.com, mary@example.com"
|
||||
msgstr "Z.B.: bob@example.com, mary@example.com"
|
||||
|
||||
#: include/acl_selectors.php:380 mod/events.php:534 mod/photos.php:1170
|
||||
#: mod/photos.php:1552
|
||||
msgid "Permissions"
|
||||
msgstr "Berechtigungen"
|
||||
|
||||
#: include/acl_selectors.php:381
|
||||
msgid "Close"
|
||||
msgstr "Schließen"
|
||||
|
||||
#: include/api.php:1130
|
||||
#, php-format
|
||||
msgid "%s created a new post"
|
||||
msgstr "%s hat einen neuen Beitrag erstellt"
|
||||
msgid "Daily posting limit of %d posts reached. The post was rejected."
|
||||
msgstr "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
|
||||
|
||||
#: include/NotificationsManager.php:269
|
||||
#: include/api.php:1154
|
||||
#, php-format
|
||||
msgid "%s liked %s's post"
|
||||
msgstr "%s mag %ss Beitrag"
|
||||
msgid "Weekly posting limit of %d posts reached. The post was rejected."
|
||||
msgstr "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
|
||||
|
||||
#: include/NotificationsManager.php:282
|
||||
#: include/api.php:1178
|
||||
#, php-format
|
||||
msgid "%s disliked %s's post"
|
||||
msgstr "%s mag %ss Beitrag nicht"
|
||||
msgid "Monthly posting limit of %d posts reached. The post was rejected."
|
||||
msgstr "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
|
||||
|
||||
#: include/NotificationsManager.php:295
|
||||
#, php-format
|
||||
msgid "%s is attending %s's event"
|
||||
msgstr "%s nimmt an %s's Event teil"
|
||||
#: include/api.php:3823 include/user.php:303 include/user.php:311
|
||||
#: include/user.php:319 mod/photos.php:77 mod/photos.php:193
|
||||
#: mod/photos.php:780 mod/photos.php:1230 mod/photos.php:1247
|
||||
#: mod/photos.php:1809 mod/profile_photo.php:78 mod/profile_photo.php:86
|
||||
#: mod/profile_photo.php:94 mod/profile_photo.php:218
|
||||
#: mod/profile_photo.php:313 mod/profile_photo.php:323
|
||||
msgid "Profile Photos"
|
||||
msgstr "Profilbilder"
|
||||
|
||||
#: include/NotificationsManager.php:308
|
||||
#, php-format
|
||||
msgid "%s is not attending %s's event"
|
||||
msgstr "%s nimmt nicht an %s's Event teil"
|
||||
|
||||
#: include/NotificationsManager.php:321
|
||||
#, php-format
|
||||
msgid "%s may attend %s's event"
|
||||
msgstr "%s nimmt eventuell an %s's Event teil"
|
||||
|
||||
#: include/NotificationsManager.php:338
|
||||
#, php-format
|
||||
msgid "%s is now friends with %s"
|
||||
msgstr "%s ist jetzt mit %s befreundet"
|
||||
|
||||
#: include/NotificationsManager.php:776
|
||||
msgid "Friend Suggestion"
|
||||
msgstr "Kontaktvorschlag"
|
||||
|
||||
#: include/NotificationsManager.php:805
|
||||
msgid "Friend/Connect Request"
|
||||
msgstr "Kontakt-/Freundschaftsanfrage"
|
||||
|
||||
#: include/NotificationsManager.php:805
|
||||
msgid "New Follower"
|
||||
msgstr "Neuer Bewunderer"
|
||||
|
||||
#: include/auth.php:53
|
||||
#: include/auth.php:54
|
||||
msgid "Logged out."
|
||||
msgstr "Abgemeldet."
|
||||
|
||||
#: include/auth.php:124 include/auth.php:186 mod/openid.php:111
|
||||
#: include/auth.php:125 include/auth.php:187 mod/openid.php:113
|
||||
msgid "Login failed."
|
||||
msgstr "Anmeldung fehlgeschlagen."
|
||||
|
||||
#: include/auth.php:140 include/user.php:77
|
||||
#: include/auth.php:141 include/user.php:78
|
||||
msgid ""
|
||||
"We encountered a problem while logging in with the OpenID you provided. "
|
||||
"Please check the correct spelling of the ID."
|
||||
msgstr "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast."
|
||||
|
||||
#: include/auth.php:140 include/user.php:77
|
||||
#: include/auth.php:141 include/user.php:78
|
||||
msgid "The error message was:"
|
||||
msgstr "Die Fehlermeldung lautete:"
|
||||
|
||||
#: include/bb2diaspora.php:234 include/event.php:19 include/event.php:933
|
||||
#: include/bb2diaspora.php:235 include/event.php:21 include/event.php:932
|
||||
#: mod/localtime.php:14
|
||||
msgid "l F d, Y \\@ g:i A"
|
||||
msgstr "l, d. F Y\\, H:i"
|
||||
|
||||
#: include/bb2diaspora.php:240 include/event.php:36 include/event.php:53
|
||||
#: include/event.php:496 include/event.php:985
|
||||
#: include/bb2diaspora.php:241 include/event.php:38 include/event.php:55
|
||||
#: include/event.php:495 include/event.php:984
|
||||
msgid "Starts:"
|
||||
msgstr "Beginnt:"
|
||||
|
||||
#: include/bb2diaspora.php:248 include/event.php:39 include/event.php:59
|
||||
#: include/event.php:497 include/event.php:989
|
||||
#: include/bb2diaspora.php:249 include/event.php:41 include/event.php:61
|
||||
#: include/event.php:496 include/event.php:988
|
||||
msgid "Finishes:"
|
||||
msgstr "Endet:"
|
||||
|
||||
#: include/bb2diaspora.php:257 include/event.php:43 include/event.php:68
|
||||
#: include/event.php:498 include/event.php:1003 include/identity.php:340
|
||||
#: mod/notifications.php:247 mod/directory.php:133 mod/contacts.php:658
|
||||
#: mod/events.php:517
|
||||
#: include/bb2diaspora.php:258 include/event.php:45 include/event.php:70
|
||||
#: include/event.php:497 include/event.php:1002 include/identity.php:358
|
||||
#: mod/contacts.php:666 mod/directory.php:136 mod/events.php:519
|
||||
#: mod/notifications.php:248
|
||||
msgid "Location:"
|
||||
msgstr "Ort:"
|
||||
|
||||
#: include/contact_widgets.php:12
|
||||
#: include/bbcode.php:433 include/bbcode.php:1196 include/bbcode.php:1197
|
||||
msgid "Image/photo"
|
||||
msgstr "Bild/Foto"
|
||||
|
||||
#: include/bbcode.php:549
|
||||
#, php-format
|
||||
msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
|
||||
msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
|
||||
|
||||
#: include/bbcode.php:1153 include/bbcode.php:1175
|
||||
msgid "$1 wrote:"
|
||||
msgstr "$1 hat geschrieben:"
|
||||
|
||||
#: include/bbcode.php:1205 include/bbcode.php:1206
|
||||
msgid "Encrypted content"
|
||||
msgstr "Verschlüsselter Inhalt"
|
||||
|
||||
#: include/bbcode.php:1325
|
||||
msgid "Invalid source protocol"
|
||||
msgstr "Ungültiges Quell-Protokoll"
|
||||
|
||||
#: include/bbcode.php:1336
|
||||
msgid "Invalid link protocol"
|
||||
msgstr "Ungültiges Link-Protokoll"
|
||||
|
||||
#: include/contact_selectors.php:34
|
||||
msgid "Unknown | Not categorised"
|
||||
msgstr "Unbekannt | Nicht kategorisiert"
|
||||
|
||||
#: include/contact_selectors.php:35
|
||||
msgid "Block immediately"
|
||||
msgstr "Sofort blockieren"
|
||||
|
||||
#: include/contact_selectors.php:36
|
||||
msgid "Shady, spammer, self-marketer"
|
||||
msgstr "Zwielichtig, Spammer, Selbstdarsteller"
|
||||
|
||||
#: include/contact_selectors.php:37
|
||||
msgid "Known to me, but no opinion"
|
||||
msgstr "Ist mir bekannt, hab aber keine Meinung"
|
||||
|
||||
#: include/contact_selectors.php:38
|
||||
msgid "OK, probably harmless"
|
||||
msgstr "OK, wahrscheinlich harmlos"
|
||||
|
||||
#: include/contact_selectors.php:39
|
||||
msgid "Reputable, has my trust"
|
||||
msgstr "Seriös, hat mein Vertrauen"
|
||||
|
||||
#: include/contact_selectors.php:58 mod/admin.php:1097
|
||||
msgid "Frequently"
|
||||
msgstr "immer wieder"
|
||||
|
||||
#: include/contact_selectors.php:59 mod/admin.php:1098
|
||||
msgid "Hourly"
|
||||
msgstr "Stündlich"
|
||||
|
||||
#: include/contact_selectors.php:60 mod/admin.php:1099
|
||||
msgid "Twice daily"
|
||||
msgstr "Zweimal täglich"
|
||||
|
||||
#: include/contact_selectors.php:61 mod/admin.php:1100
|
||||
msgid "Daily"
|
||||
msgstr "Täglich"
|
||||
|
||||
#: include/contact_selectors.php:62
|
||||
msgid "Weekly"
|
||||
msgstr "Wöchentlich"
|
||||
|
||||
#: include/contact_selectors.php:63
|
||||
msgid "Monthly"
|
||||
msgstr "Monatlich"
|
||||
|
||||
#: include/contact_selectors.php:78 mod/dfrn_request.php:889
|
||||
msgid "Friendica"
|
||||
msgstr "Friendica"
|
||||
|
||||
#: include/contact_selectors.php:79
|
||||
msgid "OStatus"
|
||||
msgstr "OStatus"
|
||||
|
||||
#: include/contact_selectors.php:80
|
||||
msgid "RSS/Atom"
|
||||
msgstr "RSS/Atom"
|
||||
|
||||
#: include/contact_selectors.php:81 include/contact_selectors.php:88
|
||||
#: mod/admin.php:1612 mod/admin.php:1625 mod/admin.php:1638 mod/admin.php:1656
|
||||
msgid "Email"
|
||||
msgstr "E-Mail"
|
||||
|
||||
#: include/contact_selectors.php:82 mod/dfrn_request.php:891
|
||||
#: mod/settings.php:863
|
||||
msgid "Diaspora"
|
||||
msgstr "Diaspora"
|
||||
|
||||
#: include/contact_selectors.php:83
|
||||
msgid "Facebook"
|
||||
msgstr "Facebook"
|
||||
|
||||
#: include/contact_selectors.php:84
|
||||
msgid "Zot!"
|
||||
msgstr "Zott"
|
||||
|
||||
#: include/contact_selectors.php:85
|
||||
msgid "LinkedIn"
|
||||
msgstr "LinkedIn"
|
||||
|
||||
#: include/contact_selectors.php:86
|
||||
msgid "XMPP/IM"
|
||||
msgstr "XMPP/Chat"
|
||||
|
||||
#: include/contact_selectors.php:87
|
||||
msgid "MySpace"
|
||||
msgstr "MySpace"
|
||||
|
||||
#: include/contact_selectors.php:89
|
||||
msgid "Google+"
|
||||
msgstr "Google+"
|
||||
|
||||
#: include/contact_selectors.php:90
|
||||
msgid "pump.io"
|
||||
msgstr "pump.io"
|
||||
|
||||
#: include/contact_selectors.php:91
|
||||
msgid "Twitter"
|
||||
msgstr "Twitter"
|
||||
|
||||
#: include/contact_selectors.php:92
|
||||
msgid "Diaspora Connector"
|
||||
msgstr "Diaspora"
|
||||
|
||||
#: include/contact_selectors.php:93
|
||||
msgid "GNU Social Connector"
|
||||
msgstr "GNU social Connector"
|
||||
|
||||
#: include/contact_selectors.php:94
|
||||
msgid "pnut"
|
||||
msgstr "pnut"
|
||||
|
||||
#: include/contact_selectors.php:95
|
||||
msgid "App.net"
|
||||
msgstr "App.net"
|
||||
|
||||
#: include/contact_widgets.php:14
|
||||
msgid "Add New Contact"
|
||||
msgstr "Neuen Kontakt hinzufügen"
|
||||
|
||||
#: include/contact_widgets.php:13
|
||||
#: include/contact_widgets.php:15
|
||||
msgid "Enter address or web location"
|
||||
msgstr "Adresse oder Web-Link eingeben"
|
||||
|
||||
#: include/contact_widgets.php:14
|
||||
#: include/contact_widgets.php:16
|
||||
msgid "Example: bob@example.com, http://example.com/barbara"
|
||||
msgstr "Beispiel: bob@example.com, http://example.com/barbara"
|
||||
|
||||
#: include/contact_widgets.php:16 include/identity.php:230
|
||||
#: mod/allfriends.php:88 mod/match.php:93 mod/suggest.php:101
|
||||
#: mod/dirfind.php:211
|
||||
#: include/contact_widgets.php:18 include/identity.php:245
|
||||
#: mod/allfriends.php:91 mod/dirfind.php:215 mod/match.php:102
|
||||
#: mod/suggest.php:105
|
||||
msgid "Connect"
|
||||
msgstr "Verbinden"
|
||||
|
||||
|
|
@ -788,10 +569,10 @@ msgstr "Leute finden"
|
|||
msgid "Enter name or interest"
|
||||
msgstr "Name oder Interessen eingeben"
|
||||
|
||||
#: include/contact_widgets.php:39 include/Contact.php:411
|
||||
#: include/conversation.php:1035 mod/allfriends.php:72 mod/follow.php:143
|
||||
#: mod/match.php:78 mod/suggest.php:83 mod/contacts.php:590
|
||||
#: mod/dirfind.php:214
|
||||
#: include/contact_widgets.php:39 include/conversation.php:1028
|
||||
#: mod/allfriends.php:75 mod/contacts.php:597 mod/dirfind.php:218
|
||||
#: mod/follow.php:144 mod/match.php:87 mod/suggest.php:87
|
||||
#: src/Object/Contact.php:392
|
||||
msgid "Connect/Follow"
|
||||
msgstr "Verbinden/Folgen"
|
||||
|
||||
|
|
@ -799,16 +580,16 @@ msgstr "Verbinden/Folgen"
|
|||
msgid "Examples: Robert Morgenstein, Fishing"
|
||||
msgstr "Beispiel: Robert Morgenstein, Angeln"
|
||||
|
||||
#: include/contact_widgets.php:41 mod/directory.php:200 mod/contacts.php:828
|
||||
#: include/contact_widgets.php:41 mod/contacts.php:836 mod/directory.php:198
|
||||
msgid "Find"
|
||||
msgstr "Finde"
|
||||
|
||||
#: include/contact_widgets.php:42 mod/suggest.php:114
|
||||
#: view/theme/vier/theme.php:196
|
||||
#: include/contact_widgets.php:42 mod/suggest.php:118
|
||||
#: view/theme/vier/theme.php:199
|
||||
msgid "Friend Suggestions"
|
||||
msgstr "Kontaktvorschläge"
|
||||
|
||||
#: include/contact_widgets.php:43 view/theme/vier/theme.php:195
|
||||
#: include/contact_widgets.php:43 view/theme/vier/theme.php:198
|
||||
msgid "Similar Interests"
|
||||
msgstr "Ähnliche Interessen"
|
||||
|
||||
|
|
@ -816,7 +597,7 @@ msgstr "Ähnliche Interessen"
|
|||
msgid "Random Profile"
|
||||
msgstr "Zufälliges Profil"
|
||||
|
||||
#: include/contact_widgets.php:45 view/theme/vier/theme.php:197
|
||||
#: include/contact_widgets.php:45 view/theme/vier/theme.php:200
|
||||
msgid "Invite Friends"
|
||||
msgstr "Freunde einladen"
|
||||
|
||||
|
|
@ -832,6 +613,10 @@ msgstr "Netzwerke"
|
|||
msgid "All Networks"
|
||||
msgstr "Alle Netzwerke"
|
||||
|
||||
#: include/contact_widgets.php:167 include/features.php:107
|
||||
msgid "Saved Folders"
|
||||
msgstr "Gespeicherte Ordner"
|
||||
|
||||
#: include/contact_widgets.php:170 include/contact_widgets.php:205
|
||||
msgid "Everything"
|
||||
msgstr "Alles"
|
||||
|
|
@ -840,1289 +625,563 @@ msgstr "Alles"
|
|||
msgid "Categories"
|
||||
msgstr "Kategorien"
|
||||
|
||||
#: include/contact_widgets.php:267
|
||||
#: include/contact_widgets.php:265
|
||||
#, php-format
|
||||
msgid "%d contact in common"
|
||||
msgid_plural "%d contacts in common"
|
||||
msgstr[0] "%d gemeinsamer Kontakt"
|
||||
msgstr[1] "%d gemeinsame Kontakte"
|
||||
|
||||
#: include/enotify.php:28
|
||||
msgid "Friendica Notification"
|
||||
msgstr "Friendica-Benachrichtigung"
|
||||
|
||||
#: include/enotify.php:31
|
||||
msgid "Thank You,"
|
||||
msgstr "Danke,"
|
||||
|
||||
#: include/enotify.php:34
|
||||
#, php-format
|
||||
msgid "%s Administrator"
|
||||
msgstr "der Administrator von %s"
|
||||
|
||||
#: include/enotify.php:36
|
||||
#, php-format
|
||||
msgid "%1$s, %2$s Administrator"
|
||||
msgstr "%1$s, %2$s Administrator"
|
||||
|
||||
#: include/enotify.php:47 include/delivery.php:441
|
||||
msgid "noreply"
|
||||
msgstr "noreply"
|
||||
|
||||
#: include/enotify.php:81
|
||||
#, php-format
|
||||
msgid "%s <!item_type!>"
|
||||
msgstr "%s <!item_type!>"
|
||||
|
||||
#: include/enotify.php:94
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] New mail received at %s"
|
||||
msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s"
|
||||
|
||||
#: include/enotify.php:96
|
||||
#, php-format
|
||||
msgid "%1$s sent you a new private message at %2$s."
|
||||
msgstr "%1$s hat Dir eine neue private Nachricht auf %2$s geschickt."
|
||||
|
||||
#: include/enotify.php:97
|
||||
#, php-format
|
||||
msgid "%1$s sent you %2$s."
|
||||
msgstr "%1$s schickte Dir %2$s."
|
||||
|
||||
#: include/enotify.php:97
|
||||
msgid "a private message"
|
||||
msgstr "eine private Nachricht"
|
||||
|
||||
#: include/enotify.php:99
|
||||
#, php-format
|
||||
msgid "Please visit %s to view and/or reply to your private messages."
|
||||
msgstr "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten."
|
||||
|
||||
#: include/enotify.php:145
|
||||
#, php-format
|
||||
msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
|
||||
msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]"
|
||||
|
||||
#: include/enotify.php:152
|
||||
#, php-format
|
||||
msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
|
||||
msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]"
|
||||
|
||||
#: include/enotify.php:160
|
||||
#, php-format
|
||||
msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
|
||||
msgstr "%1$s kommentierte [url=%2$s]Deinen %3$s[/url]"
|
||||
|
||||
#: include/enotify.php:170
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
|
||||
msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s"
|
||||
|
||||
#: include/enotify.php:172
|
||||
#, php-format
|
||||
msgid "%s commented on an item/conversation you have been following."
|
||||
msgstr "%s hat einen Beitrag kommentiert, dem Du folgst."
|
||||
|
||||
#: include/enotify.php:175 include/enotify.php:189 include/enotify.php:203
|
||||
#: include/enotify.php:217 include/enotify.php:235 include/enotify.php:249
|
||||
#, php-format
|
||||
msgid "Please visit %s to view and/or reply to the conversation."
|
||||
msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
|
||||
|
||||
#: include/enotify.php:182
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %s posted to your profile wall"
|
||||
msgstr "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben"
|
||||
|
||||
#: include/enotify.php:184
|
||||
#, php-format
|
||||
msgid "%1$s posted to your profile wall at %2$s"
|
||||
msgstr "%1$s schrieb auf %2$s auf Deine Pinnwand"
|
||||
|
||||
#: include/enotify.php:185
|
||||
#, php-format
|
||||
msgid "%1$s posted to [url=%2$s]your wall[/url]"
|
||||
msgstr "%1$s hat etwas auf [url=%2$s]Deiner Pinnwand[/url] gepostet"
|
||||
|
||||
#: include/enotify.php:196
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %s tagged you"
|
||||
msgstr "[Friendica-Meldung] %s hat Dich erwähnt"
|
||||
|
||||
#: include/enotify.php:198
|
||||
#, php-format
|
||||
msgid "%1$s tagged you at %2$s"
|
||||
msgstr "%1$s erwähnte Dich auf %2$s"
|
||||
|
||||
#: include/enotify.php:199
|
||||
#, php-format
|
||||
msgid "%1$s [url=%2$s]tagged you[/url]."
|
||||
msgstr "%1$s [url=%2$s]erwähnte Dich[/url]."
|
||||
|
||||
#: include/enotify.php:210
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %s shared a new post"
|
||||
msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"
|
||||
|
||||
#: include/enotify.php:212
|
||||
#, php-format
|
||||
msgid "%1$s shared a new post at %2$s"
|
||||
msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt"
|
||||
|
||||
#: include/enotify.php:213
|
||||
#, php-format
|
||||
msgid "%1$s [url=%2$s]shared a post[/url]."
|
||||
msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]."
|
||||
|
||||
#: include/enotify.php:224
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %1$s poked you"
|
||||
msgstr "[Friendica-Meldung] %1$s hat Dich angestupst"
|
||||
|
||||
#: include/enotify.php:226
|
||||
#, php-format
|
||||
msgid "%1$s poked you at %2$s"
|
||||
msgstr "%1$s hat Dich auf %2$s angestupst"
|
||||
|
||||
#: include/enotify.php:227
|
||||
#, php-format
|
||||
msgid "%1$s [url=%2$s]poked you[/url]."
|
||||
msgstr "%1$s [url=%2$s]hat Dich angestupst[/url]."
|
||||
|
||||
#: include/enotify.php:242
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %s tagged your post"
|
||||
msgstr "[Friendica-Meldung] %s hat Deinen Beitrag getaggt"
|
||||
|
||||
#: include/enotify.php:244
|
||||
#, php-format
|
||||
msgid "%1$s tagged your post at %2$s"
|
||||
msgstr "%1$s erwähnte Deinen Beitrag auf %2$s"
|
||||
|
||||
#: include/enotify.php:245
|
||||
#, php-format
|
||||
msgid "%1$s tagged [url=%2$s]your post[/url]"
|
||||
msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
|
||||
|
||||
#: include/enotify.php:256
|
||||
msgid "[Friendica:Notify] Introduction received"
|
||||
msgstr "[Friendica-Meldung] Kontaktanfrage erhalten"
|
||||
|
||||
#: include/enotify.php:258
|
||||
#, php-format
|
||||
msgid "You've received an introduction from '%1$s' at %2$s"
|
||||
msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten"
|
||||
|
||||
#: include/enotify.php:259
|
||||
#, php-format
|
||||
msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
|
||||
msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten."
|
||||
|
||||
#: include/enotify.php:263 include/enotify.php:306
|
||||
#, php-format
|
||||
msgid "You may visit their profile at %s"
|
||||
msgstr "Hier kannst Du das Profil betrachten: %s"
|
||||
|
||||
#: include/enotify.php:265
|
||||
#, php-format
|
||||
msgid "Please visit %s to approve or reject the introduction."
|
||||
msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
|
||||
|
||||
#: include/enotify.php:273
|
||||
msgid "[Friendica:Notify] A new person is sharing with you"
|
||||
msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir"
|
||||
|
||||
#: include/enotify.php:275 include/enotify.php:276
|
||||
#, php-format
|
||||
msgid "%1$s is sharing with you at %2$s"
|
||||
msgstr "%1$s teilt mit Dir auf %2$s"
|
||||
|
||||
#: include/enotify.php:282
|
||||
msgid "[Friendica:Notify] You have a new follower"
|
||||
msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf "
|
||||
|
||||
#: include/enotify.php:284 include/enotify.php:285
|
||||
#, php-format
|
||||
msgid "You have a new follower at %2$s : %1$s"
|
||||
msgstr "Du hast einen neuen Kontakt auf %2$s: %1$s"
|
||||
|
||||
#: include/enotify.php:296
|
||||
msgid "[Friendica:Notify] Friend suggestion received"
|
||||
msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten"
|
||||
|
||||
#: include/enotify.php:298
|
||||
#, php-format
|
||||
msgid "You've received a friend suggestion from '%1$s' at %2$s"
|
||||
msgstr "Du hast einen Kontakt-Vorschlag von '%1$s' auf %2$s erhalten"
|
||||
|
||||
#: include/enotify.php:299
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
|
||||
msgstr "Du hast einen [url=%1$s]Kontakt-Vorschlag[/url] %2$s von %3$s erhalten."
|
||||
|
||||
#: include/enotify.php:304
|
||||
msgid "Name:"
|
||||
msgstr "Name:"
|
||||
|
||||
#: include/enotify.php:305
|
||||
msgid "Photo:"
|
||||
msgstr "Foto:"
|
||||
|
||||
#: include/enotify.php:308
|
||||
#, php-format
|
||||
msgid "Please visit %s to approve or reject the suggestion."
|
||||
msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
|
||||
|
||||
#: include/enotify.php:316 include/enotify.php:330
|
||||
msgid "[Friendica:Notify] Connection accepted"
|
||||
msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt"
|
||||
|
||||
#: include/enotify.php:318 include/enotify.php:332
|
||||
#, php-format
|
||||
msgid "'%1$s' has accepted your connection request at %2$s"
|
||||
msgstr "'%1$s' hat Deine Kontaktanfrage auf %2$s bestätigt"
|
||||
|
||||
#: include/enotify.php:319 include/enotify.php:333
|
||||
#, php-format
|
||||
msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
|
||||
msgstr "%2$s hat Deine [url=%1$s]Kontaktanfrage[/url] akzeptiert."
|
||||
|
||||
#: include/enotify.php:323
|
||||
msgid ""
|
||||
"You are now mutual friends and may exchange status updates, photos, and "
|
||||
"email without restriction."
|
||||
msgstr "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen."
|
||||
|
||||
#: include/enotify.php:325
|
||||
#, php-format
|
||||
msgid "Please visit %s if you wish to make any changes to this relationship."
|
||||
msgstr "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst."
|
||||
|
||||
#: include/enotify.php:337
|
||||
#, php-format
|
||||
msgid ""
|
||||
"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
|
||||
"communication - such as private messaging and some profile interactions. If "
|
||||
"this is a celebrity or community page, these settings were applied "
|
||||
"automatically."
|
||||
msgstr "'%1$s' hat sich entschieden Dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen."
|
||||
|
||||
#: include/enotify.php:339
|
||||
#, php-format
|
||||
msgid ""
|
||||
"'%1$s' may choose to extend this into a two-way or more permissive "
|
||||
"relationship in the future."
|
||||
msgstr "'%1$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. "
|
||||
|
||||
#: include/enotify.php:341
|
||||
#, php-format
|
||||
msgid "Please visit %s if you wish to make any changes to this relationship."
|
||||
msgstr "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst."
|
||||
|
||||
#: include/enotify.php:351
|
||||
msgid "[Friendica System:Notify] registration request"
|
||||
msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage"
|
||||
|
||||
#: include/enotify.php:353
|
||||
#, php-format
|
||||
msgid "You've received a registration request from '%1$s' at %2$s"
|
||||
msgstr "Du hast eine Registrierungsanfrage von %2$s auf '%1$s' erhalten"
|
||||
|
||||
#: include/enotify.php:354
|
||||
#, php-format
|
||||
msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
|
||||
msgstr "Du hast eine [url=%1$s]Registrierungsanfrage[/url] von %2$s erhalten."
|
||||
|
||||
#: include/enotify.php:358
|
||||
#, php-format
|
||||
msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
|
||||
msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
|
||||
|
||||
#: include/enotify.php:361
|
||||
#, php-format
|
||||
msgid "Please visit %s to approve or reject the request."
|
||||
msgstr "Bitte besuche %s um die Anfrage zu bearbeiten."
|
||||
|
||||
#: include/oembed.php:254
|
||||
msgid "Embedded content"
|
||||
msgstr "Eingebetteter Inhalt"
|
||||
|
||||
#: include/oembed.php:262
|
||||
msgid "Embedding disabled"
|
||||
msgstr "Einbettungen deaktiviert"
|
||||
|
||||
#: include/security.php:64
|
||||
msgid "Welcome "
|
||||
msgstr "Willkommen "
|
||||
|
||||
#: include/security.php:65
|
||||
msgid "Please upload a profile photo."
|
||||
msgstr "Bitte lade ein Profilbild hoch."
|
||||
|
||||
#: include/security.php:67
|
||||
msgid "Welcome back "
|
||||
msgstr "Willkommen zurück "
|
||||
|
||||
#: include/security.php:424
|
||||
msgid ""
|
||||
"The form security token was not correct. This probably happened because the "
|
||||
"form has been opened for too long (>3 hours) before submitting it."
|
||||
msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
|
||||
|
||||
#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:43
|
||||
#: mod/fbrowser.php:65 mod/photos.php:191 mod/photos.php:1109
|
||||
#: mod/photos.php:1233 mod/photos.php:1254 mod/photos.php:1816
|
||||
#: mod/photos.php:1830
|
||||
msgid "Contact Photos"
|
||||
msgstr "Kontaktbilder"
|
||||
|
||||
#: include/nav.php:38 mod/navigation.php:22
|
||||
msgid "Nothing new here"
|
||||
msgstr "Keine Neuigkeiten"
|
||||
|
||||
#: include/nav.php:42 mod/navigation.php:26
|
||||
msgid "Clear notifications"
|
||||
msgstr "Bereinige Benachrichtigungen"
|
||||
|
||||
#: include/nav.php:43 include/text.php:1090
|
||||
msgid "@name, !forum, #tags, content"
|
||||
msgstr "@name, !forum, #tags, content"
|
||||
|
||||
#: include/nav.php:81 view/theme/frio/theme.php:250 boot.php:874
|
||||
msgid "Logout"
|
||||
msgstr "Abmelden"
|
||||
|
||||
#: include/nav.php:81 view/theme/frio/theme.php:250
|
||||
msgid "End this session"
|
||||
msgstr "Diese Sitzung beenden"
|
||||
|
||||
#: include/nav.php:84 include/identity.php:785 mod/contacts.php:667
|
||||
#: mod/contacts.php:863 view/theme/frio/theme.php:253
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#: include/nav.php:84 include/nav.php:164 view/theme/frio/theme.php:253
|
||||
msgid "Your posts and conversations"
|
||||
msgstr "Deine Beiträge und Unterhaltungen"
|
||||
|
||||
#: include/nav.php:85 include/identity.php:631 include/identity.php:760
|
||||
#: include/identity.php:793 mod/newmember.php:20 mod/profperm.php:107
|
||||
#: mod/contacts.php:669 mod/contacts.php:871 view/theme/frio/theme.php:254
|
||||
msgid "Profile"
|
||||
msgstr "Profil"
|
||||
|
||||
#: include/nav.php:85 view/theme/frio/theme.php:254
|
||||
msgid "Your profile page"
|
||||
msgstr "Deine Profilseite"
|
||||
|
||||
#: include/nav.php:86 include/identity.php:801 mod/fbrowser.php:34
|
||||
#: view/theme/frio/theme.php:255
|
||||
msgid "Photos"
|
||||
msgstr "Bilder"
|
||||
|
||||
#: include/nav.php:86 view/theme/frio/theme.php:255
|
||||
msgid "Your photos"
|
||||
msgstr "Deine Fotos"
|
||||
|
||||
#: include/nav.php:87 include/identity.php:809 include/identity.php:812
|
||||
#: view/theme/frio/theme.php:256
|
||||
msgid "Videos"
|
||||
msgstr "Videos"
|
||||
|
||||
#: include/nav.php:87 view/theme/frio/theme.php:256
|
||||
msgid "Your videos"
|
||||
msgstr "Deine Videos"
|
||||
|
||||
#: include/nav.php:88 include/nav.php:152 include/identity.php:821
|
||||
#: include/identity.php:832 mod/cal.php:273 mod/events.php:383
|
||||
#: view/theme/frio/theme.php:257 view/theme/frio/theme.php:261
|
||||
msgid "Events"
|
||||
msgstr "Veranstaltungen"
|
||||
|
||||
#: include/nav.php:88 view/theme/frio/theme.php:257
|
||||
msgid "Your events"
|
||||
msgstr "Deine Ereignisse"
|
||||
|
||||
#: include/nav.php:89
|
||||
msgid "Personal notes"
|
||||
msgstr "Persönliche Notizen"
|
||||
|
||||
#: include/nav.php:89
|
||||
msgid "Your personal notes"
|
||||
msgstr "Deine persönlichen Notizen"
|
||||
|
||||
#: include/nav.php:98 mod/bookmarklet.php:15 boot.php:875
|
||||
msgid "Login"
|
||||
msgstr "Anmeldung"
|
||||
|
||||
#: include/nav.php:98
|
||||
msgid "Sign in"
|
||||
msgstr "Anmelden"
|
||||
|
||||
#: include/nav.php:108
|
||||
msgid "Home Page"
|
||||
msgstr "Homepage"
|
||||
|
||||
#: include/nav.php:112 mod/register.php:294 boot.php:851
|
||||
msgid "Register"
|
||||
msgstr "Registrieren"
|
||||
|
||||
#: include/nav.php:112
|
||||
msgid "Create an account"
|
||||
msgstr "Nutzerkonto erstellen"
|
||||
|
||||
#: include/nav.php:118 mod/help.php:51 view/theme/vier/theme.php:292
|
||||
msgid "Help"
|
||||
msgstr "Hilfe"
|
||||
|
||||
#: include/nav.php:118
|
||||
msgid "Help and documentation"
|
||||
msgstr "Hilfe und Dokumentation"
|
||||
|
||||
#: include/nav.php:122
|
||||
msgid "Apps"
|
||||
msgstr "Apps"
|
||||
|
||||
#: include/nav.php:122
|
||||
msgid "Addon applications, utilities, games"
|
||||
msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
|
||||
|
||||
#: include/nav.php:126 include/text.php:1087 mod/search.php:145
|
||||
msgid "Search"
|
||||
msgstr "Suche"
|
||||
|
||||
#: include/nav.php:126
|
||||
msgid "Search site content"
|
||||
msgstr "Inhalt der Seite durchsuchen"
|
||||
|
||||
#: include/nav.php:129 include/text.php:1095
|
||||
msgid "Full Text"
|
||||
msgstr "Volltext"
|
||||
|
||||
#: include/nav.php:130 include/text.php:1096
|
||||
msgid "Tags"
|
||||
msgstr "Tags"
|
||||
|
||||
#: include/nav.php:131 include/nav.php:195 include/identity.php:854
|
||||
#: include/identity.php:857 include/text.php:1097 mod/viewcontacts.php:124
|
||||
#: mod/contacts.php:822 mod/contacts.php:883 view/theme/frio/theme.php:264
|
||||
msgid "Contacts"
|
||||
msgstr "Kontakte"
|
||||
|
||||
#: include/nav.php:146 include/nav.php:148 mod/community.php:31
|
||||
msgid "Community"
|
||||
msgstr "Gemeinschaft"
|
||||
|
||||
#: include/nav.php:146
|
||||
msgid "Conversations on this site"
|
||||
msgstr "Unterhaltungen auf dieser Seite"
|
||||
|
||||
#: include/nav.php:148
|
||||
msgid "Conversations on the network"
|
||||
msgstr "Unterhaltungen im Netzwerk"
|
||||
|
||||
#: include/nav.php:152 include/identity.php:824 include/identity.php:835
|
||||
#: view/theme/frio/theme.php:261
|
||||
msgid "Events and Calendar"
|
||||
msgstr "Ereignisse und Kalender"
|
||||
|
||||
#: include/nav.php:155
|
||||
msgid "Directory"
|
||||
msgstr "Verzeichnis"
|
||||
|
||||
#: include/nav.php:155
|
||||
msgid "People directory"
|
||||
msgstr "Nutzerverzeichnis"
|
||||
|
||||
#: include/nav.php:157
|
||||
msgid "Information"
|
||||
msgstr "Information"
|
||||
|
||||
#: include/nav.php:157
|
||||
msgid "Information about this friendica instance"
|
||||
msgstr "Informationen zu dieser Friendica Instanz"
|
||||
|
||||
#: include/nav.php:161 view/theme/frio/theme.php:260
|
||||
msgid "Conversations from your friends"
|
||||
msgstr "Unterhaltungen Deiner Kontakte"
|
||||
|
||||
#: include/nav.php:162
|
||||
msgid "Network Reset"
|
||||
msgstr "Netzwerk zurücksetzen"
|
||||
|
||||
#: include/nav.php:162
|
||||
msgid "Load Network page with no filters"
|
||||
msgstr "Netzwerk-Seite ohne Filter laden"
|
||||
|
||||
#: include/nav.php:169
|
||||
msgid "Friend Requests"
|
||||
msgstr "Kontaktanfragen"
|
||||
|
||||
#: include/nav.php:172 mod/notifications.php:99
|
||||
msgid "Notifications"
|
||||
msgstr "Benachrichtigungen"
|
||||
|
||||
#: include/nav.php:173
|
||||
msgid "See all notifications"
|
||||
msgstr "Alle Benachrichtigungen anzeigen"
|
||||
|
||||
#: include/nav.php:174 mod/settings.php:911
|
||||
msgid "Mark as seen"
|
||||
msgstr "Als gelesen markieren"
|
||||
|
||||
#: include/nav.php:174
|
||||
msgid "Mark all system notifications seen"
|
||||
msgstr "Markiere alle Systembenachrichtigungen als gelesen"
|
||||
|
||||
#: include/nav.php:178 mod/message.php:180 view/theme/frio/theme.php:262
|
||||
msgid "Messages"
|
||||
msgstr "Nachrichten"
|
||||
|
||||
#: include/nav.php:178 view/theme/frio/theme.php:262
|
||||
msgid "Private mail"
|
||||
msgstr "Private E-Mail"
|
||||
|
||||
#: include/nav.php:179
|
||||
msgid "Inbox"
|
||||
msgstr "Eingang"
|
||||
|
||||
#: include/nav.php:180
|
||||
msgid "Outbox"
|
||||
msgstr "Ausgang"
|
||||
|
||||
#: include/nav.php:181 mod/message.php:19
|
||||
msgid "New Message"
|
||||
msgstr "Neue Nachricht"
|
||||
|
||||
#: include/nav.php:184
|
||||
msgid "Manage"
|
||||
msgstr "Verwalten"
|
||||
|
||||
#: include/nav.php:184
|
||||
msgid "Manage other pages"
|
||||
msgstr "Andere Seiten verwalten"
|
||||
|
||||
#: include/nav.php:187 mod/settings.php:81
|
||||
msgid "Delegations"
|
||||
msgstr "Delegationen"
|
||||
|
||||
#: include/nav.php:187 mod/delegate.php:130
|
||||
msgid "Delegate Page Management"
|
||||
msgstr "Delegiere das Management für die Seite"
|
||||
|
||||
#: include/nav.php:189 mod/newmember.php:15 mod/admin.php:1740
|
||||
#: mod/admin.php:2016 mod/settings.php:111 view/theme/frio/theme.php:263
|
||||
msgid "Settings"
|
||||
msgstr "Einstellungen"
|
||||
|
||||
#: include/nav.php:189 view/theme/frio/theme.php:263
|
||||
msgid "Account settings"
|
||||
msgstr "Kontoeinstellungen"
|
||||
|
||||
#: include/nav.php:192 include/identity.php:294
|
||||
msgid "Profiles"
|
||||
msgstr "Profile"
|
||||
|
||||
#: include/nav.php:192
|
||||
msgid "Manage/Edit Profiles"
|
||||
msgstr "Profile Verwalten/Editieren"
|
||||
|
||||
#: include/nav.php:195 view/theme/frio/theme.php:264
|
||||
msgid "Manage/edit friends and contacts"
|
||||
msgstr " Kontakte verwalten/editieren"
|
||||
|
||||
#: include/nav.php:200 mod/admin.php:204
|
||||
msgid "Admin"
|
||||
msgstr "Administration"
|
||||
|
||||
#: include/nav.php:200
|
||||
msgid "Site setup and configuration"
|
||||
msgstr "Einstellungen der Seite und Konfiguration"
|
||||
|
||||
#: include/nav.php:203
|
||||
msgid "Navigation"
|
||||
msgstr "Navigation"
|
||||
|
||||
#: include/nav.php:203
|
||||
msgid "Site map"
|
||||
msgstr "Sitemap"
|
||||
|
||||
#: include/Contact.php:397 include/Contact.php:410 include/Contact.php:455
|
||||
#: include/conversation.php:1022 include/conversation.php:1038
|
||||
#: mod/allfriends.php:71 mod/match.php:77 mod/suggest.php:82
|
||||
#: mod/directory.php:151 mod/dirfind.php:213
|
||||
msgid "View Profile"
|
||||
msgstr "Profil anschauen"
|
||||
|
||||
#: include/Contact.php:454 include/conversation.php:1021
|
||||
msgid "View Status"
|
||||
msgstr "Pinnwand anschauen"
|
||||
|
||||
#: include/Contact.php:456 include/conversation.php:1023
|
||||
msgid "View Photos"
|
||||
msgstr "Bilder anschauen"
|
||||
|
||||
#: include/Contact.php:457 include/conversation.php:1024
|
||||
msgid "Network Posts"
|
||||
msgstr "Netzwerkbeiträge"
|
||||
|
||||
#: include/Contact.php:458 include/conversation.php:1025
|
||||
msgid "View Contact"
|
||||
msgstr "Kontakt anzeigen"
|
||||
|
||||
#: include/Contact.php:459
|
||||
msgid "Drop Contact"
|
||||
msgstr "Kontakt löschen"
|
||||
|
||||
#: include/Contact.php:460 include/conversation.php:1026
|
||||
msgid "Send PM"
|
||||
msgstr "Private Nachricht senden"
|
||||
|
||||
#: include/Contact.php:461 include/conversation.php:1030
|
||||
msgid "Poke"
|
||||
msgstr "Anstupsen"
|
||||
|
||||
#: include/Contact.php:884
|
||||
msgid "Organisation"
|
||||
msgstr "Organisation"
|
||||
|
||||
#: include/Contact.php:887
|
||||
msgid "News"
|
||||
msgstr "Nachrichten"
|
||||
|
||||
#: include/Contact.php:890
|
||||
msgid "Forum"
|
||||
msgstr "Forum"
|
||||
|
||||
#: include/Photo.php:995 include/Photo.php:1011 include/Photo.php:1019
|
||||
#: include/Photo.php:1044 include/message.php:139 mod/item.php:470
|
||||
#: mod/wall_upload.php:227
|
||||
msgid "Wall Photos"
|
||||
msgstr "Pinnwand-Bilder"
|
||||
|
||||
#: include/acl_selectors.php:355
|
||||
msgid "Post to Email"
|
||||
msgstr "An E-Mail senden"
|
||||
|
||||
#: include/acl_selectors.php:360
|
||||
#, php-format
|
||||
msgid "Connectors disabled, since \"%s\" is enabled."
|
||||
msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."
|
||||
|
||||
#: include/acl_selectors.php:361 mod/settings.php:1175
|
||||
msgid "Hide your profile details from unknown viewers?"
|
||||
msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
|
||||
|
||||
#: include/acl_selectors.php:367
|
||||
msgid "Visible to everybody"
|
||||
msgstr "Für jeden sichtbar"
|
||||
|
||||
#: include/acl_selectors.php:368 view/theme/vier/config.php:110
|
||||
msgid "show"
|
||||
msgstr "zeigen"
|
||||
|
||||
#: include/acl_selectors.php:369 view/theme/vier/config.php:110
|
||||
msgid "don't show"
|
||||
msgstr "nicht zeigen"
|
||||
|
||||
#: include/acl_selectors.php:375 mod/editpost.php:126
|
||||
msgid "CC: email addresses"
|
||||
msgstr "Cc: E-Mail-Addressen"
|
||||
|
||||
#: include/acl_selectors.php:376 mod/editpost.php:133
|
||||
msgid "Example: bob@example.com, mary@example.com"
|
||||
msgstr "Z.B.: bob@example.com, mary@example.com"
|
||||
|
||||
#: include/acl_selectors.php:378 mod/events.php:532 mod/photos.php:1173
|
||||
#: mod/photos.php:1570
|
||||
msgid "Permissions"
|
||||
msgstr "Berechtigungen"
|
||||
|
||||
#: include/acl_selectors.php:379
|
||||
msgid "Close"
|
||||
msgstr "Schließen"
|
||||
|
||||
#: include/api.php:1104
|
||||
#, php-format
|
||||
msgid "Daily posting limit of %d posts reached. The post was rejected."
|
||||
msgstr "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
|
||||
|
||||
#: include/api.php:1125
|
||||
#, php-format
|
||||
msgid "Weekly posting limit of %d posts reached. The post was rejected."
|
||||
msgstr "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
|
||||
|
||||
#: include/api.php:1146
|
||||
#, php-format
|
||||
msgid "Monthly posting limit of %d posts reached. The post was rejected."
|
||||
msgstr "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
|
||||
|
||||
#: include/api.php:3718 include/user.php:302 include/user.php:310
|
||||
#: include/user.php:318 mod/photos.php:75 mod/photos.php:191
|
||||
#: mod/photos.php:778 mod/photos.php:1233 mod/photos.php:1254
|
||||
#: mod/photos.php:1840 mod/profile_photo.php:76 mod/profile_photo.php:84
|
||||
#: mod/profile_photo.php:92 mod/profile_photo.php:216
|
||||
#: mod/profile_photo.php:311 mod/profile_photo.php:321
|
||||
msgid "Profile Photos"
|
||||
msgstr "Profilbilder"
|
||||
|
||||
#: include/bbcode.php:429 include/bbcode.php:1192 include/bbcode.php:1193
|
||||
msgid "Image/photo"
|
||||
msgstr "Bild/Foto"
|
||||
|
||||
#: include/bbcode.php:545
|
||||
#, php-format
|
||||
msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
|
||||
msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
|
||||
|
||||
#: include/bbcode.php:1149 include/bbcode.php:1171
|
||||
msgid "$1 wrote:"
|
||||
msgstr "$1 hat geschrieben:"
|
||||
|
||||
#: include/bbcode.php:1201 include/bbcode.php:1202
|
||||
msgid "Encrypted content"
|
||||
msgstr "Verschlüsselter Inhalt"
|
||||
|
||||
#: include/bbcode.php:1321
|
||||
msgid "Invalid source protocol"
|
||||
msgstr "Ungültiges Quell-Protokoll"
|
||||
|
||||
#: include/bbcode.php:1332
|
||||
msgid "Invalid link protocol"
|
||||
msgstr "Ungültiges Link-Protokoll"
|
||||
|
||||
#: include/contact_selectors.php:32
|
||||
msgid "Unknown | Not categorised"
|
||||
msgstr "Unbekannt | Nicht kategorisiert"
|
||||
|
||||
#: include/contact_selectors.php:33
|
||||
msgid "Block immediately"
|
||||
msgstr "Sofort blockieren"
|
||||
|
||||
#: include/contact_selectors.php:34
|
||||
msgid "Shady, spammer, self-marketer"
|
||||
msgstr "Zwielichtig, Spammer, Selbstdarsteller"
|
||||
|
||||
#: include/contact_selectors.php:35
|
||||
msgid "Known to me, but no opinion"
|
||||
msgstr "Ist mir bekannt, hab aber keine Meinung"
|
||||
|
||||
#: include/contact_selectors.php:36
|
||||
msgid "OK, probably harmless"
|
||||
msgstr "OK, wahrscheinlich harmlos"
|
||||
|
||||
#: include/contact_selectors.php:37
|
||||
msgid "Reputable, has my trust"
|
||||
msgstr "Seriös, hat mein Vertrauen"
|
||||
|
||||
#: include/contact_selectors.php:56 mod/admin.php:1095
|
||||
msgid "Frequently"
|
||||
msgstr "immer wieder"
|
||||
|
||||
#: include/contact_selectors.php:57 mod/admin.php:1096
|
||||
msgid "Hourly"
|
||||
msgstr "Stündlich"
|
||||
|
||||
#: include/contact_selectors.php:58 mod/admin.php:1097
|
||||
msgid "Twice daily"
|
||||
msgstr "Zweimal täglich"
|
||||
|
||||
#: include/contact_selectors.php:59 mod/admin.php:1098
|
||||
msgid "Daily"
|
||||
msgstr "Täglich"
|
||||
|
||||
#: include/contact_selectors.php:60
|
||||
msgid "Weekly"
|
||||
msgstr "Wöchentlich"
|
||||
|
||||
#: include/contact_selectors.php:61
|
||||
msgid "Monthly"
|
||||
msgstr "Monatlich"
|
||||
|
||||
#: include/contact_selectors.php:76 mod/dfrn_request.php:887
|
||||
msgid "Friendica"
|
||||
msgstr "Friendica"
|
||||
|
||||
#: include/contact_selectors.php:77
|
||||
msgid "OStatus"
|
||||
msgstr "OStatus"
|
||||
|
||||
#: include/contact_selectors.php:78
|
||||
msgid "RSS/Atom"
|
||||
msgstr "RSS/Atom"
|
||||
|
||||
#: include/contact_selectors.php:79 include/contact_selectors.php:86
|
||||
#: mod/admin.php:1612 mod/admin.php:1625 mod/admin.php:1638 mod/admin.php:1656
|
||||
msgid "Email"
|
||||
msgstr "E-Mail"
|
||||
|
||||
#: include/contact_selectors.php:80 mod/dfrn_request.php:889
|
||||
#: mod/settings.php:858
|
||||
msgid "Diaspora"
|
||||
msgstr "Diaspora"
|
||||
|
||||
#: include/contact_selectors.php:81
|
||||
msgid "Facebook"
|
||||
msgstr "Facebook"
|
||||
|
||||
#: include/contact_selectors.php:82
|
||||
msgid "Zot!"
|
||||
msgstr "Zott"
|
||||
|
||||
#: include/contact_selectors.php:83
|
||||
msgid "LinkedIn"
|
||||
msgstr "LinkedIn"
|
||||
|
||||
#: include/contact_selectors.php:84
|
||||
msgid "XMPP/IM"
|
||||
msgstr "XMPP/Chat"
|
||||
|
||||
#: include/contact_selectors.php:85
|
||||
msgid "MySpace"
|
||||
msgstr "MySpace"
|
||||
|
||||
#: include/contact_selectors.php:87
|
||||
msgid "Google+"
|
||||
msgstr "Google+"
|
||||
|
||||
#: include/contact_selectors.php:88
|
||||
msgid "pump.io"
|
||||
msgstr "pump.io"
|
||||
|
||||
#: include/contact_selectors.php:89
|
||||
msgid "Twitter"
|
||||
msgstr "Twitter"
|
||||
|
||||
#: include/contact_selectors.php:90
|
||||
msgid "Diaspora Connector"
|
||||
msgstr "Diaspora"
|
||||
|
||||
#: include/contact_selectors.php:91
|
||||
msgid "GNU Social Connector"
|
||||
msgstr "GNU social Connector"
|
||||
|
||||
#: include/contact_selectors.php:92
|
||||
msgid "pnut"
|
||||
msgstr "pnut"
|
||||
|
||||
#: include/contact_selectors.php:93
|
||||
msgid "App.net"
|
||||
msgstr "App.net"
|
||||
|
||||
#: include/conversation.php:135 include/conversation.php:287
|
||||
#: include/like.php:185 include/text.php:1894
|
||||
#: include/contact_widgets.php:270 include/items.php:2395
|
||||
#: view/theme/vier/theme.php:254 src/App.php:523
|
||||
#: src/Content/ForumManager.php:126 src/Object/Item.php:422
|
||||
msgid "show more"
|
||||
msgstr "mehr anzeigen"
|
||||
|
||||
#: include/conversation.php:143 include/conversation.php:295
|
||||
#: include/like.php:184 include/text.php:1783
|
||||
msgid "event"
|
||||
msgstr "Event"
|
||||
|
||||
#: include/conversation.php:138 include/conversation.php:148
|
||||
#: include/conversation.php:290 include/conversation.php:299
|
||||
#: include/diaspora.php:1787 include/like.php:183 mod/subthread.php:90
|
||||
#: mod/tagger.php:65
|
||||
#: include/conversation.php:146 include/conversation.php:156
|
||||
#: include/conversation.php:298 include/conversation.php:307
|
||||
#: include/like.php:182 mod/subthread.php:91 mod/tagger.php:66
|
||||
#: src/Protocol/Diaspora.php:1893
|
||||
msgid "status"
|
||||
msgstr "Status"
|
||||
|
||||
#: include/conversation.php:143 include/conversation.php:295
|
||||
#: include/like.php:183 include/text.php:1896 mod/subthread.php:90
|
||||
#: mod/tagger.php:65
|
||||
#: include/conversation.php:151 include/conversation.php:303
|
||||
#: include/like.php:182 include/text.php:1785 mod/subthread.php:91
|
||||
#: mod/tagger.php:66
|
||||
msgid "photo"
|
||||
msgstr "Foto"
|
||||
|
||||
#: include/conversation.php:155 include/diaspora.php:1783 include/like.php:32
|
||||
#: include/conversation.php:163 include/like.php:33
|
||||
#: src/Protocol/Diaspora.php:1889
|
||||
#, php-format
|
||||
msgid "%1$s likes %2$s's %3$s"
|
||||
msgstr "%1$s mag %2$ss %3$s"
|
||||
|
||||
#: include/conversation.php:158 include/like.php:36 include/like.php:41
|
||||
#: include/conversation.php:166 include/like.php:37 include/like.php:42
|
||||
#, php-format
|
||||
msgid "%1$s doesn't like %2$s's %3$s"
|
||||
msgstr "%1$s mag %2$ss %3$s nicht"
|
||||
|
||||
#: include/conversation.php:161
|
||||
#: include/conversation.php:169
|
||||
#, php-format
|
||||
msgid "%1$s attends %2$s's %3$s"
|
||||
msgstr "%1$s nimmt an %2$ss %3$s teil."
|
||||
|
||||
#: include/conversation.php:164
|
||||
#: include/conversation.php:172
|
||||
#, php-format
|
||||
msgid "%1$s doesn't attend %2$s's %3$s"
|
||||
msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
|
||||
|
||||
#: include/conversation.php:167
|
||||
#: include/conversation.php:175
|
||||
#, php-format
|
||||
msgid "%1$s attends maybe %2$s's %3$s"
|
||||
msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
|
||||
|
||||
#: include/conversation.php:200 mod/dfrn_confirm.php:481
|
||||
#: include/conversation.php:208 mod/dfrn_confirm.php:484
|
||||
#, php-format
|
||||
msgid "%1$s is now friends with %2$s"
|
||||
msgstr "%1$s ist nun mit %2$s befreundet"
|
||||
|
||||
#: include/conversation.php:241
|
||||
#: include/conversation.php:249
|
||||
#, php-format
|
||||
msgid "%1$s poked %2$s"
|
||||
msgstr "%1$s stupste %2$s"
|
||||
|
||||
#: include/conversation.php:262 mod/mood.php:66
|
||||
#: include/conversation.php:270 mod/mood.php:67
|
||||
#, php-format
|
||||
msgid "%1$s is currently %2$s"
|
||||
msgstr "%1$s ist momentan %2$s"
|
||||
|
||||
#: include/conversation.php:309 mod/tagger.php:98
|
||||
#: include/conversation.php:317 mod/tagger.php:99
|
||||
#, php-format
|
||||
msgid "%1$s tagged %2$s's %3$s with %4$s"
|
||||
msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt"
|
||||
|
||||
#: include/conversation.php:336
|
||||
#: include/conversation.php:344
|
||||
msgid "post/item"
|
||||
msgstr "Nachricht/Beitrag"
|
||||
|
||||
#: include/conversation.php:337
|
||||
#: include/conversation.php:345
|
||||
#, php-format
|
||||
msgid "%1$s marked %2$s's %3$s as favorite"
|
||||
msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
|
||||
|
||||
#: include/conversation.php:623 mod/photos.php:1639 mod/profiles.php:340
|
||||
#: include/conversation.php:630 mod/photos.php:1621 mod/profiles.php:344
|
||||
msgid "Likes"
|
||||
msgstr "Likes"
|
||||
|
||||
#: include/conversation.php:623 mod/photos.php:1639 mod/profiles.php:344
|
||||
#: include/conversation.php:630 mod/photos.php:1621 mod/profiles.php:348
|
||||
msgid "Dislikes"
|
||||
msgstr "Dislikes"
|
||||
|
||||
#: include/conversation.php:624 include/conversation.php:1559
|
||||
#: mod/photos.php:1640
|
||||
#: include/conversation.php:631 include/conversation.php:1639
|
||||
#: mod/photos.php:1622
|
||||
msgid "Attending"
|
||||
msgid_plural "Attending"
|
||||
msgstr[0] "Teilnehmend"
|
||||
msgstr[1] "Teilnehmend"
|
||||
|
||||
#: include/conversation.php:624 mod/photos.php:1640
|
||||
#: include/conversation.php:631 mod/photos.php:1622
|
||||
msgid "Not attending"
|
||||
msgstr "Nicht teilnehmend"
|
||||
|
||||
#: include/conversation.php:624 mod/photos.php:1640
|
||||
#: include/conversation.php:631 mod/photos.php:1622
|
||||
msgid "Might attend"
|
||||
msgstr "Eventuell teilnehmend"
|
||||
|
||||
#: include/conversation.php:761 mod/photos.php:1705 object/Item.php:147
|
||||
#: include/conversation.php:768 mod/photos.php:1687 src/Object/Item.php:164
|
||||
msgid "Select"
|
||||
msgstr "Auswählen"
|
||||
|
||||
#: include/conversation.php:762 mod/admin.php:1630 mod/contacts.php:838
|
||||
#: mod/contacts.php:1037 mod/photos.php:1706 mod/settings.php:754
|
||||
#: object/Item.php:148
|
||||
#: include/conversation.php:769 mod/admin.php:1630 mod/contacts.php:846
|
||||
#: mod/contacts.php:1045 mod/photos.php:1688 mod/settings.php:759
|
||||
#: src/Object/Item.php:165
|
||||
msgid "Delete"
|
||||
msgstr "Löschen"
|
||||
|
||||
#: include/conversation.php:806 object/Item.php:350 object/Item.php:351
|
||||
#: include/conversation.php:802 src/Object/Item.php:355
|
||||
#: src/Object/Item.php:356
|
||||
#, php-format
|
||||
msgid "View %s's profile @ %s"
|
||||
msgstr "Das Profil von %s auf %s betrachten."
|
||||
|
||||
#: include/conversation.php:818 object/Item.php:338
|
||||
#: include/conversation.php:814 src/Object/Item.php:343
|
||||
msgid "Categories:"
|
||||
msgstr "Kategorien:"
|
||||
|
||||
#: include/conversation.php:819 object/Item.php:339
|
||||
#: include/conversation.php:815 src/Object/Item.php:344
|
||||
msgid "Filed under:"
|
||||
msgstr "Abgelegt unter:"
|
||||
|
||||
#: include/conversation.php:826 object/Item.php:364
|
||||
#: include/conversation.php:822 src/Object/Item.php:369
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr "%s von %s"
|
||||
|
||||
#: include/conversation.php:842
|
||||
#: include/conversation.php:838
|
||||
msgid "View in context"
|
||||
msgstr "Im Zusammenhang betrachten"
|
||||
|
||||
#: include/conversation.php:844 include/conversation.php:1316
|
||||
#: mod/editpost.php:117 mod/message.php:337 mod/message.php:522
|
||||
#: mod/wallmessage.php:143 mod/photos.php:1604 object/Item.php:389
|
||||
#: include/conversation.php:840 include/conversation.php:1309
|
||||
#: mod/editpost.php:119 mod/message.php:339 mod/message.php:513
|
||||
#: mod/photos.php:1586 mod/wallmessage.php:144 src/Object/Item.php:394
|
||||
msgid "Please wait"
|
||||
msgstr "Bitte warten"
|
||||
|
||||
#: include/conversation.php:921
|
||||
#: include/conversation.php:914
|
||||
msgid "remove"
|
||||
msgstr "löschen"
|
||||
|
||||
#: include/conversation.php:925
|
||||
#: include/conversation.php:918
|
||||
msgid "Delete Selected Items"
|
||||
msgstr "Lösche die markierten Beiträge"
|
||||
|
||||
#: include/conversation.php:1020 view/theme/frio/theme.php:347
|
||||
#: include/conversation.php:1013 view/theme/frio/theme.php:350
|
||||
msgid "Follow Thread"
|
||||
msgstr "Folge der Unterhaltung"
|
||||
|
||||
#: include/conversation.php:1157
|
||||
#: include/conversation.php:1014 src/Object/Contact.php:435
|
||||
msgid "View Status"
|
||||
msgstr "Pinnwand anschauen"
|
||||
|
||||
#: include/conversation.php:1015 include/conversation.php:1031
|
||||
#: mod/allfriends.php:74 mod/directory.php:149 mod/dirfind.php:217
|
||||
#: mod/match.php:86 mod/suggest.php:86 src/Object/Contact.php:379
|
||||
#: src/Object/Contact.php:391 src/Object/Contact.php:436
|
||||
msgid "View Profile"
|
||||
msgstr "Profil anschauen"
|
||||
|
||||
#: include/conversation.php:1016 src/Object/Contact.php:437
|
||||
msgid "View Photos"
|
||||
msgstr "Bilder anschauen"
|
||||
|
||||
#: include/conversation.php:1017 src/Object/Contact.php:438
|
||||
msgid "Network Posts"
|
||||
msgstr "Netzwerkbeiträge"
|
||||
|
||||
#: include/conversation.php:1018 src/Object/Contact.php:439
|
||||
msgid "View Contact"
|
||||
msgstr "Kontakt anzeigen"
|
||||
|
||||
#: include/conversation.php:1019 src/Object/Contact.php:441
|
||||
msgid "Send PM"
|
||||
msgstr "Private Nachricht senden"
|
||||
|
||||
#: include/conversation.php:1023 src/Object/Contact.php:442
|
||||
msgid "Poke"
|
||||
msgstr "Anstupsen"
|
||||
|
||||
#: include/conversation.php:1150
|
||||
#, php-format
|
||||
msgid "%s likes this."
|
||||
msgstr "%s mag das."
|
||||
|
||||
#: include/conversation.php:1160
|
||||
#: include/conversation.php:1153
|
||||
#, php-format
|
||||
msgid "%s doesn't like this."
|
||||
msgstr "%s mag das nicht."
|
||||
|
||||
#: include/conversation.php:1163
|
||||
#: include/conversation.php:1156
|
||||
#, php-format
|
||||
msgid "%s attends."
|
||||
msgstr "%s nimmt teil."
|
||||
|
||||
#: include/conversation.php:1166
|
||||
#: include/conversation.php:1159
|
||||
#, php-format
|
||||
msgid "%s doesn't attend."
|
||||
msgstr "%s nimmt nicht teil."
|
||||
|
||||
#: include/conversation.php:1169
|
||||
#: include/conversation.php:1162
|
||||
#, php-format
|
||||
msgid "%s attends maybe."
|
||||
msgstr "%s nimmt eventuell teil."
|
||||
|
||||
#: include/conversation.php:1180
|
||||
#: include/conversation.php:1173
|
||||
msgid "and"
|
||||
msgstr "und"
|
||||
|
||||
#: include/conversation.php:1186
|
||||
#: include/conversation.php:1179
|
||||
#, php-format
|
||||
msgid ", and %d other people"
|
||||
msgstr " und %d andere"
|
||||
|
||||
#: include/conversation.php:1195
|
||||
#: include/conversation.php:1188
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> like this"
|
||||
msgstr "<span %1$s>%2$d Personen</span> mögen das"
|
||||
|
||||
#: include/conversation.php:1196
|
||||
#: include/conversation.php:1189
|
||||
#, php-format
|
||||
msgid "%s like this."
|
||||
msgstr "%s mögen das."
|
||||
|
||||
#: include/conversation.php:1199
|
||||
#: include/conversation.php:1192
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> don't like this"
|
||||
msgstr "<span %1$s>%2$d Personen</span> mögen das nicht"
|
||||
|
||||
#: include/conversation.php:1200
|
||||
#: include/conversation.php:1193
|
||||
#, php-format
|
||||
msgid "%s don't like this."
|
||||
msgstr "%s mögen dies nicht."
|
||||
|
||||
#: include/conversation.php:1203
|
||||
#: include/conversation.php:1196
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> attend"
|
||||
msgstr "<span %1$s>%2$d Personen</span> nehmen teil"
|
||||
|
||||
#: include/conversation.php:1204
|
||||
#: include/conversation.php:1197
|
||||
#, php-format
|
||||
msgid "%s attend."
|
||||
msgstr "%s nehmen teil."
|
||||
|
||||
#: include/conversation.php:1207
|
||||
#: include/conversation.php:1200
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> don't attend"
|
||||
msgstr "<span %1$s>%2$d Personen</span> nehmen nicht teil"
|
||||
|
||||
#: include/conversation.php:1208
|
||||
#: include/conversation.php:1201
|
||||
#, php-format
|
||||
msgid "%s don't attend."
|
||||
msgstr "%s nehmen nicht teil."
|
||||
|
||||
#: include/conversation.php:1211
|
||||
#: include/conversation.php:1204
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> attend maybe"
|
||||
msgstr "<span %1$s>%2$d Personen</span> nehmen eventuell teil"
|
||||
|
||||
#: include/conversation.php:1212
|
||||
#: include/conversation.php:1205
|
||||
#, php-format
|
||||
msgid "%s anttend maybe."
|
||||
msgstr "%s nehmen vielleicht teil."
|
||||
|
||||
#: include/conversation.php:1241 include/conversation.php:1257
|
||||
#: include/conversation.php:1234 include/conversation.php:1250
|
||||
msgid "Visible to <strong>everybody</strong>"
|
||||
msgstr "Für <strong>jedermann</strong> sichtbar"
|
||||
|
||||
#: include/conversation.php:1242 include/conversation.php:1258
|
||||
#: mod/message.php:271 mod/message.php:278 mod/message.php:418
|
||||
#: mod/message.php:425 mod/wallmessage.php:117 mod/wallmessage.php:124
|
||||
#: include/conversation.php:1235 include/conversation.php:1251
|
||||
#: mod/message.php:273 mod/message.php:280 mod/message.php:420
|
||||
#: mod/message.php:427 mod/wallmessage.php:118 mod/wallmessage.php:125
|
||||
msgid "Please enter a link URL:"
|
||||
msgstr "Bitte gib die URL des Links ein:"
|
||||
|
||||
#: include/conversation.php:1243 include/conversation.php:1259
|
||||
#: include/conversation.php:1236 include/conversation.php:1252
|
||||
msgid "Please enter a video link/URL:"
|
||||
msgstr "Bitte Link/URL zum Video einfügen:"
|
||||
|
||||
#: include/conversation.php:1244 include/conversation.php:1260
|
||||
#: include/conversation.php:1237 include/conversation.php:1253
|
||||
msgid "Please enter an audio link/URL:"
|
||||
msgstr "Bitte Link/URL zum Audio einfügen:"
|
||||
|
||||
#: include/conversation.php:1245 include/conversation.php:1261
|
||||
#: include/conversation.php:1238 include/conversation.php:1254
|
||||
msgid "Tag term:"
|
||||
msgstr "Tag:"
|
||||
|
||||
#: include/conversation.php:1246 include/conversation.php:1262
|
||||
#: mod/filer.php:31
|
||||
#: include/conversation.php:1239 include/conversation.php:1255
|
||||
#: mod/filer.php:32
|
||||
msgid "Save to Folder:"
|
||||
msgstr "In diesem Ordner speichern:"
|
||||
|
||||
#: include/conversation.php:1247 include/conversation.php:1263
|
||||
#: include/conversation.php:1240 include/conversation.php:1256
|
||||
msgid "Where are you right now?"
|
||||
msgstr "Wo hältst Du Dich jetzt gerade auf?"
|
||||
|
||||
#: include/conversation.php:1248
|
||||
#: include/conversation.php:1241
|
||||
msgid "Delete item(s)?"
|
||||
msgstr "Einträge löschen?"
|
||||
|
||||
#: include/conversation.php:1297
|
||||
#: include/conversation.php:1290
|
||||
msgid "Share"
|
||||
msgstr "Teilen"
|
||||
|
||||
#: include/conversation.php:1298 mod/editpost.php:103 mod/message.php:335
|
||||
#: mod/message.php:519 mod/wallmessage.php:141
|
||||
#: include/conversation.php:1291 mod/editpost.php:105 mod/message.php:337
|
||||
#: mod/message.php:510 mod/wallmessage.php:142
|
||||
msgid "Upload photo"
|
||||
msgstr "Foto hochladen"
|
||||
|
||||
#: include/conversation.php:1299 mod/editpost.php:104
|
||||
#: include/conversation.php:1292 mod/editpost.php:106
|
||||
msgid "upload photo"
|
||||
msgstr "Bild hochladen"
|
||||
|
||||
#: include/conversation.php:1300 mod/editpost.php:105
|
||||
#: include/conversation.php:1293 mod/editpost.php:107
|
||||
msgid "Attach file"
|
||||
msgstr "Datei anhängen"
|
||||
|
||||
#: include/conversation.php:1301 mod/editpost.php:106
|
||||
#: include/conversation.php:1294 mod/editpost.php:108
|
||||
msgid "attach file"
|
||||
msgstr "Datei anhängen"
|
||||
|
||||
#: include/conversation.php:1302 mod/editpost.php:107 mod/message.php:336
|
||||
#: mod/message.php:520 mod/wallmessage.php:142
|
||||
#: include/conversation.php:1295 mod/editpost.php:109 mod/message.php:338
|
||||
#: mod/message.php:511 mod/wallmessage.php:143
|
||||
msgid "Insert web link"
|
||||
msgstr "Einen Link einfügen"
|
||||
|
||||
#: include/conversation.php:1303 mod/editpost.php:108
|
||||
#: include/conversation.php:1296 mod/editpost.php:110
|
||||
msgid "web link"
|
||||
msgstr "Weblink"
|
||||
|
||||
#: include/conversation.php:1304 mod/editpost.php:109
|
||||
#: include/conversation.php:1297 mod/editpost.php:111
|
||||
msgid "Insert video link"
|
||||
msgstr "Video-Adresse einfügen"
|
||||
|
||||
#: include/conversation.php:1305 mod/editpost.php:110
|
||||
#: include/conversation.php:1298 mod/editpost.php:112
|
||||
msgid "video link"
|
||||
msgstr "Video-Link"
|
||||
|
||||
#: include/conversation.php:1306 mod/editpost.php:111
|
||||
#: include/conversation.php:1299 mod/editpost.php:113
|
||||
msgid "Insert audio link"
|
||||
msgstr "Audio-Adresse einfügen"
|
||||
|
||||
#: include/conversation.php:1307 mod/editpost.php:112
|
||||
#: include/conversation.php:1300 mod/editpost.php:114
|
||||
msgid "audio link"
|
||||
msgstr "Audio-Link"
|
||||
|
||||
#: include/conversation.php:1308 mod/editpost.php:113
|
||||
#: include/conversation.php:1301 mod/editpost.php:115
|
||||
msgid "Set your location"
|
||||
msgstr "Deinen Standort festlegen"
|
||||
|
||||
#: include/conversation.php:1309 mod/editpost.php:114
|
||||
#: include/conversation.php:1302 mod/editpost.php:116
|
||||
msgid "set location"
|
||||
msgstr "Ort setzen"
|
||||
|
||||
#: include/conversation.php:1310 mod/editpost.php:115
|
||||
#: include/conversation.php:1303 mod/editpost.php:117
|
||||
msgid "Clear browser location"
|
||||
msgstr "Browser-Standort leeren"
|
||||
|
||||
#: include/conversation.php:1311 mod/editpost.php:116
|
||||
#: include/conversation.php:1304 mod/editpost.php:118
|
||||
msgid "clear location"
|
||||
msgstr "Ort löschen"
|
||||
|
||||
#: include/conversation.php:1313 mod/editpost.php:130
|
||||
#: include/conversation.php:1306 mod/editpost.php:132
|
||||
msgid "Set title"
|
||||
msgstr "Titel setzen"
|
||||
|
||||
#: include/conversation.php:1315 mod/editpost.php:132
|
||||
#: include/conversation.php:1308 mod/editpost.php:134
|
||||
msgid "Categories (comma-separated list)"
|
||||
msgstr "Kategorien (kommasepariert)"
|
||||
|
||||
#: include/conversation.php:1317 mod/editpost.php:118
|
||||
#: include/conversation.php:1310 mod/editpost.php:120
|
||||
msgid "Permission settings"
|
||||
msgstr "Berechtigungseinstellungen"
|
||||
|
||||
#: include/conversation.php:1318 mod/editpost.php:147
|
||||
#: include/conversation.php:1311 mod/editpost.php:149
|
||||
msgid "permissions"
|
||||
msgstr "Zugriffsrechte"
|
||||
|
||||
#: include/conversation.php:1326 mod/editpost.php:127
|
||||
#: include/conversation.php:1319 mod/editpost.php:129
|
||||
msgid "Public post"
|
||||
msgstr "Öffentlicher Beitrag"
|
||||
|
||||
#: include/conversation.php:1331 mod/editpost.php:138 mod/events.php:527
|
||||
#: mod/photos.php:1624 mod/photos.php:1666 mod/photos.php:1746
|
||||
#: object/Item.php:711
|
||||
#: include/conversation.php:1324 mod/editpost.php:140 mod/events.php:529
|
||||
#: mod/photos.php:1606 mod/photos.php:1648 mod/photos.php:1722
|
||||
#: src/Object/Item.php:796
|
||||
msgid "Preview"
|
||||
msgstr "Vorschau"
|
||||
|
||||
#: include/conversation.php:1335 include/items.php:2154
|
||||
#: mod/dfrn_request.php:895 mod/editpost.php:141 mod/follow.php:161
|
||||
#: mod/message.php:210 mod/tagrm.php:14 mod/tagrm.php:99 mod/suggest.php:35
|
||||
#: mod/fbrowser.php:104 mod/fbrowser.php:139 mod/unfollow.php:117
|
||||
#: mod/contacts.php:469 mod/photos.php:249 mod/photos.php:341
|
||||
#: mod/settings.php:692 mod/settings.php:718 mod/videos.php:136
|
||||
#: include/conversation.php:1328 include/items.php:2148 mod/contacts.php:470
|
||||
#: mod/dfrn_request.php:897 mod/editpost.php:143 mod/fbrowser.php:98
|
||||
#: mod/fbrowser.php:128 mod/follow.php:162 mod/message.php:212
|
||||
#: mod/photos.php:251 mod/photos.php:343 mod/settings.php:697
|
||||
#: mod/settings.php:723 mod/suggest.php:39 mod/tagrm.php:15 mod/tagrm.php:100
|
||||
#: mod/unfollow.php:116 mod/videos.php:139
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
#: include/conversation.php:1341
|
||||
#: include/conversation.php:1334
|
||||
msgid "Post to Groups"
|
||||
msgstr "Poste an Gruppe"
|
||||
|
||||
#: include/conversation.php:1342
|
||||
#: include/conversation.php:1335
|
||||
msgid "Post to Contacts"
|
||||
msgstr "Poste an Kontakte"
|
||||
|
||||
#: include/conversation.php:1343
|
||||
#: include/conversation.php:1336
|
||||
msgid "Private post"
|
||||
msgstr "Privater Beitrag"
|
||||
|
||||
#: include/conversation.php:1348 include/identity.php:268 mod/editpost.php:145
|
||||
#: include/conversation.php:1341 include/identity.php:283 mod/editpost.php:147
|
||||
msgid "Message"
|
||||
msgstr "Nachricht"
|
||||
|
||||
#: include/conversation.php:1349 mod/editpost.php:146
|
||||
#: include/conversation.php:1342 mod/editpost.php:148
|
||||
msgid "Browser"
|
||||
msgstr "Browser"
|
||||
|
||||
#: include/conversation.php:1531
|
||||
#: include/conversation.php:1611
|
||||
msgid "View all"
|
||||
msgstr "Zeige alle"
|
||||
|
||||
#: include/conversation.php:1553
|
||||
#: include/conversation.php:1633
|
||||
msgid "Like"
|
||||
msgid_plural "Likes"
|
||||
msgstr[0] "mag ich"
|
||||
msgstr[1] "Mag ich"
|
||||
|
||||
#: include/conversation.php:1556
|
||||
#: include/conversation.php:1636
|
||||
msgid "Dislike"
|
||||
msgid_plural "Dislikes"
|
||||
msgstr[0] "mag ich nicht"
|
||||
msgstr[1] "Mag ich nicht"
|
||||
|
||||
#: include/conversation.php:1562
|
||||
#: include/conversation.php:1642
|
||||
msgid "Not Attending"
|
||||
msgid_plural "Not Attending"
|
||||
msgstr[0] "Nicht teilnehmend "
|
||||
msgstr[1] "Nicht teilnehmend"
|
||||
|
||||
#: include/datetime.php:68 include/datetime.php:70 mod/profiles.php:701
|
||||
msgid "Miscellaneous"
|
||||
msgstr "Verschiedenes"
|
||||
|
||||
#: include/datetime.php:198 include/identity.php:698
|
||||
msgid "Birthday:"
|
||||
msgstr "Geburtstag:"
|
||||
|
||||
#: include/datetime.php:200 mod/profiles.php:724
|
||||
msgid "Age: "
|
||||
msgstr "Alter: "
|
||||
|
||||
#: include/datetime.php:202
|
||||
msgid "YYYY-MM-DD or MM-DD"
|
||||
msgstr "YYYY-MM-DD oder MM-DD"
|
||||
|
||||
#: include/datetime.php:369
|
||||
msgid "never"
|
||||
msgstr "nie"
|
||||
|
||||
#: include/datetime.php:375
|
||||
msgid "less than a second ago"
|
||||
msgstr "vor weniger als einer Sekunde"
|
||||
|
||||
#: include/datetime.php:378
|
||||
msgid "year"
|
||||
msgstr "Jahr"
|
||||
|
||||
#: include/datetime.php:378
|
||||
msgid "years"
|
||||
msgstr "Jahre"
|
||||
|
||||
#: include/datetime.php:379 include/event.php:489 mod/cal.php:285
|
||||
#: mod/events.php:395
|
||||
msgid "month"
|
||||
msgstr "Monat"
|
||||
|
||||
#: include/datetime.php:379
|
||||
msgid "months"
|
||||
msgstr "Monate"
|
||||
|
||||
#: include/datetime.php:380 include/event.php:490 mod/cal.php:286
|
||||
#: mod/events.php:396
|
||||
msgid "week"
|
||||
msgstr "Woche"
|
||||
|
||||
#: include/datetime.php:380
|
||||
msgid "weeks"
|
||||
msgstr "Wochen"
|
||||
|
||||
#: include/datetime.php:381 include/event.php:491 mod/cal.php:287
|
||||
#: mod/events.php:397
|
||||
msgid "day"
|
||||
msgstr "Tag"
|
||||
|
||||
#: include/datetime.php:381
|
||||
msgid "days"
|
||||
msgstr "Tage"
|
||||
|
||||
#: include/datetime.php:382
|
||||
msgid "hour"
|
||||
msgstr "Stunde"
|
||||
|
||||
#: include/datetime.php:382
|
||||
msgid "hours"
|
||||
msgstr "Stunden"
|
||||
|
||||
#: include/datetime.php:383
|
||||
msgid "minute"
|
||||
msgstr "Minute"
|
||||
|
||||
#: include/datetime.php:383
|
||||
msgid "minutes"
|
||||
msgstr "Minuten"
|
||||
|
||||
#: include/datetime.php:384
|
||||
msgid "second"
|
||||
msgstr "Sekunde"
|
||||
|
||||
#: include/datetime.php:384
|
||||
msgid "seconds"
|
||||
msgstr "Sekunden"
|
||||
|
||||
#: include/datetime.php:393
|
||||
#, php-format
|
||||
msgid "%1$d %2$s ago"
|
||||
msgstr "vor %1$d %2$s"
|
||||
|
||||
#: include/datetime.php:619
|
||||
#, php-format
|
||||
msgid "%s's birthday"
|
||||
msgstr "%ss Geburtstag"
|
||||
|
||||
#: include/datetime.php:620 src/Protocol/DFRN.php:1417
|
||||
#, php-format
|
||||
msgid "Happy Birthday %s"
|
||||
msgstr "Herzlichen Glückwunsch %s"
|
||||
|
||||
#: include/dba.php:57
|
||||
#, php-format
|
||||
msgid "Cannot locate DNS info for database server '%s'"
|
||||
msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
|
||||
|
||||
#: include/dbstructure.php:24
|
||||
#: include/dbstructure.php:25
|
||||
msgid "There are no tables on MyISAM."
|
||||
msgstr "Es gibt keine MyISAM Tabellen."
|
||||
|
||||
#: include/dbstructure.php:65
|
||||
#: include/dbstructure.php:66
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
|
|
@ -2132,14 +1191,14 @@ msgid ""
|
|||
"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
|
||||
msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."
|
||||
|
||||
#: include/dbstructure.php:70
|
||||
#: include/dbstructure.php:71
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The error message is\n"
|
||||
"[pre]%s[/pre]"
|
||||
msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
|
||||
|
||||
#: include/dbstructure.php:192
|
||||
#: include/dbstructure.php:193
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
|
|
@ -2147,855 +1206,1690 @@ msgid ""
|
|||
"%s\n"
|
||||
msgstr "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n"
|
||||
|
||||
#: include/dbstructure.php:195
|
||||
#: include/dbstructure.php:196
|
||||
msgid "Errors encountered performing database changes: "
|
||||
msgstr "Fehler beim Ändern der Datenbank aufgetreten"
|
||||
|
||||
#: include/dbstructure.php:203
|
||||
#: include/dbstructure.php:204
|
||||
msgid ": Database update"
|
||||
msgstr ": Datenbank Update"
|
||||
|
||||
#: include/dbstructure.php:436
|
||||
#: include/dbstructure.php:437
|
||||
#, php-format
|
||||
msgid "%s: updating %s table."
|
||||
msgstr "%s: aktualisiere Tabelle %s"
|
||||
|
||||
#: include/delivery.php:429
|
||||
msgid "(no subject)"
|
||||
msgstr "(kein Betreff)"
|
||||
#: include/enotify.php:32
|
||||
msgid "Friendica Notification"
|
||||
msgstr "Friendica-Benachrichtigung"
|
||||
|
||||
#: include/dfrn.php:1360
|
||||
#: include/enotify.php:35
|
||||
msgid "Thank You,"
|
||||
msgstr "Danke,"
|
||||
|
||||
#: include/enotify.php:38
|
||||
#, php-format
|
||||
msgid "%s\\'s birthday"
|
||||
msgstr "%ss Geburtstag"
|
||||
msgid "%s Administrator"
|
||||
msgstr "der Administrator von %s"
|
||||
|
||||
#: include/diaspora.php:2351
|
||||
msgid "Sharing notification from Diaspora network"
|
||||
msgstr "Freigabe-Benachrichtigung von Diaspora"
|
||||
#: include/enotify.php:40
|
||||
#, php-format
|
||||
msgid "%1$s, %2$s Administrator"
|
||||
msgstr "%1$s, %2$s Administrator"
|
||||
|
||||
#: include/diaspora.php:3344
|
||||
msgid "Attachments:"
|
||||
msgstr "Anhänge:"
|
||||
#: include/enotify.php:51 src/Worker/Delivery.php:433
|
||||
msgid "noreply"
|
||||
msgstr "noreply"
|
||||
|
||||
#: include/event.php:445
|
||||
#: include/enotify.php:85
|
||||
#, php-format
|
||||
msgid "%s <!item_type!>"
|
||||
msgstr "%s <!item_type!>"
|
||||
|
||||
#: include/enotify.php:98
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] New mail received at %s"
|
||||
msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s"
|
||||
|
||||
#: include/enotify.php:100
|
||||
#, php-format
|
||||
msgid "%1$s sent you a new private message at %2$s."
|
||||
msgstr "%1$s hat Dir eine neue private Nachricht auf %2$s geschickt."
|
||||
|
||||
#: include/enotify.php:101
|
||||
#, php-format
|
||||
msgid "%1$s sent you %2$s."
|
||||
msgstr "%1$s schickte Dir %2$s."
|
||||
|
||||
#: include/enotify.php:101
|
||||
msgid "a private message"
|
||||
msgstr "eine private Nachricht"
|
||||
|
||||
#: include/enotify.php:103
|
||||
#, php-format
|
||||
msgid "Please visit %s to view and/or reply to your private messages."
|
||||
msgstr "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten."
|
||||
|
||||
#: include/enotify.php:149
|
||||
#, php-format
|
||||
msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
|
||||
msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]"
|
||||
|
||||
#: include/enotify.php:156
|
||||
#, php-format
|
||||
msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
|
||||
msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]"
|
||||
|
||||
#: include/enotify.php:164
|
||||
#, php-format
|
||||
msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
|
||||
msgstr "%1$s kommentierte [url=%2$s]Deinen %3$s[/url]"
|
||||
|
||||
#: include/enotify.php:174
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
|
||||
msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s"
|
||||
|
||||
#: include/enotify.php:176
|
||||
#, php-format
|
||||
msgid "%s commented on an item/conversation you have been following."
|
||||
msgstr "%s hat einen Beitrag kommentiert, dem Du folgst."
|
||||
|
||||
#: include/enotify.php:179 include/enotify.php:193 include/enotify.php:207
|
||||
#: include/enotify.php:221 include/enotify.php:239 include/enotify.php:253
|
||||
#, php-format
|
||||
msgid "Please visit %s to view and/or reply to the conversation."
|
||||
msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
|
||||
|
||||
#: include/enotify.php:186
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %s posted to your profile wall"
|
||||
msgstr "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben"
|
||||
|
||||
#: include/enotify.php:188
|
||||
#, php-format
|
||||
msgid "%1$s posted to your profile wall at %2$s"
|
||||
msgstr "%1$s schrieb auf %2$s auf Deine Pinnwand"
|
||||
|
||||
#: include/enotify.php:189
|
||||
#, php-format
|
||||
msgid "%1$s posted to [url=%2$s]your wall[/url]"
|
||||
msgstr "%1$s hat etwas auf [url=%2$s]Deiner Pinnwand[/url] gepostet"
|
||||
|
||||
#: include/enotify.php:200
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %s tagged you"
|
||||
msgstr "[Friendica-Meldung] %s hat Dich erwähnt"
|
||||
|
||||
#: include/enotify.php:202
|
||||
#, php-format
|
||||
msgid "%1$s tagged you at %2$s"
|
||||
msgstr "%1$s erwähnte Dich auf %2$s"
|
||||
|
||||
#: include/enotify.php:203
|
||||
#, php-format
|
||||
msgid "%1$s [url=%2$s]tagged you[/url]."
|
||||
msgstr "%1$s [url=%2$s]erwähnte Dich[/url]."
|
||||
|
||||
#: include/enotify.php:214
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %s shared a new post"
|
||||
msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"
|
||||
|
||||
#: include/enotify.php:216
|
||||
#, php-format
|
||||
msgid "%1$s shared a new post at %2$s"
|
||||
msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt"
|
||||
|
||||
#: include/enotify.php:217
|
||||
#, php-format
|
||||
msgid "%1$s [url=%2$s]shared a post[/url]."
|
||||
msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]."
|
||||
|
||||
#: include/enotify.php:228
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %1$s poked you"
|
||||
msgstr "[Friendica-Meldung] %1$s hat Dich angestupst"
|
||||
|
||||
#: include/enotify.php:230
|
||||
#, php-format
|
||||
msgid "%1$s poked you at %2$s"
|
||||
msgstr "%1$s hat Dich auf %2$s angestupst"
|
||||
|
||||
#: include/enotify.php:231
|
||||
#, php-format
|
||||
msgid "%1$s [url=%2$s]poked you[/url]."
|
||||
msgstr "%1$s [url=%2$s]hat Dich angestupst[/url]."
|
||||
|
||||
#: include/enotify.php:246
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %s tagged your post"
|
||||
msgstr "[Friendica-Meldung] %s hat Deinen Beitrag getaggt"
|
||||
|
||||
#: include/enotify.php:248
|
||||
#, php-format
|
||||
msgid "%1$s tagged your post at %2$s"
|
||||
msgstr "%1$s erwähnte Deinen Beitrag auf %2$s"
|
||||
|
||||
#: include/enotify.php:249
|
||||
#, php-format
|
||||
msgid "%1$s tagged [url=%2$s]your post[/url]"
|
||||
msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
|
||||
|
||||
#: include/enotify.php:260
|
||||
msgid "[Friendica:Notify] Introduction received"
|
||||
msgstr "[Friendica-Meldung] Kontaktanfrage erhalten"
|
||||
|
||||
#: include/enotify.php:262
|
||||
#, php-format
|
||||
msgid "You've received an introduction from '%1$s' at %2$s"
|
||||
msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten"
|
||||
|
||||
#: include/enotify.php:263
|
||||
#, php-format
|
||||
msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
|
||||
msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten."
|
||||
|
||||
#: include/enotify.php:267 include/enotify.php:310
|
||||
#, php-format
|
||||
msgid "You may visit their profile at %s"
|
||||
msgstr "Hier kannst Du das Profil betrachten: %s"
|
||||
|
||||
#: include/enotify.php:269
|
||||
#, php-format
|
||||
msgid "Please visit %s to approve or reject the introduction."
|
||||
msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
|
||||
|
||||
#: include/enotify.php:277
|
||||
msgid "[Friendica:Notify] A new person is sharing with you"
|
||||
msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir"
|
||||
|
||||
#: include/enotify.php:279 include/enotify.php:280
|
||||
#, php-format
|
||||
msgid "%1$s is sharing with you at %2$s"
|
||||
msgstr "%1$s teilt mit Dir auf %2$s"
|
||||
|
||||
#: include/enotify.php:286
|
||||
msgid "[Friendica:Notify] You have a new follower"
|
||||
msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf "
|
||||
|
||||
#: include/enotify.php:288 include/enotify.php:289
|
||||
#, php-format
|
||||
msgid "You have a new follower at %2$s : %1$s"
|
||||
msgstr "Du hast einen neuen Kontakt auf %2$s: %1$s"
|
||||
|
||||
#: include/enotify.php:300
|
||||
msgid "[Friendica:Notify] Friend suggestion received"
|
||||
msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten"
|
||||
|
||||
#: include/enotify.php:302
|
||||
#, php-format
|
||||
msgid "You've received a friend suggestion from '%1$s' at %2$s"
|
||||
msgstr "Du hast einen Kontakt-Vorschlag von '%1$s' auf %2$s erhalten"
|
||||
|
||||
#: include/enotify.php:303
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
|
||||
msgstr "Du hast einen [url=%1$s]Kontakt-Vorschlag[/url] %2$s von %3$s erhalten."
|
||||
|
||||
#: include/enotify.php:308
|
||||
msgid "Name:"
|
||||
msgstr "Name:"
|
||||
|
||||
#: include/enotify.php:309
|
||||
msgid "Photo:"
|
||||
msgstr "Foto:"
|
||||
|
||||
#: include/enotify.php:312
|
||||
#, php-format
|
||||
msgid "Please visit %s to approve or reject the suggestion."
|
||||
msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
|
||||
|
||||
#: include/enotify.php:320 include/enotify.php:334
|
||||
msgid "[Friendica:Notify] Connection accepted"
|
||||
msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt"
|
||||
|
||||
#: include/enotify.php:322 include/enotify.php:336
|
||||
#, php-format
|
||||
msgid "'%1$s' has accepted your connection request at %2$s"
|
||||
msgstr "'%1$s' hat Deine Kontaktanfrage auf %2$s bestätigt"
|
||||
|
||||
#: include/enotify.php:323 include/enotify.php:337
|
||||
#, php-format
|
||||
msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
|
||||
msgstr "%2$s hat Deine [url=%1$s]Kontaktanfrage[/url] akzeptiert."
|
||||
|
||||
#: include/enotify.php:327
|
||||
msgid ""
|
||||
"You are now mutual friends and may exchange status updates, photos, and "
|
||||
"email without restriction."
|
||||
msgstr "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen."
|
||||
|
||||
#: include/enotify.php:329
|
||||
#, php-format
|
||||
msgid "Please visit %s if you wish to make any changes to this relationship."
|
||||
msgstr "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst."
|
||||
|
||||
#: include/enotify.php:341
|
||||
#, php-format
|
||||
msgid ""
|
||||
"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
|
||||
"communication - such as private messaging and some profile interactions. If "
|
||||
"this is a celebrity or community page, these settings were applied "
|
||||
"automatically."
|
||||
msgstr "'%1$s' hat sich entschieden Dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen."
|
||||
|
||||
#: include/enotify.php:343
|
||||
#, php-format
|
||||
msgid ""
|
||||
"'%1$s' may choose to extend this into a two-way or more permissive "
|
||||
"relationship in the future."
|
||||
msgstr "'%1$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. "
|
||||
|
||||
#: include/enotify.php:345
|
||||
#, php-format
|
||||
msgid "Please visit %s if you wish to make any changes to this relationship."
|
||||
msgstr "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst."
|
||||
|
||||
#: include/enotify.php:355
|
||||
msgid "[Friendica System:Notify] registration request"
|
||||
msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage"
|
||||
|
||||
#: include/enotify.php:357
|
||||
#, php-format
|
||||
msgid "You've received a registration request from '%1$s' at %2$s"
|
||||
msgstr "Du hast eine Registrierungsanfrage von %2$s auf '%1$s' erhalten"
|
||||
|
||||
#: include/enotify.php:358
|
||||
#, php-format
|
||||
msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
|
||||
msgstr "Du hast eine [url=%1$s]Registrierungsanfrage[/url] von %2$s erhalten."
|
||||
|
||||
#: include/enotify.php:362
|
||||
#, php-format
|
||||
msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
|
||||
msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
|
||||
|
||||
#: include/enotify.php:365
|
||||
#, php-format
|
||||
msgid "Please visit %s to approve or reject the request."
|
||||
msgstr "Bitte besuche %s um die Anfrage zu bearbeiten."
|
||||
|
||||
#: include/event.php:444
|
||||
msgid "all-day"
|
||||
msgstr "ganztägig"
|
||||
|
||||
#: include/event.php:447
|
||||
#: include/event.php:446
|
||||
msgid "Sun"
|
||||
msgstr "So"
|
||||
|
||||
#: include/event.php:448 include/text.php:1220
|
||||
#: include/event.php:447 include/text.php:1177
|
||||
msgid "Mon"
|
||||
msgstr "Mo"
|
||||
|
||||
#: include/event.php:449 include/text.php:1220
|
||||
#: include/event.php:448 include/text.php:1177
|
||||
msgid "Tue"
|
||||
msgstr "Di"
|
||||
|
||||
#: include/event.php:450 include/text.php:1220
|
||||
#: include/event.php:449 include/text.php:1177
|
||||
msgid "Wed"
|
||||
msgstr "Mi"
|
||||
|
||||
#: include/event.php:451 include/text.php:1220
|
||||
#: include/event.php:450 include/text.php:1177
|
||||
msgid "Thu"
|
||||
msgstr "Do"
|
||||
|
||||
#: include/event.php:452 include/text.php:1220
|
||||
#: include/event.php:451 include/text.php:1177
|
||||
msgid "Fri"
|
||||
msgstr "Fr"
|
||||
|
||||
#: include/event.php:453 include/text.php:1220
|
||||
#: include/event.php:452 include/text.php:1177
|
||||
msgid "Sat"
|
||||
msgstr "Sa"
|
||||
|
||||
#: include/event.php:455 include/text.php:1202 mod/settings.php:986
|
||||
#: include/event.php:454 include/text.php:1159 mod/settings.php:988
|
||||
msgid "Sunday"
|
||||
msgstr "Sonntag"
|
||||
|
||||
#: include/event.php:456 include/text.php:1202 mod/settings.php:986
|
||||
#: include/event.php:455 include/text.php:1159 mod/settings.php:988
|
||||
msgid "Monday"
|
||||
msgstr "Montag"
|
||||
|
||||
#: include/event.php:457 include/text.php:1202
|
||||
#: include/event.php:456 include/text.php:1159
|
||||
msgid "Tuesday"
|
||||
msgstr "Dienstag"
|
||||
|
||||
#: include/event.php:458 include/text.php:1202
|
||||
#: include/event.php:457 include/text.php:1159
|
||||
msgid "Wednesday"
|
||||
msgstr "Mittwoch"
|
||||
|
||||
#: include/event.php:459 include/text.php:1202
|
||||
#: include/event.php:458 include/text.php:1159
|
||||
msgid "Thursday"
|
||||
msgstr "Donnerstag"
|
||||
|
||||
#: include/event.php:460 include/text.php:1202
|
||||
#: include/event.php:459 include/text.php:1159
|
||||
msgid "Friday"
|
||||
msgstr "Freitag"
|
||||
|
||||
#: include/event.php:461 include/text.php:1202
|
||||
#: include/event.php:460 include/text.php:1159
|
||||
msgid "Saturday"
|
||||
msgstr "Samstag"
|
||||
|
||||
#: include/event.php:463 include/text.php:1223
|
||||
#: include/event.php:462 include/text.php:1180
|
||||
msgid "Jan"
|
||||
msgstr "Jan"
|
||||
|
||||
#: include/event.php:464 include/text.php:1223
|
||||
#: include/event.php:463 include/text.php:1180
|
||||
msgid "Feb"
|
||||
msgstr "Feb"
|
||||
|
||||
#: include/event.php:465 include/text.php:1223
|
||||
#: include/event.php:464 include/text.php:1180
|
||||
msgid "Mar"
|
||||
msgstr "März"
|
||||
|
||||
#: include/event.php:466 include/text.php:1223
|
||||
#: include/event.php:465 include/text.php:1180
|
||||
msgid "Apr"
|
||||
msgstr "Apr"
|
||||
|
||||
#: include/event.php:467 include/event.php:480 include/text.php:1206
|
||||
#: include/text.php:1223
|
||||
#: include/event.php:466 include/event.php:479 include/text.php:1163
|
||||
#: include/text.php:1180
|
||||
msgid "May"
|
||||
msgstr "Mai"
|
||||
|
||||
#: include/event.php:468
|
||||
#: include/event.php:467
|
||||
msgid "Jun"
|
||||
msgstr "Jun"
|
||||
|
||||
#: include/event.php:469 include/text.php:1223
|
||||
#: include/event.php:468 include/text.php:1180
|
||||
msgid "Jul"
|
||||
msgstr "Juli"
|
||||
|
||||
#: include/event.php:470 include/text.php:1223
|
||||
#: include/event.php:469 include/text.php:1180
|
||||
msgid "Aug"
|
||||
msgstr "Aug"
|
||||
|
||||
#: include/event.php:471
|
||||
#: include/event.php:470
|
||||
msgid "Sept"
|
||||
msgstr "Sep"
|
||||
|
||||
#: include/event.php:472 include/text.php:1223
|
||||
#: include/event.php:471 include/text.php:1180
|
||||
msgid "Oct"
|
||||
msgstr "Okt"
|
||||
|
||||
#: include/event.php:473 include/text.php:1223
|
||||
#: include/event.php:472 include/text.php:1180
|
||||
msgid "Nov"
|
||||
msgstr "Nov"
|
||||
|
||||
#: include/event.php:474 include/text.php:1223
|
||||
#: include/event.php:473 include/text.php:1180
|
||||
msgid "Dec"
|
||||
msgstr "Dez"
|
||||
|
||||
#: include/event.php:476 include/text.php:1206
|
||||
#: include/event.php:475 include/text.php:1163
|
||||
msgid "January"
|
||||
msgstr "Januar"
|
||||
|
||||
#: include/event.php:477 include/text.php:1206
|
||||
#: include/event.php:476 include/text.php:1163
|
||||
msgid "February"
|
||||
msgstr "Februar"
|
||||
|
||||
#: include/event.php:478 include/text.php:1206
|
||||
#: include/event.php:477 include/text.php:1163
|
||||
msgid "March"
|
||||
msgstr "März"
|
||||
|
||||
#: include/event.php:479 include/text.php:1206
|
||||
#: include/event.php:478 include/text.php:1163
|
||||
msgid "April"
|
||||
msgstr "April"
|
||||
|
||||
#: include/event.php:481 include/text.php:1206
|
||||
#: include/event.php:480 include/text.php:1163
|
||||
msgid "June"
|
||||
msgstr "Juni"
|
||||
|
||||
#: include/event.php:482 include/text.php:1206
|
||||
#: include/event.php:481 include/text.php:1163
|
||||
msgid "July"
|
||||
msgstr "Juli"
|
||||
|
||||
#: include/event.php:483 include/text.php:1206
|
||||
#: include/event.php:482 include/text.php:1163
|
||||
msgid "August"
|
||||
msgstr "August"
|
||||
|
||||
#: include/event.php:484 include/text.php:1206
|
||||
#: include/event.php:483 include/text.php:1163
|
||||
msgid "September"
|
||||
msgstr "September"
|
||||
|
||||
#: include/event.php:485 include/text.php:1206
|
||||
#: include/event.php:484 include/text.php:1163
|
||||
msgid "October"
|
||||
msgstr "Oktober"
|
||||
|
||||
#: include/event.php:486 include/text.php:1206
|
||||
#: include/event.php:485 include/text.php:1163
|
||||
msgid "November"
|
||||
msgstr "November"
|
||||
|
||||
#: include/event.php:487 include/text.php:1206
|
||||
#: include/event.php:486 include/text.php:1163
|
||||
msgid "December"
|
||||
msgstr "Dezember"
|
||||
|
||||
#: include/event.php:489 mod/cal.php:281 mod/events.php:392
|
||||
#: include/event.php:488 mod/cal.php:284 mod/events.php:394
|
||||
msgid "today"
|
||||
msgstr "Heute"
|
||||
|
||||
#: include/event.php:494
|
||||
#: include/event.php:493
|
||||
msgid "No events to display"
|
||||
msgstr "Keine Veranstaltung zum Anzeigen"
|
||||
|
||||
#: include/event.php:608
|
||||
#: include/event.php:607
|
||||
msgid "l, F j"
|
||||
msgstr "l, F j"
|
||||
|
||||
#: include/event.php:629
|
||||
#: include/event.php:628
|
||||
msgid "Edit event"
|
||||
msgstr "Veranstaltung bearbeiten"
|
||||
|
||||
#: include/event.php:630
|
||||
#: include/event.php:629
|
||||
msgid "Duplicate event"
|
||||
msgstr "Veranstaltung kopieren"
|
||||
|
||||
#: include/event.php:631
|
||||
#: include/event.php:630
|
||||
msgid "Delete event"
|
||||
msgstr "Veranstaltung löschen"
|
||||
|
||||
#: include/event.php:658 include/text.php:1618 include/text.php:1625
|
||||
#: include/event.php:657 include/text.php:1574 include/text.php:1581
|
||||
msgid "link to source"
|
||||
msgstr "Link zum Originalbeitrag"
|
||||
|
||||
#: include/event.php:915
|
||||
#: include/event.php:914
|
||||
msgid "Export"
|
||||
msgstr "Exportieren"
|
||||
|
||||
#: include/event.php:916
|
||||
#: include/event.php:915
|
||||
msgid "Export calendar as ical"
|
||||
msgstr "Kalender als ical exportieren"
|
||||
|
||||
#: include/event.php:917
|
||||
#: include/event.php:916
|
||||
msgid "Export calendar as csv"
|
||||
msgstr "Kalender als csv exportieren"
|
||||
|
||||
#: include/event.php:934
|
||||
#: include/event.php:933
|
||||
msgid "D g:i A"
|
||||
msgstr "D g:i A"
|
||||
|
||||
#: include/event.php:935
|
||||
#: include/event.php:934
|
||||
msgid "g:i A"
|
||||
msgstr "g:i A"
|
||||
|
||||
#: include/event.php:1004 include/event.php:1006
|
||||
#: include/event.php:1003 include/event.php:1005
|
||||
msgid "Show map"
|
||||
msgstr "Karte anzeigen"
|
||||
|
||||
#: include/event.php:1005
|
||||
#: include/event.php:1004
|
||||
msgid "Hide map"
|
||||
msgstr "Karte verbergen"
|
||||
|
||||
#: include/follow.php:87 mod/dfrn_request.php:515
|
||||
#: include/features.php:68
|
||||
msgid "General Features"
|
||||
msgstr "Allgemeine Features"
|
||||
|
||||
#: include/features.php:70
|
||||
msgid "Multiple Profiles"
|
||||
msgstr "Mehrere Profile"
|
||||
|
||||
#: include/features.php:70
|
||||
msgid "Ability to create multiple profiles"
|
||||
msgstr "Möglichkeit mehrere Profile zu erstellen"
|
||||
|
||||
#: include/features.php:71
|
||||
msgid "Photo Location"
|
||||
msgstr "Aufnahmeort"
|
||||
|
||||
#: include/features.php:71
|
||||
msgid ""
|
||||
"Photo metadata is normally stripped. This extracts the location (if present)"
|
||||
" prior to stripping metadata and links it to a map."
|
||||
msgstr "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden."
|
||||
|
||||
#: include/features.php:72
|
||||
msgid "Export Public Calendar"
|
||||
msgstr "Öffentlichen Kalender exportieren"
|
||||
|
||||
#: include/features.php:72
|
||||
msgid "Ability for visitors to download the public calendar"
|
||||
msgstr "Möglichkeit für Besucher den öffentlichen Kalender herunter zu laden"
|
||||
|
||||
#: include/features.php:77
|
||||
msgid "Post Composition Features"
|
||||
msgstr "Beitragserstellung Features"
|
||||
|
||||
#: include/features.php:78
|
||||
msgid "Post Preview"
|
||||
msgstr "Beitragsvorschau"
|
||||
|
||||
#: include/features.php:78
|
||||
msgid "Allow previewing posts and comments before publishing them"
|
||||
msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
|
||||
|
||||
#: include/features.php:79
|
||||
msgid "Auto-mention Forums"
|
||||
msgstr "Foren automatisch erwähnen"
|
||||
|
||||
#: include/features.php:79
|
||||
msgid ""
|
||||
"Add/remove mention when a forum page is selected/deselected in ACL window."
|
||||
msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde."
|
||||
|
||||
#: include/features.php:84
|
||||
msgid "Network Sidebar Widgets"
|
||||
msgstr "Widgets für Netzwerk und Seitenleiste"
|
||||
|
||||
#: include/features.php:85
|
||||
msgid "Search by Date"
|
||||
msgstr "Archiv"
|
||||
|
||||
#: include/features.php:85
|
||||
msgid "Ability to select posts by date ranges"
|
||||
msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
|
||||
|
||||
#: include/features.php:86 include/features.php:116
|
||||
msgid "List Forums"
|
||||
msgstr "Zeige Foren"
|
||||
|
||||
#: include/features.php:86
|
||||
msgid "Enable widget to display the forums your are connected with"
|
||||
msgstr "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen"
|
||||
|
||||
#: include/features.php:87
|
||||
msgid "Group Filter"
|
||||
msgstr "Gruppen Filter"
|
||||
|
||||
#: include/features.php:87
|
||||
msgid "Enable widget to display Network posts only from selected group"
|
||||
msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
|
||||
|
||||
#: include/features.php:88
|
||||
msgid "Network Filter"
|
||||
msgstr "Netzwerk Filter"
|
||||
|
||||
#: include/features.php:88
|
||||
msgid "Enable widget to display Network posts only from selected network"
|
||||
msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."
|
||||
|
||||
#: include/features.php:89 mod/network.php:202 mod/search.php:40
|
||||
msgid "Saved Searches"
|
||||
msgstr "Gespeicherte Suchen"
|
||||
|
||||
#: include/features.php:89
|
||||
msgid "Save search terms for re-use"
|
||||
msgstr "Speichere Suchanfragen für spätere Wiederholung."
|
||||
|
||||
#: include/features.php:94
|
||||
msgid "Network Tabs"
|
||||
msgstr "Netzwerk Reiter"
|
||||
|
||||
#: include/features.php:95
|
||||
msgid "Network Personal Tab"
|
||||
msgstr "Netzwerk-Reiter: Persönlich"
|
||||
|
||||
#: include/features.php:95
|
||||
msgid "Enable tab to display only Network posts that you've interacted on"
|
||||
msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast"
|
||||
|
||||
#: include/features.php:96
|
||||
msgid "Network New Tab"
|
||||
msgstr "Netzwerk-Reiter: Neue"
|
||||
|
||||
#: include/features.php:96
|
||||
msgid "Enable tab to display only new Network posts (from the last 12 hours)"
|
||||
msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"
|
||||
|
||||
#: include/features.php:97
|
||||
msgid "Network Shared Links Tab"
|
||||
msgstr "Netzwerk-Reiter: Geteilte Links"
|
||||
|
||||
#: include/features.php:97
|
||||
msgid "Enable tab to display only Network posts with links in them"
|
||||
msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"
|
||||
|
||||
#: include/features.php:102
|
||||
msgid "Post/Comment Tools"
|
||||
msgstr "Werkzeuge für Beiträge und Kommentare"
|
||||
|
||||
#: include/features.php:103
|
||||
msgid "Multiple Deletion"
|
||||
msgstr "Mehrere Beiträge löschen"
|
||||
|
||||
#: include/features.php:103
|
||||
msgid "Select and delete multiple posts/comments at once"
|
||||
msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
|
||||
|
||||
#: include/features.php:104
|
||||
msgid "Edit Sent Posts"
|
||||
msgstr "Gesendete Beiträge editieren"
|
||||
|
||||
#: include/features.php:104
|
||||
msgid "Edit and correct posts and comments after sending"
|
||||
msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren."
|
||||
|
||||
#: include/features.php:105
|
||||
msgid "Tagging"
|
||||
msgstr "Tagging"
|
||||
|
||||
#: include/features.php:105
|
||||
msgid "Ability to tag existing posts"
|
||||
msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
|
||||
|
||||
#: include/features.php:106
|
||||
msgid "Post Categories"
|
||||
msgstr "Beitragskategorien"
|
||||
|
||||
#: include/features.php:106
|
||||
msgid "Add categories to your posts"
|
||||
msgstr "Eigene Beiträge mit Kategorien versehen"
|
||||
|
||||
#: include/features.php:107
|
||||
msgid "Ability to file posts under folders"
|
||||
msgstr "Beiträge in Ordnern speichern aktivieren"
|
||||
|
||||
#: include/features.php:108
|
||||
msgid "Dislike Posts"
|
||||
msgstr "Beiträge 'nicht mögen'"
|
||||
|
||||
#: include/features.php:108
|
||||
msgid "Ability to dislike posts/comments"
|
||||
msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
|
||||
|
||||
#: include/features.php:109
|
||||
msgid "Star Posts"
|
||||
msgstr "Beiträge Markieren"
|
||||
|
||||
#: include/features.php:109
|
||||
msgid "Ability to mark special posts with a star indicator"
|
||||
msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren"
|
||||
|
||||
#: include/features.php:110
|
||||
msgid "Mute Post Notifications"
|
||||
msgstr "Benachrichtigungen für Beiträge Stumm schalten"
|
||||
|
||||
#: include/features.php:110
|
||||
msgid "Ability to mute notifications for a thread"
|
||||
msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"
|
||||
|
||||
#: include/features.php:115
|
||||
msgid "Advanced Profile Settings"
|
||||
msgstr "Erweiterte Profil-Einstellungen"
|
||||
|
||||
#: include/features.php:116
|
||||
msgid "Show visitors public community forums at the Advanced Profile Page"
|
||||
msgstr "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite"
|
||||
|
||||
#: include/features.php:117
|
||||
msgid "Tag Cloud"
|
||||
msgstr "Schlagwort Wolke"
|
||||
|
||||
#: include/features.php:117
|
||||
msgid "Provide a personal tag cloud on your profile page"
|
||||
msgstr "Wortwolke aus den von dir verwendeten Schlagwörtern im Profil anzeigen."
|
||||
|
||||
#: include/follow.php:90 mod/dfrn_request.php:517
|
||||
msgid "Disallowed profile URL."
|
||||
msgstr "Nicht erlaubte Profil-URL."
|
||||
|
||||
#: include/follow.php:92 mod/dfrn_request.php:521 mod/friendica.php:116
|
||||
#: mod/admin.php:290 mod/admin.php:308
|
||||
#: include/follow.php:95 mod/admin.php:292 mod/admin.php:310
|
||||
#: mod/dfrn_request.php:523 mod/friendica.php:117
|
||||
msgid "Blocked domain"
|
||||
msgstr "Blockierte Daimain"
|
||||
|
||||
#: include/follow.php:97
|
||||
#: include/follow.php:100
|
||||
msgid "Connect URL missing."
|
||||
msgstr "Connect-URL fehlt"
|
||||
|
||||
#: include/follow.php:129
|
||||
#: include/follow.php:132
|
||||
msgid ""
|
||||
"This site is not configured to allow communications with other networks."
|
||||
msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."
|
||||
|
||||
#: include/follow.php:130 include/follow.php:144
|
||||
#: include/follow.php:133 include/follow.php:147
|
||||
msgid "No compatible communication protocols or feeds were discovered."
|
||||
msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
|
||||
|
||||
#: include/follow.php:142
|
||||
#: include/follow.php:145
|
||||
msgid "The profile address specified does not provide adequate information."
|
||||
msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
|
||||
|
||||
#: include/follow.php:147
|
||||
#: include/follow.php:150
|
||||
msgid "An author or name was not found."
|
||||
msgstr "Es wurde kein Autor oder Name gefunden."
|
||||
|
||||
#: include/follow.php:150
|
||||
#: include/follow.php:153
|
||||
msgid "No browser URL could be matched to this address."
|
||||
msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
|
||||
|
||||
#: include/follow.php:153
|
||||
#: include/follow.php:156
|
||||
msgid ""
|
||||
"Unable to match @-style Identity Address with a known protocol or email "
|
||||
"contact."
|
||||
msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."
|
||||
|
||||
#: include/follow.php:154
|
||||
#: include/follow.php:157
|
||||
msgid "Use mailto: in front of address to force email check."
|
||||
msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."
|
||||
|
||||
#: include/follow.php:160
|
||||
#: include/follow.php:163
|
||||
msgid ""
|
||||
"The profile address specified belongs to a network which has been disabled "
|
||||
"on this site."
|
||||
msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."
|
||||
|
||||
#: include/follow.php:165
|
||||
#: include/follow.php:168
|
||||
msgid ""
|
||||
"Limited profile. This person will be unable to receive direct/personal "
|
||||
"notifications from you."
|
||||
msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können."
|
||||
|
||||
#: include/follow.php:236
|
||||
#: include/follow.php:239
|
||||
msgid "Unable to retrieve contact information."
|
||||
msgstr "Konnte die Kontaktinformationen nicht empfangen."
|
||||
|
||||
#: include/identity.php:47
|
||||
#: include/group.php:27
|
||||
msgid ""
|
||||
"A deleted group with this name was revived. Existing item permissions "
|
||||
"<strong>may</strong> apply to this group and any future members. If this is "
|
||||
"not what you intended, please create another group with a different name."
|
||||
msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
|
||||
|
||||
#: include/group.php:199
|
||||
msgid "Default privacy group for new contacts"
|
||||
msgstr "Voreingestellte Gruppe für neue Kontakte"
|
||||
|
||||
#: include/group.php:232
|
||||
msgid "Everybody"
|
||||
msgstr "Alle Kontakte"
|
||||
|
||||
#: include/group.php:255
|
||||
msgid "edit"
|
||||
msgstr "bearbeiten"
|
||||
|
||||
#: include/group.php:276 mod/newmember.php:40
|
||||
msgid "Groups"
|
||||
msgstr "Gruppen"
|
||||
|
||||
#: include/group.php:278
|
||||
msgid "Edit groups"
|
||||
msgstr "Gruppen bearbeiten"
|
||||
|
||||
#: include/group.php:280
|
||||
msgid "Edit group"
|
||||
msgstr "Gruppe bearbeiten"
|
||||
|
||||
#: include/group.php:281
|
||||
msgid "Create a new group"
|
||||
msgstr "Neue Gruppe erstellen"
|
||||
|
||||
#: include/group.php:282 mod/group.php:101 mod/group.php:198
|
||||
msgid "Group Name: "
|
||||
msgstr "Gruppenname:"
|
||||
|
||||
#: include/group.php:284
|
||||
msgid "Contacts not in any group"
|
||||
msgstr "Kontakte in keiner Gruppe"
|
||||
|
||||
#: include/group.php:286 mod/network.php:203
|
||||
msgid "add"
|
||||
msgstr "hinzufügen"
|
||||
|
||||
#: include/identity.php:52
|
||||
msgid "Requested account is not available."
|
||||
msgstr "Das angefragte Profil ist nicht vorhanden."
|
||||
|
||||
#: include/identity.php:56 mod/profile.php:23
|
||||
#: include/identity.php:61 mod/profile.php:26
|
||||
msgid "Requested profile is not available."
|
||||
msgstr "Das angefragte Profil ist nicht vorhanden."
|
||||
|
||||
#: include/identity.php:100 include/identity.php:323 include/identity.php:756
|
||||
#: include/identity.php:110 include/identity.php:340 include/identity.php:798
|
||||
msgid "Edit profile"
|
||||
msgstr "Profil bearbeiten"
|
||||
|
||||
#: include/identity.php:263
|
||||
#: include/identity.php:278
|
||||
msgid "Atom feed"
|
||||
msgstr "Atom-Feed"
|
||||
|
||||
#: include/identity.php:294
|
||||
#: include/identity.php:313 include/nav.php:194
|
||||
msgid "Profiles"
|
||||
msgstr "Profile"
|
||||
|
||||
#: include/identity.php:313
|
||||
msgid "Manage/edit profiles"
|
||||
msgstr "Profile verwalten/editieren"
|
||||
|
||||
#: include/identity.php:299 include/identity.php:325 mod/profiles.php:786
|
||||
#: include/identity.php:320 include/identity.php:342 mod/profiles.php:789
|
||||
msgid "Change profile photo"
|
||||
msgstr "Profilbild ändern"
|
||||
|
||||
#: include/identity.php:300 mod/profiles.php:787
|
||||
#: include/identity.php:321 mod/profiles.php:790
|
||||
msgid "Create New Profile"
|
||||
msgstr "Neues Profil anlegen"
|
||||
|
||||
#: include/identity.php:310 mod/profiles.php:776
|
||||
#: include/identity.php:330 mod/profiles.php:779
|
||||
msgid "Profile Image"
|
||||
msgstr "Profilbild"
|
||||
|
||||
#: include/identity.php:313 mod/profiles.php:778
|
||||
#: include/identity.php:333 mod/profiles.php:781
|
||||
msgid "visible to everybody"
|
||||
msgstr "sichtbar für jeden"
|
||||
|
||||
#: include/identity.php:314 mod/profiles.php:683 mod/profiles.php:779
|
||||
#: include/identity.php:334 mod/profiles.php:687 mod/profiles.php:782
|
||||
msgid "Edit visibility"
|
||||
msgstr "Sichtbarkeit bearbeiten"
|
||||
|
||||
#: include/identity.php:342 include/identity.php:643 mod/notifications.php:253
|
||||
#: mod/directory.php:135
|
||||
#: include/identity.php:361 include/identity.php:686 mod/directory.php:138
|
||||
#: mod/notifications.php:254
|
||||
msgid "Gender:"
|
||||
msgstr "Geschlecht:"
|
||||
|
||||
#: include/identity.php:345 include/identity.php:666 mod/directory.php:137
|
||||
#: include/identity.php:364 include/identity.php:708 mod/directory.php:140
|
||||
msgid "Status:"
|
||||
msgstr "Status:"
|
||||
|
||||
#: include/identity.php:347 include/identity.php:683 mod/directory.php:139
|
||||
#: include/identity.php:366 include/identity.php:725 mod/directory.php:142
|
||||
msgid "Homepage:"
|
||||
msgstr "Homepage:"
|
||||
|
||||
#: include/identity.php:349 include/identity.php:703 mod/notifications.php:249
|
||||
#: mod/directory.php:141 mod/contacts.php:662
|
||||
#: include/identity.php:368 include/identity.php:745 mod/contacts.php:670
|
||||
#: mod/directory.php:144 mod/notifications.php:250
|
||||
msgid "About:"
|
||||
msgstr "Über:"
|
||||
|
||||
#: include/identity.php:351 mod/contacts.php:660
|
||||
#: include/identity.php:370 mod/contacts.php:668
|
||||
msgid "XMPP:"
|
||||
msgstr "XMPP:"
|
||||
|
||||
#: include/identity.php:437 mod/notifications.php:261 mod/contacts.php:60
|
||||
#: include/identity.php:464 mod/contacts.php:60 mod/notifications.php:262
|
||||
msgid "Network:"
|
||||
msgstr "Netzwerk:"
|
||||
|
||||
#: include/identity.php:466 include/identity.php:557
|
||||
#: include/identity.php:496 include/identity.php:594
|
||||
msgid "g A l F d"
|
||||
msgstr "l, d. F G \\U\\h\\r"
|
||||
|
||||
#: include/identity.php:467 include/identity.php:558
|
||||
#: include/identity.php:497 include/identity.php:595
|
||||
msgid "F d"
|
||||
msgstr "d. F"
|
||||
|
||||
#: include/identity.php:519 include/identity.php:605
|
||||
#: include/identity.php:554 include/identity.php:643
|
||||
msgid "[today]"
|
||||
msgstr "[heute]"
|
||||
|
||||
#: include/identity.php:531
|
||||
#: include/identity.php:567
|
||||
msgid "Birthday Reminders"
|
||||
msgstr "Geburtstagserinnerungen"
|
||||
|
||||
#: include/identity.php:532
|
||||
#: include/identity.php:568
|
||||
msgid "Birthdays this week:"
|
||||
msgstr "Geburtstage diese Woche:"
|
||||
|
||||
#: include/identity.php:592
|
||||
#: include/identity.php:630
|
||||
msgid "[No description]"
|
||||
msgstr "[keine Beschreibung]"
|
||||
|
||||
#: include/identity.php:619
|
||||
#: include/identity.php:659
|
||||
msgid "Event Reminders"
|
||||
msgstr "Veranstaltungserinnerungen"
|
||||
|
||||
#: include/identity.php:620
|
||||
#: include/identity.php:660
|
||||
msgid "Events this week:"
|
||||
msgstr "Veranstaltungen diese Woche"
|
||||
|
||||
#: include/identity.php:640 mod/settings.php:1273
|
||||
#: include/identity.php:674 include/identity.php:804 include/identity.php:839
|
||||
#: include/nav.php:87 mod/contacts.php:677 mod/contacts.php:879
|
||||
#: mod/newmember.php:21 mod/profperm.php:108 view/theme/frio/theme.php:257
|
||||
msgid "Profile"
|
||||
msgstr "Profil"
|
||||
|
||||
#: include/identity.php:683 mod/settings.php:1270
|
||||
msgid "Full Name:"
|
||||
msgstr "Kompletter Name:"
|
||||
|
||||
#: include/identity.php:647
|
||||
#: include/identity.php:690
|
||||
msgid "j F, Y"
|
||||
msgstr "j F, Y"
|
||||
|
||||
#: include/identity.php:648
|
||||
#: include/identity.php:691
|
||||
msgid "j F"
|
||||
msgstr "j F"
|
||||
|
||||
#: include/identity.php:662
|
||||
#: include/identity.php:704
|
||||
msgid "Age:"
|
||||
msgstr "Alter:"
|
||||
|
||||
#: include/identity.php:675
|
||||
#: include/identity.php:717
|
||||
#, php-format
|
||||
msgid "for %1$d %2$s"
|
||||
msgstr "für %1$d %2$s"
|
||||
|
||||
#: include/identity.php:679 mod/profiles.php:702
|
||||
#: include/identity.php:721 mod/profiles.php:706
|
||||
msgid "Sexual Preference:"
|
||||
msgstr "Sexuelle Vorlieben:"
|
||||
|
||||
#: include/identity.php:687 mod/profiles.php:729
|
||||
#: include/identity.php:729 mod/profiles.php:733
|
||||
msgid "Hometown:"
|
||||
msgstr "Heimatort:"
|
||||
|
||||
#: include/identity.php:691 mod/follow.php:174 mod/notifications.php:251
|
||||
#: mod/contacts.php:664
|
||||
#: include/identity.php:733 mod/contacts.php:672 mod/follow.php:175
|
||||
#: mod/notifications.php:252
|
||||
msgid "Tags:"
|
||||
msgstr "Tags:"
|
||||
|
||||
#: include/identity.php:695 mod/profiles.php:730
|
||||
#: include/identity.php:737 mod/profiles.php:734
|
||||
msgid "Political Views:"
|
||||
msgstr "Politische Ansichten:"
|
||||
|
||||
#: include/identity.php:699
|
||||
#: include/identity.php:741
|
||||
msgid "Religion:"
|
||||
msgstr "Religion:"
|
||||
|
||||
#: include/identity.php:707
|
||||
#: include/identity.php:749
|
||||
msgid "Hobbies/Interests:"
|
||||
msgstr "Hobbies/Interessen:"
|
||||
|
||||
#: include/identity.php:711 mod/profiles.php:734
|
||||
#: include/identity.php:753 mod/profiles.php:738
|
||||
msgid "Likes:"
|
||||
msgstr "Likes:"
|
||||
|
||||
#: include/identity.php:715 mod/profiles.php:735
|
||||
#: include/identity.php:757 mod/profiles.php:739
|
||||
msgid "Dislikes:"
|
||||
msgstr "Dislikes:"
|
||||
|
||||
#: include/identity.php:719
|
||||
#: include/identity.php:761
|
||||
msgid "Contact information and Social Networks:"
|
||||
msgstr "Kontaktinformationen und Soziale Netzwerke:"
|
||||
|
||||
#: include/identity.php:723
|
||||
#: include/identity.php:765
|
||||
msgid "Musical interests:"
|
||||
msgstr "Musikalische Interessen:"
|
||||
|
||||
#: include/identity.php:727
|
||||
#: include/identity.php:769
|
||||
msgid "Books, literature:"
|
||||
msgstr "Literatur/Bücher:"
|
||||
|
||||
#: include/identity.php:731
|
||||
#: include/identity.php:773
|
||||
msgid "Television:"
|
||||
msgstr "Fernsehen:"
|
||||
|
||||
#: include/identity.php:735
|
||||
#: include/identity.php:777
|
||||
msgid "Film/dance/culture/entertainment:"
|
||||
msgstr "Filme/Tänze/Kultur/Unterhaltung:"
|
||||
|
||||
#: include/identity.php:739
|
||||
#: include/identity.php:781
|
||||
msgid "Love/Romance:"
|
||||
msgstr "Liebesleben:"
|
||||
|
||||
#: include/identity.php:743
|
||||
#: include/identity.php:785
|
||||
msgid "Work/employment:"
|
||||
msgstr "Arbeit/Beschäftigung:"
|
||||
|
||||
#: include/identity.php:747
|
||||
#: include/identity.php:789
|
||||
msgid "School/education:"
|
||||
msgstr "Schule/Ausbildung:"
|
||||
|
||||
#: include/identity.php:752
|
||||
#: include/identity.php:794
|
||||
msgid "Forums:"
|
||||
msgstr "Foren:"
|
||||
|
||||
#: include/identity.php:761 mod/events.php:530
|
||||
#: include/identity.php:805 mod/events.php:532
|
||||
msgid "Basic"
|
||||
msgstr "Allgemein"
|
||||
|
||||
#: include/identity.php:762 mod/admin.php:1181 mod/contacts.php:900
|
||||
#: mod/events.php:531
|
||||
#: include/identity.php:806 mod/admin.php:1183 mod/contacts.php:908
|
||||
#: mod/events.php:533
|
||||
msgid "Advanced"
|
||||
msgstr "Erweitert"
|
||||
|
||||
#: include/identity.php:788 mod/follow.php:182 mod/unfollow.php:133
|
||||
#: mod/contacts.php:866
|
||||
#: include/identity.php:831 include/nav.php:86 mod/contacts.php:675
|
||||
#: mod/contacts.php:871 view/theme/frio/theme.php:256
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#: include/identity.php:834 mod/contacts.php:874 mod/follow.php:183
|
||||
#: mod/unfollow.php:132
|
||||
msgid "Status Messages and Posts"
|
||||
msgstr "Statusnachrichten und Beiträge"
|
||||
|
||||
#: include/identity.php:796 mod/contacts.php:874
|
||||
#: include/identity.php:842 mod/contacts.php:882
|
||||
msgid "Profile Details"
|
||||
msgstr "Profildetails"
|
||||
|
||||
#: include/identity.php:804 mod/photos.php:97
|
||||
#: include/identity.php:847 include/nav.php:88 mod/fbrowser.php:34
|
||||
#: view/theme/frio/theme.php:258
|
||||
msgid "Photos"
|
||||
msgstr "Bilder"
|
||||
|
||||
#: include/identity.php:850 mod/photos.php:99
|
||||
msgid "Photo Albums"
|
||||
msgstr "Fotoalben"
|
||||
|
||||
#: include/identity.php:843 mod/notes.php:49
|
||||
#: include/identity.php:855 include/identity.php:858 include/nav.php:89
|
||||
#: view/theme/frio/theme.php:259
|
||||
msgid "Videos"
|
||||
msgstr "Videos"
|
||||
|
||||
#: include/identity.php:867 include/identity.php:878 include/nav.php:90
|
||||
#: include/nav.php:154 mod/cal.php:276 mod/events.php:385
|
||||
#: view/theme/frio/theme.php:260 view/theme/frio/theme.php:264
|
||||
msgid "Events"
|
||||
msgstr "Veranstaltungen"
|
||||
|
||||
#: include/identity.php:870 include/identity.php:881 include/nav.php:154
|
||||
#: view/theme/frio/theme.php:264
|
||||
msgid "Events and Calendar"
|
||||
msgstr "Ereignisse und Kalender"
|
||||
|
||||
#: include/identity.php:889 mod/notes.php:50
|
||||
msgid "Personal Notes"
|
||||
msgstr "Persönliche Notizen"
|
||||
|
||||
#: include/identity.php:846
|
||||
#: include/identity.php:892
|
||||
msgid "Only You Can See This"
|
||||
msgstr "Nur Du kannst das sehen"
|
||||
|
||||
#: include/items.php:1731 mod/dfrn_request.php:760 mod/dfrn_confirm.php:739
|
||||
#: include/identity.php:900 include/identity.php:903 include/nav.php:133
|
||||
#: include/nav.php:197 include/text.php:1056 mod/contacts.php:830
|
||||
#: mod/contacts.php:891 mod/viewcontacts.php:126 view/theme/frio/theme.php:267
|
||||
msgid "Contacts"
|
||||
msgstr "Kontakte"
|
||||
|
||||
#: include/items.php:1731 mod/dfrn_confirm.php:742 mod/dfrn_request.php:762
|
||||
msgid "[Name Withheld]"
|
||||
msgstr "[Name unterdrückt]"
|
||||
|
||||
#: include/items.php:2106 mod/viewsrc.php:16 mod/notice.php:18
|
||||
#: mod/admin.php:258 mod/admin.php:1687 mod/admin.php:1938 mod/display.php:106
|
||||
#: mod/display.php:279 mod/display.php:487
|
||||
#: include/items.php:2100 mod/admin.php:260 mod/admin.php:1687
|
||||
#: mod/admin.php:1938 mod/display.php:108 mod/display.php:279
|
||||
#: mod/display.php:487 mod/notice.php:19 mod/viewsrc.php:17
|
||||
msgid "Item not found."
|
||||
msgstr "Beitrag nicht gefunden."
|
||||
|
||||
#: include/items.php:2149
|
||||
#: include/items.php:2143
|
||||
msgid "Do you really want to delete this item?"
|
||||
msgstr "Möchtest Du wirklich dieses Item löschen?"
|
||||
|
||||
#: include/items.php:2151 mod/api.php:107 mod/dfrn_request.php:881
|
||||
#: mod/follow.php:150 mod/message.php:207 mod/suggest.php:32
|
||||
#: mod/contacts.php:466 mod/profiles.php:639 mod/profiles.php:642
|
||||
#: mod/profiles.php:669 mod/register.php:250 mod/settings.php:1158
|
||||
#: mod/settings.php:1164 mod/settings.php:1171 mod/settings.php:1175
|
||||
#: mod/settings.php:1180 mod/settings.php:1185 mod/settings.php:1190
|
||||
#: mod/settings.php:1195 mod/settings.php:1221 mod/settings.php:1222
|
||||
#: mod/settings.php:1223 mod/settings.php:1224 mod/settings.php:1225
|
||||
#: include/items.php:2145 mod/api.php:109 mod/contacts.php:467
|
||||
#: mod/dfrn_request.php:883 mod/follow.php:151 mod/message.php:209
|
||||
#: mod/profiles.php:643 mod/profiles.php:646 mod/profiles.php:673
|
||||
#: mod/register.php:252 mod/settings.php:1155 mod/settings.php:1161
|
||||
#: mod/settings.php:1168 mod/settings.php:1172 mod/settings.php:1177
|
||||
#: mod/settings.php:1182 mod/settings.php:1187 mod/settings.php:1192
|
||||
#: mod/settings.php:1218 mod/settings.php:1219 mod/settings.php:1220
|
||||
#: mod/settings.php:1221 mod/settings.php:1222 mod/suggest.php:36
|
||||
msgid "Yes"
|
||||
msgstr "Ja"
|
||||
|
||||
#: include/items.php:2290 mod/api.php:28 mod/api.php:33 mod/attach.php:35
|
||||
#: mod/common.php:20 mod/crepair.php:105 mod/nogroup.php:29
|
||||
#: mod/viewcontacts.php:49 mod/uimport.php:26 mod/allfriends.php:15
|
||||
#: mod/cal.php:302 mod/editpost.php:13 mod/follow.php:14 mod/follow.php:55
|
||||
#: mod/follow.php:118 mod/group.php:21 mod/invite.php:18 mod/invite.php:106
|
||||
#: mod/manage.php:104 mod/message.php:49 mod/message.php:172
|
||||
#: mod/notifications.php:74 mod/repair_ostatus.php:12 mod/wallmessage.php:12
|
||||
#: mod/wallmessage.php:36 mod/wallmessage.php:76 mod/wallmessage.php:100
|
||||
#: mod/delegate.php:15 mod/suggest.php:58 mod/unfollow.php:14
|
||||
#: mod/unfollow.php:57 mod/unfollow.php:90 mod/contacts.php:374
|
||||
#: mod/dfrn_confirm.php:65 mod/dirfind.php:17 mod/display.php:484
|
||||
#: mod/events.php:190 mod/fsuggest.php:81 mod/item.php:199 mod/item.php:211
|
||||
#: mod/mood.php:118 mod/network.php:17 mod/notes.php:25
|
||||
#: mod/ostatus_subscribe.php:12 mod/photos.php:170 mod/photos.php:1095
|
||||
#: mod/poke.php:157 mod/profile_photo.php:21 mod/profile_photo.php:181
|
||||
#: mod/profile_photo.php:192 mod/profile_photo.php:205 mod/profiles.php:168
|
||||
#: mod/profiles.php:606 mod/register.php:47 mod/regmod.php:108
|
||||
#: mod/settings.php:28 mod/settings.php:130 mod/settings.php:678
|
||||
#: mod/wall_attach.php:69 mod/wall_attach.php:72 mod/wall_upload.php:102
|
||||
#: mod/wall_upload.php:105 index.php:412
|
||||
#: include/items.php:2272 mod/allfriends.php:18 mod/api.php:30 mod/api.php:35
|
||||
#: mod/attach.php:36 mod/cal.php:305 mod/common.php:23 mod/contacts.php:375
|
||||
#: mod/crepair.php:108 mod/delegate.php:16 mod/dfrn_confirm.php:69
|
||||
#: mod/dirfind.php:21 mod/display.php:484 mod/editpost.php:15
|
||||
#: mod/events.php:192 mod/follow.php:15 mod/follow.php:56 mod/follow.php:119
|
||||
#: mod/fsuggest.php:82 mod/group.php:24 mod/invite.php:20 mod/invite.php:108
|
||||
#: mod/item.php:203 mod/item.php:215 mod/manage.php:105 mod/message.php:51
|
||||
#: mod/message.php:174 mod/mood.php:119 mod/network.php:21 mod/nogroup.php:30
|
||||
#: mod/notes.php:26 mod/notifications.php:75 mod/ostatus_subscribe.php:13
|
||||
#: mod/photos.php:172 mod/photos.php:1097 mod/poke.php:158
|
||||
#: mod/profile_photo.php:23 mod/profile_photo.php:183
|
||||
#: mod/profile_photo.php:194 mod/profile_photo.php:207 mod/profiles.php:172
|
||||
#: mod/profiles.php:610 mod/register.php:49 mod/regmod.php:110
|
||||
#: mod/repair_ostatus.php:11 mod/settings.php:31 mod/settings.php:133
|
||||
#: mod/settings.php:683 mod/suggest.php:62 mod/uimport.php:27
|
||||
#: mod/unfollow.php:14 mod/unfollow.php:56 mod/unfollow.php:89
|
||||
#: mod/viewcontacts.php:51 mod/wall_attach.php:71 mod/wall_attach.php:74
|
||||
#: mod/wall_upload.php:103 mod/wall_upload.php:106 mod/wallmessage.php:13
|
||||
#: mod/wallmessage.php:37 mod/wallmessage.php:77 mod/wallmessage.php:101
|
||||
#: index.php:399
|
||||
msgid "Permission denied."
|
||||
msgstr "Zugriff verweigert."
|
||||
|
||||
#: include/items.php:2407
|
||||
#: include/items.php:2389
|
||||
msgid "Archives"
|
||||
msgstr "Archiv"
|
||||
|
||||
#: include/like.php:46
|
||||
#: include/like.php:47
|
||||
#, php-format
|
||||
msgid "%1$s is attending %2$s's %3$s"
|
||||
msgstr "%1$s nimmt an %2$ss %3$s teil."
|
||||
|
||||
#: include/like.php:51
|
||||
#: include/like.php:52
|
||||
#, php-format
|
||||
msgid "%1$s is not attending %2$s's %3$s"
|
||||
msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
|
||||
|
||||
#: include/like.php:56
|
||||
#: include/like.php:57
|
||||
#, php-format
|
||||
msgid "%1$s may attend %2$s's %3$s"
|
||||
msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
|
||||
|
||||
#: include/message.php:16 include/message.php:162
|
||||
#: include/message.php:17 include/message.php:163
|
||||
msgid "[no subject]"
|
||||
msgstr "[kein Betreff]"
|
||||
|
||||
#: include/network.php:714
|
||||
#: include/nav.php:40 mod/navigation.php:22
|
||||
msgid "Nothing new here"
|
||||
msgstr "Keine Neuigkeiten"
|
||||
|
||||
#: include/nav.php:44 mod/navigation.php:26
|
||||
msgid "Clear notifications"
|
||||
msgstr "Bereinige Benachrichtigungen"
|
||||
|
||||
#: include/nav.php:45 include/text.php:1049
|
||||
msgid "@name, !forum, #tags, content"
|
||||
msgstr "@name, !forum, #tags, content"
|
||||
|
||||
#: include/nav.php:83 view/theme/frio/theme.php:253 boot.php:901
|
||||
msgid "Logout"
|
||||
msgstr "Abmelden"
|
||||
|
||||
#: include/nav.php:83 view/theme/frio/theme.php:253
|
||||
msgid "End this session"
|
||||
msgstr "Diese Sitzung beenden"
|
||||
|
||||
#: include/nav.php:86 include/nav.php:166 view/theme/frio/theme.php:256
|
||||
msgid "Your posts and conversations"
|
||||
msgstr "Deine Beiträge und Unterhaltungen"
|
||||
|
||||
#: include/nav.php:87 view/theme/frio/theme.php:257
|
||||
msgid "Your profile page"
|
||||
msgstr "Deine Profilseite"
|
||||
|
||||
#: include/nav.php:88 view/theme/frio/theme.php:258
|
||||
msgid "Your photos"
|
||||
msgstr "Deine Fotos"
|
||||
|
||||
#: include/nav.php:89 view/theme/frio/theme.php:259
|
||||
msgid "Your videos"
|
||||
msgstr "Deine Videos"
|
||||
|
||||
#: include/nav.php:90 view/theme/frio/theme.php:260
|
||||
msgid "Your events"
|
||||
msgstr "Deine Ereignisse"
|
||||
|
||||
#: include/nav.php:91
|
||||
msgid "Personal notes"
|
||||
msgstr "Persönliche Notizen"
|
||||
|
||||
#: include/nav.php:91
|
||||
msgid "Your personal notes"
|
||||
msgstr "Deine persönlichen Notizen"
|
||||
|
||||
#: include/nav.php:100 mod/bookmarklet.php:15 boot.php:902
|
||||
msgid "Login"
|
||||
msgstr "Anmeldung"
|
||||
|
||||
#: include/nav.php:100
|
||||
msgid "Sign in"
|
||||
msgstr "Anmelden"
|
||||
|
||||
#: include/nav.php:110 include/nav.php:166
|
||||
#: src/Core/NotificationsManager.php:197
|
||||
msgid "Home"
|
||||
msgstr "Pinnwand"
|
||||
|
||||
#: include/nav.php:110
|
||||
msgid "Home Page"
|
||||
msgstr "Homepage"
|
||||
|
||||
#: include/nav.php:114 mod/register.php:296 boot.php:874
|
||||
msgid "Register"
|
||||
msgstr "Registrieren"
|
||||
|
||||
#: include/nav.php:114
|
||||
msgid "Create an account"
|
||||
msgstr "Nutzerkonto erstellen"
|
||||
|
||||
#: include/nav.php:120 mod/help.php:51 view/theme/vier/theme.php:292
|
||||
msgid "Help"
|
||||
msgstr "Hilfe"
|
||||
|
||||
#: include/nav.php:120
|
||||
msgid "Help and documentation"
|
||||
msgstr "Hilfe und Dokumentation"
|
||||
|
||||
#: include/nav.php:124
|
||||
msgid "Apps"
|
||||
msgstr "Apps"
|
||||
|
||||
#: include/nav.php:124
|
||||
msgid "Addon applications, utilities, games"
|
||||
msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
|
||||
|
||||
#: include/nav.php:128 include/text.php:1046 mod/search.php:148
|
||||
msgid "Search"
|
||||
msgstr "Suche"
|
||||
|
||||
#: include/nav.php:128
|
||||
msgid "Search site content"
|
||||
msgstr "Inhalt der Seite durchsuchen"
|
||||
|
||||
#: include/nav.php:131 include/text.php:1054
|
||||
msgid "Full Text"
|
||||
msgstr "Volltext"
|
||||
|
||||
#: include/nav.php:132 include/tags.php:234 include/text.php:1055
|
||||
msgid "Tags"
|
||||
msgstr "Tags"
|
||||
|
||||
#: include/nav.php:136 include/text.php:1059 view/theme/vier/theme.php:249
|
||||
#: src/Content/ForumManager.php:121
|
||||
msgid "Forums"
|
||||
msgstr "Foren"
|
||||
|
||||
#: include/nav.php:148 include/nav.php:150 mod/community.php:89
|
||||
msgid "Community"
|
||||
msgstr "Gemeinschaft"
|
||||
|
||||
#: include/nav.php:148
|
||||
msgid "Conversations on this site"
|
||||
msgstr "Unterhaltungen auf dieser Seite"
|
||||
|
||||
#: include/nav.php:150
|
||||
msgid "Conversations on the network"
|
||||
msgstr "Unterhaltungen im Netzwerk"
|
||||
|
||||
#: include/nav.php:157
|
||||
msgid "Directory"
|
||||
msgstr "Verzeichnis"
|
||||
|
||||
#: include/nav.php:157
|
||||
msgid "People directory"
|
||||
msgstr "Nutzerverzeichnis"
|
||||
|
||||
#: include/nav.php:159
|
||||
msgid "Information"
|
||||
msgstr "Information"
|
||||
|
||||
#: include/nav.php:159
|
||||
msgid "Information about this friendica instance"
|
||||
msgstr "Informationen zu dieser Friendica Instanz"
|
||||
|
||||
#: include/nav.php:163 mod/admin.php:592 view/theme/frio/theme.php:263
|
||||
#: src/Core/NotificationsManager.php:183
|
||||
msgid "Network"
|
||||
msgstr "Netzwerk"
|
||||
|
||||
#: include/nav.php:163 view/theme/frio/theme.php:263
|
||||
msgid "Conversations from your friends"
|
||||
msgstr "Unterhaltungen Deiner Kontakte"
|
||||
|
||||
#: include/nav.php:164
|
||||
msgid "Network Reset"
|
||||
msgstr "Netzwerk zurücksetzen"
|
||||
|
||||
#: include/nav.php:164
|
||||
msgid "Load Network page with no filters"
|
||||
msgstr "Netzwerk-Seite ohne Filter laden"
|
||||
|
||||
#: include/nav.php:171 src/Core/NotificationsManager.php:204
|
||||
msgid "Introductions"
|
||||
msgstr "Kontaktanfragen"
|
||||
|
||||
#: include/nav.php:171
|
||||
msgid "Friend Requests"
|
||||
msgstr "Kontaktanfragen"
|
||||
|
||||
#: include/nav.php:174 mod/notifications.php:100
|
||||
msgid "Notifications"
|
||||
msgstr "Benachrichtigungen"
|
||||
|
||||
#: include/nav.php:175
|
||||
msgid "See all notifications"
|
||||
msgstr "Alle Benachrichtigungen anzeigen"
|
||||
|
||||
#: include/nav.php:176 mod/settings.php:916
|
||||
msgid "Mark as seen"
|
||||
msgstr "Als gelesen markieren"
|
||||
|
||||
#: include/nav.php:176
|
||||
msgid "Mark all system notifications seen"
|
||||
msgstr "Markiere alle Systembenachrichtigungen als gelesen"
|
||||
|
||||
#: include/nav.php:180 mod/message.php:182 view/theme/frio/theme.php:265
|
||||
msgid "Messages"
|
||||
msgstr "Nachrichten"
|
||||
|
||||
#: include/nav.php:180 view/theme/frio/theme.php:265
|
||||
msgid "Private mail"
|
||||
msgstr "Private E-Mail"
|
||||
|
||||
#: include/nav.php:181
|
||||
msgid "Inbox"
|
||||
msgstr "Eingang"
|
||||
|
||||
#: include/nav.php:182
|
||||
msgid "Outbox"
|
||||
msgstr "Ausgang"
|
||||
|
||||
#: include/nav.php:183 mod/message.php:21
|
||||
msgid "New Message"
|
||||
msgstr "Neue Nachricht"
|
||||
|
||||
#: include/nav.php:186
|
||||
msgid "Manage"
|
||||
msgstr "Verwalten"
|
||||
|
||||
#: include/nav.php:186
|
||||
msgid "Manage other pages"
|
||||
msgstr "Andere Seiten verwalten"
|
||||
|
||||
#: include/nav.php:189 mod/settings.php:84
|
||||
msgid "Delegations"
|
||||
msgstr "Delegationen"
|
||||
|
||||
#: include/nav.php:189 mod/delegate.php:131
|
||||
msgid "Delegate Page Management"
|
||||
msgstr "Delegiere das Management für die Seite"
|
||||
|
||||
#: include/nav.php:191 mod/admin.php:1740 mod/admin.php:2016
|
||||
#: mod/newmember.php:16 mod/settings.php:114 view/theme/frio/theme.php:266
|
||||
msgid "Settings"
|
||||
msgstr "Einstellungen"
|
||||
|
||||
#: include/nav.php:191 view/theme/frio/theme.php:266
|
||||
msgid "Account settings"
|
||||
msgstr "Kontoeinstellungen"
|
||||
|
||||
#: include/nav.php:194
|
||||
msgid "Manage/Edit Profiles"
|
||||
msgstr "Profile Verwalten/Editieren"
|
||||
|
||||
#: include/nav.php:197 view/theme/frio/theme.php:267
|
||||
msgid "Manage/edit friends and contacts"
|
||||
msgstr " Kontakte verwalten/editieren"
|
||||
|
||||
#: include/nav.php:202 mod/admin.php:206
|
||||
msgid "Admin"
|
||||
msgstr "Administration"
|
||||
|
||||
#: include/nav.php:202
|
||||
msgid "Site setup and configuration"
|
||||
msgstr "Einstellungen der Seite und Konfiguration"
|
||||
|
||||
#: include/nav.php:205
|
||||
msgid "Navigation"
|
||||
msgstr "Navigation"
|
||||
|
||||
#: include/nav.php:205
|
||||
msgid "Site map"
|
||||
msgstr "Sitemap"
|
||||
|
||||
#: include/network.php:732
|
||||
msgid "view full size"
|
||||
msgstr "Volle Größe anzeigen"
|
||||
|
||||
#: include/ostatus.php:1713
|
||||
#, php-format
|
||||
msgid "%s is now following %s."
|
||||
msgstr "%s folgt nun %s"
|
||||
#: include/oembed.php:256
|
||||
msgid "Embedded content"
|
||||
msgstr "Eingebetteter Inhalt"
|
||||
|
||||
#: include/ostatus.php:1714
|
||||
msgid "following"
|
||||
msgstr "folgen"
|
||||
#: include/oembed.php:264
|
||||
msgid "Embedding disabled"
|
||||
msgstr "Einbettungen deaktiviert"
|
||||
|
||||
#: include/ostatus.php:1717
|
||||
#, php-format
|
||||
msgid "%s stopped following %s."
|
||||
msgstr "%s hat aufgehört %s zu folgen"
|
||||
#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:43
|
||||
#: mod/fbrowser.php:65 mod/photos.php:193 mod/photos.php:1111
|
||||
#: mod/photos.php:1230 mod/photos.php:1247 mod/photos.php:1785
|
||||
#: mod/photos.php:1799
|
||||
msgid "Contact Photos"
|
||||
msgstr "Kontaktbilder"
|
||||
|
||||
#: include/ostatus.php:1718
|
||||
msgid "stopped following"
|
||||
msgstr "wird nicht mehr gefolgt"
|
||||
#: include/security.php:67
|
||||
msgid "Welcome "
|
||||
msgstr "Willkommen "
|
||||
|
||||
#: include/text.php:315
|
||||
#: include/security.php:68
|
||||
msgid "Please upload a profile photo."
|
||||
msgstr "Bitte lade ein Profilbild hoch."
|
||||
|
||||
#: include/security.php:70
|
||||
msgid "Welcome back "
|
||||
msgstr "Willkommen zurück "
|
||||
|
||||
#: include/security.php:427
|
||||
msgid ""
|
||||
"The form security token was not correct. This probably happened because the "
|
||||
"form has been opened for too long (>3 hours) before submitting it."
|
||||
msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
|
||||
|
||||
#: include/text.php:289
|
||||
msgid "newer"
|
||||
msgstr "neuer"
|
||||
|
||||
#: include/text.php:316
|
||||
#: include/text.php:290
|
||||
msgid "older"
|
||||
msgstr "älter"
|
||||
|
||||
#: include/text.php:321
|
||||
#: include/text.php:295
|
||||
msgid "first"
|
||||
msgstr "erste"
|
||||
|
||||
#: include/text.php:322
|
||||
#: include/text.php:296
|
||||
msgid "prev"
|
||||
msgstr "vorige"
|
||||
|
||||
#: include/text.php:356
|
||||
#: include/text.php:330
|
||||
msgid "next"
|
||||
msgstr "nächste"
|
||||
|
||||
#: include/text.php:357
|
||||
#: include/text.php:331
|
||||
msgid "last"
|
||||
msgstr "letzte"
|
||||
|
||||
#: include/text.php:411
|
||||
#: include/text.php:385
|
||||
msgid "Loading more entries..."
|
||||
msgstr "lade weitere Einträge..."
|
||||
|
||||
#: include/text.php:412
|
||||
#: include/text.php:386
|
||||
msgid "The end"
|
||||
msgstr "Das Ende"
|
||||
|
||||
#: include/text.php:961
|
||||
#: include/text.php:922
|
||||
msgid "No contacts"
|
||||
msgstr "Keine Kontakte"
|
||||
|
||||
#: include/text.php:985
|
||||
#: include/text.php:946
|
||||
#, php-format
|
||||
msgid "%d Contact"
|
||||
msgid_plural "%d Contacts"
|
||||
msgstr[0] "%d Kontakt"
|
||||
msgstr[1] "%d Kontakte"
|
||||
|
||||
#: include/text.php:998
|
||||
#: include/text.php:959
|
||||
msgid "View Contacts"
|
||||
msgstr "Kontakte anzeigen"
|
||||
|
||||
#: include/text.php:1088 mod/filer.php:32 mod/editpost.php:102
|
||||
#: mod/notes.php:64
|
||||
#: include/text.php:1047 mod/editpost.php:104 mod/filer.php:33
|
||||
#: mod/notes.php:65
|
||||
msgid "Save"
|
||||
msgstr "Speichern"
|
||||
|
||||
#: include/text.php:1149
|
||||
#: include/text.php:1106
|
||||
msgid "poke"
|
||||
msgstr "anstupsen"
|
||||
|
||||
#: include/text.php:1149
|
||||
#: include/text.php:1106
|
||||
msgid "poked"
|
||||
msgstr "stupste"
|
||||
|
||||
#: include/text.php:1150
|
||||
#: include/text.php:1107
|
||||
msgid "ping"
|
||||
msgstr "anpingen"
|
||||
|
||||
#: include/text.php:1150
|
||||
#: include/text.php:1107
|
||||
msgid "pinged"
|
||||
msgstr "pingte"
|
||||
|
||||
#: include/text.php:1151
|
||||
#: include/text.php:1108
|
||||
msgid "prod"
|
||||
msgstr "knuffen"
|
||||
|
||||
#: include/text.php:1151
|
||||
#: include/text.php:1108
|
||||
msgid "prodded"
|
||||
msgstr "knuffte"
|
||||
|
||||
#: include/text.php:1152
|
||||
#: include/text.php:1109
|
||||
msgid "slap"
|
||||
msgstr "ohrfeigen"
|
||||
|
||||
#: include/text.php:1152
|
||||
#: include/text.php:1109
|
||||
msgid "slapped"
|
||||
msgstr "ohrfeigte"
|
||||
|
||||
#: include/text.php:1153
|
||||
#: include/text.php:1110
|
||||
msgid "finger"
|
||||
msgstr "befummeln"
|
||||
|
||||
#: include/text.php:1153
|
||||
#: include/text.php:1110
|
||||
msgid "fingered"
|
||||
msgstr "befummelte"
|
||||
|
||||
#: include/text.php:1154
|
||||
#: include/text.php:1111
|
||||
msgid "rebuff"
|
||||
msgstr "eine Abfuhr erteilen"
|
||||
|
||||
#: include/text.php:1154
|
||||
#: include/text.php:1111
|
||||
msgid "rebuffed"
|
||||
msgstr "abfuhrerteilte"
|
||||
|
||||
#: include/text.php:1168
|
||||
#: include/text.php:1125
|
||||
msgid "happy"
|
||||
msgstr "glücklich"
|
||||
|
||||
#: include/text.php:1169
|
||||
#: include/text.php:1126
|
||||
msgid "sad"
|
||||
msgstr "traurig"
|
||||
|
||||
#: include/text.php:1170
|
||||
#: include/text.php:1127
|
||||
msgid "mellow"
|
||||
msgstr "sanft"
|
||||
|
||||
#: include/text.php:1171
|
||||
#: include/text.php:1128
|
||||
msgid "tired"
|
||||
msgstr "müde"
|
||||
|
||||
#: include/text.php:1172
|
||||
#: include/text.php:1129
|
||||
msgid "perky"
|
||||
msgstr "frech"
|
||||
|
||||
#: include/text.php:1173
|
||||
#: include/text.php:1130
|
||||
msgid "angry"
|
||||
msgstr "sauer"
|
||||
|
||||
#: include/text.php:1174
|
||||
#: include/text.php:1131
|
||||
msgid "stupified"
|
||||
msgstr "verblüfft"
|
||||
|
||||
#: include/text.php:1175
|
||||
#: include/text.php:1132
|
||||
msgid "puzzled"
|
||||
msgstr "verwirrt"
|
||||
|
||||
#: include/text.php:1176
|
||||
#: include/text.php:1133
|
||||
msgid "interested"
|
||||
msgstr "interessiert"
|
||||
|
||||
#: include/text.php:1177
|
||||
#: include/text.php:1134
|
||||
msgid "bitter"
|
||||
msgstr "verbittert"
|
||||
|
||||
#: include/text.php:1178
|
||||
#: include/text.php:1135
|
||||
msgid "cheerful"
|
||||
msgstr "fröhlich"
|
||||
|
||||
#: include/text.php:1179
|
||||
#: include/text.php:1136
|
||||
msgid "alive"
|
||||
msgstr "lebendig"
|
||||
|
||||
#: include/text.php:1180
|
||||
#: include/text.php:1137
|
||||
msgid "annoyed"
|
||||
msgstr "verärgert"
|
||||
|
||||
#: include/text.php:1181
|
||||
#: include/text.php:1138
|
||||
msgid "anxious"
|
||||
msgstr "unruhig"
|
||||
|
||||
#: include/text.php:1182
|
||||
#: include/text.php:1139
|
||||
msgid "cranky"
|
||||
msgstr "schrullig"
|
||||
|
||||
#: include/text.php:1183
|
||||
#: include/text.php:1140
|
||||
msgid "disturbed"
|
||||
msgstr "verstört"
|
||||
|
||||
#: include/text.php:1184
|
||||
#: include/text.php:1141
|
||||
msgid "frustrated"
|
||||
msgstr "frustriert"
|
||||
|
||||
#: include/text.php:1185
|
||||
#: include/text.php:1142
|
||||
msgid "motivated"
|
||||
msgstr "motiviert"
|
||||
|
||||
#: include/text.php:1186
|
||||
#: include/text.php:1143
|
||||
msgid "relaxed"
|
||||
msgstr "entspannt"
|
||||
|
||||
#: include/text.php:1187
|
||||
#: include/text.php:1144
|
||||
msgid "surprised"
|
||||
msgstr "überrascht"
|
||||
|
||||
#: include/text.php:1220
|
||||
#: include/text.php:1177
|
||||
msgid "Sund"
|
||||
msgstr "So"
|
||||
|
||||
#: include/text.php:1223
|
||||
#: include/text.php:1180
|
||||
msgid "Sep"
|
||||
msgstr "Sep"
|
||||
|
||||
#: include/text.php:1421 mod/videos.php:390
|
||||
#: include/text.php:1377 mod/videos.php:387
|
||||
msgid "View Video"
|
||||
msgstr "Video ansehen"
|
||||
|
||||
#: include/text.php:1438
|
||||
#: include/text.php:1394
|
||||
msgid "bytes"
|
||||
msgstr "Byte"
|
||||
|
||||
#: include/text.php:1473 include/text.php:1484
|
||||
#: include/text.php:1429 include/text.php:1440
|
||||
msgid "Click to open/close"
|
||||
msgstr "Zum öffnen/schließen klicken"
|
||||
|
||||
#: include/text.php:1612
|
||||
#: include/text.php:1568
|
||||
msgid "View on separate page"
|
||||
msgstr "Auf separater Seite ansehen"
|
||||
|
||||
#: include/text.php:1613
|
||||
#: include/text.php:1569
|
||||
msgid "view on separate page"
|
||||
msgstr "auf separater Seite ansehen"
|
||||
|
||||
#: include/text.php:1898
|
||||
#: include/text.php:1787
|
||||
msgid "activity"
|
||||
msgstr "Aktivität"
|
||||
|
||||
#: include/text.php:1900 object/Item.php:416 object/Item.php:428
|
||||
#: include/text.php:1789 src/Object/Item.php:421 src/Object/Item.php:433
|
||||
msgid "comment"
|
||||
msgid_plural "comments"
|
||||
msgstr[0] "Kommentar"
|
||||
msgstr[1] "Kommentare"
|
||||
|
||||
#: include/text.php:1903
|
||||
#: include/text.php:1792
|
||||
msgid "post"
|
||||
msgstr "Beitrag"
|
||||
|
||||
#: include/text.php:2069
|
||||
#: include/text.php:1955
|
||||
msgid "Item filed"
|
||||
msgstr "Beitrag abgelegt"
|
||||
|
||||
#: include/uimport.php:81
|
||||
#: include/uimport.php:82
|
||||
msgid "Error decoding account file"
|
||||
msgstr "Fehler beim Verarbeiten der Account Datei"
|
||||
|
||||
#: include/uimport.php:87
|
||||
#: include/uimport.php:88
|
||||
msgid "Error! No version data in file! This is not a Friendica account file?"
|
||||
msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"
|
||||
|
||||
#: include/uimport.php:104 include/uimport.php:115
|
||||
#: include/uimport.php:105 include/uimport.php:116
|
||||
msgid "Error! Cannot check nickname"
|
||||
msgstr "Fehler! Konnte den Nickname nicht überprüfen."
|
||||
|
||||
#: include/uimport.php:108 include/uimport.php:119
|
||||
#: include/uimport.php:109 include/uimport.php:120
|
||||
#, php-format
|
||||
msgid "User '%s' already exists on this server!"
|
||||
msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
|
||||
|
|
@ -3019,81 +2913,81 @@ msgstr[1] "%d Kontakte nicht importiert"
|
|||
msgid "Done. You can now login with your username and password"
|
||||
msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"
|
||||
|
||||
#: include/user.php:41 mod/settings.php:373
|
||||
#: include/user.php:42 mod/settings.php:378
|
||||
msgid "Passwords do not match. Password unchanged."
|
||||
msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
|
||||
|
||||
#: include/user.php:50
|
||||
#: include/user.php:51
|
||||
msgid "An invitation is required."
|
||||
msgstr "Du benötigst eine Einladung."
|
||||
|
||||
#: include/user.php:55
|
||||
#: include/user.php:56
|
||||
msgid "Invitation could not be verified."
|
||||
msgstr "Die Einladung konnte nicht überprüft werden."
|
||||
|
||||
#: include/user.php:63
|
||||
#: include/user.php:64
|
||||
msgid "Invalid OpenID url"
|
||||
msgstr "Ungültige OpenID URL"
|
||||
|
||||
#: include/user.php:84
|
||||
#: include/user.php:85
|
||||
msgid "Please enter the required information."
|
||||
msgstr "Bitte trage die erforderlichen Informationen ein."
|
||||
|
||||
#: include/user.php:98
|
||||
#: include/user.php:99
|
||||
msgid "Please use a shorter name."
|
||||
msgstr "Bitte verwende einen kürzeren Namen."
|
||||
|
||||
#: include/user.php:100
|
||||
#: include/user.php:101
|
||||
msgid "Name too short."
|
||||
msgstr "Der Name ist zu kurz."
|
||||
|
||||
#: include/user.php:108
|
||||
#: include/user.php:109
|
||||
msgid "That doesn't appear to be your full (First Last) name."
|
||||
msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein."
|
||||
|
||||
#: include/user.php:113
|
||||
#: include/user.php:114
|
||||
msgid "Your email domain is not among those allowed on this site."
|
||||
msgstr "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."
|
||||
|
||||
#: include/user.php:116
|
||||
#: include/user.php:117
|
||||
msgid "Not a valid email address."
|
||||
msgstr "Keine gültige E-Mail-Adresse."
|
||||
|
||||
#: include/user.php:129
|
||||
#: include/user.php:130
|
||||
msgid "Cannot use that email."
|
||||
msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
|
||||
|
||||
#: include/user.php:135
|
||||
#: include/user.php:136
|
||||
msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
|
||||
msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen."
|
||||
|
||||
#: include/user.php:142 include/user.php:224
|
||||
#: include/user.php:143 include/user.php:225
|
||||
msgid "Nickname is already registered. Please choose another."
|
||||
msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
|
||||
|
||||
#: include/user.php:152
|
||||
#: include/user.php:153
|
||||
msgid ""
|
||||
"Nickname was once registered here and may not be re-used. Please choose "
|
||||
"another."
|
||||
msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
|
||||
|
||||
#: include/user.php:168
|
||||
#: include/user.php:169
|
||||
msgid "SERIOUS ERROR: Generation of security keys failed."
|
||||
msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
|
||||
|
||||
#: include/user.php:210
|
||||
#: include/user.php:211
|
||||
msgid "An error occurred during registration. Please try again."
|
||||
msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
|
||||
|
||||
#: include/user.php:233 view/theme/duepuntozero/config.php:47
|
||||
#: include/user.php:234 view/theme/duepuntozero/config.php:49
|
||||
msgid "default"
|
||||
msgstr "Standard"
|
||||
|
||||
#: include/user.php:243
|
||||
#: include/user.php:244
|
||||
msgid "An error occurred creating your default profile. Please try again."
|
||||
msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
|
||||
|
||||
#: include/user.php:393
|
||||
#: include/user.php:394
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
|
|
@ -3102,12 +2996,12 @@ msgid ""
|
|||
"\t"
|
||||
msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde muss noch vom Admin des Knotens geprüft werden."
|
||||
|
||||
#: include/user.php:403
|
||||
#: include/user.php:404
|
||||
#, php-format
|
||||
msgid "Registration at %s"
|
||||
msgstr "Registrierung als %s"
|
||||
|
||||
#: include/user.php:413
|
||||
#: include/user.php:414
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
|
|
@ -3116,7 +3010,7 @@ msgid ""
|
|||
"\t"
|
||||
msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet."
|
||||
|
||||
#: include/user.php:417
|
||||
#: include/user.php:418
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
|
|
@ -3146,59 +3040,11 @@ msgid ""
|
|||
"\t\tThank you and welcome to %2$s."
|
||||
msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2$s."
|
||||
|
||||
#: include/user.php:449 mod/admin.php:1430
|
||||
#: include/user.php:450 mod/admin.php:1432
|
||||
#, php-format
|
||||
msgid "Registration details for %s"
|
||||
msgstr "Details der Registration von %s"
|
||||
|
||||
#: mod/api.php:78 mod/api.php:104
|
||||
msgid "Authorize application connection"
|
||||
msgstr "Verbindung der Applikation autorisieren"
|
||||
|
||||
#: mod/api.php:79
|
||||
msgid "Return to your app and insert this Securty Code:"
|
||||
msgstr "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
|
||||
|
||||
#: mod/api.php:91
|
||||
msgid "Please login to continue."
|
||||
msgstr "Bitte melde Dich an um fortzufahren."
|
||||
|
||||
#: mod/api.php:106
|
||||
msgid ""
|
||||
"Do you want to authorize this application to access your posts and contacts,"
|
||||
" and/or create new posts for you?"
|
||||
msgstr "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?"
|
||||
|
||||
#: mod/api.php:108 mod/dfrn_request.php:881 mod/follow.php:150
|
||||
#: mod/profiles.php:639 mod/profiles.php:643 mod/profiles.php:669
|
||||
#: mod/register.php:251 mod/settings.php:1158 mod/settings.php:1164
|
||||
#: mod/settings.php:1171 mod/settings.php:1175 mod/settings.php:1180
|
||||
#: mod/settings.php:1185 mod/settings.php:1190 mod/settings.php:1195
|
||||
#: mod/settings.php:1221 mod/settings.php:1222 mod/settings.php:1223
|
||||
#: mod/settings.php:1224 mod/settings.php:1225
|
||||
msgid "No"
|
||||
msgstr "Nein"
|
||||
|
||||
#: mod/apps.php:9 index.php:259
|
||||
msgid "You must be logged in to use addons. "
|
||||
msgstr "Sie müssen angemeldet sein um Addons benutzen zu können."
|
||||
|
||||
#: mod/apps.php:14
|
||||
msgid "Applications"
|
||||
msgstr "Anwendungen"
|
||||
|
||||
#: mod/apps.php:17
|
||||
msgid "No installed applications."
|
||||
msgstr "Keine Applikationen installiert."
|
||||
|
||||
#: mod/attach.php:10
|
||||
msgid "Item not available."
|
||||
msgstr "Beitrag nicht verfügbar."
|
||||
|
||||
#: mod/attach.php:22
|
||||
msgid "Item was not found."
|
||||
msgstr "Beitrag konnte nicht gefunden werden."
|
||||
|
||||
#: mod/babel.php:18
|
||||
msgid "Source (bbcode) text:"
|
||||
msgstr "Quelle (bbcode) Text:"
|
||||
|
|
@ -3247,14 +3093,6 @@ msgstr "Originaltext (Diaspora Format): "
|
|||
msgid "diaspora2bb: "
|
||||
msgstr "diaspora2bb: "
|
||||
|
||||
#: mod/common.php:93
|
||||
msgid "No contacts in common."
|
||||
msgstr "Keine gemeinsamen Kontakte."
|
||||
|
||||
#: mod/common.php:143 mod/contacts.php:893
|
||||
msgid "Common Friends"
|
||||
msgstr "Gemeinsame Kontakte"
|
||||
|
||||
#: mod/credits.php:19
|
||||
msgid "Credits"
|
||||
msgstr "Credits"
|
||||
|
|
@ -3266,859 +3104,38 @@ msgid ""
|
|||
"code or the translation of Friendica. Thank you all!"
|
||||
msgstr "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !"
|
||||
|
||||
#: mod/crepair.php:92
|
||||
msgid "Contact settings applied."
|
||||
msgstr "Einstellungen zum Kontakt angewandt."
|
||||
|
||||
#: mod/crepair.php:94
|
||||
msgid "Contact update failed."
|
||||
msgstr "Konnte den Kontakt nicht aktualisieren."
|
||||
|
||||
#: mod/crepair.php:119 mod/dfrn_confirm.php:130 mod/fsuggest.php:23
|
||||
#: mod/fsuggest.php:95
|
||||
msgid "Contact not found."
|
||||
msgstr "Kontakt nicht gefunden."
|
||||
|
||||
#: mod/crepair.php:125
|
||||
msgid ""
|
||||
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
|
||||
" information your communications with this contact may stop working."
|
||||
msgstr "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."
|
||||
|
||||
#: mod/crepair.php:126
|
||||
msgid ""
|
||||
"Please use your browser 'Back' button <strong>now</strong> if you are "
|
||||
"uncertain what to do on this page."
|
||||
msgstr "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst."
|
||||
|
||||
#: mod/crepair.php:139 mod/crepair.php:141
|
||||
msgid "No mirroring"
|
||||
msgstr "Kein Spiegeln"
|
||||
|
||||
#: mod/crepair.php:139
|
||||
msgid "Mirror as forwarded posting"
|
||||
msgstr "Spiegeln als weitergeleitete Beiträge"
|
||||
|
||||
#: mod/crepair.php:139 mod/crepair.php:141
|
||||
msgid "Mirror as my own posting"
|
||||
msgstr "Spiegeln als meine eigenen Beiträge"
|
||||
|
||||
#: mod/crepair.php:155
|
||||
msgid "Return to contact editor"
|
||||
msgstr "Zurück zum Kontakteditor"
|
||||
|
||||
#: mod/crepair.php:157
|
||||
msgid "Refetch contact data"
|
||||
msgstr "Kontaktdaten neu laden"
|
||||
|
||||
#: mod/crepair.php:159 mod/invite.php:150 mod/localtime.php:47
|
||||
#: mod/manage.php:157 mod/message.php:338 mod/message.php:521
|
||||
#: mod/install.php:243 mod/install.php:283 mod/contacts.php:605
|
||||
#: mod/events.php:529 mod/fsuggest.php:110 mod/mood.php:141
|
||||
#: mod/photos.php:1127 mod/photos.php:1248 mod/photos.php:1574
|
||||
#: mod/photos.php:1623 mod/photos.php:1665 mod/photos.php:1745
|
||||
#: mod/poke.php:206 mod/profiles.php:680 object/Item.php:702
|
||||
#: view/theme/duepuntozero/config.php:65 view/theme/frio/config.php:108
|
||||
#: view/theme/quattro/config.php:71 view/theme/vier/config.php:114
|
||||
msgid "Submit"
|
||||
msgstr "Senden"
|
||||
|
||||
#: mod/crepair.php:161
|
||||
msgid "Remote Self"
|
||||
msgstr "Entfernte Konten"
|
||||
|
||||
#: mod/crepair.php:164
|
||||
msgid "Mirror postings from this contact"
|
||||
msgstr "Spiegle Beiträge dieses Kontakts"
|
||||
|
||||
#: mod/crepair.php:166
|
||||
msgid ""
|
||||
"Mark this contact as remote_self, this will cause friendica to repost new "
|
||||
"entries from this contact."
|
||||
msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden."
|
||||
|
||||
#: mod/crepair.php:170 mod/admin.php:1612 mod/admin.php:1625
|
||||
#: mod/admin.php:1638 mod/admin.php:1654 mod/settings.php:693
|
||||
#: mod/settings.php:719
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
#: mod/crepair.php:171
|
||||
msgid "Account Nickname"
|
||||
msgstr "Konto-Spitzname"
|
||||
|
||||
#: mod/crepair.php:172
|
||||
msgid "@Tagname - overrides Name/Nickname"
|
||||
msgstr "@Tagname - überschreibt Name/Spitzname"
|
||||
|
||||
#: mod/crepair.php:173
|
||||
msgid "Account URL"
|
||||
msgstr "Konto-URL"
|
||||
|
||||
#: mod/crepair.php:174
|
||||
msgid "Friend Request URL"
|
||||
msgstr "URL für Kontaktschaftsanfragen"
|
||||
|
||||
#: mod/crepair.php:175
|
||||
msgid "Friend Confirm URL"
|
||||
msgstr "URL für Bestätigungen von Kontaktanfragen"
|
||||
|
||||
#: mod/crepair.php:176
|
||||
msgid "Notification Endpoint URL"
|
||||
msgstr "URL-Endpunkt für Benachrichtigungen"
|
||||
|
||||
#: mod/crepair.php:177
|
||||
msgid "Poll/Feed URL"
|
||||
msgstr "Pull/Feed-URL"
|
||||
|
||||
#: mod/crepair.php:178
|
||||
msgid "New photo from this URL"
|
||||
msgstr "Neues Foto von dieser URL"
|
||||
|
||||
#: mod/filer.php:31
|
||||
msgid "- select -"
|
||||
msgstr "- auswählen -"
|
||||
|
||||
#: mod/lockview.php:33 mod/lockview.php:41
|
||||
msgid "Remote privacy information not available."
|
||||
msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
|
||||
|
||||
#: mod/lockview.php:50
|
||||
msgid "Visible to:"
|
||||
msgstr "Sichtbar für:"
|
||||
|
||||
#: mod/maintenance.php:21
|
||||
msgid "System down for maintenance"
|
||||
msgstr "System zur Wartung abgeschaltet"
|
||||
|
||||
#: mod/newmember.php:7
|
||||
msgid "Welcome to Friendica"
|
||||
msgstr "Willkommen bei Friendica"
|
||||
|
||||
#: mod/newmember.php:8
|
||||
msgid "New Member Checklist"
|
||||
msgstr "Checkliste für neue Mitglieder"
|
||||
|
||||
#: mod/newmember.php:10
|
||||
msgid ""
|
||||
"We would like to offer some tips and links to help make your experience "
|
||||
"enjoyable. Click any item to visit the relevant page. A link to this page "
|
||||
"will be visible from your home page for two weeks after your initial "
|
||||
"registration and then will quietly disappear."
|
||||
msgstr "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."
|
||||
|
||||
#: mod/newmember.php:11
|
||||
msgid "Getting Started"
|
||||
msgstr "Einstieg"
|
||||
|
||||
#: mod/newmember.php:13
|
||||
msgid "Friendica Walk-Through"
|
||||
msgstr "Friendica Rundgang"
|
||||
|
||||
#: mod/newmember.php:13
|
||||
msgid ""
|
||||
"On your <em>Quick Start</em> page - find a brief introduction to your "
|
||||
"profile and network tabs, make some new connections, and find some groups to"
|
||||
" join."
|
||||
msgstr "Auf der <em>Quick Start</em> Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst."
|
||||
|
||||
#: mod/newmember.php:17
|
||||
msgid "Go to Your Settings"
|
||||
msgstr "Gehe zu deinen Einstellungen"
|
||||
|
||||
#: mod/newmember.php:17
|
||||
msgid ""
|
||||
"On your <em>Settings</em> page - change your initial password. Also make a "
|
||||
"note of your Identity Address. This looks just like an email address - and "
|
||||
"will be useful in making friends on the free social web."
|
||||
msgstr "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Kontakte mit anderen im Friendica Netzwerk zu knüpfen.."
|
||||
|
||||
#: mod/newmember.php:18
|
||||
msgid ""
|
||||
"Review the other settings, particularly the privacy settings. An unpublished"
|
||||
" directory listing is like having an unlisted phone number. In general, you "
|
||||
"should probably publish your listing - unless all of your friends and "
|
||||
"potential friends know exactly how to find you."
|
||||
msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Kontakte und potentiellen Kontakte wissen genau, wie sie Dich finden können."
|
||||
|
||||
#: mod/newmember.php:22 mod/profile_photo.php:257 mod/profiles.php:699
|
||||
msgid "Upload Profile Photo"
|
||||
msgstr "Profilbild hochladen"
|
||||
|
||||
#: mod/newmember.php:22
|
||||
msgid ""
|
||||
"Upload a profile photo if you have not done so already. Studies have shown "
|
||||
"that people with real photos of themselves are ten times more likely to make"
|
||||
" friends than people who do not."
|
||||
msgstr "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Kontakte zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust."
|
||||
|
||||
#: mod/newmember.php:23
|
||||
msgid "Edit Your Profile"
|
||||
msgstr "Editiere dein Profil"
|
||||
|
||||
#: mod/newmember.php:23
|
||||
msgid ""
|
||||
"Edit your <strong>default</strong> profile to your liking. Review the "
|
||||
"settings for hiding your list of friends and hiding the profile from unknown"
|
||||
" visitors."
|
||||
msgstr "Editiere Dein <strong>Standard</strong> Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Kontaktliste vor unbekannten Betrachtern des Profils."
|
||||
|
||||
#: mod/newmember.php:24
|
||||
msgid "Profile Keywords"
|
||||
msgstr "Profil Schlüsselbegriffe"
|
||||
|
||||
#: mod/newmember.php:24
|
||||
msgid ""
|
||||
"Set some public keywords for your default profile which describe your "
|
||||
"interests. We may be able to find other people with similar interests and "
|
||||
"suggest friendships."
|
||||
msgstr "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen."
|
||||
|
||||
#: mod/newmember.php:26
|
||||
msgid "Connecting"
|
||||
msgstr "Verbindungen knüpfen"
|
||||
|
||||
#: mod/newmember.php:32
|
||||
msgid "Importing Emails"
|
||||
msgstr "Emails Importieren"
|
||||
|
||||
#: mod/newmember.php:32
|
||||
msgid ""
|
||||
"Enter your email access information on your Connector Settings page if you "
|
||||
"wish to import and interact with friends or mailing lists from your email "
|
||||
"INBOX"
|
||||
msgstr "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Kontakten und Mailinglisten interagieren willst."
|
||||
|
||||
#: mod/newmember.php:35
|
||||
msgid "Go to Your Contacts Page"
|
||||
msgstr "Gehe zu deiner Kontakt-Seite"
|
||||
|
||||
#: mod/newmember.php:35
|
||||
msgid ""
|
||||
"Your Contacts page is your gateway to managing friendships and connecting "
|
||||
"with friends on other networks. Typically you enter their address or site "
|
||||
"URL in the <em>Add New Contact</em> dialog."
|
||||
msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Personen in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein."
|
||||
|
||||
#: mod/newmember.php:36
|
||||
msgid "Go to Your Site's Directory"
|
||||
msgstr "Gehe zum Verzeichnis Deiner Friendica Instanz"
|
||||
|
||||
#: mod/newmember.php:36
|
||||
msgid ""
|
||||
"The Directory page lets you find other people in this network or other "
|
||||
"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
|
||||
"their profile page. Provide your own Identity Address if requested."
|
||||
msgstr "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst."
|
||||
|
||||
#: mod/newmember.php:37
|
||||
msgid "Finding New People"
|
||||
msgstr "Neue Leute kennenlernen"
|
||||
|
||||
#: mod/newmember.php:37
|
||||
msgid ""
|
||||
"On the side panel of the Contacts page are several tools to find new "
|
||||
"friends. We can match people by interest, look up people by name or "
|
||||
"interest, and provide suggestions based on network relationships. On a brand"
|
||||
" new site, friend suggestions will usually begin to be populated within 24 "
|
||||
"hours."
|
||||
msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
|
||||
|
||||
#: mod/newmember.php:41
|
||||
msgid "Group Your Contacts"
|
||||
msgstr "Gruppiere deine Kontakte"
|
||||
|
||||
#: mod/newmember.php:41
|
||||
msgid ""
|
||||
"Once you have made some friends, organize them into private conversation "
|
||||
"groups from the sidebar of your Contacts page and then you can interact with"
|
||||
" each group privately on your Network page."
|
||||
msgstr "Sobald Du einige Kontakte gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."
|
||||
|
||||
#: mod/newmember.php:44
|
||||
msgid "Why Aren't My Posts Public?"
|
||||
msgstr "Warum sind meine Beiträge nicht öffentlich?"
|
||||
|
||||
#: mod/newmember.php:44
|
||||
msgid ""
|
||||
"Friendica respects your privacy. By default, your posts will only show up to"
|
||||
" people you've added as friends. For more information, see the help section "
|
||||
"from the link above."
|
||||
msgstr "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."
|
||||
|
||||
#: mod/newmember.php:48
|
||||
msgid "Getting Help"
|
||||
msgstr "Hilfe bekommen"
|
||||
|
||||
#: mod/newmember.php:50
|
||||
msgid "Go to the Help Section"
|
||||
msgstr "Zum Hilfe Abschnitt gehen"
|
||||
|
||||
#: mod/newmember.php:50
|
||||
msgid ""
|
||||
"Our <strong>help</strong> pages may be consulted for detail on other program"
|
||||
" features and resources."
|
||||
msgstr "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
|
||||
|
||||
#: mod/nogroup.php:45 mod/viewcontacts.php:105 mod/contacts.php:616
|
||||
#: mod/contacts.php:960
|
||||
#, php-format
|
||||
msgid "Visit %s's profile [%s]"
|
||||
msgstr "Besuche %ss Profil [%s]"
|
||||
|
||||
#: mod/nogroup.php:46 mod/contacts.php:961
|
||||
msgid "Edit contact"
|
||||
msgstr "Kontakt bearbeiten"
|
||||
|
||||
#: mod/nogroup.php:67
|
||||
msgid "Contacts who are not members of a group"
|
||||
msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
|
||||
|
||||
#: mod/profperm.php:22 mod/group.php:78 index.php:411
|
||||
msgid "Permission denied"
|
||||
msgstr "Zugriff verweigert"
|
||||
|
||||
#: mod/profperm.php:28 mod/profperm.php:59
|
||||
msgid "Invalid profile identifier."
|
||||
msgstr "Ungültiger Profil-Bezeichner."
|
||||
|
||||
#: mod/profperm.php:105
|
||||
msgid "Profile Visibility Editor"
|
||||
msgstr "Editor für die Profil-Sichtbarkeit"
|
||||
|
||||
#: mod/profperm.php:109 mod/group.php:264
|
||||
msgid "Click on a contact to add or remove."
|
||||
msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
|
||||
|
||||
#: mod/profperm.php:118
|
||||
msgid "Visible To"
|
||||
msgstr "Sichtbar für"
|
||||
|
||||
#: mod/profperm.php:134
|
||||
msgid "All Contacts (with secure profile access)"
|
||||
msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
|
||||
|
||||
#: mod/update_community.php:21 mod/update_display.php:25
|
||||
#: mod/update_notes.php:38 mod/update_profile.php:37 mod/update_network.php:29
|
||||
msgid "[Embedded content - reload page to view]"
|
||||
msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
|
||||
|
||||
#: mod/viewcontacts.php:39 mod/webfinger.php:10 mod/probe.php:9
|
||||
#: mod/community.php:17 mod/dfrn_request.php:805 mod/directory.php:31
|
||||
#: mod/search.php:89 mod/search.php:95 mod/display.php:202 mod/photos.php:965
|
||||
#: mod/videos.php:202
|
||||
#: mod/webfinger.php:10 mod/probe.php:9 mod/community.php:18
|
||||
#: mod/dfrn_request.php:807 mod/directory.php:34 mod/display.php:202
|
||||
#: mod/photos.php:967 mod/search.php:92 mod/search.php:98 mod/videos.php:205
|
||||
#: mod/viewcontacts.php:41
|
||||
msgid "Public access denied."
|
||||
msgstr "Öffentlicher Zugriff verweigert."
|
||||
|
||||
#: mod/viewcontacts.php:78
|
||||
msgid "No contacts."
|
||||
msgstr "Keine Kontakte."
|
||||
|
||||
#: mod/viewsrc.php:8
|
||||
msgid "Access denied."
|
||||
msgstr "Zugriff verweigert."
|
||||
|
||||
#: mod/webfinger.php:11 mod/probe.php:10
|
||||
msgid "Only logged in users are permitted to perform a probing."
|
||||
msgstr "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet."
|
||||
|
||||
#: mod/uimport.php:53 mod/register.php:203
|
||||
msgid ""
|
||||
"This site has exceeded the number of allowed daily account registrations. "
|
||||
"Please try again tomorrow."
|
||||
msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."
|
||||
|
||||
#: mod/uimport.php:68 mod/register.php:300
|
||||
msgid "Import"
|
||||
msgstr "Import"
|
||||
|
||||
#: mod/uimport.php:70
|
||||
msgid "Move account"
|
||||
msgstr "Account umziehen"
|
||||
|
||||
#: mod/uimport.php:71
|
||||
msgid "You can import an account from another Friendica server."
|
||||
msgstr "Du kannst einen Account von einem anderen Friendica Server importieren."
|
||||
|
||||
#: mod/uimport.php:72
|
||||
msgid ""
|
||||
"You need to export your account from the old server and upload it here. We "
|
||||
"will recreate your old account here with all your contacts. We will try also"
|
||||
" to inform your friends that you moved here."
|
||||
msgstr "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Kontakte darüber zu informieren, dass Du hierher umgezogen bist."
|
||||
|
||||
#: mod/uimport.php:73
|
||||
msgid ""
|
||||
"This feature is experimental. We can't import contacts from the OStatus "
|
||||
"network (GNU Social/Statusnet) or from Diaspora"
|
||||
msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren"
|
||||
|
||||
#: mod/uimport.php:74
|
||||
msgid "Account file"
|
||||
msgstr "Account Datei"
|
||||
|
||||
#: mod/uimport.php:74
|
||||
msgid ""
|
||||
"To export your account, go to \"Settings->Export your personal data\" and "
|
||||
"select \"Export account\""
|
||||
msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""
|
||||
|
||||
#: mod/community.php:22
|
||||
msgid "Not available."
|
||||
msgstr "Nicht verfügbar."
|
||||
|
||||
#: mod/community.php:49 mod/search.php:215
|
||||
msgid "No results."
|
||||
msgstr "Keine Ergebnisse."
|
||||
|
||||
#: mod/allfriends.php:49
|
||||
msgid "No friends to display."
|
||||
msgstr "Keine Kontakte zum Anzeigen."
|
||||
|
||||
#: mod/bookmarklet.php:44
|
||||
msgid "The post was created"
|
||||
msgstr "Der Beitrag wurde angelegt"
|
||||
|
||||
#: mod/cal.php:146 mod/profile.php:157 mod/display.php:339
|
||||
msgid "Access to this profile has been restricted."
|
||||
msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
|
||||
|
||||
#: mod/cal.php:274 mod/events.php:384
|
||||
msgid "View"
|
||||
msgstr "Ansehen"
|
||||
|
||||
#: mod/cal.php:275 mod/events.php:386
|
||||
msgid "Previous"
|
||||
msgstr "Vorherige"
|
||||
|
||||
#: mod/cal.php:276 mod/install.php:202 mod/events.php:387
|
||||
msgid "Next"
|
||||
msgstr "Nächste"
|
||||
|
||||
#: mod/cal.php:285 mod/events.php:396
|
||||
msgid "list"
|
||||
msgstr "Liste"
|
||||
|
||||
#: mod/cal.php:295
|
||||
msgid "User not found"
|
||||
msgstr "Nutzer nicht gefunden"
|
||||
|
||||
#: mod/cal.php:311
|
||||
msgid "This calendar format is not supported"
|
||||
msgstr "Dieses Kalenderformat wird nicht unterstützt."
|
||||
|
||||
#: mod/cal.php:313
|
||||
msgid "No exportable data found"
|
||||
msgstr "Keine exportierbaren Daten gefunden"
|
||||
|
||||
#: mod/cal.php:328
|
||||
msgid "calendar"
|
||||
msgstr "Kalender"
|
||||
|
||||
#: mod/dfrn_poll.php:114 mod/dfrn_poll.php:550
|
||||
#, php-format
|
||||
msgid "%1$s welcomes %2$s"
|
||||
msgstr "%1$s heißt %2$s herzlich willkommen"
|
||||
|
||||
#: mod/dfrn_request.php:104
|
||||
msgid "This introduction has already been accepted."
|
||||
msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
|
||||
|
||||
#: mod/dfrn_request.php:127 mod/dfrn_request.php:529
|
||||
msgid "Profile location is not valid or does not contain profile information."
|
||||
msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."
|
||||
|
||||
#: mod/dfrn_request.php:132 mod/dfrn_request.php:534
|
||||
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:135 mod/dfrn_request.php:537
|
||||
msgid "Warning: profile location has no profile photo."
|
||||
msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."
|
||||
|
||||
#: mod/dfrn_request.php:139 mod/dfrn_request.php:541
|
||||
#, php-format
|
||||
msgid "%d required parameter was not found at the given location"
|
||||
msgid_plural "%d required parameters were not found at the given location"
|
||||
msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden"
|
||||
msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden"
|
||||
|
||||
#: mod/dfrn_request.php:183
|
||||
msgid "Introduction complete."
|
||||
msgstr "Kontaktanfrage abgeschlossen."
|
||||
|
||||
#: mod/dfrn_request.php:228
|
||||
msgid "Unrecoverable protocol error."
|
||||
msgstr "Nicht behebbarer Protokollfehler."
|
||||
|
||||
#: mod/dfrn_request.php:256
|
||||
msgid "Profile unavailable."
|
||||
msgstr "Profil nicht verfügbar."
|
||||
|
||||
#: mod/dfrn_request.php:283
|
||||
#, php-format
|
||||
msgid "%s has received too many connection requests today."
|
||||
msgstr "%s hat heute zu viele Kontaktanfragen erhalten."
|
||||
|
||||
#: mod/dfrn_request.php:284
|
||||
msgid "Spam protection measures have been invoked."
|
||||
msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
|
||||
|
||||
#: mod/dfrn_request.php:285
|
||||
msgid "Friends are advised to please try again in 24 hours."
|
||||
msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
|
||||
|
||||
#: mod/dfrn_request.php:347
|
||||
msgid "Invalid locator"
|
||||
msgstr "Ungültiger Locator"
|
||||
|
||||
#: mod/dfrn_request.php:356
|
||||
msgid "Invalid email address."
|
||||
msgstr "Ungültige E-Mail-Adresse."
|
||||
|
||||
#: mod/dfrn_request.php:381
|
||||
msgid "This account has not been configured for email. Request failed."
|
||||
msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."
|
||||
|
||||
#: mod/dfrn_request.php:484
|
||||
msgid "You have already introduced yourself here."
|
||||
msgstr "Du hast Dich hier bereits vorgestellt."
|
||||
|
||||
#: mod/dfrn_request.php:488
|
||||
#, php-format
|
||||
msgid "Apparently you are already friends with %s."
|
||||
msgstr "Es scheint so, als ob Du bereits mit %s in Kontakt stehst."
|
||||
|
||||
#: mod/dfrn_request.php:509
|
||||
msgid "Invalid profile URL."
|
||||
msgstr "Ungültige Profil-URL."
|
||||
|
||||
#: mod/dfrn_request.php:594 mod/contacts.php:223
|
||||
msgid "Failed to update contact record."
|
||||
msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
|
||||
|
||||
#: mod/dfrn_request.php:615
|
||||
msgid "Your introduction has been sent."
|
||||
msgstr "Deine Kontaktanfrage wurde gesendet."
|
||||
|
||||
#: mod/dfrn_request.php:657
|
||||
msgid ""
|
||||
"Remote subscription can't be done for your network. Please subscribe "
|
||||
"directly on your system."
|
||||
msgstr "Entferntes abonnieren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems. "
|
||||
|
||||
#: mod/dfrn_request.php:678
|
||||
msgid "Please login to confirm introduction."
|
||||
msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."
|
||||
|
||||
#: mod/dfrn_request.php:688
|
||||
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:702 mod/dfrn_request.php:719
|
||||
msgid "Confirm"
|
||||
msgstr "Bestätigen"
|
||||
|
||||
#: mod/dfrn_request.php:714
|
||||
msgid "Hide this contact"
|
||||
msgstr "Verberge diesen Kontakt"
|
||||
|
||||
#: mod/dfrn_request.php:717
|
||||
#, php-format
|
||||
msgid "Welcome home %s."
|
||||
msgstr "Willkommen zurück %s."
|
||||
|
||||
#: mod/dfrn_request.php:718
|
||||
#, php-format
|
||||
msgid "Please confirm your introduction/connection request to %s."
|
||||
msgstr "Bitte bestätige Deine Kontaktanfrage bei %s."
|
||||
|
||||
#: mod/dfrn_request.php:849
|
||||
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:873
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you are not yet a member of the free social web, <a "
|
||||
"href=\"%s/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=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
|
||||
|
||||
#: mod/dfrn_request.php:878
|
||||
msgid "Friend/Connection Request"
|
||||
msgstr "Kontaktanfrage"
|
||||
|
||||
#: mod/dfrn_request.php:879
|
||||
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:880 mod/follow.php:149
|
||||
msgid "Please answer the following:"
|
||||
msgstr "Bitte beantworte folgendes:"
|
||||
|
||||
#: mod/dfrn_request.php:881 mod/follow.php:150
|
||||
#, php-format
|
||||
msgid "Does %s know you?"
|
||||
msgstr "Kennt %s Dich?"
|
||||
|
||||
#: mod/dfrn_request.php:885 mod/follow.php:151
|
||||
msgid "Add a personal note:"
|
||||
msgstr "Eine persönliche Notiz beifügen:"
|
||||
|
||||
#: mod/dfrn_request.php:888
|
||||
msgid "StatusNet/Federated Social Web"
|
||||
msgstr "StatusNet/Federated Social Web"
|
||||
|
||||
#: mod/dfrn_request.php:890
|
||||
#, 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:891 mod/follow.php:157 mod/unfollow.php:113
|
||||
msgid "Your Identity Address:"
|
||||
msgstr "Adresse Deines Profils:"
|
||||
|
||||
#: mod/dfrn_request.php:894 mod/follow.php:63 mod/unfollow.php:65
|
||||
msgid "Submit Request"
|
||||
msgstr "Anfrage abschicken"
|
||||
|
||||
#: mod/editpost.php:20 mod/editpost.php:30
|
||||
msgid "Item not found"
|
||||
msgstr "Beitrag nicht gefunden"
|
||||
|
||||
#: mod/editpost.php:35
|
||||
msgid "Edit post"
|
||||
msgstr "Beitrag bearbeiten"
|
||||
|
||||
#: mod/fetch.php:16 mod/fetch.php:43 mod/fetch.php:52 mod/help.php:57
|
||||
#: mod/p.php:20 mod/p.php:47 mod/p.php:56 index.php:303
|
||||
msgid "Not Found"
|
||||
msgstr "Nicht gefunden"
|
||||
|
||||
#: mod/follow.php:42
|
||||
msgid "Contact added"
|
||||
msgstr "Kontakt hinzugefügt"
|
||||
|
||||
#: mod/follow.php:74
|
||||
msgid "You already added this contact."
|
||||
msgstr "Du hast den Kontakt bereits hinzugefügt."
|
||||
|
||||
#: mod/follow.php:83
|
||||
msgid "Diaspora support isn't enabled. Contact can't be added."
|
||||
msgstr "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
|
||||
|
||||
#: mod/follow.php:90
|
||||
msgid "OStatus support is disabled. Contact can't be added."
|
||||
msgstr "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
|
||||
|
||||
#: mod/follow.php:97
|
||||
msgid "The network type couldn't be detected. Contact can't be added."
|
||||
msgstr "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden."
|
||||
|
||||
#: mod/follow.php:166 mod/notifications.php:258 mod/unfollow.php:122
|
||||
#: mod/contacts.php:654
|
||||
msgid "Profile URL"
|
||||
msgstr "Profil URL"
|
||||
|
||||
#: mod/group.php:31
|
||||
msgid "Group created."
|
||||
msgstr "Gruppe erstellt."
|
||||
|
||||
#: mod/group.php:37
|
||||
msgid "Could not create group."
|
||||
msgstr "Konnte die Gruppe nicht erstellen."
|
||||
|
||||
#: mod/group.php:51 mod/group.php:156
|
||||
msgid "Group not found."
|
||||
msgstr "Gruppe nicht gefunden."
|
||||
|
||||
#: mod/group.php:65
|
||||
msgid "Group name changed."
|
||||
msgstr "Gruppenname geändert."
|
||||
|
||||
#: mod/group.php:95
|
||||
msgid "Save Group"
|
||||
msgstr "Gruppe speichern"
|
||||
|
||||
#: mod/group.php:100
|
||||
msgid "Create a group of contacts/friends."
|
||||
msgstr "Eine Kontaktgruppe anlegen."
|
||||
|
||||
#: mod/group.php:125
|
||||
msgid "Group removed."
|
||||
msgstr "Gruppe entfernt."
|
||||
|
||||
#: mod/group.php:127
|
||||
msgid "Unable to remove group."
|
||||
msgstr "Konnte die Gruppe nicht entfernen."
|
||||
|
||||
#: mod/group.php:191
|
||||
msgid "Delete Group"
|
||||
msgstr "Gruppe löschen"
|
||||
|
||||
#: mod/group.php:197
|
||||
msgid "Group Editor"
|
||||
msgstr "Gruppeneditor"
|
||||
|
||||
#: mod/group.php:202
|
||||
msgid "Edit Group Name"
|
||||
msgstr "Gruppen Name bearbeiten"
|
||||
|
||||
#: mod/group.php:212
|
||||
msgid "Members"
|
||||
msgstr "Mitglieder"
|
||||
|
||||
#: mod/group.php:214 mod/contacts.php:722
|
||||
msgid "All Contacts"
|
||||
msgstr "Alle Kontakte"
|
||||
|
||||
#: mod/group.php:215 mod/network.php:655
|
||||
msgid "Group is empty"
|
||||
msgstr "Gruppe ist leer"
|
||||
|
||||
#: mod/group.php:228
|
||||
msgid "Remove Contact"
|
||||
msgstr "Kontakt löschen"
|
||||
|
||||
#: mod/group.php:252
|
||||
msgid "Add Contact"
|
||||
msgstr "Kontakt hinzufügen"
|
||||
|
||||
#: mod/hcard.php:14
|
||||
msgid "No profile"
|
||||
msgstr "Kein Profil"
|
||||
|
||||
#: mod/help.php:45
|
||||
msgid "Help:"
|
||||
msgstr "Hilfe:"
|
||||
|
||||
#: mod/help.php:60 index.php:306
|
||||
#: mod/help.php:57 mod/fetch.php:17 mod/fetch.php:53 mod/fetch.php:66
|
||||
#: mod/p.php:20 mod/p.php:47 mod/p.php:56 index.php:287
|
||||
msgid "Not Found"
|
||||
msgstr "Nicht gefunden"
|
||||
|
||||
#: mod/help.php:60 index.php:292
|
||||
msgid "Page not found."
|
||||
msgstr "Seite nicht gefunden."
|
||||
|
||||
#: mod/home.php:42
|
||||
#, php-format
|
||||
msgid "Welcome to %s"
|
||||
msgstr "Willkommen zu %s"
|
||||
|
||||
#: mod/invite.php:31
|
||||
msgid "Total invitation limit exceeded."
|
||||
msgstr "Limit für Einladungen erreicht."
|
||||
|
||||
#: mod/invite.php:54
|
||||
#, php-format
|
||||
msgid "%s : Not a valid email address."
|
||||
msgstr "%s: Keine gültige Email Adresse."
|
||||
|
||||
#: mod/invite.php:79
|
||||
msgid "Please join us on Friendica"
|
||||
msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"
|
||||
|
||||
#: mod/invite.php:90
|
||||
msgid "Invitation limit exceeded. Please contact your site administrator."
|
||||
msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."
|
||||
|
||||
#: mod/invite.php:94
|
||||
#, php-format
|
||||
msgid "%s : Message delivery failed."
|
||||
msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
|
||||
|
||||
#: mod/invite.php:98
|
||||
#, php-format
|
||||
msgid "%d message sent."
|
||||
msgid_plural "%d messages sent."
|
||||
msgstr[0] "%d Nachricht gesendet."
|
||||
msgstr[1] "%d Nachrichten gesendet."
|
||||
|
||||
#: mod/invite.php:117
|
||||
msgid "You have no more invitations available"
|
||||
msgstr "Du hast keine weiteren Einladungen"
|
||||
|
||||
#: mod/invite.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Visit %s for a list of public sites that you can join. Friendica members on "
|
||||
"other sites can all connect with each other, as well as with members of many"
|
||||
" other social networks."
|
||||
msgstr "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."
|
||||
|
||||
#: mod/invite.php:127
|
||||
#, php-format
|
||||
msgid ""
|
||||
"To accept this invitation, please visit and register at %s or any other "
|
||||
"public Friendica website."
|
||||
msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website."
|
||||
|
||||
#: mod/invite.php:128
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
|
||||
"web that is owned and controlled by its members. They can also connect with "
|
||||
"many traditional social networks. See %s for a list of alternate Friendica "
|
||||
"sites you can join."
|
||||
msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst."
|
||||
|
||||
#: mod/invite.php:132
|
||||
msgid ""
|
||||
"Our apologies. This system is not currently configured to connect with other"
|
||||
" public sites or invite members."
|
||||
msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."
|
||||
|
||||
#: mod/invite.php:135
|
||||
#, php-format
|
||||
msgid "To accept this invitation, please visit and register at %s."
|
||||
msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s."
|
||||
|
||||
#: mod/invite.php:136
|
||||
msgid ""
|
||||
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
|
||||
"web that is owned and controlled by its members. They can also connect with "
|
||||
"many traditional social networks."
|
||||
msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden."
|
||||
|
||||
#: mod/invite.php:142
|
||||
msgid "Send invitations"
|
||||
msgstr "Einladungen senden"
|
||||
|
||||
#: mod/invite.php:143
|
||||
msgid "Enter email addresses, one per line:"
|
||||
msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
|
||||
|
||||
#: mod/invite.php:144 mod/message.php:332 mod/message.php:515
|
||||
#: mod/wallmessage.php:138
|
||||
msgid "Your message:"
|
||||
msgstr "Deine Nachricht:"
|
||||
|
||||
#: mod/invite.php:145
|
||||
msgid ""
|
||||
"You are cordially invited to join me and other close friends on Friendica - "
|
||||
"and help us to create a better social web."
|
||||
msgstr "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."
|
||||
|
||||
#: mod/invite.php:147
|
||||
msgid "You will need to supply this invitation code: $invite_code"
|
||||
msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
|
||||
|
||||
#: mod/invite.php:147
|
||||
msgid ""
|
||||
"Once you have registered, please connect with me via my profile page at:"
|
||||
msgstr "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"
|
||||
|
||||
#: mod/invite.php:149
|
||||
msgid ""
|
||||
"For more information about the Friendica project and why we feel it is "
|
||||
"important, please visit http://friendi.ca"
|
||||
msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendi.ca."
|
||||
|
||||
#: mod/localtime.php:26
|
||||
msgid "Time Conversion"
|
||||
msgstr "Zeitumrechnung"
|
||||
|
|
@ -4148,1105 +3165,122 @@ msgstr "Umgerechnete lokale Zeit: %s"
|
|||
msgid "Please select your timezone:"
|
||||
msgstr "Bitte wähle Deine Zeitzone:"
|
||||
|
||||
#: mod/lostpass.php:22
|
||||
msgid "No valid account found."
|
||||
msgstr "Kein gültiges Konto gefunden."
|
||||
|
||||
#: mod/lostpass.php:38
|
||||
msgid "Password reset request issued. Check your email."
|
||||
msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail."
|
||||
|
||||
#: mod/lostpass.php:44
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\tDear %1$s,\n"
|
||||
"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
|
||||
"\t\tpassword. In order to confirm this request, please select the verification link\n"
|
||||
"\t\tbelow or paste it into your web browser address bar.\n"
|
||||
"\n"
|
||||
"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
|
||||
"\t\tprovided and ignore and/or delete this email.\n"
|
||||
"\n"
|
||||
"\t\tYour password will not be changed unless we can verify that you\n"
|
||||
"\t\tissued this request."
|
||||
msgstr "\nHallo %1$s,\n\nAuf \"%2$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast."
|
||||
|
||||
#: mod/lostpass.php:55
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\tFollow this link to verify your identity:\n"
|
||||
"\n"
|
||||
"\t\t%1$s\n"
|
||||
"\n"
|
||||
"\t\tYou will then receive a follow-up message containing the new password.\n"
|
||||
"\t\tYou may change that password from your account settings page after logging in.\n"
|
||||
"\n"
|
||||
"\t\tThe login details are as follows:\n"
|
||||
"\n"
|
||||
"\t\tSite Location:\t%2$s\n"
|
||||
"\t\tLogin Name:\t%3$s"
|
||||
msgstr "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s"
|
||||
|
||||
#: mod/lostpass.php:74
|
||||
#, php-format
|
||||
msgid "Password reset requested at %s"
|
||||
msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
|
||||
|
||||
#: mod/lostpass.php:94
|
||||
msgid ""
|
||||
"Request could not be verified. (You may have previously submitted it.) "
|
||||
"Password reset failed."
|
||||
msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."
|
||||
|
||||
#: mod/lostpass.php:113 boot.php:889
|
||||
msgid "Password Reset"
|
||||
msgstr "Passwort zurücksetzen"
|
||||
|
||||
#: mod/lostpass.php:114
|
||||
msgid "Your password has been reset as requested."
|
||||
msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
|
||||
|
||||
#: mod/lostpass.php:115
|
||||
msgid "Your new password is"
|
||||
msgstr "Dein neues Passwort lautet"
|
||||
|
||||
#: mod/lostpass.php:116
|
||||
msgid "Save or copy your new password - and then"
|
||||
msgstr "Speichere oder kopiere Dein neues Passwort - und dann"
|
||||
|
||||
#: mod/lostpass.php:117
|
||||
msgid "click here to login"
|
||||
msgstr "hier klicken, um Dich anzumelden"
|
||||
|
||||
#: mod/lostpass.php:118
|
||||
msgid ""
|
||||
"Your password may be changed from the <em>Settings</em> page after "
|
||||
"successful login."
|
||||
msgstr "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald Du Dich erfolgreich angemeldet hast."
|
||||
|
||||
#: mod/lostpass.php:128
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\t\tDear %1$s,\n"
|
||||
"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
|
||||
"\t\t\t\tinformation for your records (or change your password immediately to\n"
|
||||
"\t\t\t\tsomething that you will remember).\n"
|
||||
"\t\t\t"
|
||||
msgstr "\nHallo %1$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst)."
|
||||
|
||||
#: mod/lostpass.php:134
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\t\tYour login details are as follows:\n"
|
||||
"\n"
|
||||
"\t\t\t\tSite Location:\t%1$s\n"
|
||||
"\t\t\t\tLogin Name:\t%2$s\n"
|
||||
"\t\t\t\tPassword:\t%3$s\n"
|
||||
"\n"
|
||||
"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
|
||||
"\t\t\t"
|
||||
msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin Name: %2$s\nPasswort: %3$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden."
|
||||
|
||||
#: mod/lostpass.php:150
|
||||
#, php-format
|
||||
msgid "Your password has been changed at %s"
|
||||
msgstr "Auf %s wurde Dein Passwort geändert"
|
||||
|
||||
#: mod/lostpass.php:162
|
||||
msgid "Forgot your Password?"
|
||||
msgstr "Hast Du Dein Passwort vergessen?"
|
||||
|
||||
#: mod/lostpass.php:163
|
||||
msgid ""
|
||||
"Enter your email address and submit to have your password reset. Then check "
|
||||
"your email for further instructions."
|
||||
msgstr "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet."
|
||||
|
||||
#: mod/lostpass.php:164 boot.php:877
|
||||
msgid "Nickname or Email: "
|
||||
msgstr "Spitzname oder E-Mail:"
|
||||
|
||||
#: mod/lostpass.php:165
|
||||
msgid "Reset"
|
||||
msgstr "Zurücksetzen"
|
||||
|
||||
#: mod/manage.php:153
|
||||
msgid "Manage Identities and/or Pages"
|
||||
msgstr "Verwalte Identitäten und/oder Seiten"
|
||||
|
||||
#: mod/manage.php:154
|
||||
msgid ""
|
||||
"Toggle between different identities or community/group pages which share "
|
||||
"your account details or which you have been granted \"manage\" permissions"
|
||||
msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast."
|
||||
|
||||
#: mod/manage.php:155
|
||||
msgid "Select an identity to manage: "
|
||||
msgstr "Wähle eine Identität zum Verwalten aus: "
|
||||
|
||||
#: mod/match.php:39
|
||||
msgid "No keywords to match. Please add keywords to your default profile."
|
||||
msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."
|
||||
|
||||
#: mod/match.php:92
|
||||
msgid "is interested in:"
|
||||
msgstr "ist interessiert an:"
|
||||
|
||||
#: mod/match.php:106
|
||||
msgid "Profile Match"
|
||||
msgstr "Profilübereinstimmungen"
|
||||
|
||||
#: mod/match.php:113 mod/dirfind.php:249
|
||||
msgid "No matches"
|
||||
msgstr "Keine Übereinstimmungen"
|
||||
|
||||
#: mod/message.php:63 mod/wallmessage.php:53
|
||||
msgid "No recipient selected."
|
||||
msgstr "Kein Empfänger gewählt."
|
||||
|
||||
#: mod/message.php:67
|
||||
msgid "Unable to locate contact information."
|
||||
msgstr "Konnte die Kontaktinformationen nicht finden."
|
||||
|
||||
#: mod/message.php:70 mod/wallmessage.php:59
|
||||
msgid "Message could not be sent."
|
||||
msgstr "Nachricht konnte nicht gesendet werden."
|
||||
|
||||
#: mod/message.php:73 mod/wallmessage.php:62
|
||||
msgid "Message collection failure."
|
||||
msgstr "Konnte Nachrichten nicht abrufen."
|
||||
|
||||
#: mod/message.php:76 mod/wallmessage.php:65
|
||||
msgid "Message sent."
|
||||
msgstr "Nachricht gesendet."
|
||||
|
||||
#: mod/message.php:205
|
||||
msgid "Do you really want to delete this message?"
|
||||
msgstr "Möchtest Du wirklich diese Nachricht löschen?"
|
||||
|
||||
#: mod/message.php:225
|
||||
msgid "Message deleted."
|
||||
msgstr "Nachricht gelöscht."
|
||||
|
||||
#: mod/message.php:255
|
||||
msgid "Conversation removed."
|
||||
msgstr "Unterhaltung gelöscht."
|
||||
|
||||
#: mod/message.php:322 mod/wallmessage.php:129
|
||||
msgid "Send Private Message"
|
||||
msgstr "Private Nachricht senden"
|
||||
|
||||
#: mod/message.php:323 mod/message.php:510 mod/wallmessage.php:131
|
||||
msgid "To:"
|
||||
msgstr "An:"
|
||||
|
||||
#: mod/message.php:328 mod/message.php:512 mod/wallmessage.php:132
|
||||
msgid "Subject:"
|
||||
msgstr "Betreff:"
|
||||
|
||||
#: mod/message.php:364
|
||||
msgid "No messages."
|
||||
msgstr "Keine Nachrichten."
|
||||
|
||||
#: mod/message.php:403
|
||||
msgid "Message not available."
|
||||
msgstr "Nachricht nicht verfügbar."
|
||||
|
||||
#: mod/message.php:478
|
||||
msgid "Delete message"
|
||||
msgstr "Nachricht löschen"
|
||||
|
||||
#: mod/message.php:503 mod/message.php:591
|
||||
msgid "Delete conversation"
|
||||
msgstr "Unterhaltung löschen"
|
||||
|
||||
#: mod/message.php:505
|
||||
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:509
|
||||
msgid "Send Reply"
|
||||
msgstr "Antwort senden"
|
||||
|
||||
#: mod/message.php:561
|
||||
#, php-format
|
||||
msgid "Unknown sender - %s"
|
||||
msgstr "'Unbekannter Absender - %s"
|
||||
|
||||
#: mod/message.php:563
|
||||
#, php-format
|
||||
msgid "You and %s"
|
||||
msgstr "Du und %s"
|
||||
|
||||
#: mod/message.php:565
|
||||
#, php-format
|
||||
msgid "%s and You"
|
||||
msgstr "%s und Du"
|
||||
|
||||
#: mod/message.php:594
|
||||
msgid "D, d M Y - g:i A"
|
||||
msgstr "D, d. M Y - g:i A"
|
||||
|
||||
#: mod/message.php:597
|
||||
#, php-format
|
||||
msgid "%d message"
|
||||
msgid_plural "%d messages"
|
||||
msgstr[0] "%d Nachricht"
|
||||
msgstr[1] "%d Nachrichten"
|
||||
|
||||
#: mod/notifications.php:38
|
||||
msgid "Invalid request identifier."
|
||||
msgstr "Invalid request identifier."
|
||||
|
||||
#: mod/notifications.php:47 mod/notifications.php:183
|
||||
#: mod/notifications.php:230
|
||||
msgid "Discard"
|
||||
msgstr "Verwerfen"
|
||||
|
||||
#: mod/notifications.php:63 mod/notifications.php:182
|
||||
#: mod/notifications.php:266 mod/contacts.php:636 mod/contacts.php:836
|
||||
#: mod/contacts.php:1021
|
||||
msgid "Ignore"
|
||||
msgstr "Ignorieren"
|
||||
|
||||
#: mod/notifications.php:108
|
||||
msgid "Network Notifications"
|
||||
msgstr "Netzwerk Benachrichtigungen"
|
||||
|
||||
#: mod/notifications.php:114 mod/notify.php:73
|
||||
msgid "System Notifications"
|
||||
msgstr "Systembenachrichtigungen"
|
||||
|
||||
#: mod/notifications.php:120
|
||||
msgid "Personal Notifications"
|
||||
msgstr "Persönliche Benachrichtigungen"
|
||||
|
||||
#: mod/notifications.php:126
|
||||
msgid "Home Notifications"
|
||||
msgstr "Pinnwand Benachrichtigungen"
|
||||
|
||||
#: mod/notifications.php:155
|
||||
msgid "Show Ignored Requests"
|
||||
msgstr "Zeige ignorierte Anfragen"
|
||||
|
||||
#: mod/notifications.php:155
|
||||
msgid "Hide Ignored Requests"
|
||||
msgstr "Verberge ignorierte Anfragen"
|
||||
|
||||
#: mod/notifications.php:167 mod/notifications.php:237
|
||||
msgid "Notification type: "
|
||||
msgstr "Benachrichtigungstyp: "
|
||||
|
||||
#: mod/notifications.php:170
|
||||
#, php-format
|
||||
msgid "suggested by %s"
|
||||
msgstr "vorgeschlagen von %s"
|
||||
|
||||
#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:643
|
||||
msgid "Hide this contact from others"
|
||||
msgstr "Verbirg diesen Kontakt vor Anderen"
|
||||
|
||||
#: mod/notifications.php:176 mod/notifications.php:255
|
||||
msgid "Post a new friend activity"
|
||||
msgstr "Neue-Kontakt Nachricht senden"
|
||||
|
||||
#: mod/notifications.php:176 mod/notifications.php:255
|
||||
msgid "if applicable"
|
||||
msgstr "falls anwendbar"
|
||||
|
||||
#: mod/notifications.php:179 mod/notifications.php:264 mod/admin.php:1628
|
||||
msgid "Approve"
|
||||
msgstr "Genehmigen"
|
||||
|
||||
#: mod/notifications.php:198
|
||||
msgid "Claims to be known to you: "
|
||||
msgstr "Behauptet Dich zu kennen: "
|
||||
|
||||
#: mod/notifications.php:199
|
||||
msgid "yes"
|
||||
msgstr "ja"
|
||||
|
||||
#: mod/notifications.php:199
|
||||
msgid "no"
|
||||
msgstr "nein"
|
||||
|
||||
#: mod/notifications.php:200 mod/notifications.php:205
|
||||
msgid "Shall your connection be bidirectional or not?"
|
||||
msgstr "Soll die Verbindung beidseitig sein oder nicht?"
|
||||
|
||||
#: mod/notifications.php:201 mod/notifications.php:206
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
|
||||
"also receive updates from them in your news feed."
|
||||
msgstr "Akzeptierst du %s als Kontakt, erlaubst du damit das Lesen deiner Beiträge und abonnierst selbst auch die Beiträge von %s."
|
||||
|
||||
#: mod/notifications.php:202
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
|
||||
" will not receive updates from them in your news feed."
|
||||
msgstr "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."
|
||||
|
||||
#: mod/notifications.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Accepting %s as a sharer allows them to subscribe to your posts, but you "
|
||||
"will not receive updates from them in your news feed."
|
||||
msgstr "Wenn du %s als Teilenden akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."
|
||||
|
||||
#: mod/notifications.php:218
|
||||
msgid "Friend"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#: mod/notifications.php:219
|
||||
msgid "Sharer"
|
||||
msgstr "Teilenden"
|
||||
|
||||
#: mod/notifications.php:219
|
||||
msgid "Subscriber"
|
||||
msgstr "Abonnent"
|
||||
|
||||
#: mod/notifications.php:275
|
||||
msgid "No introductions."
|
||||
msgstr "Keine Kontaktanfragen."
|
||||
|
||||
#: mod/notifications.php:316
|
||||
msgid "Show unread"
|
||||
msgstr "Ungelesene anzeigen"
|
||||
|
||||
#: mod/notifications.php:316
|
||||
msgid "Show all"
|
||||
msgstr "Alle anzeigen"
|
||||
|
||||
#: mod/notifications.php:322
|
||||
#, php-format
|
||||
msgid "No more %s notifications."
|
||||
msgstr "Keine weiteren %s Benachrichtigungen"
|
||||
|
||||
#: mod/notify.php:69
|
||||
msgid "No more system notifications."
|
||||
msgstr "Keine weiteren Systembenachrichtigungen."
|
||||
#: mod/localtime.php:47 mod/contacts.php:612 mod/crepair.php:162
|
||||
#: mod/events.php:531 mod/fsuggest.php:117 mod/install.php:244
|
||||
#: mod/install.php:284 mod/invite.php:152 mod/manage.php:158
|
||||
#: mod/message.php:340 mod/message.php:512 mod/mood.php:142
|
||||
#: mod/photos.php:1129 mod/photos.php:1241 mod/photos.php:1556
|
||||
#: mod/photos.php:1605 mod/photos.php:1647 mod/photos.php:1721
|
||||
#: mod/poke.php:207 mod/profiles.php:684 view/theme/duepuntozero/config.php:67
|
||||
#: view/theme/frio/config.php:108 view/theme/quattro/config.php:73
|
||||
#: view/theme/vier/config.php:117 src/Object/Item.php:787
|
||||
msgid "Submit"
|
||||
msgstr "Senden"
|
||||
|
||||
#: mod/oexchange.php:25
|
||||
msgid "Post successful."
|
||||
msgstr "Beitrag erfolgreich veröffentlicht."
|
||||
|
||||
#: mod/openid.php:25
|
||||
msgid "OpenID protocol error. No ID returned."
|
||||
msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
|
||||
|
||||
#: mod/openid.php:61
|
||||
msgid ""
|
||||
"Account not found and OpenID registration is not permitted on this site."
|
||||
msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."
|
||||
|
||||
#: mod/p.php:13
|
||||
msgid "Not Extended"
|
||||
msgstr "Nicht erweitert."
|
||||
|
||||
#: mod/profile.php:177
|
||||
msgid "Tips for New Members"
|
||||
msgstr "Tipps für neue Nutzer"
|
||||
|
||||
#: mod/removeme.php:55 mod/removeme.php:58
|
||||
msgid "Remove My Account"
|
||||
msgstr "Konto löschen"
|
||||
|
||||
#: mod/removeme.php:56
|
||||
msgid ""
|
||||
"This will completely remove your account. Once this has been done it is not "
|
||||
"recoverable."
|
||||
msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."
|
||||
|
||||
#: mod/removeme.php:57
|
||||
msgid "Please enter your password for verification:"
|
||||
msgstr "Bitte gib Dein Passwort zur Verifikation ein:"
|
||||
|
||||
#: mod/repair_ostatus.php:17
|
||||
msgid "Resubscribing to OStatus contacts"
|
||||
msgstr "Erneuern der OStatus Abonements"
|
||||
|
||||
#: mod/repair_ostatus.php:33
|
||||
msgid "Error"
|
||||
msgstr "Fehler"
|
||||
|
||||
#: mod/repair_ostatus.php:47 mod/ostatus_subscribe.php:57
|
||||
msgid "Done"
|
||||
msgstr "Erledigt"
|
||||
|
||||
#: mod/repair_ostatus.php:53 mod/ostatus_subscribe.php:81
|
||||
msgid "Keep this window open until done."
|
||||
msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."
|
||||
|
||||
#: mod/subthread.php:106
|
||||
#, php-format
|
||||
msgid "%1$s is following %2$s's %3$s"
|
||||
msgstr "%1$s folgt %2$s %3$s"
|
||||
|
||||
#: mod/tagrm.php:46
|
||||
msgid "Tag removed"
|
||||
msgstr "Tag entfernt"
|
||||
|
||||
#: mod/tagrm.php:85
|
||||
msgid "Remove Item Tag"
|
||||
msgstr "Gegenstands-Tag entfernen"
|
||||
|
||||
#: mod/tagrm.php:87
|
||||
msgid "Select a tag to remove: "
|
||||
msgstr "Wähle ein Tag zum Entfernen aus: "
|
||||
|
||||
#: mod/tagrm.php:98 mod/delegate.php:139
|
||||
msgid "Remove"
|
||||
msgstr "Entfernen"
|
||||
|
||||
#: mod/uexport.php:39
|
||||
msgid "Export account"
|
||||
msgstr "Account exportieren"
|
||||
|
||||
#: mod/uexport.php:39
|
||||
msgid ""
|
||||
"Export your account info and contacts. Use this to make a backup of your "
|
||||
"account and/or to move it to another server."
|
||||
msgstr "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."
|
||||
|
||||
#: mod/uexport.php:40
|
||||
msgid "Export all"
|
||||
msgstr "Alles exportieren"
|
||||
|
||||
#: mod/uexport.php:40
|
||||
msgid ""
|
||||
"Export your accout info, contacts and all your items as json. Could be a "
|
||||
"very big file, and could take a lot of time. Use this to make a full backup "
|
||||
"of your account (photos are not exported)"
|
||||
msgstr "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)."
|
||||
|
||||
#: mod/uexport.php:47 mod/settings.php:95
|
||||
msgid "Export personal data"
|
||||
msgstr "Persönliche Daten exportieren"
|
||||
|
||||
#: mod/wallmessage.php:45 mod/wallmessage.php:109
|
||||
#, php-format
|
||||
msgid "Number of daily wall messages for %s exceeded. Message failed."
|
||||
msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."
|
||||
|
||||
#: mod/wallmessage.php:56
|
||||
msgid "Unable to check your home location."
|
||||
msgstr "Konnte Deinen Heimatort nicht bestimmen."
|
||||
|
||||
#: mod/wallmessage.php:83 mod/wallmessage.php:92
|
||||
msgid "No recipient."
|
||||
msgstr "Kein Empfänger."
|
||||
|
||||
#: mod/wallmessage.php:130
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you wish for %s to respond, please check that the privacy settings on "
|
||||
"your site allow private mail from unknown senders."
|
||||
msgstr "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."
|
||||
|
||||
#: mod/delegate.php:101
|
||||
msgid "No potential page delegates located."
|
||||
msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
|
||||
|
||||
#: mod/delegate.php:132
|
||||
msgid ""
|
||||
"Delegates are able to manage all aspects of this account/page except for "
|
||||
"basic account settings. Please do not delegate your personal account to "
|
||||
"anybody that you do not trust completely."
|
||||
msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"
|
||||
|
||||
#: mod/delegate.php:133
|
||||
msgid "Existing Page Managers"
|
||||
msgstr "Vorhandene Seitenmanager"
|
||||
|
||||
#: mod/delegate.php:135
|
||||
msgid "Existing Page Delegates"
|
||||
msgstr "Vorhandene Bevollmächtigte für die Seite"
|
||||
|
||||
#: mod/delegate.php:137
|
||||
msgid "Potential Delegates"
|
||||
msgstr "Potentielle Bevollmächtigte"
|
||||
|
||||
#: mod/delegate.php:140
|
||||
msgid "Add"
|
||||
msgstr "Hinzufügen"
|
||||
|
||||
#: mod/delegate.php:141
|
||||
msgid "No entries."
|
||||
msgstr "Keine Einträge."
|
||||
|
||||
#: mod/suggest.php:30
|
||||
msgid "Do you really want to delete this suggestion?"
|
||||
msgstr "Möchtest Du wirklich diese Empfehlung löschen?"
|
||||
|
||||
#: mod/suggest.php:71
|
||||
msgid ""
|
||||
"No suggestions available. If this is a new site, please try again in 24 "
|
||||
"hours."
|
||||
msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
|
||||
|
||||
#: mod/suggest.php:84 mod/suggest.php:104
|
||||
msgid "Ignore/Hide"
|
||||
msgstr "Ignorieren/Verbergen"
|
||||
|
||||
#: mod/directory.php:193 view/theme/vier/theme.php:194
|
||||
msgid "Global Directory"
|
||||
msgstr "Weltweites Verzeichnis"
|
||||
|
||||
#: mod/directory.php:195
|
||||
msgid "Find on this site"
|
||||
msgstr "Auf diesem Server suchen"
|
||||
|
||||
#: mod/directory.php:197
|
||||
msgid "Results for:"
|
||||
msgstr "Ergebnisse für:"
|
||||
|
||||
#: mod/directory.php:199
|
||||
msgid "Site Directory"
|
||||
msgstr "Verzeichnis"
|
||||
|
||||
#: mod/directory.php:206
|
||||
msgid "No entries (some entries may be hidden)."
|
||||
msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
|
||||
|
||||
#: mod/fbrowser.php:136
|
||||
msgid "Files"
|
||||
msgstr "Dateien"
|
||||
|
||||
#: mod/friendica.php:70
|
||||
msgid "This is Friendica, version"
|
||||
msgstr "Dies ist Friendica, Version"
|
||||
|
||||
#: mod/friendica.php:71
|
||||
msgid "running at web location"
|
||||
msgstr "die unter folgender Webadresse zu finden ist"
|
||||
|
||||
#: mod/friendica.php:75
|
||||
msgid ""
|
||||
"Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
|
||||
"about the Friendica project."
|
||||
msgstr "Bitte besuche <a href=\"https://friendi.ca\">Friendi.ca</a> um mehr über das Friendica Projekt zu erfahren."
|
||||
|
||||
#: mod/friendica.php:79
|
||||
msgid "Bug reports and issues: please visit"
|
||||
msgstr "Probleme oder Fehler gefunden? Bitte besuche"
|
||||
|
||||
#: mod/friendica.php:79
|
||||
msgid "the bugtracker at github"
|
||||
msgstr "den Bugtracker auf github"
|
||||
|
||||
#: mod/friendica.php:82
|
||||
msgid ""
|
||||
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
|
||||
"dot com"
|
||||
msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"
|
||||
|
||||
#: mod/friendica.php:96
|
||||
msgid "Installed plugins/addons/apps:"
|
||||
msgstr "Installierte Plugins/Erweiterungen/Apps:"
|
||||
|
||||
#: mod/friendica.php:110
|
||||
msgid "No installed plugins/addons/apps"
|
||||
msgstr "Keine Plugins/Erweiterungen/Apps installiert"
|
||||
|
||||
#: mod/friendica.php:115
|
||||
msgid "On this server the following remote servers are blocked."
|
||||
msgstr "Auf diesem Server werden die folgenden entfernten Server blockiert."
|
||||
|
||||
#: mod/friendica.php:116 mod/admin.php:291 mod/admin.php:309
|
||||
msgid "Reason for the block"
|
||||
msgstr "Begründung für die Blockierung"
|
||||
|
||||
#: mod/install.php:107
|
||||
msgid "Friendica Communications Server - Setup"
|
||||
msgstr "Friendica-Server für soziale Netzwerke – Setup"
|
||||
|
||||
#: mod/install.php:113
|
||||
msgid "Could not connect to database."
|
||||
msgstr "Verbindung zur Datenbank gescheitert."
|
||||
|
||||
#: mod/install.php:117
|
||||
msgid "Could not create table."
|
||||
msgstr "Tabelle konnte nicht angelegt werden."
|
||||
|
||||
#: mod/install.php:123
|
||||
msgid "Your Friendica site database has been installed."
|
||||
msgstr "Die Datenbank Deiner Friendicaseite wurde installiert."
|
||||
|
||||
#: mod/install.php:128
|
||||
msgid ""
|
||||
"You may need to import the file \"database.sql\" manually using phpmyadmin "
|
||||
"or mysql."
|
||||
msgstr "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."
|
||||
|
||||
#: mod/install.php:129 mod/install.php:201 mod/install.php:548
|
||||
msgid "Please see the file \"INSTALL.txt\"."
|
||||
msgstr "Lies bitte die \"INSTALL.txt\"."
|
||||
|
||||
#: mod/install.php:141
|
||||
msgid "Database already in use."
|
||||
msgstr "Die Datenbank wird bereits verwendet."
|
||||
|
||||
#: mod/install.php:198
|
||||
msgid "System check"
|
||||
msgstr "Systemtest"
|
||||
|
||||
#: mod/install.php:203
|
||||
msgid "Check again"
|
||||
msgstr "Noch einmal testen"
|
||||
|
||||
#: mod/install.php:222
|
||||
msgid "Database connection"
|
||||
msgstr "Datenbankverbindung"
|
||||
|
||||
#: mod/install.php:223
|
||||
msgid ""
|
||||
"In order to install Friendica we need to know how to connect to your "
|
||||
"database."
|
||||
msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."
|
||||
|
||||
#: mod/install.php:224
|
||||
msgid ""
|
||||
"Please contact your hosting provider or site administrator if you have "
|
||||
"questions about these settings."
|
||||
msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest."
|
||||
|
||||
#: mod/install.php:225
|
||||
msgid ""
|
||||
"The database you specify below should already exist. If it does not, please "
|
||||
"create it before continuing."
|
||||
msgstr "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst."
|
||||
|
||||
#: mod/install.php:229
|
||||
msgid "Database Server Name"
|
||||
msgstr "Datenbank-Server"
|
||||
|
||||
#: mod/install.php:230
|
||||
msgid "Database Login Name"
|
||||
msgstr "Datenbank-Nutzer"
|
||||
|
||||
#: mod/install.php:231
|
||||
msgid "Database Login Password"
|
||||
msgstr "Datenbank-Passwort"
|
||||
|
||||
#: mod/install.php:231
|
||||
msgid "For security reasons the password must not be empty"
|
||||
msgstr "Aus Sicherheitsgründen darf das Passwort nicht leer sein."
|
||||
|
||||
#: mod/install.php:232
|
||||
msgid "Database Name"
|
||||
msgstr "Datenbank-Name"
|
||||
|
||||
#: mod/install.php:233 mod/install.php:274
|
||||
msgid "Site administrator email address"
|
||||
msgstr "E-Mail-Adresse des Administrators"
|
||||
|
||||
#: mod/install.php:233 mod/install.php:274
|
||||
msgid ""
|
||||
"Your account email address must match this in order to use the web admin "
|
||||
"panel."
|
||||
msgstr "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst."
|
||||
|
||||
#: mod/install.php:237 mod/install.php:277
|
||||
msgid "Please select a default timezone for your website"
|
||||
msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
|
||||
|
||||
#: mod/install.php:264
|
||||
msgid "Site settings"
|
||||
msgstr "Server-Einstellungen"
|
||||
|
||||
#: mod/install.php:278
|
||||
msgid "System Language:"
|
||||
msgstr "Systemsprache:"
|
||||
|
||||
#: mod/install.php:278
|
||||
msgid ""
|
||||
"Set the default language for your Friendica installation interface and to "
|
||||
"send emails."
|
||||
msgstr "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand"
|
||||
|
||||
#: mod/install.php:318
|
||||
msgid "Could not find a command line version of PHP in the web server PATH."
|
||||
msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."
|
||||
|
||||
#: mod/install.php:319
|
||||
msgid ""
|
||||
"If you don't have a command line version of PHP installed on server, you "
|
||||
"will not be able to run the background processing. See <a "
|
||||
"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
|
||||
"up-the-poller'>'Setup the poller'</a>"
|
||||
msgstr "Wenn auf deinem Server keine Kommandozeilenversion von PHP installiert ist, kannst du den Hintergrundprozess nicht einrichten. Hier findest du alternative Möglichkeiten<a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'für das Poller Setup'</a>"
|
||||
|
||||
#: mod/install.php:323
|
||||
msgid "PHP executable path"
|
||||
msgstr "Pfad zu PHP"
|
||||
|
||||
#: mod/install.php:323
|
||||
msgid ""
|
||||
"Enter full path to php executable. You can leave this blank to continue the "
|
||||
"installation."
|
||||
msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."
|
||||
|
||||
#: mod/install.php:328
|
||||
msgid "Command line PHP"
|
||||
msgstr "Kommandozeilen-PHP"
|
||||
|
||||
#: mod/install.php:337
|
||||
msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
|
||||
msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"
|
||||
|
||||
#: mod/install.php:338
|
||||
msgid "Found PHP version: "
|
||||
msgstr "Gefundene PHP Version:"
|
||||
|
||||
#: mod/install.php:340
|
||||
msgid "PHP cli binary"
|
||||
msgstr "PHP CLI Binary"
|
||||
|
||||
#: mod/install.php:351
|
||||
msgid ""
|
||||
"The command line version of PHP on your system does not have "
|
||||
"\"register_argc_argv\" enabled."
|
||||
msgstr "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."
|
||||
|
||||
#: mod/install.php:352
|
||||
msgid "This is required for message delivery to work."
|
||||
msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
|
||||
|
||||
#: mod/install.php:354
|
||||
msgid "PHP register_argc_argv"
|
||||
msgstr "PHP register_argc_argv"
|
||||
|
||||
#: mod/install.php:377
|
||||
msgid ""
|
||||
"Error: the \"openssl_pkey_new\" function on this system is not able to "
|
||||
"generate encryption keys"
|
||||
msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"
|
||||
|
||||
#: mod/install.php:378
|
||||
msgid ""
|
||||
"If running under Windows, please see "
|
||||
"\"http://www.php.net/manual/en/openssl.installation.php\"."
|
||||
msgstr "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."
|
||||
|
||||
#: mod/install.php:380
|
||||
msgid "Generate encryption keys"
|
||||
msgstr "Schlüssel erzeugen"
|
||||
|
||||
#: mod/install.php:387
|
||||
msgid "libCurl PHP module"
|
||||
msgstr "PHP: libCurl-Modul"
|
||||
|
||||
#: mod/install.php:388
|
||||
msgid "GD graphics PHP module"
|
||||
msgstr "PHP: GD-Grafikmodul"
|
||||
|
||||
#: mod/install.php:389
|
||||
msgid "OpenSSL PHP module"
|
||||
msgstr "PHP: OpenSSL-Modul"
|
||||
|
||||
#: mod/install.php:390
|
||||
msgid "PDO or MySQLi PHP module"
|
||||
msgstr "PDO oder MySQLi PHP Modul"
|
||||
|
||||
#: mod/install.php:391
|
||||
msgid "mb_string PHP module"
|
||||
msgstr "PHP: mb_string-Modul"
|
||||
|
||||
#: mod/install.php:392
|
||||
msgid "XML PHP module"
|
||||
msgstr "XML PHP Modul"
|
||||
|
||||
#: mod/install.php:393
|
||||
msgid "iconv module"
|
||||
msgstr "iconv module"
|
||||
|
||||
#: mod/install.php:397 mod/install.php:399
|
||||
msgid "Apache mod_rewrite module"
|
||||
msgstr "Apache mod_rewrite module"
|
||||
|
||||
#: mod/install.php:397
|
||||
msgid ""
|
||||
"Error: Apache webserver mod-rewrite module is required but not installed."
|
||||
msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."
|
||||
|
||||
#: mod/install.php:405
|
||||
msgid "Error: libCURL PHP module required but not installed."
|
||||
msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
|
||||
|
||||
#: mod/install.php:409
|
||||
msgid ""
|
||||
"Error: GD graphics PHP module with JPEG support required but not installed."
|
||||
msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."
|
||||
|
||||
#: mod/install.php:413
|
||||
msgid "Error: openssl PHP module required but not installed."
|
||||
msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
|
||||
|
||||
#: mod/install.php:417
|
||||
msgid "Error: PDO or MySQLi PHP module required but not installed."
|
||||
msgstr "Fehler: PDO oder MySQLi PHP Modul erforderlich, aber nicht installiert."
|
||||
|
||||
#: mod/install.php:421
|
||||
msgid "Error: The MySQL driver for PDO is not installed."
|
||||
msgstr "Fehler: der MySQL Treiber für PDO ist nicht installiert"
|
||||
|
||||
#: mod/install.php:425
|
||||
msgid "Error: mb_string PHP module required but not installed."
|
||||
msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
|
||||
|
||||
#: mod/install.php:429
|
||||
msgid "Error: iconv PHP module required but not installed."
|
||||
msgstr "Fehler: Das iconv-Modul von PHP ist nicht installiert."
|
||||
|
||||
#: mod/install.php:439
|
||||
msgid "Error, XML PHP module required but not installed."
|
||||
msgstr "Fehler: XML PHP Modul erforderlich aber nicht installiert."
|
||||
|
||||
#: mod/install.php:451
|
||||
msgid ""
|
||||
"The web installer needs to be able to create a file called \".htconfig.php\""
|
||||
" in the top folder of your web server and it is unable to do so."
|
||||
msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."
|
||||
|
||||
#: mod/install.php:452
|
||||
msgid ""
|
||||
"This is most often a permission setting, as the web server may not be able "
|
||||
"to write files in your folder - even if you can."
|
||||
msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."
|
||||
|
||||
#: mod/install.php:453
|
||||
msgid ""
|
||||
"At the end of this procedure, we will give you a text to save in a file "
|
||||
"named .htconfig.php in your Friendica top folder."
|
||||
msgstr "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."
|
||||
|
||||
#: mod/install.php:454
|
||||
msgid ""
|
||||
"You can alternatively skip this procedure and perform a manual installation."
|
||||
" Please see the file \"INSTALL.txt\" for instructions."
|
||||
msgstr "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt."
|
||||
|
||||
#: mod/install.php:457
|
||||
msgid ".htconfig.php is writable"
|
||||
msgstr "Schreibrechte auf .htconfig.php"
|
||||
|
||||
#: mod/install.php:467
|
||||
msgid ""
|
||||
"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
|
||||
"compiles templates to PHP to speed up rendering."
|
||||
msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."
|
||||
|
||||
#: mod/install.php:468
|
||||
msgid ""
|
||||
"In order to store these compiled templates, the web server needs to have "
|
||||
"write access to the directory view/smarty3/ under the Friendica top level "
|
||||
"folder."
|
||||
msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."
|
||||
|
||||
#: mod/install.php:469
|
||||
msgid ""
|
||||
"Please ensure that the user that your web server runs as (e.g. www-data) has"
|
||||
" write access to this folder."
|
||||
msgstr "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."
|
||||
|
||||
#: mod/install.php:470
|
||||
msgid ""
|
||||
"Note: as a security measure, you should give the web server write access to "
|
||||
"view/smarty3/ only--not the template files (.tpl) that it contains."
|
||||
msgstr "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."
|
||||
|
||||
#: mod/install.php:473
|
||||
msgid "view/smarty3 is writable"
|
||||
msgstr "view/smarty3 ist schreibbar"
|
||||
|
||||
#: mod/install.php:489
|
||||
msgid ""
|
||||
"Url rewrite in .htaccess is not working. Check your server configuration."
|
||||
msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."
|
||||
|
||||
#: mod/install.php:491
|
||||
msgid "Url rewrite is working"
|
||||
msgstr "URL rewrite funktioniert"
|
||||
|
||||
#: mod/install.php:510
|
||||
msgid "ImageMagick PHP extension is not installed"
|
||||
msgstr "ImageMagicx PHP Erweiterung ist nicht installiert."
|
||||
|
||||
#: mod/install.php:512
|
||||
msgid "ImageMagick PHP extension is installed"
|
||||
msgstr "ImageMagick PHP Erweiterung ist installiert"
|
||||
|
||||
#: mod/install.php:514
|
||||
msgid "ImageMagick supports GIF"
|
||||
msgstr "ImageMagick unterstützt GIF"
|
||||
|
||||
#: mod/install.php:521
|
||||
msgid ""
|
||||
"The database configuration file \".htconfig.php\" could not be written. "
|
||||
"Please use the enclosed text to create a configuration file in your web "
|
||||
"server root."
|
||||
msgstr "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen."
|
||||
|
||||
#: mod/install.php:546
|
||||
msgid "<h1>What next</h1>"
|
||||
msgstr "<h1>Wie geht es weiter?</h1>"
|
||||
|
||||
#: mod/install.php:547
|
||||
msgid ""
|
||||
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
|
||||
"poller."
|
||||
msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."
|
||||
|
||||
#: mod/search.php:28 mod/network.php:189
|
||||
msgid "Remove term"
|
||||
msgstr "Begriff entfernen"
|
||||
|
||||
#: mod/search.php:96
|
||||
msgid "Only logged in users are permitted to perform a search."
|
||||
msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet."
|
||||
|
||||
#: mod/search.php:120
|
||||
msgid "Too Many Requests"
|
||||
msgstr "Zu viele Abfragen"
|
||||
|
||||
#: mod/search.php:121
|
||||
msgid "Only one search per minute is permitted for not logged in users."
|
||||
msgstr "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet."
|
||||
|
||||
#: mod/search.php:221
|
||||
#, php-format
|
||||
msgid "Items tagged with: %s"
|
||||
msgstr "Beiträge die mit %s getaggt sind"
|
||||
|
||||
#: mod/search.php:223 mod/contacts.php:827
|
||||
#, php-format
|
||||
msgid "Results for: %s"
|
||||
msgstr "Ergebnisse für: %s"
|
||||
|
||||
#: mod/unfollow.php:33
|
||||
msgid "Contact wasn't found or can't be unfollowed."
|
||||
msgstr "Der Kontakt konnte nicht gefunden oder nicht entfolgt werden."
|
||||
|
||||
#: mod/unfollow.php:47
|
||||
msgid "Contact unfollowed"
|
||||
msgstr "Kontakt wird nicht mehr gefolgt"
|
||||
|
||||
#: mod/unfollow.php:73
|
||||
msgid "You aren't a friend of this contact."
|
||||
msgstr "Du hast keine beidseitige Freundschaft mit diesem Kontakt."
|
||||
|
||||
#: mod/unfollow.php:79
|
||||
msgid "Unfollowing is currently not supported by your network."
|
||||
msgstr "Bei diesem Netzwerk wird das Entfolgen derzeit nicht unterstützt."
|
||||
|
||||
#: mod/unfollow.php:100 mod/contacts.php:593
|
||||
msgid "Disconnect/Unfollow"
|
||||
msgstr "Verbindung lösen/Nicht mehr folgen"
|
||||
|
||||
#: mod/admin.php:100
|
||||
#: mod/admin.php:102
|
||||
msgid "Theme settings updated."
|
||||
msgstr "Themeneinstellungen aktualisiert."
|
||||
|
||||
#: mod/admin.php:172 mod/admin.php:1175
|
||||
#: mod/admin.php:174 mod/admin.php:1177
|
||||
msgid "Site"
|
||||
msgstr "Seite"
|
||||
|
||||
#: mod/admin.php:173 mod/admin.php:1103 mod/admin.php:1620 mod/admin.php:1636
|
||||
#: mod/admin.php:175 mod/admin.php:1105 mod/admin.php:1620 mod/admin.php:1636
|
||||
msgid "Users"
|
||||
msgstr "Nutzer"
|
||||
|
||||
#: mod/admin.php:174 mod/admin.php:1738 mod/admin.php:1801 mod/settings.php:74
|
||||
#: mod/admin.php:176 mod/admin.php:1738 mod/admin.php:1801 mod/settings.php:77
|
||||
msgid "Plugins"
|
||||
msgstr "Plugins"
|
||||
|
||||
#: mod/admin.php:175 mod/admin.php:2014 mod/admin.php:2064
|
||||
#: mod/admin.php:177 mod/admin.php:2014 mod/admin.php:2064
|
||||
msgid "Themes"
|
||||
msgstr "Themen"
|
||||
|
||||
#: mod/admin.php:176 mod/settings.php:52
|
||||
#: mod/admin.php:178 mod/settings.php:55
|
||||
msgid "Additional features"
|
||||
msgstr "Zusätzliche Features"
|
||||
|
||||
#: mod/admin.php:177
|
||||
#: mod/admin.php:179
|
||||
msgid "DB updates"
|
||||
msgstr "DB Updates"
|
||||
|
||||
#: mod/admin.php:178 mod/admin.php:585
|
||||
#: mod/admin.php:180 mod/admin.php:587
|
||||
msgid "Inspect Queue"
|
||||
msgstr "Warteschlange Inspizieren"
|
||||
|
||||
#: mod/admin.php:179 mod/admin.php:299
|
||||
#: mod/admin.php:181 mod/admin.php:301
|
||||
msgid "Server Blocklist"
|
||||
msgstr "Server Blockliste"
|
||||
|
||||
#: mod/admin.php:180 mod/admin.php:551
|
||||
#: mod/admin.php:182 mod/admin.php:553
|
||||
msgid "Federation Statistics"
|
||||
msgstr "Federation Statistik"
|
||||
|
||||
#: mod/admin.php:181 mod/admin.php:376
|
||||
#: mod/admin.php:183 mod/admin.php:378
|
||||
msgid "Delete Item"
|
||||
msgstr "Eintrag löschen"
|
||||
|
||||
#: mod/admin.php:195 mod/admin.php:206 mod/admin.php:2138
|
||||
#: mod/admin.php:197 mod/admin.php:208 mod/admin.php:2138
|
||||
msgid "Logs"
|
||||
msgstr "Protokolle"
|
||||
|
||||
#: mod/admin.php:196 mod/admin.php:2206
|
||||
#: mod/admin.php:198 mod/admin.php:2206
|
||||
msgid "View Logs"
|
||||
msgstr "Protokolle anzeigen"
|
||||
|
||||
#: mod/admin.php:197
|
||||
#: mod/admin.php:199
|
||||
msgid "probe address"
|
||||
msgstr "Adresse untersuchen"
|
||||
|
||||
#: mod/admin.php:198
|
||||
#: mod/admin.php:200
|
||||
msgid "check webfinger"
|
||||
msgstr "Webfinger überprüfen"
|
||||
|
||||
#: mod/admin.php:205
|
||||
#: mod/admin.php:207
|
||||
msgid "Plugin Features"
|
||||
msgstr "Plugin Features"
|
||||
|
||||
#: mod/admin.php:207
|
||||
#: mod/admin.php:209
|
||||
msgid "diagnostics"
|
||||
msgstr "Diagnose"
|
||||
|
||||
#: mod/admin.php:208
|
||||
#: mod/admin.php:210
|
||||
msgid "User registrations waiting for confirmation"
|
||||
msgstr "Nutzeranmeldungen die auf Bestätigung warten"
|
||||
|
||||
#: mod/admin.php:290
|
||||
#: mod/admin.php:292
|
||||
msgid "The blocked domain"
|
||||
msgstr "Die blockierte Domain"
|
||||
|
||||
#: mod/admin.php:291 mod/admin.php:304
|
||||
#: mod/admin.php:293 mod/admin.php:311 mod/friendica.php:117
|
||||
msgid "Reason for the block"
|
||||
msgstr "Begründung für die Blockierung"
|
||||
|
||||
#: mod/admin.php:293 mod/admin.php:306
|
||||
msgid "The reason why you blocked this domain."
|
||||
msgstr "Die Begründung warum du diese Domain blockiert hast."
|
||||
|
||||
#: mod/admin.php:292
|
||||
#: mod/admin.php:294
|
||||
msgid "Delete domain"
|
||||
msgstr "Domain löschen"
|
||||
|
||||
#: mod/admin.php:292
|
||||
#: mod/admin.php:294
|
||||
msgid "Check to delete this entry from the blocklist"
|
||||
msgstr "Markieren, um diesen Eintrag von der Blocklist zu entfernen"
|
||||
|
||||
#: mod/admin.php:298 mod/admin.php:375 mod/admin.php:550 mod/admin.php:584
|
||||
#: mod/admin.php:681 mod/admin.php:1174 mod/admin.php:1619 mod/admin.php:1737
|
||||
#: mod/admin.php:300 mod/admin.php:377 mod/admin.php:552 mod/admin.php:586
|
||||
#: mod/admin.php:683 mod/admin.php:1176 mod/admin.php:1619 mod/admin.php:1737
|
||||
#: mod/admin.php:1800 mod/admin.php:2013 mod/admin.php:2063 mod/admin.php:2137
|
||||
#: mod/admin.php:2205
|
||||
msgid "Administration"
|
||||
msgstr "Administration"
|
||||
|
||||
#: mod/admin.php:300
|
||||
#: mod/admin.php:302
|
||||
msgid ""
|
||||
"This page can be used to define a black list of servers from the federated "
|
||||
"network that are not allowed to interact with your node. For all entered "
|
||||
|
|
@ -5254,138 +3288,138 @@ msgid ""
|
|||
"server."
|
||||
msgstr "Auf dieser Seite kannst du die Liste der blockierten Domains aus dem föderalen Netzwerk verwalten, denen es untersagt ist mit deinem Knoten zu interagieren. Für jede der blockierten Domains musst du außerdem einen Grund für die Sperrung angeben."
|
||||
|
||||
#: mod/admin.php:301
|
||||
#: mod/admin.php:303
|
||||
msgid ""
|
||||
"The list of blocked servers will be made publically available on the "
|
||||
"/friendica page so that your users and people investigating communication "
|
||||
"problems can find the reason easily."
|
||||
msgstr "Die Liste der blockierten Domains wird auf der /friendica Seite öffentlich einsehbar gemacht, damit deine Nutzer und Personen die Kommunikationsprobleme erkunden, die Ursachen einfach finden können."
|
||||
|
||||
#: mod/admin.php:302
|
||||
#: mod/admin.php:304
|
||||
msgid "Add new entry to block list"
|
||||
msgstr "Neuen Eintrag in die Blockliste"
|
||||
|
||||
#: mod/admin.php:303
|
||||
#: mod/admin.php:305
|
||||
msgid "Server Domain"
|
||||
msgstr "Domain des Servers"
|
||||
|
||||
#: mod/admin.php:303
|
||||
#: mod/admin.php:305
|
||||
msgid ""
|
||||
"The domain of the new server to add to the block list. Do not include the "
|
||||
"protocol."
|
||||
msgstr "Der Domain-Name des Servers der geblockt werden soll. Gib das Protokoll nicht mit an!"
|
||||
|
||||
#: mod/admin.php:304
|
||||
#: mod/admin.php:306
|
||||
msgid "Block reason"
|
||||
msgstr "Begründung der Blockierung"
|
||||
|
||||
#: mod/admin.php:305
|
||||
#: mod/admin.php:307
|
||||
msgid "Add Entry"
|
||||
msgstr "Eintrag hinzufügen"
|
||||
|
||||
#: mod/admin.php:306
|
||||
#: mod/admin.php:308
|
||||
msgid "Save changes to the blocklist"
|
||||
msgstr "Änderungen der Blockliste speichern"
|
||||
|
||||
#: mod/admin.php:307
|
||||
#: mod/admin.php:309
|
||||
msgid "Current Entries in the Blocklist"
|
||||
msgstr "Aktuelle Einträge der Blockliste"
|
||||
|
||||
#: mod/admin.php:310
|
||||
#: mod/admin.php:312
|
||||
msgid "Delete entry from blocklist"
|
||||
msgstr "Eintrag von der Blockliste entfernen"
|
||||
|
||||
#: mod/admin.php:313
|
||||
#: mod/admin.php:315
|
||||
msgid "Delete entry from blocklist?"
|
||||
msgstr "Eintrag von der Blockliste entfernen?"
|
||||
|
||||
#: mod/admin.php:338
|
||||
#: mod/admin.php:340
|
||||
msgid "Server added to blocklist."
|
||||
msgstr "Server zur Blockliste hinzugefügt."
|
||||
|
||||
#: mod/admin.php:354
|
||||
#: mod/admin.php:356
|
||||
msgid "Site blocklist updated."
|
||||
msgstr "Blockliste aktualisiert."
|
||||
|
||||
#: mod/admin.php:377
|
||||
#: mod/admin.php:379
|
||||
msgid "Delete this Item"
|
||||
msgstr "Diesen Eintrag löschen"
|
||||
|
||||
#: mod/admin.php:378
|
||||
#: mod/admin.php:380
|
||||
msgid ""
|
||||
"On this page you can delete an item from your node. If the item is a top "
|
||||
"level posting, the entire thread will be deleted."
|
||||
msgstr "Auf dieser Seite kannst du Einträge von deinem Knoten löschen. Wenn der Eintrag der Anfang einer Diskussion ist, wird der gesamte Diskussionsverlauf gelöscht."
|
||||
|
||||
#: mod/admin.php:379
|
||||
#: mod/admin.php:381
|
||||
msgid ""
|
||||
"You need to know the GUID of the item. You can find it e.g. by looking at "
|
||||
"the display URL. The last part of http://example.com/display/123456 is the "
|
||||
"GUID, here 123456."
|
||||
msgstr "Zur Löschung musst du die GUID des Eintrags kennen. Diese findest du z.B. durch die /display URL des Eintrags. Der letzte Teil der URL ist die GUID. Lautet die URL beispielsweise http://example.com/display/123456 ist die GUID 123456."
|
||||
|
||||
#: mod/admin.php:380
|
||||
#: mod/admin.php:382
|
||||
msgid "GUID"
|
||||
msgstr "GUID"
|
||||
|
||||
#: mod/admin.php:380
|
||||
#: mod/admin.php:382
|
||||
msgid "The GUID of the item you want to delete."
|
||||
msgstr "Die GUID des zu löschenden Eintrags"
|
||||
|
||||
#: mod/admin.php:417
|
||||
#: mod/admin.php:419
|
||||
msgid "Item marked for deletion."
|
||||
msgstr "Eintrag wurden zur Löschung markiert"
|
||||
|
||||
#: mod/admin.php:481
|
||||
#: mod/admin.php:483
|
||||
msgid "unknown"
|
||||
msgstr "Unbekannt"
|
||||
|
||||
#: mod/admin.php:544
|
||||
#: mod/admin.php:546
|
||||
msgid ""
|
||||
"This page offers you some numbers to the known part of the federated social "
|
||||
"network your Friendica node is part of. These numbers are not complete but "
|
||||
"only reflect the part of the network your node is aware of."
|
||||
msgstr "Diese Seite präsentiert einige Zahlen zu dem bekannten Teil des föderalen sozialen Netzwerks, von dem deine Friendica Installation ein Teil ist. Diese Zahlen sind nicht absolut und reflektieren nur den Teil des Netzwerks, den dein Knoten kennt."
|
||||
|
||||
#: mod/admin.php:545
|
||||
#: mod/admin.php:547
|
||||
msgid ""
|
||||
"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
|
||||
"will improve the data displayed here."
|
||||
msgstr "Die Funktion um <em>Automatisch ein Kontaktverzeichnis erstellen</em> ist nicht aktiv. Es wird die hier angezeigten Daten verbessern."
|
||||
|
||||
#: mod/admin.php:557
|
||||
#: mod/admin.php:559
|
||||
#, php-format
|
||||
msgid "Currently this node is aware of %d nodes from the following platforms:"
|
||||
msgstr "Momentan kennt dieser Knoten %d andere Knoten der folgenden Plattformen:"
|
||||
|
||||
#: mod/admin.php:587
|
||||
#: mod/admin.php:589
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#: mod/admin.php:588
|
||||
#: mod/admin.php:590
|
||||
msgid "Recipient Name"
|
||||
msgstr "Empfänger Name"
|
||||
|
||||
#: mod/admin.php:589
|
||||
#: mod/admin.php:591
|
||||
msgid "Recipient Profile"
|
||||
msgstr "Empfänger Profil"
|
||||
|
||||
#: mod/admin.php:591
|
||||
#: mod/admin.php:593
|
||||
msgid "Created"
|
||||
msgstr "Erstellt"
|
||||
|
||||
#: mod/admin.php:592
|
||||
#: mod/admin.php:594
|
||||
msgid "Last Tried"
|
||||
msgstr "Zuletzt versucht"
|
||||
|
||||
#: mod/admin.php:593
|
||||
#: mod/admin.php:595
|
||||
msgid ""
|
||||
"This page lists the content of the queue for outgoing postings. These are "
|
||||
"postings the initial delivery failed for. They will be resend later and "
|
||||
"eventually deleted if the delivery fails permanently."
|
||||
msgstr "Auf dieser Seite werden die in der Warteschlange eingereihten Beiträge aufgelistet. Bei diesen Beiträgen schlug die erste Zustellung fehl. Es wird später wiederholt versucht die Beiträge zuzustellen, bis sie schließlich gelöscht werden."
|
||||
|
||||
#: mod/admin.php:617
|
||||
#: mod/admin.php:619
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Your DB still runs with MyISAM tables. You should change the engine type to "
|
||||
|
|
@ -5396,481 +3430,481 @@ msgid ""
|
|||
"automatic conversion.<br />"
|
||||
msgstr "Deine DB verwendet derzeit noch MyISAM Tabellen. Du solltest die Datenbank Engine auf InnoDB umstellen, da Friendica in Zukunft InnoDB Features verwenden wird. Eine Anleitung zur Umstellung der Datenbank kannst du <a href=\"%s\">hier</a> finden. Du kannst außerdem mit dem Befehl <tt>php include/dbstructure.php toinnodb</tt> auf der Kommandozeile die Umstellung automatisch vornehmen lassen."
|
||||
|
||||
#: mod/admin.php:624
|
||||
#: mod/admin.php:626
|
||||
#, php-format
|
||||
msgid ""
|
||||
"There is a new version of Friendica available for download. Your current "
|
||||
"version is %1$s, upstream version is %2$s"
|
||||
msgstr "Es gibt eine neue Version von Friendica. Du verwendest derzeit die Version %1$s, die aktuelle Version ist %2$s."
|
||||
|
||||
#: mod/admin.php:635
|
||||
#: mod/admin.php:637
|
||||
msgid ""
|
||||
"The database update failed. Please run \"php include/dbstructure.php "
|
||||
"update\" from the command line and have a look at the errors that might "
|
||||
"appear."
|
||||
msgstr "Das Update der Datenbank ist fehlgeschlagen. Bitte führe 'php include/dbstructure.php update' in der Kommandozeile aus und achte auf eventuell auftretende Fehlermeldungen."
|
||||
|
||||
#: mod/admin.php:641
|
||||
#: mod/admin.php:643
|
||||
msgid "The worker was never executed. Please check your database structure!"
|
||||
msgstr "Der Hintergrundprozess (worker) wurde noch nie gestartet. Bitte überprüfe deine Datenbankstruktur."
|
||||
|
||||
#: mod/admin.php:644
|
||||
#: mod/admin.php:646
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The last worker execution was on %s UTC. This is older than one hour. Please"
|
||||
" check your crontab settings."
|
||||
msgstr "Der Hintergrundprozess (worker) wurde zuletzt um %s UTC ausgeführt. Das war vor mehr als einer Stunde. Bitte überprüfe deine crontab Einstellungen."
|
||||
|
||||
#: mod/admin.php:649 mod/admin.php:1569
|
||||
#: mod/admin.php:651 mod/admin.php:1569
|
||||
msgid "Normal Account"
|
||||
msgstr "Normales Konto"
|
||||
|
||||
#: mod/admin.php:650 mod/admin.php:1570
|
||||
#: mod/admin.php:652 mod/admin.php:1570
|
||||
msgid "Automatic Follower Account"
|
||||
msgstr "Automatisch folgendes Konto (Marktschreier)"
|
||||
|
||||
#: mod/admin.php:651 mod/admin.php:1571
|
||||
#: mod/admin.php:653 mod/admin.php:1571
|
||||
msgid "Public Forum Account"
|
||||
msgstr "Öffentliches Forum Konto"
|
||||
|
||||
#: mod/admin.php:652 mod/admin.php:1572
|
||||
#: mod/admin.php:654 mod/admin.php:1572
|
||||
msgid "Automatic Friend Account"
|
||||
msgstr "Automatische Freunde Seite"
|
||||
|
||||
#: mod/admin.php:653
|
||||
#: mod/admin.php:655
|
||||
msgid "Blog Account"
|
||||
msgstr "Blog-Konto"
|
||||
|
||||
#: mod/admin.php:654
|
||||
#: mod/admin.php:656
|
||||
msgid "Private Forum Account"
|
||||
msgstr "Privates Forum Konto"
|
||||
|
||||
#: mod/admin.php:676
|
||||
#: mod/admin.php:678
|
||||
msgid "Message queues"
|
||||
msgstr "Nachrichten-Warteschlangen"
|
||||
|
||||
#: mod/admin.php:682
|
||||
#: mod/admin.php:684
|
||||
msgid "Summary"
|
||||
msgstr "Zusammenfassung"
|
||||
|
||||
#: mod/admin.php:684
|
||||
#: mod/admin.php:686
|
||||
msgid "Registered users"
|
||||
msgstr "Registrierte Personen"
|
||||
|
||||
#: mod/admin.php:686
|
||||
#: mod/admin.php:688
|
||||
msgid "Pending registrations"
|
||||
msgstr "Anstehende Anmeldungen"
|
||||
|
||||
#: mod/admin.php:687
|
||||
#: mod/admin.php:689
|
||||
msgid "Version"
|
||||
msgstr "Version"
|
||||
|
||||
#: mod/admin.php:692
|
||||
#: mod/admin.php:694
|
||||
msgid "Active plugins"
|
||||
msgstr "Aktive Plugins"
|
||||
|
||||
#: mod/admin.php:722
|
||||
#: mod/admin.php:724
|
||||
msgid "Can not parse base url. Must have at least <scheme>://<domain>"
|
||||
msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus <protokoll>://<domain> bestehen"
|
||||
|
||||
#: mod/admin.php:1029
|
||||
#: mod/admin.php:1031
|
||||
msgid "Site settings updated."
|
||||
msgstr "Seiteneinstellungen aktualisiert."
|
||||
|
||||
#: mod/admin.php:1057 mod/settings.php:948
|
||||
#: mod/admin.php:1059 mod/settings.php:953
|
||||
msgid "No special theme for mobile devices"
|
||||
msgstr "Kein spezielles Theme für mobile Geräte verwenden."
|
||||
|
||||
#: mod/admin.php:1086
|
||||
#: mod/admin.php:1088
|
||||
msgid "No community page"
|
||||
msgstr "Keine Gemeinschaftsseite"
|
||||
|
||||
#: mod/admin.php:1087
|
||||
#: mod/admin.php:1089
|
||||
msgid "Public postings from users of this site"
|
||||
msgstr "Öffentliche Beiträge von NutzerInnen dieser Seite"
|
||||
|
||||
#: mod/admin.php:1088
|
||||
#: mod/admin.php:1090
|
||||
msgid "Global community page"
|
||||
msgstr "Globale Gemeinschaftsseite"
|
||||
|
||||
#: mod/admin.php:1093 mod/contacts.php:552
|
||||
#: mod/admin.php:1095 mod/contacts.php:553
|
||||
msgid "Never"
|
||||
msgstr "Niemals"
|
||||
|
||||
#: mod/admin.php:1094
|
||||
#: mod/admin.php:1096
|
||||
msgid "At post arrival"
|
||||
msgstr "Beim Empfang von Nachrichten"
|
||||
|
||||
#: mod/admin.php:1102 mod/contacts.php:579
|
||||
#: mod/admin.php:1104 mod/contacts.php:583
|
||||
msgid "Disabled"
|
||||
msgstr "Deaktiviert"
|
||||
|
||||
#: mod/admin.php:1104
|
||||
#: mod/admin.php:1106
|
||||
msgid "Users, Global Contacts"
|
||||
msgstr "Nutzer, globale Kontakte"
|
||||
|
||||
#: mod/admin.php:1105
|
||||
#: mod/admin.php:1107
|
||||
msgid "Users, Global Contacts/fallback"
|
||||
msgstr "Nutzer, globale Kontakte / Fallback"
|
||||
|
||||
#: mod/admin.php:1109
|
||||
#: mod/admin.php:1111
|
||||
msgid "One month"
|
||||
msgstr "ein Monat"
|
||||
|
||||
#: mod/admin.php:1110
|
||||
#: mod/admin.php:1112
|
||||
msgid "Three months"
|
||||
msgstr "drei Monate"
|
||||
|
||||
#: mod/admin.php:1111
|
||||
#: mod/admin.php:1113
|
||||
msgid "Half a year"
|
||||
msgstr "ein halbes Jahr"
|
||||
|
||||
#: mod/admin.php:1112
|
||||
#: mod/admin.php:1114
|
||||
msgid "One year"
|
||||
msgstr "ein Jahr"
|
||||
|
||||
#: mod/admin.php:1117
|
||||
#: mod/admin.php:1119
|
||||
msgid "Multi user instance"
|
||||
msgstr "Mehrbenutzer Instanz"
|
||||
|
||||
#: mod/admin.php:1140
|
||||
#: mod/admin.php:1142
|
||||
msgid "Closed"
|
||||
msgstr "Geschlossen"
|
||||
|
||||
#: mod/admin.php:1141
|
||||
#: mod/admin.php:1143
|
||||
msgid "Requires approval"
|
||||
msgstr "Bedarf der Zustimmung"
|
||||
|
||||
#: mod/admin.php:1142
|
||||
#: mod/admin.php:1144
|
||||
msgid "Open"
|
||||
msgstr "Offen"
|
||||
|
||||
#: mod/admin.php:1146
|
||||
#: mod/admin.php:1148
|
||||
msgid "No SSL policy, links will track page SSL state"
|
||||
msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
|
||||
|
||||
#: mod/admin.php:1147
|
||||
#: mod/admin.php:1149
|
||||
msgid "Force all links to use SSL"
|
||||
msgstr "SSL für alle Links erzwingen"
|
||||
|
||||
#: mod/admin.php:1148
|
||||
#: mod/admin.php:1150
|
||||
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:1152
|
||||
#: mod/admin.php:1154
|
||||
msgid "Don't check"
|
||||
msgstr "Nicht überprüfen"
|
||||
|
||||
#: mod/admin.php:1153
|
||||
#: mod/admin.php:1155
|
||||
msgid "check the stable version"
|
||||
msgstr "überprüfe die stabile Version"
|
||||
|
||||
#: mod/admin.php:1154
|
||||
#: mod/admin.php:1156
|
||||
msgid "check the development version"
|
||||
msgstr "überprüfe die Entwicklungsversion"
|
||||
|
||||
#: mod/admin.php:1176 mod/admin.php:1802 mod/admin.php:2065 mod/admin.php:2139
|
||||
#: mod/admin.php:2292 mod/settings.php:691 mod/settings.php:802
|
||||
#: mod/settings.php:851 mod/settings.php:913 mod/settings.php:1010
|
||||
#: mod/settings.php:1258
|
||||
#: mod/admin.php:1178 mod/admin.php:1802 mod/admin.php:2065 mod/admin.php:2139
|
||||
#: mod/admin.php:2289 mod/settings.php:696 mod/settings.php:807
|
||||
#: mod/settings.php:856 mod/settings.php:918 mod/settings.php:1006
|
||||
#: mod/settings.php:1255
|
||||
msgid "Save Settings"
|
||||
msgstr "Einstellungen speichern"
|
||||
|
||||
#: mod/admin.php:1177
|
||||
#: mod/admin.php:1179
|
||||
msgid "Republish users to directory"
|
||||
msgstr "Nutzer erneut im globalen Verzeichnis veröffentlichen."
|
||||
|
||||
#: mod/admin.php:1178 mod/register.php:277
|
||||
#: mod/admin.php:1180 mod/register.php:279
|
||||
msgid "Registration"
|
||||
msgstr "Registrierung"
|
||||
|
||||
#: mod/admin.php:1179
|
||||
#: mod/admin.php:1181
|
||||
msgid "File upload"
|
||||
msgstr "Datei hochladen"
|
||||
|
||||
#: mod/admin.php:1180
|
||||
#: mod/admin.php:1182
|
||||
msgid "Policies"
|
||||
msgstr "Regeln"
|
||||
|
||||
#: mod/admin.php:1182
|
||||
#: mod/admin.php:1184
|
||||
msgid "Auto Discovered Contact Directory"
|
||||
msgstr "Automatisch ein Kontaktverzeichnis erstellen"
|
||||
|
||||
#: mod/admin.php:1183
|
||||
#: mod/admin.php:1185
|
||||
msgid "Performance"
|
||||
msgstr "Performance"
|
||||
|
||||
#: mod/admin.php:1184
|
||||
#: mod/admin.php:1186
|
||||
msgid "Worker"
|
||||
msgstr "Worker"
|
||||
|
||||
#: mod/admin.php:1185
|
||||
#: mod/admin.php:1187
|
||||
msgid ""
|
||||
"Relocate - WARNING: advanced function. Could make this server unreachable."
|
||||
msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
|
||||
|
||||
#: mod/admin.php:1188
|
||||
#: mod/admin.php:1190
|
||||
msgid "Site name"
|
||||
msgstr "Seitenname"
|
||||
|
||||
#: mod/admin.php:1189
|
||||
#: mod/admin.php:1191
|
||||
msgid "Host name"
|
||||
msgstr "Host Name"
|
||||
|
||||
#: mod/admin.php:1190
|
||||
#: mod/admin.php:1192
|
||||
msgid "Sender Email"
|
||||
msgstr "Absender für Emails"
|
||||
|
||||
#: mod/admin.php:1190
|
||||
#: mod/admin.php:1192
|
||||
msgid ""
|
||||
"The email address your server shall use to send notification emails from."
|
||||
msgstr "Die E-Mail Adresse die dein Server zum Versenden von Benachrichtigungen verwenden soll."
|
||||
|
||||
#: mod/admin.php:1191
|
||||
#: mod/admin.php:1193
|
||||
msgid "Banner/Logo"
|
||||
msgstr "Banner/Logo"
|
||||
|
||||
#: mod/admin.php:1192
|
||||
#: mod/admin.php:1194
|
||||
msgid "Shortcut icon"
|
||||
msgstr "Shortcut Icon"
|
||||
|
||||
#: mod/admin.php:1192
|
||||
#: mod/admin.php:1194
|
||||
msgid "Link to an icon that will be used for browsers."
|
||||
msgstr "Link zu einem Icon, das Browser verwenden werden."
|
||||
|
||||
#: mod/admin.php:1193
|
||||
#: mod/admin.php:1195
|
||||
msgid "Touch icon"
|
||||
msgstr "Touch Icon"
|
||||
|
||||
#: mod/admin.php:1193
|
||||
#: mod/admin.php:1195
|
||||
msgid "Link to an icon that will be used for tablets and mobiles."
|
||||
msgstr "Link zu einem Icon das Tablets und Handies verwenden sollen."
|
||||
|
||||
#: mod/admin.php:1194
|
||||
#: mod/admin.php:1196
|
||||
msgid "Additional Info"
|
||||
msgstr "Zusätzliche Informationen"
|
||||
|
||||
#: mod/admin.php:1194
|
||||
#: mod/admin.php:1196
|
||||
#, php-format
|
||||
msgid ""
|
||||
"For public servers: you can add additional information here that will be "
|
||||
"listed at %s/siteinfo."
|
||||
msgstr "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf %s/siteinfo angezeigt werden."
|
||||
|
||||
#: mod/admin.php:1195
|
||||
#: mod/admin.php:1197
|
||||
msgid "System language"
|
||||
msgstr "Systemsprache"
|
||||
|
||||
#: mod/admin.php:1196
|
||||
#: mod/admin.php:1198
|
||||
msgid "System theme"
|
||||
msgstr "Systemweites Theme"
|
||||
|
||||
#: mod/admin.php:1196
|
||||
#: mod/admin.php:1198
|
||||
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:1197
|
||||
#: mod/admin.php:1199
|
||||
msgid "Mobile system theme"
|
||||
msgstr "Systemweites mobiles Theme"
|
||||
|
||||
#: mod/admin.php:1197
|
||||
#: mod/admin.php:1199
|
||||
msgid "Theme for mobile devices"
|
||||
msgstr "Thema für mobile Geräte"
|
||||
|
||||
#: mod/admin.php:1198
|
||||
#: mod/admin.php:1200
|
||||
msgid "SSL link policy"
|
||||
msgstr "Regeln für SSL Links"
|
||||
|
||||
#: mod/admin.php:1198
|
||||
#: mod/admin.php:1200
|
||||
msgid "Determines whether generated links should be forced to use SSL"
|
||||
msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
|
||||
|
||||
#: mod/admin.php:1199
|
||||
#: mod/admin.php:1201
|
||||
msgid "Force SSL"
|
||||
msgstr "Erzwinge SSL"
|
||||
|
||||
#: mod/admin.php:1199
|
||||
#: mod/admin.php:1201
|
||||
msgid ""
|
||||
"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
|
||||
" to endless loops."
|
||||
msgstr "Erzinge alle Nicht-SSL Anfragen auf SSL - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife."
|
||||
|
||||
#: mod/admin.php:1200
|
||||
#: mod/admin.php:1202
|
||||
msgid "Hide help entry from navigation menu"
|
||||
msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
|
||||
|
||||
#: mod/admin.php:1200
|
||||
#: mod/admin.php:1202
|
||||
msgid ""
|
||||
"Hides the menu entry for the Help pages from the navigation menu. You can "
|
||||
"still access it calling /help directly."
|
||||
msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden."
|
||||
|
||||
#: mod/admin.php:1201
|
||||
#: mod/admin.php:1203
|
||||
msgid "Single user instance"
|
||||
msgstr "Ein-Nutzer Instanz"
|
||||
|
||||
#: mod/admin.php:1201
|
||||
#: mod/admin.php:1203
|
||||
msgid "Make this instance multi-user or single-user for the named user"
|
||||
msgstr "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt."
|
||||
|
||||
#: mod/admin.php:1202
|
||||
#: mod/admin.php:1204
|
||||
msgid "Maximum image size"
|
||||
msgstr "Maximale Bildgröße"
|
||||
|
||||
#: mod/admin.php:1202
|
||||
#: mod/admin.php:1204
|
||||
msgid ""
|
||||
"Maximum size in bytes of uploaded images. Default is 0, which means no "
|
||||
"limits."
|
||||
msgstr "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit."
|
||||
|
||||
#: mod/admin.php:1203
|
||||
#: mod/admin.php:1205
|
||||
msgid "Maximum image length"
|
||||
msgstr "Maximale Bildlänge"
|
||||
|
||||
#: mod/admin.php:1203
|
||||
#: mod/admin.php:1205
|
||||
msgid ""
|
||||
"Maximum length in pixels of the longest side of uploaded images. Default is "
|
||||
"-1, which means no limits."
|
||||
msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet."
|
||||
|
||||
#: mod/admin.php:1204
|
||||
#: mod/admin.php:1206
|
||||
msgid "JPEG image quality"
|
||||
msgstr "Qualität des JPEG Bildes"
|
||||
|
||||
#: mod/admin.php:1204
|
||||
#: mod/admin.php:1206
|
||||
msgid ""
|
||||
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
|
||||
"100, which is full quality."
|
||||
msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust."
|
||||
|
||||
#: mod/admin.php:1206
|
||||
#: mod/admin.php:1208
|
||||
msgid "Register policy"
|
||||
msgstr "Registrierungsmethode"
|
||||
|
||||
#: mod/admin.php:1207
|
||||
#: mod/admin.php:1209
|
||||
msgid "Maximum Daily Registrations"
|
||||
msgstr "Maximum täglicher Registrierungen"
|
||||
|
||||
#: mod/admin.php:1207
|
||||
#: mod/admin.php:1209
|
||||
msgid ""
|
||||
"If registration is permitted above, this sets the maximum number of new user"
|
||||
" registrations to accept per day. If register is set to closed, this "
|
||||
"setting has no effect."
|
||||
msgstr "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt."
|
||||
|
||||
#: mod/admin.php:1208
|
||||
#: mod/admin.php:1210
|
||||
msgid "Register text"
|
||||
msgstr "Registrierungstext"
|
||||
|
||||
#: mod/admin.php:1208
|
||||
#: mod/admin.php:1210
|
||||
msgid "Will be displayed prominently on the registration page."
|
||||
msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
|
||||
|
||||
#: mod/admin.php:1209
|
||||
#: mod/admin.php:1211
|
||||
msgid "Accounts abandoned after x days"
|
||||
msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
|
||||
|
||||
#: mod/admin.php:1209
|
||||
#: mod/admin.php:1211
|
||||
msgid ""
|
||||
"Will not waste system resources polling external sites for abandonded "
|
||||
"accounts. Enter 0 for no time limit."
|
||||
msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit."
|
||||
|
||||
#: mod/admin.php:1210
|
||||
#: mod/admin.php:1212
|
||||
msgid "Allowed friend domains"
|
||||
msgstr "Erlaubte Domains für Kontakte"
|
||||
|
||||
#: mod/admin.php:1210
|
||||
#: mod/admin.php:1212
|
||||
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 Kontakte erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
|
||||
|
||||
#: mod/admin.php:1211
|
||||
#: mod/admin.php:1213
|
||||
msgid "Allowed email domains"
|
||||
msgstr "Erlaubte Domains für E-Mails"
|
||||
|
||||
#: mod/admin.php:1211
|
||||
#: mod/admin.php:1213
|
||||
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:1212
|
||||
#: mod/admin.php:1214
|
||||
msgid "Block public"
|
||||
msgstr "Öffentlichen Zugriff blockieren"
|
||||
|
||||
#: mod/admin.php:1212
|
||||
#: mod/admin.php:1214
|
||||
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:1213
|
||||
#: mod/admin.php:1215
|
||||
msgid "Force publish"
|
||||
msgstr "Erzwinge Veröffentlichung"
|
||||
|
||||
#: mod/admin.php:1213
|
||||
#: mod/admin.php:1215
|
||||
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:1214
|
||||
#: mod/admin.php:1216
|
||||
msgid "Global directory URL"
|
||||
msgstr "URL des weltweiten Verzeichnisses"
|
||||
|
||||
#: mod/admin.php:1214
|
||||
#: mod/admin.php:1216
|
||||
msgid ""
|
||||
"URL to the global directory. If this is not set, the global directory is "
|
||||
"completely unavailable to the application."
|
||||
msgstr "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar."
|
||||
|
||||
#: mod/admin.php:1215
|
||||
#: mod/admin.php:1217
|
||||
msgid "Allow threaded items"
|
||||
msgstr "Erlaube Threads in Diskussionen"
|
||||
|
||||
#: mod/admin.php:1215
|
||||
#: mod/admin.php:1217
|
||||
msgid "Allow infinite level threading for items on this site."
|
||||
msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
|
||||
|
||||
#: mod/admin.php:1216
|
||||
#: mod/admin.php:1218
|
||||
msgid "Private posts by default for new users"
|
||||
msgstr "Private Beiträge als Standard für neue Nutzer"
|
||||
|
||||
#: mod/admin.php:1216
|
||||
#: mod/admin.php:1218
|
||||
msgid ""
|
||||
"Set default post permissions for all new members to the default privacy "
|
||||
"group rather than public."
|
||||
msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen."
|
||||
|
||||
#: mod/admin.php:1217
|
||||
#: mod/admin.php:1219
|
||||
msgid "Don't include post content in email notifications"
|
||||
msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
|
||||
|
||||
#: mod/admin.php:1217
|
||||
#: mod/admin.php:1219
|
||||
msgid ""
|
||||
"Don't include the content of a post/comment/private message/etc. in the "
|
||||
"email notifications that are sent out from this site, as a privacy measure."
|
||||
msgstr "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden."
|
||||
|
||||
#: mod/admin.php:1218
|
||||
#: mod/admin.php:1220
|
||||
msgid "Disallow public access to addons listed in the apps menu."
|
||||
msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
|
||||
|
||||
#: mod/admin.php:1218
|
||||
#: mod/admin.php:1220
|
||||
msgid ""
|
||||
"Checking this box will restrict addons listed in the apps menu to members "
|
||||
"only."
|
||||
msgstr "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt."
|
||||
|
||||
#: mod/admin.php:1219
|
||||
#: mod/admin.php:1221
|
||||
msgid "Don't embed private images in posts"
|
||||
msgstr "Private Bilder nicht in Beiträgen einbetten."
|
||||
|
||||
#: mod/admin.php:1219
|
||||
#: mod/admin.php:1221
|
||||
msgid ""
|
||||
"Don't replace locally-hosted private photos in posts with an embedded copy "
|
||||
"of the image. This means that contacts who receive posts containing private "
|
||||
|
|
@ -5878,210 +3912,210 @@ msgid ""
|
|||
"while."
|
||||
msgstr "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert."
|
||||
|
||||
#: mod/admin.php:1220
|
||||
#: mod/admin.php:1222
|
||||
msgid "Allow Users to set remote_self"
|
||||
msgstr "Nutzern erlauben das remote_self Flag zu setzen"
|
||||
|
||||
#: mod/admin.php:1220
|
||||
#: mod/admin.php:1222
|
||||
msgid ""
|
||||
"With checking this, every user is allowed to mark every contact as a "
|
||||
"remote_self in the repair contact dialog. Setting this flag on a contact "
|
||||
"causes mirroring every posting of that contact in the users stream."
|
||||
msgstr "Ist dies ausgewählt kann jeder Nutzer jeden seiner Kontakte als remote_self (entferntes Konto) im Kontakt reparieren Dialog markieren. Nach dem setzten dieses Flags werden alle Top-Level Beiträge dieser Kontakte automatisch in den Stream dieses Nutzers gepostet."
|
||||
|
||||
#: mod/admin.php:1221
|
||||
#: mod/admin.php:1223
|
||||
msgid "Block multiple registrations"
|
||||
msgstr "Unterbinde Mehrfachregistrierung"
|
||||
|
||||
#: mod/admin.php:1221
|
||||
#: mod/admin.php:1223
|
||||
msgid "Disallow users to register additional accounts for use as pages."
|
||||
msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
|
||||
|
||||
#: mod/admin.php:1222
|
||||
#: mod/admin.php:1224
|
||||
msgid "OpenID support"
|
||||
msgstr "OpenID Unterstützung"
|
||||
|
||||
#: mod/admin.php:1222
|
||||
#: mod/admin.php:1224
|
||||
msgid "OpenID support for registration and logins."
|
||||
msgstr "OpenID-Unterstützung für Registrierung und Login."
|
||||
|
||||
#: mod/admin.php:1223
|
||||
#: mod/admin.php:1225
|
||||
msgid "Fullname check"
|
||||
msgstr "Namen auf Vollständigkeit überprüfen"
|
||||
|
||||
#: mod/admin.php:1223
|
||||
#: mod/admin.php:1225
|
||||
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:1224
|
||||
#: mod/admin.php:1226
|
||||
msgid "Community Page Style"
|
||||
msgstr "Art der Gemeinschaftsseite"
|
||||
|
||||
#: mod/admin.php:1224
|
||||
#: mod/admin.php:1226
|
||||
msgid ""
|
||||
"Type of community page to show. 'Global community' shows every public "
|
||||
"posting from an open distributed network that arrived on this server."
|
||||
msgstr "Welche Art der Gemeinschaftsseite soll verwendet werden? Globale Gemeinschaftsseite zeigt alle öffentlichen Beiträge eines offenen dezentralen Netzwerks an die auf diesem Server eintreffen."
|
||||
|
||||
#: mod/admin.php:1225
|
||||
#: mod/admin.php:1227
|
||||
msgid "Posts per user on community page"
|
||||
msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite"
|
||||
|
||||
#: mod/admin.php:1225
|
||||
#: mod/admin.php:1227
|
||||
msgid ""
|
||||
"The maximum number of posts per user on the community page. (Not valid for "
|
||||
"'Global Community')"
|
||||
msgstr "Die Anzahl der Beiträge die von jedem Nutzer maximal auf der Gemeinschaftsseite angezeigt werden sollen. Dieser Parameter wird nicht für die Globale Gemeinschaftsseite genutzt."
|
||||
|
||||
#: mod/admin.php:1226
|
||||
#: mod/admin.php:1228
|
||||
msgid "Enable OStatus support"
|
||||
msgstr "OStatus Unterstützung aktivieren"
|
||||
|
||||
#: mod/admin.php:1226
|
||||
#: mod/admin.php:1228
|
||||
msgid ""
|
||||
"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
|
||||
"communications in OStatus are public, so privacy warnings will be "
|
||||
"occasionally displayed."
|
||||
msgstr "Biete die eingebaute OStatus (iStatusNet, GNU Social, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt."
|
||||
|
||||
#: mod/admin.php:1227
|
||||
#: mod/admin.php:1229
|
||||
msgid "Only import OStatus threads from our contacts"
|
||||
msgstr "Nur OStatus Konversationen unserer Kontakte importieren"
|
||||
|
||||
#: mod/admin.php:1227
|
||||
#: mod/admin.php:1229
|
||||
msgid ""
|
||||
"Normally we import every content from our OStatus contacts. With this option"
|
||||
" we only store threads that are started by a contact that is known on our "
|
||||
"system."
|
||||
msgstr "Normalerweise werden alle Inhalte von OStatus Kontakten importiert. Mit dieser Option werden nur solche Konversationen gespeichert, die von Kontakten der Nutzer dieses Knotens gestartet wurden."
|
||||
|
||||
#: mod/admin.php:1228
|
||||
#: mod/admin.php:1230
|
||||
msgid "OStatus support can only be enabled if threading is enabled."
|
||||
msgstr "OStatus Unterstützung kann nur aktiviert werden wenn \"Threading\" aktiviert ist. "
|
||||
|
||||
#: mod/admin.php:1230
|
||||
#: mod/admin.php:1232
|
||||
msgid ""
|
||||
"Diaspora support can't be enabled because Friendica was installed into a sub"
|
||||
" directory."
|
||||
msgstr "Diaspora Unterstützung kann nicht aktiviert werden da Friendica in ein Unterverzeichnis installiert ist."
|
||||
|
||||
#: mod/admin.php:1231
|
||||
#: mod/admin.php:1233
|
||||
msgid "Enable Diaspora support"
|
||||
msgstr "Diaspora Unterstützung aktivieren"
|
||||
|
||||
#: mod/admin.php:1231
|
||||
#: mod/admin.php:1233
|
||||
msgid "Provide built-in Diaspora network compatibility."
|
||||
msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
|
||||
|
||||
#: mod/admin.php:1232
|
||||
#: mod/admin.php:1234
|
||||
msgid "Only allow Friendica contacts"
|
||||
msgstr "Nur Friendica-Kontakte erlauben"
|
||||
|
||||
#: mod/admin.php:1232
|
||||
#: mod/admin.php:1234
|
||||
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:1233
|
||||
#: mod/admin.php:1235
|
||||
msgid "Verify SSL"
|
||||
msgstr "SSL Überprüfen"
|
||||
|
||||
#: mod/admin.php:1233
|
||||
#: mod/admin.php:1235
|
||||
msgid ""
|
||||
"If you wish, you can turn on strict certificate checking. This will mean you"
|
||||
" cannot connect (at all) to self-signed SSL sites."
|
||||
msgstr "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann."
|
||||
|
||||
#: mod/admin.php:1234
|
||||
#: mod/admin.php:1236
|
||||
msgid "Proxy user"
|
||||
msgstr "Proxy Nutzer"
|
||||
|
||||
#: mod/admin.php:1235
|
||||
#: mod/admin.php:1237
|
||||
msgid "Proxy URL"
|
||||
msgstr "Proxy URL"
|
||||
|
||||
#: mod/admin.php:1236
|
||||
#: mod/admin.php:1238
|
||||
msgid "Network timeout"
|
||||
msgstr "Netzwerk Wartezeit"
|
||||
|
||||
#: mod/admin.php:1236
|
||||
#: mod/admin.php:1238
|
||||
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:1237
|
||||
#: mod/admin.php:1239
|
||||
msgid "Maximum Load Average"
|
||||
msgstr "Maximum Load Average"
|
||||
|
||||
#: mod/admin.php:1237
|
||||
#: mod/admin.php:1239
|
||||
msgid ""
|
||||
"Maximum system load before delivery and poll processes are deferred - "
|
||||
"default 50."
|
||||
msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
|
||||
|
||||
#: mod/admin.php:1238
|
||||
#: mod/admin.php:1240
|
||||
msgid "Maximum Load Average (Frontend)"
|
||||
msgstr "Maximum Load Average (Frontend)"
|
||||
|
||||
#: mod/admin.php:1238
|
||||
#: mod/admin.php:1240
|
||||
msgid "Maximum system load before the frontend quits service - default 50."
|
||||
msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50."
|
||||
|
||||
#: mod/admin.php:1239
|
||||
#: mod/admin.php:1241
|
||||
msgid "Minimal Memory"
|
||||
msgstr "Minimaler Speicher"
|
||||
|
||||
#: mod/admin.php:1239
|
||||
#: mod/admin.php:1241
|
||||
msgid ""
|
||||
"Minimal free memory in MB for the poller. Needs access to /proc/meminfo - "
|
||||
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
|
||||
"default 0 (deactivated)."
|
||||
msgstr "Minimal freier Speicher in MB für den Poller. Benötigt Zugriff auf /proc/meminfo - Standard 0 (Deaktiviert)."
|
||||
msgstr "Minimal freier Speicher in MB für den Worker Prozess. Benötigt Zugriff auf /proc/meminfo - Standardwert ist 0 (deaktiviert)"
|
||||
|
||||
#: mod/admin.php:1240
|
||||
#: mod/admin.php:1242
|
||||
msgid "Maximum table size for optimization"
|
||||
msgstr "Maximale Tabellengröße zur Optimierung"
|
||||
|
||||
#: mod/admin.php:1240
|
||||
#: mod/admin.php:1242
|
||||
msgid ""
|
||||
"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
|
||||
"Enter -1 to disable it."
|
||||
msgstr "Maximale Tabellengröße (in MB) für die automatische Optimierung - Standard 100 MB. Gib -1 für Deaktivierung ein."
|
||||
|
||||
#: mod/admin.php:1241
|
||||
#: mod/admin.php:1243
|
||||
msgid "Minimum level of fragmentation"
|
||||
msgstr "Minimaler Fragmentationsgrad"
|
||||
|
||||
#: mod/admin.php:1241
|
||||
#: mod/admin.php:1243
|
||||
msgid ""
|
||||
"Minimum fragmenation level to start the automatic optimization - default "
|
||||
"value is 30%."
|
||||
msgstr "Minimales Fragmentationsgrad von Datenbanktabellen um die automatische Optimierung einzuleiten - Standardwert ist 30%"
|
||||
|
||||
#: mod/admin.php:1243
|
||||
#: mod/admin.php:1245
|
||||
msgid "Periodical check of global contacts"
|
||||
msgstr "Regelmäßig globale Kontakte überprüfen"
|
||||
|
||||
#: mod/admin.php:1243
|
||||
#: mod/admin.php:1245
|
||||
msgid ""
|
||||
"If enabled, the global contacts are checked periodically for missing or "
|
||||
"outdated data and the vitality of the contacts and servers."
|
||||
msgstr "Wenn diese Option aktiviert ist, werden die globalen Kontakte regelmäßig auf fehlende oder veraltete Daten sowie auf Erreichbarkeit des Kontakts und des Servers überprüft."
|
||||
|
||||
#: mod/admin.php:1244
|
||||
#: mod/admin.php:1246
|
||||
msgid "Days between requery"
|
||||
msgstr "Tage zwischen erneuten Abfragen"
|
||||
|
||||
#: mod/admin.php:1244
|
||||
#: mod/admin.php:1246
|
||||
msgid "Number of days after which a server is requeried for his contacts."
|
||||
msgstr "Legt das Abfrageintervall fest, nachdem ein Server erneut nach Kontakten abgefragt werden soll."
|
||||
|
||||
#: mod/admin.php:1245
|
||||
#: mod/admin.php:1247
|
||||
msgid "Discover contacts from other servers"
|
||||
msgstr "Neue Kontakte auf anderen Servern entdecken"
|
||||
|
||||
#: mod/admin.php:1245
|
||||
#: mod/admin.php:1247
|
||||
msgid ""
|
||||
"Periodically query other servers for contacts. You can choose between "
|
||||
"'users': the users on the remote system, 'Global Contacts': active contacts "
|
||||
|
|
@ -6091,32 +4125,32 @@ msgid ""
|
|||
"Global Contacts'."
|
||||
msgstr "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', den tatsächlichen Nutzern des anderen Systems und 'globalen Kontakten', aktiven Kontakten die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für ältere Friendica und Redmatrix Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallbackmodus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'."
|
||||
|
||||
#: mod/admin.php:1246
|
||||
#: mod/admin.php:1248
|
||||
msgid "Timeframe for fetching global contacts"
|
||||
msgstr "Zeitfenster für globale Kontakte"
|
||||
|
||||
#: mod/admin.php:1246
|
||||
#: mod/admin.php:1248
|
||||
msgid ""
|
||||
"When the discovery is activated, this value defines the timeframe for the "
|
||||
"activity of the global contacts that are fetched from other servers."
|
||||
msgstr "Wenn die Entdeckung neuer Kontakte aktiv ist, definiert dieses Zeitfenster den Zeitraum in dem globale Kontakte als aktiv gelten und von anderen Servern importiert werden."
|
||||
|
||||
#: mod/admin.php:1247
|
||||
#: mod/admin.php:1249
|
||||
msgid "Search the local directory"
|
||||
msgstr "Lokales Verzeichnis durchsuchen"
|
||||
|
||||
#: mod/admin.php:1247
|
||||
#: mod/admin.php:1249
|
||||
msgid ""
|
||||
"Search the local directory instead of the global directory. When searching "
|
||||
"locally, every search will be executed on the global directory in the "
|
||||
"background. This improves the search results when the search is repeated."
|
||||
msgstr "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt umd die Suchresultate zu verbessern, wenn diese Suche wiederholt wird."
|
||||
|
||||
#: mod/admin.php:1249
|
||||
#: mod/admin.php:1251
|
||||
msgid "Publish server information"
|
||||
msgstr "Server Informationen veröffentlichen"
|
||||
|
||||
#: mod/admin.php:1249
|
||||
#: mod/admin.php:1251
|
||||
msgid ""
|
||||
"If enabled, general server and usage data will be published. The data "
|
||||
"contains the name and version of the server, number of users with public "
|
||||
|
|
@ -6124,143 +4158,143 @@ msgid ""
|
|||
" href='http://the-federation.info/'>the-federation.info</a> for details."
|
||||
msgstr "Wenn aktiviert, werden allgemeine Informationen über den Server und Nutzungsdaten veröffentlicht. Die Daten beinhalten den Namen sowie die Version des Servers, die Anzahl der Personen mit öffentlichen Profilen, die Anzahl der Beiträge sowie aktivierte Protokolle und Connectoren. Für Details bitte <a href='http://the-federation.info/'>the-federation.info</a> aufrufen."
|
||||
|
||||
#: mod/admin.php:1251
|
||||
#: mod/admin.php:1253
|
||||
msgid "Check upstream version"
|
||||
msgstr "Suche nach Updates"
|
||||
|
||||
#: mod/admin.php:1251
|
||||
#: mod/admin.php:1253
|
||||
msgid ""
|
||||
"Enables checking for new Friendica versions at github. If there is a new "
|
||||
"version, you will be informed in the admin panel overview."
|
||||
msgstr "Wenn diese Option aktiviert ist wird regelmäßig nach neuen Friendica Versionen auf github überprüft. Wenn es eine neue Version gibt, wird dies auf der Übersichtsseite im Admin-Panel angezeigt."
|
||||
|
||||
#: mod/admin.php:1252
|
||||
#: mod/admin.php:1254
|
||||
msgid "Suppress Tags"
|
||||
msgstr "Tags Unterdrücken"
|
||||
|
||||
#: mod/admin.php:1252
|
||||
#: mod/admin.php:1254
|
||||
msgid "Suppress showing a list of hashtags at the end of the posting."
|
||||
msgstr "Unterdrückt die Anzeige von Tags am Ende eines Beitrags."
|
||||
|
||||
#: mod/admin.php:1253
|
||||
#: mod/admin.php:1255
|
||||
msgid "Path to item cache"
|
||||
msgstr "Pfad zum Eintrag Cache"
|
||||
|
||||
#: mod/admin.php:1253
|
||||
#: mod/admin.php:1255
|
||||
msgid "The item caches buffers generated bbcode and external images."
|
||||
msgstr "Im Item-Cache werden externe Bilder und geparster BBCode zwischen gespeichert."
|
||||
|
||||
#: mod/admin.php:1254
|
||||
#: mod/admin.php:1256
|
||||
msgid "Cache duration in seconds"
|
||||
msgstr "Cache-Dauer in Sekunden"
|
||||
|
||||
#: mod/admin.php:1254
|
||||
#: mod/admin.php:1256
|
||||
msgid ""
|
||||
"How long should the cache files be hold? Default value is 86400 seconds (One"
|
||||
" day). To disable the item cache, set the value to -1."
|
||||
msgstr "Wie lange sollen die gecachedten Dateien vorgehalten werden? Grundeinstellung sind 86400 Sekunden (ein Tag). Um den Item Cache zu deaktivieren, setze diesen Wert auf -1."
|
||||
|
||||
#: mod/admin.php:1255
|
||||
#: mod/admin.php:1257
|
||||
msgid "Maximum numbers of comments per post"
|
||||
msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
|
||||
|
||||
#: mod/admin.php:1255
|
||||
#: mod/admin.php:1257
|
||||
msgid "How much comments should be shown for each post? Default value is 100."
|
||||
msgstr "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100."
|
||||
|
||||
#: mod/admin.php:1256
|
||||
#: mod/admin.php:1258
|
||||
msgid "Temp path"
|
||||
msgstr "Temp Pfad"
|
||||
|
||||
#: mod/admin.php:1256
|
||||
#: mod/admin.php:1258
|
||||
msgid ""
|
||||
"If you have a restricted system where the webserver can't access the system "
|
||||
"temp path, enter another path here."
|
||||
msgstr "Solltest du ein eingeschränktes System haben, auf dem der Webserver nicht auf das temp Verzeichnis des Systems zugreifen kann, setze hier einen anderen Pfad."
|
||||
|
||||
#: mod/admin.php:1257
|
||||
#: mod/admin.php:1259
|
||||
msgid "Base path to installation"
|
||||
msgstr "Basis-Pfad zur Installation"
|
||||
|
||||
#: mod/admin.php:1257
|
||||
#: mod/admin.php:1259
|
||||
msgid ""
|
||||
"If the system cannot detect the correct path to your installation, enter the"
|
||||
" correct path here. This setting should only be set if you are using a "
|
||||
"restricted system and symbolic links to your webroot."
|
||||
msgstr "Falls das System nicht den korrekten Pfad zu deiner Installation gefunden hat, gib den richtigen Pfad bitte hier ein. Du solltest hier den Pfad nur auf einem eingeschränkten System angeben müssen, bei dem du mit symbolischen Links auf dein Webverzeichnis verweist."
|
||||
|
||||
#: mod/admin.php:1258
|
||||
#: mod/admin.php:1260
|
||||
msgid "Disable picture proxy"
|
||||
msgstr "Bilder Proxy deaktivieren"
|
||||
|
||||
#: mod/admin.php:1258
|
||||
#: mod/admin.php:1260
|
||||
msgid ""
|
||||
"The picture proxy increases performance and privacy. It shouldn't be used on"
|
||||
" systems with very low bandwith."
|
||||
msgstr "Der Proxy für Bilder verbessert die Leistung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen."
|
||||
|
||||
#: mod/admin.php:1259
|
||||
#: mod/admin.php:1261
|
||||
msgid "Only search in tags"
|
||||
msgstr "Nur in Tags suchen"
|
||||
|
||||
#: mod/admin.php:1259
|
||||
#: mod/admin.php:1261
|
||||
msgid "On large systems the text search can slow down the system extremely."
|
||||
msgstr "Auf großen Knoten kann die Volltext-Suche das System ausbremsen."
|
||||
|
||||
#: mod/admin.php:1261
|
||||
#: mod/admin.php:1263
|
||||
msgid "New base url"
|
||||
msgstr "Neue Basis-URL"
|
||||
|
||||
#: mod/admin.php:1261
|
||||
#: mod/admin.php:1263
|
||||
msgid ""
|
||||
"Change base url for this server. Sends relocate message to all Friendica and"
|
||||
" Diaspora* contacts of all users."
|
||||
msgstr "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle Friendica und Diaspora* Kontakte deiner NutzerInnen."
|
||||
|
||||
#: mod/admin.php:1263
|
||||
#: mod/admin.php:1265
|
||||
msgid "RINO Encryption"
|
||||
msgstr "RINO Verschlüsselung"
|
||||
|
||||
#: mod/admin.php:1263
|
||||
#: mod/admin.php:1265
|
||||
msgid "Encryption layer between nodes."
|
||||
msgstr "Verschlüsselung zwischen Friendica Instanzen"
|
||||
|
||||
#: mod/admin.php:1265
|
||||
#: mod/admin.php:1267
|
||||
msgid "Maximum number of parallel workers"
|
||||
msgstr "Maximale Anzahl parallel laufender Worker"
|
||||
|
||||
#: mod/admin.php:1265
|
||||
#: mod/admin.php:1267
|
||||
msgid ""
|
||||
"On shared hosters set this to 2. On larger systems, values of 10 are great. "
|
||||
"Default value is 4."
|
||||
msgstr "Wenn dein Knoten bei einem Shared Hoster ist, setzte diesen Wert auf 2. Auf größeren Systemen funktioniert ein Wert von 10 recht gut. Standardeinstellung sind 4."
|
||||
|
||||
#: mod/admin.php:1266
|
||||
#: mod/admin.php:1268
|
||||
msgid "Don't use 'proc_open' with the worker"
|
||||
msgstr "'proc_open' nicht mit den Workern verwenden"
|
||||
|
||||
#: mod/admin.php:1266
|
||||
#: mod/admin.php:1268
|
||||
msgid ""
|
||||
"Enable this if your system doesn't allow the use of 'proc_open'. This can "
|
||||
"happen on shared hosters. If this is enabled you should increase the "
|
||||
"frequency of poller calls in your crontab."
|
||||
"frequency of worker calls in your crontab."
|
||||
msgstr "Aktiviere diese Option, wenn dein System die Verwendung von 'proc_open' verhindert. Dies könnte auf Shared Hostern der Fall sein. Wenn du diese Option aktivierst, solltest du die Frequenz der poller Aufrufe in deiner crontab erhöhen."
|
||||
|
||||
#: mod/admin.php:1267
|
||||
#: mod/admin.php:1269
|
||||
msgid "Enable fastlane"
|
||||
msgstr "Aktiviere Fastlane"
|
||||
|
||||
#: mod/admin.php:1267
|
||||
#: mod/admin.php:1269
|
||||
msgid ""
|
||||
"When enabed, the fastlane mechanism starts an additional worker if processes"
|
||||
" with higher priority are blocked by processes of lower priority."
|
||||
msgstr "Wenn aktiviert, wird der Fastlane-Mechanismus einen weiteren Worker-Prozeß starten wenn Prozesse mit höherer Priorität von Prozessen mit niedrigerer Priorität blockiert werden."
|
||||
|
||||
#: mod/admin.php:1268
|
||||
#: mod/admin.php:1270
|
||||
msgid "Enable frontend worker"
|
||||
msgstr "Aktiviere den Frontend Worker"
|
||||
|
||||
#: mod/admin.php:1268
|
||||
#: mod/admin.php:1270
|
||||
#, php-format
|
||||
msgid ""
|
||||
"When enabled the Worker process is triggered when backend access is "
|
||||
|
|
@ -6270,66 +4304,66 @@ msgid ""
|
|||
"server."
|
||||
msgstr "Ist diese Option aktiv, wird der Worker Prozess durch Aktionen am Frontend gestartet (z.B. wenn Nachrichten zugestellt werden). Auf kleineren Seiten sollte %s/worker regelmäßig, beispielsweise durch einen externen Cron Anbieter, aufgerufen werden. Du solltest dies Option nur dann aktivieren, wenn du keinen Cron Job auf deinem eigenen Server starten kannst."
|
||||
|
||||
#: mod/admin.php:1298
|
||||
#: mod/admin.php:1300
|
||||
msgid "Update has been marked successful"
|
||||
msgstr "Update wurde als erfolgreich markiert"
|
||||
|
||||
#: mod/admin.php:1306
|
||||
#: mod/admin.php:1308
|
||||
#, php-format
|
||||
msgid "Database structure update %s was successfully applied."
|
||||
msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."
|
||||
|
||||
#: mod/admin.php:1309
|
||||
#: mod/admin.php:1311
|
||||
#, php-format
|
||||
msgid "Executing of database structure update %s failed with error: %s"
|
||||
msgstr "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s"
|
||||
|
||||
#: mod/admin.php:1323
|
||||
#: mod/admin.php:1325
|
||||
#, php-format
|
||||
msgid "Executing %s failed with error: %s"
|
||||
msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s"
|
||||
|
||||
#: mod/admin.php:1326
|
||||
#: mod/admin.php:1328
|
||||
#, php-format
|
||||
msgid "Update %s was successfully applied."
|
||||
msgstr "Update %s war erfolgreich."
|
||||
|
||||
#: mod/admin.php:1329
|
||||
#: mod/admin.php:1331
|
||||
#, php-format
|
||||
msgid "Update %s did not return a status. Unknown if it succeeded."
|
||||
msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status."
|
||||
|
||||
#: mod/admin.php:1332
|
||||
#: mod/admin.php:1334
|
||||
#, php-format
|
||||
msgid "There was no additional update function %s that needed to be called."
|
||||
msgstr "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste."
|
||||
|
||||
#: mod/admin.php:1352
|
||||
#: mod/admin.php:1354
|
||||
msgid "No failed updates."
|
||||
msgstr "Keine fehlgeschlagenen Updates."
|
||||
|
||||
#: mod/admin.php:1353
|
||||
#: mod/admin.php:1355
|
||||
msgid "Check database structure"
|
||||
msgstr "Datenbank Struktur überprüfen"
|
||||
|
||||
#: mod/admin.php:1358
|
||||
#: mod/admin.php:1360
|
||||
msgid "Failed Updates"
|
||||
msgstr "Fehlgeschlagene Updates"
|
||||
|
||||
#: mod/admin.php:1359
|
||||
#: mod/admin.php:1361
|
||||
msgid ""
|
||||
"This does not include updates prior to 1139, which did not return a status."
|
||||
msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben."
|
||||
|
||||
#: mod/admin.php:1360
|
||||
#: mod/admin.php:1362
|
||||
msgid "Mark success (if update was manually applied)"
|
||||
msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
|
||||
|
||||
#: mod/admin.php:1361
|
||||
#: mod/admin.php:1363
|
||||
msgid "Attempt to execute this update step automatically"
|
||||
msgstr "Versuchen, diesen Schritt automatisch auszuführen"
|
||||
|
||||
#: mod/admin.php:1395
|
||||
#: mod/admin.php:1397
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
|
|
@ -6337,7 +4371,7 @@ msgid ""
|
|||
"\t\t\t\tthe administrator of %2$s has set up an account for you."
|
||||
msgstr "\nHallo %1$s,\n\nauf %2$s wurde ein Account für Dich angelegt."
|
||||
|
||||
#: mod/admin.php:1398
|
||||
#: mod/admin.php:1400
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
|
|
@ -6367,14 +4401,14 @@ msgid ""
|
|||
"\t\t\tThank you and welcome to %4$s."
|
||||
msgstr "\nNachfolgend die Anmelde-Details:\n\tAdresse der Seite:\t%1$s\n\tBenutzername:\t%2$s\n\tPasswort:\t%3$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nNun viel Spaß, gute Begegnungen und willkommen auf %4$s."
|
||||
|
||||
#: mod/admin.php:1442
|
||||
#: mod/admin.php:1444
|
||||
#, 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:1449
|
||||
#: mod/admin.php:1450
|
||||
#, php-format
|
||||
msgid "%s user deleted"
|
||||
msgid_plural "%s users deleted"
|
||||
|
|
@ -6396,6 +4430,11 @@ msgstr "Nutzer '%s' entsperrt"
|
|||
msgid "User '%s' blocked"
|
||||
msgstr "Nutzer '%s' gesperrt"
|
||||
|
||||
#: mod/admin.php:1612 mod/admin.php:1625 mod/admin.php:1638 mod/admin.php:1654
|
||||
#: mod/crepair.php:173 mod/settings.php:698 mod/settings.php:724
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
#: mod/admin.php:1612 mod/admin.php:1638
|
||||
msgid "Register date"
|
||||
msgstr "Anmeldedatum"
|
||||
|
|
@ -6408,7 +4447,7 @@ msgstr "Letzte Anmeldung"
|
|||
msgid "Last item"
|
||||
msgstr "Letzter Beitrag"
|
||||
|
||||
#: mod/admin.php:1612 mod/settings.php:43
|
||||
#: mod/admin.php:1612 mod/settings.php:46
|
||||
msgid "Account"
|
||||
msgstr "Nutzerkonto"
|
||||
|
||||
|
|
@ -6440,17 +4479,21 @@ msgstr "Keine Neuanmeldungen."
|
|||
msgid "Note from the user"
|
||||
msgstr "Hinweis vom Nutzer"
|
||||
|
||||
#: mod/admin.php:1628 mod/notifications.php:180 mod/notifications.php:265
|
||||
msgid "Approve"
|
||||
msgstr "Genehmigen"
|
||||
|
||||
#: mod/admin.php:1629
|
||||
msgid "Deny"
|
||||
msgstr "Verwehren"
|
||||
|
||||
#: mod/admin.php:1631 mod/contacts.php:635 mod/contacts.php:835
|
||||
#: mod/contacts.php:1013
|
||||
#: mod/admin.php:1631 mod/contacts.php:642 mod/contacts.php:843
|
||||
#: mod/contacts.php:1021
|
||||
msgid "Block"
|
||||
msgstr "Sperren"
|
||||
|
||||
#: mod/admin.php:1632 mod/contacts.php:635 mod/contacts.php:835
|
||||
#: mod/contacts.php:1013
|
||||
#: mod/admin.php:1632 mod/contacts.php:642 mod/contacts.php:843
|
||||
#: mod/contacts.php:1021
|
||||
msgid "Unblock"
|
||||
msgstr "Entsperren"
|
||||
|
||||
|
|
@ -6612,23 +4655,133 @@ msgid ""
|
|||
"'display_errors' is to enable these options, set to '0' to disable them."
|
||||
msgstr "Um PHP Warnungen und Fehler zu protokollieren, kannst du die folgenden Zeilen zur .htconfig.php Datei deiner Installation hinzufügen. Den Dateinamen der Log-Datei legst du in der Zeile mit dem 'error_log' fest, Er ist relativ zum Friendica-Stammverzeichnis und muss schreibbar durch den Webserver sein. Eine \"1\" als Option für die Punkte 'log_errors' und 'display_errors' aktiviert die Funktionen zum Protokollieren bzw. Anzeigen der Fehler, eine \"0\" deaktiviert sie."
|
||||
|
||||
#: mod/admin.php:2281 mod/admin.php:2282 mod/settings.php:792
|
||||
#: mod/admin.php:2278 mod/admin.php:2279 mod/settings.php:797
|
||||
msgid "Off"
|
||||
msgstr "Aus"
|
||||
|
||||
#: mod/admin.php:2281 mod/admin.php:2282 mod/settings.php:792
|
||||
#: mod/admin.php:2278 mod/admin.php:2279 mod/settings.php:797
|
||||
msgid "On"
|
||||
msgstr "An"
|
||||
|
||||
#: mod/admin.php:2282
|
||||
#: mod/admin.php:2279
|
||||
#, php-format
|
||||
msgid "Lock feature %s"
|
||||
msgstr "Feature festlegen: %s"
|
||||
|
||||
#: mod/admin.php:2290
|
||||
#: mod/admin.php:2287
|
||||
msgid "Manage Additional Features"
|
||||
msgstr "Zusätzliche Features Verwalten"
|
||||
|
||||
#: mod/allfriends.php:52
|
||||
msgid "No friends to display."
|
||||
msgstr "Keine Kontakte zum Anzeigen."
|
||||
|
||||
#: mod/api.php:80 mod/api.php:106
|
||||
msgid "Authorize application connection"
|
||||
msgstr "Verbindung der Applikation autorisieren"
|
||||
|
||||
#: mod/api.php:81
|
||||
msgid "Return to your app and insert this Securty Code:"
|
||||
msgstr "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
|
||||
|
||||
#: mod/api.php:93
|
||||
msgid "Please login to continue."
|
||||
msgstr "Bitte melde Dich an um fortzufahren."
|
||||
|
||||
#: mod/api.php:108
|
||||
msgid ""
|
||||
"Do you want to authorize this application to access your posts and contacts,"
|
||||
" and/or create new posts for you?"
|
||||
msgstr "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?"
|
||||
|
||||
#: mod/api.php:110 mod/dfrn_request.php:883 mod/follow.php:151
|
||||
#: mod/profiles.php:643 mod/profiles.php:647 mod/profiles.php:673
|
||||
#: mod/register.php:253 mod/settings.php:1155 mod/settings.php:1161
|
||||
#: mod/settings.php:1168 mod/settings.php:1172 mod/settings.php:1177
|
||||
#: mod/settings.php:1182 mod/settings.php:1187 mod/settings.php:1192
|
||||
#: mod/settings.php:1218 mod/settings.php:1219 mod/settings.php:1220
|
||||
#: mod/settings.php:1221 mod/settings.php:1222
|
||||
msgid "No"
|
||||
msgstr "Nein"
|
||||
|
||||
#: mod/apps.php:10 index.php:246
|
||||
msgid "You must be logged in to use addons. "
|
||||
msgstr "Sie müssen angemeldet sein um Addons benutzen zu können."
|
||||
|
||||
#: mod/apps.php:15
|
||||
msgid "Applications"
|
||||
msgstr "Anwendungen"
|
||||
|
||||
#: mod/apps.php:18
|
||||
msgid "No installed applications."
|
||||
msgstr "Keine Applikationen installiert."
|
||||
|
||||
#: mod/attach.php:11
|
||||
msgid "Item not available."
|
||||
msgstr "Beitrag nicht verfügbar."
|
||||
|
||||
#: mod/attach.php:23
|
||||
msgid "Item was not found."
|
||||
msgstr "Beitrag konnte nicht gefunden werden."
|
||||
|
||||
#: mod/cal.php:149 mod/display.php:339 mod/profile.php:162
|
||||
msgid "Access to this profile has been restricted."
|
||||
msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
|
||||
|
||||
#: mod/cal.php:277 mod/events.php:386
|
||||
msgid "View"
|
||||
msgstr "Ansehen"
|
||||
|
||||
#: mod/cal.php:278 mod/events.php:388
|
||||
msgid "Previous"
|
||||
msgstr "Vorherige"
|
||||
|
||||
#: mod/cal.php:279 mod/events.php:389 mod/install.php:203
|
||||
msgid "Next"
|
||||
msgstr "Nächste"
|
||||
|
||||
#: mod/cal.php:288 mod/events.php:398
|
||||
msgid "list"
|
||||
msgstr "Liste"
|
||||
|
||||
#: mod/cal.php:298
|
||||
msgid "User not found"
|
||||
msgstr "Nutzer nicht gefunden"
|
||||
|
||||
#: mod/cal.php:314
|
||||
msgid "This calendar format is not supported"
|
||||
msgstr "Dieses Kalenderformat wird nicht unterstützt."
|
||||
|
||||
#: mod/cal.php:316
|
||||
msgid "No exportable data found"
|
||||
msgstr "Keine exportierbaren Daten gefunden"
|
||||
|
||||
#: mod/cal.php:331
|
||||
msgid "calendar"
|
||||
msgstr "Kalender"
|
||||
|
||||
#: mod/common.php:96
|
||||
msgid "No contacts in common."
|
||||
msgstr "Keine gemeinsamen Kontakte."
|
||||
|
||||
#: mod/common.php:146 mod/contacts.php:901
|
||||
msgid "Common Friends"
|
||||
msgstr "Gemeinsame Kontakte"
|
||||
|
||||
#: mod/community.php:23
|
||||
msgid "Not available."
|
||||
msgstr "Nicht verfügbar."
|
||||
|
||||
#: mod/community.php:48 mod/search.php:218
|
||||
msgid "No results."
|
||||
msgstr "Keine Ergebnisse."
|
||||
|
||||
#: mod/community.php:91
|
||||
msgid ""
|
||||
"This community stream shows all public posts received by this node. They may"
|
||||
" not reflect the opinions of this node’s users."
|
||||
msgstr "Diese Gemeinschaftsseite zeigt alle öffentlichen Beiträge, die auf diesem Knoten eingegangen sind. Der Inhalt entspricht nicht zwingend der Meinung der Nutzer dieses Servers."
|
||||
|
||||
#: mod/contacts.php:139
|
||||
#, php-format
|
||||
msgid "%d contact edited."
|
||||
|
|
@ -6636,7 +4789,7 @@ msgid_plural "%d contacts edited."
|
|||
msgstr[0] "%d Kontakt bearbeitet."
|
||||
msgstr[1] "%d Kontakte bearbeitet."
|
||||
|
||||
#: mod/contacts.php:174 mod/contacts.php:392
|
||||
#: mod/contacts.php:174 mod/contacts.php:393
|
||||
msgid "Could not access contact record."
|
||||
msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
|
||||
|
||||
|
|
@ -6648,519 +4801,1761 @@ msgstr "Konnte das ausgewählte Profil nicht finden."
|
|||
msgid "Contact updated."
|
||||
msgstr "Kontakt aktualisiert."
|
||||
|
||||
#: mod/contacts.php:413
|
||||
#: mod/contacts.php:223 mod/dfrn_request.php:596
|
||||
msgid "Failed to update contact record."
|
||||
msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
|
||||
|
||||
#: mod/contacts.php:414
|
||||
msgid "Contact has been blocked"
|
||||
msgstr "Kontakt wurde blockiert"
|
||||
|
||||
#: mod/contacts.php:413
|
||||
#: mod/contacts.php:414
|
||||
msgid "Contact has been unblocked"
|
||||
msgstr "Kontakt wurde wieder freigegeben"
|
||||
|
||||
#: mod/contacts.php:424
|
||||
#: mod/contacts.php:425
|
||||
msgid "Contact has been ignored"
|
||||
msgstr "Kontakt wurde ignoriert"
|
||||
|
||||
#: mod/contacts.php:424
|
||||
#: mod/contacts.php:425
|
||||
msgid "Contact has been unignored"
|
||||
msgstr "Kontakt wird nicht mehr ignoriert"
|
||||
|
||||
#: mod/contacts.php:436
|
||||
#: mod/contacts.php:437
|
||||
msgid "Contact has been archived"
|
||||
msgstr "Kontakt wurde archiviert"
|
||||
|
||||
#: mod/contacts.php:436
|
||||
#: mod/contacts.php:437
|
||||
msgid "Contact has been unarchived"
|
||||
msgstr "Kontakt wurde aus dem Archiv geholt"
|
||||
|
||||
#: mod/contacts.php:461
|
||||
#: mod/contacts.php:462
|
||||
msgid "Drop contact"
|
||||
msgstr "Kontakt löschen"
|
||||
|
||||
#: mod/contacts.php:464 mod/contacts.php:831
|
||||
#: mod/contacts.php:465 mod/contacts.php:839
|
||||
msgid "Do you really want to delete this contact?"
|
||||
msgstr "Möchtest Du wirklich diesen Kontakt löschen?"
|
||||
|
||||
#: mod/contacts.php:483
|
||||
#: mod/contacts.php:484
|
||||
msgid "Contact has been removed."
|
||||
msgstr "Kontakt wurde entfernt."
|
||||
|
||||
#: mod/contacts.php:520
|
||||
#: mod/contacts.php:521
|
||||
#, php-format
|
||||
msgid "You are mutual friends with %s"
|
||||
msgstr "Du hast mit %s eine beidseitige Freundschaft"
|
||||
|
||||
#: mod/contacts.php:524
|
||||
#: mod/contacts.php:525
|
||||
#, php-format
|
||||
msgid "You are sharing with %s"
|
||||
msgstr "Du teilst mit %s"
|
||||
|
||||
#: mod/contacts.php:529
|
||||
#: mod/contacts.php:530
|
||||
#, php-format
|
||||
msgid "%s is sharing with you"
|
||||
msgstr "%s teilt mit Dir"
|
||||
|
||||
#: mod/contacts.php:549
|
||||
#: mod/contacts.php:550
|
||||
msgid "Private communications are not available for this contact."
|
||||
msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
|
||||
|
||||
#: mod/contacts.php:556
|
||||
#: mod/contacts.php:557
|
||||
msgid "(Update was successful)"
|
||||
msgstr "(Aktualisierung war erfolgreich)"
|
||||
|
||||
#: mod/contacts.php:556
|
||||
#: mod/contacts.php:557
|
||||
msgid "(Update was not successful)"
|
||||
msgstr "(Aktualisierung war nicht erfolgreich)"
|
||||
|
||||
#: mod/contacts.php:558 mod/contacts.php:994
|
||||
#: mod/contacts.php:559 mod/contacts.php:1002
|
||||
msgid "Suggest friends"
|
||||
msgstr "Kontakte vorschlagen"
|
||||
|
||||
#: mod/contacts.php:562
|
||||
#: mod/contacts.php:563
|
||||
#, php-format
|
||||
msgid "Network type: %s"
|
||||
msgstr "Netzwerktyp: %s"
|
||||
|
||||
#: mod/contacts.php:575
|
||||
#: mod/contacts.php:576
|
||||
msgid "Communications lost with this contact!"
|
||||
msgstr "Verbindungen mit diesem Kontakt verloren!"
|
||||
|
||||
#: mod/contacts.php:578
|
||||
#: mod/contacts.php:580
|
||||
msgid "Fetch further information for feeds"
|
||||
msgstr "Weitere Informationen zu Feeds holen"
|
||||
|
||||
#: mod/contacts.php:579
|
||||
#: mod/contacts.php:582
|
||||
msgid ""
|
||||
"Fetch information like preview pictures, title and teaser from the feed "
|
||||
"item. You can activate this if the feed doesn't contain much text. Keywords "
|
||||
"are taken from the meta header in the feed item and are posted as hash tags."
|
||||
msgstr "Zusätzliche Informationen wie Vorschaubilder, Titel und Zusammenfassungen vom Feed-Eintrag laden. Du kannst diese Option aktivieren, wenn der Feed nicht all zu viel Text beinhaltet. Schlagwörter werden auf den Meta-Informationen des Feed-Headers bezogen und als Hash-Tags verwendet."
|
||||
|
||||
#: mod/contacts.php:584
|
||||
msgid "Fetch information"
|
||||
msgstr "Beziehe Information"
|
||||
|
||||
#: mod/contacts.php:579
|
||||
#: mod/contacts.php:585
|
||||
msgid "Fetch keywords"
|
||||
msgstr "Schlüsselwprter abrufen"
|
||||
|
||||
#: mod/contacts.php:586
|
||||
msgid "Fetch information and keywords"
|
||||
msgstr "Beziehe Information und Schlüsselworte"
|
||||
|
||||
#: mod/contacts.php:603
|
||||
#: mod/contacts.php:600 mod/unfollow.php:99
|
||||
msgid "Disconnect/Unfollow"
|
||||
msgstr "Verbindung lösen/Nicht mehr folgen"
|
||||
|
||||
#: mod/contacts.php:610
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#: mod/contacts.php:606
|
||||
#: mod/contacts.php:613
|
||||
msgid "Profile Visibility"
|
||||
msgstr "Profil-Sichtbarkeit"
|
||||
|
||||
#: mod/contacts.php:607
|
||||
#: mod/contacts.php:614
|
||||
#, 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:608
|
||||
#: mod/contacts.php:615
|
||||
msgid "Contact Information / Notes"
|
||||
msgstr "Kontakt Informationen / Notizen"
|
||||
|
||||
#: mod/contacts.php:609
|
||||
#: mod/contacts.php:616
|
||||
msgid "Their personal note"
|
||||
msgstr "Die persönliche Mitteilung"
|
||||
|
||||
#: mod/contacts.php:611
|
||||
#: mod/contacts.php:618
|
||||
msgid "Edit contact notes"
|
||||
msgstr "Notizen zum Kontakt bearbeiten"
|
||||
|
||||
#: mod/contacts.php:617
|
||||
#: mod/contacts.php:623 mod/contacts.php:968 mod/nogroup.php:44
|
||||
#: mod/viewcontacts.php:107
|
||||
#, php-format
|
||||
msgid "Visit %s's profile [%s]"
|
||||
msgstr "Besuche %ss Profil [%s]"
|
||||
|
||||
#: mod/contacts.php:624
|
||||
msgid "Block/Unblock contact"
|
||||
msgstr "Kontakt blockieren/freischalten"
|
||||
|
||||
#: mod/contacts.php:618
|
||||
#: mod/contacts.php:625
|
||||
msgid "Ignore contact"
|
||||
msgstr "Ignoriere den Kontakt"
|
||||
|
||||
#: mod/contacts.php:619
|
||||
#: mod/contacts.php:626
|
||||
msgid "Repair URL settings"
|
||||
msgstr "URL Einstellungen reparieren"
|
||||
|
||||
#: mod/contacts.php:620
|
||||
#: mod/contacts.php:627
|
||||
msgid "View conversations"
|
||||
msgstr "Unterhaltungen anzeigen"
|
||||
|
||||
#: mod/contacts.php:626
|
||||
#: mod/contacts.php:633
|
||||
msgid "Last update:"
|
||||
msgstr "Letzte Aktualisierung: "
|
||||
|
||||
#: mod/contacts.php:628
|
||||
#: mod/contacts.php:635
|
||||
msgid "Update public posts"
|
||||
msgstr "Öffentliche Beiträge aktualisieren"
|
||||
|
||||
#: mod/contacts.php:630 mod/contacts.php:1004
|
||||
#: mod/contacts.php:637 mod/contacts.php:1012
|
||||
msgid "Update now"
|
||||
msgstr "Jetzt aktualisieren"
|
||||
|
||||
#: mod/contacts.php:636 mod/contacts.php:836 mod/contacts.php:1021
|
||||
#: mod/contacts.php:643 mod/contacts.php:844 mod/contacts.php:1029
|
||||
msgid "Unignore"
|
||||
msgstr "Ignorieren aufheben"
|
||||
|
||||
#: mod/contacts.php:640
|
||||
#: mod/contacts.php:643 mod/contacts.php:844 mod/contacts.php:1029
|
||||
#: mod/notifications.php:64 mod/notifications.php:183
|
||||
#: mod/notifications.php:267
|
||||
msgid "Ignore"
|
||||
msgstr "Ignorieren"
|
||||
|
||||
#: mod/contacts.php:647
|
||||
msgid "Currently blocked"
|
||||
msgstr "Derzeit geblockt"
|
||||
|
||||
#: mod/contacts.php:641
|
||||
#: mod/contacts.php:648
|
||||
msgid "Currently ignored"
|
||||
msgstr "Derzeit ignoriert"
|
||||
|
||||
#: mod/contacts.php:642
|
||||
#: mod/contacts.php:649
|
||||
msgid "Currently archived"
|
||||
msgstr "Momentan archiviert"
|
||||
|
||||
#: mod/contacts.php:643
|
||||
#: mod/contacts.php:650
|
||||
msgid "Awaiting connection acknowledge"
|
||||
msgstr "Bedarf der Bestätigung des Kontakts"
|
||||
|
||||
#: mod/contacts.php:651 mod/notifications.php:176 mod/notifications.php:255
|
||||
msgid "Hide this contact from others"
|
||||
msgstr "Verbirg diesen Kontakt vor Anderen"
|
||||
|
||||
#: mod/contacts.php:651
|
||||
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:644
|
||||
#: mod/contacts.php:652
|
||||
msgid "Notification for new posts"
|
||||
msgstr "Benachrichtigung bei neuen Beiträgen"
|
||||
|
||||
#: mod/contacts.php:644
|
||||
#: mod/contacts.php:652
|
||||
msgid "Send a notification of every new post of this contact"
|
||||
msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."
|
||||
|
||||
#: mod/contacts.php:647
|
||||
#: mod/contacts.php:655
|
||||
msgid "Blacklisted keywords"
|
||||
msgstr "Blacklistete Schlüsselworte "
|
||||
|
||||
#: mod/contacts.php:647
|
||||
#: mod/contacts.php:655
|
||||
msgid ""
|
||||
"Comma separated list of keywords that should not be converted to hashtags, "
|
||||
"when \"Fetch information and keywords\" is selected"
|
||||
msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"
|
||||
|
||||
#: mod/contacts.php:665
|
||||
#: mod/contacts.php:662 mod/follow.php:167 mod/notifications.php:259
|
||||
#: mod/unfollow.php:121
|
||||
msgid "Profile URL"
|
||||
msgstr "Profil URL"
|
||||
|
||||
#: mod/contacts.php:673
|
||||
msgid "Actions"
|
||||
msgstr "Aktionen"
|
||||
|
||||
#: mod/contacts.php:668
|
||||
#: mod/contacts.php:676
|
||||
msgid "Contact Settings"
|
||||
msgstr "Kontakteinstellungen"
|
||||
|
||||
#: mod/contacts.php:714
|
||||
#: mod/contacts.php:722
|
||||
msgid "Suggestions"
|
||||
msgstr "Kontaktvorschläge"
|
||||
|
||||
#: mod/contacts.php:717
|
||||
#: mod/contacts.php:725
|
||||
msgid "Suggest potential friends"
|
||||
msgstr "Kontakte vorschlagen"
|
||||
|
||||
#: mod/contacts.php:725
|
||||
#: mod/contacts.php:730 mod/group.php:214
|
||||
msgid "All Contacts"
|
||||
msgstr "Alle Kontakte"
|
||||
|
||||
#: mod/contacts.php:733
|
||||
msgid "Show all contacts"
|
||||
msgstr "Alle Kontakte anzeigen"
|
||||
|
||||
#: mod/contacts.php:730
|
||||
#: mod/contacts.php:738
|
||||
msgid "Unblocked"
|
||||
msgstr "Ungeblockt"
|
||||
|
||||
#: mod/contacts.php:733
|
||||
#: mod/contacts.php:741
|
||||
msgid "Only show unblocked contacts"
|
||||
msgstr "Nur nicht-blockierte Kontakte anzeigen"
|
||||
|
||||
#: mod/contacts.php:739
|
||||
#: mod/contacts.php:747
|
||||
msgid "Blocked"
|
||||
msgstr "Geblockt"
|
||||
|
||||
#: mod/contacts.php:742
|
||||
#: mod/contacts.php:750
|
||||
msgid "Only show blocked contacts"
|
||||
msgstr "Nur blockierte Kontakte anzeigen"
|
||||
|
||||
#: mod/contacts.php:748
|
||||
#: mod/contacts.php:756
|
||||
msgid "Ignored"
|
||||
msgstr "Ignoriert"
|
||||
|
||||
#: mod/contacts.php:751
|
||||
#: mod/contacts.php:759
|
||||
msgid "Only show ignored contacts"
|
||||
msgstr "Nur ignorierte Kontakte anzeigen"
|
||||
|
||||
#: mod/contacts.php:757
|
||||
#: mod/contacts.php:765
|
||||
msgid "Archived"
|
||||
msgstr "Archiviert"
|
||||
|
||||
#: mod/contacts.php:760
|
||||
#: mod/contacts.php:768
|
||||
msgid "Only show archived contacts"
|
||||
msgstr "Nur archivierte Kontakte anzeigen"
|
||||
|
||||
#: mod/contacts.php:766
|
||||
#: mod/contacts.php:774
|
||||
msgid "Hidden"
|
||||
msgstr "Verborgen"
|
||||
|
||||
#: mod/contacts.php:769
|
||||
#: mod/contacts.php:777
|
||||
msgid "Only show hidden contacts"
|
||||
msgstr "Nur verborgene Kontakte anzeigen"
|
||||
|
||||
#: mod/contacts.php:826
|
||||
#: mod/contacts.php:834
|
||||
msgid "Search your contacts"
|
||||
msgstr "Suche in deinen Kontakten"
|
||||
|
||||
#: mod/contacts.php:834 mod/settings.php:160 mod/settings.php:717
|
||||
#: mod/contacts.php:835 mod/search.php:226
|
||||
#, php-format
|
||||
msgid "Results for: %s"
|
||||
msgstr "Ergebnisse für: %s"
|
||||
|
||||
#: mod/contacts.php:842 mod/settings.php:163 mod/settings.php:722
|
||||
msgid "Update"
|
||||
msgstr "Aktualisierungen"
|
||||
|
||||
#: mod/contacts.php:837 mod/contacts.php:1029
|
||||
#: mod/contacts.php:845 mod/contacts.php:1037
|
||||
msgid "Archive"
|
||||
msgstr "Archivieren"
|
||||
|
||||
#: mod/contacts.php:837 mod/contacts.php:1029
|
||||
#: mod/contacts.php:845 mod/contacts.php:1037
|
||||
msgid "Unarchive"
|
||||
msgstr "Aus Archiv zurückholen"
|
||||
|
||||
#: mod/contacts.php:840
|
||||
#: mod/contacts.php:848
|
||||
msgid "Batch Actions"
|
||||
msgstr "Stapelverarbeitung"
|
||||
|
||||
#: mod/contacts.php:886
|
||||
#: mod/contacts.php:894
|
||||
msgid "View all contacts"
|
||||
msgstr "Alle Kontakte anzeigen"
|
||||
|
||||
#: mod/contacts.php:896
|
||||
#: mod/contacts.php:904
|
||||
msgid "View all common friends"
|
||||
msgstr "Alle Kontakte anzeigen"
|
||||
|
||||
#: mod/contacts.php:903
|
||||
#: mod/contacts.php:911
|
||||
msgid "Advanced Contact Settings"
|
||||
msgstr "Fortgeschrittene Kontakteinstellungen"
|
||||
|
||||
#: mod/contacts.php:937
|
||||
#: mod/contacts.php:945
|
||||
msgid "Mutual Friendship"
|
||||
msgstr "Beidseitige Freundschaft"
|
||||
|
||||
#: mod/contacts.php:941
|
||||
#: mod/contacts.php:949
|
||||
msgid "is a fan of yours"
|
||||
msgstr "ist ein Fan von dir"
|
||||
|
||||
#: mod/contacts.php:945
|
||||
#: mod/contacts.php:953
|
||||
msgid "you are a fan of"
|
||||
msgstr "Du bist Fan von"
|
||||
|
||||
#: mod/contacts.php:1015
|
||||
#: mod/contacts.php:969 mod/nogroup.php:45
|
||||
msgid "Edit contact"
|
||||
msgstr "Kontakt bearbeiten"
|
||||
|
||||
#: mod/contacts.php:1023
|
||||
msgid "Toggle Blocked status"
|
||||
msgstr "Geblockt-Status ein-/ausschalten"
|
||||
|
||||
#: mod/contacts.php:1023
|
||||
#: mod/contacts.php:1031
|
||||
msgid "Toggle Ignored status"
|
||||
msgstr "Ignoriert-Status ein-/ausschalten"
|
||||
|
||||
#: mod/contacts.php:1031
|
||||
#: mod/contacts.php:1039
|
||||
msgid "Toggle Archive status"
|
||||
msgstr "Archiviert-Status ein-/ausschalten"
|
||||
|
||||
#: mod/contacts.php:1039
|
||||
#: mod/contacts.php:1047
|
||||
msgid "Delete contact"
|
||||
msgstr "Lösche den Kontakt"
|
||||
|
||||
#: mod/dfrn_confirm.php:74 mod/profiles.php:25 mod/profiles.php:135
|
||||
#: mod/profiles.php:182 mod/profiles.php:618
|
||||
#: mod/crepair.php:95
|
||||
msgid "Contact settings applied."
|
||||
msgstr "Einstellungen zum Kontakt angewandt."
|
||||
|
||||
#: mod/crepair.php:97
|
||||
msgid "Contact update failed."
|
||||
msgstr "Konnte den Kontakt nicht aktualisieren."
|
||||
|
||||
#: mod/crepair.php:122 mod/dfrn_confirm.php:134 mod/fsuggest.php:24
|
||||
#: mod/fsuggest.php:98
|
||||
msgid "Contact not found."
|
||||
msgstr "Kontakt nicht gefunden."
|
||||
|
||||
#: mod/crepair.php:128
|
||||
msgid ""
|
||||
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
|
||||
" information your communications with this contact may stop working."
|
||||
msgstr "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."
|
||||
|
||||
#: mod/crepair.php:129
|
||||
msgid ""
|
||||
"Please use your browser 'Back' button <strong>now</strong> if you are "
|
||||
"uncertain what to do on this page."
|
||||
msgstr "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst."
|
||||
|
||||
#: mod/crepair.php:142 mod/crepair.php:144
|
||||
msgid "No mirroring"
|
||||
msgstr "Kein Spiegeln"
|
||||
|
||||
#: mod/crepair.php:142
|
||||
msgid "Mirror as forwarded posting"
|
||||
msgstr "Spiegeln als weitergeleitete Beiträge"
|
||||
|
||||
#: mod/crepair.php:142 mod/crepair.php:144
|
||||
msgid "Mirror as my own posting"
|
||||
msgstr "Spiegeln als meine eigenen Beiträge"
|
||||
|
||||
#: mod/crepair.php:158
|
||||
msgid "Return to contact editor"
|
||||
msgstr "Zurück zum Kontakteditor"
|
||||
|
||||
#: mod/crepair.php:160
|
||||
msgid "Refetch contact data"
|
||||
msgstr "Kontaktdaten neu laden"
|
||||
|
||||
#: mod/crepair.php:164
|
||||
msgid "Remote Self"
|
||||
msgstr "Entfernte Konten"
|
||||
|
||||
#: mod/crepair.php:167
|
||||
msgid "Mirror postings from this contact"
|
||||
msgstr "Spiegle Beiträge dieses Kontakts"
|
||||
|
||||
#: mod/crepair.php:169
|
||||
msgid ""
|
||||
"Mark this contact as remote_self, this will cause friendica to repost new "
|
||||
"entries from this contact."
|
||||
msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden."
|
||||
|
||||
#: mod/crepair.php:174
|
||||
msgid "Account Nickname"
|
||||
msgstr "Konto-Spitzname"
|
||||
|
||||
#: mod/crepair.php:175
|
||||
msgid "@Tagname - overrides Name/Nickname"
|
||||
msgstr "@Tagname - überschreibt Name/Spitzname"
|
||||
|
||||
#: mod/crepair.php:176
|
||||
msgid "Account URL"
|
||||
msgstr "Konto-URL"
|
||||
|
||||
#: mod/crepair.php:177
|
||||
msgid "Friend Request URL"
|
||||
msgstr "URL für Kontaktschaftsanfragen"
|
||||
|
||||
#: mod/crepair.php:178
|
||||
msgid "Friend Confirm URL"
|
||||
msgstr "URL für Bestätigungen von Kontaktanfragen"
|
||||
|
||||
#: mod/crepair.php:179
|
||||
msgid "Notification Endpoint URL"
|
||||
msgstr "URL-Endpunkt für Benachrichtigungen"
|
||||
|
||||
#: mod/crepair.php:180
|
||||
msgid "Poll/Feed URL"
|
||||
msgstr "Pull/Feed-URL"
|
||||
|
||||
#: mod/crepair.php:181
|
||||
msgid "New photo from this URL"
|
||||
msgstr "Neues Foto von dieser URL"
|
||||
|
||||
#: mod/delegate.php:102
|
||||
msgid "No potential page delegates located."
|
||||
msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
|
||||
|
||||
#: mod/delegate.php:133
|
||||
msgid ""
|
||||
"Delegates are able to manage all aspects of this account/page except for "
|
||||
"basic account settings. Please do not delegate your personal account to "
|
||||
"anybody that you do not trust completely."
|
||||
msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"
|
||||
|
||||
#: mod/delegate.php:134
|
||||
msgid "Existing Page Managers"
|
||||
msgstr "Vorhandene Seitenmanager"
|
||||
|
||||
#: mod/delegate.php:136
|
||||
msgid "Existing Page Delegates"
|
||||
msgstr "Vorhandene Bevollmächtigte für die Seite"
|
||||
|
||||
#: mod/delegate.php:138
|
||||
msgid "Potential Delegates"
|
||||
msgstr "Potentielle Bevollmächtigte"
|
||||
|
||||
#: mod/delegate.php:140 mod/tagrm.php:99
|
||||
msgid "Remove"
|
||||
msgstr "Entfernen"
|
||||
|
||||
#: mod/delegate.php:141
|
||||
msgid "Add"
|
||||
msgstr "Hinzufügen"
|
||||
|
||||
#: mod/delegate.php:142
|
||||
msgid "No entries."
|
||||
msgstr "Keine Einträge."
|
||||
|
||||
#: mod/dfrn_confirm.php:78 mod/profiles.php:29 mod/profiles.php:139
|
||||
#: mod/profiles.php:186 mod/profiles.php:622
|
||||
msgid "Profile not found."
|
||||
msgstr "Profil nicht gefunden."
|
||||
|
||||
#: mod/dfrn_confirm.php:131
|
||||
#: mod/dfrn_confirm.php:135
|
||||
msgid ""
|
||||
"This may occasionally happen if contact was requested by both persons and it"
|
||||
" has already been approved."
|
||||
msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."
|
||||
|
||||
#: mod/dfrn_confirm.php:248
|
||||
#: mod/dfrn_confirm.php:252
|
||||
msgid "Response from remote site was not understood."
|
||||
msgstr "Antwort der Gegenstelle unverständlich."
|
||||
|
||||
#: mod/dfrn_confirm.php:257 mod/dfrn_confirm.php:262
|
||||
#: mod/dfrn_confirm.php:261 mod/dfrn_confirm.php:266
|
||||
msgid "Unexpected response from remote site: "
|
||||
msgstr "Unerwartete Antwort der Gegenstelle: "
|
||||
|
||||
#: mod/dfrn_confirm.php:271
|
||||
#: mod/dfrn_confirm.php:275
|
||||
msgid "Confirmation completed successfully."
|
||||
msgstr "Bestätigung erfolgreich abgeschlossen."
|
||||
|
||||
#: mod/dfrn_confirm.php:273 mod/dfrn_confirm.php:287 mod/dfrn_confirm.php:294
|
||||
#: mod/dfrn_confirm.php:277 mod/dfrn_confirm.php:291 mod/dfrn_confirm.php:298
|
||||
msgid "Remote site reported: "
|
||||
msgstr "Gegenstelle meldet: "
|
||||
|
||||
#: mod/dfrn_confirm.php:285
|
||||
#: mod/dfrn_confirm.php:289
|
||||
msgid "Temporary failure. Please wait and try again."
|
||||
msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
|
||||
|
||||
#: mod/dfrn_confirm.php:292
|
||||
#: mod/dfrn_confirm.php:296
|
||||
msgid "Introduction failed or was revoked."
|
||||
msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
|
||||
|
||||
#: mod/dfrn_confirm.php:421
|
||||
#: mod/dfrn_confirm.php:425
|
||||
msgid "Unable to set contact photo."
|
||||
msgstr "Konnte das Bild des Kontakts nicht speichern."
|
||||
|
||||
#: mod/dfrn_confirm.php:562
|
||||
#: mod/dfrn_confirm.php:565
|
||||
#, php-format
|
||||
msgid "No user record found for '%s' "
|
||||
msgstr "Für '%s' wurde kein Nutzer gefunden"
|
||||
|
||||
#: mod/dfrn_confirm.php:572
|
||||
#: mod/dfrn_confirm.php:575
|
||||
msgid "Our site encryption key is apparently messed up."
|
||||
msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
|
||||
|
||||
#: mod/dfrn_confirm.php:583
|
||||
#: mod/dfrn_confirm.php:586
|
||||
msgid "Empty site URL was provided or URL could not be decrypted by us."
|
||||
msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."
|
||||
|
||||
#: mod/dfrn_confirm.php:605
|
||||
#: mod/dfrn_confirm.php:608
|
||||
msgid "Contact record was not found for you on our site."
|
||||
msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
|
||||
|
||||
#: mod/dfrn_confirm.php:619
|
||||
#: mod/dfrn_confirm.php:622
|
||||
#, php-format
|
||||
msgid "Site public key not available in contact record for URL %s."
|
||||
msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."
|
||||
|
||||
#: mod/dfrn_confirm.php:639
|
||||
#: mod/dfrn_confirm.php:642
|
||||
msgid ""
|
||||
"The ID provided by your system is a duplicate on our system. It should work "
|
||||
"if you try again."
|
||||
msgstr "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."
|
||||
|
||||
#: mod/dfrn_confirm.php:650
|
||||
#: mod/dfrn_confirm.php:653
|
||||
msgid "Unable to set your contact credentials on our system."
|
||||
msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
|
||||
|
||||
#: mod/dfrn_confirm.php:712
|
||||
#: mod/dfrn_confirm.php:715
|
||||
msgid "Unable to update your contact profile details on our system"
|
||||
msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden"
|
||||
|
||||
#: mod/dfrn_confirm.php:784
|
||||
#: mod/dfrn_confirm.php:787
|
||||
#, php-format
|
||||
msgid "%1$s has joined %2$s"
|
||||
msgstr "%1$s ist %2$s beigetreten"
|
||||
|
||||
#: mod/dirfind.php:41
|
||||
#: mod/dfrn_poll.php:118 mod/dfrn_poll.php:554
|
||||
#, php-format
|
||||
msgid "%1$s welcomes %2$s"
|
||||
msgstr "%1$s heißt %2$s herzlich willkommen"
|
||||
|
||||
#: mod/dfrn_request.php:106
|
||||
msgid "This introduction has already been accepted."
|
||||
msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
|
||||
|
||||
#: mod/dfrn_request.php:129 mod/dfrn_request.php:531
|
||||
msgid "Profile location is not valid or does not contain profile information."
|
||||
msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."
|
||||
|
||||
#: mod/dfrn_request.php:134 mod/dfrn_request.php:536
|
||||
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:137 mod/dfrn_request.php:539
|
||||
msgid "Warning: profile location has no profile photo."
|
||||
msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."
|
||||
|
||||
#: mod/dfrn_request.php:141 mod/dfrn_request.php:543
|
||||
#, php-format
|
||||
msgid "%d required parameter was not found at the given location"
|
||||
msgid_plural "%d required parameters were not found at the given location"
|
||||
msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden"
|
||||
msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden"
|
||||
|
||||
#: mod/dfrn_request.php:185
|
||||
msgid "Introduction complete."
|
||||
msgstr "Kontaktanfrage abgeschlossen."
|
||||
|
||||
#: mod/dfrn_request.php:230
|
||||
msgid "Unrecoverable protocol error."
|
||||
msgstr "Nicht behebbarer Protokollfehler."
|
||||
|
||||
#: mod/dfrn_request.php:258
|
||||
msgid "Profile unavailable."
|
||||
msgstr "Profil nicht verfügbar."
|
||||
|
||||
#: mod/dfrn_request.php:285
|
||||
#, php-format
|
||||
msgid "%s has received too many connection requests today."
|
||||
msgstr "%s hat heute zu viele Kontaktanfragen erhalten."
|
||||
|
||||
#: mod/dfrn_request.php:286
|
||||
msgid "Spam protection measures have been invoked."
|
||||
msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
|
||||
|
||||
#: mod/dfrn_request.php:287
|
||||
msgid "Friends are advised to please try again in 24 hours."
|
||||
msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
|
||||
|
||||
#: mod/dfrn_request.php:349
|
||||
msgid "Invalid locator"
|
||||
msgstr "Ungültiger Locator"
|
||||
|
||||
#: mod/dfrn_request.php:358
|
||||
msgid "Invalid email address."
|
||||
msgstr "Ungültige E-Mail-Adresse."
|
||||
|
||||
#: mod/dfrn_request.php:383
|
||||
msgid "This account has not been configured for email. Request failed."
|
||||
msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."
|
||||
|
||||
#: mod/dfrn_request.php:486
|
||||
msgid "You have already introduced yourself here."
|
||||
msgstr "Du hast Dich hier bereits vorgestellt."
|
||||
|
||||
#: mod/dfrn_request.php:490
|
||||
#, php-format
|
||||
msgid "Apparently you are already friends with %s."
|
||||
msgstr "Es scheint so, als ob Du bereits mit %s in Kontakt stehst."
|
||||
|
||||
#: mod/dfrn_request.php:511
|
||||
msgid "Invalid profile URL."
|
||||
msgstr "Ungültige Profil-URL."
|
||||
|
||||
#: mod/dfrn_request.php:617
|
||||
msgid "Your introduction has been sent."
|
||||
msgstr "Deine Kontaktanfrage wurde gesendet."
|
||||
|
||||
#: mod/dfrn_request.php:659
|
||||
msgid ""
|
||||
"Remote subscription can't be done for your network. Please subscribe "
|
||||
"directly on your system."
|
||||
msgstr "Entferntes abonnieren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems. "
|
||||
|
||||
#: mod/dfrn_request.php:680
|
||||
msgid "Please login to confirm introduction."
|
||||
msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."
|
||||
|
||||
#: mod/dfrn_request.php:690
|
||||
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:704 mod/dfrn_request.php:721
|
||||
msgid "Confirm"
|
||||
msgstr "Bestätigen"
|
||||
|
||||
#: mod/dfrn_request.php:716
|
||||
msgid "Hide this contact"
|
||||
msgstr "Verberge diesen Kontakt"
|
||||
|
||||
#: mod/dfrn_request.php:719
|
||||
#, php-format
|
||||
msgid "Welcome home %s."
|
||||
msgstr "Willkommen zurück %s."
|
||||
|
||||
#: mod/dfrn_request.php:720
|
||||
#, php-format
|
||||
msgid "Please confirm your introduction/connection request to %s."
|
||||
msgstr "Bitte bestätige Deine Kontaktanfrage bei %s."
|
||||
|
||||
#: mod/dfrn_request.php:851
|
||||
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:875
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you are not yet a member of the free social web, <a "
|
||||
"href=\"%s/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=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
|
||||
|
||||
#: mod/dfrn_request.php:880
|
||||
msgid "Friend/Connection Request"
|
||||
msgstr "Kontaktanfrage"
|
||||
|
||||
#: mod/dfrn_request.php:881
|
||||
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:882 mod/follow.php:150
|
||||
msgid "Please answer the following:"
|
||||
msgstr "Bitte beantworte folgendes:"
|
||||
|
||||
#: mod/dfrn_request.php:883 mod/follow.php:151
|
||||
#, php-format
|
||||
msgid "Does %s know you?"
|
||||
msgstr "Kennt %s Dich?"
|
||||
|
||||
#: mod/dfrn_request.php:887 mod/follow.php:152
|
||||
msgid "Add a personal note:"
|
||||
msgstr "Eine persönliche Notiz beifügen:"
|
||||
|
||||
#: mod/dfrn_request.php:890
|
||||
msgid "StatusNet/Federated Social Web"
|
||||
msgstr "StatusNet/Federated Social Web"
|
||||
|
||||
#: mod/dfrn_request.php:892
|
||||
#, 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:893 mod/follow.php:158 mod/unfollow.php:112
|
||||
msgid "Your Identity Address:"
|
||||
msgstr "Adresse Deines Profils:"
|
||||
|
||||
#: mod/dfrn_request.php:896 mod/follow.php:64 mod/unfollow.php:64
|
||||
msgid "Submit Request"
|
||||
msgstr "Anfrage abschicken"
|
||||
|
||||
#: mod/directory.php:191 view/theme/vier/theme.php:197
|
||||
msgid "Global Directory"
|
||||
msgstr "Weltweites Verzeichnis"
|
||||
|
||||
#: mod/directory.php:193
|
||||
msgid "Find on this site"
|
||||
msgstr "Auf diesem Server suchen"
|
||||
|
||||
#: mod/directory.php:195
|
||||
msgid "Results for:"
|
||||
msgstr "Ergebnisse für:"
|
||||
|
||||
#: mod/directory.php:197
|
||||
msgid "Site Directory"
|
||||
msgstr "Verzeichnis"
|
||||
|
||||
#: mod/directory.php:204
|
||||
msgid "No entries (some entries may be hidden)."
|
||||
msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
|
||||
|
||||
#: mod/dirfind.php:45
|
||||
#, php-format
|
||||
msgid "People Search - %s"
|
||||
msgstr "Personensuche - %s"
|
||||
|
||||
#: mod/dirfind.php:52
|
||||
#: mod/dirfind.php:56
|
||||
#, php-format
|
||||
msgid "Forum Search - %s"
|
||||
msgstr "Forensuche - %s"
|
||||
|
||||
#: mod/dirfind.php:253 mod/match.php:122
|
||||
msgid "No matches"
|
||||
msgstr "Keine Übereinstimmungen"
|
||||
|
||||
#: mod/display.php:482
|
||||
msgid "Item has been removed."
|
||||
msgstr "Eintrag wurde entfernt."
|
||||
|
||||
#: mod/events.php:98 mod/events.php:100
|
||||
#: mod/editpost.php:22 mod/editpost.php:32
|
||||
msgid "Item not found"
|
||||
msgstr "Beitrag nicht gefunden"
|
||||
|
||||
#: mod/editpost.php:37
|
||||
msgid "Edit post"
|
||||
msgstr "Beitrag bearbeiten"
|
||||
|
||||
#: mod/events.php:100 mod/events.php:102
|
||||
msgid "Event can not end before it has started."
|
||||
msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt."
|
||||
|
||||
#: mod/events.php:107 mod/events.php:109
|
||||
#: mod/events.php:109 mod/events.php:111
|
||||
msgid "Event title and start time are required."
|
||||
msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
|
||||
|
||||
#: mod/events.php:385
|
||||
#: mod/events.php:387
|
||||
msgid "Create New Event"
|
||||
msgstr "Neue Veranstaltung erstellen"
|
||||
|
||||
#: mod/events.php:505
|
||||
#: mod/events.php:507
|
||||
msgid "Event details"
|
||||
msgstr "Veranstaltungsdetails"
|
||||
|
||||
#: mod/events.php:506
|
||||
#: mod/events.php:508
|
||||
msgid "Starting date and Title are required."
|
||||
msgstr "Anfangszeitpunkt und Titel werden benötigt"
|
||||
|
||||
#: mod/events.php:507 mod/events.php:508
|
||||
#: mod/events.php:509 mod/events.php:510
|
||||
msgid "Event Starts:"
|
||||
msgstr "Veranstaltungsbeginn:"
|
||||
|
||||
#: mod/events.php:507 mod/events.php:519 mod/profiles.php:708
|
||||
#: mod/events.php:509 mod/events.php:521 mod/profiles.php:712
|
||||
msgid "Required"
|
||||
msgstr "Benötigt"
|
||||
|
||||
#: mod/events.php:509 mod/events.php:525
|
||||
#: mod/events.php:511 mod/events.php:527
|
||||
msgid "Finish date/time is not known or not relevant"
|
||||
msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
|
||||
|
||||
#: mod/events.php:511 mod/events.php:512
|
||||
#: mod/events.php:513 mod/events.php:514
|
||||
msgid "Event Finishes:"
|
||||
msgstr "Veranstaltungsende:"
|
||||
|
||||
#: mod/events.php:513 mod/events.php:526
|
||||
#: mod/events.php:515 mod/events.php:528
|
||||
msgid "Adjust for viewer timezone"
|
||||
msgstr "An Zeitzone des Betrachters anpassen"
|
||||
|
||||
#: mod/events.php:515
|
||||
#: mod/events.php:517
|
||||
msgid "Description:"
|
||||
msgstr "Beschreibung"
|
||||
|
||||
#: mod/events.php:519 mod/events.php:521
|
||||
#: mod/events.php:521 mod/events.php:523
|
||||
msgid "Title:"
|
||||
msgstr "Titel:"
|
||||
|
||||
#: mod/events.php:522 mod/events.php:523
|
||||
#: mod/events.php:524 mod/events.php:525
|
||||
msgid "Share this event"
|
||||
msgstr "Veranstaltung teilen"
|
||||
|
||||
#: mod/events.php:552
|
||||
#: mod/events.php:554
|
||||
msgid "Failed to remove event"
|
||||
msgstr "Entfernen der Veranstaltung fehlgeschlagen"
|
||||
|
||||
#: mod/events.php:554
|
||||
#: mod/events.php:556
|
||||
msgid "Event removed"
|
||||
msgstr "Veranstaltung enfternt"
|
||||
|
||||
#: mod/fsuggest.php:66
|
||||
#: mod/fbrowser.php:125
|
||||
msgid "Files"
|
||||
msgstr "Dateien"
|
||||
|
||||
#: mod/filer.php:32
|
||||
msgid "- select -"
|
||||
msgstr "- auswählen -"
|
||||
|
||||
#: mod/follow.php:43
|
||||
msgid "Contact added"
|
||||
msgstr "Kontakt hinzugefügt"
|
||||
|
||||
#: mod/follow.php:75
|
||||
msgid "You already added this contact."
|
||||
msgstr "Du hast den Kontakt bereits hinzugefügt."
|
||||
|
||||
#: mod/follow.php:84
|
||||
msgid "Diaspora support isn't enabled. Contact can't be added."
|
||||
msgstr "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
|
||||
|
||||
#: mod/follow.php:91
|
||||
msgid "OStatus support is disabled. Contact can't be added."
|
||||
msgstr "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
|
||||
|
||||
#: mod/follow.php:98
|
||||
msgid "The network type couldn't be detected. Contact can't be added."
|
||||
msgstr "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden."
|
||||
|
||||
#: mod/friendica.php:71
|
||||
msgid "This is Friendica, version"
|
||||
msgstr "Dies ist Friendica, Version"
|
||||
|
||||
#: mod/friendica.php:72
|
||||
msgid "running at web location"
|
||||
msgstr "die unter folgender Webadresse zu finden ist"
|
||||
|
||||
#: mod/friendica.php:76
|
||||
msgid ""
|
||||
"Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
|
||||
"about the Friendica project."
|
||||
msgstr "Bitte besuche <a href=\"https://friendi.ca\">Friendi.ca</a> um mehr über das Friendica Projekt zu erfahren."
|
||||
|
||||
#: mod/friendica.php:80
|
||||
msgid "Bug reports and issues: please visit"
|
||||
msgstr "Probleme oder Fehler gefunden? Bitte besuche"
|
||||
|
||||
#: mod/friendica.php:80
|
||||
msgid "the bugtracker at github"
|
||||
msgstr "den Bugtracker auf github"
|
||||
|
||||
#: mod/friendica.php:83
|
||||
msgid ""
|
||||
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
|
||||
"dot com"
|
||||
msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"
|
||||
|
||||
#: mod/friendica.php:97
|
||||
msgid "Installed plugins/addons/apps:"
|
||||
msgstr "Installierte Plugins/Erweiterungen/Apps:"
|
||||
|
||||
#: mod/friendica.php:111
|
||||
msgid "No installed plugins/addons/apps"
|
||||
msgstr "Keine Plugins/Erweiterungen/Apps installiert"
|
||||
|
||||
#: mod/friendica.php:116
|
||||
msgid "On this server the following remote servers are blocked."
|
||||
msgstr "Auf diesem Server werden die folgenden entfernten Server blockiert."
|
||||
|
||||
#: mod/fsuggest.php:67
|
||||
msgid "Friend suggestion sent."
|
||||
msgstr "Kontaktvorschlag gesendet."
|
||||
|
||||
#: mod/fsuggest.php:100
|
||||
#: mod/fsuggest.php:103
|
||||
msgid "Suggest Friends"
|
||||
msgstr "Kontakte vorschlagen"
|
||||
|
||||
#: mod/fsuggest.php:102
|
||||
#: mod/fsuggest.php:105
|
||||
#, php-format
|
||||
msgid "Suggest a friend for %s"
|
||||
msgstr "Schlage %s einen Kontakt vor"
|
||||
|
||||
#: mod/item.php:120
|
||||
#: mod/group.php:34
|
||||
msgid "Group created."
|
||||
msgstr "Gruppe erstellt."
|
||||
|
||||
#: mod/group.php:40
|
||||
msgid "Could not create group."
|
||||
msgstr "Konnte die Gruppe nicht erstellen."
|
||||
|
||||
#: mod/group.php:54 mod/group.php:156
|
||||
msgid "Group not found."
|
||||
msgstr "Gruppe nicht gefunden."
|
||||
|
||||
#: mod/group.php:68
|
||||
msgid "Group name changed."
|
||||
msgstr "Gruppenname geändert."
|
||||
|
||||
#: mod/group.php:81 mod/profperm.php:25 index.php:398
|
||||
msgid "Permission denied"
|
||||
msgstr "Zugriff verweigert"
|
||||
|
||||
#: mod/group.php:95
|
||||
msgid "Save Group"
|
||||
msgstr "Gruppe speichern"
|
||||
|
||||
#: mod/group.php:100
|
||||
msgid "Create a group of contacts/friends."
|
||||
msgstr "Eine Kontaktgruppe anlegen."
|
||||
|
||||
#: mod/group.php:125
|
||||
msgid "Group removed."
|
||||
msgstr "Gruppe entfernt."
|
||||
|
||||
#: mod/group.php:127
|
||||
msgid "Unable to remove group."
|
||||
msgstr "Konnte die Gruppe nicht entfernen."
|
||||
|
||||
#: mod/group.php:191
|
||||
msgid "Delete Group"
|
||||
msgstr "Gruppe löschen"
|
||||
|
||||
#: mod/group.php:197
|
||||
msgid "Group Editor"
|
||||
msgstr "Gruppeneditor"
|
||||
|
||||
#: mod/group.php:202
|
||||
msgid "Edit Group Name"
|
||||
msgstr "Gruppen Name bearbeiten"
|
||||
|
||||
#: mod/group.php:212
|
||||
msgid "Members"
|
||||
msgstr "Mitglieder"
|
||||
|
||||
#: mod/group.php:215 mod/network.php:661
|
||||
msgid "Group is empty"
|
||||
msgstr "Gruppe ist leer"
|
||||
|
||||
#: mod/group.php:228
|
||||
msgid "Remove Contact"
|
||||
msgstr "Kontakt löschen"
|
||||
|
||||
#: mod/group.php:252
|
||||
msgid "Add Contact"
|
||||
msgstr "Kontakt hinzufügen"
|
||||
|
||||
#: mod/group.php:264 mod/profperm.php:110
|
||||
msgid "Click on a contact to add or remove."
|
||||
msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
|
||||
|
||||
#: mod/hcard.php:15
|
||||
msgid "No profile"
|
||||
msgstr "Kein Profil"
|
||||
|
||||
#: mod/home.php:43
|
||||
#, php-format
|
||||
msgid "Welcome to %s"
|
||||
msgstr "Willkommen zu %s"
|
||||
|
||||
#: mod/install.php:108
|
||||
msgid "Friendica Communications Server - Setup"
|
||||
msgstr "Friendica-Server für soziale Netzwerke – Setup"
|
||||
|
||||
#: mod/install.php:114
|
||||
msgid "Could not connect to database."
|
||||
msgstr "Verbindung zur Datenbank gescheitert."
|
||||
|
||||
#: mod/install.php:118
|
||||
msgid "Could not create table."
|
||||
msgstr "Tabelle konnte nicht angelegt werden."
|
||||
|
||||
#: mod/install.php:124
|
||||
msgid "Your Friendica site database has been installed."
|
||||
msgstr "Die Datenbank Deiner Friendicaseite wurde installiert."
|
||||
|
||||
#: mod/install.php:129
|
||||
msgid ""
|
||||
"You may need to import the file \"database.sql\" manually using phpmyadmin "
|
||||
"or mysql."
|
||||
msgstr "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."
|
||||
|
||||
#: mod/install.php:130 mod/install.php:202 mod/install.php:549
|
||||
msgid "Please see the file \"INSTALL.txt\"."
|
||||
msgstr "Lies bitte die \"INSTALL.txt\"."
|
||||
|
||||
#: mod/install.php:142
|
||||
msgid "Database already in use."
|
||||
msgstr "Die Datenbank wird bereits verwendet."
|
||||
|
||||
#: mod/install.php:199
|
||||
msgid "System check"
|
||||
msgstr "Systemtest"
|
||||
|
||||
#: mod/install.php:204
|
||||
msgid "Check again"
|
||||
msgstr "Noch einmal testen"
|
||||
|
||||
#: mod/install.php:223
|
||||
msgid "Database connection"
|
||||
msgstr "Datenbankverbindung"
|
||||
|
||||
#: mod/install.php:224
|
||||
msgid ""
|
||||
"In order to install Friendica we need to know how to connect to your "
|
||||
"database."
|
||||
msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."
|
||||
|
||||
#: mod/install.php:225
|
||||
msgid ""
|
||||
"Please contact your hosting provider or site administrator if you have "
|
||||
"questions about these settings."
|
||||
msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest."
|
||||
|
||||
#: mod/install.php:226
|
||||
msgid ""
|
||||
"The database you specify below should already exist. If it does not, please "
|
||||
"create it before continuing."
|
||||
msgstr "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst."
|
||||
|
||||
#: mod/install.php:230
|
||||
msgid "Database Server Name"
|
||||
msgstr "Datenbank-Server"
|
||||
|
||||
#: mod/install.php:231
|
||||
msgid "Database Login Name"
|
||||
msgstr "Datenbank-Nutzer"
|
||||
|
||||
#: mod/install.php:232
|
||||
msgid "Database Login Password"
|
||||
msgstr "Datenbank-Passwort"
|
||||
|
||||
#: mod/install.php:232
|
||||
msgid "For security reasons the password must not be empty"
|
||||
msgstr "Aus Sicherheitsgründen darf das Passwort nicht leer sein."
|
||||
|
||||
#: mod/install.php:233
|
||||
msgid "Database Name"
|
||||
msgstr "Datenbank-Name"
|
||||
|
||||
#: mod/install.php:234 mod/install.php:275
|
||||
msgid "Site administrator email address"
|
||||
msgstr "E-Mail-Adresse des Administrators"
|
||||
|
||||
#: mod/install.php:234 mod/install.php:275
|
||||
msgid ""
|
||||
"Your account email address must match this in order to use the web admin "
|
||||
"panel."
|
||||
msgstr "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst."
|
||||
|
||||
#: mod/install.php:238 mod/install.php:278
|
||||
msgid "Please select a default timezone for your website"
|
||||
msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
|
||||
|
||||
#: mod/install.php:265
|
||||
msgid "Site settings"
|
||||
msgstr "Server-Einstellungen"
|
||||
|
||||
#: mod/install.php:279
|
||||
msgid "System Language:"
|
||||
msgstr "Systemsprache:"
|
||||
|
||||
#: mod/install.php:279
|
||||
msgid ""
|
||||
"Set the default language for your Friendica installation interface and to "
|
||||
"send emails."
|
||||
msgstr "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand"
|
||||
|
||||
#: mod/install.php:319
|
||||
msgid "Could not find a command line version of PHP in the web server PATH."
|
||||
msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."
|
||||
|
||||
#: mod/install.php:320
|
||||
msgid ""
|
||||
"If you don't have a command line version of PHP installed on server, you "
|
||||
"will not be able to run the background processing. See <a "
|
||||
"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
|
||||
"up-the-worker'>'Setup the worker'</a>"
|
||||
msgstr "Wenn auf deinem Server keine Kommandozeilenversion von PHP installiert ist, kannst du den Hintergrundprozess nicht einrichten. Hier findest du alternative Möglichkeiten für das Worker Setup<a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-worker'>"
|
||||
|
||||
#: mod/install.php:324
|
||||
msgid "PHP executable path"
|
||||
msgstr "Pfad zu PHP"
|
||||
|
||||
#: mod/install.php:324
|
||||
msgid ""
|
||||
"Enter full path to php executable. You can leave this blank to continue the "
|
||||
"installation."
|
||||
msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."
|
||||
|
||||
#: mod/install.php:329
|
||||
msgid "Command line PHP"
|
||||
msgstr "Kommandozeilen-PHP"
|
||||
|
||||
#: mod/install.php:338
|
||||
msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
|
||||
msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"
|
||||
|
||||
#: mod/install.php:339
|
||||
msgid "Found PHP version: "
|
||||
msgstr "Gefundene PHP Version:"
|
||||
|
||||
#: mod/install.php:341
|
||||
msgid "PHP cli binary"
|
||||
msgstr "PHP CLI Binary"
|
||||
|
||||
#: mod/install.php:352
|
||||
msgid ""
|
||||
"The command line version of PHP on your system does not have "
|
||||
"\"register_argc_argv\" enabled."
|
||||
msgstr "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."
|
||||
|
||||
#: mod/install.php:353
|
||||
msgid "This is required for message delivery to work."
|
||||
msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
|
||||
|
||||
#: mod/install.php:355
|
||||
msgid "PHP register_argc_argv"
|
||||
msgstr "PHP register_argc_argv"
|
||||
|
||||
#: mod/install.php:378
|
||||
msgid ""
|
||||
"Error: the \"openssl_pkey_new\" function on this system is not able to "
|
||||
"generate encryption keys"
|
||||
msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"
|
||||
|
||||
#: mod/install.php:379
|
||||
msgid ""
|
||||
"If running under Windows, please see "
|
||||
"\"http://www.php.net/manual/en/openssl.installation.php\"."
|
||||
msgstr "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."
|
||||
|
||||
#: mod/install.php:381
|
||||
msgid "Generate encryption keys"
|
||||
msgstr "Schlüssel erzeugen"
|
||||
|
||||
#: mod/install.php:388
|
||||
msgid "libCurl PHP module"
|
||||
msgstr "PHP: libCurl-Modul"
|
||||
|
||||
#: mod/install.php:389
|
||||
msgid "GD graphics PHP module"
|
||||
msgstr "PHP: GD-Grafikmodul"
|
||||
|
||||
#: mod/install.php:390
|
||||
msgid "OpenSSL PHP module"
|
||||
msgstr "PHP: OpenSSL-Modul"
|
||||
|
||||
#: mod/install.php:391
|
||||
msgid "PDO or MySQLi PHP module"
|
||||
msgstr "PDO oder MySQLi PHP Modul"
|
||||
|
||||
#: mod/install.php:392
|
||||
msgid "mb_string PHP module"
|
||||
msgstr "PHP: mb_string-Modul"
|
||||
|
||||
#: mod/install.php:393
|
||||
msgid "XML PHP module"
|
||||
msgstr "XML PHP Modul"
|
||||
|
||||
#: mod/install.php:394
|
||||
msgid "iconv module"
|
||||
msgstr "iconv module"
|
||||
|
||||
#: mod/install.php:398 mod/install.php:400
|
||||
msgid "Apache mod_rewrite module"
|
||||
msgstr "Apache mod_rewrite module"
|
||||
|
||||
#: mod/install.php:398
|
||||
msgid ""
|
||||
"Error: Apache webserver mod-rewrite module is required but not installed."
|
||||
msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."
|
||||
|
||||
#: mod/install.php:406
|
||||
msgid "Error: libCURL PHP module required but not installed."
|
||||
msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
|
||||
|
||||
#: mod/install.php:410
|
||||
msgid ""
|
||||
"Error: GD graphics PHP module with JPEG support required but not installed."
|
||||
msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."
|
||||
|
||||
#: mod/install.php:414
|
||||
msgid "Error: openssl PHP module required but not installed."
|
||||
msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
|
||||
|
||||
#: mod/install.php:418
|
||||
msgid "Error: PDO or MySQLi PHP module required but not installed."
|
||||
msgstr "Fehler: PDO oder MySQLi PHP Modul erforderlich, aber nicht installiert."
|
||||
|
||||
#: mod/install.php:422
|
||||
msgid "Error: The MySQL driver for PDO is not installed."
|
||||
msgstr "Fehler: der MySQL Treiber für PDO ist nicht installiert"
|
||||
|
||||
#: mod/install.php:426
|
||||
msgid "Error: mb_string PHP module required but not installed."
|
||||
msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
|
||||
|
||||
#: mod/install.php:430
|
||||
msgid "Error: iconv PHP module required but not installed."
|
||||
msgstr "Fehler: Das iconv-Modul von PHP ist nicht installiert."
|
||||
|
||||
#: mod/install.php:440
|
||||
msgid "Error, XML PHP module required but not installed."
|
||||
msgstr "Fehler: XML PHP Modul erforderlich aber nicht installiert."
|
||||
|
||||
#: mod/install.php:452
|
||||
msgid ""
|
||||
"The web installer needs to be able to create a file called \".htconfig.php\""
|
||||
" in the top folder of your web server and it is unable to do so."
|
||||
msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."
|
||||
|
||||
#: mod/install.php:453
|
||||
msgid ""
|
||||
"This is most often a permission setting, as the web server may not be able "
|
||||
"to write files in your folder - even if you can."
|
||||
msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."
|
||||
|
||||
#: mod/install.php:454
|
||||
msgid ""
|
||||
"At the end of this procedure, we will give you a text to save in a file "
|
||||
"named .htconfig.php in your Friendica top folder."
|
||||
msgstr "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."
|
||||
|
||||
#: mod/install.php:455
|
||||
msgid ""
|
||||
"You can alternatively skip this procedure and perform a manual installation."
|
||||
" Please see the file \"INSTALL.txt\" for instructions."
|
||||
msgstr "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt."
|
||||
|
||||
#: mod/install.php:458
|
||||
msgid ".htconfig.php is writable"
|
||||
msgstr "Schreibrechte auf .htconfig.php"
|
||||
|
||||
#: mod/install.php:468
|
||||
msgid ""
|
||||
"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
|
||||
"compiles templates to PHP to speed up rendering."
|
||||
msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."
|
||||
|
||||
#: mod/install.php:469
|
||||
msgid ""
|
||||
"In order to store these compiled templates, the web server needs to have "
|
||||
"write access to the directory view/smarty3/ under the Friendica top level "
|
||||
"folder."
|
||||
msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."
|
||||
|
||||
#: mod/install.php:470
|
||||
msgid ""
|
||||
"Please ensure that the user that your web server runs as (e.g. www-data) has"
|
||||
" write access to this folder."
|
||||
msgstr "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."
|
||||
|
||||
#: mod/install.php:471
|
||||
msgid ""
|
||||
"Note: as a security measure, you should give the web server write access to "
|
||||
"view/smarty3/ only--not the template files (.tpl) that it contains."
|
||||
msgstr "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."
|
||||
|
||||
#: mod/install.php:474
|
||||
msgid "view/smarty3 is writable"
|
||||
msgstr "view/smarty3 ist schreibbar"
|
||||
|
||||
#: mod/install.php:490
|
||||
msgid ""
|
||||
"Url rewrite in .htaccess is not working. Check your server configuration."
|
||||
msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."
|
||||
|
||||
#: mod/install.php:492
|
||||
msgid "Url rewrite is working"
|
||||
msgstr "URL rewrite funktioniert"
|
||||
|
||||
#: mod/install.php:511
|
||||
msgid "ImageMagick PHP extension is not installed"
|
||||
msgstr "ImageMagicx PHP Erweiterung ist nicht installiert."
|
||||
|
||||
#: mod/install.php:513
|
||||
msgid "ImageMagick PHP extension is installed"
|
||||
msgstr "ImageMagick PHP Erweiterung ist installiert"
|
||||
|
||||
#: mod/install.php:515
|
||||
msgid "ImageMagick supports GIF"
|
||||
msgstr "ImageMagick unterstützt GIF"
|
||||
|
||||
#: mod/install.php:522
|
||||
msgid ""
|
||||
"The database configuration file \".htconfig.php\" could not be written. "
|
||||
"Please use the enclosed text to create a configuration file in your web "
|
||||
"server root."
|
||||
msgstr "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen."
|
||||
|
||||
#: mod/install.php:547
|
||||
msgid "<h1>What next</h1>"
|
||||
msgstr "<h1>Wie geht es weiter?</h1>"
|
||||
|
||||
#: mod/install.php:548
|
||||
msgid ""
|
||||
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
|
||||
"worker."
|
||||
msgstr "Wichtig: Du musst [manuell] einen Cronjob (o.ä.) für den Worker einrichten."
|
||||
|
||||
#: mod/invite.php:33
|
||||
msgid "Total invitation limit exceeded."
|
||||
msgstr "Limit für Einladungen erreicht."
|
||||
|
||||
#: mod/invite.php:56
|
||||
#, php-format
|
||||
msgid "%s : Not a valid email address."
|
||||
msgstr "%s: Keine gültige Email Adresse."
|
||||
|
||||
#: mod/invite.php:81
|
||||
msgid "Please join us on Friendica"
|
||||
msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"
|
||||
|
||||
#: mod/invite.php:92
|
||||
msgid "Invitation limit exceeded. Please contact your site administrator."
|
||||
msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."
|
||||
|
||||
#: mod/invite.php:96
|
||||
#, php-format
|
||||
msgid "%s : Message delivery failed."
|
||||
msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
|
||||
|
||||
#: mod/invite.php:100
|
||||
#, php-format
|
||||
msgid "%d message sent."
|
||||
msgid_plural "%d messages sent."
|
||||
msgstr[0] "%d Nachricht gesendet."
|
||||
msgstr[1] "%d Nachrichten gesendet."
|
||||
|
||||
#: mod/invite.php:119
|
||||
msgid "You have no more invitations available"
|
||||
msgstr "Du hast keine weiteren Einladungen"
|
||||
|
||||
#: mod/invite.php:127
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Visit %s for a list of public sites that you can join. Friendica members on "
|
||||
"other sites can all connect with each other, as well as with members of many"
|
||||
" other social networks."
|
||||
msgstr "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."
|
||||
|
||||
#: mod/invite.php:129
|
||||
#, php-format
|
||||
msgid ""
|
||||
"To accept this invitation, please visit and register at %s or any other "
|
||||
"public Friendica website."
|
||||
msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website."
|
||||
|
||||
#: mod/invite.php:130
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
|
||||
"web that is owned and controlled by its members. They can also connect with "
|
||||
"many traditional social networks. See %s for a list of alternate Friendica "
|
||||
"sites you can join."
|
||||
msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst."
|
||||
|
||||
#: mod/invite.php:134
|
||||
msgid ""
|
||||
"Our apologies. This system is not currently configured to connect with other"
|
||||
" public sites or invite members."
|
||||
msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."
|
||||
|
||||
#: mod/invite.php:137
|
||||
#, php-format
|
||||
msgid "To accept this invitation, please visit and register at %s."
|
||||
msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s."
|
||||
|
||||
#: mod/invite.php:138
|
||||
msgid ""
|
||||
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
|
||||
"web that is owned and controlled by its members. They can also connect with "
|
||||
"many traditional social networks."
|
||||
msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden."
|
||||
|
||||
#: mod/invite.php:144
|
||||
msgid "Send invitations"
|
||||
msgstr "Einladungen senden"
|
||||
|
||||
#: mod/invite.php:145
|
||||
msgid "Enter email addresses, one per line:"
|
||||
msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
|
||||
|
||||
#: mod/invite.php:146 mod/message.php:334 mod/message.php:506
|
||||
#: mod/wallmessage.php:139
|
||||
msgid "Your message:"
|
||||
msgstr "Deine Nachricht:"
|
||||
|
||||
#: mod/invite.php:147
|
||||
msgid ""
|
||||
"You are cordially invited to join me and other close friends on Friendica - "
|
||||
"and help us to create a better social web."
|
||||
msgstr "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."
|
||||
|
||||
#: mod/invite.php:149
|
||||
msgid "You will need to supply this invitation code: $invite_code"
|
||||
msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
|
||||
|
||||
#: mod/invite.php:149
|
||||
msgid ""
|
||||
"Once you have registered, please connect with me via my profile page at:"
|
||||
msgstr "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"
|
||||
|
||||
#: mod/invite.php:151
|
||||
msgid ""
|
||||
"For more information about the Friendica project and why we feel it is "
|
||||
"important, please visit http://friendi.ca"
|
||||
msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendi.ca."
|
||||
|
||||
#: mod/item.php:124
|
||||
msgid "Unable to locate original post."
|
||||
msgstr "Konnte den Originalbeitrag nicht finden."
|
||||
|
||||
#: mod/item.php:347
|
||||
#: mod/item.php:351
|
||||
msgid "Empty post discarded."
|
||||
msgstr "Leerer Beitrag wurde verworfen."
|
||||
|
||||
#: mod/item.php:931
|
||||
#: mod/item.php:937
|
||||
msgid "System error. Post not saved."
|
||||
msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
|
||||
|
||||
#: mod/item.php:1022
|
||||
#: mod/item.php:1028
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This message was sent to you by %s, a member of the Friendica social "
|
||||
"network."
|
||||
msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."
|
||||
|
||||
#: mod/item.php:1024
|
||||
#: mod/item.php:1030
|
||||
#, php-format
|
||||
msgid "You may visit them online at %s"
|
||||
msgstr "Du kannst sie online unter %s besuchen"
|
||||
|
||||
#: mod/item.php:1025
|
||||
#: mod/item.php:1031
|
||||
msgid ""
|
||||
"Please contact the sender by replying to this post if you do not wish to "
|
||||
"receive these messages."
|
||||
msgstr "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest."
|
||||
|
||||
#: mod/item.php:1029
|
||||
#: mod/item.php:1035
|
||||
#, php-format
|
||||
msgid "%s posted an update."
|
||||
msgstr "%s hat ein Update veröffentlicht."
|
||||
|
||||
#: mod/mood.php:137
|
||||
#: mod/lockview.php:34 mod/lockview.php:42
|
||||
msgid "Remote privacy information not available."
|
||||
msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
|
||||
|
||||
#: mod/lockview.php:51
|
||||
msgid "Visible to:"
|
||||
msgstr "Sichtbar für:"
|
||||
|
||||
#: mod/lostpass.php:23
|
||||
msgid "No valid account found."
|
||||
msgstr "Kein gültiges Konto gefunden."
|
||||
|
||||
#: mod/lostpass.php:39
|
||||
msgid "Password reset request issued. Check your email."
|
||||
msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail."
|
||||
|
||||
#: mod/lostpass.php:45
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\tDear %1$s,\n"
|
||||
"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
|
||||
"\t\tpassword. In order to confirm this request, please select the verification link\n"
|
||||
"\t\tbelow or paste it into your web browser address bar.\n"
|
||||
"\n"
|
||||
"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
|
||||
"\t\tprovided and ignore and/or delete this email.\n"
|
||||
"\n"
|
||||
"\t\tYour password will not be changed unless we can verify that you\n"
|
||||
"\t\tissued this request."
|
||||
msgstr "\nHallo %1$s,\n\nAuf \"%2$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast."
|
||||
|
||||
#: mod/lostpass.php:56
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\tFollow this link to verify your identity:\n"
|
||||
"\n"
|
||||
"\t\t%1$s\n"
|
||||
"\n"
|
||||
"\t\tYou will then receive a follow-up message containing the new password.\n"
|
||||
"\t\tYou may change that password from your account settings page after logging in.\n"
|
||||
"\n"
|
||||
"\t\tThe login details are as follows:\n"
|
||||
"\n"
|
||||
"\t\tSite Location:\t%2$s\n"
|
||||
"\t\tLogin Name:\t%3$s"
|
||||
msgstr "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s"
|
||||
|
||||
#: mod/lostpass.php:75
|
||||
#, php-format
|
||||
msgid "Password reset requested at %s"
|
||||
msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
|
||||
|
||||
#: mod/lostpass.php:95
|
||||
msgid ""
|
||||
"Request could not be verified. (You may have previously submitted it.) "
|
||||
"Password reset failed."
|
||||
msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."
|
||||
|
||||
#: mod/lostpass.php:114 boot.php:916
|
||||
msgid "Password Reset"
|
||||
msgstr "Passwort zurücksetzen"
|
||||
|
||||
#: mod/lostpass.php:115
|
||||
msgid "Your password has been reset as requested."
|
||||
msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
|
||||
|
||||
#: mod/lostpass.php:116
|
||||
msgid "Your new password is"
|
||||
msgstr "Dein neues Passwort lautet"
|
||||
|
||||
#: mod/lostpass.php:117
|
||||
msgid "Save or copy your new password - and then"
|
||||
msgstr "Speichere oder kopiere Dein neues Passwort - und dann"
|
||||
|
||||
#: mod/lostpass.php:118
|
||||
msgid "click here to login"
|
||||
msgstr "hier klicken, um Dich anzumelden"
|
||||
|
||||
#: mod/lostpass.php:119
|
||||
msgid ""
|
||||
"Your password may be changed from the <em>Settings</em> page after "
|
||||
"successful login."
|
||||
msgstr "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald Du Dich erfolgreich angemeldet hast."
|
||||
|
||||
#: mod/lostpass.php:129
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\t\tDear %1$s,\n"
|
||||
"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
|
||||
"\t\t\t\tinformation for your records (or change your password immediately to\n"
|
||||
"\t\t\t\tsomething that you will remember).\n"
|
||||
"\t\t\t"
|
||||
msgstr "\nHallo %1$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst)."
|
||||
|
||||
#: mod/lostpass.php:135
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\t\tYour login details are as follows:\n"
|
||||
"\n"
|
||||
"\t\t\t\tSite Location:\t%1$s\n"
|
||||
"\t\t\t\tLogin Name:\t%2$s\n"
|
||||
"\t\t\t\tPassword:\t%3$s\n"
|
||||
"\n"
|
||||
"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
|
||||
"\t\t\t"
|
||||
msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin Name: %2$s\nPasswort: %3$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden."
|
||||
|
||||
#: mod/lostpass.php:151
|
||||
#, php-format
|
||||
msgid "Your password has been changed at %s"
|
||||
msgstr "Auf %s wurde Dein Passwort geändert"
|
||||
|
||||
#: mod/lostpass.php:163
|
||||
msgid "Forgot your Password?"
|
||||
msgstr "Hast Du Dein Passwort vergessen?"
|
||||
|
||||
#: mod/lostpass.php:164
|
||||
msgid ""
|
||||
"Enter your email address and submit to have your password reset. Then check "
|
||||
"your email for further instructions."
|
||||
msgstr "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet."
|
||||
|
||||
#: mod/lostpass.php:165 boot.php:904
|
||||
msgid "Nickname or Email: "
|
||||
msgstr "Spitzname oder E-Mail:"
|
||||
|
||||
#: mod/lostpass.php:166
|
||||
msgid "Reset"
|
||||
msgstr "Zurücksetzen"
|
||||
|
||||
#: mod/manage.php:154
|
||||
msgid "Manage Identities and/or Pages"
|
||||
msgstr "Verwalte Identitäten und/oder Seiten"
|
||||
|
||||
#: mod/manage.php:155
|
||||
msgid ""
|
||||
"Toggle between different identities or community/group pages which share "
|
||||
"your account details or which you have been granted \"manage\" permissions"
|
||||
msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast."
|
||||
|
||||
#: mod/manage.php:156
|
||||
msgid "Select an identity to manage: "
|
||||
msgstr "Wähle eine Identität zum Verwalten aus: "
|
||||
|
||||
#: mod/match.php:45
|
||||
msgid "No keywords to match. Please add keywords to your default profile."
|
||||
msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."
|
||||
|
||||
#: mod/match.php:101
|
||||
msgid "is interested in:"
|
||||
msgstr "ist interessiert an:"
|
||||
|
||||
#: mod/match.php:117
|
||||
msgid "Profile Match"
|
||||
msgstr "Profilübereinstimmungen"
|
||||
|
||||
#: mod/message.php:65 mod/wallmessage.php:54
|
||||
msgid "No recipient selected."
|
||||
msgstr "Kein Empfänger gewählt."
|
||||
|
||||
#: mod/message.php:69
|
||||
msgid "Unable to locate contact information."
|
||||
msgstr "Konnte die Kontaktinformationen nicht finden."
|
||||
|
||||
#: mod/message.php:72 mod/wallmessage.php:60
|
||||
msgid "Message could not be sent."
|
||||
msgstr "Nachricht konnte nicht gesendet werden."
|
||||
|
||||
#: mod/message.php:75 mod/wallmessage.php:63
|
||||
msgid "Message collection failure."
|
||||
msgstr "Konnte Nachrichten nicht abrufen."
|
||||
|
||||
#: mod/message.php:78 mod/wallmessage.php:66
|
||||
msgid "Message sent."
|
||||
msgstr "Nachricht gesendet."
|
||||
|
||||
#: mod/message.php:207
|
||||
msgid "Do you really want to delete this message?"
|
||||
msgstr "Möchtest Du wirklich diese Nachricht löschen?"
|
||||
|
||||
#: mod/message.php:227
|
||||
msgid "Message deleted."
|
||||
msgstr "Nachricht gelöscht."
|
||||
|
||||
#: mod/message.php:257
|
||||
msgid "Conversation removed."
|
||||
msgstr "Unterhaltung gelöscht."
|
||||
|
||||
#: mod/message.php:324 mod/wallmessage.php:130
|
||||
msgid "Send Private Message"
|
||||
msgstr "Private Nachricht senden"
|
||||
|
||||
#: mod/message.php:325 mod/message.php:501 mod/wallmessage.php:132
|
||||
msgid "To:"
|
||||
msgstr "An:"
|
||||
|
||||
#: mod/message.php:330 mod/message.php:503 mod/wallmessage.php:133
|
||||
msgid "Subject:"
|
||||
msgstr "Betreff:"
|
||||
|
||||
#: mod/message.php:366
|
||||
msgid "No messages."
|
||||
msgstr "Keine Nachrichten."
|
||||
|
||||
#: mod/message.php:405
|
||||
msgid "Message not available."
|
||||
msgstr "Nachricht nicht verfügbar."
|
||||
|
||||
#: mod/message.php:473
|
||||
msgid "Delete message"
|
||||
msgstr "Nachricht löschen"
|
||||
|
||||
#: mod/message.php:494 mod/message.php:576
|
||||
msgid "Delete conversation"
|
||||
msgstr "Unterhaltung löschen"
|
||||
|
||||
#: mod/message.php:496
|
||||
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:500
|
||||
msgid "Send Reply"
|
||||
msgstr "Antwort senden"
|
||||
|
||||
#: mod/message.php:552
|
||||
#, php-format
|
||||
msgid "Unknown sender - %s"
|
||||
msgstr "'Unbekannter Absender - %s"
|
||||
|
||||
#: mod/message.php:554
|
||||
#, php-format
|
||||
msgid "You and %s"
|
||||
msgstr "Du und %s"
|
||||
|
||||
#: mod/message.php:556
|
||||
#, php-format
|
||||
msgid "%s and You"
|
||||
msgstr "%s und Du"
|
||||
|
||||
#: mod/message.php:579
|
||||
msgid "D, d M Y - g:i A"
|
||||
msgstr "D, d. M Y - g:i A"
|
||||
|
||||
#: mod/message.php:582
|
||||
#, php-format
|
||||
msgid "%d message"
|
||||
msgid_plural "%d messages"
|
||||
msgstr[0] "%d Nachricht"
|
||||
msgstr[1] "%d Nachrichten"
|
||||
|
||||
#: mod/mood.php:138
|
||||
msgid "Mood"
|
||||
msgstr "Stimmung"
|
||||
|
||||
#: mod/mood.php:138
|
||||
#: mod/mood.php:139
|
||||
msgid "Set your current mood and tell your friends"
|
||||
msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten"
|
||||
|
||||
#: mod/network.php:563
|
||||
#: mod/network.php:195 mod/search.php:31
|
||||
msgid "Remove term"
|
||||
msgstr "Begriff entfernen"
|
||||
|
||||
#: mod/network.php:569
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Warning: This group contains %s member from a network that doesn't allow non"
|
||||
|
|
@ -7171,1749 +6566,2162 @@ msgid_plural ""
|
|||
msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht öffentlichen Beiträge empfangen kann."
|
||||
msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können."
|
||||
|
||||
#: mod/network.php:566
|
||||
#: mod/network.php:572
|
||||
msgid "Messages in this group won't be send to these receivers."
|
||||
msgstr "Beiträge in dieser Gruppe werden deshalb nicht an diese Personen zugestellt werden."
|
||||
|
||||
#: mod/network.php:634
|
||||
#: mod/network.php:640
|
||||
msgid "No such group"
|
||||
msgstr "Es gibt keine solche Gruppe"
|
||||
|
||||
#: mod/network.php:659
|
||||
#: mod/network.php:665
|
||||
#, php-format
|
||||
msgid "Group: %s"
|
||||
msgstr "Gruppe: %s"
|
||||
|
||||
#: mod/network.php:686
|
||||
#: mod/network.php:692
|
||||
msgid "Private messages to this person are at risk of public disclosure."
|
||||
msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."
|
||||
|
||||
#: mod/network.php:690
|
||||
#: mod/network.php:696
|
||||
msgid "Invalid contact."
|
||||
msgstr "Ungültiger Kontakt."
|
||||
|
||||
#: mod/network.php:895
|
||||
#: mod/network.php:901
|
||||
msgid "Commented Order"
|
||||
msgstr "Neueste Kommentare"
|
||||
|
||||
#: mod/network.php:898
|
||||
#: mod/network.php:904
|
||||
msgid "Sort by Comment Date"
|
||||
msgstr "Nach Kommentardatum sortieren"
|
||||
|
||||
#: mod/network.php:903
|
||||
#: mod/network.php:909
|
||||
msgid "Posted Order"
|
||||
msgstr "Neueste Beiträge"
|
||||
|
||||
#: mod/network.php:906
|
||||
#: mod/network.php:912
|
||||
msgid "Sort by Post Date"
|
||||
msgstr "Nach Beitragsdatum sortieren"
|
||||
|
||||
#: mod/network.php:917
|
||||
#: mod/network.php:920 mod/profiles.php:699
|
||||
#: src/Core/NotificationsManager.php:190
|
||||
msgid "Personal"
|
||||
msgstr "Persönlich"
|
||||
|
||||
#: mod/network.php:923
|
||||
msgid "Posts that mention or involve you"
|
||||
msgstr "Beiträge, in denen es um Dich geht"
|
||||
|
||||
#: mod/network.php:925
|
||||
#: mod/network.php:931
|
||||
msgid "New"
|
||||
msgstr "Neue"
|
||||
|
||||
#: mod/network.php:928
|
||||
#: mod/network.php:934
|
||||
msgid "Activity Stream - by date"
|
||||
msgstr "Aktivitäten-Stream - nach Datum"
|
||||
|
||||
#: mod/network.php:936
|
||||
#: mod/network.php:942
|
||||
msgid "Shared Links"
|
||||
msgstr "Geteilte Links"
|
||||
|
||||
#: mod/network.php:939
|
||||
#: mod/network.php:945
|
||||
msgid "Interesting Links"
|
||||
msgstr "Interessante Links"
|
||||
|
||||
#: mod/network.php:947
|
||||
#: mod/network.php:953
|
||||
msgid "Starred"
|
||||
msgstr "Markierte"
|
||||
|
||||
#: mod/network.php:950
|
||||
#: mod/network.php:956
|
||||
msgid "Favourite Posts"
|
||||
msgstr "Favorisierte Beiträge"
|
||||
|
||||
#: mod/ostatus_subscribe.php:17
|
||||
#: mod/newmember.php:8
|
||||
msgid "Welcome to Friendica"
|
||||
msgstr "Willkommen bei Friendica"
|
||||
|
||||
#: mod/newmember.php:9
|
||||
msgid "New Member Checklist"
|
||||
msgstr "Checkliste für neue Mitglieder"
|
||||
|
||||
#: mod/newmember.php:11
|
||||
msgid ""
|
||||
"We would like to offer some tips and links to help make your experience "
|
||||
"enjoyable. Click any item to visit the relevant page. A link to this page "
|
||||
"will be visible from your home page for two weeks after your initial "
|
||||
"registration and then will quietly disappear."
|
||||
msgstr "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."
|
||||
|
||||
#: mod/newmember.php:12
|
||||
msgid "Getting Started"
|
||||
msgstr "Einstieg"
|
||||
|
||||
#: mod/newmember.php:14
|
||||
msgid "Friendica Walk-Through"
|
||||
msgstr "Friendica Rundgang"
|
||||
|
||||
#: mod/newmember.php:14
|
||||
msgid ""
|
||||
"On your <em>Quick Start</em> page - find a brief introduction to your "
|
||||
"profile and network tabs, make some new connections, and find some groups to"
|
||||
" join."
|
||||
msgstr "Auf der <em>Quick Start</em> Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst."
|
||||
|
||||
#: mod/newmember.php:18
|
||||
msgid "Go to Your Settings"
|
||||
msgstr "Gehe zu deinen Einstellungen"
|
||||
|
||||
#: mod/newmember.php:18
|
||||
msgid ""
|
||||
"On your <em>Settings</em> page - change your initial password. Also make a "
|
||||
"note of your Identity Address. This looks just like an email address - and "
|
||||
"will be useful in making friends on the free social web."
|
||||
msgstr "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Kontakte mit anderen im Friendica Netzwerk zu knüpfen.."
|
||||
|
||||
#: mod/newmember.php:19
|
||||
msgid ""
|
||||
"Review the other settings, particularly the privacy settings. An unpublished"
|
||||
" directory listing is like having an unlisted phone number. In general, you "
|
||||
"should probably publish your listing - unless all of your friends and "
|
||||
"potential friends know exactly how to find you."
|
||||
msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Kontakte und potentiellen Kontakte wissen genau, wie sie Dich finden können."
|
||||
|
||||
#: mod/newmember.php:23 mod/profile_photo.php:259 mod/profiles.php:703
|
||||
msgid "Upload Profile Photo"
|
||||
msgstr "Profilbild hochladen"
|
||||
|
||||
#: mod/newmember.php:23
|
||||
msgid ""
|
||||
"Upload a profile photo if you have not done so already. Studies have shown "
|
||||
"that people with real photos of themselves are ten times more likely to make"
|
||||
" friends than people who do not."
|
||||
msgstr "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Kontakte zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust."
|
||||
|
||||
#: mod/newmember.php:24
|
||||
msgid "Edit Your Profile"
|
||||
msgstr "Editiere dein Profil"
|
||||
|
||||
#: mod/newmember.php:24
|
||||
msgid ""
|
||||
"Edit your <strong>default</strong> profile to your liking. Review the "
|
||||
"settings for hiding your list of friends and hiding the profile from unknown"
|
||||
" visitors."
|
||||
msgstr "Editiere Dein <strong>Standard</strong> Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Kontaktliste vor unbekannten Betrachtern des Profils."
|
||||
|
||||
#: mod/newmember.php:25
|
||||
msgid "Profile Keywords"
|
||||
msgstr "Profil Schlüsselbegriffe"
|
||||
|
||||
#: mod/newmember.php:25
|
||||
msgid ""
|
||||
"Set some public keywords for your default profile which describe your "
|
||||
"interests. We may be able to find other people with similar interests and "
|
||||
"suggest friendships."
|
||||
msgstr "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen."
|
||||
|
||||
#: mod/newmember.php:27
|
||||
msgid "Connecting"
|
||||
msgstr "Verbindungen knüpfen"
|
||||
|
||||
#: mod/newmember.php:33
|
||||
msgid "Importing Emails"
|
||||
msgstr "Emails Importieren"
|
||||
|
||||
#: mod/newmember.php:33
|
||||
msgid ""
|
||||
"Enter your email access information on your Connector Settings page if you "
|
||||
"wish to import and interact with friends or mailing lists from your email "
|
||||
"INBOX"
|
||||
msgstr "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Kontakten und Mailinglisten interagieren willst."
|
||||
|
||||
#: mod/newmember.php:36
|
||||
msgid "Go to Your Contacts Page"
|
||||
msgstr "Gehe zu deiner Kontakt-Seite"
|
||||
|
||||
#: mod/newmember.php:36
|
||||
msgid ""
|
||||
"Your Contacts page is your gateway to managing friendships and connecting "
|
||||
"with friends on other networks. Typically you enter their address or site "
|
||||
"URL in the <em>Add New Contact</em> dialog."
|
||||
msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Personen in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein."
|
||||
|
||||
#: mod/newmember.php:37
|
||||
msgid "Go to Your Site's Directory"
|
||||
msgstr "Gehe zum Verzeichnis Deiner Friendica Instanz"
|
||||
|
||||
#: mod/newmember.php:37
|
||||
msgid ""
|
||||
"The Directory page lets you find other people in this network or other "
|
||||
"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
|
||||
"their profile page. Provide your own Identity Address if requested."
|
||||
msgstr "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst."
|
||||
|
||||
#: mod/newmember.php:38
|
||||
msgid "Finding New People"
|
||||
msgstr "Neue Leute kennenlernen"
|
||||
|
||||
#: mod/newmember.php:38
|
||||
msgid ""
|
||||
"On the side panel of the Contacts page are several tools to find new "
|
||||
"friends. We can match people by interest, look up people by name or "
|
||||
"interest, and provide suggestions based on network relationships. On a brand"
|
||||
" new site, friend suggestions will usually begin to be populated within 24 "
|
||||
"hours."
|
||||
msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
|
||||
|
||||
#: mod/newmember.php:42
|
||||
msgid "Group Your Contacts"
|
||||
msgstr "Gruppiere deine Kontakte"
|
||||
|
||||
#: mod/newmember.php:42
|
||||
msgid ""
|
||||
"Once you have made some friends, organize them into private conversation "
|
||||
"groups from the sidebar of your Contacts page and then you can interact with"
|
||||
" each group privately on your Network page."
|
||||
msgstr "Sobald Du einige Kontakte gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."
|
||||
|
||||
#: mod/newmember.php:45
|
||||
msgid "Why Aren't My Posts Public?"
|
||||
msgstr "Warum sind meine Beiträge nicht öffentlich?"
|
||||
|
||||
#: mod/newmember.php:45
|
||||
msgid ""
|
||||
"Friendica respects your privacy. By default, your posts will only show up to"
|
||||
" people you've added as friends. For more information, see the help section "
|
||||
"from the link above."
|
||||
msgstr "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."
|
||||
|
||||
#: mod/newmember.php:49
|
||||
msgid "Getting Help"
|
||||
msgstr "Hilfe bekommen"
|
||||
|
||||
#: mod/newmember.php:51
|
||||
msgid "Go to the Help Section"
|
||||
msgstr "Zum Hilfe Abschnitt gehen"
|
||||
|
||||
#: mod/newmember.php:51
|
||||
msgid ""
|
||||
"Our <strong>help</strong> pages may be consulted for detail on other program"
|
||||
" features and resources."
|
||||
msgstr "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
|
||||
|
||||
#: mod/nogroup.php:68
|
||||
msgid "Contacts who are not members of a group"
|
||||
msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
|
||||
|
||||
#: mod/notifications.php:39
|
||||
msgid "Invalid request identifier."
|
||||
msgstr "Invalid request identifier."
|
||||
|
||||
#: mod/notifications.php:48 mod/notifications.php:184
|
||||
#: mod/notifications.php:231
|
||||
msgid "Discard"
|
||||
msgstr "Verwerfen"
|
||||
|
||||
#: mod/notifications.php:109
|
||||
msgid "Network Notifications"
|
||||
msgstr "Netzwerk Benachrichtigungen"
|
||||
|
||||
#: mod/notifications.php:115 mod/notify.php:73
|
||||
msgid "System Notifications"
|
||||
msgstr "Systembenachrichtigungen"
|
||||
|
||||
#: mod/notifications.php:121
|
||||
msgid "Personal Notifications"
|
||||
msgstr "Persönliche Benachrichtigungen"
|
||||
|
||||
#: mod/notifications.php:127
|
||||
msgid "Home Notifications"
|
||||
msgstr "Pinnwand Benachrichtigungen"
|
||||
|
||||
#: mod/notifications.php:156
|
||||
msgid "Show Ignored Requests"
|
||||
msgstr "Zeige ignorierte Anfragen"
|
||||
|
||||
#: mod/notifications.php:156
|
||||
msgid "Hide Ignored Requests"
|
||||
msgstr "Verberge ignorierte Anfragen"
|
||||
|
||||
#: mod/notifications.php:168 mod/notifications.php:238
|
||||
msgid "Notification type: "
|
||||
msgstr "Benachrichtigungstyp: "
|
||||
|
||||
#: mod/notifications.php:171
|
||||
#, php-format
|
||||
msgid "suggested by %s"
|
||||
msgstr "vorgeschlagen von %s"
|
||||
|
||||
#: mod/notifications.php:177 mod/notifications.php:256
|
||||
msgid "Post a new friend activity"
|
||||
msgstr "Neue-Kontakt Nachricht senden"
|
||||
|
||||
#: mod/notifications.php:177 mod/notifications.php:256
|
||||
msgid "if applicable"
|
||||
msgstr "falls anwendbar"
|
||||
|
||||
#: mod/notifications.php:199
|
||||
msgid "Claims to be known to you: "
|
||||
msgstr "Behauptet Dich zu kennen: "
|
||||
|
||||
#: mod/notifications.php:200
|
||||
msgid "yes"
|
||||
msgstr "ja"
|
||||
|
||||
#: mod/notifications.php:200
|
||||
msgid "no"
|
||||
msgstr "nein"
|
||||
|
||||
#: mod/notifications.php:201 mod/notifications.php:206
|
||||
msgid "Shall your connection be bidirectional or not?"
|
||||
msgstr "Soll die Verbindung beidseitig sein oder nicht?"
|
||||
|
||||
#: mod/notifications.php:202 mod/notifications.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
|
||||
"also receive updates from them in your news feed."
|
||||
msgstr "Akzeptierst du %s als Kontakt, erlaubst du damit das Lesen deiner Beiträge und abonnierst selbst auch die Beiträge von %s."
|
||||
|
||||
#: mod/notifications.php:203
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
|
||||
" will not receive updates from them in your news feed."
|
||||
msgstr "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."
|
||||
|
||||
#: mod/notifications.php:208
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Accepting %s as a sharer allows them to subscribe to your posts, but you "
|
||||
"will not receive updates from them in your news feed."
|
||||
msgstr "Wenn du %s als Teilenden akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."
|
||||
|
||||
#: mod/notifications.php:219
|
||||
msgid "Friend"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#: mod/notifications.php:220
|
||||
msgid "Sharer"
|
||||
msgstr "Teilenden"
|
||||
|
||||
#: mod/notifications.php:220
|
||||
msgid "Subscriber"
|
||||
msgstr "Abonnent"
|
||||
|
||||
#: mod/notifications.php:276
|
||||
msgid "No introductions."
|
||||
msgstr "Keine Kontaktanfragen."
|
||||
|
||||
#: mod/notifications.php:317
|
||||
msgid "Show unread"
|
||||
msgstr "Ungelesene anzeigen"
|
||||
|
||||
#: mod/notifications.php:317
|
||||
msgid "Show all"
|
||||
msgstr "Alle anzeigen"
|
||||
|
||||
#: mod/notifications.php:323
|
||||
#, php-format
|
||||
msgid "No more %s notifications."
|
||||
msgstr "Keine weiteren %s Benachrichtigungen"
|
||||
|
||||
#: mod/notify.php:69
|
||||
msgid "No more system notifications."
|
||||
msgstr "Keine weiteren Systembenachrichtigungen."
|
||||
|
||||
#: mod/openid.php:27
|
||||
msgid "OpenID protocol error. No ID returned."
|
||||
msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
|
||||
|
||||
#: mod/openid.php:63
|
||||
msgid ""
|
||||
"Account not found and OpenID registration is not permitted on this site."
|
||||
msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."
|
||||
|
||||
#: mod/ostatus_subscribe.php:18
|
||||
msgid "Subscribing to OStatus contacts"
|
||||
msgstr "OStatus Kontakten folgen"
|
||||
|
||||
#: mod/ostatus_subscribe.php:28
|
||||
#: mod/ostatus_subscribe.php:29
|
||||
msgid "No contact provided."
|
||||
msgstr "Keine Kontakte gefunden."
|
||||
|
||||
#: mod/ostatus_subscribe.php:34
|
||||
#: mod/ostatus_subscribe.php:35
|
||||
msgid "Couldn't fetch information for contact."
|
||||
msgstr "Konnte die Kontaktinformationen nicht einholen."
|
||||
|
||||
#: mod/ostatus_subscribe.php:43
|
||||
#: mod/ostatus_subscribe.php:44
|
||||
msgid "Couldn't fetch friends for contact."
|
||||
msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen."
|
||||
|
||||
#: mod/ostatus_subscribe.php:71
|
||||
#: mod/ostatus_subscribe.php:58 mod/repair_ostatus.php:46
|
||||
msgid "Done"
|
||||
msgstr "Erledigt"
|
||||
|
||||
#: mod/ostatus_subscribe.php:72
|
||||
msgid "success"
|
||||
msgstr "Erfolg"
|
||||
|
||||
#: mod/ostatus_subscribe.php:73
|
||||
#: mod/ostatus_subscribe.php:74
|
||||
msgid "failed"
|
||||
msgstr "Fehlgeschlagen"
|
||||
|
||||
#: mod/ostatus_subscribe.php:76 object/Item.php:262
|
||||
#: mod/ostatus_subscribe.php:77 src/Object/Item.php:276
|
||||
msgid "ignored"
|
||||
msgstr "Ignoriert"
|
||||
|
||||
#: mod/photos.php:98 mod/photos.php:1877
|
||||
#: mod/ostatus_subscribe.php:82 mod/repair_ostatus.php:52
|
||||
msgid "Keep this window open until done."
|
||||
msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."
|
||||
|
||||
#: mod/p.php:13
|
||||
msgid "Not Extended"
|
||||
msgstr "Nicht erweitert."
|
||||
|
||||
#: mod/photos.php:100 mod/photos.php:1841
|
||||
msgid "Recent Photos"
|
||||
msgstr "Neueste Fotos"
|
||||
|
||||
#: mod/photos.php:101 mod/photos.php:1305 mod/photos.php:1879
|
||||
#: mod/photos.php:103 mod/photos.php:1293 mod/photos.php:1843
|
||||
msgid "Upload New Photos"
|
||||
msgstr "Neue Fotos hochladen"
|
||||
|
||||
#: mod/photos.php:116 mod/settings.php:36
|
||||
#: mod/photos.php:118 mod/settings.php:39
|
||||
msgid "everybody"
|
||||
msgstr "jeder"
|
||||
|
||||
#: mod/photos.php:180
|
||||
#: mod/photos.php:182
|
||||
msgid "Contact information unavailable"
|
||||
msgstr "Kontaktinformationen nicht verfügbar"
|
||||
|
||||
#: mod/photos.php:201
|
||||
#: mod/photos.php:203
|
||||
msgid "Album not found."
|
||||
msgstr "Album nicht gefunden."
|
||||
|
||||
#: mod/photos.php:234 mod/photos.php:246 mod/photos.php:1249
|
||||
#: mod/photos.php:236 mod/photos.php:248 mod/photos.php:1242
|
||||
msgid "Delete Album"
|
||||
msgstr "Album löschen"
|
||||
|
||||
#: mod/photos.php:244
|
||||
#: mod/photos.php:246
|
||||
msgid "Do you really want to delete this photo album and all its photos?"
|
||||
msgstr "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?"
|
||||
|
||||
#: mod/photos.php:327 mod/photos.php:338 mod/photos.php:1575
|
||||
#: mod/photos.php:329 mod/photos.php:340 mod/photos.php:1557
|
||||
msgid "Delete Photo"
|
||||
msgstr "Foto löschen"
|
||||
|
||||
#: mod/photos.php:336
|
||||
#: mod/photos.php:338
|
||||
msgid "Do you really want to delete this photo?"
|
||||
msgstr "Möchtest Du wirklich dieses Foto löschen?"
|
||||
|
||||
#: mod/photos.php:717
|
||||
#: mod/photos.php:719
|
||||
#, php-format
|
||||
msgid "%1$s was tagged in %2$s by %3$s"
|
||||
msgstr "%1$s wurde von %3$s in %2$s getaggt"
|
||||
|
||||
#: mod/photos.php:717
|
||||
#: mod/photos.php:719
|
||||
msgid "a photo"
|
||||
msgstr "einem Foto"
|
||||
|
||||
#: mod/photos.php:817 mod/profile_photo.php:157 mod/wall_upload.php:182
|
||||
#: mod/photos.php:819 mod/profile_photo.php:159 mod/wall_upload.php:183
|
||||
#, php-format
|
||||
msgid "Image exceeds size limit of %s"
|
||||
msgstr "Bildgröße überschreitet das Limit von %s"
|
||||
|
||||
#: mod/photos.php:825
|
||||
#: mod/photos.php:827
|
||||
msgid "Image file is empty."
|
||||
msgstr "Bilddatei ist leer."
|
||||
|
||||
#: mod/photos.php:840 mod/profile_photo.php:166 mod/wall_upload.php:196
|
||||
#: mod/photos.php:842 mod/profile_photo.php:168 mod/wall_upload.php:197
|
||||
msgid "Unable to process image."
|
||||
msgstr "Konnte das Bild nicht bearbeiten."
|
||||
|
||||
#: mod/photos.php:869 mod/profile_photo.php:316 mod/wall_upload.php:235
|
||||
#: mod/photos.php:871 mod/profile_photo.php:318 mod/wall_upload.php:236
|
||||
msgid "Image upload failed."
|
||||
msgstr "Hochladen des Bildes gescheitert."
|
||||
|
||||
#: mod/photos.php:974
|
||||
#: mod/photos.php:976
|
||||
msgid "No photos selected"
|
||||
msgstr "Keine Bilder ausgewählt"
|
||||
|
||||
#: mod/photos.php:1077 mod/videos.php:313
|
||||
#: mod/photos.php:1079 mod/videos.php:316
|
||||
msgid "Access to this item is restricted."
|
||||
msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
|
||||
|
||||
#: mod/photos.php:1165
|
||||
#: mod/photos.php:1162
|
||||
msgid "Upload Photos"
|
||||
msgstr "Bilder hochladen"
|
||||
|
||||
#: mod/photos.php:1169 mod/photos.php:1244
|
||||
#: mod/photos.php:1166 mod/photos.php:1237
|
||||
msgid "New album name: "
|
||||
msgstr "Name des neuen Albums: "
|
||||
|
||||
#: mod/photos.php:1170
|
||||
#: mod/photos.php:1167
|
||||
msgid "or existing album name: "
|
||||
msgstr "oder existierender Albumname: "
|
||||
|
||||
#: mod/photos.php:1171
|
||||
#: mod/photos.php:1168
|
||||
msgid "Do not show a status post for this upload"
|
||||
msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
|
||||
|
||||
#: mod/photos.php:1182 mod/photos.php:1579 mod/settings.php:1294
|
||||
#: mod/photos.php:1179 mod/photos.php:1561 mod/settings.php:1291
|
||||
msgid "Show to Groups"
|
||||
msgstr "Zeige den Gruppen"
|
||||
|
||||
#: mod/photos.php:1183 mod/photos.php:1580 mod/settings.php:1295
|
||||
#: mod/photos.php:1180 mod/photos.php:1562 mod/settings.php:1292
|
||||
msgid "Show to Contacts"
|
||||
msgstr "Zeige den Kontakten"
|
||||
|
||||
#: mod/photos.php:1184
|
||||
#: mod/photos.php:1181
|
||||
msgid "Private Photo"
|
||||
msgstr "Privates Foto"
|
||||
|
||||
#: mod/photos.php:1185
|
||||
#: mod/photos.php:1182
|
||||
msgid "Public Photo"
|
||||
msgstr "Öffentliches Foto"
|
||||
|
||||
#: mod/photos.php:1255
|
||||
#: mod/photos.php:1248
|
||||
msgid "Edit Album"
|
||||
msgstr "Album bearbeiten"
|
||||
|
||||
#: mod/photos.php:1260
|
||||
#: mod/photos.php:1253
|
||||
msgid "Show Newest First"
|
||||
msgstr "Zeige neueste zuerst"
|
||||
|
||||
#: mod/photos.php:1262
|
||||
#: mod/photos.php:1255
|
||||
msgid "Show Oldest First"
|
||||
msgstr "Zeige älteste zuerst"
|
||||
|
||||
#: mod/photos.php:1291 mod/photos.php:1862
|
||||
#: mod/photos.php:1279 mod/photos.php:1826
|
||||
msgid "View Photo"
|
||||
msgstr "Foto betrachten"
|
||||
|
||||
#: mod/photos.php:1336
|
||||
#: mod/photos.php:1324
|
||||
msgid "Permission denied. Access to this item may be restricted."
|
||||
msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
|
||||
|
||||
#: mod/photos.php:1338
|
||||
#: mod/photos.php:1326
|
||||
msgid "Photo not available"
|
||||
msgstr "Foto nicht verfügbar"
|
||||
|
||||
#: mod/photos.php:1399
|
||||
#: mod/photos.php:1387
|
||||
msgid "View photo"
|
||||
msgstr "Fotos ansehen"
|
||||
|
||||
#: mod/photos.php:1399
|
||||
#: mod/photos.php:1387
|
||||
msgid "Edit photo"
|
||||
msgstr "Foto bearbeiten"
|
||||
|
||||
#: mod/photos.php:1400
|
||||
#: mod/photos.php:1388
|
||||
msgid "Use as profile photo"
|
||||
msgstr "Als Profilbild verwenden"
|
||||
|
||||
#: mod/photos.php:1406 object/Item.php:127
|
||||
#: mod/photos.php:1394 src/Object/Item.php:144
|
||||
msgid "Private Message"
|
||||
msgstr "Private Nachricht"
|
||||
|
||||
#: mod/photos.php:1425
|
||||
#: mod/photos.php:1413
|
||||
msgid "View Full Size"
|
||||
msgstr "Betrachte Originalgröße"
|
||||
|
||||
#: mod/photos.php:1515
|
||||
#: mod/photos.php:1503
|
||||
msgid "Tags: "
|
||||
msgstr "Tags: "
|
||||
|
||||
#: mod/photos.php:1518
|
||||
#: mod/photos.php:1506
|
||||
msgid "[Remove any tag]"
|
||||
msgstr "[Tag entfernen]"
|
||||
|
||||
#: mod/photos.php:1561
|
||||
#: mod/photos.php:1543
|
||||
msgid "New album name"
|
||||
msgstr "Name des neuen Albums"
|
||||
|
||||
#: mod/photos.php:1562
|
||||
#: mod/photos.php:1544
|
||||
msgid "Caption"
|
||||
msgstr "Bildunterschrift"
|
||||
|
||||
#: mod/photos.php:1563
|
||||
#: mod/photos.php:1545
|
||||
msgid "Add a Tag"
|
||||
msgstr "Tag hinzufügen"
|
||||
|
||||
#: mod/photos.php:1563
|
||||
#: mod/photos.php:1545
|
||||
msgid ""
|
||||
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
||||
msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
||||
|
||||
#: mod/photos.php:1564
|
||||
#: mod/photos.php:1546
|
||||
msgid "Do not rotate"
|
||||
msgstr "Nicht rotieren"
|
||||
|
||||
#: mod/photos.php:1565
|
||||
#: mod/photos.php:1547
|
||||
msgid "Rotate CW (right)"
|
||||
msgstr "Drehen US (rechts)"
|
||||
|
||||
#: mod/photos.php:1566
|
||||
#: mod/photos.php:1548
|
||||
msgid "Rotate CCW (left)"
|
||||
msgstr "Drehen EUS (links)"
|
||||
|
||||
#: mod/photos.php:1581
|
||||
#: mod/photos.php:1563
|
||||
msgid "Private photo"
|
||||
msgstr "Privates Foto"
|
||||
|
||||
#: mod/photos.php:1582
|
||||
#: mod/photos.php:1564
|
||||
msgid "Public photo"
|
||||
msgstr "Öffentliches Foto"
|
||||
|
||||
#: mod/photos.php:1602 object/Item.php:280
|
||||
#: mod/photos.php:1584 src/Object/Item.php:294
|
||||
msgid "I like this (toggle)"
|
||||
msgstr "Ich mag das (toggle)"
|
||||
|
||||
#: mod/photos.php:1603 object/Item.php:281
|
||||
#: mod/photos.php:1585 src/Object/Item.php:295
|
||||
msgid "I don't like this (toggle)"
|
||||
msgstr "Ich mag das nicht (toggle)"
|
||||
|
||||
#: mod/photos.php:1620 mod/photos.php:1662 mod/photos.php:1742
|
||||
#: object/Item.php:699
|
||||
#: mod/photos.php:1602 mod/photos.php:1644 mod/photos.php:1718
|
||||
#: src/Object/Item.php:784
|
||||
msgid "This is you"
|
||||
msgstr "Das bist Du"
|
||||
|
||||
#: mod/photos.php:1622 mod/photos.php:1664 mod/photos.php:1744
|
||||
#: object/Item.php:386 object/Item.php:701
|
||||
#: mod/photos.php:1604 mod/photos.php:1646 mod/photos.php:1720
|
||||
#: src/Object/Item.php:391 src/Object/Item.php:786
|
||||
msgid "Comment"
|
||||
msgstr "Kommentar"
|
||||
|
||||
#: mod/photos.php:1791
|
||||
#: mod/photos.php:1760
|
||||
msgid "Map"
|
||||
msgstr "Karte"
|
||||
|
||||
#: mod/photos.php:1868 mod/videos.php:397
|
||||
#: mod/photos.php:1832 mod/videos.php:394
|
||||
msgid "View Album"
|
||||
msgstr "Album betrachten"
|
||||
|
||||
#: mod/ping.php:276
|
||||
#: mod/ping.php:287
|
||||
msgid "{0} wants to be your friend"
|
||||
msgstr "{0} möchte mit Dir in Kontakt treten"
|
||||
|
||||
#: mod/ping.php:291
|
||||
#: mod/ping.php:302
|
||||
msgid "{0} sent you a message"
|
||||
msgstr "{0} schickte Dir eine Nachricht"
|
||||
|
||||
#: mod/ping.php:306
|
||||
#: mod/ping.php:317
|
||||
msgid "{0} requested registration"
|
||||
msgstr "{0} möchte sich registrieren"
|
||||
|
||||
#: mod/poke.php:199
|
||||
#: mod/poke.php:200
|
||||
msgid "Poke/Prod"
|
||||
msgstr "Anstupsen"
|
||||
|
||||
#: mod/poke.php:200
|
||||
#: mod/poke.php:201
|
||||
msgid "poke, prod or do other things to somebody"
|
||||
msgstr "Stupse Leute an oder mache anderes mit ihnen"
|
||||
|
||||
#: mod/poke.php:201
|
||||
#: mod/poke.php:202
|
||||
msgid "Recipient"
|
||||
msgstr "Empfänger"
|
||||
|
||||
#: mod/poke.php:202
|
||||
#: mod/poke.php:203
|
||||
msgid "Choose what you wish to do to recipient"
|
||||
msgstr "Was willst Du mit dem Empfänger machen:"
|
||||
|
||||
#: mod/poke.php:205
|
||||
#: mod/poke.php:206
|
||||
msgid "Make this post private"
|
||||
msgstr "Diesen Beitrag privat machen"
|
||||
|
||||
#: mod/profile_photo.php:46
|
||||
#: mod/profile.php:182
|
||||
msgid "Tips for New Members"
|
||||
msgstr "Tipps für neue Nutzer"
|
||||
|
||||
#: mod/profile_photo.php:48
|
||||
msgid "Image uploaded but image cropping failed."
|
||||
msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
|
||||
|
||||
#: mod/profile_photo.php:79 mod/profile_photo.php:87 mod/profile_photo.php:95
|
||||
#: mod/profile_photo.php:324
|
||||
#: mod/profile_photo.php:81 mod/profile_photo.php:89 mod/profile_photo.php:97
|
||||
#: mod/profile_photo.php:326
|
||||
#, php-format
|
||||
msgid "Image size reduction [%s] failed."
|
||||
msgstr "Verkleinern der Bildgröße von [%s] scheiterte."
|
||||
|
||||
#: mod/profile_photo.php:129
|
||||
#: mod/profile_photo.php:131
|
||||
msgid ""
|
||||
"Shift-reload the page or clear browser cache if the new photo does not "
|
||||
"display immediately."
|
||||
msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."
|
||||
|
||||
#: mod/profile_photo.php:138
|
||||
#: mod/profile_photo.php:140
|
||||
msgid "Unable to process image"
|
||||
msgstr "Bild konnte nicht verarbeitet werden"
|
||||
|
||||
#: mod/profile_photo.php:255
|
||||
#: mod/profile_photo.php:257
|
||||
msgid "Upload File:"
|
||||
msgstr "Datei hochladen:"
|
||||
|
||||
#: mod/profile_photo.php:256
|
||||
#: mod/profile_photo.php:258
|
||||
msgid "Select a profile:"
|
||||
msgstr "Profil auswählen:"
|
||||
|
||||
#: mod/profile_photo.php:258
|
||||
#: mod/profile_photo.php:260
|
||||
msgid "Upload"
|
||||
msgstr "Hochladen"
|
||||
|
||||
#: mod/profile_photo.php:261
|
||||
#: mod/profile_photo.php:263
|
||||
msgid "or"
|
||||
msgstr "oder"
|
||||
|
||||
#: mod/profile_photo.php:261
|
||||
#: mod/profile_photo.php:263
|
||||
msgid "skip this step"
|
||||
msgstr "diesen Schritt überspringen"
|
||||
|
||||
#: mod/profile_photo.php:261
|
||||
#: mod/profile_photo.php:263
|
||||
msgid "select a photo from your photo albums"
|
||||
msgstr "wähle ein Foto aus deinen Fotoalben"
|
||||
|
||||
#: mod/profile_photo.php:275
|
||||
#: mod/profile_photo.php:277
|
||||
msgid "Crop Image"
|
||||
msgstr "Bild zurechtschneiden"
|
||||
|
||||
#: mod/profile_photo.php:276
|
||||
#: mod/profile_photo.php:278
|
||||
msgid "Please adjust the image cropping for optimum viewing."
|
||||
msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
|
||||
|
||||
#: mod/profile_photo.php:278
|
||||
#: mod/profile_photo.php:280
|
||||
msgid "Done Editing"
|
||||
msgstr "Bearbeitung abgeschlossen"
|
||||
|
||||
#: mod/profile_photo.php:314
|
||||
#: mod/profile_photo.php:316
|
||||
msgid "Image uploaded successfully."
|
||||
msgstr "Bild erfolgreich hochgeladen."
|
||||
|
||||
#: mod/profiles.php:44
|
||||
#: mod/profiles.php:48
|
||||
msgid "Profile deleted."
|
||||
msgstr "Profil gelöscht."
|
||||
|
||||
#: mod/profiles.php:60 mod/profiles.php:96
|
||||
#: mod/profiles.php:64 mod/profiles.php:100
|
||||
msgid "Profile-"
|
||||
msgstr "Profil-"
|
||||
|
||||
#: mod/profiles.php:79 mod/profiles.php:118
|
||||
#: mod/profiles.php:83 mod/profiles.php:122
|
||||
msgid "New profile created."
|
||||
msgstr "Neues Profil angelegt."
|
||||
|
||||
#: mod/profiles.php:102
|
||||
#: mod/profiles.php:106
|
||||
msgid "Profile unavailable to clone."
|
||||
msgstr "Profil nicht zum Duplizieren verfügbar."
|
||||
|
||||
#: mod/profiles.php:192
|
||||
#: mod/profiles.php:196
|
||||
msgid "Profile Name is required."
|
||||
msgstr "Profilname ist erforderlich."
|
||||
|
||||
#: mod/profiles.php:332
|
||||
#: mod/profiles.php:336
|
||||
msgid "Marital Status"
|
||||
msgstr "Familienstand"
|
||||
|
||||
#: mod/profiles.php:336
|
||||
#: mod/profiles.php:340
|
||||
msgid "Romantic Partner"
|
||||
msgstr "Romanze"
|
||||
|
||||
#: mod/profiles.php:348
|
||||
#: mod/profiles.php:352
|
||||
msgid "Work/Employment"
|
||||
msgstr "Arbeit / Beschäftigung"
|
||||
|
||||
#: mod/profiles.php:351
|
||||
#: mod/profiles.php:355
|
||||
msgid "Religion"
|
||||
msgstr "Religion"
|
||||
|
||||
#: mod/profiles.php:355
|
||||
#: mod/profiles.php:359
|
||||
msgid "Political Views"
|
||||
msgstr "Politische Ansichten"
|
||||
|
||||
#: mod/profiles.php:359
|
||||
#: mod/profiles.php:363
|
||||
msgid "Gender"
|
||||
msgstr "Geschlecht"
|
||||
|
||||
#: mod/profiles.php:363
|
||||
#: mod/profiles.php:367
|
||||
msgid "Sexual Preference"
|
||||
msgstr "Sexuelle Vorlieben"
|
||||
|
||||
#: mod/profiles.php:367
|
||||
#: mod/profiles.php:371
|
||||
msgid "XMPP"
|
||||
msgstr "XMPP"
|
||||
|
||||
#: mod/profiles.php:371
|
||||
#: mod/profiles.php:375
|
||||
msgid "Homepage"
|
||||
msgstr "Webseite"
|
||||
|
||||
#: mod/profiles.php:375 mod/profiles.php:694
|
||||
#: mod/profiles.php:379 mod/profiles.php:698
|
||||
msgid "Interests"
|
||||
msgstr "Interessen"
|
||||
|
||||
#: mod/profiles.php:379
|
||||
#: mod/profiles.php:383
|
||||
msgid "Address"
|
||||
msgstr "Adresse"
|
||||
|
||||
#: mod/profiles.php:386 mod/profiles.php:690
|
||||
#: mod/profiles.php:390 mod/profiles.php:694
|
||||
msgid "Location"
|
||||
msgstr "Wohnort"
|
||||
|
||||
#: mod/profiles.php:471
|
||||
#: mod/profiles.php:475
|
||||
msgid "Profile updated."
|
||||
msgstr "Profil aktualisiert."
|
||||
|
||||
#: mod/profiles.php:563
|
||||
#: mod/profiles.php:567
|
||||
msgid " and "
|
||||
msgstr " und "
|
||||
|
||||
#: mod/profiles.php:572
|
||||
#: mod/profiles.php:576
|
||||
msgid "public profile"
|
||||
msgstr "öffentliches Profil"
|
||||
|
||||
#: mod/profiles.php:575
|
||||
#: mod/profiles.php:579
|
||||
#, php-format
|
||||
msgid "%1$s changed %2$s to “%3$s”"
|
||||
msgstr "%1$s hat %2$s geändert auf “%3$s”"
|
||||
|
||||
#: mod/profiles.php:576
|
||||
#: mod/profiles.php:580
|
||||
#, php-format
|
||||
msgid " - Visit %1$s's %2$s"
|
||||
msgstr " – %1$ss %2$s besuchen"
|
||||
|
||||
#: mod/profiles.php:578
|
||||
#: mod/profiles.php:582
|
||||
#, php-format
|
||||
msgid "%1$s has an updated %2$s, changing %3$s."
|
||||
msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s."
|
||||
|
||||
#: mod/profiles.php:636
|
||||
#: mod/profiles.php:640
|
||||
msgid "Hide contacts and friends:"
|
||||
msgstr "Kontakte und Freunde verbergen"
|
||||
|
||||
#: mod/profiles.php:641
|
||||
#: mod/profiles.php:645
|
||||
msgid "Hide your contact/friend list from viewers of this profile?"
|
||||
msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
|
||||
|
||||
#: mod/profiles.php:666
|
||||
#: mod/profiles.php:670
|
||||
msgid "Show more profile fields:"
|
||||
msgstr "Zeige mehr Profil-Felder:"
|
||||
|
||||
#: mod/profiles.php:678
|
||||
#: mod/profiles.php:682
|
||||
msgid "Profile Actions"
|
||||
msgstr "Profilaktionen"
|
||||
|
||||
#: mod/profiles.php:679
|
||||
#: mod/profiles.php:683
|
||||
msgid "Edit Profile Details"
|
||||
msgstr "Profil bearbeiten"
|
||||
|
||||
#: mod/profiles.php:681
|
||||
#: mod/profiles.php:685
|
||||
msgid "Change Profile Photo"
|
||||
msgstr "Profilbild ändern"
|
||||
|
||||
#: mod/profiles.php:682
|
||||
#: mod/profiles.php:686
|
||||
msgid "View this profile"
|
||||
msgstr "Dieses Profil anzeigen"
|
||||
|
||||
#: mod/profiles.php:684
|
||||
#: mod/profiles.php:688
|
||||
msgid "Create a new profile using these settings"
|
||||
msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
|
||||
|
||||
#: mod/profiles.php:685
|
||||
#: mod/profiles.php:689
|
||||
msgid "Clone this profile"
|
||||
msgstr "Dieses Profil duplizieren"
|
||||
|
||||
#: mod/profiles.php:686
|
||||
#: mod/profiles.php:690
|
||||
msgid "Delete this profile"
|
||||
msgstr "Dieses Profil löschen"
|
||||
|
||||
#: mod/profiles.php:688
|
||||
#: mod/profiles.php:692
|
||||
msgid "Basic information"
|
||||
msgstr "Grundinformationen"
|
||||
|
||||
#: mod/profiles.php:689
|
||||
#: mod/profiles.php:693
|
||||
msgid "Profile picture"
|
||||
msgstr "Profilbild"
|
||||
|
||||
#: mod/profiles.php:691
|
||||
#: mod/profiles.php:695
|
||||
msgid "Preferences"
|
||||
msgstr "Vorlieben"
|
||||
|
||||
#: mod/profiles.php:692
|
||||
#: mod/profiles.php:696
|
||||
msgid "Status information"
|
||||
msgstr "Status Informationen"
|
||||
|
||||
#: mod/profiles.php:693
|
||||
#: mod/profiles.php:697
|
||||
msgid "Additional information"
|
||||
msgstr "Zusätzliche Informationen"
|
||||
|
||||
#: mod/profiles.php:696
|
||||
#: mod/profiles.php:700
|
||||
msgid "Relation"
|
||||
msgstr "Beziehung"
|
||||
|
||||
#: mod/profiles.php:700
|
||||
#: mod/profiles.php:704
|
||||
msgid "Your Gender:"
|
||||
msgstr "Dein Geschlecht:"
|
||||
|
||||
#: mod/profiles.php:701
|
||||
#: mod/profiles.php:705
|
||||
msgid "<span class=\"heart\">♥</span> Marital Status:"
|
||||
msgstr "<span class=\"heart\">♥</span> Beziehungsstatus:"
|
||||
|
||||
#: mod/profiles.php:703
|
||||
#: mod/profiles.php:707
|
||||
msgid "Example: fishing photography software"
|
||||
msgstr "Beispiel: Fischen Fotografie Software"
|
||||
|
||||
#: mod/profiles.php:708
|
||||
#: mod/profiles.php:712
|
||||
msgid "Profile Name:"
|
||||
msgstr "Profilname:"
|
||||
|
||||
#: mod/profiles.php:710
|
||||
#: mod/profiles.php:714
|
||||
msgid ""
|
||||
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
|
||||
"be visible to anybody using the internet."
|
||||
msgstr "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein."
|
||||
|
||||
#: mod/profiles.php:711
|
||||
#: mod/profiles.php:715
|
||||
msgid "Your Full Name:"
|
||||
msgstr "Dein kompletter Name:"
|
||||
|
||||
#: mod/profiles.php:712
|
||||
#: mod/profiles.php:716
|
||||
msgid "Title/Description:"
|
||||
msgstr "Titel/Beschreibung:"
|
||||
|
||||
#: mod/profiles.php:715
|
||||
#: mod/profiles.php:719
|
||||
msgid "Street Address:"
|
||||
msgstr "Adresse:"
|
||||
|
||||
#: mod/profiles.php:716
|
||||
#: mod/profiles.php:720
|
||||
msgid "Locality/City:"
|
||||
msgstr "Wohnort:"
|
||||
|
||||
#: mod/profiles.php:717
|
||||
#: mod/profiles.php:721
|
||||
msgid "Region/State:"
|
||||
msgstr "Region/Bundesstaat:"
|
||||
|
||||
#: mod/profiles.php:718
|
||||
#: mod/profiles.php:722
|
||||
msgid "Postal/Zip Code:"
|
||||
msgstr "Postleitzahl:"
|
||||
|
||||
#: mod/profiles.php:719
|
||||
#: mod/profiles.php:723
|
||||
msgid "Country:"
|
||||
msgstr "Land:"
|
||||
|
||||
#: mod/profiles.php:723
|
||||
#: mod/profiles.php:727
|
||||
msgid "Who: (if applicable)"
|
||||
msgstr "Wer: (falls anwendbar)"
|
||||
|
||||
#: mod/profiles.php:723
|
||||
#: mod/profiles.php:727
|
||||
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
|
||||
msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
|
||||
|
||||
#: mod/profiles.php:724
|
||||
#: mod/profiles.php:728
|
||||
msgid "Since [date]:"
|
||||
msgstr "Seit [Datum]:"
|
||||
|
||||
#: mod/profiles.php:726
|
||||
#: mod/profiles.php:730
|
||||
msgid "Tell us about yourself..."
|
||||
msgstr "Erzähle uns ein bisschen von Dir …"
|
||||
|
||||
#: mod/profiles.php:727
|
||||
#: mod/profiles.php:731
|
||||
msgid "XMPP (Jabber) address:"
|
||||
msgstr "XMPP (Jabber) Adresse"
|
||||
|
||||
#: mod/profiles.php:727
|
||||
#: mod/profiles.php:731
|
||||
msgid ""
|
||||
"The XMPP address will be propagated to your contacts so that they can follow"
|
||||
" you."
|
||||
msgstr "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch über XMPP mit dir in Kontakt treten können."
|
||||
|
||||
#: mod/profiles.php:728
|
||||
#: mod/profiles.php:732
|
||||
msgid "Homepage URL:"
|
||||
msgstr "Adresse der Homepage:"
|
||||
|
||||
#: mod/profiles.php:731
|
||||
#: mod/profiles.php:735
|
||||
msgid "Religious Views:"
|
||||
msgstr "Religiöse Ansichten:"
|
||||
|
||||
#: mod/profiles.php:732
|
||||
#: mod/profiles.php:736
|
||||
msgid "Public Keywords:"
|
||||
msgstr "Öffentliche Schlüsselwörter:"
|
||||
|
||||
#: mod/profiles.php:732
|
||||
#: mod/profiles.php:736
|
||||
msgid "(Used for suggesting potential friends, can be seen by others)"
|
||||
msgstr "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)"
|
||||
|
||||
#: mod/profiles.php:733
|
||||
#: mod/profiles.php:737
|
||||
msgid "Private Keywords:"
|
||||
msgstr "Private Schlüsselwörter:"
|
||||
|
||||
#: mod/profiles.php:733
|
||||
#: mod/profiles.php:737
|
||||
msgid "(Used for searching profiles, never shown to others)"
|
||||
msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"
|
||||
|
||||
#: mod/profiles.php:736
|
||||
#: mod/profiles.php:740
|
||||
msgid "Musical interests"
|
||||
msgstr "Musikalische Interessen"
|
||||
|
||||
#: mod/profiles.php:737
|
||||
#: mod/profiles.php:741
|
||||
msgid "Books, literature"
|
||||
msgstr "Bücher, Literatur"
|
||||
|
||||
#: mod/profiles.php:738
|
||||
#: mod/profiles.php:742
|
||||
msgid "Television"
|
||||
msgstr "Fernsehen"
|
||||
|
||||
#: mod/profiles.php:739
|
||||
#: mod/profiles.php:743
|
||||
msgid "Film/dance/culture/entertainment"
|
||||
msgstr "Filme/Tänze/Kultur/Unterhaltung"
|
||||
|
||||
#: mod/profiles.php:740
|
||||
#: mod/profiles.php:744
|
||||
msgid "Hobbies/Interests"
|
||||
msgstr "Hobbies/Interessen"
|
||||
|
||||
#: mod/profiles.php:741
|
||||
#: mod/profiles.php:745
|
||||
msgid "Love/romance"
|
||||
msgstr "Liebe/Romantik"
|
||||
|
||||
#: mod/profiles.php:742
|
||||
#: mod/profiles.php:746
|
||||
msgid "Work/employment"
|
||||
msgstr "Arbeit/Anstellung"
|
||||
|
||||
#: mod/profiles.php:743
|
||||
#: mod/profiles.php:747
|
||||
msgid "School/education"
|
||||
msgstr "Schule/Ausbildung"
|
||||
|
||||
#: mod/profiles.php:744
|
||||
#: mod/profiles.php:748
|
||||
msgid "Contact information and Social Networks"
|
||||
msgstr "Kontaktinformationen und Soziale Netzwerke"
|
||||
|
||||
#: mod/profiles.php:785
|
||||
#: mod/profiles.php:788
|
||||
msgid "Edit/Manage Profiles"
|
||||
msgstr "Bearbeite/Verwalte Profile"
|
||||
|
||||
#: mod/register.php:98
|
||||
#: mod/profperm.php:31 mod/profperm.php:60
|
||||
msgid "Invalid profile identifier."
|
||||
msgstr "Ungültiger Profil-Bezeichner."
|
||||
|
||||
#: mod/profperm.php:106
|
||||
msgid "Profile Visibility Editor"
|
||||
msgstr "Editor für die Profil-Sichtbarkeit"
|
||||
|
||||
#: mod/profperm.php:119
|
||||
msgid "Visible To"
|
||||
msgstr "Sichtbar für"
|
||||
|
||||
#: mod/profperm.php:135
|
||||
msgid "All Contacts (with secure profile access)"
|
||||
msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
|
||||
|
||||
#: mod/register.php:100
|
||||
msgid ""
|
||||
"Registration successful. Please check your email for further instructions."
|
||||
msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."
|
||||
|
||||
#: mod/register.php:103
|
||||
#: mod/register.php:105
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Failed to send email message. Here your accout details:<br> login: %s<br> "
|
||||
"password: %s<br><br>You can change your password after login."
|
||||
msgstr "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern."
|
||||
|
||||
#: mod/register.php:110
|
||||
#: mod/register.php:112
|
||||
msgid "Registration successful."
|
||||
msgstr "Registrierung erfolgreich."
|
||||
|
||||
#: mod/register.php:116
|
||||
#: mod/register.php:118
|
||||
msgid "Your registration can not be processed."
|
||||
msgstr "Deine Registrierung konnte nicht verarbeitet werden."
|
||||
|
||||
#: mod/register.php:165
|
||||
#: mod/register.php:167
|
||||
msgid "Your registration is pending approval by the site owner."
|
||||
msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
|
||||
|
||||
#: mod/register.php:231
|
||||
#: mod/register.php:205 mod/uimport.php:54
|
||||
msgid ""
|
||||
"This site has exceeded the number of allowed daily account registrations. "
|
||||
"Please try again tomorrow."
|
||||
msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."
|
||||
|
||||
#: mod/register.php:233
|
||||
msgid ""
|
||||
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
|
||||
"and clicking 'Register'."
|
||||
msgstr "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst."
|
||||
|
||||
#: mod/register.php:232
|
||||
#: mod/register.php:234
|
||||
msgid ""
|
||||
"If you are not familiar with OpenID, please leave that field blank and fill "
|
||||
"in the rest of the items."
|
||||
msgstr "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."
|
||||
|
||||
#: mod/register.php:233
|
||||
#: mod/register.php:235
|
||||
msgid "Your OpenID (optional): "
|
||||
msgstr "Deine OpenID (optional): "
|
||||
|
||||
#: mod/register.php:247
|
||||
#: mod/register.php:249
|
||||
msgid "Include your profile in member directory?"
|
||||
msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"
|
||||
|
||||
#: mod/register.php:272
|
||||
#: mod/register.php:274
|
||||
msgid "Note for the admin"
|
||||
msgstr "Hinweis für den Admin"
|
||||
|
||||
#: mod/register.php:272
|
||||
#: mod/register.php:274
|
||||
msgid "Leave a message for the admin, why you want to join this node"
|
||||
msgstr "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest."
|
||||
|
||||
#: mod/register.php:273
|
||||
#: mod/register.php:275
|
||||
msgid "Membership on this site is by invitation only."
|
||||
msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
|
||||
|
||||
#: mod/register.php:274
|
||||
#: mod/register.php:276
|
||||
msgid "Your invitation ID: "
|
||||
msgstr "ID Deiner Einladung: "
|
||||
|
||||
#: mod/register.php:285
|
||||
#: mod/register.php:287
|
||||
msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
|
||||
msgstr "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):"
|
||||
|
||||
#: mod/register.php:286
|
||||
msgid "Your Email Address: "
|
||||
msgstr "Deine E-Mail-Adresse: "
|
||||
#: mod/register.php:288
|
||||
msgid ""
|
||||
"Your Email Address: (Initial information will be send there, so this has to "
|
||||
"be an existing address.)"
|
||||
msgstr "Deine E-Mail Adresse (Informationen zur Registrierung werden an diese Adresse gesendet, darum muss sie existieren.)"
|
||||
|
||||
#: mod/register.php:288 mod/settings.php:1265
|
||||
#: mod/register.php:290 mod/settings.php:1262
|
||||
msgid "New Password:"
|
||||
msgstr "Neues Passwort:"
|
||||
|
||||
#: mod/register.php:288
|
||||
#: mod/register.php:290
|
||||
msgid "Leave empty for an auto generated password."
|
||||
msgstr "Leer lassen um das Passwort automatisch zu generieren."
|
||||
|
||||
#: mod/register.php:289 mod/settings.php:1266
|
||||
#: mod/register.php:291 mod/settings.php:1263
|
||||
msgid "Confirm:"
|
||||
msgstr "Bestätigen:"
|
||||
|
||||
#: mod/register.php:290
|
||||
#: mod/register.php:292
|
||||
msgid ""
|
||||
"Choose a profile nickname. This must begin with a text character. Your "
|
||||
"profile address on this site will then be "
|
||||
"'<strong>nickname@$sitename</strong>'."
|
||||
msgstr "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird '<strong>spitzname@$sitename</strong>' sein."
|
||||
|
||||
#: mod/register.php:291
|
||||
#: mod/register.php:293
|
||||
msgid "Choose a nickname: "
|
||||
msgstr "Spitznamen wählen: "
|
||||
|
||||
#: mod/register.php:301
|
||||
#: mod/register.php:302 mod/uimport.php:69
|
||||
msgid "Import"
|
||||
msgstr "Import"
|
||||
|
||||
#: mod/register.php:303
|
||||
msgid "Import your profile to this friendica instance"
|
||||
msgstr "Importiere Dein Profil auf diese Friendica Instanz"
|
||||
|
||||
#: mod/regmod.php:62
|
||||
#: mod/regmod.php:64
|
||||
msgid "Account approved."
|
||||
msgstr "Konto freigegeben."
|
||||
|
||||
#: mod/regmod.php:90
|
||||
#: mod/regmod.php:92
|
||||
#, php-format
|
||||
msgid "Registration revoked for %s"
|
||||
msgstr "Registrierung für %s wurde zurückgezogen"
|
||||
|
||||
#: mod/regmod.php:102
|
||||
#: mod/regmod.php:104
|
||||
msgid "Please login."
|
||||
msgstr "Bitte melde Dich an."
|
||||
|
||||
#: mod/settings.php:60
|
||||
#: mod/removeme.php:55 mod/removeme.php:58
|
||||
msgid "Remove My Account"
|
||||
msgstr "Konto löschen"
|
||||
|
||||
#: mod/removeme.php:56
|
||||
msgid ""
|
||||
"This will completely remove your account. Once this has been done it is not "
|
||||
"recoverable."
|
||||
msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."
|
||||
|
||||
#: mod/removeme.php:57
|
||||
msgid "Please enter your password for verification:"
|
||||
msgstr "Bitte gib Dein Passwort zur Verifikation ein:"
|
||||
|
||||
#: mod/repair_ostatus.php:16
|
||||
msgid "Resubscribing to OStatus contacts"
|
||||
msgstr "Erneuern der OStatus Abonements"
|
||||
|
||||
#: mod/repair_ostatus.php:32
|
||||
msgid "Error"
|
||||
msgstr "Fehler"
|
||||
|
||||
#: mod/search.php:99
|
||||
msgid "Only logged in users are permitted to perform a search."
|
||||
msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet."
|
||||
|
||||
#: mod/search.php:123
|
||||
msgid "Too Many Requests"
|
||||
msgstr "Zu viele Abfragen"
|
||||
|
||||
#: mod/search.php:124
|
||||
msgid "Only one search per minute is permitted for not logged in users."
|
||||
msgstr "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet."
|
||||
|
||||
#: mod/search.php:224
|
||||
#, php-format
|
||||
msgid "Items tagged with: %s"
|
||||
msgstr "Beiträge die mit %s getaggt sind"
|
||||
|
||||
#: mod/settings.php:63
|
||||
msgid "Display"
|
||||
msgstr "Anzeige"
|
||||
|
||||
#: mod/settings.php:67 mod/settings.php:895
|
||||
#: mod/settings.php:70 mod/settings.php:900
|
||||
msgid "Social Networks"
|
||||
msgstr "Soziale Netzwerke"
|
||||
|
||||
#: mod/settings.php:88
|
||||
#: mod/settings.php:91
|
||||
msgid "Connected apps"
|
||||
msgstr "Verbundene Programme"
|
||||
|
||||
#: mod/settings.php:102
|
||||
#: mod/settings.php:98 mod/uexport.php:48
|
||||
msgid "Export personal data"
|
||||
msgstr "Persönliche Daten exportieren"
|
||||
|
||||
#: mod/settings.php:105
|
||||
msgid "Remove account"
|
||||
msgstr "Konto löschen"
|
||||
|
||||
#: mod/settings.php:157
|
||||
#: mod/settings.php:160
|
||||
msgid "Missing some important data!"
|
||||
msgstr "Wichtige Daten fehlen!"
|
||||
|
||||
#: mod/settings.php:267
|
||||
#: mod/settings.php:270
|
||||
msgid "Failed to connect with email account using the settings provided."
|
||||
msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."
|
||||
|
||||
#: mod/settings.php:272
|
||||
#: mod/settings.php:275
|
||||
msgid "Email settings updated."
|
||||
msgstr "E-Mail Einstellungen bearbeitet."
|
||||
|
||||
#: mod/settings.php:288
|
||||
#: mod/settings.php:291
|
||||
msgid "Features updated"
|
||||
msgstr "Features aktualisiert"
|
||||
|
||||
#: mod/settings.php:359
|
||||
#: mod/settings.php:364
|
||||
msgid "Relocate message has been send to your contacts"
|
||||
msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."
|
||||
|
||||
#: mod/settings.php:378
|
||||
#: mod/settings.php:383
|
||||
msgid "Empty passwords are not allowed. Password unchanged."
|
||||
msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
|
||||
|
||||
#: mod/settings.php:386
|
||||
#: mod/settings.php:391
|
||||
msgid "Wrong password."
|
||||
msgstr "Falsches Passwort."
|
||||
|
||||
#: mod/settings.php:397
|
||||
#: mod/settings.php:402
|
||||
msgid "Password changed."
|
||||
msgstr "Passwort geändert."
|
||||
|
||||
#: mod/settings.php:399
|
||||
#: mod/settings.php:404
|
||||
msgid "Password update failed. Please try again."
|
||||
msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
|
||||
|
||||
#: mod/settings.php:489
|
||||
#: mod/settings.php:494
|
||||
msgid " Please use a shorter name."
|
||||
msgstr " Bitte verwende einen kürzeren Namen."
|
||||
|
||||
#: mod/settings.php:492
|
||||
#: mod/settings.php:497
|
||||
msgid " Name too short."
|
||||
msgstr " Name ist zu kurz."
|
||||
|
||||
#: mod/settings.php:502
|
||||
#: mod/settings.php:507
|
||||
msgid "Wrong Password"
|
||||
msgstr "Falsches Passwort"
|
||||
|
||||
#: mod/settings.php:507
|
||||
#: mod/settings.php:512
|
||||
msgid " Not valid email."
|
||||
msgstr " Keine gültige E-Mail."
|
||||
|
||||
#: mod/settings.php:514
|
||||
#: mod/settings.php:519
|
||||
msgid " Cannot change to that email."
|
||||
msgstr "Ändern der E-Mail nicht möglich. "
|
||||
|
||||
#: mod/settings.php:570
|
||||
#: mod/settings.php:575
|
||||
msgid "Private forum has no privacy permissions. Using default privacy group."
|
||||
msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt."
|
||||
|
||||
#: mod/settings.php:573
|
||||
#: mod/settings.php:578
|
||||
msgid "Private forum has no privacy permissions and no default privacy group."
|
||||
msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte."
|
||||
|
||||
#: mod/settings.php:613
|
||||
#: mod/settings.php:618
|
||||
msgid "Settings updated."
|
||||
msgstr "Einstellungen aktualisiert."
|
||||
|
||||
#: mod/settings.php:690 mod/settings.php:716 mod/settings.php:752
|
||||
#: mod/settings.php:695 mod/settings.php:721 mod/settings.php:757
|
||||
msgid "Add application"
|
||||
msgstr "Programm hinzufügen"
|
||||
|
||||
#: mod/settings.php:694 mod/settings.php:720
|
||||
#: mod/settings.php:699 mod/settings.php:725
|
||||
msgid "Consumer Key"
|
||||
msgstr "Consumer Key"
|
||||
|
||||
#: mod/settings.php:695 mod/settings.php:721
|
||||
#: mod/settings.php:700 mod/settings.php:726
|
||||
msgid "Consumer Secret"
|
||||
msgstr "Consumer Secret"
|
||||
|
||||
#: mod/settings.php:696 mod/settings.php:722
|
||||
#: mod/settings.php:701 mod/settings.php:727
|
||||
msgid "Redirect"
|
||||
msgstr "Umleiten"
|
||||
|
||||
#: mod/settings.php:697 mod/settings.php:723
|
||||
#: mod/settings.php:702 mod/settings.php:728
|
||||
msgid "Icon url"
|
||||
msgstr "Icon URL"
|
||||
|
||||
#: mod/settings.php:708
|
||||
#: mod/settings.php:713
|
||||
msgid "You can't edit this application."
|
||||
msgstr "Du kannst dieses Programm nicht bearbeiten."
|
||||
|
||||
#: mod/settings.php:751
|
||||
#: mod/settings.php:756
|
||||
msgid "Connected Apps"
|
||||
msgstr "Verbundene Programme"
|
||||
|
||||
#: mod/settings.php:753 object/Item.php:132 object/Item.php:134
|
||||
#: mod/settings.php:758 src/Object/Item.php:149 src/Object/Item.php:151
|
||||
msgid "Edit"
|
||||
msgstr "Bearbeiten"
|
||||
|
||||
#: mod/settings.php:755
|
||||
#: mod/settings.php:760
|
||||
msgid "Client key starts with"
|
||||
msgstr "Anwenderschlüssel beginnt mit"
|
||||
|
||||
#: mod/settings.php:756
|
||||
#: mod/settings.php:761
|
||||
msgid "No name"
|
||||
msgstr "Kein Name"
|
||||
|
||||
#: mod/settings.php:757
|
||||
#: mod/settings.php:762
|
||||
msgid "Remove authorization"
|
||||
msgstr "Autorisierung entziehen"
|
||||
|
||||
#: mod/settings.php:769
|
||||
#: mod/settings.php:774
|
||||
msgid "No Plugin settings configured"
|
||||
msgstr "Keine Plugin-Einstellungen konfiguriert"
|
||||
|
||||
#: mod/settings.php:778
|
||||
#: mod/settings.php:783
|
||||
msgid "Plugin Settings"
|
||||
msgstr "Plugin-Einstellungen"
|
||||
|
||||
#: mod/settings.php:800
|
||||
#: mod/settings.php:805
|
||||
msgid "Additional Features"
|
||||
msgstr "Zusätzliche Features"
|
||||
|
||||
#: mod/settings.php:810 mod/settings.php:814
|
||||
#: mod/settings.php:815 mod/settings.php:819
|
||||
msgid "General Social Media Settings"
|
||||
msgstr "Allgemeine Einstellungen zu Sozialen Medien"
|
||||
|
||||
#: mod/settings.php:820
|
||||
#: mod/settings.php:825
|
||||
msgid "Disable intelligent shortening"
|
||||
msgstr "Intelligentes Link kürzen ausschalten"
|
||||
|
||||
#: mod/settings.php:822
|
||||
#: mod/settings.php:827
|
||||
msgid ""
|
||||
"Normally the system tries to find the best link to add to shortened posts. "
|
||||
"If this option is enabled then every shortened post will always point to the"
|
||||
" original friendica post."
|
||||
msgstr "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt."
|
||||
|
||||
#: mod/settings.php:828
|
||||
#: mod/settings.php:833
|
||||
msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
|
||||
msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen"
|
||||
|
||||
#: mod/settings.php:830
|
||||
#: mod/settings.php:835
|
||||
msgid ""
|
||||
"If you receive a message from an unknown OStatus user, this option decides "
|
||||
"what to do. If it is checked, a new contact will be created for every "
|
||||
"unknown user."
|
||||
msgstr "Wenn du eine Nachricht eines unbekannten OStatus Nutzers bekommst, entscheidet diese Option wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,."
|
||||
|
||||
#: mod/settings.php:836
|
||||
#: mod/settings.php:841
|
||||
msgid "Default group for OStatus contacts"
|
||||
msgstr "Voreingestellte Gruppe für OStatus Kontakte"
|
||||
|
||||
#: mod/settings.php:844
|
||||
#: mod/settings.php:849
|
||||
msgid "Your legacy GNU Social account"
|
||||
msgstr "Dein alter GNU Social Account"
|
||||
|
||||
#: mod/settings.php:846
|
||||
#: mod/settings.php:851
|
||||
msgid ""
|
||||
"If you enter your old GNU Social/Statusnet account name here (in the format "
|
||||
"user@domain.tld), your contacts will be added automatically. The field will "
|
||||
"be emptied when done."
|
||||
msgstr "Wenn du deinen alten GNU Socual/Statusnet Accountnamen hier angibst (Format name@domain.tld) werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden."
|
||||
|
||||
#: mod/settings.php:849
|
||||
#: mod/settings.php:854
|
||||
msgid "Repair OStatus subscriptions"
|
||||
msgstr "OStatus Abonnements reparieren"
|
||||
|
||||
#: mod/settings.php:858 mod/settings.php:859
|
||||
#: mod/settings.php:863 mod/settings.php:864
|
||||
#, 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:858 mod/settings.php:859
|
||||
#: mod/settings.php:863 mod/settings.php:864
|
||||
msgid "enabled"
|
||||
msgstr "eingeschaltet"
|
||||
|
||||
#: mod/settings.php:858 mod/settings.php:859
|
||||
#: mod/settings.php:863 mod/settings.php:864
|
||||
msgid "disabled"
|
||||
msgstr "ausgeschaltet"
|
||||
|
||||
#: mod/settings.php:859
|
||||
#: mod/settings.php:864
|
||||
msgid "GNU Social (OStatus)"
|
||||
msgstr "GNU Social (OStatus)"
|
||||
|
||||
#: mod/settings.php:890
|
||||
#: mod/settings.php:895
|
||||
msgid "Email access is disabled on this site."
|
||||
msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
|
||||
|
||||
#: mod/settings.php:900
|
||||
#: mod/settings.php:905
|
||||
msgid "Email/Mailbox Setup"
|
||||
msgstr "E-Mail/Postfach-Einstellungen"
|
||||
|
||||
#: mod/settings.php:901
|
||||
#: mod/settings.php:906
|
||||
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:902
|
||||
#: mod/settings.php:907
|
||||
msgid "Last successful email check:"
|
||||
msgstr "Letzter erfolgreicher E-Mail Check"
|
||||
|
||||
#: mod/settings.php:904
|
||||
#: mod/settings.php:909
|
||||
msgid "IMAP server name:"
|
||||
msgstr "IMAP-Server-Name:"
|
||||
|
||||
#: mod/settings.php:905
|
||||
#: mod/settings.php:910
|
||||
msgid "IMAP port:"
|
||||
msgstr "IMAP-Port:"
|
||||
|
||||
#: mod/settings.php:906
|
||||
#: mod/settings.php:911
|
||||
msgid "Security:"
|
||||
msgstr "Sicherheit:"
|
||||
|
||||
#: mod/settings.php:906 mod/settings.php:911
|
||||
#: mod/settings.php:911 mod/settings.php:916
|
||||
msgid "None"
|
||||
msgstr "Keine"
|
||||
|
||||
#: mod/settings.php:907
|
||||
#: mod/settings.php:912
|
||||
msgid "Email login name:"
|
||||
msgstr "E-Mail-Login-Name:"
|
||||
|
||||
#: mod/settings.php:908
|
||||
#: mod/settings.php:913
|
||||
msgid "Email password:"
|
||||
msgstr "E-Mail-Passwort:"
|
||||
|
||||
#: mod/settings.php:909
|
||||
#: mod/settings.php:914
|
||||
msgid "Reply-to address:"
|
||||
msgstr "Reply-to Adresse:"
|
||||
|
||||
#: mod/settings.php:910
|
||||
#: mod/settings.php:915
|
||||
msgid "Send public posts to all email contacts:"
|
||||
msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
|
||||
|
||||
#: mod/settings.php:911
|
||||
#: mod/settings.php:916
|
||||
msgid "Action after import:"
|
||||
msgstr "Aktion nach Import:"
|
||||
|
||||
#: mod/settings.php:911
|
||||
#: mod/settings.php:916
|
||||
msgid "Move to folder"
|
||||
msgstr "In einen Ordner verschieben"
|
||||
|
||||
#: mod/settings.php:912
|
||||
#: mod/settings.php:917
|
||||
msgid "Move to folder:"
|
||||
msgstr "In diesen Ordner verschieben:"
|
||||
|
||||
#: mod/settings.php:1008
|
||||
#: mod/settings.php:1004
|
||||
msgid "Display Settings"
|
||||
msgstr "Anzeige-Einstellungen"
|
||||
|
||||
#: mod/settings.php:1014 mod/settings.php:1037
|
||||
#: mod/settings.php:1010 mod/settings.php:1034
|
||||
msgid "Display Theme:"
|
||||
msgstr "Theme:"
|
||||
|
||||
#: mod/settings.php:1015
|
||||
#: mod/settings.php:1011
|
||||
msgid "Mobile Theme:"
|
||||
msgstr "Mobiles Theme"
|
||||
|
||||
#: mod/settings.php:1016
|
||||
#: mod/settings.php:1012
|
||||
msgid "Suppress warning of insecure networks"
|
||||
msgstr "Warnung wegen unsicheren Netzwerken unterdrücken"
|
||||
|
||||
#: mod/settings.php:1016
|
||||
#: mod/settings.php:1012
|
||||
msgid ""
|
||||
"Should the system suppress the warning that the current group contains "
|
||||
"members of networks that can't receive non public postings."
|
||||
msgstr "Soll das System Warnungen unterdrücken, die angezeigt werden weil von dir eingerichtete Kontakt-Gruppen Accounts aus Netzwerken beinhalten, die keine nicht öffentlichen Beiträge empfangen können."
|
||||
|
||||
#: mod/settings.php:1017
|
||||
#: mod/settings.php:1013
|
||||
msgid "Update browser every xx seconds"
|
||||
msgstr "Browser alle xx Sekunden aktualisieren"
|
||||
|
||||
#: mod/settings.php:1017
|
||||
#: mod/settings.php:1013
|
||||
msgid "Minimum of 10 seconds. Enter -1 to disable it."
|
||||
msgstr "Minimum sind 10 Sekunden. Gib -1 ein um abzuschalten."
|
||||
|
||||
#: mod/settings.php:1018
|
||||
#: mod/settings.php:1014
|
||||
msgid "Number of items to display per page:"
|
||||
msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
|
||||
|
||||
#: mod/settings.php:1018 mod/settings.php:1019
|
||||
#: mod/settings.php:1014 mod/settings.php:1015
|
||||
msgid "Maximum of 100 items"
|
||||
msgstr "Maximal 100 Beiträge"
|
||||
|
||||
#: mod/settings.php:1019
|
||||
#: mod/settings.php:1015
|
||||
msgid "Number of items to display per page when viewed from mobile device:"
|
||||
msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:"
|
||||
|
||||
#: mod/settings.php:1020
|
||||
#: mod/settings.php:1016
|
||||
msgid "Don't show emoticons"
|
||||
msgstr "Keine Smilies anzeigen"
|
||||
|
||||
#: mod/settings.php:1021
|
||||
#: mod/settings.php:1017
|
||||
msgid "Calendar"
|
||||
msgstr "Kalender"
|
||||
|
||||
#: mod/settings.php:1022
|
||||
#: mod/settings.php:1018
|
||||
msgid "Beginning of week:"
|
||||
msgstr "Wochenbeginn:"
|
||||
|
||||
#: mod/settings.php:1023
|
||||
#: mod/settings.php:1019
|
||||
msgid "Don't show notices"
|
||||
msgstr "Info-Popups nicht anzeigen"
|
||||
|
||||
#: mod/settings.php:1024
|
||||
#: mod/settings.php:1020
|
||||
msgid "Infinite scroll"
|
||||
msgstr "Endloses Scrollen"
|
||||
|
||||
#: mod/settings.php:1025
|
||||
#: mod/settings.php:1021
|
||||
msgid "Automatic updates only at the top of the network page"
|
||||
msgstr "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist."
|
||||
|
||||
#: mod/settings.php:1025
|
||||
#: mod/settings.php:1021
|
||||
msgid ""
|
||||
"When disabled, the network page is updated all the time, which could be "
|
||||
"confusing while reading."
|
||||
msgstr "Wenn dies deaktiviert ist, wird die Netzwerk Seite aktualisiert, wann immer neue Beiträge eintreffen, egal an welcher Stelle gerade gelesen wird."
|
||||
|
||||
#: mod/settings.php:1026
|
||||
#: mod/settings.php:1022
|
||||
msgid "Bandwith Saver Mode"
|
||||
msgstr "Bandbreiten-Spar-Modus"
|
||||
|
||||
#: mod/settings.php:1026
|
||||
#: mod/settings.php:1022
|
||||
msgid ""
|
||||
"When enabled, embedded content is not displayed on automatic updates, they "
|
||||
"only show on page reload."
|
||||
msgstr "Wenn aktiviert, wird der eingebettete Inhalt nicht automatisch aktualisiert. In diesem Fall Seite bitte neu laden."
|
||||
|
||||
#: mod/settings.php:1028
|
||||
#: mod/settings.php:1023
|
||||
msgid "Smart Threading"
|
||||
msgstr "Intelligentes Threading"
|
||||
|
||||
#: mod/settings.php:1023
|
||||
msgid ""
|
||||
"When enabled, suppress extraneous thread indentation while keeping it where "
|
||||
"it matters. Only works if threading is available and enabled."
|
||||
msgstr "Ist dies aktiviert, werden Einrückungen in Unterhaltungen unterdrückt wo sie nicht benötigt werden. Werden sie benötigt, werden die Threads weiterhin eingerückt."
|
||||
|
||||
#: mod/settings.php:1025
|
||||
msgid "General Theme Settings"
|
||||
msgstr "Allgemeine Themeneinstellungen"
|
||||
|
||||
#: mod/settings.php:1029
|
||||
#: mod/settings.php:1026
|
||||
msgid "Custom Theme Settings"
|
||||
msgstr "Benutzerdefinierte Theme Einstellungen"
|
||||
|
||||
#: mod/settings.php:1030
|
||||
#: mod/settings.php:1027
|
||||
msgid "Content Settings"
|
||||
msgstr "Einstellungen zum Inhalt"
|
||||
|
||||
#: mod/settings.php:1031 view/theme/duepuntozero/config.php:67
|
||||
#: view/theme/frio/config.php:110 view/theme/quattro/config.php:73
|
||||
#: view/theme/vier/config.php:116
|
||||
#: mod/settings.php:1028 view/theme/duepuntozero/config.php:69
|
||||
#: view/theme/frio/config.php:110 view/theme/quattro/config.php:75
|
||||
#: view/theme/vier/config.php:119
|
||||
msgid "Theme settings"
|
||||
msgstr "Themeneinstellungen"
|
||||
|
||||
#: mod/settings.php:1097
|
||||
#: mod/settings.php:1094
|
||||
msgid "Account Types"
|
||||
msgstr "Kontenarten"
|
||||
|
||||
#: mod/settings.php:1098
|
||||
#: mod/settings.php:1095
|
||||
msgid "Personal Page Subtypes"
|
||||
msgstr "Unterarten der persönlichen Seite"
|
||||
|
||||
#: mod/settings.php:1099
|
||||
#: mod/settings.php:1096
|
||||
msgid "Community Forum Subtypes"
|
||||
msgstr "Unterarten des Gemeinschaftsforums"
|
||||
|
||||
#: mod/settings.php:1106
|
||||
#: mod/settings.php:1103
|
||||
msgid "Personal Page"
|
||||
msgstr "Persönliche Seite"
|
||||
|
||||
#: mod/settings.php:1107
|
||||
#: mod/settings.php:1104
|
||||
msgid "Account for a personal profile."
|
||||
msgstr "Konto für ein persönliches Profil."
|
||||
|
||||
#: mod/settings.php:1110
|
||||
#: mod/settings.php:1107
|
||||
msgid "Organisation Page"
|
||||
msgstr "Organisationsseite"
|
||||
|
||||
#: mod/settings.php:1111
|
||||
#: mod/settings.php:1108
|
||||
msgid ""
|
||||
"Account for an organisation that automatically approves contact requests as "
|
||||
"\"Followers\"."
|
||||
msgstr "Konto für eine Organisation, das Kontaktanfragen automatisch als \"Follower\" annimmt."
|
||||
|
||||
#: mod/settings.php:1114
|
||||
#: mod/settings.php:1111
|
||||
msgid "News Page"
|
||||
msgstr "Nachrichtenseite"
|
||||
|
||||
#: mod/settings.php:1115
|
||||
#: mod/settings.php:1112
|
||||
msgid ""
|
||||
"Account for a news reflector that automatically approves contact requests as"
|
||||
" \"Followers\"."
|
||||
msgstr "Konto für einen Feedspiegel, das Kontaktanfragen automatisch als \"Follower\" annimmt."
|
||||
|
||||
#: mod/settings.php:1118
|
||||
#: mod/settings.php:1115
|
||||
msgid "Community Forum"
|
||||
msgstr "Gemeinschaftsforum"
|
||||
|
||||
#: mod/settings.php:1119
|
||||
#: mod/settings.php:1116
|
||||
msgid "Account for community discussions."
|
||||
msgstr "Konto für Diskussionsforen. "
|
||||
|
||||
#: mod/settings.php:1122
|
||||
#: mod/settings.php:1119
|
||||
msgid "Normal Account Page"
|
||||
msgstr "Normales Konto"
|
||||
|
||||
#: mod/settings.php:1123
|
||||
#: mod/settings.php:1120
|
||||
msgid ""
|
||||
"Account for a regular personal profile that requires manual approval of "
|
||||
"\"Friends\" and \"Followers\"."
|
||||
msgstr "Konto für ein normales persönliches Profil. Kontaktanfragen müssen manuell als \"Friend\" oder \"Follower\" bestätigt werden."
|
||||
|
||||
#: mod/settings.php:1126
|
||||
#: mod/settings.php:1123
|
||||
msgid "Soapbox Page"
|
||||
msgstr "Marktschreier-Konto"
|
||||
|
||||
#: mod/settings.php:1127
|
||||
#: mod/settings.php:1124
|
||||
msgid ""
|
||||
"Account for a public profile that automatically approves contact requests as"
|
||||
" \"Followers\"."
|
||||
msgstr "Konto für ein öffentliches Profil, das Kontaktanfragen automatisch als \"Follower\" annimmt."
|
||||
|
||||
#: mod/settings.php:1130
|
||||
#: mod/settings.php:1127
|
||||
msgid "Public Forum"
|
||||
msgstr "Öffentliches Forum"
|
||||
|
||||
#: mod/settings.php:1131
|
||||
#: mod/settings.php:1128
|
||||
msgid "Automatically approves all contact requests."
|
||||
msgstr "Bestätigt alle Kontaktanfragen automatisch."
|
||||
|
||||
#: mod/settings.php:1134
|
||||
#: mod/settings.php:1131
|
||||
msgid "Automatic Friend Page"
|
||||
msgstr "Automatische Freunde Seite"
|
||||
|
||||
#: mod/settings.php:1135
|
||||
#: mod/settings.php:1132
|
||||
msgid ""
|
||||
"Account for a popular profile that automatically approves contact requests "
|
||||
"as \"Friends\"."
|
||||
msgstr "Konto für ein gefragtes Profil, das Kontaktanfragen automatisch als \"Friend\" annimmt."
|
||||
|
||||
#: mod/settings.php:1138
|
||||
#: mod/settings.php:1135
|
||||
msgid "Private Forum [Experimental]"
|
||||
msgstr "Privates Forum [Versuchsstadium]"
|
||||
|
||||
#: mod/settings.php:1139
|
||||
#: mod/settings.php:1136
|
||||
msgid "Requires manual approval of contact requests."
|
||||
msgstr "Kontaktanfragen müssen manuell bestätigt werden."
|
||||
|
||||
#: mod/settings.php:1150
|
||||
#: mod/settings.php:1147
|
||||
msgid "OpenID:"
|
||||
msgstr "OpenID:"
|
||||
|
||||
#: mod/settings.php:1150
|
||||
#: mod/settings.php:1147
|
||||
msgid "(Optional) Allow this OpenID to login to this account."
|
||||
msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."
|
||||
|
||||
#: mod/settings.php:1158
|
||||
#: mod/settings.php:1155
|
||||
msgid "Publish your default profile in your local site directory?"
|
||||
msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
|
||||
|
||||
#: mod/settings.php:1158
|
||||
#: mod/settings.php:1155
|
||||
msgid "Your profile may be visible in public."
|
||||
msgstr "Dein Profil könnte öffentlich abrufbar sein."
|
||||
|
||||
#: mod/settings.php:1164
|
||||
#: mod/settings.php:1161
|
||||
msgid "Publish your default profile in the global social directory?"
|
||||
msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
|
||||
|
||||
#: mod/settings.php:1171
|
||||
#: mod/settings.php:1168
|
||||
msgid "Hide your contact/friend list from viewers of your default profile?"
|
||||
msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
|
||||
|
||||
#: mod/settings.php:1175
|
||||
#: mod/settings.php:1172
|
||||
msgid ""
|
||||
"If enabled, posting public messages to Diaspora and other networks isn't "
|
||||
"possible."
|
||||
msgstr "Wenn aktiviert, ist das Senden öffentlicher Nachrichten zu Diaspora und anderen Netzwerken nicht möglich"
|
||||
|
||||
#: mod/settings.php:1180
|
||||
#: mod/settings.php:1177
|
||||
msgid "Allow friends to post to your profile page?"
|
||||
msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?"
|
||||
|
||||
#: mod/settings.php:1185
|
||||
#: mod/settings.php:1182
|
||||
msgid "Allow friends to tag your posts?"
|
||||
msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?"
|
||||
|
||||
#: mod/settings.php:1190
|
||||
#: mod/settings.php:1187
|
||||
msgid "Allow us to suggest you as a potential friend to new members?"
|
||||
msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
|
||||
|
||||
#: mod/settings.php:1195
|
||||
#: mod/settings.php:1192
|
||||
msgid "Permit unknown people to send you private mail?"
|
||||
msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?"
|
||||
|
||||
#: mod/settings.php:1203
|
||||
#: mod/settings.php:1200
|
||||
msgid "Profile is <strong>not published</strong>."
|
||||
msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
|
||||
|
||||
#: mod/settings.php:1211
|
||||
#: mod/settings.php:1208
|
||||
#, php-format
|
||||
msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
|
||||
msgstr "Die Adresse deines Profils lautet <strong>'%s'</strong> oder '%s'."
|
||||
|
||||
#: mod/settings.php:1218
|
||||
#: mod/settings.php:1215
|
||||
msgid "Automatically expire posts after this many days:"
|
||||
msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
|
||||
|
||||
#: mod/settings.php:1218
|
||||
#: mod/settings.php:1215
|
||||
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:1219
|
||||
#: mod/settings.php:1216
|
||||
msgid "Advanced expiration settings"
|
||||
msgstr "Erweiterte Verfallseinstellungen"
|
||||
|
||||
#: mod/settings.php:1220
|
||||
#: mod/settings.php:1217
|
||||
msgid "Advanced Expiration"
|
||||
msgstr "Erweitertes Verfallen"
|
||||
|
||||
#: mod/settings.php:1221
|
||||
#: mod/settings.php:1218
|
||||
msgid "Expire posts:"
|
||||
msgstr "Beiträge verfallen lassen:"
|
||||
|
||||
#: mod/settings.php:1222
|
||||
#: mod/settings.php:1219
|
||||
msgid "Expire personal notes:"
|
||||
msgstr "Persönliche Notizen verfallen lassen:"
|
||||
|
||||
#: mod/settings.php:1223
|
||||
#: mod/settings.php:1220
|
||||
msgid "Expire starred posts:"
|
||||
msgstr "Markierte Beiträge verfallen lassen:"
|
||||
|
||||
#: mod/settings.php:1224
|
||||
#: mod/settings.php:1221
|
||||
msgid "Expire photos:"
|
||||
msgstr "Fotos verfallen lassen:"
|
||||
|
||||
#: mod/settings.php:1225
|
||||
#: mod/settings.php:1222
|
||||
msgid "Only expire posts by others:"
|
||||
msgstr "Nur Beiträge anderer verfallen:"
|
||||
|
||||
#: mod/settings.php:1256
|
||||
#: mod/settings.php:1253
|
||||
msgid "Account Settings"
|
||||
msgstr "Kontoeinstellungen"
|
||||
|
||||
#: mod/settings.php:1264
|
||||
#: mod/settings.php:1261
|
||||
msgid "Password Settings"
|
||||
msgstr "Passwort-Einstellungen"
|
||||
|
||||
#: mod/settings.php:1266
|
||||
#: mod/settings.php:1263
|
||||
msgid "Leave password fields blank unless changing"
|
||||
msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"
|
||||
|
||||
#: mod/settings.php:1267
|
||||
#: mod/settings.php:1264
|
||||
msgid "Current Password:"
|
||||
msgstr "Aktuelles Passwort:"
|
||||
|
||||
#: mod/settings.php:1267 mod/settings.php:1268
|
||||
#: mod/settings.php:1264 mod/settings.php:1265
|
||||
msgid "Your current password to confirm the changes"
|
||||
msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen"
|
||||
|
||||
#: mod/settings.php:1268
|
||||
#: mod/settings.php:1265
|
||||
msgid "Password:"
|
||||
msgstr "Passwort:"
|
||||
|
||||
#: mod/settings.php:1272
|
||||
#: mod/settings.php:1269
|
||||
msgid "Basic Settings"
|
||||
msgstr "Grundeinstellungen"
|
||||
|
||||
#: mod/settings.php:1274
|
||||
#: mod/settings.php:1271
|
||||
msgid "Email Address:"
|
||||
msgstr "E-Mail-Adresse:"
|
||||
|
||||
#: mod/settings.php:1275
|
||||
#: mod/settings.php:1272
|
||||
msgid "Your Timezone:"
|
||||
msgstr "Deine Zeitzone:"
|
||||
|
||||
#: mod/settings.php:1276
|
||||
#: mod/settings.php:1273
|
||||
msgid "Your Language:"
|
||||
msgstr "Deine Sprache:"
|
||||
|
||||
#: mod/settings.php:1276
|
||||
#: mod/settings.php:1273
|
||||
msgid ""
|
||||
"Set the language we use to show you friendica interface and to send you "
|
||||
"emails"
|
||||
msgstr "Wähle die Sprache, in der wir Dir die Friendica-Oberfläche präsentieren sollen und Dir E-Mail schicken"
|
||||
|
||||
#: mod/settings.php:1277
|
||||
#: mod/settings.php:1274
|
||||
msgid "Default Post Location:"
|
||||
msgstr "Standardstandort:"
|
||||
|
||||
#: mod/settings.php:1278
|
||||
#: mod/settings.php:1275
|
||||
msgid "Use Browser Location:"
|
||||
msgstr "Standort des Browsers verwenden:"
|
||||
|
||||
#: mod/settings.php:1281
|
||||
#: mod/settings.php:1278
|
||||
msgid "Security and Privacy Settings"
|
||||
msgstr "Sicherheits- und Privatsphäre-Einstellungen"
|
||||
|
||||
#: mod/settings.php:1283
|
||||
#: mod/settings.php:1280
|
||||
msgid "Maximum Friend Requests/Day:"
|
||||
msgstr "Maximale Anzahl vonKontaktanfragen/Tag:"
|
||||
|
||||
#: mod/settings.php:1283 mod/settings.php:1313
|
||||
#: mod/settings.php:1280 mod/settings.php:1310
|
||||
msgid "(to prevent spam abuse)"
|
||||
msgstr "(um SPAM zu vermeiden)"
|
||||
|
||||
#: mod/settings.php:1284
|
||||
#: mod/settings.php:1281
|
||||
msgid "Default Post Permissions"
|
||||
msgstr "Standard-Zugriffsrechte für Beiträge"
|
||||
|
||||
#: mod/settings.php:1285
|
||||
#: mod/settings.php:1282
|
||||
msgid "(click to open/close)"
|
||||
msgstr "(klicke zum öffnen/schließen)"
|
||||
|
||||
#: mod/settings.php:1296
|
||||
#: mod/settings.php:1293
|
||||
msgid "Default Private Post"
|
||||
msgstr "Privater Standardbeitrag"
|
||||
|
||||
#: mod/settings.php:1297
|
||||
#: mod/settings.php:1294
|
||||
msgid "Default Public Post"
|
||||
msgstr "Öffentlicher Standardbeitrag"
|
||||
|
||||
#: mod/settings.php:1301
|
||||
#: mod/settings.php:1298
|
||||
msgid "Default Permissions for New Posts"
|
||||
msgstr "Standardberechtigungen für neue Beiträge"
|
||||
|
||||
#: mod/settings.php:1313
|
||||
#: mod/settings.php:1310
|
||||
msgid "Maximum private messages per day from unknown people:"
|
||||
msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
|
||||
|
||||
#: mod/settings.php:1316
|
||||
#: mod/settings.php:1313
|
||||
msgid "Notification Settings"
|
||||
msgstr "Benachrichtigungseinstellungen"
|
||||
|
||||
#: mod/settings.php:1317
|
||||
#: mod/settings.php:1314
|
||||
msgid "By default post a status message when:"
|
||||
msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
|
||||
|
||||
#: mod/settings.php:1318
|
||||
#: mod/settings.php:1315
|
||||
msgid "accepting a friend request"
|
||||
msgstr "– Du eine Kontaktanfrage akzeptierst"
|
||||
|
||||
#: mod/settings.php:1319
|
||||
#: mod/settings.php:1316
|
||||
msgid "joining a forum/community"
|
||||
msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst"
|
||||
|
||||
#: mod/settings.php:1320
|
||||
#: mod/settings.php:1317
|
||||
msgid "making an <em>interesting</em> profile change"
|
||||
msgstr "– Du eine <em>interessante</em> Änderung an Deinem Profil durchführst"
|
||||
|
||||
#: mod/settings.php:1321
|
||||
#: mod/settings.php:1318
|
||||
msgid "Send a notification email when:"
|
||||
msgstr "Benachrichtigungs-E-Mail senden wenn:"
|
||||
|
||||
#: mod/settings.php:1322
|
||||
#: mod/settings.php:1319
|
||||
msgid "You receive an introduction"
|
||||
msgstr "– Du eine Kontaktanfrage erhältst"
|
||||
|
||||
#: mod/settings.php:1323
|
||||
#: mod/settings.php:1320
|
||||
msgid "Your introductions are confirmed"
|
||||
msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde"
|
||||
|
||||
#: mod/settings.php:1324
|
||||
#: mod/settings.php:1321
|
||||
msgid "Someone writes on your profile wall"
|
||||
msgstr "– jemand etwas auf Deine Pinnwand schreibt"
|
||||
|
||||
#: mod/settings.php:1325
|
||||
#: mod/settings.php:1322
|
||||
msgid "Someone writes a followup comment"
|
||||
msgstr "– jemand auch einen Kommentar verfasst"
|
||||
|
||||
#: mod/settings.php:1326
|
||||
#: mod/settings.php:1323
|
||||
msgid "You receive a private message"
|
||||
msgstr "– Du eine private Nachricht erhältst"
|
||||
|
||||
#: mod/settings.php:1327
|
||||
#: mod/settings.php:1324
|
||||
msgid "You receive a friend suggestion"
|
||||
msgstr "– Du eine Empfehlung erhältst"
|
||||
|
||||
#: mod/settings.php:1328
|
||||
#: mod/settings.php:1325
|
||||
msgid "You are tagged in a post"
|
||||
msgstr "– Du in einem Beitrag erwähnt wirst"
|
||||
|
||||
#: mod/settings.php:1329
|
||||
#: mod/settings.php:1326
|
||||
msgid "You are poked/prodded/etc. in a post"
|
||||
msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst"
|
||||
|
||||
#: mod/settings.php:1331
|
||||
#: mod/settings.php:1328
|
||||
msgid "Activate desktop notifications"
|
||||
msgstr "Desktop Benachrichtigungen einschalten"
|
||||
|
||||
#: mod/settings.php:1331
|
||||
#: mod/settings.php:1328
|
||||
msgid "Show desktop popup on new notifications"
|
||||
msgstr "Desktop Benachrichtigungen einschalten"
|
||||
|
||||
#: mod/settings.php:1333
|
||||
#: mod/settings.php:1330
|
||||
msgid "Text-only notification emails"
|
||||
msgstr "Benachrichtigungs E-Mail als Rein-Text."
|
||||
|
||||
#: mod/settings.php:1335
|
||||
#: mod/settings.php:1332
|
||||
msgid "Send text only notification emails, without the html part"
|
||||
msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"
|
||||
|
||||
#: mod/settings.php:1337
|
||||
#: mod/settings.php:1334
|
||||
msgid "Show detailled notifications"
|
||||
msgstr "Detaillierte Benachrichtigungen anzeigen"
|
||||
|
||||
#: mod/settings.php:1339
|
||||
#: mod/settings.php:1336
|
||||
msgid ""
|
||||
"Per default the notificiation are condensed to a single notification per "
|
||||
"item. When enabled, every notification is displayed."
|
||||
msgstr "Normalerweise werde alle Benachrichtigungen zu einem Thema zusammengefasst in einer einzigen Mitteilung. Wenn diese Option aktiviert ist, wird jede Mitteilung angezeigt."
|
||||
|
||||
#: mod/settings.php:1341
|
||||
#: mod/settings.php:1338
|
||||
msgid "Advanced Account/Page Type Settings"
|
||||
msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
|
||||
|
||||
#: mod/settings.php:1342
|
||||
#: mod/settings.php:1339
|
||||
msgid "Change the behaviour of this account for special situations"
|
||||
msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
|
||||
|
||||
#: mod/settings.php:1345
|
||||
#: mod/settings.php:1342
|
||||
msgid "Relocate"
|
||||
msgstr "Umziehen"
|
||||
|
||||
#: mod/settings.php:1346
|
||||
#: mod/settings.php:1343
|
||||
msgid ""
|
||||
"If you have moved this profile from another server, and some of your "
|
||||
"contacts don't receive your updates, try pushing this button."
|
||||
msgstr "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button."
|
||||
|
||||
#: mod/settings.php:1347
|
||||
#: mod/settings.php:1344
|
||||
msgid "Resend relocate message to contacts"
|
||||
msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
|
||||
|
||||
#: mod/videos.php:128
|
||||
#: mod/subthread.php:107
|
||||
#, php-format
|
||||
msgid "%1$s is following %2$s's %3$s"
|
||||
msgstr "%1$s folgt %2$s %3$s"
|
||||
|
||||
#: mod/suggest.php:34
|
||||
msgid "Do you really want to delete this suggestion?"
|
||||
msgstr "Möchtest Du wirklich diese Empfehlung löschen?"
|
||||
|
||||
#: mod/suggest.php:75
|
||||
msgid ""
|
||||
"No suggestions available. If this is a new site, please try again in 24 "
|
||||
"hours."
|
||||
msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
|
||||
|
||||
#: mod/suggest.php:88 mod/suggest.php:108
|
||||
msgid "Ignore/Hide"
|
||||
msgstr "Ignorieren/Verbergen"
|
||||
|
||||
#: mod/tagrm.php:47
|
||||
msgid "Tag removed"
|
||||
msgstr "Tag entfernt"
|
||||
|
||||
#: mod/tagrm.php:86
|
||||
msgid "Remove Item Tag"
|
||||
msgstr "Gegenstands-Tag entfernen"
|
||||
|
||||
#: mod/tagrm.php:88
|
||||
msgid "Select a tag to remove: "
|
||||
msgstr "Wähle ein Tag zum Entfernen aus: "
|
||||
|
||||
#: mod/uexport.php:40
|
||||
msgid "Export account"
|
||||
msgstr "Account exportieren"
|
||||
|
||||
#: mod/uexport.php:40
|
||||
msgid ""
|
||||
"Export your account info and contacts. Use this to make a backup of your "
|
||||
"account and/or to move it to another server."
|
||||
msgstr "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."
|
||||
|
||||
#: mod/uexport.php:41
|
||||
msgid "Export all"
|
||||
msgstr "Alles exportieren"
|
||||
|
||||
#: mod/uexport.php:41
|
||||
msgid ""
|
||||
"Export your accout info, contacts and all your items as json. Could be a "
|
||||
"very big file, and could take a lot of time. Use this to make a full backup "
|
||||
"of your account (photos are not exported)"
|
||||
msgstr "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)."
|
||||
|
||||
#: mod/uimport.php:71
|
||||
msgid "Move account"
|
||||
msgstr "Account umziehen"
|
||||
|
||||
#: mod/uimport.php:72
|
||||
msgid "You can import an account from another Friendica server."
|
||||
msgstr "Du kannst einen Account von einem anderen Friendica Server importieren."
|
||||
|
||||
#: mod/uimport.php:73
|
||||
msgid ""
|
||||
"You need to export your account from the old server and upload it here. We "
|
||||
"will recreate your old account here with all your contacts. We will try also"
|
||||
" to inform your friends that you moved here."
|
||||
msgstr "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Kontakte darüber zu informieren, dass Du hierher umgezogen bist."
|
||||
|
||||
#: mod/uimport.php:74
|
||||
msgid ""
|
||||
"This feature is experimental. We can't import contacts from the OStatus "
|
||||
"network (GNU Social/Statusnet) or from Diaspora"
|
||||
msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren"
|
||||
|
||||
#: mod/uimport.php:75
|
||||
msgid "Account file"
|
||||
msgstr "Account Datei"
|
||||
|
||||
#: mod/uimport.php:75
|
||||
msgid ""
|
||||
"To export your account, go to \"Settings->Export your personal data\" and "
|
||||
"select \"Export account\""
|
||||
msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""
|
||||
|
||||
#: mod/unfollow.php:33
|
||||
msgid "Contact wasn't found or can't be unfollowed."
|
||||
msgstr "Der Kontakt konnte nicht gefunden oder nicht entfolgt werden."
|
||||
|
||||
#: mod/unfollow.php:46
|
||||
msgid "Contact unfollowed"
|
||||
msgstr "Kontakt wird nicht mehr gefolgt"
|
||||
|
||||
#: mod/unfollow.php:72
|
||||
msgid "You aren't a friend of this contact."
|
||||
msgstr "Du hast keine beidseitige Freundschaft mit diesem Kontakt."
|
||||
|
||||
#: mod/unfollow.php:78
|
||||
msgid "Unfollowing is currently not supported by your network."
|
||||
msgstr "Bei diesem Netzwerk wird das Entfolgen derzeit nicht unterstützt."
|
||||
|
||||
#: mod/update_community.php:22 mod/update_display.php:26
|
||||
#: mod/update_network.php:30 mod/update_notes.php:39 mod/update_profile.php:38
|
||||
msgid "[Embedded content - reload page to view]"
|
||||
msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
|
||||
|
||||
#: mod/videos.php:131
|
||||
msgid "Do you really want to delete this video?"
|
||||
msgstr "Möchtest Du dieses Video wirklich löschen?"
|
||||
|
||||
#: mod/videos.php:133
|
||||
#: mod/videos.php:136
|
||||
msgid "Delete Video"
|
||||
msgstr "Video Löschen"
|
||||
|
||||
#: mod/videos.php:212
|
||||
#: mod/videos.php:215
|
||||
msgid "No videos selected"
|
||||
msgstr "Keine Videos ausgewählt"
|
||||
|
||||
#: mod/videos.php:406
|
||||
#: mod/videos.php:403
|
||||
msgid "Recent Videos"
|
||||
msgstr "Neueste Videos"
|
||||
|
||||
#: mod/videos.php:408
|
||||
#: mod/videos.php:405
|
||||
msgid "Upload New Videos"
|
||||
msgstr "Neues Video hochladen"
|
||||
|
||||
#: mod/wall_attach.php:19 mod/wall_attach.php:27 mod/wall_attach.php:78
|
||||
#: mod/wall_upload.php:37 mod/wall_upload.php:53 mod/wall_upload.php:111
|
||||
#: mod/wall_upload.php:151 mod/wall_upload.php:154
|
||||
#: mod/viewcontacts.php:80
|
||||
msgid "No contacts."
|
||||
msgstr "Keine Kontakte."
|
||||
|
||||
#: mod/viewsrc.php:9
|
||||
msgid "Access denied."
|
||||
msgstr "Zugriff verweigert."
|
||||
|
||||
#: mod/wall_attach.php:21 mod/wall_attach.php:29 mod/wall_attach.php:80
|
||||
#: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112
|
||||
#: mod/wall_upload.php:152 mod/wall_upload.php:155
|
||||
msgid "Invalid request."
|
||||
msgstr "Ungültige Anfrage"
|
||||
|
||||
#: mod/wall_attach.php:96
|
||||
#: mod/wall_attach.php:98
|
||||
msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
|
||||
msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."
|
||||
|
||||
#: mod/wall_attach.php:96
|
||||
#: mod/wall_attach.php:98
|
||||
msgid "Or - did you try to upload an empty file?"
|
||||
msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
|
||||
|
||||
#: mod/wall_attach.php:107
|
||||
#: mod/wall_attach.php:109
|
||||
#, php-format
|
||||
msgid "File exceeds size limit of %s"
|
||||
msgstr "Die Datei ist größer als das erlaubte Limit von %s"
|
||||
|
||||
#: mod/wall_attach.php:131 mod/wall_attach.php:147
|
||||
#: mod/wall_attach.php:133 mod/wall_attach.php:149
|
||||
msgid "File upload failed."
|
||||
msgstr "Hochladen der Datei fehlgeschlagen."
|
||||
|
||||
#: object/Item.php:106
|
||||
msgid "This entry was edited"
|
||||
msgstr "Dieser Beitrag wurde bearbeitet."
|
||||
|
||||
#: object/Item.php:151
|
||||
msgid "save to folder"
|
||||
msgstr "In Ordner speichern"
|
||||
|
||||
#: object/Item.php:221
|
||||
msgid "I will attend"
|
||||
msgstr "Ich werde teilnehmen"
|
||||
|
||||
#: object/Item.php:221
|
||||
msgid "I will not attend"
|
||||
msgstr "Ich werde nicht teilnehmen"
|
||||
|
||||
#: object/Item.php:221
|
||||
msgid "I might attend"
|
||||
msgstr "Ich werde eventuell teilnehmen"
|
||||
|
||||
#: object/Item.php:247
|
||||
msgid "add star"
|
||||
msgstr "markieren"
|
||||
|
||||
#: object/Item.php:248
|
||||
msgid "remove star"
|
||||
msgstr "Markierung entfernen"
|
||||
|
||||
#: object/Item.php:249
|
||||
msgid "toggle star status"
|
||||
msgstr "Markierung umschalten"
|
||||
|
||||
#: object/Item.php:252
|
||||
msgid "starred"
|
||||
msgstr "markiert"
|
||||
|
||||
#: object/Item.php:257
|
||||
msgid "ignore thread"
|
||||
msgstr "Thread ignorieren"
|
||||
|
||||
#: object/Item.php:258
|
||||
msgid "unignore thread"
|
||||
msgstr "Thread nicht mehr ignorieren"
|
||||
|
||||
#: object/Item.php:259
|
||||
msgid "toggle ignore status"
|
||||
msgstr "Ignoriert-Status ein-/ausschalten"
|
||||
|
||||
#: object/Item.php:269
|
||||
msgid "add tag"
|
||||
msgstr "Tag hinzufügen"
|
||||
|
||||
#: object/Item.php:280
|
||||
msgid "like"
|
||||
msgstr "mag ich"
|
||||
|
||||
#: object/Item.php:281
|
||||
msgid "dislike"
|
||||
msgstr "mag ich nicht"
|
||||
|
||||
#: object/Item.php:284
|
||||
msgid "Share this"
|
||||
msgstr "Weitersagen"
|
||||
|
||||
#: object/Item.php:284
|
||||
msgid "share"
|
||||
msgstr "Teilen"
|
||||
|
||||
#: object/Item.php:352
|
||||
msgid "to"
|
||||
msgstr "zu"
|
||||
|
||||
#: object/Item.php:353
|
||||
msgid "via"
|
||||
msgstr "via"
|
||||
|
||||
#: object/Item.php:354
|
||||
msgid "Wall-to-Wall"
|
||||
msgstr "Wall-to-Wall"
|
||||
|
||||
#: object/Item.php:355
|
||||
msgid "via Wall-To-Wall:"
|
||||
msgstr "via Wall-To-Wall:"
|
||||
|
||||
#: object/Item.php:414
|
||||
#: mod/wallmessage.php:46 mod/wallmessage.php:110
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
msgstr[0] "%d Kommentar"
|
||||
msgstr[1] "%d Kommentare"
|
||||
msgid "Number of daily wall messages for %s exceeded. Message failed."
|
||||
msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."
|
||||
|
||||
#: object/Item.php:703
|
||||
msgid "Bold"
|
||||
msgstr "Fett"
|
||||
#: mod/wallmessage.php:57
|
||||
msgid "Unable to check your home location."
|
||||
msgstr "Konnte Deinen Heimatort nicht bestimmen."
|
||||
|
||||
#: object/Item.php:704
|
||||
msgid "Italic"
|
||||
msgstr "Kursiv"
|
||||
#: mod/wallmessage.php:84 mod/wallmessage.php:93
|
||||
msgid "No recipient."
|
||||
msgstr "Kein Empfänger."
|
||||
|
||||
#: object/Item.php:705
|
||||
msgid "Underline"
|
||||
msgstr "Unterstrichen"
|
||||
#: mod/wallmessage.php:131
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you wish for %s to respond, please check that the privacy settings on "
|
||||
"your site allow private mail from unknown senders."
|
||||
msgstr "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."
|
||||
|
||||
#: object/Item.php:706
|
||||
msgid "Quote"
|
||||
msgstr "Zitat"
|
||||
|
||||
#: object/Item.php:707
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#: object/Item.php:708
|
||||
msgid "Image"
|
||||
msgstr "Bild"
|
||||
|
||||
#: object/Item.php:709
|
||||
msgid "Link"
|
||||
msgstr "Link"
|
||||
|
||||
#: object/Item.php:710
|
||||
msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
#: view/theme/duepuntozero/config.php:48
|
||||
#: view/theme/duepuntozero/config.php:50
|
||||
msgid "greenzero"
|
||||
msgstr "greenzero"
|
||||
|
||||
#: view/theme/duepuntozero/config.php:49
|
||||
#: view/theme/duepuntozero/config.php:51
|
||||
msgid "purplezero"
|
||||
msgstr "purplezero"
|
||||
|
||||
#: view/theme/duepuntozero/config.php:50
|
||||
#: view/theme/duepuntozero/config.php:52
|
||||
msgid "easterbunny"
|
||||
msgstr "easterbunny"
|
||||
|
||||
#: view/theme/duepuntozero/config.php:51
|
||||
#: view/theme/duepuntozero/config.php:53
|
||||
msgid "darkzero"
|
||||
msgstr "darkzero"
|
||||
|
||||
#: view/theme/duepuntozero/config.php:52
|
||||
#: view/theme/duepuntozero/config.php:54
|
||||
msgid "comix"
|
||||
msgstr "comix"
|
||||
|
||||
#: view/theme/duepuntozero/config.php:53
|
||||
#: view/theme/duepuntozero/config.php:55
|
||||
msgid "slackr"
|
||||
msgstr "slackr"
|
||||
|
||||
#: view/theme/duepuntozero/config.php:68
|
||||
#: view/theme/duepuntozero/config.php:70
|
||||
msgid "Variations"
|
||||
msgstr "Variationen"
|
||||
|
||||
|
|
@ -8989,77 +8797,137 @@ msgstr "Transparanz des Hintergrunds von Beiträgem"
|
|||
msgid "Set the background image"
|
||||
msgstr "Hintergrundbild festlegen"
|
||||
|
||||
#: view/theme/frio/theme.php:231
|
||||
#: view/theme/frio/theme.php:234
|
||||
msgid "Guest"
|
||||
msgstr "Gast"
|
||||
|
||||
#: view/theme/frio/theme.php:237
|
||||
#: view/theme/frio/theme.php:240
|
||||
msgid "Visitor"
|
||||
msgstr "Besucher"
|
||||
|
||||
#: view/theme/quattro/config.php:74
|
||||
#: view/theme/quattro/config.php:76
|
||||
msgid "Alignment"
|
||||
msgstr "Ausrichtung"
|
||||
|
||||
#: view/theme/quattro/config.php:74
|
||||
#: view/theme/quattro/config.php:76
|
||||
msgid "Left"
|
||||
msgstr "Links"
|
||||
|
||||
#: view/theme/quattro/config.php:74
|
||||
#: view/theme/quattro/config.php:76
|
||||
msgid "Center"
|
||||
msgstr "Mitte"
|
||||
|
||||
#: view/theme/quattro/config.php:75
|
||||
#: view/theme/quattro/config.php:77
|
||||
msgid "Color scheme"
|
||||
msgstr "Farbschema"
|
||||
|
||||
#: view/theme/quattro/config.php:76
|
||||
#: view/theme/quattro/config.php:78
|
||||
msgid "Posts font size"
|
||||
msgstr "Schriftgröße in Beiträgen"
|
||||
|
||||
#: view/theme/quattro/config.php:77
|
||||
#: view/theme/quattro/config.php:79
|
||||
msgid "Textareas font size"
|
||||
msgstr "Schriftgröße in Eingabefeldern"
|
||||
|
||||
#: view/theme/vier/theme.php:144 view/theme/vier/config.php:119
|
||||
#: view/theme/vier/config.php:73
|
||||
msgid "Comma separated list of helper forums"
|
||||
msgstr "Komma-Separierte Liste der Helfer-Foren"
|
||||
|
||||
#: view/theme/vier/config.php:120
|
||||
msgid "Set style"
|
||||
msgstr "Stil auswählen"
|
||||
|
||||
#: view/theme/vier/config.php:121
|
||||
msgid "Community Pages"
|
||||
msgstr "Foren"
|
||||
|
||||
#: view/theme/vier/config.php:122 view/theme/vier/theme.php:147
|
||||
msgid "Community Profiles"
|
||||
msgstr "Community-Profile"
|
||||
|
||||
#: view/theme/vier/theme.php:174 view/theme/vier/config.php:123
|
||||
msgid "Last users"
|
||||
msgstr "Letzte Nutzer"
|
||||
#: view/theme/vier/config.php:123
|
||||
msgid "Help or @NewHere ?"
|
||||
msgstr "Hilfe oder @NewHere"
|
||||
|
||||
#: view/theme/vier/theme.php:192 view/theme/vier/config.php:122
|
||||
#: view/theme/vier/config.php:124 view/theme/vier/theme.php:385
|
||||
msgid "Connect Services"
|
||||
msgstr "Verbinde Dienste"
|
||||
|
||||
#: view/theme/vier/config.php:125 view/theme/vier/theme.php:195
|
||||
msgid "Find Friends"
|
||||
msgstr "Kontakte finden"
|
||||
|
||||
#: view/theme/vier/theme.php:193
|
||||
#: view/theme/vier/config.php:126 view/theme/vier/theme.php:177
|
||||
msgid "Last users"
|
||||
msgstr "Letzte Nutzer"
|
||||
|
||||
#: view/theme/vier/theme.php:196
|
||||
msgid "Local Directory"
|
||||
msgstr "Lokales Verzeichnis"
|
||||
|
||||
#: view/theme/vier/theme.php:251 src/Content/ForumManager.php:123
|
||||
msgid "External link to forum"
|
||||
msgstr "Externer Link zum Forum"
|
||||
|
||||
#: view/theme/vier/theme.php:285
|
||||
msgid "Quick Start"
|
||||
msgstr "Schnell-Start"
|
||||
|
||||
#: view/theme/vier/theme.php:385 view/theme/vier/config.php:121
|
||||
msgid "Connect Services"
|
||||
msgstr "Verbinde Dienste"
|
||||
#: src/Core/NotificationsManager.php:176
|
||||
msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: view/theme/vier/config.php:71
|
||||
msgid "Comma separated list of helper forums"
|
||||
msgstr "Komma-Separierte Liste der Helfer-Foren"
|
||||
#: src/Core/NotificationsManager.php:261 src/Core/NotificationsManager.php:273
|
||||
#, php-format
|
||||
msgid "%s commented on %s's post"
|
||||
msgstr "%s hat %ss Beitrag kommentiert"
|
||||
|
||||
#: view/theme/vier/config.php:117
|
||||
msgid "Set style"
|
||||
msgstr "Stil auswählen"
|
||||
#: src/Core/NotificationsManager.php:272
|
||||
#, php-format
|
||||
msgid "%s created a new post"
|
||||
msgstr "%s hat einen neuen Beitrag erstellt"
|
||||
|
||||
#: view/theme/vier/config.php:118
|
||||
msgid "Community Pages"
|
||||
msgstr "Foren"
|
||||
#: src/Core/NotificationsManager.php:286
|
||||
#, php-format
|
||||
msgid "%s liked %s's post"
|
||||
msgstr "%s mag %ss Beitrag"
|
||||
|
||||
#: view/theme/vier/config.php:120
|
||||
msgid "Help or @NewHere ?"
|
||||
msgstr "Hilfe oder @NewHere"
|
||||
#: src/Core/NotificationsManager.php:299
|
||||
#, php-format
|
||||
msgid "%s disliked %s's post"
|
||||
msgstr "%s mag %ss Beitrag nicht"
|
||||
|
||||
#: src/Core/NotificationsManager.php:312
|
||||
#, php-format
|
||||
msgid "%s is attending %s's event"
|
||||
msgstr "%s nimmt an %s's Event teil"
|
||||
|
||||
#: src/Core/NotificationsManager.php:325
|
||||
#, php-format
|
||||
msgid "%s is not attending %s's event"
|
||||
msgstr "%s nimmt nicht an %s's Event teil"
|
||||
|
||||
#: src/Core/NotificationsManager.php:338
|
||||
#, php-format
|
||||
msgid "%s may attend %s's event"
|
||||
msgstr "%s nimmt eventuell an %s's Event teil"
|
||||
|
||||
#: src/Core/NotificationsManager.php:355
|
||||
#, php-format
|
||||
msgid "%s is now friends with %s"
|
||||
msgstr "%s ist jetzt mit %s befreundet"
|
||||
|
||||
#: src/Core/NotificationsManager.php:829
|
||||
msgid "Friend Suggestion"
|
||||
msgstr "Kontaktvorschlag"
|
||||
|
||||
#: src/Core/NotificationsManager.php:856
|
||||
msgid "Friend/Connect Request"
|
||||
msgstr "Kontakt-/Freundschaftsanfrage"
|
||||
|
||||
#: src/Core/NotificationsManager.php:856
|
||||
msgid "New Follower"
|
||||
msgstr "Neuer Bewunderer"
|
||||
|
||||
#: src/App.php:522
|
||||
msgid "Delete this item?"
|
||||
|
|
@ -9069,47 +8937,221 @@ msgstr "Diesen Beitrag löschen?"
|
|||
msgid "show fewer"
|
||||
msgstr "weniger anzeigen"
|
||||
|
||||
#: boot.php:738
|
||||
#: src/Object/Contact.php:440
|
||||
msgid "Drop Contact"
|
||||
msgstr "Kontakt löschen"
|
||||
|
||||
#: src/Object/Contact.php:807
|
||||
msgid "Organisation"
|
||||
msgstr "Organisation"
|
||||
|
||||
#: src/Object/Contact.php:810
|
||||
msgid "News"
|
||||
msgstr "Nachrichten"
|
||||
|
||||
#: src/Object/Contact.php:813
|
||||
msgid "Forum"
|
||||
msgstr "Forum"
|
||||
|
||||
#: src/Object/Item.php:123
|
||||
msgid "This entry was edited"
|
||||
msgstr "Dieser Beitrag wurde bearbeitet."
|
||||
|
||||
#: src/Object/Item.php:168
|
||||
msgid "save to folder"
|
||||
msgstr "In Ordner speichern"
|
||||
|
||||
#: src/Object/Item.php:235
|
||||
msgid "I will attend"
|
||||
msgstr "Ich werde teilnehmen"
|
||||
|
||||
#: src/Object/Item.php:235
|
||||
msgid "I will not attend"
|
||||
msgstr "Ich werde nicht teilnehmen"
|
||||
|
||||
#: src/Object/Item.php:235
|
||||
msgid "I might attend"
|
||||
msgstr "Ich werde eventuell teilnehmen"
|
||||
|
||||
#: src/Object/Item.php:261
|
||||
msgid "add star"
|
||||
msgstr "markieren"
|
||||
|
||||
#: src/Object/Item.php:262
|
||||
msgid "remove star"
|
||||
msgstr "Markierung entfernen"
|
||||
|
||||
#: src/Object/Item.php:263
|
||||
msgid "toggle star status"
|
||||
msgstr "Markierung umschalten"
|
||||
|
||||
#: src/Object/Item.php:266
|
||||
msgid "starred"
|
||||
msgstr "markiert"
|
||||
|
||||
#: src/Object/Item.php:271
|
||||
msgid "ignore thread"
|
||||
msgstr "Thread ignorieren"
|
||||
|
||||
#: src/Object/Item.php:272
|
||||
msgid "unignore thread"
|
||||
msgstr "Thread nicht mehr ignorieren"
|
||||
|
||||
#: src/Object/Item.php:273
|
||||
msgid "toggle ignore status"
|
||||
msgstr "Ignoriert-Status ein-/ausschalten"
|
||||
|
||||
#: src/Object/Item.php:283
|
||||
msgid "add tag"
|
||||
msgstr "Tag hinzufügen"
|
||||
|
||||
#: src/Object/Item.php:294
|
||||
msgid "like"
|
||||
msgstr "mag ich"
|
||||
|
||||
#: src/Object/Item.php:295
|
||||
msgid "dislike"
|
||||
msgstr "mag ich nicht"
|
||||
|
||||
#: src/Object/Item.php:298
|
||||
msgid "Share this"
|
||||
msgstr "Weitersagen"
|
||||
|
||||
#: src/Object/Item.php:298
|
||||
msgid "share"
|
||||
msgstr "Teilen"
|
||||
|
||||
#: src/Object/Item.php:357
|
||||
msgid "to"
|
||||
msgstr "zu"
|
||||
|
||||
#: src/Object/Item.php:358
|
||||
msgid "via"
|
||||
msgstr "via"
|
||||
|
||||
#: src/Object/Item.php:359
|
||||
msgid "Wall-to-Wall"
|
||||
msgstr "Wall-to-Wall"
|
||||
|
||||
#: src/Object/Item.php:360
|
||||
msgid "via Wall-To-Wall:"
|
||||
msgstr "via Wall-To-Wall:"
|
||||
|
||||
#: src/Object/Item.php:419
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
msgstr[0] "%d Kommentar"
|
||||
msgstr[1] "%d Kommentare"
|
||||
|
||||
#: src/Object/Item.php:788
|
||||
msgid "Bold"
|
||||
msgstr "Fett"
|
||||
|
||||
#: src/Object/Item.php:789
|
||||
msgid "Italic"
|
||||
msgstr "Kursiv"
|
||||
|
||||
#: src/Object/Item.php:790
|
||||
msgid "Underline"
|
||||
msgstr "Unterstrichen"
|
||||
|
||||
#: src/Object/Item.php:791
|
||||
msgid "Quote"
|
||||
msgstr "Zitat"
|
||||
|
||||
#: src/Object/Item.php:792
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#: src/Object/Item.php:793
|
||||
msgid "Image"
|
||||
msgstr "Bild"
|
||||
|
||||
#: src/Object/Item.php:794
|
||||
msgid "Link"
|
||||
msgstr "Link"
|
||||
|
||||
#: src/Object/Item.php:795
|
||||
msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
#: src/Protocol/DFRN.php:1416
|
||||
#, php-format
|
||||
msgid "%s\\'s birthday"
|
||||
msgstr "%ss Geburtstag"
|
||||
|
||||
#: src/Protocol/Diaspora.php:2488
|
||||
msgid "Sharing notification from Diaspora network"
|
||||
msgstr "Freigabe-Benachrichtigung von Diaspora"
|
||||
|
||||
#: src/Protocol/Diaspora.php:3530
|
||||
msgid "Attachments:"
|
||||
msgstr "Anhänge:"
|
||||
|
||||
#: src/Protocol/OStatus.php:1786
|
||||
#, php-format
|
||||
msgid "%s is now following %s."
|
||||
msgstr "%s folgt nun %s"
|
||||
|
||||
#: src/Protocol/OStatus.php:1787
|
||||
msgid "following"
|
||||
msgstr "folgen"
|
||||
|
||||
#: src/Protocol/OStatus.php:1790
|
||||
#, php-format
|
||||
msgid "%s stopped following %s."
|
||||
msgstr "%s hat aufgehört %s zu folgen"
|
||||
|
||||
#: src/Protocol/OStatus.php:1791
|
||||
msgid "stopped following"
|
||||
msgstr "wird nicht mehr gefolgt"
|
||||
|
||||
#: src/Worker/Delivery.php:421
|
||||
msgid "(no subject)"
|
||||
msgstr "(kein Betreff)"
|
||||
|
||||
#: boot.php:762
|
||||
#, php-format
|
||||
msgid "Update %s failed. See error logs."
|
||||
msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
|
||||
|
||||
#: boot.php:850
|
||||
#: boot.php:873
|
||||
msgid "Create a New Account"
|
||||
msgstr "Neues Konto erstellen"
|
||||
|
||||
#: boot.php:878
|
||||
#: boot.php:905
|
||||
msgid "Password: "
|
||||
msgstr "Passwort: "
|
||||
|
||||
#: boot.php:879
|
||||
#: boot.php:906
|
||||
msgid "Remember me"
|
||||
msgstr "Anmeldedaten merken"
|
||||
|
||||
#: boot.php:882
|
||||
#: boot.php:909
|
||||
msgid "Or login using OpenID: "
|
||||
msgstr "Oder melde Dich mit Deiner OpenID an: "
|
||||
|
||||
#: boot.php:888
|
||||
#: boot.php:915
|
||||
msgid "Forgot your password?"
|
||||
msgstr "Passwort vergessen?"
|
||||
|
||||
#: boot.php:891
|
||||
#: boot.php:918
|
||||
msgid "Website Terms of Service"
|
||||
msgstr "Website Nutzungsbedingungen"
|
||||
|
||||
#: boot.php:892
|
||||
#: boot.php:919
|
||||
msgid "terms of service"
|
||||
msgstr "Nutzungsbedingungen"
|
||||
|
||||
#: boot.php:894
|
||||
#: boot.php:921
|
||||
msgid "Website Privacy Policy"
|
||||
msgstr "Website Datenschutzerklärung"
|
||||
|
||||
#: boot.php:895
|
||||
#: boot.php:922
|
||||
msgid "privacy policy"
|
||||
msgstr "Datenschutzerklärung"
|
||||
|
||||
#: index.php:438
|
||||
#: index.php:427
|
||||
msgid "toggle mobile"
|
||||
msgstr "auf/von Mobile Ansicht wechseln"
|
||||
|
|
|
|||
|
|
@ -5,78 +5,6 @@ function string_plural_select_de($n){
|
|||
return ($n != 1);;
|
||||
}}
|
||||
;
|
||||
$a->strings["General Features"] = "Allgemeine Features";
|
||||
$a->strings["Multiple Profiles"] = "Mehrere Profile";
|
||||
$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen";
|
||||
$a->strings["Photo Location"] = "Aufnahmeort";
|
||||
$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden.";
|
||||
$a->strings["Export Public Calendar"] = "Öffentlichen Kalender exportieren";
|
||||
$a->strings["Ability for visitors to download the public calendar"] = "Möglichkeit für Besucher den öffentlichen Kalender herunter zu laden";
|
||||
$a->strings["Post Composition Features"] = "Beitragserstellung Features";
|
||||
$a->strings["Post Preview"] = "Beitragsvorschau";
|
||||
$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben.";
|
||||
$a->strings["Auto-mention Forums"] = "Foren automatisch erwähnen";
|
||||
$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde.";
|
||||
$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste";
|
||||
$a->strings["Search by Date"] = "Archiv";
|
||||
$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren";
|
||||
$a->strings["List Forums"] = "Zeige Foren";
|
||||
$a->strings["Enable widget to display the forums your are connected with"] = "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen";
|
||||
$a->strings["Group Filter"] = "Gruppen Filter";
|
||||
$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren.";
|
||||
$a->strings["Network Filter"] = "Netzwerk Filter";
|
||||
$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren.";
|
||||
$a->strings["Saved Searches"] = "Gespeicherte Suchen";
|
||||
$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung.";
|
||||
$a->strings["Network Tabs"] = "Netzwerk Reiter";
|
||||
$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich";
|
||||
$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast";
|
||||
$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue";
|
||||
$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden";
|
||||
$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links";
|
||||
$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält";
|
||||
$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare";
|
||||
$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen";
|
||||
$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen";
|
||||
$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren";
|
||||
$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren.";
|
||||
$a->strings["Tagging"] = "Tagging";
|
||||
$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen.";
|
||||
$a->strings["Post Categories"] = "Beitragskategorien";
|
||||
$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen";
|
||||
$a->strings["Saved Folders"] = "Gespeicherte Ordner";
|
||||
$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren";
|
||||
$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'";
|
||||
$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'";
|
||||
$a->strings["Star Posts"] = "Beiträge Markieren";
|
||||
$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren";
|
||||
$a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stumm schalten";
|
||||
$a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können";
|
||||
$a->strings["Advanced Profile Settings"] = "Erweiterte Profil-Einstellungen";
|
||||
$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite";
|
||||
$a->strings["Miscellaneous"] = "Verschiedenes";
|
||||
$a->strings["Birthday:"] = "Geburtstag:";
|
||||
$a->strings["Age: "] = "Alter: ";
|
||||
$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD oder MM-DD";
|
||||
$a->strings["never"] = "nie";
|
||||
$a->strings["less than a second ago"] = "vor weniger als einer Sekunde";
|
||||
$a->strings["year"] = "Jahr";
|
||||
$a->strings["years"] = "Jahre";
|
||||
$a->strings["month"] = "Monat";
|
||||
$a->strings["months"] = "Monate";
|
||||
$a->strings["week"] = "Woche";
|
||||
$a->strings["weeks"] = "Wochen";
|
||||
$a->strings["day"] = "Tag";
|
||||
$a->strings["days"] = "Tage";
|
||||
$a->strings["hour"] = "Stunde";
|
||||
$a->strings["hours"] = "Stunden";
|
||||
$a->strings["minute"] = "Minute";
|
||||
$a->strings["minutes"] = "Minuten";
|
||||
$a->strings["second"] = "Sekunde";
|
||||
$a->strings["seconds"] = "Sekunden";
|
||||
$a->strings["%1\$d %2\$s ago"] = "vor %1\$d %2\$s";
|
||||
$a->strings["%s's birthday"] = "%ss Geburtstag";
|
||||
$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
|
||||
$a->strings["Male"] = "Männlich";
|
||||
$a->strings["Female"] = "Weiblich";
|
||||
$a->strings["Currently Male"] = "Momentan männlich";
|
||||
|
|
@ -138,213 +66,6 @@ $a->strings["Uncertain"] = "Unsicher";
|
|||
$a->strings["It's complicated"] = "Ist kompliziert";
|
||||
$a->strings["Don't care"] = "Ist mir nicht wichtig";
|
||||
$a->strings["Ask me"] = "Frag mich";
|
||||
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
|
||||
$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
|
||||
$a->strings["Everybody"] = "Alle Kontakte";
|
||||
$a->strings["edit"] = "bearbeiten";
|
||||
$a->strings["Groups"] = "Gruppen";
|
||||
$a->strings["Edit groups"] = "Gruppen bearbeiten";
|
||||
$a->strings["Edit group"] = "Gruppe bearbeiten";
|
||||
$a->strings["Create a new group"] = "Neue Gruppe erstellen";
|
||||
$a->strings["Group Name: "] = "Gruppenname:";
|
||||
$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
|
||||
$a->strings["add"] = "hinzufügen";
|
||||
$a->strings["Forums"] = "Foren";
|
||||
$a->strings["External link to forum"] = "Externer Link zum Forum";
|
||||
$a->strings["show more"] = "mehr anzeigen";
|
||||
$a->strings["System"] = "System";
|
||||
$a->strings["Network"] = "Netzwerk";
|
||||
$a->strings["Personal"] = "Persönlich";
|
||||
$a->strings["Home"] = "Pinnwand";
|
||||
$a->strings["Introductions"] = "Kontaktanfragen";
|
||||
$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
|
||||
$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
|
||||
$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag";
|
||||
$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht";
|
||||
$a->strings["%s is attending %s's event"] = "%s nimmt an %s's Event teil";
|
||||
$a->strings["%s is not attending %s's event"] = "%s nimmt nicht an %s's Event teil";
|
||||
$a->strings["%s may attend %s's event"] = "%s nimmt eventuell an %s's Event teil";
|
||||
$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
|
||||
$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
|
||||
$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
|
||||
$a->strings["New Follower"] = "Neuer Bewunderer";
|
||||
$a->strings["Logged out."] = "Abgemeldet.";
|
||||
$a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
|
||||
$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast.";
|
||||
$a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
|
||||
$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
|
||||
$a->strings["Starts:"] = "Beginnt:";
|
||||
$a->strings["Finishes:"] = "Endet:";
|
||||
$a->strings["Location:"] = "Ort:";
|
||||
$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen";
|
||||
$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
|
||||
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
|
||||
$a->strings["Connect"] = "Verbinden";
|
||||
$a->strings["%d invitation available"] = array(
|
||||
0 => "%d Einladung verfügbar",
|
||||
1 => "%d Einladungen verfügbar",
|
||||
);
|
||||
$a->strings["Find People"] = "Leute finden";
|
||||
$a->strings["Enter name or interest"] = "Name oder Interessen eingeben";
|
||||
$a->strings["Connect/Follow"] = "Verbinden/Folgen";
|
||||
$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln";
|
||||
$a->strings["Find"] = "Finde";
|
||||
$a->strings["Friend Suggestions"] = "Kontaktvorschläge";
|
||||
$a->strings["Similar Interests"] = "Ähnliche Interessen";
|
||||
$a->strings["Random Profile"] = "Zufälliges Profil";
|
||||
$a->strings["Invite Friends"] = "Freunde einladen";
|
||||
$a->strings["View Global Directory"] = "Globales Verzeichnis betrachten";
|
||||
$a->strings["Networks"] = "Netzwerke";
|
||||
$a->strings["All Networks"] = "Alle Netzwerke";
|
||||
$a->strings["Everything"] = "Alles";
|
||||
$a->strings["Categories"] = "Kategorien";
|
||||
$a->strings["%d contact in common"] = array(
|
||||
0 => "%d gemeinsamer Kontakt",
|
||||
1 => "%d gemeinsame Kontakte",
|
||||
);
|
||||
$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung";
|
||||
$a->strings["Thank You,"] = "Danke,";
|
||||
$a->strings["%s Administrator"] = "der Administrator von %s";
|
||||
$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrator";
|
||||
$a->strings["noreply"] = "noreply";
|
||||
$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
|
||||
$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Nachricht erhalten von %s";
|
||||
$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat Dir eine neue private Nachricht auf %2\$s geschickt.";
|
||||
$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte Dir %2\$s.";
|
||||
$a->strings["a private message"] = "eine private Nachricht";
|
||||
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten.";
|
||||
$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]a %3\$s[/url]";
|
||||
$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$ss %4\$s[/url]";
|
||||
$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]Deinen %3\$s[/url]";
|
||||
$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica-Meldung] Kommentar zum Beitrag #%1\$d von %2\$s";
|
||||
$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem Du folgst.";
|
||||
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren.";
|
||||
$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben";
|
||||
$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb auf %2\$s auf Deine Pinnwand";
|
||||
$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]Deiner Pinnwand[/url] gepostet";
|
||||
$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica-Meldung] %s hat Dich erwähnt";
|
||||
$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte Dich auf %2\$s";
|
||||
$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]erwähnte Dich[/url].";
|
||||
$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt";
|
||||
$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s hat einen neuen Beitrag auf %2\$s geteilt";
|
||||
$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]hat einen Beitrag geteilt[/url].";
|
||||
$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica-Meldung] %1\$s hat Dich angestupst";
|
||||
$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat Dich auf %2\$s angestupst";
|
||||
$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat Dich angestupst[/url].";
|
||||
$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica-Meldung] %s hat Deinen Beitrag getaggt";
|
||||
$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte Deinen Beitrag auf %2\$s";
|
||||
$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s erwähnte [url=%2\$s]Deinen Beitrag[/url]";
|
||||
$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica-Meldung] Kontaktanfrage erhalten";
|
||||
$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten";
|
||||
$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten.";
|
||||
$a->strings["You may visit their profile at %s"] = "Hier kannst Du das Profil betrachten: %s";
|
||||
$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen.";
|
||||
$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir";
|
||||
$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s teilt mit Dir auf %2\$s";
|
||||
$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf ";
|
||||
$a->strings["You have a new follower at %2\$s : %1\$s"] = "Du hast einen neuen Kontakt auf %2\$s: %1\$s";
|
||||
$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten";
|
||||
$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Kontakt-Vorschlag von '%1\$s' auf %2\$s erhalten";
|
||||
$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Kontakt-Vorschlag[/url] %2\$s von %3\$s erhalten.";
|
||||
$a->strings["Name:"] = "Name:";
|
||||
$a->strings["Photo:"] = "Foto:";
|
||||
$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen.";
|
||||
$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt";
|
||||
$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' hat Deine Kontaktanfrage auf %2\$s bestätigt";
|
||||
$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hat Deine [url=%1\$s]Kontaktanfrage[/url] akzeptiert.";
|
||||
$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen.";
|
||||
$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst.";
|
||||
$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' hat sich entschieden Dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen.";
|
||||
$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "'%1\$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. ";
|
||||
$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst.";
|
||||
$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Benachrichtigung] Registrationsanfrage";
|
||||
$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Du hast eine Registrierungsanfrage von %2\$s auf '%1\$s' erhalten";
|
||||
$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Registrierungsanfrage[/url] von %2\$s erhalten.";
|
||||
$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Kompletter Name:\t%1\$s\\nURL der Seite:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)";
|
||||
$a->strings["Please visit %s to approve or reject the request."] = "Bitte besuche %s um die Anfrage zu bearbeiten.";
|
||||
$a->strings["Embedded content"] = "Eingebetteter Inhalt";
|
||||
$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
|
||||
$a->strings["Welcome "] = "Willkommen ";
|
||||
$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
|
||||
$a->strings["Welcome back "] = "Willkommen zurück ";
|
||||
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden).";
|
||||
$a->strings["Contact Photos"] = "Kontaktbilder";
|
||||
$a->strings["Nothing new here"] = "Keine Neuigkeiten";
|
||||
$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
|
||||
$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content";
|
||||
$a->strings["Logout"] = "Abmelden";
|
||||
$a->strings["End this session"] = "Diese Sitzung beenden";
|
||||
$a->strings["Status"] = "Status";
|
||||
$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
|
||||
$a->strings["Profile"] = "Profil";
|
||||
$a->strings["Your profile page"] = "Deine Profilseite";
|
||||
$a->strings["Photos"] = "Bilder";
|
||||
$a->strings["Your photos"] = "Deine Fotos";
|
||||
$a->strings["Videos"] = "Videos";
|
||||
$a->strings["Your videos"] = "Deine Videos";
|
||||
$a->strings["Events"] = "Veranstaltungen";
|
||||
$a->strings["Your events"] = "Deine Ereignisse";
|
||||
$a->strings["Personal notes"] = "Persönliche Notizen";
|
||||
$a->strings["Your personal notes"] = "Deine persönlichen Notizen";
|
||||
$a->strings["Login"] = "Anmeldung";
|
||||
$a->strings["Sign in"] = "Anmelden";
|
||||
$a->strings["Home Page"] = "Homepage";
|
||||
$a->strings["Register"] = "Registrieren";
|
||||
$a->strings["Create an account"] = "Nutzerkonto erstellen";
|
||||
$a->strings["Help"] = "Hilfe";
|
||||
$a->strings["Help and documentation"] = "Hilfe und Dokumentation";
|
||||
$a->strings["Apps"] = "Apps";
|
||||
$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele";
|
||||
$a->strings["Search"] = "Suche";
|
||||
$a->strings["Search site content"] = "Inhalt der Seite durchsuchen";
|
||||
$a->strings["Full Text"] = "Volltext";
|
||||
$a->strings["Tags"] = "Tags";
|
||||
$a->strings["Contacts"] = "Kontakte";
|
||||
$a->strings["Community"] = "Gemeinschaft";
|
||||
$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite";
|
||||
$a->strings["Conversations on the network"] = "Unterhaltungen im Netzwerk";
|
||||
$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
|
||||
$a->strings["Directory"] = "Verzeichnis";
|
||||
$a->strings["People directory"] = "Nutzerverzeichnis";
|
||||
$a->strings["Information"] = "Information";
|
||||
$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz";
|
||||
$a->strings["Conversations from your friends"] = "Unterhaltungen Deiner Kontakte";
|
||||
$a->strings["Network Reset"] = "Netzwerk zurücksetzen";
|
||||
$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden";
|
||||
$a->strings["Friend Requests"] = "Kontaktanfragen";
|
||||
$a->strings["Notifications"] = "Benachrichtigungen";
|
||||
$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen";
|
||||
$a->strings["Mark as seen"] = "Als gelesen markieren";
|
||||
$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen";
|
||||
$a->strings["Messages"] = "Nachrichten";
|
||||
$a->strings["Private mail"] = "Private E-Mail";
|
||||
$a->strings["Inbox"] = "Eingang";
|
||||
$a->strings["Outbox"] = "Ausgang";
|
||||
$a->strings["New Message"] = "Neue Nachricht";
|
||||
$a->strings["Manage"] = "Verwalten";
|
||||
$a->strings["Manage other pages"] = "Andere Seiten verwalten";
|
||||
$a->strings["Delegations"] = "Delegationen";
|
||||
$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite";
|
||||
$a->strings["Settings"] = "Einstellungen";
|
||||
$a->strings["Account settings"] = "Kontoeinstellungen";
|
||||
$a->strings["Profiles"] = "Profile";
|
||||
$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren";
|
||||
$a->strings["Manage/edit friends and contacts"] = " Kontakte verwalten/editieren";
|
||||
$a->strings["Admin"] = "Administration";
|
||||
$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration";
|
||||
$a->strings["Navigation"] = "Navigation";
|
||||
$a->strings["Site map"] = "Sitemap";
|
||||
$a->strings["View Profile"] = "Profil anschauen";
|
||||
$a->strings["View Status"] = "Pinnwand anschauen";
|
||||
$a->strings["View Photos"] = "Bilder anschauen";
|
||||
$a->strings["Network Posts"] = "Netzwerkbeiträge";
|
||||
$a->strings["View Contact"] = "Kontakt anzeigen";
|
||||
$a->strings["Drop Contact"] = "Kontakt löschen";
|
||||
$a->strings["Send PM"] = "Private Nachricht senden";
|
||||
$a->strings["Poke"] = "Anstupsen";
|
||||
$a->strings["Organisation"] = "Organisation";
|
||||
$a->strings["News"] = "Nachrichten";
|
||||
$a->strings["Forum"] = "Forum";
|
||||
$a->strings["Wall Photos"] = "Pinnwand-Bilder";
|
||||
$a->strings["Post to Email"] = "An E-Mail senden";
|
||||
$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist.";
|
||||
|
|
@ -360,6 +81,14 @@ $a->strings["Daily posting limit of %d posts reached. The post was rejected."] =
|
|||
$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
|
||||
$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
|
||||
$a->strings["Profile Photos"] = "Profilbilder";
|
||||
$a->strings["Logged out."] = "Abgemeldet.";
|
||||
$a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
|
||||
$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast.";
|
||||
$a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
|
||||
$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
|
||||
$a->strings["Starts:"] = "Beginnt:";
|
||||
$a->strings["Finishes:"] = "Endet:";
|
||||
$a->strings["Location:"] = "Ort:";
|
||||
$a->strings["Image/photo"] = "Bild/Foto";
|
||||
$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
|
||||
$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
|
||||
|
|
@ -395,6 +124,34 @@ $a->strings["Diaspora Connector"] = "Diaspora";
|
|||
$a->strings["GNU Social Connector"] = "GNU social Connector";
|
||||
$a->strings["pnut"] = "pnut";
|
||||
$a->strings["App.net"] = "App.net";
|
||||
$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen";
|
||||
$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
|
||||
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
|
||||
$a->strings["Connect"] = "Verbinden";
|
||||
$a->strings["%d invitation available"] = array(
|
||||
0 => "%d Einladung verfügbar",
|
||||
1 => "%d Einladungen verfügbar",
|
||||
);
|
||||
$a->strings["Find People"] = "Leute finden";
|
||||
$a->strings["Enter name or interest"] = "Name oder Interessen eingeben";
|
||||
$a->strings["Connect/Follow"] = "Verbinden/Folgen";
|
||||
$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln";
|
||||
$a->strings["Find"] = "Finde";
|
||||
$a->strings["Friend Suggestions"] = "Kontaktvorschläge";
|
||||
$a->strings["Similar Interests"] = "Ähnliche Interessen";
|
||||
$a->strings["Random Profile"] = "Zufälliges Profil";
|
||||
$a->strings["Invite Friends"] = "Freunde einladen";
|
||||
$a->strings["View Global Directory"] = "Globales Verzeichnis betrachten";
|
||||
$a->strings["Networks"] = "Netzwerke";
|
||||
$a->strings["All Networks"] = "Alle Netzwerke";
|
||||
$a->strings["Saved Folders"] = "Gespeicherte Ordner";
|
||||
$a->strings["Everything"] = "Alles";
|
||||
$a->strings["Categories"] = "Kategorien";
|
||||
$a->strings["%d contact in common"] = array(
|
||||
0 => "%d gemeinsamer Kontakt",
|
||||
1 => "%d gemeinsame Kontakte",
|
||||
);
|
||||
$a->strings["show more"] = "mehr anzeigen";
|
||||
$a->strings["event"] = "Event";
|
||||
$a->strings["status"] = "Status";
|
||||
$a->strings["photo"] = "Foto";
|
||||
|
|
@ -428,6 +185,13 @@ $a->strings["Please wait"] = "Bitte warten";
|
|||
$a->strings["remove"] = "löschen";
|
||||
$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge";
|
||||
$a->strings["Follow Thread"] = "Folge der Unterhaltung";
|
||||
$a->strings["View Status"] = "Pinnwand anschauen";
|
||||
$a->strings["View Profile"] = "Profil anschauen";
|
||||
$a->strings["View Photos"] = "Bilder anschauen";
|
||||
$a->strings["Network Posts"] = "Netzwerkbeiträge";
|
||||
$a->strings["View Contact"] = "Kontakt anzeigen";
|
||||
$a->strings["Send PM"] = "Private Nachricht senden";
|
||||
$a->strings["Poke"] = "Anstupsen";
|
||||
$a->strings["%s likes this."] = "%s mag das.";
|
||||
$a->strings["%s doesn't like this."] = "%s mag das nicht.";
|
||||
$a->strings["%s attends."] = "%s nimmt teil.";
|
||||
|
|
@ -493,6 +257,29 @@ $a->strings["Not Attending"] = array(
|
|||
0 => "Nicht teilnehmend ",
|
||||
1 => "Nicht teilnehmend",
|
||||
);
|
||||
$a->strings["Miscellaneous"] = "Verschiedenes";
|
||||
$a->strings["Birthday:"] = "Geburtstag:";
|
||||
$a->strings["Age: "] = "Alter: ";
|
||||
$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD oder MM-DD";
|
||||
$a->strings["never"] = "nie";
|
||||
$a->strings["less than a second ago"] = "vor weniger als einer Sekunde";
|
||||
$a->strings["year"] = "Jahr";
|
||||
$a->strings["years"] = "Jahre";
|
||||
$a->strings["month"] = "Monat";
|
||||
$a->strings["months"] = "Monate";
|
||||
$a->strings["week"] = "Woche";
|
||||
$a->strings["weeks"] = "Wochen";
|
||||
$a->strings["day"] = "Tag";
|
||||
$a->strings["days"] = "Tage";
|
||||
$a->strings["hour"] = "Stunde";
|
||||
$a->strings["hours"] = "Stunden";
|
||||
$a->strings["minute"] = "Minute";
|
||||
$a->strings["minutes"] = "Minuten";
|
||||
$a->strings["second"] = "Sekunde";
|
||||
$a->strings["seconds"] = "Sekunden";
|
||||
$a->strings["%1\$d %2\$s ago"] = "vor %1\$d %2\$s";
|
||||
$a->strings["%s's birthday"] = "%ss Geburtstag";
|
||||
$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
|
||||
$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
|
||||
$a->strings["There are no tables on MyISAM."] = "Es gibt keine MyISAM Tabellen.";
|
||||
$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein.";
|
||||
|
|
@ -501,10 +288,66 @@ $a->strings["\nError %d occurred during database update:\n%s\n"] = "\nFehler %d
|
|||
$a->strings["Errors encountered performing database changes: "] = "Fehler beim Ändern der Datenbank aufgetreten";
|
||||
$a->strings[": Database update"] = ": Datenbank Update";
|
||||
$a->strings["%s: updating %s table."] = "%s: aktualisiere Tabelle %s";
|
||||
$a->strings["(no subject)"] = "(kein Betreff)";
|
||||
$a->strings["%s\\'s birthday"] = "%ss Geburtstag";
|
||||
$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
|
||||
$a->strings["Attachments:"] = "Anhänge:";
|
||||
$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung";
|
||||
$a->strings["Thank You,"] = "Danke,";
|
||||
$a->strings["%s Administrator"] = "der Administrator von %s";
|
||||
$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrator";
|
||||
$a->strings["noreply"] = "noreply";
|
||||
$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
|
||||
$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Nachricht erhalten von %s";
|
||||
$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat Dir eine neue private Nachricht auf %2\$s geschickt.";
|
||||
$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte Dir %2\$s.";
|
||||
$a->strings["a private message"] = "eine private Nachricht";
|
||||
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten.";
|
||||
$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]a %3\$s[/url]";
|
||||
$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$ss %4\$s[/url]";
|
||||
$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]Deinen %3\$s[/url]";
|
||||
$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica-Meldung] Kommentar zum Beitrag #%1\$d von %2\$s";
|
||||
$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem Du folgst.";
|
||||
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren.";
|
||||
$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben";
|
||||
$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb auf %2\$s auf Deine Pinnwand";
|
||||
$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]Deiner Pinnwand[/url] gepostet";
|
||||
$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica-Meldung] %s hat Dich erwähnt";
|
||||
$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte Dich auf %2\$s";
|
||||
$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]erwähnte Dich[/url].";
|
||||
$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt";
|
||||
$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s hat einen neuen Beitrag auf %2\$s geteilt";
|
||||
$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]hat einen Beitrag geteilt[/url].";
|
||||
$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica-Meldung] %1\$s hat Dich angestupst";
|
||||
$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat Dich auf %2\$s angestupst";
|
||||
$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat Dich angestupst[/url].";
|
||||
$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica-Meldung] %s hat Deinen Beitrag getaggt";
|
||||
$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte Deinen Beitrag auf %2\$s";
|
||||
$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s erwähnte [url=%2\$s]Deinen Beitrag[/url]";
|
||||
$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica-Meldung] Kontaktanfrage erhalten";
|
||||
$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten";
|
||||
$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten.";
|
||||
$a->strings["You may visit their profile at %s"] = "Hier kannst Du das Profil betrachten: %s";
|
||||
$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen.";
|
||||
$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir";
|
||||
$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s teilt mit Dir auf %2\$s";
|
||||
$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf ";
|
||||
$a->strings["You have a new follower at %2\$s : %1\$s"] = "Du hast einen neuen Kontakt auf %2\$s: %1\$s";
|
||||
$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten";
|
||||
$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Kontakt-Vorschlag von '%1\$s' auf %2\$s erhalten";
|
||||
$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Kontakt-Vorschlag[/url] %2\$s von %3\$s erhalten.";
|
||||
$a->strings["Name:"] = "Name:";
|
||||
$a->strings["Photo:"] = "Foto:";
|
||||
$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen.";
|
||||
$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt";
|
||||
$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' hat Deine Kontaktanfrage auf %2\$s bestätigt";
|
||||
$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hat Deine [url=%1\$s]Kontaktanfrage[/url] akzeptiert.";
|
||||
$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen.";
|
||||
$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst.";
|
||||
$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' hat sich entschieden Dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen.";
|
||||
$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "'%1\$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. ";
|
||||
$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst.";
|
||||
$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Benachrichtigung] Registrationsanfrage";
|
||||
$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Du hast eine Registrierungsanfrage von %2\$s auf '%1\$s' erhalten";
|
||||
$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Registrierungsanfrage[/url] von %2\$s erhalten.";
|
||||
$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Kompletter Name:\t%1\$s\\nURL der Seite:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)";
|
||||
$a->strings["Please visit %s to approve or reject the request."] = "Bitte besuche %s um die Anfrage zu bearbeiten.";
|
||||
$a->strings["all-day"] = "ganztägig";
|
||||
$a->strings["Sun"] = "So";
|
||||
$a->strings["Mon"] = "Mo";
|
||||
|
|
@ -557,6 +400,56 @@ $a->strings["D g:i A"] = "D g:i A";
|
|||
$a->strings["g:i A"] = "g:i A";
|
||||
$a->strings["Show map"] = "Karte anzeigen";
|
||||
$a->strings["Hide map"] = "Karte verbergen";
|
||||
$a->strings["General Features"] = "Allgemeine Features";
|
||||
$a->strings["Multiple Profiles"] = "Mehrere Profile";
|
||||
$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen";
|
||||
$a->strings["Photo Location"] = "Aufnahmeort";
|
||||
$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden.";
|
||||
$a->strings["Export Public Calendar"] = "Öffentlichen Kalender exportieren";
|
||||
$a->strings["Ability for visitors to download the public calendar"] = "Möglichkeit für Besucher den öffentlichen Kalender herunter zu laden";
|
||||
$a->strings["Post Composition Features"] = "Beitragserstellung Features";
|
||||
$a->strings["Post Preview"] = "Beitragsvorschau";
|
||||
$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben.";
|
||||
$a->strings["Auto-mention Forums"] = "Foren automatisch erwähnen";
|
||||
$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde.";
|
||||
$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste";
|
||||
$a->strings["Search by Date"] = "Archiv";
|
||||
$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren";
|
||||
$a->strings["List Forums"] = "Zeige Foren";
|
||||
$a->strings["Enable widget to display the forums your are connected with"] = "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen";
|
||||
$a->strings["Group Filter"] = "Gruppen Filter";
|
||||
$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren.";
|
||||
$a->strings["Network Filter"] = "Netzwerk Filter";
|
||||
$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren.";
|
||||
$a->strings["Saved Searches"] = "Gespeicherte Suchen";
|
||||
$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung.";
|
||||
$a->strings["Network Tabs"] = "Netzwerk Reiter";
|
||||
$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich";
|
||||
$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast";
|
||||
$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue";
|
||||
$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden";
|
||||
$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links";
|
||||
$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält";
|
||||
$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare";
|
||||
$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen";
|
||||
$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen";
|
||||
$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren";
|
||||
$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren.";
|
||||
$a->strings["Tagging"] = "Tagging";
|
||||
$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen.";
|
||||
$a->strings["Post Categories"] = "Beitragskategorien";
|
||||
$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen";
|
||||
$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren";
|
||||
$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'";
|
||||
$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'";
|
||||
$a->strings["Star Posts"] = "Beiträge Markieren";
|
||||
$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren";
|
||||
$a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stumm schalten";
|
||||
$a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können";
|
||||
$a->strings["Advanced Profile Settings"] = "Erweiterte Profil-Einstellungen";
|
||||
$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite";
|
||||
$a->strings["Tag Cloud"] = "Schlagwort Wolke";
|
||||
$a->strings["Provide a personal tag cloud on your profile page"] = "Wortwolke aus den von dir verwendeten Schlagwörtern im Profil anzeigen.";
|
||||
$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
|
||||
$a->strings["Blocked domain"] = "Blockierte Daimain";
|
||||
$a->strings["Connect URL missing."] = "Connect-URL fehlt";
|
||||
|
|
@ -570,10 +463,22 @@ $a->strings["Use mailto: in front of address to force email check."] = "Verwende
|
|||
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
|
||||
$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können.";
|
||||
$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
|
||||
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
|
||||
$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
|
||||
$a->strings["Everybody"] = "Alle Kontakte";
|
||||
$a->strings["edit"] = "bearbeiten";
|
||||
$a->strings["Groups"] = "Gruppen";
|
||||
$a->strings["Edit groups"] = "Gruppen bearbeiten";
|
||||
$a->strings["Edit group"] = "Gruppe bearbeiten";
|
||||
$a->strings["Create a new group"] = "Neue Gruppe erstellen";
|
||||
$a->strings["Group Name: "] = "Gruppenname:";
|
||||
$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
|
||||
$a->strings["add"] = "hinzufügen";
|
||||
$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden.";
|
||||
$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden.";
|
||||
$a->strings["Edit profile"] = "Profil bearbeiten";
|
||||
$a->strings["Atom feed"] = "Atom-Feed";
|
||||
$a->strings["Profiles"] = "Profile";
|
||||
$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren";
|
||||
$a->strings["Change profile photo"] = "Profilbild ändern";
|
||||
$a->strings["Create New Profile"] = "Neues Profil anlegen";
|
||||
|
|
@ -594,6 +499,7 @@ $a->strings["Birthdays this week:"] = "Geburtstage diese Woche:";
|
|||
$a->strings["[No description]"] = "[keine Beschreibung]";
|
||||
$a->strings["Event Reminders"] = "Veranstaltungserinnerungen";
|
||||
$a->strings["Events this week:"] = "Veranstaltungen diese Woche";
|
||||
$a->strings["Profile"] = "Profil";
|
||||
$a->strings["Full Name:"] = "Kompletter Name:";
|
||||
$a->strings["j F, Y"] = "j F, Y";
|
||||
$a->strings["j F"] = "j F";
|
||||
|
|
@ -618,11 +524,17 @@ $a->strings["School/education:"] = "Schule/Ausbildung:";
|
|||
$a->strings["Forums:"] = "Foren:";
|
||||
$a->strings["Basic"] = "Allgemein";
|
||||
$a->strings["Advanced"] = "Erweitert";
|
||||
$a->strings["Status"] = "Status";
|
||||
$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
|
||||
$a->strings["Profile Details"] = "Profildetails";
|
||||
$a->strings["Photos"] = "Bilder";
|
||||
$a->strings["Photo Albums"] = "Fotoalben";
|
||||
$a->strings["Videos"] = "Videos";
|
||||
$a->strings["Events"] = "Veranstaltungen";
|
||||
$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
|
||||
$a->strings["Personal Notes"] = "Persönliche Notizen";
|
||||
$a->strings["Only You Can See This"] = "Nur Du kannst das sehen";
|
||||
$a->strings["Contacts"] = "Kontakte";
|
||||
$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
|
||||
$a->strings["Item not found."] = "Beitrag nicht gefunden.";
|
||||
$a->strings["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?";
|
||||
|
|
@ -633,11 +545,75 @@ $a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s t
|
|||
$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil.";
|
||||
$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil.";
|
||||
$a->strings["[no subject]"] = "[kein Betreff]";
|
||||
$a->strings["Nothing new here"] = "Keine Neuigkeiten";
|
||||
$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
|
||||
$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content";
|
||||
$a->strings["Logout"] = "Abmelden";
|
||||
$a->strings["End this session"] = "Diese Sitzung beenden";
|
||||
$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
|
||||
$a->strings["Your profile page"] = "Deine Profilseite";
|
||||
$a->strings["Your photos"] = "Deine Fotos";
|
||||
$a->strings["Your videos"] = "Deine Videos";
|
||||
$a->strings["Your events"] = "Deine Ereignisse";
|
||||
$a->strings["Personal notes"] = "Persönliche Notizen";
|
||||
$a->strings["Your personal notes"] = "Deine persönlichen Notizen";
|
||||
$a->strings["Login"] = "Anmeldung";
|
||||
$a->strings["Sign in"] = "Anmelden";
|
||||
$a->strings["Home"] = "Pinnwand";
|
||||
$a->strings["Home Page"] = "Homepage";
|
||||
$a->strings["Register"] = "Registrieren";
|
||||
$a->strings["Create an account"] = "Nutzerkonto erstellen";
|
||||
$a->strings["Help"] = "Hilfe";
|
||||
$a->strings["Help and documentation"] = "Hilfe und Dokumentation";
|
||||
$a->strings["Apps"] = "Apps";
|
||||
$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele";
|
||||
$a->strings["Search"] = "Suche";
|
||||
$a->strings["Search site content"] = "Inhalt der Seite durchsuchen";
|
||||
$a->strings["Full Text"] = "Volltext";
|
||||
$a->strings["Tags"] = "Tags";
|
||||
$a->strings["Forums"] = "Foren";
|
||||
$a->strings["Community"] = "Gemeinschaft";
|
||||
$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite";
|
||||
$a->strings["Conversations on the network"] = "Unterhaltungen im Netzwerk";
|
||||
$a->strings["Directory"] = "Verzeichnis";
|
||||
$a->strings["People directory"] = "Nutzerverzeichnis";
|
||||
$a->strings["Information"] = "Information";
|
||||
$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz";
|
||||
$a->strings["Network"] = "Netzwerk";
|
||||
$a->strings["Conversations from your friends"] = "Unterhaltungen Deiner Kontakte";
|
||||
$a->strings["Network Reset"] = "Netzwerk zurücksetzen";
|
||||
$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden";
|
||||
$a->strings["Introductions"] = "Kontaktanfragen";
|
||||
$a->strings["Friend Requests"] = "Kontaktanfragen";
|
||||
$a->strings["Notifications"] = "Benachrichtigungen";
|
||||
$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen";
|
||||
$a->strings["Mark as seen"] = "Als gelesen markieren";
|
||||
$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen";
|
||||
$a->strings["Messages"] = "Nachrichten";
|
||||
$a->strings["Private mail"] = "Private E-Mail";
|
||||
$a->strings["Inbox"] = "Eingang";
|
||||
$a->strings["Outbox"] = "Ausgang";
|
||||
$a->strings["New Message"] = "Neue Nachricht";
|
||||
$a->strings["Manage"] = "Verwalten";
|
||||
$a->strings["Manage other pages"] = "Andere Seiten verwalten";
|
||||
$a->strings["Delegations"] = "Delegationen";
|
||||
$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite";
|
||||
$a->strings["Settings"] = "Einstellungen";
|
||||
$a->strings["Account settings"] = "Kontoeinstellungen";
|
||||
$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren";
|
||||
$a->strings["Manage/edit friends and contacts"] = " Kontakte verwalten/editieren";
|
||||
$a->strings["Admin"] = "Administration";
|
||||
$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration";
|
||||
$a->strings["Navigation"] = "Navigation";
|
||||
$a->strings["Site map"] = "Sitemap";
|
||||
$a->strings["view full size"] = "Volle Größe anzeigen";
|
||||
$a->strings["%s is now following %s."] = "%s folgt nun %s";
|
||||
$a->strings["following"] = "folgen";
|
||||
$a->strings["%s stopped following %s."] = "%s hat aufgehört %s zu folgen";
|
||||
$a->strings["stopped following"] = "wird nicht mehr gefolgt";
|
||||
$a->strings["Embedded content"] = "Eingebetteter Inhalt";
|
||||
$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
|
||||
$a->strings["Contact Photos"] = "Kontaktbilder";
|
||||
$a->strings["Welcome "] = "Willkommen ";
|
||||
$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
|
||||
$a->strings["Welcome back "] = "Willkommen zurück ";
|
||||
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden).";
|
||||
$a->strings["newer"] = "neuer";
|
||||
$a->strings["older"] = "älter";
|
||||
$a->strings["first"] = "erste";
|
||||
|
|
@ -733,16 +709,6 @@ $a->strings["Registration at %s"] = "Registrierung als %s";
|
|||
$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde eingerichtet.";
|
||||
$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3\$s\n\tBenutzernamename:\t%1\$s\n\tPasswort:\t%5\$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2\$s.";
|
||||
$a->strings["Registration details for %s"] = "Details der Registration von %s";
|
||||
$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren";
|
||||
$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:";
|
||||
$a->strings["Please login to continue."] = "Bitte melde Dich an um fortzufahren.";
|
||||
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?";
|
||||
$a->strings["No"] = "Nein";
|
||||
$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können.";
|
||||
$a->strings["Applications"] = "Anwendungen";
|
||||
$a->strings["No installed applications."] = "Keine Applikationen installiert.";
|
||||
$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
|
||||
$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
|
||||
$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:";
|
||||
$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:";
|
||||
$a->strings["Source input: "] = "Originaltext:";
|
||||
|
|
@ -755,419 +721,23 @@ $a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
|
|||
$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
|
||||
$a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): ";
|
||||
$a->strings["diaspora2bb: "] = "diaspora2bb: ";
|
||||
$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
|
||||
$a->strings["Common Friends"] = "Gemeinsame Kontakte";
|
||||
$a->strings["Credits"] = "Credits";
|
||||
$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !";
|
||||
$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
|
||||
$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
|
||||
$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
|
||||
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
|
||||
$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst.";
|
||||
$a->strings["No mirroring"] = "Kein Spiegeln";
|
||||
$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge";
|
||||
$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge";
|
||||
$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
|
||||
$a->strings["Refetch contact data"] = "Kontaktdaten neu laden";
|
||||
$a->strings["Submit"] = "Senden";
|
||||
$a->strings["Remote Self"] = "Entfernte Konten";
|
||||
$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts";
|
||||
$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden.";
|
||||
$a->strings["Name"] = "Name";
|
||||
$a->strings["Account Nickname"] = "Konto-Spitzname";
|
||||
$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
|
||||
$a->strings["Account URL"] = "Konto-URL";
|
||||
$a->strings["Friend Request URL"] = "URL für Kontaktschaftsanfragen";
|
||||
$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Kontaktanfragen";
|
||||
$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen";
|
||||
$a->strings["Poll/Feed URL"] = "Pull/Feed-URL";
|
||||
$a->strings["New photo from this URL"] = "Neues Foto von dieser URL";
|
||||
$a->strings["- select -"] = "- auswählen -";
|
||||
$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
|
||||
$a->strings["Visible to:"] = "Sichtbar für:";
|
||||
$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
|
||||
$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica";
|
||||
$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder";
|
||||
$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden.";
|
||||
$a->strings["Getting Started"] = "Einstieg";
|
||||
$a->strings["Friendica Walk-Through"] = "Friendica Rundgang";
|
||||
$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der <em>Quick Start</em> Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst.";
|
||||
$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen";
|
||||
$a->strings["On your <em>Settings</em> page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Kontakte mit anderen im Friendica Netzwerk zu knüpfen..";
|
||||
$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Kontakte und potentiellen Kontakte wissen genau, wie sie Dich finden können.";
|
||||
$a->strings["Upload Profile Photo"] = "Profilbild hochladen";
|
||||
$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Kontakte zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust.";
|
||||
$a->strings["Edit Your Profile"] = "Editiere dein Profil";
|
||||
$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere Dein <strong>Standard</strong> Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Kontaktliste vor unbekannten Betrachtern des Profils.";
|
||||
$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe";
|
||||
$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen.";
|
||||
$a->strings["Connecting"] = "Verbindungen knüpfen";
|
||||
$a->strings["Importing Emails"] = "Emails Importieren";
|
||||
$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Kontakten und Mailinglisten interagieren willst.";
|
||||
$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite";
|
||||
$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Personen in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein.";
|
||||
$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis Deiner Friendica Instanz";
|
||||
$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst.";
|
||||
$a->strings["Finding New People"] = "Neue Leute kennenlernen";
|
||||
$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden.";
|
||||
$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte";
|
||||
$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald Du einige Kontakte gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren.";
|
||||
$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?";
|
||||
$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch.";
|
||||
$a->strings["Getting Help"] = "Hilfe bekommen";
|
||||
$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen";
|
||||
$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten.";
|
||||
$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]";
|
||||
$a->strings["Edit contact"] = "Kontakt bearbeiten";
|
||||
$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind";
|
||||
$a->strings["Permission denied"] = "Zugriff verweigert";
|
||||
$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner.";
|
||||
$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit";
|
||||
$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen";
|
||||
$a->strings["Visible To"] = "Sichtbar für";
|
||||
$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)";
|
||||
$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
|
||||
$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert.";
|
||||
$a->strings["No contacts."] = "Keine Kontakte.";
|
||||
$a->strings["Access denied."] = "Zugriff verweigert.";
|
||||
$a->strings["Only logged in users are permitted to perform a probing."] = "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet.";
|
||||
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.";
|
||||
$a->strings["Import"] = "Import";
|
||||
$a->strings["Move account"] = "Account umziehen";
|
||||
$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren.";
|
||||
$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Kontakte darüber zu informieren, dass Du hierher umgezogen bist.";
|
||||
$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren";
|
||||
$a->strings["Account file"] = "Account Datei";
|
||||
$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
|
||||
$a->strings["Not available."] = "Nicht verfügbar.";
|
||||
$a->strings["No results."] = "Keine Ergebnisse.";
|
||||
$a->strings["No friends to display."] = "Keine Kontakte zum Anzeigen.";
|
||||
$a->strings["The post was created"] = "Der Beitrag wurde angelegt";
|
||||
$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
|
||||
$a->strings["View"] = "Ansehen";
|
||||
$a->strings["Previous"] = "Vorherige";
|
||||
$a->strings["Next"] = "Nächste";
|
||||
$a->strings["list"] = "Liste";
|
||||
$a->strings["User not found"] = "Nutzer nicht gefunden";
|
||||
$a->strings["This calendar format is not supported"] = "Dieses Kalenderformat wird nicht unterstützt.";
|
||||
$a->strings["No exportable data found"] = "Keine exportierbaren Daten gefunden";
|
||||
$a->strings["calendar"] = "Kalender";
|
||||
$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
|
||||
$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert.";
|
||||
$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung.";
|
||||
$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden.";
|
||||
$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse.";
|
||||
$a->strings["%d required parameter was not found at the given location"] = array(
|
||||
0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden",
|
||||
1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden",
|
||||
);
|
||||
$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen.";
|
||||
$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler.";
|
||||
$a->strings["Profile unavailable."] = "Profil nicht verfügbar.";
|
||||
$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Kontaktanfragen erhalten.";
|
||||
$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen.";
|
||||
$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen.";
|
||||
$a->strings["Invalid locator"] = "Ungültiger Locator";
|
||||
$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse.";
|
||||
$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen.";
|
||||
$a->strings["You have already introduced yourself here."] = "Du hast Dich hier bereits vorgestellt.";
|
||||
$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob Du bereits mit %s in Kontakt stehst.";
|
||||
$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
|
||||
$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
|
||||
$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
|
||||
$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Entferntes abonnieren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems. ";
|
||||
$a->strings["Please login to confirm introduction."] = "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen.";
|
||||
$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an.";
|
||||
$a->strings["Confirm"] = "Bestätigen";
|
||||
$a->strings["Hide this contact"] = "Verberge diesen Kontakt";
|
||||
$a->strings["Welcome home %s."] = "Willkommen zurück %s.";
|
||||
$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige Deine Kontaktanfrage bei %s.";
|
||||
$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:";
|
||||
$a->strings["If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten.";
|
||||
$a->strings["Friend/Connection Request"] = "Kontaktanfrage";
|
||||
$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
|
||||
$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:";
|
||||
$a->strings["Does %s know you?"] = "Kennt %s Dich?";
|
||||
$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
|
||||
$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
|
||||
$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste.";
|
||||
$a->strings["Your Identity Address:"] = "Adresse Deines Profils:";
|
||||
$a->strings["Submit Request"] = "Anfrage abschicken";
|
||||
$a->strings["Item not found"] = "Beitrag nicht gefunden";
|
||||
$a->strings["Edit post"] = "Beitrag bearbeiten";
|
||||
$a->strings["Not Found"] = "Nicht gefunden";
|
||||
$a->strings["Contact added"] = "Kontakt hinzugefügt";
|
||||
$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt.";
|
||||
$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.";
|
||||
$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.";
|
||||
$a->strings["The network type couldn't be detected. Contact can't be added."] = "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden.";
|
||||
$a->strings["Profile URL"] = "Profil URL";
|
||||
$a->strings["Group created."] = "Gruppe erstellt.";
|
||||
$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen.";
|
||||
$a->strings["Group not found."] = "Gruppe nicht gefunden.";
|
||||
$a->strings["Group name changed."] = "Gruppenname geändert.";
|
||||
$a->strings["Save Group"] = "Gruppe speichern";
|
||||
$a->strings["Create a group of contacts/friends."] = "Eine Kontaktgruppe anlegen.";
|
||||
$a->strings["Group removed."] = "Gruppe entfernt.";
|
||||
$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
|
||||
$a->strings["Delete Group"] = "Gruppe löschen";
|
||||
$a->strings["Group Editor"] = "Gruppeneditor";
|
||||
$a->strings["Edit Group Name"] = "Gruppen Name bearbeiten";
|
||||
$a->strings["Members"] = "Mitglieder";
|
||||
$a->strings["All Contacts"] = "Alle Kontakte";
|
||||
$a->strings["Group is empty"] = "Gruppe ist leer";
|
||||
$a->strings["Remove Contact"] = "Kontakt löschen";
|
||||
$a->strings["Add Contact"] = "Kontakt hinzufügen";
|
||||
$a->strings["No profile"] = "Kein Profil";
|
||||
$a->strings["Help:"] = "Hilfe:";
|
||||
$a->strings["Not Found"] = "Nicht gefunden";
|
||||
$a->strings["Page not found."] = "Seite nicht gefunden.";
|
||||
$a->strings["Welcome to %s"] = "Willkommen zu %s";
|
||||
$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht.";
|
||||
$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse.";
|
||||
$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein";
|
||||
$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite.";
|
||||
$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen.";
|
||||
$a->strings["%d message sent."] = array(
|
||||
0 => "%d Nachricht gesendet.",
|
||||
1 => "%d Nachrichten gesendet.",
|
||||
);
|
||||
$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen";
|
||||
$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke.";
|
||||
$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website.";
|
||||
$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst.";
|
||||
$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen.";
|
||||
$a->strings["To accept this invitation, please visit and register at %s."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s.";
|
||||
$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden.";
|
||||
$a->strings["Send invitations"] = "Einladungen senden";
|
||||
$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:";
|
||||
$a->strings["Your message:"] = "Deine Nachricht:";
|
||||
$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen.";
|
||||
$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code";
|
||||
$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:";
|
||||
$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendi.ca.";
|
||||
$a->strings["Time Conversion"] = "Zeitumrechnung";
|
||||
$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
|
||||
$a->strings["UTC time: %s"] = "UTC Zeit: %s";
|
||||
$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
|
||||
$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
|
||||
$a->strings["Please select your timezone:"] = "Bitte wähle Deine Zeitzone:";
|
||||
$a->strings["No valid account found."] = "Kein gültiges Konto gefunden.";
|
||||
$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail.";
|
||||
$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast.";
|
||||
$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1\$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s";
|
||||
$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten";
|
||||
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert.";
|
||||
$a->strings["Password Reset"] = "Passwort zurücksetzen";
|
||||
$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt.";
|
||||
$a->strings["Your new password is"] = "Dein neues Passwort lautet";
|
||||
$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort - und dann";
|
||||
$a->strings["click here to login"] = "hier klicken, um Dich anzumelden";
|
||||
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald Du Dich erfolgreich angemeldet hast.";
|
||||
$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nHallo %1\$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst).";
|
||||
$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1\$s\nLogin Name: %2\$s\nPasswort: %3\$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden.";
|
||||
$a->strings["Your password has been changed at %s"] = "Auf %s wurde Dein Passwort geändert";
|
||||
$a->strings["Forgot your Password?"] = "Hast Du Dein Passwort vergessen?";
|
||||
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet.";
|
||||
$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:";
|
||||
$a->strings["Reset"] = "Zurücksetzen";
|
||||
$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten";
|
||||
$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast.";
|
||||
$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: ";
|
||||
$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu.";
|
||||
$a->strings["is interested in:"] = "ist interessiert an:";
|
||||
$a->strings["Profile Match"] = "Profilübereinstimmungen";
|
||||
$a->strings["No matches"] = "Keine Übereinstimmungen";
|
||||
$a->strings["No recipient selected."] = "Kein Empfänger gewählt.";
|
||||
$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
|
||||
$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden.";
|
||||
$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen.";
|
||||
$a->strings["Message sent."] = "Nachricht gesendet.";
|
||||
$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?";
|
||||
$a->strings["Message deleted."] = "Nachricht gelöscht.";
|
||||
$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
|
||||
$a->strings["Send Private Message"] = "Private Nachricht senden";
|
||||
$a->strings["To:"] = "An:";
|
||||
$a->strings["Subject:"] = "Betreff:";
|
||||
$a->strings["No messages."] = "Keine Nachrichten.";
|
||||
$a->strings["Message not available."] = "Nachricht nicht verfügbar.";
|
||||
$a->strings["Delete message"] = "Nachricht löschen";
|
||||
$a->strings["Delete conversation"] = "Unterhaltung löschen";
|
||||
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten.";
|
||||
$a->strings["Send Reply"] = "Antwort senden";
|
||||
$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s";
|
||||
$a->strings["You and %s"] = "Du und %s";
|
||||
$a->strings["%s and You"] = "%s und Du";
|
||||
$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A";
|
||||
$a->strings["%d message"] = array(
|
||||
0 => "%d Nachricht",
|
||||
1 => "%d Nachrichten",
|
||||
);
|
||||
$a->strings["Invalid request identifier."] = "Invalid request identifier.";
|
||||
$a->strings["Discard"] = "Verwerfen";
|
||||
$a->strings["Ignore"] = "Ignorieren";
|
||||
$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
|
||||
$a->strings["System Notifications"] = "Systembenachrichtigungen";
|
||||
$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
|
||||
$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen";
|
||||
$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen";
|
||||
$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen";
|
||||
$a->strings["Notification type: "] = "Benachrichtigungstyp: ";
|
||||
$a->strings["suggested by %s"] = "vorgeschlagen von %s";
|
||||
$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt vor Anderen";
|
||||
$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden";
|
||||
$a->strings["if applicable"] = "falls anwendbar";
|
||||
$a->strings["Approve"] = "Genehmigen";
|
||||
$a->strings["Claims to be known to you: "] = "Behauptet Dich zu kennen: ";
|
||||
$a->strings["yes"] = "ja";
|
||||
$a->strings["no"] = "nein";
|
||||
$a->strings["Shall your connection be bidirectional or not?"] = "Soll die Verbindung beidseitig sein oder nicht?";
|
||||
$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Akzeptierst du %s als Kontakt, erlaubst du damit das Lesen deiner Beiträge und abonnierst selbst auch die Beiträge von %s.";
|
||||
$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten.";
|
||||
$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Wenn du %s als Teilenden akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten.";
|
||||
$a->strings["Friend"] = "Kontakt";
|
||||
$a->strings["Sharer"] = "Teilenden";
|
||||
$a->strings["Subscriber"] = "Abonnent";
|
||||
$a->strings["No introductions."] = "Keine Kontaktanfragen.";
|
||||
$a->strings["Show unread"] = "Ungelesene anzeigen";
|
||||
$a->strings["Show all"] = "Alle anzeigen";
|
||||
$a->strings["No more %s notifications."] = "Keine weiteren %s Benachrichtigungen";
|
||||
$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen.";
|
||||
$a->strings["Submit"] = "Senden";
|
||||
$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
|
||||
$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
|
||||
$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet.";
|
||||
$a->strings["Not Extended"] = "Nicht erweitert.";
|
||||
$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
|
||||
$a->strings["Remove My Account"] = "Konto löschen";
|
||||
$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
|
||||
$a->strings["Please enter your password for verification:"] = "Bitte gib Dein Passwort zur Verifikation ein:";
|
||||
$a->strings["Resubscribing to OStatus contacts"] = "Erneuern der OStatus Abonements";
|
||||
$a->strings["Error"] = "Fehler";
|
||||
$a->strings["Done"] = "Erledigt";
|
||||
$a->strings["Keep this window open until done."] = "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist.";
|
||||
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
|
||||
$a->strings["Tag removed"] = "Tag entfernt";
|
||||
$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen";
|
||||
$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: ";
|
||||
$a->strings["Remove"] = "Entfernen";
|
||||
$a->strings["Export account"] = "Account exportieren";
|
||||
$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen.";
|
||||
$a->strings["Export all"] = "Alles exportieren";
|
||||
$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert).";
|
||||
$a->strings["Export personal data"] = "Persönliche Daten exportieren";
|
||||
$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
|
||||
$a->strings["Unable to check your home location."] = "Konnte Deinen Heimatort nicht bestimmen.";
|
||||
$a->strings["No recipient."] = "Kein Empfänger.";
|
||||
$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
|
||||
$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
|
||||
$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!";
|
||||
$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager";
|
||||
$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
|
||||
$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
|
||||
$a->strings["Add"] = "Hinzufügen";
|
||||
$a->strings["No entries."] = "Keine Einträge.";
|
||||
$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?";
|
||||
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
|
||||
$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
|
||||
$a->strings["Global Directory"] = "Weltweites Verzeichnis";
|
||||
$a->strings["Find on this site"] = "Auf diesem Server suchen";
|
||||
$a->strings["Results for:"] = "Ergebnisse für:";
|
||||
$a->strings["Site Directory"] = "Verzeichnis";
|
||||
$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
|
||||
$a->strings["Files"] = "Dateien";
|
||||
$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version";
|
||||
$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
|
||||
$a->strings["Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"https://friendi.ca\">Friendi.ca</a> um mehr über das Friendica Projekt zu erfahren.";
|
||||
$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
|
||||
$a->strings["the bugtracker at github"] = "den Bugtracker auf github";
|
||||
$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com";
|
||||
$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps:";
|
||||
$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert";
|
||||
$a->strings["On this server the following remote servers are blocked."] = "Auf diesem Server werden die folgenden entfernten Server blockiert.";
|
||||
$a->strings["Reason for the block"] = "Begründung für die Blockierung";
|
||||
$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup";
|
||||
$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert.";
|
||||
$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden.";
|
||||
$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendicaseite wurde installiert.";
|
||||
$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren.";
|
||||
$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\".";
|
||||
$a->strings["Database already in use."] = "Die Datenbank wird bereits verwendet.";
|
||||
$a->strings["System check"] = "Systemtest";
|
||||
$a->strings["Check again"] = "Noch einmal testen";
|
||||
$a->strings["Database connection"] = "Datenbankverbindung";
|
||||
$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können.";
|
||||
$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest.";
|
||||
$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst.";
|
||||
$a->strings["Database Server Name"] = "Datenbank-Server";
|
||||
$a->strings["Database Login Name"] = "Datenbank-Nutzer";
|
||||
$a->strings["Database Login Password"] = "Datenbank-Passwort";
|
||||
$a->strings["For security reasons the password must not be empty"] = "Aus Sicherheitsgründen darf das Passwort nicht leer sein.";
|
||||
$a->strings["Database Name"] = "Datenbank-Name";
|
||||
$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators";
|
||||
$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst.";
|
||||
$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite";
|
||||
$a->strings["Site settings"] = "Server-Einstellungen";
|
||||
$a->strings["System Language:"] = "Systemsprache:";
|
||||
$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand";
|
||||
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden.";
|
||||
$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "Wenn auf deinem Server keine Kommandozeilenversion von PHP installiert ist, kannst du den Hintergrundprozess nicht einrichten. Hier findest du alternative Möglichkeiten<a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'für das Poller Setup'</a>";
|
||||
$a->strings["PHP executable path"] = "Pfad zu PHP";
|
||||
$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren.";
|
||||
$a->strings["Command line PHP"] = "Kommandozeilen-PHP";
|
||||
$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)";
|
||||
$a->strings["Found PHP version: "] = "Gefundene PHP Version:";
|
||||
$a->strings["PHP cli binary"] = "PHP CLI Binary";
|
||||
$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert.";
|
||||
$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt.";
|
||||
$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
|
||||
$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen";
|
||||
$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an.";
|
||||
$a->strings["Generate encryption keys"] = "Schlüssel erzeugen";
|
||||
$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul";
|
||||
$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul";
|
||||
$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul";
|
||||
$a->strings["PDO or MySQLi PHP module"] = "PDO oder MySQLi PHP Modul";
|
||||
$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul";
|
||||
$a->strings["XML PHP module"] = "XML PHP Modul";
|
||||
$a->strings["iconv module"] = "iconv module";
|
||||
$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
|
||||
$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert.";
|
||||
$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert.";
|
||||
$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert.";
|
||||
$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert.";
|
||||
$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Fehler: PDO oder MySQLi PHP Modul erforderlich, aber nicht installiert.";
|
||||
$a->strings["Error: The MySQL driver for PDO is not installed."] = "Fehler: der MySQL Treiber für PDO ist nicht installiert";
|
||||
$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert.";
|
||||
$a->strings["Error: iconv PHP module required but not installed."] = "Fehler: Das iconv-Modul von PHP ist nicht installiert.";
|
||||
$a->strings["Error, XML PHP module required but not installed."] = "Fehler: XML PHP Modul erforderlich aber nicht installiert.";
|
||||
$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun.";
|
||||
$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast.";
|
||||
$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst.";
|
||||
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt.";
|
||||
$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php";
|
||||
$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen.";
|
||||
$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica.";
|
||||
$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat.";
|
||||
$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten.";
|
||||
$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar";
|
||||
$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers.";
|
||||
$a->strings["Url rewrite is working"] = "URL rewrite funktioniert";
|
||||
$a->strings["ImageMagick PHP extension is not installed"] = "ImageMagicx PHP Erweiterung ist nicht installiert.";
|
||||
$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP Erweiterung ist installiert";
|
||||
$a->strings["ImageMagick supports GIF"] = "ImageMagick unterstützt GIF";
|
||||
$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen.";
|
||||
$a->strings["<h1>What next</h1>"] = "<h1>Wie geht es weiter?</h1>";
|
||||
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten.";
|
||||
$a->strings["Remove term"] = "Begriff entfernen";
|
||||
$a->strings["Only logged in users are permitted to perform a search."] = "Nur eingeloggten Benutzern ist das Suchen gestattet.";
|
||||
$a->strings["Too Many Requests"] = "Zu viele Abfragen";
|
||||
$a->strings["Only one search per minute is permitted for not logged in users."] = "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet.";
|
||||
$a->strings["Items tagged with: %s"] = "Beiträge die mit %s getaggt sind";
|
||||
$a->strings["Results for: %s"] = "Ergebnisse für: %s";
|
||||
$a->strings["Contact wasn't found or can't be unfollowed."] = "Der Kontakt konnte nicht gefunden oder nicht entfolgt werden.";
|
||||
$a->strings["Contact unfollowed"] = "Kontakt wird nicht mehr gefolgt";
|
||||
$a->strings["You aren't a friend of this contact."] = "Du hast keine beidseitige Freundschaft mit diesem Kontakt.";
|
||||
$a->strings["Unfollowing is currently not supported by your network."] = "Bei diesem Netzwerk wird das Entfolgen derzeit nicht unterstützt.";
|
||||
$a->strings["Disconnect/Unfollow"] = "Verbindung lösen/Nicht mehr folgen";
|
||||
$a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
|
||||
$a->strings["Site"] = "Seite";
|
||||
$a->strings["Users"] = "Nutzer";
|
||||
|
|
@ -1187,6 +757,7 @@ $a->strings["Plugin Features"] = "Plugin Features";
|
|||
$a->strings["diagnostics"] = "Diagnose";
|
||||
$a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten";
|
||||
$a->strings["The blocked domain"] = "Die blockierte Domain";
|
||||
$a->strings["Reason for the block"] = "Begründung für die Blockierung";
|
||||
$a->strings["The reason why you blocked this domain."] = "Die Begründung warum du diese Domain blockiert hast.";
|
||||
$a->strings["Delete domain"] = "Domain löschen";
|
||||
$a->strings["Check to delete this entry from the blocklist"] = "Markieren, um diesen Eintrag von der Blocklist zu entfernen";
|
||||
|
|
@ -1361,7 +932,7 @@ $a->strings["Maximum system load before delivery and poll processes are deferred
|
|||
$a->strings["Maximum Load Average (Frontend)"] = "Maximum Load Average (Frontend)";
|
||||
$a->strings["Maximum system load before the frontend quits service - default 50."] = "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50.";
|
||||
$a->strings["Minimal Memory"] = "Minimaler Speicher";
|
||||
$a->strings["Minimal free memory in MB for the poller. Needs access to /proc/meminfo - default 0 (deactivated)."] = "Minimal freier Speicher in MB für den Poller. Benötigt Zugriff auf /proc/meminfo - Standard 0 (Deaktiviert).";
|
||||
$a->strings["Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)."] = "Minimal freier Speicher in MB für den Worker Prozess. Benötigt Zugriff auf /proc/meminfo - Standardwert ist 0 (deaktiviert)";
|
||||
$a->strings["Maximum table size for optimization"] = "Maximale Tabellengröße zur Optimierung";
|
||||
$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = "Maximale Tabellengröße (in MB) für die automatische Optimierung - Standard 100 MB. Gib -1 für Deaktivierung ein.";
|
||||
$a->strings["Minimum level of fragmentation"] = "Minimaler Fragmentationsgrad";
|
||||
|
|
@ -1403,7 +974,7 @@ $a->strings["Encryption layer between nodes."] = "Verschlüsselung zwischen Frie
|
|||
$a->strings["Maximum number of parallel workers"] = "Maximale Anzahl parallel laufender Worker";
|
||||
$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "Wenn dein Knoten bei einem Shared Hoster ist, setzte diesen Wert auf 2. Auf größeren Systemen funktioniert ein Wert von 10 recht gut. Standardeinstellung sind 4.";
|
||||
$a->strings["Don't use 'proc_open' with the worker"] = "'proc_open' nicht mit den Workern verwenden";
|
||||
$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = "Aktiviere diese Option, wenn dein System die Verwendung von 'proc_open' verhindert. Dies könnte auf Shared Hostern der Fall sein. Wenn du diese Option aktivierst, solltest du die Frequenz der poller Aufrufe in deiner crontab erhöhen.";
|
||||
$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of worker calls in your crontab."] = "Aktiviere diese Option, wenn dein System die Verwendung von 'proc_open' verhindert. Dies könnte auf Shared Hostern der Fall sein. Wenn du diese Option aktivierst, solltest du die Frequenz der poller Aufrufe in deiner crontab erhöhen.";
|
||||
$a->strings["Enable fastlane"] = "Aktiviere Fastlane";
|
||||
$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "Wenn aktiviert, wird der Fastlane-Mechanismus einen weiteren Worker-Prozeß starten wenn Prozesse mit höherer Priorität von Prozessen mit niedrigerer Priorität blockiert werden.";
|
||||
$a->strings["Enable frontend worker"] = "Aktiviere den Frontend Worker";
|
||||
|
|
@ -1434,6 +1005,7 @@ $a->strings["%s user deleted"] = array(
|
|||
$a->strings["User '%s' deleted"] = "Nutzer '%s' gelöscht";
|
||||
$a->strings["User '%s' unblocked"] = "Nutzer '%s' entsperrt";
|
||||
$a->strings["User '%s' blocked"] = "Nutzer '%s' gesperrt";
|
||||
$a->strings["Name"] = "Name";
|
||||
$a->strings["Register date"] = "Anmeldedatum";
|
||||
$a->strings["Last login"] = "Letzte Anmeldung";
|
||||
$a->strings["Last item"] = "Letzter Beitrag";
|
||||
|
|
@ -1445,6 +1017,7 @@ $a->strings["User waiting for permanent deletion"] = "Nutzer wartet auf permanen
|
|||
$a->strings["Request date"] = "Anfragedatum";
|
||||
$a->strings["No registrations."] = "Keine Neuanmeldungen.";
|
||||
$a->strings["Note from the user"] = "Hinweis vom Nutzer";
|
||||
$a->strings["Approve"] = "Genehmigen";
|
||||
$a->strings["Deny"] = "Verwehren";
|
||||
$a->strings["Block"] = "Sperren";
|
||||
$a->strings["Unblock"] = "Entsperren";
|
||||
|
|
@ -1487,6 +1060,31 @@ $a->strings["Off"] = "Aus";
|
|||
$a->strings["On"] = "An";
|
||||
$a->strings["Lock feature %s"] = "Feature festlegen: %s";
|
||||
$a->strings["Manage Additional Features"] = "Zusätzliche Features Verwalten";
|
||||
$a->strings["No friends to display."] = "Keine Kontakte zum Anzeigen.";
|
||||
$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren";
|
||||
$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:";
|
||||
$a->strings["Please login to continue."] = "Bitte melde Dich an um fortzufahren.";
|
||||
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?";
|
||||
$a->strings["No"] = "Nein";
|
||||
$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können.";
|
||||
$a->strings["Applications"] = "Anwendungen";
|
||||
$a->strings["No installed applications."] = "Keine Applikationen installiert.";
|
||||
$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
|
||||
$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
|
||||
$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
|
||||
$a->strings["View"] = "Ansehen";
|
||||
$a->strings["Previous"] = "Vorherige";
|
||||
$a->strings["Next"] = "Nächste";
|
||||
$a->strings["list"] = "Liste";
|
||||
$a->strings["User not found"] = "Nutzer nicht gefunden";
|
||||
$a->strings["This calendar format is not supported"] = "Dieses Kalenderformat wird nicht unterstützt.";
|
||||
$a->strings["No exportable data found"] = "Keine exportierbaren Daten gefunden";
|
||||
$a->strings["calendar"] = "Kalender";
|
||||
$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
|
||||
$a->strings["Common Friends"] = "Gemeinsame Kontakte";
|
||||
$a->strings["Not available."] = "Nicht verfügbar.";
|
||||
$a->strings["No results."] = "Keine Ergebnisse.";
|
||||
$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "Diese Gemeinschaftsseite zeigt alle öffentlichen Beiträge, die auf diesem Knoten eingegangen sind. Der Inhalt entspricht nicht zwingend der Meinung der Nutzer dieses Servers.";
|
||||
$a->strings["%d contact edited."] = array(
|
||||
0 => "%d Kontakt bearbeitet.",
|
||||
1 => "%d Kontakte bearbeitet.",
|
||||
|
|
@ -1494,6 +1092,7 @@ $a->strings["%d contact edited."] = array(
|
|||
$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen.";
|
||||
$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden.";
|
||||
$a->strings["Contact updated."] = "Kontakt aktualisiert.";
|
||||
$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
|
||||
$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";
|
||||
|
|
@ -1513,14 +1112,18 @@ $a->strings["Suggest friends"] = "Kontakte vorschlagen";
|
|||
$a->strings["Network type: %s"] = "Netzwerktyp: %s";
|
||||
$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!";
|
||||
$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen";
|
||||
$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "Zusätzliche Informationen wie Vorschaubilder, Titel und Zusammenfassungen vom Feed-Eintrag laden. Du kannst diese Option aktivieren, wenn der Feed nicht all zu viel Text beinhaltet. Schlagwörter werden auf den Meta-Informationen des Feed-Headers bezogen und als Hash-Tags verwendet.";
|
||||
$a->strings["Fetch information"] = "Beziehe Information";
|
||||
$a->strings["Fetch keywords"] = "Schlüsselwprter abrufen";
|
||||
$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte";
|
||||
$a->strings["Disconnect/Unfollow"] = "Verbindung lösen/Nicht mehr folgen";
|
||||
$a->strings["Contact"] = "Kontakt";
|
||||
$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit";
|
||||
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft.";
|
||||
$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen";
|
||||
$a->strings["Their personal note"] = "Die persönliche Mitteilung";
|
||||
$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten";
|
||||
$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]";
|
||||
$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten";
|
||||
$a->strings["Ignore contact"] = "Ignoriere den Kontakt";
|
||||
$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
|
||||
|
|
@ -1529,18 +1132,23 @@ $a->strings["Last update:"] = "Letzte Aktualisierung: ";
|
|||
$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
|
||||
$a->strings["Update now"] = "Jetzt aktualisieren";
|
||||
$a->strings["Unignore"] = "Ignorieren aufheben";
|
||||
$a->strings["Ignore"] = "Ignorieren";
|
||||
$a->strings["Currently blocked"] = "Derzeit geblockt";
|
||||
$a->strings["Currently ignored"] = "Derzeit ignoriert";
|
||||
$a->strings["Currently archived"] = "Momentan archiviert";
|
||||
$a->strings["Awaiting connection acknowledge"] = "Bedarf der Bestätigung des Kontakts";
|
||||
$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt vor Anderen";
|
||||
$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["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen";
|
||||
$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt.";
|
||||
$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte ";
|
||||
$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde";
|
||||
$a->strings["Profile URL"] = "Profil URL";
|
||||
$a->strings["Actions"] = "Aktionen";
|
||||
$a->strings["Contact Settings"] = "Kontakteinstellungen";
|
||||
$a->strings["Suggestions"] = "Kontaktvorschläge";
|
||||
$a->strings["Suggest potential friends"] = "Kontakte vorschlagen";
|
||||
$a->strings["All Contacts"] = "Alle Kontakte";
|
||||
$a->strings["Show all contacts"] = "Alle Kontakte anzeigen";
|
||||
$a->strings["Unblocked"] = "Ungeblockt";
|
||||
$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen";
|
||||
|
|
@ -1553,6 +1161,7 @@ $a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen"
|
|||
$a->strings["Hidden"] = "Verborgen";
|
||||
$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen";
|
||||
$a->strings["Search your contacts"] = "Suche in deinen Kontakten";
|
||||
$a->strings["Results for: %s"] = "Ergebnisse für: %s";
|
||||
$a->strings["Update"] = "Aktualisierungen";
|
||||
$a->strings["Archive"] = "Archivieren";
|
||||
$a->strings["Unarchive"] = "Aus Archiv zurückholen";
|
||||
|
|
@ -1563,10 +1172,40 @@ $a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellunge
|
|||
$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";
|
||||
$a->strings["Edit contact"] = "Kontakt bearbeiten";
|
||||
$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
|
||||
$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
|
||||
$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
|
||||
$a->strings["Delete contact"] = "Lösche den Kontakt";
|
||||
$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
|
||||
$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
|
||||
$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
|
||||
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
|
||||
$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst.";
|
||||
$a->strings["No mirroring"] = "Kein Spiegeln";
|
||||
$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge";
|
||||
$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge";
|
||||
$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
|
||||
$a->strings["Refetch contact data"] = "Kontaktdaten neu laden";
|
||||
$a->strings["Remote Self"] = "Entfernte Konten";
|
||||
$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts";
|
||||
$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden.";
|
||||
$a->strings["Account Nickname"] = "Konto-Spitzname";
|
||||
$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
|
||||
$a->strings["Account URL"] = "Konto-URL";
|
||||
$a->strings["Friend Request URL"] = "URL für Kontaktschaftsanfragen";
|
||||
$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Kontaktanfragen";
|
||||
$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen";
|
||||
$a->strings["Poll/Feed URL"] = "Pull/Feed-URL";
|
||||
$a->strings["New photo from this URL"] = "Neues Foto von dieser URL";
|
||||
$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
|
||||
$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!";
|
||||
$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager";
|
||||
$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
|
||||
$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
|
||||
$a->strings["Remove"] = "Entfernen";
|
||||
$a->strings["Add"] = "Hinzufügen";
|
||||
$a->strings["No entries."] = "Keine Einträge.";
|
||||
$a->strings["Profile not found."] = "Profil nicht gefunden.";
|
||||
$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde.";
|
||||
$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich.";
|
||||
|
|
@ -1585,9 +1224,57 @@ $a->strings["The ID provided by your system is a duplicate on our system. It sho
|
|||
$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden.";
|
||||
$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für Dein Profil konnten nicht gespeichert werden";
|
||||
$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
|
||||
$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
|
||||
$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert.";
|
||||
$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung.";
|
||||
$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden.";
|
||||
$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse.";
|
||||
$a->strings["%d required parameter was not found at the given location"] = array(
|
||||
0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden",
|
||||
1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden",
|
||||
);
|
||||
$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen.";
|
||||
$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler.";
|
||||
$a->strings["Profile unavailable."] = "Profil nicht verfügbar.";
|
||||
$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Kontaktanfragen erhalten.";
|
||||
$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen.";
|
||||
$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen.";
|
||||
$a->strings["Invalid locator"] = "Ungültiger Locator";
|
||||
$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse.";
|
||||
$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen.";
|
||||
$a->strings["You have already introduced yourself here."] = "Du hast Dich hier bereits vorgestellt.";
|
||||
$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob Du bereits mit %s in Kontakt stehst.";
|
||||
$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
|
||||
$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
|
||||
$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Entferntes abonnieren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems. ";
|
||||
$a->strings["Please login to confirm introduction."] = "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen.";
|
||||
$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an.";
|
||||
$a->strings["Confirm"] = "Bestätigen";
|
||||
$a->strings["Hide this contact"] = "Verberge diesen Kontakt";
|
||||
$a->strings["Welcome home %s."] = "Willkommen zurück %s.";
|
||||
$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige Deine Kontaktanfrage bei %s.";
|
||||
$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:";
|
||||
$a->strings["If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten.";
|
||||
$a->strings["Friend/Connection Request"] = "Kontaktanfrage";
|
||||
$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
|
||||
$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:";
|
||||
$a->strings["Does %s know you?"] = "Kennt %s Dich?";
|
||||
$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
|
||||
$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
|
||||
$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste.";
|
||||
$a->strings["Your Identity Address:"] = "Adresse Deines Profils:";
|
||||
$a->strings["Submit Request"] = "Anfrage abschicken";
|
||||
$a->strings["Global Directory"] = "Weltweites Verzeichnis";
|
||||
$a->strings["Find on this site"] = "Auf diesem Server suchen";
|
||||
$a->strings["Results for:"] = "Ergebnisse für:";
|
||||
$a->strings["Site Directory"] = "Verzeichnis";
|
||||
$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
|
||||
$a->strings["People Search - %s"] = "Personensuche - %s";
|
||||
$a->strings["Forum Search - %s"] = "Forensuche - %s";
|
||||
$a->strings["No matches"] = "Keine Übereinstimmungen";
|
||||
$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
|
||||
$a->strings["Item not found"] = "Beitrag nicht gefunden";
|
||||
$a->strings["Edit post"] = "Beitrag bearbeiten";
|
||||
$a->strings["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden bevor sie beginnt.";
|
||||
$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
|
||||
$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
|
||||
|
|
@ -1603,9 +1290,140 @@ $a->strings["Title:"] = "Titel:";
|
|||
$a->strings["Share this event"] = "Veranstaltung teilen";
|
||||
$a->strings["Failed to remove event"] = "Entfernen der Veranstaltung fehlgeschlagen";
|
||||
$a->strings["Event removed"] = "Veranstaltung enfternt";
|
||||
$a->strings["Files"] = "Dateien";
|
||||
$a->strings["- select -"] = "- auswählen -";
|
||||
$a->strings["Contact added"] = "Kontakt hinzugefügt";
|
||||
$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt.";
|
||||
$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.";
|
||||
$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.";
|
||||
$a->strings["The network type couldn't be detected. Contact can't be added."] = "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden.";
|
||||
$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version";
|
||||
$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
|
||||
$a->strings["Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"https://friendi.ca\">Friendi.ca</a> um mehr über das Friendica Projekt zu erfahren.";
|
||||
$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
|
||||
$a->strings["the bugtracker at github"] = "den Bugtracker auf github";
|
||||
$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com";
|
||||
$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps:";
|
||||
$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert";
|
||||
$a->strings["On this server the following remote servers are blocked."] = "Auf diesem Server werden die folgenden entfernten Server blockiert.";
|
||||
$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
|
||||
$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
|
||||
$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
|
||||
$a->strings["Group created."] = "Gruppe erstellt.";
|
||||
$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen.";
|
||||
$a->strings["Group not found."] = "Gruppe nicht gefunden.";
|
||||
$a->strings["Group name changed."] = "Gruppenname geändert.";
|
||||
$a->strings["Permission denied"] = "Zugriff verweigert";
|
||||
$a->strings["Save Group"] = "Gruppe speichern";
|
||||
$a->strings["Create a group of contacts/friends."] = "Eine Kontaktgruppe anlegen.";
|
||||
$a->strings["Group removed."] = "Gruppe entfernt.";
|
||||
$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
|
||||
$a->strings["Delete Group"] = "Gruppe löschen";
|
||||
$a->strings["Group Editor"] = "Gruppeneditor";
|
||||
$a->strings["Edit Group Name"] = "Gruppen Name bearbeiten";
|
||||
$a->strings["Members"] = "Mitglieder";
|
||||
$a->strings["Group is empty"] = "Gruppe ist leer";
|
||||
$a->strings["Remove Contact"] = "Kontakt löschen";
|
||||
$a->strings["Add Contact"] = "Kontakt hinzufügen";
|
||||
$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen";
|
||||
$a->strings["No profile"] = "Kein Profil";
|
||||
$a->strings["Welcome to %s"] = "Willkommen zu %s";
|
||||
$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup";
|
||||
$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert.";
|
||||
$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden.";
|
||||
$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendicaseite wurde installiert.";
|
||||
$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren.";
|
||||
$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\".";
|
||||
$a->strings["Database already in use."] = "Die Datenbank wird bereits verwendet.";
|
||||
$a->strings["System check"] = "Systemtest";
|
||||
$a->strings["Check again"] = "Noch einmal testen";
|
||||
$a->strings["Database connection"] = "Datenbankverbindung";
|
||||
$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können.";
|
||||
$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest.";
|
||||
$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst.";
|
||||
$a->strings["Database Server Name"] = "Datenbank-Server";
|
||||
$a->strings["Database Login Name"] = "Datenbank-Nutzer";
|
||||
$a->strings["Database Login Password"] = "Datenbank-Passwort";
|
||||
$a->strings["For security reasons the password must not be empty"] = "Aus Sicherheitsgründen darf das Passwort nicht leer sein.";
|
||||
$a->strings["Database Name"] = "Datenbank-Name";
|
||||
$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators";
|
||||
$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst.";
|
||||
$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite";
|
||||
$a->strings["Site settings"] = "Server-Einstellungen";
|
||||
$a->strings["System Language:"] = "Systemsprache:";
|
||||
$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand";
|
||||
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden.";
|
||||
$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-worker'>'Setup the worker'</a>"] = "Wenn auf deinem Server keine Kommandozeilenversion von PHP installiert ist, kannst du den Hintergrundprozess nicht einrichten. Hier findest du alternative Möglichkeiten für das Worker Setup<a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-worker'>";
|
||||
$a->strings["PHP executable path"] = "Pfad zu PHP";
|
||||
$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren.";
|
||||
$a->strings["Command line PHP"] = "Kommandozeilen-PHP";
|
||||
$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)";
|
||||
$a->strings["Found PHP version: "] = "Gefundene PHP Version:";
|
||||
$a->strings["PHP cli binary"] = "PHP CLI Binary";
|
||||
$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert.";
|
||||
$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt.";
|
||||
$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
|
||||
$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen";
|
||||
$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an.";
|
||||
$a->strings["Generate encryption keys"] = "Schlüssel erzeugen";
|
||||
$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul";
|
||||
$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul";
|
||||
$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul";
|
||||
$a->strings["PDO or MySQLi PHP module"] = "PDO oder MySQLi PHP Modul";
|
||||
$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul";
|
||||
$a->strings["XML PHP module"] = "XML PHP Modul";
|
||||
$a->strings["iconv module"] = "iconv module";
|
||||
$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
|
||||
$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert.";
|
||||
$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert.";
|
||||
$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert.";
|
||||
$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert.";
|
||||
$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Fehler: PDO oder MySQLi PHP Modul erforderlich, aber nicht installiert.";
|
||||
$a->strings["Error: The MySQL driver for PDO is not installed."] = "Fehler: der MySQL Treiber für PDO ist nicht installiert";
|
||||
$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert.";
|
||||
$a->strings["Error: iconv PHP module required but not installed."] = "Fehler: Das iconv-Modul von PHP ist nicht installiert.";
|
||||
$a->strings["Error, XML PHP module required but not installed."] = "Fehler: XML PHP Modul erforderlich aber nicht installiert.";
|
||||
$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun.";
|
||||
$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast.";
|
||||
$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst.";
|
||||
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt.";
|
||||
$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php";
|
||||
$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen.";
|
||||
$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica.";
|
||||
$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat.";
|
||||
$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten.";
|
||||
$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar";
|
||||
$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers.";
|
||||
$a->strings["Url rewrite is working"] = "URL rewrite funktioniert";
|
||||
$a->strings["ImageMagick PHP extension is not installed"] = "ImageMagicx PHP Erweiterung ist nicht installiert.";
|
||||
$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP Erweiterung ist installiert";
|
||||
$a->strings["ImageMagick supports GIF"] = "ImageMagick unterstützt GIF";
|
||||
$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen.";
|
||||
$a->strings["<h1>What next</h1>"] = "<h1>Wie geht es weiter?</h1>";
|
||||
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "Wichtig: Du musst [manuell] einen Cronjob (o.ä.) für den Worker einrichten.";
|
||||
$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht.";
|
||||
$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse.";
|
||||
$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein";
|
||||
$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite.";
|
||||
$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen.";
|
||||
$a->strings["%d message sent."] = array(
|
||||
0 => "%d Nachricht gesendet.",
|
||||
1 => "%d Nachrichten gesendet.",
|
||||
);
|
||||
$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen";
|
||||
$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke.";
|
||||
$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website.";
|
||||
$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst.";
|
||||
$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen.";
|
||||
$a->strings["To accept this invitation, please visit and register at %s."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s.";
|
||||
$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden.";
|
||||
$a->strings["Send invitations"] = "Einladungen senden";
|
||||
$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:";
|
||||
$a->strings["Your message:"] = "Deine Nachricht:";
|
||||
$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen.";
|
||||
$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code";
|
||||
$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:";
|
||||
$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendi.ca.";
|
||||
$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden.";
|
||||
$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen.";
|
||||
$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden.";
|
||||
|
|
@ -1613,8 +1431,61 @@ $a->strings["This message was sent to you by %s, a member of the Friendica socia
|
|||
$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen";
|
||||
$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest.";
|
||||
$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht.";
|
||||
$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
|
||||
$a->strings["Visible to:"] = "Sichtbar für:";
|
||||
$a->strings["No valid account found."] = "Kein gültiges Konto gefunden.";
|
||||
$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail.";
|
||||
$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast.";
|
||||
$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1\$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s";
|
||||
$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten";
|
||||
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert.";
|
||||
$a->strings["Password Reset"] = "Passwort zurücksetzen";
|
||||
$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt.";
|
||||
$a->strings["Your new password is"] = "Dein neues Passwort lautet";
|
||||
$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort - und dann";
|
||||
$a->strings["click here to login"] = "hier klicken, um Dich anzumelden";
|
||||
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald Du Dich erfolgreich angemeldet hast.";
|
||||
$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nHallo %1\$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst).";
|
||||
$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1\$s\nLogin Name: %2\$s\nPasswort: %3\$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden.";
|
||||
$a->strings["Your password has been changed at %s"] = "Auf %s wurde Dein Passwort geändert";
|
||||
$a->strings["Forgot your Password?"] = "Hast Du Dein Passwort vergessen?";
|
||||
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet.";
|
||||
$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:";
|
||||
$a->strings["Reset"] = "Zurücksetzen";
|
||||
$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten";
|
||||
$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast.";
|
||||
$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: ";
|
||||
$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu.";
|
||||
$a->strings["is interested in:"] = "ist interessiert an:";
|
||||
$a->strings["Profile Match"] = "Profilübereinstimmungen";
|
||||
$a->strings["No recipient selected."] = "Kein Empfänger gewählt.";
|
||||
$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
|
||||
$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden.";
|
||||
$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen.";
|
||||
$a->strings["Message sent."] = "Nachricht gesendet.";
|
||||
$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?";
|
||||
$a->strings["Message deleted."] = "Nachricht gelöscht.";
|
||||
$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
|
||||
$a->strings["Send Private Message"] = "Private Nachricht senden";
|
||||
$a->strings["To:"] = "An:";
|
||||
$a->strings["Subject:"] = "Betreff:";
|
||||
$a->strings["No messages."] = "Keine Nachrichten.";
|
||||
$a->strings["Message not available."] = "Nachricht nicht verfügbar.";
|
||||
$a->strings["Delete message"] = "Nachricht löschen";
|
||||
$a->strings["Delete conversation"] = "Unterhaltung löschen";
|
||||
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten.";
|
||||
$a->strings["Send Reply"] = "Antwort senden";
|
||||
$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s";
|
||||
$a->strings["You and %s"] = "Du und %s";
|
||||
$a->strings["%s and You"] = "%s und Du";
|
||||
$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A";
|
||||
$a->strings["%d message"] = array(
|
||||
0 => "%d Nachricht",
|
||||
1 => "%d Nachrichten",
|
||||
);
|
||||
$a->strings["Mood"] = "Stimmung";
|
||||
$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten";
|
||||
$a->strings["Remove term"] = "Begriff entfernen";
|
||||
$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array(
|
||||
0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht öffentlichen Beiträge empfangen kann.",
|
||||
1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können.",
|
||||
|
|
@ -1628,6 +1499,7 @@ $a->strings["Commented Order"] = "Neueste Kommentare";
|
|||
$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren";
|
||||
$a->strings["Posted Order"] = "Neueste Beiträge";
|
||||
$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren";
|
||||
$a->strings["Personal"] = "Persönlich";
|
||||
$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um Dich geht";
|
||||
$a->strings["New"] = "Neue";
|
||||
$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum";
|
||||
|
|
@ -1635,13 +1507,77 @@ $a->strings["Shared Links"] = "Geteilte Links";
|
|||
$a->strings["Interesting Links"] = "Interessante Links";
|
||||
$a->strings["Starred"] = "Markierte";
|
||||
$a->strings["Favourite Posts"] = "Favorisierte Beiträge";
|
||||
$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica";
|
||||
$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder";
|
||||
$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden.";
|
||||
$a->strings["Getting Started"] = "Einstieg";
|
||||
$a->strings["Friendica Walk-Through"] = "Friendica Rundgang";
|
||||
$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der <em>Quick Start</em> Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst.";
|
||||
$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen";
|
||||
$a->strings["On your <em>Settings</em> page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Kontakte mit anderen im Friendica Netzwerk zu knüpfen..";
|
||||
$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Kontakte und potentiellen Kontakte wissen genau, wie sie Dich finden können.";
|
||||
$a->strings["Upload Profile Photo"] = "Profilbild hochladen";
|
||||
$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Kontakte zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust.";
|
||||
$a->strings["Edit Your Profile"] = "Editiere dein Profil";
|
||||
$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere Dein <strong>Standard</strong> Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Kontaktliste vor unbekannten Betrachtern des Profils.";
|
||||
$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe";
|
||||
$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen.";
|
||||
$a->strings["Connecting"] = "Verbindungen knüpfen";
|
||||
$a->strings["Importing Emails"] = "Emails Importieren";
|
||||
$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Kontakten und Mailinglisten interagieren willst.";
|
||||
$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite";
|
||||
$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Personen in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein.";
|
||||
$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis Deiner Friendica Instanz";
|
||||
$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst.";
|
||||
$a->strings["Finding New People"] = "Neue Leute kennenlernen";
|
||||
$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden.";
|
||||
$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte";
|
||||
$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald Du einige Kontakte gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren.";
|
||||
$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?";
|
||||
$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch.";
|
||||
$a->strings["Getting Help"] = "Hilfe bekommen";
|
||||
$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen";
|
||||
$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten.";
|
||||
$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind";
|
||||
$a->strings["Invalid request identifier."] = "Invalid request identifier.";
|
||||
$a->strings["Discard"] = "Verwerfen";
|
||||
$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
|
||||
$a->strings["System Notifications"] = "Systembenachrichtigungen";
|
||||
$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
|
||||
$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen";
|
||||
$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen";
|
||||
$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen";
|
||||
$a->strings["Notification type: "] = "Benachrichtigungstyp: ";
|
||||
$a->strings["suggested by %s"] = "vorgeschlagen von %s";
|
||||
$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden";
|
||||
$a->strings["if applicable"] = "falls anwendbar";
|
||||
$a->strings["Claims to be known to you: "] = "Behauptet Dich zu kennen: ";
|
||||
$a->strings["yes"] = "ja";
|
||||
$a->strings["no"] = "nein";
|
||||
$a->strings["Shall your connection be bidirectional or not?"] = "Soll die Verbindung beidseitig sein oder nicht?";
|
||||
$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Akzeptierst du %s als Kontakt, erlaubst du damit das Lesen deiner Beiträge und abonnierst selbst auch die Beiträge von %s.";
|
||||
$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten.";
|
||||
$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Wenn du %s als Teilenden akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten.";
|
||||
$a->strings["Friend"] = "Kontakt";
|
||||
$a->strings["Sharer"] = "Teilenden";
|
||||
$a->strings["Subscriber"] = "Abonnent";
|
||||
$a->strings["No introductions."] = "Keine Kontaktanfragen.";
|
||||
$a->strings["Show unread"] = "Ungelesene anzeigen";
|
||||
$a->strings["Show all"] = "Alle anzeigen";
|
||||
$a->strings["No more %s notifications."] = "Keine weiteren %s Benachrichtigungen";
|
||||
$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen.";
|
||||
$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
|
||||
$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet.";
|
||||
$a->strings["Subscribing to OStatus contacts"] = "OStatus Kontakten folgen";
|
||||
$a->strings["No contact provided."] = "Keine Kontakte gefunden.";
|
||||
$a->strings["Couldn't fetch information for contact."] = "Konnte die Kontaktinformationen nicht einholen.";
|
||||
$a->strings["Couldn't fetch friends for contact."] = "Konnte die Kontaktliste des Kontakts nicht abfragen.";
|
||||
$a->strings["Done"] = "Erledigt";
|
||||
$a->strings["success"] = "Erfolg";
|
||||
$a->strings["failed"] = "Fehlgeschlagen";
|
||||
$a->strings["ignored"] = "Ignoriert";
|
||||
$a->strings["Keep this window open until done."] = "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist.";
|
||||
$a->strings["Not Extended"] = "Nicht erweitert.";
|
||||
$a->strings["Recent Photos"] = "Neueste Fotos";
|
||||
$a->strings["Upload New Photos"] = "Neue Fotos hochladen";
|
||||
$a->strings["everybody"] = "jeder";
|
||||
|
|
@ -1703,6 +1639,7 @@ $a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder
|
|||
$a->strings["Recipient"] = "Empfänger";
|
||||
$a->strings["Choose what you wish to do to recipient"] = "Was willst Du mit dem Empfänger machen:";
|
||||
$a->strings["Make this post private"] = "Diesen Beitrag privat machen";
|
||||
$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
|
||||
$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl.";
|
||||
$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte.";
|
||||
$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird.";
|
||||
|
|
@ -1790,11 +1727,16 @@ $a->strings["Work/employment"] = "Arbeit/Anstellung";
|
|||
$a->strings["School/education"] = "Schule/Ausbildung";
|
||||
$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke";
|
||||
$a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile";
|
||||
$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner.";
|
||||
$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit";
|
||||
$a->strings["Visible To"] = "Sichtbar für";
|
||||
$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)";
|
||||
$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet.";
|
||||
$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern.";
|
||||
$a->strings["Registration successful."] = "Registrierung erfolgreich.";
|
||||
$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden.";
|
||||
$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden.";
|
||||
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.";
|
||||
$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst.";
|
||||
$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus.";
|
||||
$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): ";
|
||||
|
|
@ -1804,19 +1746,30 @@ $a->strings["Leave a message for the admin, why you want to join this node"] = "
|
|||
$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich.";
|
||||
$a->strings["Your invitation ID: "] = "ID Deiner Einladung: ";
|
||||
$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):";
|
||||
$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: ";
|
||||
$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "Deine E-Mail Adresse (Informationen zur Registrierung werden an diese Adresse gesendet, darum muss sie existieren.)";
|
||||
$a->strings["New Password:"] = "Neues Passwort:";
|
||||
$a->strings["Leave empty for an auto generated password."] = "Leer lassen um das Passwort automatisch zu generieren.";
|
||||
$a->strings["Confirm:"] = "Bestätigen:";
|
||||
$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird '<strong>spitzname@\$sitename</strong>' sein.";
|
||||
$a->strings["Choose a nickname: "] = "Spitznamen wählen: ";
|
||||
$a->strings["Import"] = "Import";
|
||||
$a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz";
|
||||
$a->strings["Account approved."] = "Konto freigegeben.";
|
||||
$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen";
|
||||
$a->strings["Please login."] = "Bitte melde Dich an.";
|
||||
$a->strings["Remove My Account"] = "Konto löschen";
|
||||
$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
|
||||
$a->strings["Please enter your password for verification:"] = "Bitte gib Dein Passwort zur Verifikation ein:";
|
||||
$a->strings["Resubscribing to OStatus contacts"] = "Erneuern der OStatus Abonements";
|
||||
$a->strings["Error"] = "Fehler";
|
||||
$a->strings["Only logged in users are permitted to perform a search."] = "Nur eingeloggten Benutzern ist das Suchen gestattet.";
|
||||
$a->strings["Too Many Requests"] = "Zu viele Abfragen";
|
||||
$a->strings["Only one search per minute is permitted for not logged in users."] = "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet.";
|
||||
$a->strings["Items tagged with: %s"] = "Beiträge die mit %s getaggt sind";
|
||||
$a->strings["Display"] = "Anzeige";
|
||||
$a->strings["Social Networks"] = "Soziale Netzwerke";
|
||||
$a->strings["Connected apps"] = "Verbundene Programme";
|
||||
$a->strings["Export personal data"] = "Persönliche Daten exportieren";
|
||||
$a->strings["Remove account"] = "Konto löschen";
|
||||
$a->strings["Missing some important data!"] = "Wichtige Daten fehlen!";
|
||||
$a->strings["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich.";
|
||||
|
|
@ -1896,6 +1849,8 @@ $a->strings["Automatic updates only at the top of the network page"] = "Automati
|
|||
$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "Wenn dies deaktiviert ist, wird die Netzwerk Seite aktualisiert, wann immer neue Beiträge eintreffen, egal an welcher Stelle gerade gelesen wird.";
|
||||
$a->strings["Bandwith Saver Mode"] = "Bandbreiten-Spar-Modus";
|
||||
$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "Wenn aktiviert, wird der eingebettete Inhalt nicht automatisch aktualisiert. In diesem Fall Seite bitte neu laden.";
|
||||
$a->strings["Smart Threading"] = "Intelligentes Threading";
|
||||
$a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = "Ist dies aktiviert, werden Einrückungen in Unterhaltungen unterdrückt wo sie nicht benötigt werden. Werden sie benötigt, werden die Threads weiterhin eingerückt.";
|
||||
$a->strings["General Theme Settings"] = "Allgemeine Themeneinstellungen";
|
||||
$a->strings["Custom Theme Settings"] = "Benutzerdefinierte Theme Einstellungen";
|
||||
$a->strings["Content Settings"] = "Einstellungen zum Inhalt";
|
||||
|
|
@ -1990,49 +1945,44 @@ $a->strings["Change the behaviour of this account for special situations"] = "Ve
|
|||
$a->strings["Relocate"] = "Umziehen";
|
||||
$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button.";
|
||||
$a->strings["Resend relocate message to contacts"] = "Umzugsbenachrichtigung erneut an Kontakte senden";
|
||||
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
|
||||
$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?";
|
||||
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
|
||||
$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
|
||||
$a->strings["Tag removed"] = "Tag entfernt";
|
||||
$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen";
|
||||
$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: ";
|
||||
$a->strings["Export account"] = "Account exportieren";
|
||||
$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen.";
|
||||
$a->strings["Export all"] = "Alles exportieren";
|
||||
$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert).";
|
||||
$a->strings["Move account"] = "Account umziehen";
|
||||
$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren.";
|
||||
$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Kontakte darüber zu informieren, dass Du hierher umgezogen bist.";
|
||||
$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren";
|
||||
$a->strings["Account file"] = "Account Datei";
|
||||
$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
|
||||
$a->strings["Contact wasn't found or can't be unfollowed."] = "Der Kontakt konnte nicht gefunden oder nicht entfolgt werden.";
|
||||
$a->strings["Contact unfollowed"] = "Kontakt wird nicht mehr gefolgt";
|
||||
$a->strings["You aren't a friend of this contact."] = "Du hast keine beidseitige Freundschaft mit diesem Kontakt.";
|
||||
$a->strings["Unfollowing is currently not supported by your network."] = "Bei diesem Netzwerk wird das Entfolgen derzeit nicht unterstützt.";
|
||||
$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
|
||||
$a->strings["Do you really want to delete this video?"] = "Möchtest Du dieses Video wirklich löschen?";
|
||||
$a->strings["Delete Video"] = "Video Löschen";
|
||||
$a->strings["No videos selected"] = "Keine Videos ausgewählt";
|
||||
$a->strings["Recent Videos"] = "Neueste Videos";
|
||||
$a->strings["Upload New Videos"] = "Neues Video hochladen";
|
||||
$a->strings["No contacts."] = "Keine Kontakte.";
|
||||
$a->strings["Access denied."] = "Zugriff verweigert.";
|
||||
$a->strings["Invalid request."] = "Ungültige Anfrage";
|
||||
$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt.";
|
||||
$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?";
|
||||
$a->strings["File exceeds size limit of %s"] = "Die Datei ist größer als das erlaubte Limit von %s";
|
||||
$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
|
||||
$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet.";
|
||||
$a->strings["save to folder"] = "In Ordner speichern";
|
||||
$a->strings["I will attend"] = "Ich werde teilnehmen";
|
||||
$a->strings["I will not attend"] = "Ich werde nicht teilnehmen";
|
||||
$a->strings["I might attend"] = "Ich werde eventuell teilnehmen";
|
||||
$a->strings["add star"] = "markieren";
|
||||
$a->strings["remove star"] = "Markierung entfernen";
|
||||
$a->strings["toggle star status"] = "Markierung umschalten";
|
||||
$a->strings["starred"] = "markiert";
|
||||
$a->strings["ignore thread"] = "Thread ignorieren";
|
||||
$a->strings["unignore thread"] = "Thread nicht mehr ignorieren";
|
||||
$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten";
|
||||
$a->strings["add tag"] = "Tag hinzufügen";
|
||||
$a->strings["like"] = "mag ich";
|
||||
$a->strings["dislike"] = "mag ich nicht";
|
||||
$a->strings["Share this"] = "Weitersagen";
|
||||
$a->strings["share"] = "Teilen";
|
||||
$a->strings["to"] = "zu";
|
||||
$a->strings["via"] = "via";
|
||||
$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
|
||||
$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
|
||||
$a->strings["%d comment"] = array(
|
||||
0 => "%d Kommentar",
|
||||
1 => "%d Kommentare",
|
||||
);
|
||||
$a->strings["Bold"] = "Fett";
|
||||
$a->strings["Italic"] = "Kursiv";
|
||||
$a->strings["Underline"] = "Unterstrichen";
|
||||
$a->strings["Quote"] = "Zitat";
|
||||
$a->strings["Code"] = "Code";
|
||||
$a->strings["Image"] = "Bild";
|
||||
$a->strings["Link"] = "Link";
|
||||
$a->strings["Video"] = "Video";
|
||||
$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
|
||||
$a->strings["Unable to check your home location."] = "Konnte Deinen Heimatort nicht bestimmen.";
|
||||
$a->strings["No recipient."] = "Kein Empfänger.";
|
||||
$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
|
||||
$a->strings["greenzero"] = "greenzero";
|
||||
$a->strings["purplezero"] = "purplezero";
|
||||
$a->strings["easterbunny"] = "easterbunny";
|
||||
|
|
@ -2066,18 +2016,76 @@ $a->strings["Center"] = "Mitte";
|
|||
$a->strings["Color scheme"] = "Farbschema";
|
||||
$a->strings["Posts font size"] = "Schriftgröße in Beiträgen";
|
||||
$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern";
|
||||
$a->strings["Community Profiles"] = "Community-Profile";
|
||||
$a->strings["Last users"] = "Letzte Nutzer";
|
||||
$a->strings["Find Friends"] = "Kontakte finden";
|
||||
$a->strings["Local Directory"] = "Lokales Verzeichnis";
|
||||
$a->strings["Quick Start"] = "Schnell-Start";
|
||||
$a->strings["Connect Services"] = "Verbinde Dienste";
|
||||
$a->strings["Comma separated list of helper forums"] = "Komma-Separierte Liste der Helfer-Foren";
|
||||
$a->strings["Set style"] = "Stil auswählen";
|
||||
$a->strings["Community Pages"] = "Foren";
|
||||
$a->strings["Community Profiles"] = "Community-Profile";
|
||||
$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere";
|
||||
$a->strings["Connect Services"] = "Verbinde Dienste";
|
||||
$a->strings["Find Friends"] = "Kontakte finden";
|
||||
$a->strings["Last users"] = "Letzte Nutzer";
|
||||
$a->strings["Local Directory"] = "Lokales Verzeichnis";
|
||||
$a->strings["External link to forum"] = "Externer Link zum Forum";
|
||||
$a->strings["Quick Start"] = "Schnell-Start";
|
||||
$a->strings["System"] = "System";
|
||||
$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
|
||||
$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
|
||||
$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag";
|
||||
$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht";
|
||||
$a->strings["%s is attending %s's event"] = "%s nimmt an %s's Event teil";
|
||||
$a->strings["%s is not attending %s's event"] = "%s nimmt nicht an %s's Event teil";
|
||||
$a->strings["%s may attend %s's event"] = "%s nimmt eventuell an %s's Event teil";
|
||||
$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
|
||||
$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
|
||||
$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
|
||||
$a->strings["New Follower"] = "Neuer Bewunderer";
|
||||
$a->strings["Delete this item?"] = "Diesen Beitrag löschen?";
|
||||
$a->strings["show fewer"] = "weniger anzeigen";
|
||||
$a->strings["Drop Contact"] = "Kontakt löschen";
|
||||
$a->strings["Organisation"] = "Organisation";
|
||||
$a->strings["News"] = "Nachrichten";
|
||||
$a->strings["Forum"] = "Forum";
|
||||
$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet.";
|
||||
$a->strings["save to folder"] = "In Ordner speichern";
|
||||
$a->strings["I will attend"] = "Ich werde teilnehmen";
|
||||
$a->strings["I will not attend"] = "Ich werde nicht teilnehmen";
|
||||
$a->strings["I might attend"] = "Ich werde eventuell teilnehmen";
|
||||
$a->strings["add star"] = "markieren";
|
||||
$a->strings["remove star"] = "Markierung entfernen";
|
||||
$a->strings["toggle star status"] = "Markierung umschalten";
|
||||
$a->strings["starred"] = "markiert";
|
||||
$a->strings["ignore thread"] = "Thread ignorieren";
|
||||
$a->strings["unignore thread"] = "Thread nicht mehr ignorieren";
|
||||
$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten";
|
||||
$a->strings["add tag"] = "Tag hinzufügen";
|
||||
$a->strings["like"] = "mag ich";
|
||||
$a->strings["dislike"] = "mag ich nicht";
|
||||
$a->strings["Share this"] = "Weitersagen";
|
||||
$a->strings["share"] = "Teilen";
|
||||
$a->strings["to"] = "zu";
|
||||
$a->strings["via"] = "via";
|
||||
$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
|
||||
$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
|
||||
$a->strings["%d comment"] = array(
|
||||
0 => "%d Kommentar",
|
||||
1 => "%d Kommentare",
|
||||
);
|
||||
$a->strings["Bold"] = "Fett";
|
||||
$a->strings["Italic"] = "Kursiv";
|
||||
$a->strings["Underline"] = "Unterstrichen";
|
||||
$a->strings["Quote"] = "Zitat";
|
||||
$a->strings["Code"] = "Code";
|
||||
$a->strings["Image"] = "Bild";
|
||||
$a->strings["Link"] = "Link";
|
||||
$a->strings["Video"] = "Video";
|
||||
$a->strings["%s\\'s birthday"] = "%ss Geburtstag";
|
||||
$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
|
||||
$a->strings["Attachments:"] = "Anhänge:";
|
||||
$a->strings["%s is now following %s."] = "%s folgt nun %s";
|
||||
$a->strings["following"] = "folgen";
|
||||
$a->strings["%s stopped following %s."] = "%s hat aufgehört %s zu folgen";
|
||||
$a->strings["stopped following"] = "wird nicht mehr gefolgt";
|
||||
$a->strings["(no subject)"] = "(kein Betreff)";
|
||||
$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen.";
|
||||
$a->strings["Create a New Account"] = "Neues Konto erstellen";
|
||||
$a->strings["Password: "] = "Passwort: ";
|
||||
|
|
|
|||
12108
view/lang/fr/messages.po
12108
view/lang/fr/messages.po
|
|
@ -11,20 +11,22 @@
|
|||
# Hypolite Petovan <mrpetovan@gmail.com>, 2016
|
||||
# Jak <jacques@riseup.net>, 2014
|
||||
# Lionel Triay <zapimax38@free.fr>, 2013
|
||||
# Thecross, 2017
|
||||
# Marquis_de_Carabas <olivier@free-beer.ch>, 2012
|
||||
# Olivier <olivier+transifex@migeot.org>, 2011-2012
|
||||
# Perig Gouanvic <pierre.alain.gouanvic@gmail.com>, 2015
|
||||
# StefOfficiel <pichard.stephane@free.fr>, 2015
|
||||
# Sylvain Lagacé, 2014-2015
|
||||
# Thecross, 2017
|
||||
# tomamplius <thomas@lgy.fr>, 2014
|
||||
# Tubuntu <tubuntu@testimonium.be>, 2013-2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-19 07:46+0100\n"
|
||||
"PO-Revision-Date: 2016-12-19 10:01+0000\n"
|
||||
"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
|
||||
"POT-Creation-Date: 2017-11-27 09:19+0100\n"
|
||||
"PO-Revision-Date: 2017-12-04 22:20+0000\n"
|
||||
"Last-Translator: Thecross\n"
|
||||
"Language-Team: French (http://www.transifex.com/Friendica/friendica/language/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -32,112 +34,6 @@ msgstr ""
|
|||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#: include/contact_widgets.php:6
|
||||
msgid "Add New Contact"
|
||||
msgstr "Ajouter un nouveau contact"
|
||||
|
||||
#: include/contact_widgets.php:7
|
||||
msgid "Enter address or web location"
|
||||
msgstr "Entrez son adresse ou sa localisation web"
|
||||
|
||||
#: include/contact_widgets.php:8
|
||||
msgid "Example: bob@example.com, http://example.com/barbara"
|
||||
msgstr "Exemple: bob@example.com, http://example.com/barbara"
|
||||
|
||||
#: include/contact_widgets.php:10 include/identity.php:218
|
||||
#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87
|
||||
#: mod/suggest.php:101
|
||||
msgid "Connect"
|
||||
msgstr "Relier"
|
||||
|
||||
#: include/contact_widgets.php:24
|
||||
#, php-format
|
||||
msgid "%d invitation available"
|
||||
msgid_plural "%d invitations available"
|
||||
msgstr[0] "%d invitation disponible"
|
||||
msgstr[1] "%d invitations disponibles"
|
||||
|
||||
#: include/contact_widgets.php:30
|
||||
msgid "Find People"
|
||||
msgstr "Trouver des personnes"
|
||||
|
||||
#: include/contact_widgets.php:31
|
||||
msgid "Enter name or interest"
|
||||
msgstr "Entrez un nom ou un centre d'intérêt"
|
||||
|
||||
#: include/contact_widgets.php:32 include/Contact.php:354
|
||||
#: include/conversation.php:981 mod/allfriends.php:66 mod/dirfind.php:204
|
||||
#: mod/match.php:72 mod/suggest.php:83 mod/contacts.php:602 mod/follow.php:103
|
||||
msgid "Connect/Follow"
|
||||
msgstr "Connecter/Suivre"
|
||||
|
||||
#: include/contact_widgets.php:33
|
||||
msgid "Examples: Robert Morgenstein, Fishing"
|
||||
msgstr "Exemples: Robert Morgenstein, Pêche"
|
||||
|
||||
#: include/contact_widgets.php:34 mod/directory.php:204 mod/contacts.php:798
|
||||
msgid "Find"
|
||||
msgstr "Trouver"
|
||||
|
||||
#: include/contact_widgets.php:35 mod/suggest.php:114
|
||||
#: view/theme/vier/theme.php:203
|
||||
msgid "Friend Suggestions"
|
||||
msgstr "Suggestions d'amitiés/contacts"
|
||||
|
||||
#: include/contact_widgets.php:36 view/theme/vier/theme.php:202
|
||||
msgid "Similar Interests"
|
||||
msgstr "Intérêts similaires"
|
||||
|
||||
#: include/contact_widgets.php:37
|
||||
msgid "Random Profile"
|
||||
msgstr "Profil au hasard"
|
||||
|
||||
#: include/contact_widgets.php:38 view/theme/vier/theme.php:204
|
||||
msgid "Invite Friends"
|
||||
msgstr "Inviter des amis"
|
||||
|
||||
#: include/contact_widgets.php:108
|
||||
msgid "Networks"
|
||||
msgstr "Réseaux"
|
||||
|
||||
#: include/contact_widgets.php:111
|
||||
msgid "All Networks"
|
||||
msgstr "Tous réseaux"
|
||||
|
||||
#: include/contact_widgets.php:141 include/features.php:110
|
||||
msgid "Saved Folders"
|
||||
msgstr "Dossiers sauvegardés"
|
||||
|
||||
#: include/contact_widgets.php:144 include/contact_widgets.php:176
|
||||
msgid "Everything"
|
||||
msgstr "Tout"
|
||||
|
||||
#: include/contact_widgets.php:173
|
||||
msgid "Categories"
|
||||
msgstr "Catégories"
|
||||
|
||||
#: include/contact_widgets.php:237
|
||||
#, php-format
|
||||
msgid "%d contact in common"
|
||||
msgid_plural "%d contacts in common"
|
||||
msgstr[0] "%d contact en commun"
|
||||
msgstr[1] "%d contacts en commun"
|
||||
|
||||
#: include/contact_widgets.php:242 include/ForumManager.php:119
|
||||
#: include/items.php:2245 mod/content.php:624 object/Item.php:432
|
||||
#: view/theme/vier/theme.php:260 boot.php:972
|
||||
msgid "show more"
|
||||
msgstr "montrer plus"
|
||||
|
||||
#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025
|
||||
#: view/theme/vier/theme.php:255
|
||||
msgid "Forums"
|
||||
msgstr "Forums"
|
||||
|
||||
#: include/ForumManager.php:116 view/theme/vier/theme.php:257
|
||||
msgid "External link to forum"
|
||||
msgstr "Lien sortant vers le forum"
|
||||
|
||||
#: include/profile_selectors.php:6
|
||||
msgid "Male"
|
||||
msgstr "Masculin"
|
||||
|
|
@ -190,7 +86,7 @@ msgstr "Non-spécifique"
|
|||
msgid "Other"
|
||||
msgstr "Autre"
|
||||
|
||||
#: include/profile_selectors.php:6 include/conversation.php:1487
|
||||
#: include/profile_selectors.php:6 include/conversation.php:1645
|
||||
msgid "Undecided"
|
||||
msgid_plural "Undecided"
|
||||
msgstr[0] "Indécis"
|
||||
|
|
@ -284,7 +180,7 @@ msgstr "Infidèle"
|
|||
msgid "Sex Addict"
|
||||
msgstr "Accro au sexe"
|
||||
|
||||
#: include/profile_selectors.php:42 include/user.php:280 include/user.php:284
|
||||
#: include/profile_selectors.php:42 include/user.php:257 include/user.php:261
|
||||
msgid "Friends"
|
||||
msgstr "Amis"
|
||||
|
||||
|
|
@ -372,1307 +268,907 @@ msgstr "S'en désintéresse"
|
|||
msgid "Ask me"
|
||||
msgstr "Me demander"
|
||||
|
||||
#: include/dba_pdo.php:72 include/dba.php:56
|
||||
#, php-format
|
||||
msgid "Cannot locate DNS info for database server '%s'"
|
||||
msgstr "Impossible de localiser les informations DNS pour le serveur de base de données '%s'"
|
||||
#: include/Photo.php:998 include/Photo.php:1014 include/Photo.php:1022
|
||||
#: include/Photo.php:1047 include/message.php:140 mod/item.php:582
|
||||
#: mod/wall_upload.php:228
|
||||
msgid "Wall Photos"
|
||||
msgstr "Photos du mur"
|
||||
|
||||
#: include/auth.php:45
|
||||
msgid "Logged out."
|
||||
msgstr "Déconnecté."
|
||||
|
||||
#: include/auth.php:116 include/auth.php:178 mod/openid.php:100
|
||||
msgid "Login failed."
|
||||
msgstr "Échec de connexion."
|
||||
|
||||
#: include/auth.php:132 include/user.php:75
|
||||
msgid ""
|
||||
"We encountered a problem while logging in with the OpenID you provided. "
|
||||
"Please check the correct spelling of the ID."
|
||||
msgstr "Nous avons eu un souci avec l'OpenID que vous avez fourni. merci de vérifier l'orthographe correcte de ce dernier."
|
||||
|
||||
#: include/auth.php:132 include/user.php:75
|
||||
msgid "The error message was:"
|
||||
msgstr "Le message d'erreur était :"
|
||||
|
||||
#: include/group.php:25
|
||||
msgid ""
|
||||
"A deleted group with this name was revived. Existing item permissions "
|
||||
"<strong>may</strong> apply to this group and any future members. If this is "
|
||||
"not what you intended, please create another group with a different name."
|
||||
msgstr "Un groupe supprimé a été recréé. Les permissions existantes <strong>pourraient</strong> s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom."
|
||||
|
||||
#: include/group.php:209
|
||||
msgid "Default privacy group for new contacts"
|
||||
msgstr "Paramètres de confidentialité par défaut pour les nouveaux contacts"
|
||||
|
||||
#: include/group.php:242
|
||||
msgid "Everybody"
|
||||
msgstr "Tout le monde"
|
||||
|
||||
#: include/group.php:265
|
||||
msgid "edit"
|
||||
msgstr "éditer"
|
||||
|
||||
#: include/group.php:286 mod/newmember.php:61
|
||||
msgid "Groups"
|
||||
msgstr "Groupes"
|
||||
|
||||
#: include/group.php:288
|
||||
msgid "Edit groups"
|
||||
msgstr "Modifier les groupes"
|
||||
|
||||
#: include/group.php:290
|
||||
msgid "Edit group"
|
||||
msgstr "Editer groupe"
|
||||
|
||||
#: include/group.php:291
|
||||
msgid "Create a new group"
|
||||
msgstr "Créer un nouveau groupe"
|
||||
|
||||
#: include/group.php:292 mod/group.php:94 mod/group.php:178
|
||||
msgid "Group Name: "
|
||||
msgstr "Nom du groupe: "
|
||||
|
||||
#: include/group.php:294
|
||||
msgid "Contacts not in any group"
|
||||
msgstr "Contacts n'appartenant à aucun groupe"
|
||||
|
||||
#: include/group.php:296 mod/network.php:201
|
||||
msgid "add"
|
||||
msgstr "ajouter"
|
||||
|
||||
#: include/contact_selectors.php:32
|
||||
msgid "Unknown | Not categorised"
|
||||
msgstr "Inconnu | Non-classé"
|
||||
|
||||
#: include/contact_selectors.php:33
|
||||
msgid "Block immediately"
|
||||
msgstr "Bloquer immédiatement"
|
||||
|
||||
#: include/contact_selectors.php:34
|
||||
msgid "Shady, spammer, self-marketer"
|
||||
msgstr "Douteux, spammeur, accro à l'auto-promotion"
|
||||
|
||||
#: include/contact_selectors.php:35
|
||||
msgid "Known to me, but no opinion"
|
||||
msgstr "Connu de moi, mais sans opinion"
|
||||
|
||||
#: include/contact_selectors.php:36
|
||||
msgid "OK, probably harmless"
|
||||
msgstr "OK, probablement inoffensif"
|
||||
|
||||
#: include/contact_selectors.php:37
|
||||
msgid "Reputable, has my trust"
|
||||
msgstr "Réputé, a toute ma confiance"
|
||||
|
||||
#: include/contact_selectors.php:56 mod/admin.php:890
|
||||
msgid "Frequently"
|
||||
msgstr "Fréquemment"
|
||||
|
||||
#: include/contact_selectors.php:57 mod/admin.php:891
|
||||
msgid "Hourly"
|
||||
msgstr "Toutes les heures"
|
||||
|
||||
#: include/contact_selectors.php:58 mod/admin.php:892
|
||||
msgid "Twice daily"
|
||||
msgstr "Deux fois par jour"
|
||||
|
||||
#: include/contact_selectors.php:59 mod/admin.php:893
|
||||
msgid "Daily"
|
||||
msgstr "Chaque jour"
|
||||
|
||||
#: include/contact_selectors.php:60
|
||||
msgid "Weekly"
|
||||
msgstr "Chaque semaine"
|
||||
|
||||
#: include/contact_selectors.php:61
|
||||
msgid "Monthly"
|
||||
msgstr "Chaque mois"
|
||||
|
||||
#: include/contact_selectors.php:76 mod/dfrn_request.php:868
|
||||
msgid "Friendica"
|
||||
msgstr "Friendica"
|
||||
|
||||
#: include/contact_selectors.php:77
|
||||
msgid "OStatus"
|
||||
msgstr "OStatus"
|
||||
|
||||
#: include/contact_selectors.php:78
|
||||
msgid "RSS/Atom"
|
||||
msgstr "RSS/Atom"
|
||||
|
||||
#: include/contact_selectors.php:79 include/contact_selectors.php:86
|
||||
#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440
|
||||
msgid "Email"
|
||||
msgstr "Courriel"
|
||||
|
||||
#: include/contact_selectors.php:80 mod/settings.php:842
|
||||
#: mod/dfrn_request.php:870
|
||||
msgid "Diaspora"
|
||||
msgstr "Diaspora"
|
||||
|
||||
#: include/contact_selectors.php:81
|
||||
msgid "Facebook"
|
||||
msgstr "Facebook"
|
||||
|
||||
#: include/contact_selectors.php:82
|
||||
msgid "Zot!"
|
||||
msgstr "Zot!"
|
||||
|
||||
#: include/contact_selectors.php:83
|
||||
msgid "LinkedIn"
|
||||
msgstr "LinkedIn"
|
||||
|
||||
#: include/contact_selectors.php:84
|
||||
msgid "XMPP/IM"
|
||||
msgstr "XMPP/IM"
|
||||
|
||||
#: include/contact_selectors.php:85
|
||||
msgid "MySpace"
|
||||
msgstr "MySpace"
|
||||
|
||||
#: include/contact_selectors.php:87
|
||||
msgid "Google+"
|
||||
msgstr "Google+"
|
||||
|
||||
#: include/contact_selectors.php:88
|
||||
msgid "pump.io"
|
||||
msgstr "pump.io"
|
||||
|
||||
#: include/contact_selectors.php:89
|
||||
msgid "Twitter"
|
||||
msgstr "Twitter"
|
||||
|
||||
#: include/contact_selectors.php:90
|
||||
msgid "Diaspora Connector"
|
||||
msgstr "Connecteur Diaspora"
|
||||
|
||||
#: include/contact_selectors.php:91
|
||||
msgid "GNU Social"
|
||||
msgstr "GNU Social"
|
||||
|
||||
#: include/contact_selectors.php:92
|
||||
msgid "App.net"
|
||||
msgstr "App.net"
|
||||
|
||||
#: include/contact_selectors.php:103
|
||||
msgid "Hubzilla/Redmatrix"
|
||||
msgstr "Hubzilla/Redmatrix"
|
||||
|
||||
#: include/acl_selectors.php:327
|
||||
#: include/acl_selectors.php:357
|
||||
msgid "Post to Email"
|
||||
msgstr "Publier aux courriels"
|
||||
|
||||
#: include/acl_selectors.php:332
|
||||
#: include/acl_selectors.php:362
|
||||
#, php-format
|
||||
msgid "Connectors disabled, since \"%s\" is enabled."
|
||||
msgstr "Les connecteurs sont désactivés parce que \"%s\" est activé."
|
||||
|
||||
#: include/acl_selectors.php:333 mod/settings.php:1181
|
||||
#: include/acl_selectors.php:363 mod/settings.php:1172
|
||||
msgid "Hide your profile details from unknown viewers?"
|
||||
msgstr "Cacher les détails du profil aux visiteurs inconnus?"
|
||||
|
||||
#: include/acl_selectors.php:338
|
||||
#: include/acl_selectors.php:369
|
||||
msgid "Visible to everybody"
|
||||
msgstr "Visible par tout le monde"
|
||||
|
||||
#: include/acl_selectors.php:339 view/theme/vier/config.php:103
|
||||
#: include/acl_selectors.php:370 view/theme/vier/config.php:113
|
||||
msgid "show"
|
||||
msgstr "montrer"
|
||||
|
||||
#: include/acl_selectors.php:340 view/theme/vier/config.php:103
|
||||
#: include/acl_selectors.php:371 view/theme/vier/config.php:113
|
||||
msgid "don't show"
|
||||
msgstr "cacher"
|
||||
|
||||
#: include/acl_selectors.php:346 mod/editpost.php:133
|
||||
#: include/acl_selectors.php:377 mod/editpost.php:128
|
||||
msgid "CC: email addresses"
|
||||
msgstr "CC: adresses de courriel"
|
||||
|
||||
#: include/acl_selectors.php:347 mod/editpost.php:140
|
||||
#: include/acl_selectors.php:378 mod/editpost.php:135
|
||||
msgid "Example: bob@example.com, mary@example.com"
|
||||
msgstr "Exemple: bob@exemple.com, mary@exemple.com"
|
||||
msgstr "Exemple : bob@exemple.com, mary@exemple.com"
|
||||
|
||||
#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156
|
||||
#: mod/photos.php:1535
|
||||
#: include/acl_selectors.php:380 mod/events.php:534 mod/photos.php:1170
|
||||
#: mod/photos.php:1552
|
||||
msgid "Permissions"
|
||||
msgstr "Permissions"
|
||||
|
||||
#: include/acl_selectors.php:350
|
||||
#: include/acl_selectors.php:381
|
||||
msgid "Close"
|
||||
msgstr "Fermer"
|
||||
|
||||
#: include/like.php:163 include/conversation.php:130
|
||||
#: include/conversation.php:266 include/text.php:1804 mod/subthread.php:87
|
||||
#: mod/tagger.php:62
|
||||
msgid "photo"
|
||||
msgstr "photo"
|
||||
#: include/api.php:1130
|
||||
#, php-format
|
||||
msgid "Daily posting limit of %d posts reached. The post was rejected."
|
||||
msgstr "Le quota journalier de %d publications a été atteint. La publication a été rejetée."
|
||||
|
||||
#: include/like.php:163 include/diaspora.php:1406 include/conversation.php:125
|
||||
#: include/conversation.php:134 include/conversation.php:261
|
||||
#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62
|
||||
msgid "status"
|
||||
msgstr "le statut"
|
||||
#: include/api.php:1154
|
||||
#, php-format
|
||||
msgid "Weekly posting limit of %d posts reached. The post was rejected."
|
||||
msgstr "Le quota hebdomadaire de %d publications a été atteint. La publication a été rejetée."
|
||||
|
||||
#: include/like.php:165 include/conversation.php:122
|
||||
#: include/conversation.php:258 include/text.php:1802
|
||||
#: include/api.php:1178
|
||||
#, php-format
|
||||
msgid "Monthly posting limit of %d posts reached. The post was rejected."
|
||||
msgstr "Le quota mensuel de %d publications a été atteint. La publication a été rejetée."
|
||||
|
||||
#: include/api.php:3823 include/user.php:303 include/user.php:311
|
||||
#: include/user.php:319 mod/photos.php:77 mod/photos.php:193
|
||||
#: mod/photos.php:780 mod/photos.php:1230 mod/photos.php:1247
|
||||
#: mod/photos.php:1809 mod/profile_photo.php:78 mod/profile_photo.php:86
|
||||
#: mod/profile_photo.php:94 mod/profile_photo.php:218
|
||||
#: mod/profile_photo.php:313 mod/profile_photo.php:323
|
||||
msgid "Profile Photos"
|
||||
msgstr "Photos du profil"
|
||||
|
||||
#: include/auth.php:54
|
||||
msgid "Logged out."
|
||||
msgstr "Déconnecté."
|
||||
|
||||
#: include/auth.php:125 include/auth.php:187 mod/openid.php:113
|
||||
msgid "Login failed."
|
||||
msgstr "Échec de connexion."
|
||||
|
||||
#: include/auth.php:141 include/user.php:78
|
||||
msgid ""
|
||||
"We encountered a problem while logging in with the OpenID you provided. "
|
||||
"Please check the correct spelling of the ID."
|
||||
msgstr "Nous avons eu un souci avec l'OpenID que vous avez fourni. Merci de vérifier qu'il est correctement écrit."
|
||||
|
||||
#: include/auth.php:141 include/user.php:78
|
||||
msgid "The error message was:"
|
||||
msgstr "Le message d'erreur était :"
|
||||
|
||||
#: include/bb2diaspora.php:235 include/event.php:21 include/event.php:932
|
||||
#: mod/localtime.php:14
|
||||
msgid "l F d, Y \\@ g:i A"
|
||||
msgstr "l F d, Y \\@ g:i A"
|
||||
|
||||
#: include/bb2diaspora.php:241 include/event.php:38 include/event.php:55
|
||||
#: include/event.php:495 include/event.php:984
|
||||
msgid "Starts:"
|
||||
msgstr "Débute :"
|
||||
|
||||
#: include/bb2diaspora.php:249 include/event.php:41 include/event.php:61
|
||||
#: include/event.php:496 include/event.php:988
|
||||
msgid "Finishes:"
|
||||
msgstr "Finit :"
|
||||
|
||||
#: include/bb2diaspora.php:258 include/event.php:45 include/event.php:70
|
||||
#: include/event.php:497 include/event.php:1002 include/identity.php:358
|
||||
#: mod/contacts.php:666 mod/directory.php:136 mod/events.php:519
|
||||
#: mod/notifications.php:248
|
||||
msgid "Location:"
|
||||
msgstr "Localisation :"
|
||||
|
||||
#: include/bbcode.php:433 include/bbcode.php:1196 include/bbcode.php:1197
|
||||
msgid "Image/photo"
|
||||
msgstr "Image/photo"
|
||||
|
||||
#: include/bbcode.php:549
|
||||
#, php-format
|
||||
msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
|
||||
msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
|
||||
|
||||
#: include/bbcode.php:1153 include/bbcode.php:1175
|
||||
msgid "$1 wrote:"
|
||||
msgstr "$1 a écrit :"
|
||||
|
||||
#: include/bbcode.php:1205 include/bbcode.php:1206
|
||||
msgid "Encrypted content"
|
||||
msgstr "Contenu chiffré"
|
||||
|
||||
#: include/bbcode.php:1325
|
||||
msgid "Invalid source protocol"
|
||||
msgstr ""
|
||||
|
||||
#: include/bbcode.php:1336
|
||||
msgid "Invalid link protocol"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:34
|
||||
msgid "Unknown | Not categorised"
|
||||
msgstr "Inconnu | Non-classé"
|
||||
|
||||
#: include/contact_selectors.php:35
|
||||
msgid "Block immediately"
|
||||
msgstr "Bloquer immédiatement"
|
||||
|
||||
#: include/contact_selectors.php:36
|
||||
msgid "Shady, spammer, self-marketer"
|
||||
msgstr "Douteux, spammeur, accro à l'auto-promotion"
|
||||
|
||||
#: include/contact_selectors.php:37
|
||||
msgid "Known to me, but no opinion"
|
||||
msgstr "Connu de moi, mais sans opinion"
|
||||
|
||||
#: include/contact_selectors.php:38
|
||||
msgid "OK, probably harmless"
|
||||
msgstr "OK, probablement inoffensif"
|
||||
|
||||
#: include/contact_selectors.php:39
|
||||
msgid "Reputable, has my trust"
|
||||
msgstr "Réputé, a toute ma confiance"
|
||||
|
||||
#: include/contact_selectors.php:58 mod/admin.php:1097
|
||||
msgid "Frequently"
|
||||
msgstr "Fréquemment"
|
||||
|
||||
#: include/contact_selectors.php:59 mod/admin.php:1098
|
||||
msgid "Hourly"
|
||||
msgstr "Toutes les heures"
|
||||
|
||||
#: include/contact_selectors.php:60 mod/admin.php:1099
|
||||
msgid "Twice daily"
|
||||
msgstr "Deux fois par jour"
|
||||
|
||||
#: include/contact_selectors.php:61 mod/admin.php:1100
|
||||
msgid "Daily"
|
||||
msgstr "Chaque jour"
|
||||
|
||||
#: include/contact_selectors.php:62
|
||||
msgid "Weekly"
|
||||
msgstr "Chaque semaine"
|
||||
|
||||
#: include/contact_selectors.php:63
|
||||
msgid "Monthly"
|
||||
msgstr "Chaque mois"
|
||||
|
||||
#: include/contact_selectors.php:78 mod/dfrn_request.php:889
|
||||
msgid "Friendica"
|
||||
msgstr "Friendica"
|
||||
|
||||
#: include/contact_selectors.php:79
|
||||
msgid "OStatus"
|
||||
msgstr "OStatus"
|
||||
|
||||
#: include/contact_selectors.php:80
|
||||
msgid "RSS/Atom"
|
||||
msgstr "RSS/Atom"
|
||||
|
||||
#: include/contact_selectors.php:81 include/contact_selectors.php:88
|
||||
#: mod/admin.php:1612 mod/admin.php:1625 mod/admin.php:1638 mod/admin.php:1656
|
||||
msgid "Email"
|
||||
msgstr "Courriel"
|
||||
|
||||
#: include/contact_selectors.php:82 mod/dfrn_request.php:891
|
||||
#: mod/settings.php:863
|
||||
msgid "Diaspora"
|
||||
msgstr "Diaspora"
|
||||
|
||||
#: include/contact_selectors.php:83
|
||||
msgid "Facebook"
|
||||
msgstr "Facebook"
|
||||
|
||||
#: include/contact_selectors.php:84
|
||||
msgid "Zot!"
|
||||
msgstr "Zot!"
|
||||
|
||||
#: include/contact_selectors.php:85
|
||||
msgid "LinkedIn"
|
||||
msgstr "LinkedIn"
|
||||
|
||||
#: include/contact_selectors.php:86
|
||||
msgid "XMPP/IM"
|
||||
msgstr "XMPP/IM"
|
||||
|
||||
#: include/contact_selectors.php:87
|
||||
msgid "MySpace"
|
||||
msgstr "MySpace"
|
||||
|
||||
#: include/contact_selectors.php:89
|
||||
msgid "Google+"
|
||||
msgstr "Google+"
|
||||
|
||||
#: include/contact_selectors.php:90
|
||||
msgid "pump.io"
|
||||
msgstr "pump.io"
|
||||
|
||||
#: include/contact_selectors.php:91
|
||||
msgid "Twitter"
|
||||
msgstr "Twitter"
|
||||
|
||||
#: include/contact_selectors.php:92
|
||||
msgid "Diaspora Connector"
|
||||
msgstr "Connecteur Diaspora"
|
||||
|
||||
#: include/contact_selectors.php:93
|
||||
msgid "GNU Social Connector"
|
||||
msgstr "Connecteur GNU Social"
|
||||
|
||||
#: include/contact_selectors.php:94
|
||||
msgid "pnut"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:95
|
||||
msgid "App.net"
|
||||
msgstr "App.net"
|
||||
|
||||
#: include/contact_widgets.php:14
|
||||
msgid "Add New Contact"
|
||||
msgstr "Ajouter un nouveau contact"
|
||||
|
||||
#: include/contact_widgets.php:15
|
||||
msgid "Enter address or web location"
|
||||
msgstr "Entrez son adresse ou sa localisation web"
|
||||
|
||||
#: include/contact_widgets.php:16
|
||||
msgid "Example: bob@example.com, http://example.com/barbara"
|
||||
msgstr "Exemple : bob@example.com, http://example.com/barbara"
|
||||
|
||||
#: include/contact_widgets.php:18 include/identity.php:245
|
||||
#: mod/allfriends.php:91 mod/dirfind.php:215 mod/match.php:102
|
||||
#: mod/suggest.php:105
|
||||
msgid "Connect"
|
||||
msgstr "Se connecter"
|
||||
|
||||
#: include/contact_widgets.php:31
|
||||
#, php-format
|
||||
msgid "%d invitation available"
|
||||
msgid_plural "%d invitations available"
|
||||
msgstr[0] "%d invitation disponible"
|
||||
msgstr[1] "%d invitations disponibles"
|
||||
|
||||
#: include/contact_widgets.php:37
|
||||
msgid "Find People"
|
||||
msgstr "Trouver des personnes"
|
||||
|
||||
#: include/contact_widgets.php:38
|
||||
msgid "Enter name or interest"
|
||||
msgstr "Entrez un nom ou un centre d'intérêt"
|
||||
|
||||
#: include/contact_widgets.php:39 include/conversation.php:1028
|
||||
#: mod/allfriends.php:75 mod/contacts.php:597 mod/dirfind.php:218
|
||||
#: mod/follow.php:144 mod/match.php:87 mod/suggest.php:87
|
||||
#: src/Object/Contact.php:392
|
||||
msgid "Connect/Follow"
|
||||
msgstr "Connecter/Suivre"
|
||||
|
||||
#: include/contact_widgets.php:40
|
||||
msgid "Examples: Robert Morgenstein, Fishing"
|
||||
msgstr "Exemples : Robert Morgenstein, Pêche"
|
||||
|
||||
#: include/contact_widgets.php:41 mod/contacts.php:836 mod/directory.php:198
|
||||
msgid "Find"
|
||||
msgstr "Trouver"
|
||||
|
||||
#: include/contact_widgets.php:42 mod/suggest.php:118
|
||||
#: view/theme/vier/theme.php:199
|
||||
msgid "Friend Suggestions"
|
||||
msgstr "Suggestions d'amitiés/contacts"
|
||||
|
||||
#: include/contact_widgets.php:43 view/theme/vier/theme.php:198
|
||||
msgid "Similar Interests"
|
||||
msgstr "Intérêts similaires"
|
||||
|
||||
#: include/contact_widgets.php:44
|
||||
msgid "Random Profile"
|
||||
msgstr "Profil au hasard"
|
||||
|
||||
#: include/contact_widgets.php:45 view/theme/vier/theme.php:200
|
||||
msgid "Invite Friends"
|
||||
msgstr "Inviter des amis"
|
||||
|
||||
#: include/contact_widgets.php:46
|
||||
msgid "View Global Directory"
|
||||
msgstr "Consulter le répertoire global"
|
||||
|
||||
#: include/contact_widgets.php:132
|
||||
msgid "Networks"
|
||||
msgstr "Réseaux"
|
||||
|
||||
#: include/contact_widgets.php:135
|
||||
msgid "All Networks"
|
||||
msgstr "Tous réseaux"
|
||||
|
||||
#: include/contact_widgets.php:167 include/features.php:107
|
||||
msgid "Saved Folders"
|
||||
msgstr "Dossiers sauvegardés"
|
||||
|
||||
#: include/contact_widgets.php:170 include/contact_widgets.php:205
|
||||
msgid "Everything"
|
||||
msgstr "Tout"
|
||||
|
||||
#: include/contact_widgets.php:202
|
||||
msgid "Categories"
|
||||
msgstr "Catégories"
|
||||
|
||||
#: include/contact_widgets.php:265
|
||||
#, php-format
|
||||
msgid "%d contact in common"
|
||||
msgid_plural "%d contacts in common"
|
||||
msgstr[0] "%d contact en commun"
|
||||
msgstr[1] "%d contacts en commun"
|
||||
|
||||
#: include/contact_widgets.php:270 include/items.php:2395
|
||||
#: view/theme/vier/theme.php:254 src/App.php:523
|
||||
#: src/Content/ForumManager.php:126 src/Object/Item.php:422
|
||||
msgid "show more"
|
||||
msgstr "montrer plus"
|
||||
|
||||
#: include/conversation.php:143 include/conversation.php:295
|
||||
#: include/like.php:184 include/text.php:1783
|
||||
msgid "event"
|
||||
msgstr "évènement"
|
||||
|
||||
#: include/like.php:182 include/diaspora.php:1402 include/conversation.php:141
|
||||
#: include/conversation.php:146 include/conversation.php:156
|
||||
#: include/conversation.php:298 include/conversation.php:307
|
||||
#: include/like.php:182 mod/subthread.php:91 mod/tagger.php:66
|
||||
#: src/Protocol/Diaspora.php:1893
|
||||
msgid "status"
|
||||
msgstr "le statut"
|
||||
|
||||
#: include/conversation.php:151 include/conversation.php:303
|
||||
#: include/like.php:182 include/text.php:1785 mod/subthread.php:91
|
||||
#: mod/tagger.php:66
|
||||
msgid "photo"
|
||||
msgstr "photo"
|
||||
|
||||
#: include/conversation.php:163 include/like.php:33
|
||||
#: src/Protocol/Diaspora.php:1889
|
||||
#, php-format
|
||||
msgid "%1$s likes %2$s's %3$s"
|
||||
msgstr "%1$s aime %3$s de %2$s"
|
||||
|
||||
#: include/like.php:184 include/conversation.php:144
|
||||
#: include/conversation.php:166 include/like.php:37 include/like.php:42
|
||||
#, php-format
|
||||
msgid "%1$s doesn't like %2$s's %3$s"
|
||||
msgstr "%1$s n'aime pas %3$s de %2$s"
|
||||
|
||||
#: include/like.php:186
|
||||
#: include/conversation.php:169
|
||||
#, php-format
|
||||
msgid "%1$s is attending %2$s's %3$s"
|
||||
msgid "%1$s attends %2$s's %3$s"
|
||||
msgstr "%1$s participe à %3$s de %2$s"
|
||||
|
||||
#: include/like.php:188
|
||||
#: include/conversation.php:172
|
||||
#, php-format
|
||||
msgid "%1$s is not attending %2$s's %3$s"
|
||||
msgid "%1$s doesn't attend %2$s's %3$s"
|
||||
msgstr "%1$s ne participe pas à %3$s de %2$s"
|
||||
|
||||
#: include/like.php:190
|
||||
#: include/conversation.php:175
|
||||
#, php-format
|
||||
msgid "%1$s may attend %2$s's %3$s"
|
||||
msgstr "%1$s participera peut-être à %3$s de %2$s"
|
||||
msgid "%1$s attends maybe %2$s's %3$s"
|
||||
msgstr "%1$s participe peut-être à %3$s de %2$s"
|
||||
|
||||
#: include/message.php:15 include/message.php:173
|
||||
msgid "[no subject]"
|
||||
msgstr "[pas de sujet]"
|
||||
|
||||
#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056
|
||||
#: include/Photo.php:1064 include/Photo.php:1089 mod/wall_upload.php:218
|
||||
#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:478
|
||||
msgid "Wall Photos"
|
||||
msgstr "Photos du mur"
|
||||
|
||||
#: include/plugin.php:526 include/plugin.php:528
|
||||
msgid "Click here to upgrade."
|
||||
msgstr "Cliquez ici pour mettre à jour."
|
||||
|
||||
#: include/plugin.php:534
|
||||
msgid "This action exceeds the limits set by your subscription plan."
|
||||
msgstr "Cette action dépasse les limites définies par votre abonnement."
|
||||
|
||||
#: include/plugin.php:539
|
||||
msgid "This action is not available under your subscription plan."
|
||||
msgstr "Cette action n'est pas disponible avec votre abonnement."
|
||||
|
||||
#: include/uimport.php:94
|
||||
msgid "Error decoding account file"
|
||||
msgstr "Une erreur a été détecté en décodant un fichier utilisateur"
|
||||
|
||||
#: include/uimport.php:100
|
||||
msgid "Error! No version data in file! This is not a Friendica account file?"
|
||||
msgstr "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?"
|
||||
|
||||
#: include/uimport.php:116 include/uimport.php:127
|
||||
msgid "Error! Cannot check nickname"
|
||||
msgstr "Erreur! Pseudo invalide"
|
||||
|
||||
#: include/uimport.php:120 include/uimport.php:131
|
||||
#: include/conversation.php:208 mod/dfrn_confirm.php:484
|
||||
#, php-format
|
||||
msgid "User '%s' already exists on this server!"
|
||||
msgstr "L'utilisateur '%s' existe déjà sur ce serveur!"
|
||||
msgid "%1$s is now friends with %2$s"
|
||||
msgstr "%1$s est désormais lié à %2$s"
|
||||
|
||||
#: include/uimport.php:153
|
||||
msgid "User creation error"
|
||||
msgstr "Erreur de création d'utilisateur"
|
||||
|
||||
#: include/uimport.php:173
|
||||
msgid "User profile creation error"
|
||||
msgstr "Erreur de création du profil utilisateur"
|
||||
|
||||
#: include/uimport.php:222
|
||||
#: include/conversation.php:249
|
||||
#, php-format
|
||||
msgid "%d contact not imported"
|
||||
msgid_plural "%d contacts not imported"
|
||||
msgstr[0] "%d contacts non importés"
|
||||
msgstr[1] "%d contacts non importés"
|
||||
msgid "%1$s poked %2$s"
|
||||
msgstr "%1$s a sollicité %2$s"
|
||||
|
||||
#: include/uimport.php:292
|
||||
msgid "Done. You can now login with your username and password"
|
||||
msgstr "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe"
|
||||
#: include/conversation.php:270 mod/mood.php:67
|
||||
#, php-format
|
||||
msgid "%1$s is currently %2$s"
|
||||
msgstr "%1$s est d'humeur %2$s"
|
||||
|
||||
#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705
|
||||
#: include/conversation.php:317 mod/tagger.php:99
|
||||
#, php-format
|
||||
msgid "%1$s tagged %2$s's %3$s with %4$s"
|
||||
msgstr "%1$s a étiqueté %3$s de %2$s avec %4$s"
|
||||
|
||||
#: include/conversation.php:344
|
||||
msgid "post/item"
|
||||
msgstr "publication/élément"
|
||||
|
||||
#: include/conversation.php:345
|
||||
#, php-format
|
||||
msgid "%1$s marked %2$s's %3$s as favorite"
|
||||
msgstr "%1$s a marqué le %3$s de %2$s comme favori"
|
||||
|
||||
#: include/conversation.php:630 mod/photos.php:1621 mod/profiles.php:344
|
||||
msgid "Likes"
|
||||
msgstr "Derniers \"J'aime\""
|
||||
|
||||
#: include/conversation.php:630 mod/photos.php:1621 mod/profiles.php:348
|
||||
msgid "Dislikes"
|
||||
msgstr "Derniers \"Je n'aime pas\""
|
||||
|
||||
#: include/conversation.php:631 include/conversation.php:1639
|
||||
#: mod/photos.php:1622
|
||||
msgid "Attending"
|
||||
msgid_plural "Attending"
|
||||
msgstr[0] "Participe"
|
||||
msgstr[1] "Participent"
|
||||
|
||||
#: include/conversation.php:631 mod/photos.php:1622
|
||||
msgid "Not attending"
|
||||
msgstr "Ne participe pas"
|
||||
|
||||
#: include/conversation.php:631 mod/photos.php:1622
|
||||
msgid "Might attend"
|
||||
msgstr "Participera peut-être"
|
||||
|
||||
#: include/conversation.php:768 mod/photos.php:1687 src/Object/Item.php:164
|
||||
msgid "Select"
|
||||
msgstr "Sélectionner"
|
||||
|
||||
#: include/conversation.php:769 mod/admin.php:1630 mod/contacts.php:846
|
||||
#: mod/contacts.php:1045 mod/photos.php:1688 mod/settings.php:759
|
||||
#: src/Object/Item.php:165
|
||||
msgid "Delete"
|
||||
msgstr "Supprimer"
|
||||
|
||||
#: include/conversation.php:802 src/Object/Item.php:355
|
||||
#: src/Object/Item.php:356
|
||||
#, php-format
|
||||
msgid "View %s's profile @ %s"
|
||||
msgstr "Voir le profil de %s @ %s"
|
||||
|
||||
#: include/conversation.php:814 src/Object/Item.php:343
|
||||
msgid "Categories:"
|
||||
msgstr "Catégories :"
|
||||
|
||||
#: include/conversation.php:815 src/Object/Item.php:344
|
||||
msgid "Filed under:"
|
||||
msgstr "Rangé sous :"
|
||||
|
||||
#: include/conversation.php:822 src/Object/Item.php:369
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr "%s de %s"
|
||||
|
||||
#: include/conversation.php:838
|
||||
msgid "View in context"
|
||||
msgstr "Voir dans le contexte"
|
||||
|
||||
#: include/conversation.php:840 include/conversation.php:1309
|
||||
#: mod/editpost.php:119 mod/message.php:339 mod/message.php:513
|
||||
#: mod/photos.php:1586 mod/wallmessage.php:144 src/Object/Item.php:394
|
||||
msgid "Please wait"
|
||||
msgstr "Patientez"
|
||||
|
||||
#: include/conversation.php:914
|
||||
msgid "remove"
|
||||
msgstr "enlever"
|
||||
|
||||
#: include/conversation.php:918
|
||||
msgid "Delete Selected Items"
|
||||
msgstr "Supprimer les éléments sélectionnés"
|
||||
|
||||
#: include/conversation.php:1013 view/theme/frio/theme.php:350
|
||||
msgid "Follow Thread"
|
||||
msgstr "Suivre le fil"
|
||||
|
||||
#: include/conversation.php:1014 src/Object/Contact.php:435
|
||||
msgid "View Status"
|
||||
msgstr "Voir les statuts"
|
||||
|
||||
#: include/conversation.php:1015 include/conversation.php:1031
|
||||
#: mod/allfriends.php:74 mod/directory.php:149 mod/dirfind.php:217
|
||||
#: mod/match.php:86 mod/suggest.php:86 src/Object/Contact.php:379
|
||||
#: src/Object/Contact.php:391 src/Object/Contact.php:436
|
||||
msgid "View Profile"
|
||||
msgstr "Voir le profil"
|
||||
|
||||
#: include/conversation.php:1016 src/Object/Contact.php:437
|
||||
msgid "View Photos"
|
||||
msgstr "Voir les photos"
|
||||
|
||||
#: include/conversation.php:1017 src/Object/Contact.php:438
|
||||
msgid "Network Posts"
|
||||
msgstr "Publications du réseau"
|
||||
|
||||
#: include/conversation.php:1018 src/Object/Contact.php:439
|
||||
msgid "View Contact"
|
||||
msgstr "Voir Contact"
|
||||
|
||||
#: include/conversation.php:1019 src/Object/Contact.php:441
|
||||
msgid "Send PM"
|
||||
msgstr "Message privé"
|
||||
|
||||
#: include/conversation.php:1023 src/Object/Contact.php:442
|
||||
msgid "Poke"
|
||||
msgstr "Sollicitations (pokes)"
|
||||
|
||||
#: include/conversation.php:1150
|
||||
#, php-format
|
||||
msgid "%s likes this."
|
||||
msgstr "%s aime ça."
|
||||
|
||||
#: include/conversation.php:1153
|
||||
#, php-format
|
||||
msgid "%s doesn't like this."
|
||||
msgstr "%s n'aime pas ça."
|
||||
|
||||
#: include/conversation.php:1156
|
||||
#, php-format
|
||||
msgid "%s attends."
|
||||
msgstr "%s participe"
|
||||
|
||||
#: include/conversation.php:1159
|
||||
#, php-format
|
||||
msgid "%s doesn't attend."
|
||||
msgstr "%s ne participe pas"
|
||||
|
||||
#: include/conversation.php:1162
|
||||
#, php-format
|
||||
msgid "%s attends maybe."
|
||||
msgstr "%s participe peut-être"
|
||||
|
||||
#: include/conversation.php:1173
|
||||
msgid "and"
|
||||
msgstr "et"
|
||||
|
||||
#: include/conversation.php:1179
|
||||
#, php-format
|
||||
msgid ", and %d other people"
|
||||
msgstr ", et %d autres personnes"
|
||||
|
||||
#: include/conversation.php:1188
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> like this"
|
||||
msgstr "<span %1$s>%2$d personnes</span> aiment ça"
|
||||
|
||||
#: include/conversation.php:1189
|
||||
#, php-format
|
||||
msgid "%s like this."
|
||||
msgstr "%s aime ça."
|
||||
|
||||
#: include/conversation.php:1192
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> don't like this"
|
||||
msgstr "<span %1$s>%2$d personnes</span> n'aiment pas ça"
|
||||
|
||||
#: include/conversation.php:1193
|
||||
#, php-format
|
||||
msgid "%s don't like this."
|
||||
msgstr "%s n'aiment pas ça."
|
||||
|
||||
#: include/conversation.php:1196
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> attend"
|
||||
msgstr "<span %1$s>%2$d personnes</span> participent"
|
||||
|
||||
#: include/conversation.php:1197
|
||||
#, php-format
|
||||
msgid "%s attend."
|
||||
msgstr "%s participent."
|
||||
|
||||
#: include/conversation.php:1200
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> don't attend"
|
||||
msgstr "<span %1$s>%2$d personnes</span> ne participent pas"
|
||||
|
||||
#: include/conversation.php:1201
|
||||
#, php-format
|
||||
msgid "%s don't attend."
|
||||
msgstr "%s ne participent pas."
|
||||
|
||||
#: include/conversation.php:1204
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> attend maybe"
|
||||
msgstr "<span %1$s>%2$d personnes</span> vont peut-être participer"
|
||||
|
||||
#: include/conversation.php:1205
|
||||
#, php-format
|
||||
msgid "%s anttend maybe."
|
||||
msgstr "%s participent peut-être."
|
||||
|
||||
#: include/conversation.php:1234 include/conversation.php:1250
|
||||
msgid "Visible to <strong>everybody</strong>"
|
||||
msgstr "Visible par <strong>tout le monde</strong>"
|
||||
|
||||
#: include/conversation.php:1235 include/conversation.php:1251
|
||||
#: mod/message.php:273 mod/message.php:280 mod/message.php:420
|
||||
#: mod/message.php:427 mod/wallmessage.php:118 mod/wallmessage.php:125
|
||||
msgid "Please enter a link URL:"
|
||||
msgstr "Entrez un lien web :"
|
||||
|
||||
#: include/conversation.php:1236 include/conversation.php:1252
|
||||
msgid "Please enter a video link/URL:"
|
||||
msgstr "Entrez un lien/URL video :"
|
||||
|
||||
#: include/conversation.php:1237 include/conversation.php:1253
|
||||
msgid "Please enter an audio link/URL:"
|
||||
msgstr "Entrez un lien/URL audio :"
|
||||
|
||||
#: include/conversation.php:1238 include/conversation.php:1254
|
||||
msgid "Tag term:"
|
||||
msgstr "Étiquette :"
|
||||
|
||||
#: include/conversation.php:1239 include/conversation.php:1255
|
||||
#: mod/filer.php:32
|
||||
msgid "Save to Folder:"
|
||||
msgstr "Sauver dans le Dossier :"
|
||||
|
||||
#: include/conversation.php:1240 include/conversation.php:1256
|
||||
msgid "Where are you right now?"
|
||||
msgstr "Où êtes-vous actuellement ?"
|
||||
|
||||
#: include/conversation.php:1241
|
||||
msgid "Delete item(s)?"
|
||||
msgstr "Supprimer les élément(s) ?"
|
||||
|
||||
#: include/conversation.php:1290
|
||||
msgid "Share"
|
||||
msgstr "Partager"
|
||||
|
||||
#: include/conversation.php:1291 mod/editpost.php:105 mod/message.php:337
|
||||
#: mod/message.php:510 mod/wallmessage.php:142
|
||||
msgid "Upload photo"
|
||||
msgstr "Joindre photo"
|
||||
|
||||
#: include/conversation.php:1292 mod/editpost.php:106
|
||||
msgid "upload photo"
|
||||
msgstr "envoi image"
|
||||
|
||||
#: include/conversation.php:1293 mod/editpost.php:107
|
||||
msgid "Attach file"
|
||||
msgstr "Joindre fichier"
|
||||
|
||||
#: include/conversation.php:1294 mod/editpost.php:108
|
||||
msgid "attach file"
|
||||
msgstr "ajout fichier"
|
||||
|
||||
#: include/conversation.php:1295 mod/editpost.php:109 mod/message.php:338
|
||||
#: mod/message.php:511 mod/wallmessage.php:143
|
||||
msgid "Insert web link"
|
||||
msgstr "Insérer lien web"
|
||||
|
||||
#: include/conversation.php:1296 mod/editpost.php:110
|
||||
msgid "web link"
|
||||
msgstr "lien web"
|
||||
|
||||
#: include/conversation.php:1297 mod/editpost.php:111
|
||||
msgid "Insert video link"
|
||||
msgstr "Insérer un lien video"
|
||||
|
||||
#: include/conversation.php:1298 mod/editpost.php:112
|
||||
msgid "video link"
|
||||
msgstr "lien vidéo"
|
||||
|
||||
#: include/conversation.php:1299 mod/editpost.php:113
|
||||
msgid "Insert audio link"
|
||||
msgstr "Insérer un lien audio"
|
||||
|
||||
#: include/conversation.php:1300 mod/editpost.php:114
|
||||
msgid "audio link"
|
||||
msgstr "lien audio"
|
||||
|
||||
#: include/conversation.php:1301 mod/editpost.php:115
|
||||
msgid "Set your location"
|
||||
msgstr "Définir votre localisation"
|
||||
|
||||
#: include/conversation.php:1302 mod/editpost.php:116
|
||||
msgid "set location"
|
||||
msgstr "spéc. localisation"
|
||||
|
||||
#: include/conversation.php:1303 mod/editpost.php:117
|
||||
msgid "Clear browser location"
|
||||
msgstr "Effacer la localisation du navigateur"
|
||||
|
||||
#: include/conversation.php:1304 mod/editpost.php:118
|
||||
msgid "clear location"
|
||||
msgstr "supp. localisation"
|
||||
|
||||
#: include/conversation.php:1306 mod/editpost.php:132
|
||||
msgid "Set title"
|
||||
msgstr "Définir un titre"
|
||||
|
||||
#: include/conversation.php:1308 mod/editpost.php:134
|
||||
msgid "Categories (comma-separated list)"
|
||||
msgstr "Catégories (séparées par des virgules)"
|
||||
|
||||
#: include/conversation.php:1310 mod/editpost.php:120
|
||||
msgid "Permission settings"
|
||||
msgstr "Réglages des permissions"
|
||||
|
||||
#: include/conversation.php:1311 mod/editpost.php:149
|
||||
msgid "permissions"
|
||||
msgstr "permissions"
|
||||
|
||||
#: include/conversation.php:1319 mod/editpost.php:129
|
||||
msgid "Public post"
|
||||
msgstr "Publication publique"
|
||||
|
||||
#: include/conversation.php:1324 mod/editpost.php:140 mod/events.php:529
|
||||
#: mod/photos.php:1606 mod/photos.php:1648 mod/photos.php:1722
|
||||
#: src/Object/Item.php:796
|
||||
msgid "Preview"
|
||||
msgstr "Aperçu"
|
||||
|
||||
#: include/conversation.php:1328 include/items.php:2148 mod/contacts.php:470
|
||||
#: mod/dfrn_request.php:897 mod/editpost.php:143 mod/fbrowser.php:98
|
||||
#: mod/fbrowser.php:128 mod/follow.php:162 mod/message.php:212
|
||||
#: mod/photos.php:251 mod/photos.php:343 mod/settings.php:697
|
||||
#: mod/settings.php:723 mod/suggest.php:39 mod/tagrm.php:15 mod/tagrm.php:100
|
||||
#: mod/unfollow.php:116 mod/videos.php:139
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#: include/conversation.php:1334
|
||||
msgid "Post to Groups"
|
||||
msgstr "Publier aux groupes"
|
||||
|
||||
#: include/conversation.php:1335
|
||||
msgid "Post to Contacts"
|
||||
msgstr "Publier aux contacts"
|
||||
|
||||
#: include/conversation.php:1336
|
||||
msgid "Private post"
|
||||
msgstr "Message privé"
|
||||
|
||||
#: include/conversation.php:1341 include/identity.php:283 mod/editpost.php:147
|
||||
msgid "Message"
|
||||
msgstr "Message"
|
||||
|
||||
#: include/conversation.php:1342 mod/editpost.php:148
|
||||
msgid "Browser"
|
||||
msgstr "Navigateur"
|
||||
|
||||
#: include/conversation.php:1611
|
||||
msgid "View all"
|
||||
msgstr "Voir tout"
|
||||
|
||||
#: include/conversation.php:1633
|
||||
msgid "Like"
|
||||
msgid_plural "Likes"
|
||||
msgstr[0] "Like"
|
||||
msgstr[1] "Likes"
|
||||
|
||||
#: include/conversation.php:1636
|
||||
msgid "Dislike"
|
||||
msgid_plural "Dislikes"
|
||||
msgstr[0] "Dislike"
|
||||
msgstr[1] "Dislikes"
|
||||
|
||||
#: include/conversation.php:1642
|
||||
msgid "Not Attending"
|
||||
msgid_plural "Not Attending"
|
||||
msgstr[0] "Ne participe pas"
|
||||
msgstr[1] "Ne participent pas"
|
||||
|
||||
#: include/datetime.php:68 include/datetime.php:70 mod/profiles.php:701
|
||||
msgid "Miscellaneous"
|
||||
msgstr "Divers"
|
||||
|
||||
#: include/datetime.php:183 include/identity.php:629
|
||||
#: include/datetime.php:198 include/identity.php:698
|
||||
msgid "Birthday:"
|
||||
msgstr "Anniversaire:"
|
||||
msgstr "Anniversaire :"
|
||||
|
||||
#: include/datetime.php:185 mod/profiles.php:728
|
||||
#: include/datetime.php:200 mod/profiles.php:724
|
||||
msgid "Age: "
|
||||
msgstr "Age : "
|
||||
|
||||
#: include/datetime.php:187
|
||||
#: include/datetime.php:202
|
||||
msgid "YYYY-MM-DD or MM-DD"
|
||||
msgstr "AAAA-MM-JJ ou MM-JJ"
|
||||
|
||||
#: include/datetime.php:341
|
||||
#: include/datetime.php:369
|
||||
msgid "never"
|
||||
msgstr "jamais"
|
||||
|
||||
#: include/datetime.php:347
|
||||
#: include/datetime.php:375
|
||||
msgid "less than a second ago"
|
||||
msgstr "il y a moins d'une seconde"
|
||||
|
||||
#: include/datetime.php:350
|
||||
#: include/datetime.php:378
|
||||
msgid "year"
|
||||
msgstr "an"
|
||||
|
||||
#: include/datetime.php:350
|
||||
#: include/datetime.php:378
|
||||
msgid "years"
|
||||
msgstr "ans"
|
||||
|
||||
#: include/datetime.php:351 include/event.php:480 mod/cal.php:284
|
||||
#: mod/events.php:389
|
||||
#: include/datetime.php:379 include/event.php:489 mod/cal.php:285
|
||||
#: mod/events.php:395
|
||||
msgid "month"
|
||||
msgstr "mois"
|
||||
|
||||
#: include/datetime.php:351
|
||||
#: include/datetime.php:379
|
||||
msgid "months"
|
||||
msgstr "mois"
|
||||
|
||||
#: include/datetime.php:352 include/event.php:481 mod/cal.php:285
|
||||
#: mod/events.php:390
|
||||
#: include/datetime.php:380 include/event.php:490 mod/cal.php:286
|
||||
#: mod/events.php:396
|
||||
msgid "week"
|
||||
msgstr "semaine"
|
||||
|
||||
#: include/datetime.php:352
|
||||
#: include/datetime.php:380
|
||||
msgid "weeks"
|
||||
msgstr "semaines"
|
||||
|
||||
#: include/datetime.php:353 include/event.php:482 mod/cal.php:286
|
||||
#: mod/events.php:391
|
||||
#: include/datetime.php:381 include/event.php:491 mod/cal.php:287
|
||||
#: mod/events.php:397
|
||||
msgid "day"
|
||||
msgstr "jour"
|
||||
|
||||
#: include/datetime.php:353
|
||||
#: include/datetime.php:381
|
||||
msgid "days"
|
||||
msgstr "jours"
|
||||
|
||||
#: include/datetime.php:354
|
||||
#: include/datetime.php:382
|
||||
msgid "hour"
|
||||
msgstr "heure"
|
||||
|
||||
#: include/datetime.php:354
|
||||
#: include/datetime.php:382
|
||||
msgid "hours"
|
||||
msgstr "heures"
|
||||
|
||||
#: include/datetime.php:355
|
||||
#: include/datetime.php:383
|
||||
msgid "minute"
|
||||
msgstr "minute"
|
||||
|
||||
#: include/datetime.php:355
|
||||
#: include/datetime.php:383
|
||||
msgid "minutes"
|
||||
msgstr "minutes"
|
||||
|
||||
#: include/datetime.php:356
|
||||
#: include/datetime.php:384
|
||||
msgid "second"
|
||||
msgstr "seconde"
|
||||
|
||||
#: include/datetime.php:356
|
||||
#: include/datetime.php:384
|
||||
msgid "seconds"
|
||||
msgstr "secondes"
|
||||
|
||||
#: include/datetime.php:365
|
||||
#: include/datetime.php:393
|
||||
#, php-format
|
||||
msgid "%1$d %2$s ago"
|
||||
msgstr "il y a %1$d %2$s "
|
||||
|
||||
#: include/datetime.php:572
|
||||
#: include/datetime.php:619
|
||||
#, php-format
|
||||
msgid "%s's birthday"
|
||||
msgstr "Anniversaire de %s's"
|
||||
|
||||
#: include/datetime.php:573 include/dfrn.php:1109
|
||||
#: include/datetime.php:620 src/Protocol/DFRN.php:1417
|
||||
#, php-format
|
||||
msgid "Happy Birthday %s"
|
||||
msgstr "Joyeux anniversaire, %s !"
|
||||
|
||||
#: include/enotify.php:24
|
||||
msgid "Friendica Notification"
|
||||
msgstr "Notification Friendica"
|
||||
|
||||
#: include/enotify.php:27
|
||||
msgid "Thank You,"
|
||||
msgstr "Merci, "
|
||||
|
||||
#: include/enotify.php:30
|
||||
#: include/dba.php:57
|
||||
#, php-format
|
||||
msgid "%s Administrator"
|
||||
msgstr "L'administrateur de %s"
|
||||
msgid "Cannot locate DNS info for database server '%s'"
|
||||
msgstr "Impossible de localiser les informations DNS pour le serveur de base de données '%s'"
|
||||
|
||||
#: include/enotify.php:32
|
||||
#, php-format
|
||||
msgid "%1$s, %2$s Administrator"
|
||||
msgstr "%1$s,, l'administrateur de %2$s"
|
||||
|
||||
#: include/enotify.php:43 include/delivery.php:457
|
||||
msgid "noreply"
|
||||
msgstr "noreply"
|
||||
|
||||
#: include/enotify.php:70
|
||||
#, php-format
|
||||
msgid "%s <!item_type!>"
|
||||
msgstr "%s <!item_type!>"
|
||||
|
||||
#: include/enotify.php:83
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] New mail received at %s"
|
||||
msgstr "[Friendica:Notification] Nouveau courriel reçu sur %s"
|
||||
|
||||
#: include/enotify.php:85
|
||||
#, php-format
|
||||
msgid "%1$s sent you a new private message at %2$s."
|
||||
msgstr "%1$s vous a envoyé un nouveau message privé sur %2$s."
|
||||
|
||||
#: include/enotify.php:86
|
||||
#, php-format
|
||||
msgid "%1$s sent you %2$s."
|
||||
msgstr "%1$s vous a envoyé %2$s."
|
||||
|
||||
#: include/enotify.php:86
|
||||
msgid "a private message"
|
||||
msgstr "un message privé"
|
||||
|
||||
#: include/enotify.php:88
|
||||
#, php-format
|
||||
msgid "Please visit %s to view and/or reply to your private messages."
|
||||
msgstr "Merci de visiter %s pour voir vos messages privés et/ou y répondre."
|
||||
|
||||
#: include/enotify.php:134
|
||||
#, php-format
|
||||
msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
|
||||
msgstr "%1$s a commenté sur [url=%2$s]un %3$s[/url]"
|
||||
|
||||
#: include/enotify.php:141
|
||||
#, php-format
|
||||
msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
|
||||
msgstr "%1$s a commenté sur [url=%2$s]le %4$s de %3$s[/url]"
|
||||
|
||||
#: include/enotify.php:149
|
||||
#, php-format
|
||||
msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
|
||||
msgstr "%1$s commented on [url=%2$s]your %3$s[/url]"
|
||||
|
||||
#: include/enotify.php:159
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
|
||||
msgstr "[Friendica:Notification] Commentaire de %2$s sur la conversation #%1$d"
|
||||
|
||||
#: include/enotify.php:161
|
||||
#, php-format
|
||||
msgid "%s commented on an item/conversation you have been following."
|
||||
msgstr "%s a commenté un élément que vous suivez."
|
||||
|
||||
#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192
|
||||
#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238
|
||||
#, php-format
|
||||
msgid "Please visit %s to view and/or reply to the conversation."
|
||||
msgstr "Merci de visiter %s pour voir la conversation et/ou y répondre."
|
||||
|
||||
#: include/enotify.php:171
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %s posted to your profile wall"
|
||||
msgstr "[Friendica:Notification] %s a posté sur votre mur de profil"
|
||||
|
||||
#: include/enotify.php:173
|
||||
#, php-format
|
||||
msgid "%1$s posted to your profile wall at %2$s"
|
||||
msgstr "%1$s a publié sur votre mur à %2$s"
|
||||
|
||||
#: include/enotify.php:174
|
||||
#, php-format
|
||||
msgid "%1$s posted to [url=%2$s]your wall[/url]"
|
||||
msgstr "%1$s a posté sur [url=%2$s]votre mur[/url]"
|
||||
|
||||
#: include/enotify.php:185
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %s tagged you"
|
||||
msgstr "[Friendica:Notification] %s vous a étiqueté"
|
||||
|
||||
#: include/enotify.php:187
|
||||
#, php-format
|
||||
msgid "%1$s tagged you at %2$s"
|
||||
msgstr "%1$s vous a étiqueté sur %2$s"
|
||||
|
||||
#: include/enotify.php:188
|
||||
#, php-format
|
||||
msgid "%1$s [url=%2$s]tagged you[/url]."
|
||||
msgstr "%1$s [url=%2$s]vous a étiqueté[/url]."
|
||||
|
||||
#: include/enotify.php:199
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %s shared a new post"
|
||||
msgstr "[Friendica:Notification] %s partage une nouvelle publication"
|
||||
|
||||
#: include/enotify.php:201
|
||||
#, php-format
|
||||
msgid "%1$s shared a new post at %2$s"
|
||||
msgstr "%1$s a partagé une nouvelle publication sur %2$s"
|
||||
|
||||
#: include/enotify.php:202
|
||||
#, php-format
|
||||
msgid "%1$s [url=%2$s]shared a post[/url]."
|
||||
msgstr "%1$s [url=%2$s]partage une publication[/url]."
|
||||
|
||||
#: include/enotify.php:213
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %1$s poked you"
|
||||
msgstr "[Friendica:Notify] %1$s vous a sollicité"
|
||||
|
||||
#: include/enotify.php:215
|
||||
#, php-format
|
||||
msgid "%1$s poked you at %2$s"
|
||||
msgstr "%1$s vous a sollicité via %2$s"
|
||||
|
||||
#: include/enotify.php:216
|
||||
#, php-format
|
||||
msgid "%1$s [url=%2$s]poked you[/url]."
|
||||
msgstr "%1$s vous a [url=%2$s]sollicité[/url]."
|
||||
|
||||
#: include/enotify.php:231
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %s tagged your post"
|
||||
msgstr "[Friendica:Notification] %s a étiqueté votre publication"
|
||||
|
||||
#: include/enotify.php:233
|
||||
#, php-format
|
||||
msgid "%1$s tagged your post at %2$s"
|
||||
msgstr "%1$s a étiqueté votre publication sur %2$s"
|
||||
|
||||
#: include/enotify.php:234
|
||||
#, php-format
|
||||
msgid "%1$s tagged [url=%2$s]your post[/url]"
|
||||
msgstr "%1$s a étiqueté [url=%2$s]votre publication[/url]"
|
||||
|
||||
#: include/enotify.php:245
|
||||
msgid "[Friendica:Notify] Introduction received"
|
||||
msgstr "[Friendica:Notification] Introduction reçue"
|
||||
|
||||
#: include/enotify.php:247
|
||||
#, php-format
|
||||
msgid "You've received an introduction from '%1$s' at %2$s"
|
||||
msgstr "Vous avez reçu une introduction de '%1$s' sur %2$s"
|
||||
|
||||
#: include/enotify.php:248
|
||||
#, php-format
|
||||
msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
|
||||
msgstr "Vous avez reçu [url=%1$s]une introduction[/url] de %2$s."
|
||||
|
||||
#: include/enotify.php:252 include/enotify.php:295
|
||||
#, php-format
|
||||
msgid "You may visit their profile at %s"
|
||||
msgstr "Vous pouvez visiter son profil sur %s"
|
||||
|
||||
#: include/enotify.php:254
|
||||
#, php-format
|
||||
msgid "Please visit %s to approve or reject the introduction."
|
||||
msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction."
|
||||
|
||||
#: include/enotify.php:262
|
||||
msgid "[Friendica:Notify] A new person is sharing with you"
|
||||
msgstr "[Notification Friendica] Une nouvelle personne partage avec vous"
|
||||
|
||||
#: include/enotify.php:264 include/enotify.php:265
|
||||
#, php-format
|
||||
msgid "%1$s is sharing with you at %2$s"
|
||||
msgstr "%1$s partage avec vous sur %2$s"
|
||||
|
||||
#: include/enotify.php:271
|
||||
msgid "[Friendica:Notify] You have a new follower"
|
||||
msgstr "[Friendica:Notification] Vous avez un nouvel abonné"
|
||||
|
||||
#: include/enotify.php:273 include/enotify.php:274
|
||||
#, php-format
|
||||
msgid "You have a new follower at %2$s : %1$s"
|
||||
msgstr "Vous avez un nouvel abonné à %2$s : %1$s"
|
||||
|
||||
#: include/enotify.php:285
|
||||
msgid "[Friendica:Notify] Friend suggestion received"
|
||||
msgstr "[Friendica:Notification] Nouvelle suggestion d'amitié"
|
||||
|
||||
#: include/enotify.php:287
|
||||
#, php-format
|
||||
msgid "You've received a friend suggestion from '%1$s' at %2$s"
|
||||
msgstr "Vous avez reçu une suggestion de '%1$s' sur %2$s"
|
||||
|
||||
#: include/enotify.php:288
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
|
||||
msgstr "Vous avez reçu [url=%1$s]une suggestion[/url] de %3$s pour %2$s."
|
||||
|
||||
#: include/enotify.php:293
|
||||
msgid "Name:"
|
||||
msgstr "Nom :"
|
||||
|
||||
#: include/enotify.php:294
|
||||
msgid "Photo:"
|
||||
msgstr "Photo :"
|
||||
|
||||
#: include/enotify.php:297
|
||||
#, php-format
|
||||
msgid "Please visit %s to approve or reject the suggestion."
|
||||
msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion."
|
||||
|
||||
#: include/enotify.php:305 include/enotify.php:319
|
||||
msgid "[Friendica:Notify] Connection accepted"
|
||||
msgstr "[Friendica:Notification] Connexion acceptée"
|
||||
|
||||
#: include/enotify.php:307 include/enotify.php:321
|
||||
#, php-format
|
||||
msgid "'%1$s' has accepted your connection request at %2$s"
|
||||
msgstr "'%1$s' a accepté votre demande de connexion à %2$s"
|
||||
|
||||
#: include/enotify.php:308 include/enotify.php:322
|
||||
#, php-format
|
||||
msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
|
||||
msgstr "%2$s a accepté votre [url=%1$s]demande de connexion[/url]."
|
||||
|
||||
#: include/enotify.php:312
|
||||
msgid ""
|
||||
"You are now mutual friends and may exchange status updates, photos, and "
|
||||
"email without restriction."
|
||||
msgstr "Vous êtes désormais mutuellement amis, et pouvez échanger des mises-à-jour d'état, des photos, et des messages sans restriction."
|
||||
|
||||
#: include/enotify.php:314
|
||||
#, php-format
|
||||
msgid "Please visit %s if you wish to make any changes to this relationship."
|
||||
msgstr "Veuillez visiter %s si vous souhaitez modifier cette relation."
|
||||
|
||||
#: include/enotify.php:326
|
||||
#, php-format
|
||||
msgid ""
|
||||
"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
|
||||
"communication - such as private messaging and some profile interactions. If "
|
||||
"this is a celebrity or community page, these settings were applied "
|
||||
"automatically."
|
||||
msgstr "%1$s a choisi de vous accepter comme \"fan\", ce qui limite les moyens de communication - comme les messages privés et certaines interactions de profil. Si c'est une page de célébrité ou de communauté, ce réglage a été appliqué automatiquement."
|
||||
|
||||
#: include/enotify.php:328
|
||||
#, php-format
|
||||
msgid ""
|
||||
"'%1$s' may choose to extend this into a two-way or more permissive "
|
||||
"relationship in the future."
|
||||
msgstr "%1$s peut choisir à l'avenir de rendre cette relation réciproque ou au moins plus permissive."
|
||||
|
||||
#: include/enotify.php:330
|
||||
#, php-format
|
||||
msgid "Please visit %s if you wish to make any changes to this relationship."
|
||||
msgstr "Veuillez visiter %s si vous souhaitez modifier cette relation."
|
||||
|
||||
#: include/enotify.php:340
|
||||
msgid "[Friendica System:Notify] registration request"
|
||||
msgstr "[Système Friendica:Notification] demande d'inscription"
|
||||
|
||||
#: include/enotify.php:342
|
||||
#, php-format
|
||||
msgid "You've received a registration request from '%1$s' at %2$s"
|
||||
msgstr "Vous avez reçu une demande d'inscription de %1$s sur %2$s"
|
||||
|
||||
#: include/enotify.php:343
|
||||
#, php-format
|
||||
msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
|
||||
msgstr "%2$s vous a envoyé une [url=%1$s]demande de création de compte[/url]."
|
||||
|
||||
#: include/enotify.php:347
|
||||
#, php-format
|
||||
msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
|
||||
msgstr "Nom complet :\t%1$s\\nAdresse :\t%2$s\\nIdentifiant :\t%3$s (%4$s)"
|
||||
|
||||
#: include/enotify.php:350
|
||||
#, php-format
|
||||
msgid "Please visit %s to approve or reject the request."
|
||||
msgstr "Veuillez visiter %s pour approuver ou rejeter la demande."
|
||||
|
||||
#: include/event.php:16 include/bb2diaspora.php:152 mod/localtime.php:12
|
||||
msgid "l F d, Y \\@ g:i A"
|
||||
msgstr "l F d, Y \\@ g:i A"
|
||||
|
||||
#: include/event.php:33 include/event.php:51 include/event.php:487
|
||||
#: include/bb2diaspora.php:158
|
||||
msgid "Starts:"
|
||||
msgstr "Débute:"
|
||||
|
||||
#: include/event.php:36 include/event.php:57 include/event.php:488
|
||||
#: include/bb2diaspora.php:166
|
||||
msgid "Finishes:"
|
||||
msgstr "Finit:"
|
||||
|
||||
#: include/event.php:39 include/event.php:63 include/event.php:489
|
||||
#: include/bb2diaspora.php:174 include/identity.php:328
|
||||
#: mod/notifications.php:232 mod/directory.php:137 mod/events.php:494
|
||||
#: mod/contacts.php:628
|
||||
msgid "Location:"
|
||||
msgstr "Localisation:"
|
||||
|
||||
#: include/event.php:441
|
||||
msgid "Sun"
|
||||
msgstr "Dim"
|
||||
|
||||
#: include/event.php:442
|
||||
msgid "Mon"
|
||||
msgstr "Lun"
|
||||
|
||||
#: include/event.php:443
|
||||
msgid "Tue"
|
||||
msgstr "Mar"
|
||||
|
||||
#: include/event.php:444
|
||||
msgid "Wed"
|
||||
msgstr "Mer"
|
||||
|
||||
#: include/event.php:445
|
||||
msgid "Thu"
|
||||
msgstr "Jeu"
|
||||
|
||||
#: include/event.php:446
|
||||
msgid "Fri"
|
||||
msgstr "Ven"
|
||||
|
||||
#: include/event.php:447
|
||||
msgid "Sat"
|
||||
msgstr "Sam"
|
||||
|
||||
#: include/event.php:448 include/text.php:1130 mod/settings.php:972
|
||||
msgid "Sunday"
|
||||
msgstr "Dimanche"
|
||||
|
||||
#: include/event.php:449 include/text.php:1130 mod/settings.php:972
|
||||
msgid "Monday"
|
||||
msgstr "Lundi"
|
||||
|
||||
#: include/event.php:450 include/text.php:1130
|
||||
msgid "Tuesday"
|
||||
msgstr "Mardi"
|
||||
|
||||
#: include/event.php:451 include/text.php:1130
|
||||
msgid "Wednesday"
|
||||
msgstr "Mercredi"
|
||||
|
||||
#: include/event.php:452 include/text.php:1130
|
||||
msgid "Thursday"
|
||||
msgstr "Jeudi"
|
||||
|
||||
#: include/event.php:453 include/text.php:1130
|
||||
msgid "Friday"
|
||||
msgstr "Vendredi"
|
||||
|
||||
#: include/event.php:454 include/text.php:1130
|
||||
msgid "Saturday"
|
||||
msgstr "Samedi"
|
||||
|
||||
#: include/event.php:455
|
||||
msgid "Jan"
|
||||
msgstr "Jan"
|
||||
|
||||
#: include/event.php:456
|
||||
msgid "Feb"
|
||||
msgstr "Fév"
|
||||
|
||||
#: include/event.php:457
|
||||
msgid "Mar"
|
||||
msgstr "Mar"
|
||||
|
||||
#: include/event.php:458
|
||||
msgid "Apr"
|
||||
msgstr "Avr"
|
||||
|
||||
#: include/event.php:459 include/event.php:471 include/text.php:1134
|
||||
msgid "May"
|
||||
msgstr "Mai"
|
||||
|
||||
#: include/event.php:460
|
||||
msgid "Jun"
|
||||
msgstr "Jun"
|
||||
|
||||
#: include/event.php:461
|
||||
msgid "Jul"
|
||||
msgstr "Jul"
|
||||
|
||||
#: include/event.php:462
|
||||
msgid "Aug"
|
||||
msgstr "Aoû"
|
||||
|
||||
#: include/event.php:463
|
||||
msgid "Sept"
|
||||
msgstr "Sep"
|
||||
|
||||
#: include/event.php:464
|
||||
msgid "Oct"
|
||||
msgstr "Oct"
|
||||
|
||||
#: include/event.php:465
|
||||
msgid "Nov"
|
||||
msgstr "Nov"
|
||||
|
||||
#: include/event.php:466
|
||||
msgid "Dec"
|
||||
msgstr "Déc"
|
||||
|
||||
#: include/event.php:467 include/text.php:1134
|
||||
msgid "January"
|
||||
msgstr "Janvier"
|
||||
|
||||
#: include/event.php:468 include/text.php:1134
|
||||
msgid "February"
|
||||
msgstr "Février"
|
||||
|
||||
#: include/event.php:469 include/text.php:1134
|
||||
msgid "March"
|
||||
msgstr "Mars"
|
||||
|
||||
#: include/event.php:470 include/text.php:1134
|
||||
msgid "April"
|
||||
msgstr "Avril"
|
||||
|
||||
#: include/event.php:472 include/text.php:1134
|
||||
msgid "June"
|
||||
msgstr "Juin"
|
||||
|
||||
#: include/event.php:473 include/text.php:1134
|
||||
msgid "July"
|
||||
msgstr "Juillet"
|
||||
|
||||
#: include/event.php:474 include/text.php:1134
|
||||
msgid "August"
|
||||
msgstr "Août"
|
||||
|
||||
#: include/event.php:475 include/text.php:1134
|
||||
msgid "September"
|
||||
msgstr "Septembre"
|
||||
|
||||
#: include/event.php:476 include/text.php:1134
|
||||
msgid "October"
|
||||
msgstr "Octobre"
|
||||
|
||||
#: include/event.php:477 include/text.php:1134
|
||||
msgid "November"
|
||||
msgstr "Novembre"
|
||||
|
||||
#: include/event.php:478 include/text.php:1134
|
||||
msgid "December"
|
||||
msgstr "Décembre"
|
||||
|
||||
#: include/event.php:479 mod/cal.php:283 mod/events.php:388
|
||||
msgid "today"
|
||||
msgstr "aujourd'hui"
|
||||
|
||||
#: include/event.php:483
|
||||
msgid "all-day"
|
||||
#: include/dbstructure.php:25
|
||||
msgid "There are no tables on MyISAM."
|
||||
msgstr ""
|
||||
|
||||
#: include/event.php:485
|
||||
msgid "No events to display"
|
||||
msgstr ""
|
||||
|
||||
#: include/event.php:574
|
||||
msgid "l, F j"
|
||||
msgstr "l, F j"
|
||||
|
||||
#: include/event.php:593
|
||||
msgid "Edit event"
|
||||
msgstr "Editer l'événement"
|
||||
|
||||
#: include/event.php:615 include/text.php:1532 include/text.php:1539
|
||||
msgid "link to source"
|
||||
msgstr "lien original"
|
||||
|
||||
#: include/event.php:850
|
||||
msgid "Export"
|
||||
msgstr "Exporter"
|
||||
|
||||
#: include/event.php:851
|
||||
msgid "Export calendar as ical"
|
||||
msgstr "Exporter au format iCal"
|
||||
|
||||
#: include/event.php:852
|
||||
msgid "Export calendar as csv"
|
||||
msgstr "Exporter au format CSV"
|
||||
|
||||
#: include/nav.php:35 mod/navigation.php:19
|
||||
msgid "Nothing new here"
|
||||
msgstr "Rien de neuf ici"
|
||||
|
||||
#: include/nav.php:39 mod/navigation.php:23
|
||||
msgid "Clear notifications"
|
||||
msgstr "Effacer les notifications"
|
||||
|
||||
#: include/nav.php:40 include/text.php:1015
|
||||
msgid "@name, !forum, #tags, content"
|
||||
msgstr "@nom, !forum, #tags, contenu"
|
||||
|
||||
#: include/nav.php:78 view/theme/frio/theme.php:246 boot.php:1792
|
||||
msgid "Logout"
|
||||
msgstr "Se déconnecter"
|
||||
|
||||
#: include/nav.php:78 view/theme/frio/theme.php:246
|
||||
msgid "End this session"
|
||||
msgstr "Mettre fin à cette session"
|
||||
|
||||
#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637
|
||||
#: mod/contacts.php:833 view/theme/frio/theme.php:249
|
||||
msgid "Status"
|
||||
msgstr "Statut"
|
||||
|
||||
#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249
|
||||
msgid "Your posts and conversations"
|
||||
msgstr "Vos publications et conversations"
|
||||
|
||||
#: include/nav.php:82 include/identity.php:605 include/identity.php:691
|
||||
#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32
|
||||
#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:250
|
||||
msgid "Profile"
|
||||
msgstr "Profil"
|
||||
|
||||
#: include/nav.php:82 view/theme/frio/theme.php:250
|
||||
msgid "Your profile page"
|
||||
msgstr "Votre page de profil"
|
||||
|
||||
#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32
|
||||
#: view/theme/frio/theme.php:251
|
||||
msgid "Photos"
|
||||
msgstr "Photos"
|
||||
|
||||
#: include/nav.php:83 view/theme/frio/theme.php:251
|
||||
msgid "Your photos"
|
||||
msgstr "Vos photos"
|
||||
|
||||
#: include/nav.php:84 include/identity.php:738 include/identity.php:741
|
||||
#: view/theme/frio/theme.php:252
|
||||
msgid "Videos"
|
||||
msgstr "Vidéos"
|
||||
|
||||
#: include/nav.php:84 view/theme/frio/theme.php:252
|
||||
msgid "Your videos"
|
||||
msgstr "Vos vidéos"
|
||||
|
||||
#: include/nav.php:85 include/nav.php:149 include/identity.php:750
|
||||
#: include/identity.php:761 mod/cal.php:275 mod/events.php:379
|
||||
#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257
|
||||
msgid "Events"
|
||||
msgstr "Événements"
|
||||
|
||||
#: include/nav.php:85 view/theme/frio/theme.php:253
|
||||
msgid "Your events"
|
||||
msgstr "Vos événements"
|
||||
|
||||
#: include/nav.php:86
|
||||
msgid "Personal notes"
|
||||
msgstr "Notes personnelles"
|
||||
|
||||
#: include/nav.php:86
|
||||
msgid "Your personal notes"
|
||||
msgstr "Vos notes personnelles"
|
||||
|
||||
#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1793
|
||||
msgid "Login"
|
||||
msgstr "Connexion"
|
||||
|
||||
#: include/nav.php:95
|
||||
msgid "Sign in"
|
||||
msgstr "Se connecter"
|
||||
|
||||
#: include/nav.php:105 include/nav.php:161
|
||||
#: include/NotificationsManager.php:174
|
||||
msgid "Home"
|
||||
msgstr "Profil"
|
||||
|
||||
#: include/nav.php:105
|
||||
msgid "Home Page"
|
||||
msgstr "Page d'accueil"
|
||||
|
||||
#: include/nav.php:109 mod/register.php:289 boot.php:1768
|
||||
msgid "Register"
|
||||
msgstr "S'inscrire"
|
||||
|
||||
#: include/nav.php:109
|
||||
msgid "Create an account"
|
||||
msgstr "Créer un compte"
|
||||
|
||||
#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298
|
||||
msgid "Help"
|
||||
msgstr "Aide"
|
||||
|
||||
#: include/nav.php:115
|
||||
msgid "Help and documentation"
|
||||
msgstr "Aide et documentation"
|
||||
|
||||
#: include/nav.php:119
|
||||
msgid "Apps"
|
||||
msgstr "Applications"
|
||||
|
||||
#: include/nav.php:119
|
||||
msgid "Addon applications, utilities, games"
|
||||
msgstr "Applications supplémentaires, utilitaires, jeux"
|
||||
|
||||
#: include/nav.php:123 include/text.php:1012 mod/search.php:149
|
||||
msgid "Search"
|
||||
msgstr "Recherche"
|
||||
|
||||
#: include/nav.php:123
|
||||
msgid "Search site content"
|
||||
msgstr "Rechercher dans le contenu du site"
|
||||
|
||||
#: include/nav.php:126 include/text.php:1020
|
||||
msgid "Full Text"
|
||||
msgstr "Texte Entier"
|
||||
|
||||
#: include/nav.php:127 include/text.php:1021
|
||||
msgid "Tags"
|
||||
msgstr "Tags"
|
||||
|
||||
#: include/nav.php:128 include/nav.php:192 include/identity.php:783
|
||||
#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792
|
||||
#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:260
|
||||
msgid "Contacts"
|
||||
msgstr "Contacts"
|
||||
|
||||
#: include/nav.php:143 include/nav.php:145 mod/community.php:36
|
||||
msgid "Community"
|
||||
msgstr "Communauté"
|
||||
|
||||
#: include/nav.php:143
|
||||
msgid "Conversations on this site"
|
||||
msgstr "Conversations ayant cours sur ce site"
|
||||
|
||||
#: include/nav.php:145
|
||||
msgid "Conversations on the network"
|
||||
msgstr "Conversations sur le réseau"
|
||||
|
||||
#: include/nav.php:149 include/identity.php:753 include/identity.php:764
|
||||
#: view/theme/frio/theme.php:257
|
||||
msgid "Events and Calendar"
|
||||
msgstr "Événements et agenda"
|
||||
|
||||
#: include/nav.php:152
|
||||
msgid "Directory"
|
||||
msgstr "Annuaire"
|
||||
|
||||
#: include/nav.php:152
|
||||
msgid "People directory"
|
||||
msgstr "Annuaire des utilisateurs"
|
||||
|
||||
#: include/nav.php:154
|
||||
msgid "Information"
|
||||
msgstr "Information"
|
||||
|
||||
#: include/nav.php:154
|
||||
msgid "Information about this friendica instance"
|
||||
msgstr "Information au sujet de cette instance de friendica"
|
||||
|
||||
#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411
|
||||
#: view/theme/frio/theme.php:256
|
||||
msgid "Network"
|
||||
msgstr "Réseau"
|
||||
|
||||
#: include/nav.php:158 view/theme/frio/theme.php:256
|
||||
msgid "Conversations from your friends"
|
||||
msgstr "Conversations de vos amis"
|
||||
|
||||
#: include/nav.php:159
|
||||
msgid "Network Reset"
|
||||
msgstr "Réinitialiser le réseau"
|
||||
|
||||
#: include/nav.php:159
|
||||
msgid "Load Network page with no filters"
|
||||
msgstr "Chargement des pages du réseau sans filtre"
|
||||
|
||||
#: include/nav.php:166 include/NotificationsManager.php:181
|
||||
msgid "Introductions"
|
||||
msgstr "Introductions"
|
||||
|
||||
#: include/nav.php:166
|
||||
msgid "Friend Requests"
|
||||
msgstr "Demande d'amitié"
|
||||
|
||||
#: include/nav.php:169 mod/notifications.php:96
|
||||
msgid "Notifications"
|
||||
msgstr "Notifications"
|
||||
|
||||
#: include/nav.php:170
|
||||
msgid "See all notifications"
|
||||
msgstr "Voir toute notification"
|
||||
|
||||
#: include/nav.php:171 mod/settings.php:902
|
||||
msgid "Mark as seen"
|
||||
msgstr "Marquer comme vu"
|
||||
|
||||
#: include/nav.php:171
|
||||
msgid "Mark all system notifications seen"
|
||||
msgstr "Marquer toutes les notifications système comme 'vues'"
|
||||
|
||||
#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258
|
||||
msgid "Messages"
|
||||
msgstr "Messages"
|
||||
|
||||
#: include/nav.php:175 view/theme/frio/theme.php:258
|
||||
msgid "Private mail"
|
||||
msgstr "Messages privés"
|
||||
|
||||
#: include/nav.php:176
|
||||
msgid "Inbox"
|
||||
msgstr "Messages entrants"
|
||||
|
||||
#: include/nav.php:177
|
||||
msgid "Outbox"
|
||||
msgstr "Messages sortants"
|
||||
|
||||
#: include/nav.php:178 mod/message.php:16
|
||||
msgid "New Message"
|
||||
msgstr "Nouveau message"
|
||||
|
||||
#: include/nav.php:181
|
||||
msgid "Manage"
|
||||
msgstr "Gérer"
|
||||
|
||||
#: include/nav.php:181
|
||||
msgid "Manage other pages"
|
||||
msgstr "Gérer les autres pages"
|
||||
|
||||
#: include/nav.php:184 mod/settings.php:81
|
||||
msgid "Delegations"
|
||||
msgstr "Délégations"
|
||||
|
||||
#: include/nav.php:184 mod/delegate.php:130
|
||||
msgid "Delegate Page Management"
|
||||
msgstr "Déléguer la gestion de la page"
|
||||
|
||||
#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111
|
||||
#: mod/admin.php:1524 mod/admin.php:1782 view/theme/frio/theme.php:259
|
||||
msgid "Settings"
|
||||
msgstr "Réglages"
|
||||
|
||||
#: include/nav.php:186 view/theme/frio/theme.php:259
|
||||
msgid "Account settings"
|
||||
msgstr "Compte"
|
||||
|
||||
#: include/nav.php:189 include/identity.php:282
|
||||
msgid "Profiles"
|
||||
msgstr "Profils"
|
||||
|
||||
#: include/nav.php:189
|
||||
msgid "Manage/Edit Profiles"
|
||||
msgstr "Gérer/Éditer les profiles"
|
||||
|
||||
#: include/nav.php:192 view/theme/frio/theme.php:260
|
||||
msgid "Manage/edit friends and contacts"
|
||||
msgstr "Gérer/éditer les amitiés et contacts"
|
||||
|
||||
#: include/nav.php:197 mod/admin.php:186
|
||||
msgid "Admin"
|
||||
msgstr "Admin"
|
||||
|
||||
#: include/nav.php:197
|
||||
msgid "Site setup and configuration"
|
||||
msgstr "Démarrage et configuration du site"
|
||||
|
||||
#: include/nav.php:200
|
||||
msgid "Navigation"
|
||||
msgstr "Navigation"
|
||||
|
||||
#: include/nav.php:200
|
||||
msgid "Site map"
|
||||
msgstr "Carte du site"
|
||||
|
||||
#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62
|
||||
#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211
|
||||
#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807
|
||||
msgid "Contact Photos"
|
||||
msgstr "Photos du contact"
|
||||
|
||||
#: include/security.php:22
|
||||
msgid "Welcome "
|
||||
msgstr "Bienvenue "
|
||||
|
||||
#: include/security.php:23
|
||||
msgid "Please upload a profile photo."
|
||||
msgstr "Merci d'illustrer votre profil d'une image."
|
||||
|
||||
#: include/security.php:26
|
||||
msgid "Welcome back "
|
||||
msgstr "Bienvenue à nouveau, "
|
||||
|
||||
#: include/security.php:373
|
||||
msgid ""
|
||||
"The form security token was not correct. This probably happened because the "
|
||||
"form has been opened for too long (>3 hours) before submitting it."
|
||||
msgstr "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé."
|
||||
|
||||
#: include/NotificationsManager.php:153
|
||||
msgid "System"
|
||||
msgstr "Système"
|
||||
|
||||
#: include/NotificationsManager.php:167 mod/profiles.php:703
|
||||
#: mod/network.php:845
|
||||
msgid "Personal"
|
||||
msgstr "Personnel"
|
||||
|
||||
#: include/NotificationsManager.php:234 include/NotificationsManager.php:244
|
||||
#, php-format
|
||||
msgid "%s commented on %s's post"
|
||||
msgstr "%s a commenté la publication de %s"
|
||||
|
||||
#: include/NotificationsManager.php:243
|
||||
#, php-format
|
||||
msgid "%s created a new post"
|
||||
msgstr "%s a créé une nouvelle publication"
|
||||
|
||||
#: include/NotificationsManager.php:256
|
||||
#, php-format
|
||||
msgid "%s liked %s's post"
|
||||
msgstr "%s a aimé la publication de %s"
|
||||
|
||||
#: include/NotificationsManager.php:267
|
||||
#, php-format
|
||||
msgid "%s disliked %s's post"
|
||||
msgstr "%s n'a pas aimé la publication de %s"
|
||||
|
||||
#: include/NotificationsManager.php:278
|
||||
#, php-format
|
||||
msgid "%s is attending %s's event"
|
||||
msgstr "%s participe à l'événement de %s"
|
||||
|
||||
#: include/NotificationsManager.php:289
|
||||
#, php-format
|
||||
msgid "%s is not attending %s's event"
|
||||
msgstr "%s ne participe pas à l'événement de %s"
|
||||
|
||||
#: include/NotificationsManager.php:300
|
||||
#, php-format
|
||||
msgid "%s may attend %s's event"
|
||||
msgstr "%s participera peut-être à l'événement de %s"
|
||||
|
||||
#: include/NotificationsManager.php:315
|
||||
#, php-format
|
||||
msgid "%s is now friends with %s"
|
||||
msgstr "%s est désormais ami(e) avec %s"
|
||||
|
||||
#: include/NotificationsManager.php:748
|
||||
msgid "Friend Suggestion"
|
||||
msgstr "Suggestion d'amitié/contact"
|
||||
|
||||
#: include/NotificationsManager.php:781
|
||||
msgid "Friend/Connect Request"
|
||||
msgstr "Demande de connexion/relation"
|
||||
|
||||
#: include/NotificationsManager.php:781
|
||||
msgid "New Follower"
|
||||
msgstr "Nouvel abonné"
|
||||
|
||||
#: include/dbstructure.php:26
|
||||
#: include/dbstructure.php:66
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
|
|
@ -1682,1380 +1178,1817 @@ msgid ""
|
|||
"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
|
||||
msgstr "\nLes développeurs de Friendica ont récemment publié la mise à jour %s, mais en tentant de l’installer, quelque chose s’est terriblement mal passé. Une réparation s’impose et je ne peux pas la faire tout seul. Contactez un développeur Friendica si vous ne pouvez pas corriger le problème vous-même. Il est possible que ma base de données soit corrompue."
|
||||
|
||||
#: include/dbstructure.php:31
|
||||
#: include/dbstructure.php:71
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The error message is\n"
|
||||
"[pre]%s[/pre]"
|
||||
msgstr "Le message d’erreur est\n[pre]%s[/pre]"
|
||||
|
||||
#: include/dbstructure.php:183
|
||||
msgid "Errors encountered creating database tables."
|
||||
msgstr "Des erreurs ont été signalées lors de la création des tables."
|
||||
#: include/dbstructure.php:193
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"Error %d occurred during database update:\n"
|
||||
"%s\n"
|
||||
msgstr "\nErreur %d survenue durant la mise à jour de la base de données :\n%s\n"
|
||||
|
||||
#: include/dbstructure.php:260
|
||||
msgid "Errors encountered performing database changes."
|
||||
msgstr "Des erreurs sont survenues lors de la mise à jour de la base de données."
|
||||
|
||||
#: include/delivery.php:446
|
||||
msgid "(no subject)"
|
||||
msgstr "(sans titre)"
|
||||
|
||||
#: include/diaspora.php:1958
|
||||
msgid "Sharing notification from Diaspora network"
|
||||
msgstr "Notification de partage du réseau Diaspora"
|
||||
|
||||
#: include/diaspora.php:2864
|
||||
msgid "Attachments:"
|
||||
msgstr "Pièces jointes : "
|
||||
|
||||
#: include/network.php:595
|
||||
msgid "view full size"
|
||||
msgstr "voir en pleine taille"
|
||||
|
||||
#: include/Contact.php:340 include/Contact.php:353 include/Contact.php:398
|
||||
#: include/conversation.php:968 include/conversation.php:984
|
||||
#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203
|
||||
#: mod/match.php:71 mod/suggest.php:82
|
||||
msgid "View Profile"
|
||||
msgstr "Voir le profil"
|
||||
|
||||
#: include/Contact.php:397 include/conversation.php:967
|
||||
msgid "View Status"
|
||||
msgstr "Voir les statuts"
|
||||
|
||||
#: include/Contact.php:399 include/conversation.php:969
|
||||
msgid "View Photos"
|
||||
msgstr "Voir les photos"
|
||||
|
||||
#: include/Contact.php:400 include/conversation.php:970
|
||||
msgid "Network Posts"
|
||||
msgstr "Publications du réseau"
|
||||
|
||||
#: include/Contact.php:401 include/conversation.php:971
|
||||
msgid "View Contact"
|
||||
#: include/dbstructure.php:196
|
||||
msgid "Errors encountered performing database changes: "
|
||||
msgstr ""
|
||||
|
||||
#: include/Contact.php:402
|
||||
msgid "Drop Contact"
|
||||
msgstr "Supprimer le contact"
|
||||
#: include/dbstructure.php:204
|
||||
msgid ": Database update"
|
||||
msgstr ": Mise à jour de la base de données"
|
||||
|
||||
#: include/Contact.php:403 include/conversation.php:972
|
||||
msgid "Send PM"
|
||||
msgstr "Message privé"
|
||||
|
||||
#: include/Contact.php:404 include/conversation.php:976
|
||||
msgid "Poke"
|
||||
msgstr "Sollicitations (pokes)"
|
||||
|
||||
#: include/Contact.php:775
|
||||
msgid "Organisation"
|
||||
#: include/dbstructure.php:437
|
||||
#, php-format
|
||||
msgid "%s: updating %s table."
|
||||
msgstr ""
|
||||
|
||||
#: include/Contact.php:778
|
||||
msgid "News"
|
||||
#: include/enotify.php:32
|
||||
msgid "Friendica Notification"
|
||||
msgstr "Notification Friendica"
|
||||
|
||||
#: include/enotify.php:35
|
||||
msgid "Thank You,"
|
||||
msgstr "Merci, "
|
||||
|
||||
#: include/enotify.php:38
|
||||
#, php-format
|
||||
msgid "%s Administrator"
|
||||
msgstr "L'administrateur de %s"
|
||||
|
||||
#: include/enotify.php:40
|
||||
#, php-format
|
||||
msgid "%1$s, %2$s Administrator"
|
||||
msgstr "%1$s,, l'administrateur de %2$s"
|
||||
|
||||
#: include/enotify.php:51 src/Worker/Delivery.php:433
|
||||
msgid "noreply"
|
||||
msgstr "noreply"
|
||||
|
||||
#: include/enotify.php:85
|
||||
#, php-format
|
||||
msgid "%s <!item_type!>"
|
||||
msgstr "%s <!item_type!>"
|
||||
|
||||
#: include/enotify.php:98
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] New mail received at %s"
|
||||
msgstr "[Friendica:Notification] Nouveau courriel reçu sur %s"
|
||||
|
||||
#: include/enotify.php:100
|
||||
#, php-format
|
||||
msgid "%1$s sent you a new private message at %2$s."
|
||||
msgstr "%1$s vous a envoyé un nouveau message privé sur %2$s."
|
||||
|
||||
#: include/enotify.php:101
|
||||
#, php-format
|
||||
msgid "%1$s sent you %2$s."
|
||||
msgstr "%1$s vous a envoyé %2$s."
|
||||
|
||||
#: include/enotify.php:101
|
||||
msgid "a private message"
|
||||
msgstr "un message privé"
|
||||
|
||||
#: include/enotify.php:103
|
||||
#, php-format
|
||||
msgid "Please visit %s to view and/or reply to your private messages."
|
||||
msgstr "Merci de visiter %s pour voir vos messages privés et/ou y répondre."
|
||||
|
||||
#: include/enotify.php:149
|
||||
#, php-format
|
||||
msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
|
||||
msgstr "%1$s a commenté sur [url=%2$s]un %3$s[/url]"
|
||||
|
||||
#: include/enotify.php:156
|
||||
#, php-format
|
||||
msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
|
||||
msgstr "%1$s a commenté sur [url=%2$s]le %4$s de %3$s[/url]"
|
||||
|
||||
#: include/enotify.php:164
|
||||
#, php-format
|
||||
msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
|
||||
msgstr "%1$s commented on [url=%2$s]your %3$s[/url]"
|
||||
|
||||
#: include/enotify.php:174
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
|
||||
msgstr "[Friendica:Notification] Commentaire de %2$s sur la conversation #%1$d"
|
||||
|
||||
#: include/enotify.php:176
|
||||
#, php-format
|
||||
msgid "%s commented on an item/conversation you have been following."
|
||||
msgstr "%s a commenté un élément que vous suivez."
|
||||
|
||||
#: include/enotify.php:179 include/enotify.php:193 include/enotify.php:207
|
||||
#: include/enotify.php:221 include/enotify.php:239 include/enotify.php:253
|
||||
#, php-format
|
||||
msgid "Please visit %s to view and/or reply to the conversation."
|
||||
msgstr "Merci de visiter %s pour voir la conversation et/ou y répondre."
|
||||
|
||||
#: include/enotify.php:186
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %s posted to your profile wall"
|
||||
msgstr "[Friendica:Notification] %s a posté sur votre mur de profil"
|
||||
|
||||
#: include/enotify.php:188
|
||||
#, php-format
|
||||
msgid "%1$s posted to your profile wall at %2$s"
|
||||
msgstr "%1$s a publié sur votre mur à %2$s"
|
||||
|
||||
#: include/enotify.php:189
|
||||
#, php-format
|
||||
msgid "%1$s posted to [url=%2$s]your wall[/url]"
|
||||
msgstr "%1$s a posté sur [url=%2$s]votre mur[/url]"
|
||||
|
||||
#: include/enotify.php:200
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %s tagged you"
|
||||
msgstr "[Friendica:Notification] %s vous a étiqueté"
|
||||
|
||||
#: include/enotify.php:202
|
||||
#, php-format
|
||||
msgid "%1$s tagged you at %2$s"
|
||||
msgstr "%1$s vous a étiqueté sur %2$s"
|
||||
|
||||
#: include/enotify.php:203
|
||||
#, php-format
|
||||
msgid "%1$s [url=%2$s]tagged you[/url]."
|
||||
msgstr "%1$s [url=%2$s]vous a étiqueté[/url]."
|
||||
|
||||
#: include/enotify.php:214
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %s shared a new post"
|
||||
msgstr "[Friendica:Notification] %s partage une nouvelle publication"
|
||||
|
||||
#: include/enotify.php:216
|
||||
#, php-format
|
||||
msgid "%1$s shared a new post at %2$s"
|
||||
msgstr "%1$s a partagé une nouvelle publication sur %2$s"
|
||||
|
||||
#: include/enotify.php:217
|
||||
#, php-format
|
||||
msgid "%1$s [url=%2$s]shared a post[/url]."
|
||||
msgstr "%1$s [url=%2$s]partage une publication[/url]."
|
||||
|
||||
#: include/enotify.php:228
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %1$s poked you"
|
||||
msgstr "[Friendica:Notify] %1$s vous a sollicité"
|
||||
|
||||
#: include/enotify.php:230
|
||||
#, php-format
|
||||
msgid "%1$s poked you at %2$s"
|
||||
msgstr "%1$s vous a sollicité via %2$s"
|
||||
|
||||
#: include/enotify.php:231
|
||||
#, php-format
|
||||
msgid "%1$s [url=%2$s]poked you[/url]."
|
||||
msgstr "%1$s vous a [url=%2$s]sollicité[/url]."
|
||||
|
||||
#: include/enotify.php:246
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %s tagged your post"
|
||||
msgstr "[Friendica:Notification] %s a étiqueté votre publication"
|
||||
|
||||
#: include/enotify.php:248
|
||||
#, php-format
|
||||
msgid "%1$s tagged your post at %2$s"
|
||||
msgstr "%1$s a étiqueté votre publication sur %2$s"
|
||||
|
||||
#: include/enotify.php:249
|
||||
#, php-format
|
||||
msgid "%1$s tagged [url=%2$s]your post[/url]"
|
||||
msgstr "%1$s a étiqueté [url=%2$s]votre publication[/url]"
|
||||
|
||||
#: include/enotify.php:260
|
||||
msgid "[Friendica:Notify] Introduction received"
|
||||
msgstr "[Friendica:Notification] Introduction reçue"
|
||||
|
||||
#: include/enotify.php:262
|
||||
#, php-format
|
||||
msgid "You've received an introduction from '%1$s' at %2$s"
|
||||
msgstr "Vous avez reçu une introduction de '%1$s' sur %2$s"
|
||||
|
||||
#: include/enotify.php:263
|
||||
#, php-format
|
||||
msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
|
||||
msgstr "Vous avez reçu [url=%1$s]une introduction[/url] de %2$s."
|
||||
|
||||
#: include/enotify.php:267 include/enotify.php:310
|
||||
#, php-format
|
||||
msgid "You may visit their profile at %s"
|
||||
msgstr "Vous pouvez visiter son profil sur %s"
|
||||
|
||||
#: include/enotify.php:269
|
||||
#, php-format
|
||||
msgid "Please visit %s to approve or reject the introduction."
|
||||
msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction."
|
||||
|
||||
#: include/enotify.php:277
|
||||
msgid "[Friendica:Notify] A new person is sharing with you"
|
||||
msgstr "[Notification Friendica] Une nouvelle personne partage avec vous"
|
||||
|
||||
#: include/enotify.php:279 include/enotify.php:280
|
||||
#, php-format
|
||||
msgid "%1$s is sharing with you at %2$s"
|
||||
msgstr "%1$s partage avec vous sur %2$s"
|
||||
|
||||
#: include/enotify.php:286
|
||||
msgid "[Friendica:Notify] You have a new follower"
|
||||
msgstr "[Friendica:Notification] Vous avez un nouvel abonné"
|
||||
|
||||
#: include/enotify.php:288 include/enotify.php:289
|
||||
#, php-format
|
||||
msgid "You have a new follower at %2$s : %1$s"
|
||||
msgstr "Vous avez un nouvel abonné à %2$s : %1$s"
|
||||
|
||||
#: include/enotify.php:300
|
||||
msgid "[Friendica:Notify] Friend suggestion received"
|
||||
msgstr "[Friendica:Notification] Nouvelle suggestion d'amitié"
|
||||
|
||||
#: include/enotify.php:302
|
||||
#, php-format
|
||||
msgid "You've received a friend suggestion from '%1$s' at %2$s"
|
||||
msgstr "Vous avez reçu une suggestion de '%1$s' sur %2$s"
|
||||
|
||||
#: include/enotify.php:303
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
|
||||
msgstr "Vous avez reçu [url=%1$s]une suggestion[/url] de %3$s pour %2$s."
|
||||
|
||||
#: include/enotify.php:308
|
||||
msgid "Name:"
|
||||
msgstr "Nom :"
|
||||
|
||||
#: include/enotify.php:309
|
||||
msgid "Photo:"
|
||||
msgstr "Photo :"
|
||||
|
||||
#: include/enotify.php:312
|
||||
#, php-format
|
||||
msgid "Please visit %s to approve or reject the suggestion."
|
||||
msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion."
|
||||
|
||||
#: include/enotify.php:320 include/enotify.php:334
|
||||
msgid "[Friendica:Notify] Connection accepted"
|
||||
msgstr "[Friendica:Notification] Connexion acceptée"
|
||||
|
||||
#: include/enotify.php:322 include/enotify.php:336
|
||||
#, php-format
|
||||
msgid "'%1$s' has accepted your connection request at %2$s"
|
||||
msgstr "'%1$s' a accepté votre demande de connexion à %2$s"
|
||||
|
||||
#: include/enotify.php:323 include/enotify.php:337
|
||||
#, php-format
|
||||
msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
|
||||
msgstr "%2$s a accepté votre [url=%1$s]demande de connexion[/url]."
|
||||
|
||||
#: include/enotify.php:327
|
||||
msgid ""
|
||||
"You are now mutual friends and may exchange status updates, photos, and "
|
||||
"email without restriction."
|
||||
msgstr "Vous êtes désormais mutuellement amis, et pouvez échanger des mises-à-jour d'état, des photos, et des messages sans restriction."
|
||||
|
||||
#: include/enotify.php:329
|
||||
#, php-format
|
||||
msgid "Please visit %s if you wish to make any changes to this relationship."
|
||||
msgstr "Veuillez visiter %s si vous souhaitez modifier cette relation."
|
||||
|
||||
#: include/enotify.php:341
|
||||
#, php-format
|
||||
msgid ""
|
||||
"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
|
||||
"communication - such as private messaging and some profile interactions. If "
|
||||
"this is a celebrity or community page, these settings were applied "
|
||||
"automatically."
|
||||
msgstr "%1$s a choisi de vous accepter comme \"fan\", ce qui limite les moyens de communication - comme les messages privés et certaines interactions de profil. Si c'est une page de célébrité ou de communauté, ce réglage a été appliqué automatiquement."
|
||||
|
||||
#: include/enotify.php:343
|
||||
#, php-format
|
||||
msgid ""
|
||||
"'%1$s' may choose to extend this into a two-way or more permissive "
|
||||
"relationship in the future."
|
||||
msgstr "%1$s peut choisir à l'avenir de rendre cette relation réciproque ou au moins plus permissive."
|
||||
|
||||
#: include/enotify.php:345
|
||||
#, php-format
|
||||
msgid "Please visit %s if you wish to make any changes to this relationship."
|
||||
msgstr "Veuillez visiter %s si vous souhaitez modifier cette relation."
|
||||
|
||||
#: include/enotify.php:355
|
||||
msgid "[Friendica System:Notify] registration request"
|
||||
msgstr "[Système Friendica:Notification] demande d'inscription"
|
||||
|
||||
#: include/enotify.php:357
|
||||
#, php-format
|
||||
msgid "You've received a registration request from '%1$s' at %2$s"
|
||||
msgstr "Vous avez reçu une demande d'inscription de %1$s sur %2$s"
|
||||
|
||||
#: include/enotify.php:358
|
||||
#, php-format
|
||||
msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
|
||||
msgstr "%2$s vous a envoyé une [url=%1$s]demande de création de compte[/url]."
|
||||
|
||||
#: include/enotify.php:362
|
||||
#, php-format
|
||||
msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
|
||||
msgstr "Nom complet :\t%1$s\\nAdresse :\t%2$s\\nIdentifiant :\t%3$s (%4$s)"
|
||||
|
||||
#: include/enotify.php:365
|
||||
#, php-format
|
||||
msgid "Please visit %s to approve or reject the request."
|
||||
msgstr "Veuillez visiter %s pour approuver ou rejeter la demande."
|
||||
|
||||
#: include/event.php:444
|
||||
msgid "all-day"
|
||||
msgstr "toute la journée"
|
||||
|
||||
#: include/event.php:446
|
||||
msgid "Sun"
|
||||
msgstr "Dim"
|
||||
|
||||
#: include/event.php:447 include/text.php:1177
|
||||
msgid "Mon"
|
||||
msgstr "Lun"
|
||||
|
||||
#: include/event.php:448 include/text.php:1177
|
||||
msgid "Tue"
|
||||
msgstr "Mar"
|
||||
|
||||
#: include/event.php:449 include/text.php:1177
|
||||
msgid "Wed"
|
||||
msgstr "Mer"
|
||||
|
||||
#: include/event.php:450 include/text.php:1177
|
||||
msgid "Thu"
|
||||
msgstr "Jeu"
|
||||
|
||||
#: include/event.php:451 include/text.php:1177
|
||||
msgid "Fri"
|
||||
msgstr "Ven"
|
||||
|
||||
#: include/event.php:452 include/text.php:1177
|
||||
msgid "Sat"
|
||||
msgstr "Sam"
|
||||
|
||||
#: include/event.php:454 include/text.php:1159 mod/settings.php:988
|
||||
msgid "Sunday"
|
||||
msgstr "Dimanche"
|
||||
|
||||
#: include/event.php:455 include/text.php:1159 mod/settings.php:988
|
||||
msgid "Monday"
|
||||
msgstr "Lundi"
|
||||
|
||||
#: include/event.php:456 include/text.php:1159
|
||||
msgid "Tuesday"
|
||||
msgstr "Mardi"
|
||||
|
||||
#: include/event.php:457 include/text.php:1159
|
||||
msgid "Wednesday"
|
||||
msgstr "Mercredi"
|
||||
|
||||
#: include/event.php:458 include/text.php:1159
|
||||
msgid "Thursday"
|
||||
msgstr "Jeudi"
|
||||
|
||||
#: include/event.php:459 include/text.php:1159
|
||||
msgid "Friday"
|
||||
msgstr "Vendredi"
|
||||
|
||||
#: include/event.php:460 include/text.php:1159
|
||||
msgid "Saturday"
|
||||
msgstr "Samedi"
|
||||
|
||||
#: include/event.php:462 include/text.php:1180
|
||||
msgid "Jan"
|
||||
msgstr "Jan"
|
||||
|
||||
#: include/event.php:463 include/text.php:1180
|
||||
msgid "Feb"
|
||||
msgstr "Fév"
|
||||
|
||||
#: include/event.php:464 include/text.php:1180
|
||||
msgid "Mar"
|
||||
msgstr "Mar"
|
||||
|
||||
#: include/event.php:465 include/text.php:1180
|
||||
msgid "Apr"
|
||||
msgstr "Avr"
|
||||
|
||||
#: include/event.php:466 include/event.php:479 include/text.php:1163
|
||||
#: include/text.php:1180
|
||||
msgid "May"
|
||||
msgstr "Mai"
|
||||
|
||||
#: include/event.php:467
|
||||
msgid "Jun"
|
||||
msgstr "Jun"
|
||||
|
||||
#: include/event.php:468 include/text.php:1180
|
||||
msgid "Jul"
|
||||
msgstr "Jul"
|
||||
|
||||
#: include/event.php:469 include/text.php:1180
|
||||
msgid "Aug"
|
||||
msgstr "Aoû"
|
||||
|
||||
#: include/event.php:470
|
||||
msgid "Sept"
|
||||
msgstr "Sep"
|
||||
|
||||
#: include/event.php:471 include/text.php:1180
|
||||
msgid "Oct"
|
||||
msgstr "Oct"
|
||||
|
||||
#: include/event.php:472 include/text.php:1180
|
||||
msgid "Nov"
|
||||
msgstr "Nov"
|
||||
|
||||
#: include/event.php:473 include/text.php:1180
|
||||
msgid "Dec"
|
||||
msgstr "Déc"
|
||||
|
||||
#: include/event.php:475 include/text.php:1163
|
||||
msgid "January"
|
||||
msgstr "Janvier"
|
||||
|
||||
#: include/event.php:476 include/text.php:1163
|
||||
msgid "February"
|
||||
msgstr "Février"
|
||||
|
||||
#: include/event.php:477 include/text.php:1163
|
||||
msgid "March"
|
||||
msgstr "Mars"
|
||||
|
||||
#: include/event.php:478 include/text.php:1163
|
||||
msgid "April"
|
||||
msgstr "Avril"
|
||||
|
||||
#: include/event.php:480 include/text.php:1163
|
||||
msgid "June"
|
||||
msgstr "Juin"
|
||||
|
||||
#: include/event.php:481 include/text.php:1163
|
||||
msgid "July"
|
||||
msgstr "Juillet"
|
||||
|
||||
#: include/event.php:482 include/text.php:1163
|
||||
msgid "August"
|
||||
msgstr "Août"
|
||||
|
||||
#: include/event.php:483 include/text.php:1163
|
||||
msgid "September"
|
||||
msgstr "Septembre"
|
||||
|
||||
#: include/event.php:484 include/text.php:1163
|
||||
msgid "October"
|
||||
msgstr "Octobre"
|
||||
|
||||
#: include/event.php:485 include/text.php:1163
|
||||
msgid "November"
|
||||
msgstr "Novembre"
|
||||
|
||||
#: include/event.php:486 include/text.php:1163
|
||||
msgid "December"
|
||||
msgstr "Décembre"
|
||||
|
||||
#: include/event.php:488 mod/cal.php:284 mod/events.php:394
|
||||
msgid "today"
|
||||
msgstr "aujourd'hui"
|
||||
|
||||
#: include/event.php:493
|
||||
msgid "No events to display"
|
||||
msgstr "Pas d'événement à afficher"
|
||||
|
||||
#: include/event.php:607
|
||||
msgid "l, F j"
|
||||
msgstr "l, F j"
|
||||
|
||||
#: include/event.php:628
|
||||
msgid "Edit event"
|
||||
msgstr "Editer l'événement"
|
||||
|
||||
#: include/event.php:629
|
||||
msgid "Duplicate event"
|
||||
msgstr "Dupliquer l'événement"
|
||||
|
||||
#: include/event.php:630
|
||||
msgid "Delete event"
|
||||
msgstr "Supprimer l'événement"
|
||||
|
||||
#: include/event.php:657 include/text.php:1574 include/text.php:1581
|
||||
msgid "link to source"
|
||||
msgstr "lien original"
|
||||
|
||||
#: include/event.php:914
|
||||
msgid "Export"
|
||||
msgstr "Exporter"
|
||||
|
||||
#: include/event.php:915
|
||||
msgid "Export calendar as ical"
|
||||
msgstr "Exporter au format iCal"
|
||||
|
||||
#: include/event.php:916
|
||||
msgid "Export calendar as csv"
|
||||
msgstr "Exporter au format CSV"
|
||||
|
||||
#: include/event.php:933
|
||||
msgid "D g:i A"
|
||||
msgstr ""
|
||||
|
||||
#: include/Contact.php:781
|
||||
msgid "Forum"
|
||||
msgstr "Forum"
|
||||
|
||||
#: include/api.php:1018
|
||||
#, php-format
|
||||
msgid "Daily posting limit of %d posts reached. The post was rejected."
|
||||
msgstr "Le quota journalier de %d publications a été atteint. La publication a été rejetée."
|
||||
|
||||
#: include/api.php:1038
|
||||
#, php-format
|
||||
msgid "Weekly posting limit of %d posts reached. The post was rejected."
|
||||
msgstr "Le quota hebdomadaire de %d publications a été atteint. La publication a été rejetée."
|
||||
|
||||
#: include/api.php:1059
|
||||
#, php-format
|
||||
msgid "Monthly posting limit of %d posts reached. The post was rejected."
|
||||
msgstr "Le quota mensuel de %d publications a été atteint. La publication a été rejetée."
|
||||
|
||||
#: include/bbcode.php:350 include/bbcode.php:1057 include/bbcode.php:1058
|
||||
msgid "Image/photo"
|
||||
msgstr "Image/photo"
|
||||
|
||||
#: include/bbcode.php:467
|
||||
#, php-format
|
||||
msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
|
||||
msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
|
||||
|
||||
#: include/bbcode.php:1017 include/bbcode.php:1037
|
||||
msgid "$1 wrote:"
|
||||
msgstr "$1 a écrit:"
|
||||
|
||||
#: include/bbcode.php:1066 include/bbcode.php:1067
|
||||
msgid "Encrypted content"
|
||||
msgstr "Contenu chiffré"
|
||||
|
||||
#: include/bbcode.php:1169
|
||||
msgid "Invalid source protocol"
|
||||
#: include/event.php:934
|
||||
msgid "g:i A"
|
||||
msgstr ""
|
||||
|
||||
#: include/bbcode.php:1179
|
||||
msgid "Invalid link protocol"
|
||||
msgstr ""
|
||||
#: include/event.php:1003 include/event.php:1005
|
||||
msgid "Show map"
|
||||
msgstr "Montrer la carte"
|
||||
|
||||
#: include/conversation.php:147
|
||||
#, php-format
|
||||
msgid "%1$s attends %2$s's %3$s"
|
||||
msgstr "%1$s participe à %3$s de %2$s"
|
||||
#: include/event.php:1004
|
||||
msgid "Hide map"
|
||||
msgstr "Cacher la carte"
|
||||
|
||||
#: include/conversation.php:150
|
||||
#, php-format
|
||||
msgid "%1$s doesn't attend %2$s's %3$s"
|
||||
msgstr "%1$s ne participe pas à %3$s de %2$s"
|
||||
|
||||
#: include/conversation.php:153
|
||||
#, php-format
|
||||
msgid "%1$s attends maybe %2$s's %3$s"
|
||||
msgstr "%1$s participe peut-être à %3$s de %2$s"
|
||||
|
||||
#: include/conversation.php:185 mod/dfrn_confirm.php:477
|
||||
#, php-format
|
||||
msgid "%1$s is now friends with %2$s"
|
||||
msgstr "%1$s est désormais lié à %2$s"
|
||||
|
||||
#: include/conversation.php:219
|
||||
#, php-format
|
||||
msgid "%1$s poked %2$s"
|
||||
msgstr "%1$s a sollicité %2$s"
|
||||
|
||||
#: include/conversation.php:239 mod/mood.php:62
|
||||
#, php-format
|
||||
msgid "%1$s is currently %2$s"
|
||||
msgstr "%1$s est d'humeur %2$s"
|
||||
|
||||
#: include/conversation.php:278 mod/tagger.php:95
|
||||
#, php-format
|
||||
msgid "%1$s tagged %2$s's %3$s with %4$s"
|
||||
msgstr "%1$s a étiqueté %3$s de %2$s avec %4$s"
|
||||
|
||||
#: include/conversation.php:303
|
||||
msgid "post/item"
|
||||
msgstr "publication/élément"
|
||||
|
||||
#: include/conversation.php:304
|
||||
#, php-format
|
||||
msgid "%1$s marked %2$s's %3$s as favorite"
|
||||
msgstr "%1$s a marqué le %3$s de %2$s comme favori"
|
||||
|
||||
#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346
|
||||
#: mod/photos.php:1607
|
||||
msgid "Likes"
|
||||
msgstr "Derniers \"J'aime\""
|
||||
|
||||
#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350
|
||||
#: mod/photos.php:1607
|
||||
msgid "Dislikes"
|
||||
msgstr "Derniers \"Je n'aime pas\""
|
||||
|
||||
#: include/conversation.php:586 include/conversation.php:1481
|
||||
#: mod/content.php:373 mod/photos.php:1608
|
||||
msgid "Attending"
|
||||
msgid_plural "Attending"
|
||||
msgstr[0] "Participe"
|
||||
msgstr[1] "Participent"
|
||||
|
||||
#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
|
||||
msgid "Not attending"
|
||||
msgstr "Ne participe pas"
|
||||
|
||||
#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
|
||||
msgid "Might attend"
|
||||
msgstr "Participera peut-être"
|
||||
|
||||
#: include/conversation.php:708 mod/content.php:453 mod/content.php:758
|
||||
#: mod/photos.php:1681 object/Item.php:133
|
||||
msgid "Select"
|
||||
msgstr "Sélectionner"
|
||||
|
||||
#: include/conversation.php:709 mod/group.php:171 mod/content.php:454
|
||||
#: mod/content.php:759 mod/photos.php:1682 mod/settings.php:741
|
||||
#: mod/admin.php:1414 mod/contacts.php:808 mod/contacts.php:1007
|
||||
#: object/Item.php:134
|
||||
msgid "Delete"
|
||||
msgstr "Supprimer"
|
||||
|
||||
#: include/conversation.php:753 mod/content.php:487 mod/content.php:910
|
||||
#: mod/content.php:911 object/Item.php:367 object/Item.php:368
|
||||
#, php-format
|
||||
msgid "View %s's profile @ %s"
|
||||
msgstr "Voir le profil de %s @ %s"
|
||||
|
||||
#: include/conversation.php:765 object/Item.php:355
|
||||
msgid "Categories:"
|
||||
msgstr "Catégories:"
|
||||
|
||||
#: include/conversation.php:766 object/Item.php:356
|
||||
msgid "Filed under:"
|
||||
msgstr "Rangé sous:"
|
||||
|
||||
#: include/conversation.php:773 mod/content.php:497 mod/content.php:923
|
||||
#: object/Item.php:381
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr "%s de %s"
|
||||
|
||||
#: include/conversation.php:789 mod/content.php:513
|
||||
msgid "View in context"
|
||||
msgstr "Voir dans le contexte"
|
||||
|
||||
#: include/conversation.php:791 include/conversation.php:1264
|
||||
#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356
|
||||
#: mod/message.php:548 mod/content.php:515 mod/content.php:948
|
||||
#: mod/photos.php:1570 object/Item.php:406
|
||||
msgid "Please wait"
|
||||
msgstr "Patientez"
|
||||
|
||||
#: include/conversation.php:870
|
||||
msgid "remove"
|
||||
msgstr "enlever"
|
||||
|
||||
#: include/conversation.php:874
|
||||
msgid "Delete Selected Items"
|
||||
msgstr "Supprimer les éléments sélectionnés"
|
||||
|
||||
#: include/conversation.php:966
|
||||
msgid "Follow Thread"
|
||||
msgstr "Suivre le fil"
|
||||
|
||||
#: include/conversation.php:1097
|
||||
#, php-format
|
||||
msgid "%s likes this."
|
||||
msgstr "%s aime ça."
|
||||
|
||||
#: include/conversation.php:1100
|
||||
#, php-format
|
||||
msgid "%s doesn't like this."
|
||||
msgstr "%s n'aime pas ça."
|
||||
|
||||
#: include/conversation.php:1103
|
||||
#, php-format
|
||||
msgid "%s attends."
|
||||
msgstr "%s participe"
|
||||
|
||||
#: include/conversation.php:1106
|
||||
#, php-format
|
||||
msgid "%s doesn't attend."
|
||||
msgstr "%s ne participe pas"
|
||||
|
||||
#: include/conversation.php:1109
|
||||
#, php-format
|
||||
msgid "%s attends maybe."
|
||||
msgstr "%s participe peut-être"
|
||||
|
||||
#: include/conversation.php:1119
|
||||
msgid "and"
|
||||
msgstr "et"
|
||||
|
||||
#: include/conversation.php:1125
|
||||
#, php-format
|
||||
msgid ", and %d other people"
|
||||
msgstr ", et %d autres personnes"
|
||||
|
||||
#: include/conversation.php:1134
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> like this"
|
||||
msgstr "<span %1$s>%2$d personnes</span> aiment ça"
|
||||
|
||||
#: include/conversation.php:1135
|
||||
#, php-format
|
||||
msgid "%s like this."
|
||||
msgstr "%s aime ça."
|
||||
|
||||
#: include/conversation.php:1138
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> don't like this"
|
||||
msgstr "<span %1$s>%2$d personnes</span> n'aiment pas ça"
|
||||
|
||||
#: include/conversation.php:1139
|
||||
#, php-format
|
||||
msgid "%s don't like this."
|
||||
msgstr "%s n'aiment pas ça."
|
||||
|
||||
#: include/conversation.php:1142
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> attend"
|
||||
msgstr "<span %1$s>%2$d personnes</span> participent"
|
||||
|
||||
#: include/conversation.php:1143
|
||||
#, php-format
|
||||
msgid "%s attend."
|
||||
msgstr "%s participent."
|
||||
|
||||
#: include/conversation.php:1146
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> don't attend"
|
||||
msgstr "<span %1$s>%2$d personnes</span> ne participent pas"
|
||||
|
||||
#: include/conversation.php:1147
|
||||
#, php-format
|
||||
msgid "%s don't attend."
|
||||
msgstr "%s ne participent pas."
|
||||
|
||||
#: include/conversation.php:1150
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> attend maybe"
|
||||
msgstr "<span %1$s>%2$d personnes</span> vont peut-être participer"
|
||||
|
||||
#: include/conversation.php:1151
|
||||
#, php-format
|
||||
msgid "%s anttend maybe."
|
||||
msgstr "%s participent peut-être."
|
||||
|
||||
#: include/conversation.php:1190 include/conversation.php:1208
|
||||
msgid "Visible to <strong>everybody</strong>"
|
||||
msgstr "Visible par <strong>tout le monde</strong>"
|
||||
|
||||
#: include/conversation.php:1191 include/conversation.php:1209
|
||||
#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291
|
||||
#: mod/message.php:299 mod/message.php:442 mod/message.php:450
|
||||
msgid "Please enter a link URL:"
|
||||
msgstr "Entrez un lien web:"
|
||||
|
||||
#: include/conversation.php:1192 include/conversation.php:1210
|
||||
msgid "Please enter a video link/URL:"
|
||||
msgstr "Entrez un lien/URL video :"
|
||||
|
||||
#: include/conversation.php:1193 include/conversation.php:1211
|
||||
msgid "Please enter an audio link/URL:"
|
||||
msgstr "Entrez un lien/URL audio :"
|
||||
|
||||
#: include/conversation.php:1194 include/conversation.php:1212
|
||||
msgid "Tag term:"
|
||||
msgstr "Terme d'étiquette:"
|
||||
|
||||
#: include/conversation.php:1195 include/conversation.php:1213
|
||||
#: mod/filer.php:30
|
||||
msgid "Save to Folder:"
|
||||
msgstr "Sauver dans le Dossier:"
|
||||
|
||||
#: include/conversation.php:1196 include/conversation.php:1214
|
||||
msgid "Where are you right now?"
|
||||
msgstr "Où êtes-vous présentemment?"
|
||||
|
||||
#: include/conversation.php:1197
|
||||
msgid "Delete item(s)?"
|
||||
msgstr "Supprimer les élément(s) ?"
|
||||
|
||||
#: include/conversation.php:1245 mod/photos.php:1569
|
||||
msgid "Share"
|
||||
msgstr "Partager"
|
||||
|
||||
#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154
|
||||
#: mod/message.php:354 mod/message.php:545
|
||||
msgid "Upload photo"
|
||||
msgstr "Joindre photo"
|
||||
|
||||
#: include/conversation.php:1247 mod/editpost.php:111
|
||||
msgid "upload photo"
|
||||
msgstr "envoi image"
|
||||
|
||||
#: include/conversation.php:1248 mod/editpost.php:112
|
||||
msgid "Attach file"
|
||||
msgstr "Joindre fichier"
|
||||
|
||||
#: include/conversation.php:1249 mod/editpost.php:113
|
||||
msgid "attach file"
|
||||
msgstr "ajout fichier"
|
||||
|
||||
#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155
|
||||
#: mod/message.php:355 mod/message.php:546
|
||||
msgid "Insert web link"
|
||||
msgstr "Insérer lien web"
|
||||
|
||||
#: include/conversation.php:1251 mod/editpost.php:115
|
||||
msgid "web link"
|
||||
msgstr "lien web"
|
||||
|
||||
#: include/conversation.php:1252 mod/editpost.php:116
|
||||
msgid "Insert video link"
|
||||
msgstr "Insérer un lien video"
|
||||
|
||||
#: include/conversation.php:1253 mod/editpost.php:117
|
||||
msgid "video link"
|
||||
msgstr "lien vidéo"
|
||||
|
||||
#: include/conversation.php:1254 mod/editpost.php:118
|
||||
msgid "Insert audio link"
|
||||
msgstr "Insérer un lien audio"
|
||||
|
||||
#: include/conversation.php:1255 mod/editpost.php:119
|
||||
msgid "audio link"
|
||||
msgstr "lien audio"
|
||||
|
||||
#: include/conversation.php:1256 mod/editpost.php:120
|
||||
msgid "Set your location"
|
||||
msgstr "Définir votre localisation"
|
||||
|
||||
#: include/conversation.php:1257 mod/editpost.php:121
|
||||
msgid "set location"
|
||||
msgstr "spéc. localisation"
|
||||
|
||||
#: include/conversation.php:1258 mod/editpost.php:122
|
||||
msgid "Clear browser location"
|
||||
msgstr "Effacer la localisation du navigateur"
|
||||
|
||||
#: include/conversation.php:1259 mod/editpost.php:123
|
||||
msgid "clear location"
|
||||
msgstr "supp. localisation"
|
||||
|
||||
#: include/conversation.php:1261 mod/editpost.php:137
|
||||
msgid "Set title"
|
||||
msgstr "Définir un titre"
|
||||
|
||||
#: include/conversation.php:1263 mod/editpost.php:139
|
||||
msgid "Categories (comma-separated list)"
|
||||
msgstr "Catégories (séparées par des virgules)"
|
||||
|
||||
#: include/conversation.php:1265 mod/editpost.php:125
|
||||
msgid "Permission settings"
|
||||
msgstr "Réglages des permissions"
|
||||
|
||||
#: include/conversation.php:1266 mod/editpost.php:154
|
||||
msgid "permissions"
|
||||
msgstr "permissions"
|
||||
|
||||
#: include/conversation.php:1274 mod/editpost.php:134
|
||||
msgid "Public post"
|
||||
msgstr "Publication publique"
|
||||
|
||||
#: include/conversation.php:1279 mod/editpost.php:145 mod/content.php:737
|
||||
#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639
|
||||
#: mod/photos.php:1725 object/Item.php:729
|
||||
msgid "Preview"
|
||||
msgstr "Aperçu"
|
||||
|
||||
#: include/conversation.php:1283 include/items.php:1974 mod/fbrowser.php:101
|
||||
#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/editpost.php:148
|
||||
#: mod/message.php:220 mod/suggest.php:32 mod/photos.php:235
|
||||
#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705
|
||||
#: mod/videos.php:128 mod/contacts.php:445 mod/dfrn_request.php:876
|
||||
#: mod/follow.php:121
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#: include/conversation.php:1289
|
||||
msgid "Post to Groups"
|
||||
msgstr "Publier aux groupes"
|
||||
|
||||
#: include/conversation.php:1290
|
||||
msgid "Post to Contacts"
|
||||
msgstr "Publier aux contacts"
|
||||
|
||||
#: include/conversation.php:1291
|
||||
msgid "Private post"
|
||||
msgstr "Message privé"
|
||||
|
||||
#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152
|
||||
msgid "Message"
|
||||
msgstr "Message"
|
||||
|
||||
#: include/conversation.php:1297 mod/editpost.php:153
|
||||
msgid "Browser"
|
||||
msgstr "Navigateur"
|
||||
|
||||
#: include/conversation.php:1453
|
||||
msgid "View all"
|
||||
msgstr "Voir tout"
|
||||
|
||||
#: include/conversation.php:1475
|
||||
msgid "Like"
|
||||
msgid_plural "Likes"
|
||||
msgstr[0] "Like"
|
||||
msgstr[1] "Likes"
|
||||
|
||||
#: include/conversation.php:1478
|
||||
msgid "Dislike"
|
||||
msgid_plural "Dislikes"
|
||||
msgstr[0] "Dislike"
|
||||
msgstr[1] "Dislikes"
|
||||
|
||||
#: include/conversation.php:1484
|
||||
msgid "Not Attending"
|
||||
msgid_plural "Not Attending"
|
||||
msgstr[0] "Ne participe pas"
|
||||
msgstr[1] "Ne participent pas"
|
||||
|
||||
#: include/dfrn.php:1108
|
||||
#, php-format
|
||||
msgid "%s\\'s birthday"
|
||||
msgstr "Anniversaire de %s"
|
||||
|
||||
#: include/features.php:70
|
||||
#: include/features.php:68
|
||||
msgid "General Features"
|
||||
msgstr "Fonctions générales"
|
||||
|
||||
#: include/features.php:72
|
||||
#: include/features.php:70
|
||||
msgid "Multiple Profiles"
|
||||
msgstr "Profils multiples"
|
||||
|
||||
#: include/features.php:72
|
||||
#: include/features.php:70
|
||||
msgid "Ability to create multiple profiles"
|
||||
msgstr "Possibilité de créer plusieurs profils"
|
||||
|
||||
#: include/features.php:73
|
||||
#: include/features.php:71
|
||||
msgid "Photo Location"
|
||||
msgstr "Lieu de prise de la photo"
|
||||
|
||||
#: include/features.php:73
|
||||
#: include/features.php:71
|
||||
msgid ""
|
||||
"Photo metadata is normally stripped. This extracts the location (if present)"
|
||||
" prior to stripping metadata and links it to a map."
|
||||
msgstr "Les métadonnées des photos sont normalement retirées. Ceci permet de sauver l'emplacement (si présent) et de positionner la photo sur une carte."
|
||||
|
||||
#: include/features.php:74
|
||||
#: include/features.php:72
|
||||
msgid "Export Public Calendar"
|
||||
msgstr "Exporter le Calendrier Public"
|
||||
|
||||
#: include/features.php:74
|
||||
#: include/features.php:72
|
||||
msgid "Ability for visitors to download the public calendar"
|
||||
msgstr "Les visiteurs peuvent télécharger le calendrier public"
|
||||
|
||||
#: include/features.php:79
|
||||
#: include/features.php:77
|
||||
msgid "Post Composition Features"
|
||||
msgstr "Caractéristiques de composition de publication"
|
||||
|
||||
#: include/features.php:80
|
||||
msgid "Richtext Editor"
|
||||
msgstr "Éditeur de texte enrichi"
|
||||
|
||||
#: include/features.php:80
|
||||
msgid "Enable richtext editor"
|
||||
msgstr "Activer l'éditeur de texte enrichi"
|
||||
|
||||
#: include/features.php:81
|
||||
#: include/features.php:78
|
||||
msgid "Post Preview"
|
||||
msgstr "Aperçu de la publication"
|
||||
|
||||
#: include/features.php:81
|
||||
#: include/features.php:78
|
||||
msgid "Allow previewing posts and comments before publishing them"
|
||||
msgstr "Permet la prévisualisation des publications et commentaires avant de les publier"
|
||||
|
||||
#: include/features.php:82
|
||||
#: include/features.php:79
|
||||
msgid "Auto-mention Forums"
|
||||
msgstr "Mentionner automatiquement les Forums"
|
||||
|
||||
#: include/features.php:82
|
||||
#: include/features.php:79
|
||||
msgid ""
|
||||
"Add/remove mention when a forum page is selected/deselected in ACL window."
|
||||
msgstr "Ajoute/retire une mention quand une page forum est sélectionnée/désélectionnée lors du choix des destinataires d'une publication."
|
||||
|
||||
#: include/features.php:87
|
||||
#: include/features.php:84
|
||||
msgid "Network Sidebar Widgets"
|
||||
msgstr "Widgets réseau pour barre latérale"
|
||||
|
||||
#: include/features.php:88
|
||||
#: include/features.php:85
|
||||
msgid "Search by Date"
|
||||
msgstr "Rechercher par Date"
|
||||
|
||||
#: include/features.php:88
|
||||
#: include/features.php:85
|
||||
msgid "Ability to select posts by date ranges"
|
||||
msgstr "Capacité de sélectionner les publications par intervalles de dates"
|
||||
|
||||
#: include/features.php:89 include/features.php:119
|
||||
#: include/features.php:86 include/features.php:116
|
||||
msgid "List Forums"
|
||||
msgstr "Liste des forums"
|
||||
|
||||
#: include/features.php:89
|
||||
#: include/features.php:86
|
||||
msgid "Enable widget to display the forums your are connected with"
|
||||
msgstr "Activer le widget pour afficher les forums auxquels vous êtes connecté"
|
||||
|
||||
#: include/features.php:90
|
||||
#: include/features.php:87
|
||||
msgid "Group Filter"
|
||||
msgstr "Filtre de groupe"
|
||||
|
||||
#: include/features.php:90
|
||||
#: include/features.php:87
|
||||
msgid "Enable widget to display Network posts only from selected group"
|
||||
msgstr "Activer le widget d’affichage des publications du réseau seulement pour le groupe sélectionné"
|
||||
|
||||
#: include/features.php:91
|
||||
#: include/features.php:88
|
||||
msgid "Network Filter"
|
||||
msgstr "Filtre de réseau"
|
||||
|
||||
#: include/features.php:91
|
||||
#: include/features.php:88
|
||||
msgid "Enable widget to display Network posts only from selected network"
|
||||
msgstr "Activer le widget d’affichage des publications du réseau seulement pour le réseau sélectionné"
|
||||
|
||||
#: include/features.php:92 mod/search.php:34 mod/network.php:200
|
||||
#: include/features.php:89 mod/network.php:202 mod/search.php:40
|
||||
msgid "Saved Searches"
|
||||
msgstr "Recherches"
|
||||
|
||||
#: include/features.php:92
|
||||
#: include/features.php:89
|
||||
msgid "Save search terms for re-use"
|
||||
msgstr "Sauvegarder la recherche pour une utilisation ultérieure"
|
||||
|
||||
#: include/features.php:97
|
||||
#: include/features.php:94
|
||||
msgid "Network Tabs"
|
||||
msgstr "Onglets Réseau"
|
||||
|
||||
#: include/features.php:98
|
||||
#: include/features.php:95
|
||||
msgid "Network Personal Tab"
|
||||
msgstr "Onglet Réseau Personnel"
|
||||
|
||||
#: include/features.php:98
|
||||
#: include/features.php:95
|
||||
msgid "Enable tab to display only Network posts that you've interacted on"
|
||||
msgstr "Activer l'onglet pour afficher seulement les publications du réseau où vous avez interagit"
|
||||
|
||||
#: include/features.php:99
|
||||
#: include/features.php:96
|
||||
msgid "Network New Tab"
|
||||
msgstr "Nouvel onglet réseaux"
|
||||
|
||||
#: include/features.php:99
|
||||
#: include/features.php:96
|
||||
msgid "Enable tab to display only new Network posts (from the last 12 hours)"
|
||||
msgstr "Activer l'onglet pour afficher seulement les publications du réseau (dans les 12 dernières heures)"
|
||||
|
||||
#: include/features.php:100
|
||||
#: include/features.php:97
|
||||
msgid "Network Shared Links Tab"
|
||||
msgstr "Onglet réseau partagé"
|
||||
|
||||
#: include/features.php:100
|
||||
#: include/features.php:97
|
||||
msgid "Enable tab to display only Network posts with links in them"
|
||||
msgstr "Activer l'onglet pour afficher seulement les publications du réseau contenant des liens"
|
||||
|
||||
#: include/features.php:105
|
||||
#: include/features.php:102
|
||||
msgid "Post/Comment Tools"
|
||||
msgstr "outils de publication/commentaire"
|
||||
msgstr "Outils de publication/commentaire"
|
||||
|
||||
#: include/features.php:106
|
||||
#: include/features.php:103
|
||||
msgid "Multiple Deletion"
|
||||
msgstr "Suppression multiple"
|
||||
|
||||
#: include/features.php:106
|
||||
#: include/features.php:103
|
||||
msgid "Select and delete multiple posts/comments at once"
|
||||
msgstr "Sélectionner et supprimer plusieurs publications/commentaires à la fois"
|
||||
|
||||
#: include/features.php:107
|
||||
#: include/features.php:104
|
||||
msgid "Edit Sent Posts"
|
||||
msgstr "Éditer les publications envoyées"
|
||||
|
||||
#: include/features.php:107
|
||||
#: include/features.php:104
|
||||
msgid "Edit and correct posts and comments after sending"
|
||||
msgstr "Éditer et corriger les publications et commentaires après l'envoi"
|
||||
|
||||
#: include/features.php:108
|
||||
#: include/features.php:105
|
||||
msgid "Tagging"
|
||||
msgstr "Étiquettage"
|
||||
|
||||
#: include/features.php:108
|
||||
#: include/features.php:105
|
||||
msgid "Ability to tag existing posts"
|
||||
msgstr "Possibilité d'étiqueter les publications existantes"
|
||||
|
||||
#: include/features.php:109
|
||||
#: include/features.php:106
|
||||
msgid "Post Categories"
|
||||
msgstr "Catégories des publications"
|
||||
|
||||
#: include/features.php:109
|
||||
#: include/features.php:106
|
||||
msgid "Add categories to your posts"
|
||||
msgstr "Ajouter des catégories à vos publications"
|
||||
|
||||
#: include/features.php:110
|
||||
#: include/features.php:107
|
||||
msgid "Ability to file posts under folders"
|
||||
msgstr "Possibilité d'afficher les publications sous les répertoires"
|
||||
|
||||
#: include/features.php:111
|
||||
#: include/features.php:108
|
||||
msgid "Dislike Posts"
|
||||
msgstr "Publications non aimées"
|
||||
|
||||
#: include/features.php:111
|
||||
#: include/features.php:108
|
||||
msgid "Ability to dislike posts/comments"
|
||||
msgstr "Possibilité de ne pas aimer les publications/commentaires"
|
||||
|
||||
#: include/features.php:112
|
||||
#: include/features.php:109
|
||||
msgid "Star Posts"
|
||||
msgstr "Publications spéciales"
|
||||
|
||||
#: include/features.php:112
|
||||
#: include/features.php:109
|
||||
msgid "Ability to mark special posts with a star indicator"
|
||||
msgstr "Possibilité de marquer les publications spéciales d'une étoile"
|
||||
|
||||
#: include/features.php:113
|
||||
#: include/features.php:110
|
||||
msgid "Mute Post Notifications"
|
||||
msgstr "Ignorer les notifications du post"
|
||||
|
||||
#: include/features.php:113
|
||||
#: include/features.php:110
|
||||
msgid "Ability to mute notifications for a thread"
|
||||
msgstr "Permettre d'ignorer les notifications d'un fil de discussion"
|
||||
|
||||
#: include/features.php:118
|
||||
#: include/features.php:115
|
||||
msgid "Advanced Profile Settings"
|
||||
msgstr "Paramètres Avancés du Profil"
|
||||
|
||||
#: include/features.php:119
|
||||
#: include/features.php:116
|
||||
msgid "Show visitors public community forums at the Advanced Profile Page"
|
||||
msgstr "Montrer les forums communautaires aux visiteurs sur la Page de profil avancé"
|
||||
|
||||
#: include/follow.php:81 mod/dfrn_request.php:509
|
||||
#: include/features.php:117
|
||||
msgid "Tag Cloud"
|
||||
msgstr ""
|
||||
|
||||
#: include/features.php:117
|
||||
msgid "Provide a personal tag cloud on your profile page"
|
||||
msgstr ""
|
||||
|
||||
#: include/follow.php:90 mod/dfrn_request.php:517
|
||||
msgid "Disallowed profile URL."
|
||||
msgstr "URL de profil interdite."
|
||||
|
||||
#: include/follow.php:86
|
||||
#: include/follow.php:95 mod/admin.php:292 mod/admin.php:310
|
||||
#: mod/dfrn_request.php:523 mod/friendica.php:117
|
||||
msgid "Blocked domain"
|
||||
msgstr "Domaine bloqué"
|
||||
|
||||
#: include/follow.php:100
|
||||
msgid "Connect URL missing."
|
||||
msgstr "URL de connexion manquante."
|
||||
|
||||
#: include/follow.php:113
|
||||
#: include/follow.php:132
|
||||
msgid ""
|
||||
"This site is not configured to allow communications with other networks."
|
||||
msgstr "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux."
|
||||
|
||||
#: include/follow.php:114 include/follow.php:134
|
||||
#: include/follow.php:133 include/follow.php:147
|
||||
msgid "No compatible communication protocols or feeds were discovered."
|
||||
msgstr "Aucun protocole de communication ni aucun flux n'a pu être découvert."
|
||||
|
||||
#: include/follow.php:132
|
||||
#: include/follow.php:145
|
||||
msgid "The profile address specified does not provide adequate information."
|
||||
msgstr "L'adresse de profil indiquée ne fournit par les informations adéquates."
|
||||
|
||||
#: include/follow.php:136
|
||||
#: include/follow.php:150
|
||||
msgid "An author or name was not found."
|
||||
msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé."
|
||||
|
||||
#: include/follow.php:138
|
||||
#: include/follow.php:153
|
||||
msgid "No browser URL could be matched to this address."
|
||||
msgstr "Aucune URL de navigation ne correspond à cette adresse."
|
||||
|
||||
#: include/follow.php:140
|
||||
#: include/follow.php:156
|
||||
msgid ""
|
||||
"Unable to match @-style Identity Address with a known protocol or email "
|
||||
"contact."
|
||||
msgstr "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel."
|
||||
|
||||
#: include/follow.php:141
|
||||
#: include/follow.php:157
|
||||
msgid "Use mailto: in front of address to force email check."
|
||||
msgstr "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel."
|
||||
|
||||
#: include/follow.php:147
|
||||
#: include/follow.php:163
|
||||
msgid ""
|
||||
"The profile address specified belongs to a network which has been disabled "
|
||||
"on this site."
|
||||
msgstr "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site."
|
||||
|
||||
#: include/follow.php:157
|
||||
#: include/follow.php:168
|
||||
msgid ""
|
||||
"Limited profile. This person will be unable to receive direct/personal "
|
||||
"notifications from you."
|
||||
msgstr "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part."
|
||||
|
||||
#: include/follow.php:258
|
||||
#: include/follow.php:239
|
||||
msgid "Unable to retrieve contact information."
|
||||
msgstr "Impossible de récupérer les informations du contact."
|
||||
|
||||
#: include/identity.php:42
|
||||
#: include/group.php:27
|
||||
msgid ""
|
||||
"A deleted group with this name was revived. Existing item permissions "
|
||||
"<strong>may</strong> apply to this group and any future members. If this is "
|
||||
"not what you intended, please create another group with a different name."
|
||||
msgstr "Un groupe supprimé a été recréé. Les permissions existantes <strong>pourraient</strong> s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom."
|
||||
|
||||
#: include/group.php:199
|
||||
msgid "Default privacy group for new contacts"
|
||||
msgstr "Paramètres de confidentialité par défaut pour les nouveaux contacts"
|
||||
|
||||
#: include/group.php:232
|
||||
msgid "Everybody"
|
||||
msgstr "Tout le monde"
|
||||
|
||||
#: include/group.php:255
|
||||
msgid "edit"
|
||||
msgstr "éditer"
|
||||
|
||||
#: include/group.php:276 mod/newmember.php:40
|
||||
msgid "Groups"
|
||||
msgstr "Groupes"
|
||||
|
||||
#: include/group.php:278
|
||||
msgid "Edit groups"
|
||||
msgstr "Modifier les groupes"
|
||||
|
||||
#: include/group.php:280
|
||||
msgid "Edit group"
|
||||
msgstr "Editer groupe"
|
||||
|
||||
#: include/group.php:281
|
||||
msgid "Create a new group"
|
||||
msgstr "Créer un nouveau groupe"
|
||||
|
||||
#: include/group.php:282 mod/group.php:101 mod/group.php:198
|
||||
msgid "Group Name: "
|
||||
msgstr "Nom du groupe : "
|
||||
|
||||
#: include/group.php:284
|
||||
msgid "Contacts not in any group"
|
||||
msgstr "Contacts n'appartenant à aucun groupe"
|
||||
|
||||
#: include/group.php:286 mod/network.php:203
|
||||
msgid "add"
|
||||
msgstr "ajouter"
|
||||
|
||||
#: include/identity.php:52
|
||||
msgid "Requested account is not available."
|
||||
msgstr "Le compte demandé n'est pas disponible."
|
||||
|
||||
#: include/identity.php:51 mod/profile.php:21
|
||||
#: include/identity.php:61 mod/profile.php:26
|
||||
msgid "Requested profile is not available."
|
||||
msgstr "Le profil demandé n'est pas disponible."
|
||||
|
||||
#: include/identity.php:95 include/identity.php:311 include/identity.php:688
|
||||
#: include/identity.php:110 include/identity.php:340 include/identity.php:798
|
||||
msgid "Edit profile"
|
||||
msgstr "Editer le profil"
|
||||
|
||||
#: include/identity.php:251
|
||||
#: include/identity.php:278
|
||||
msgid "Atom feed"
|
||||
msgstr "Flux Atom"
|
||||
|
||||
#: include/identity.php:282
|
||||
#: include/identity.php:313 include/nav.php:194
|
||||
msgid "Profiles"
|
||||
msgstr "Profils"
|
||||
|
||||
#: include/identity.php:313
|
||||
msgid "Manage/edit profiles"
|
||||
msgstr "Gérer/éditer les profils"
|
||||
|
||||
#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795
|
||||
#: include/identity.php:320 include/identity.php:342 mod/profiles.php:789
|
||||
msgid "Change profile photo"
|
||||
msgstr "Changer de photo de profil"
|
||||
|
||||
#: include/identity.php:288 mod/profiles.php:796
|
||||
#: include/identity.php:321 mod/profiles.php:790
|
||||
msgid "Create New Profile"
|
||||
msgstr "Créer un nouveau profil"
|
||||
|
||||
#: include/identity.php:298 mod/profiles.php:785
|
||||
#: include/identity.php:330 mod/profiles.php:779
|
||||
msgid "Profile Image"
|
||||
msgstr "Image du profil"
|
||||
|
||||
#: include/identity.php:301 mod/profiles.php:787
|
||||
#: include/identity.php:333 mod/profiles.php:781
|
||||
msgid "visible to everybody"
|
||||
msgstr "visible par tous"
|
||||
|
||||
#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788
|
||||
#: include/identity.php:334 mod/profiles.php:687 mod/profiles.php:782
|
||||
msgid "Edit visibility"
|
||||
msgstr "Changer la visibilité"
|
||||
|
||||
#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238
|
||||
#: mod/directory.php:139
|
||||
#: include/identity.php:361 include/identity.php:686 mod/directory.php:138
|
||||
#: mod/notifications.php:254
|
||||
msgid "Gender:"
|
||||
msgstr "Genre:"
|
||||
msgstr "Genre :"
|
||||
|
||||
#: include/identity.php:333 include/identity.php:636 mod/directory.php:141
|
||||
#: include/identity.php:364 include/identity.php:708 mod/directory.php:140
|
||||
msgid "Status:"
|
||||
msgstr "Statut:"
|
||||
msgstr "Statut :"
|
||||
|
||||
#: include/identity.php:335 include/identity.php:647 mod/directory.php:143
|
||||
#: include/identity.php:366 include/identity.php:725 mod/directory.php:142
|
||||
msgid "Homepage:"
|
||||
msgstr "Page personnelle:"
|
||||
msgstr "Page personnelle :"
|
||||
|
||||
#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234
|
||||
#: mod/directory.php:145 mod/contacts.php:632
|
||||
#: include/identity.php:368 include/identity.php:745 mod/contacts.php:670
|
||||
#: mod/directory.php:144 mod/notifications.php:250
|
||||
msgid "About:"
|
||||
msgstr "À propos:"
|
||||
msgstr "À propos :"
|
||||
|
||||
#: include/identity.php:339 mod/contacts.php:630
|
||||
#: include/identity.php:370 mod/contacts.php:668
|
||||
msgid "XMPP:"
|
||||
msgstr ""
|
||||
msgstr "XMPP"
|
||||
|
||||
#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50
|
||||
#: include/identity.php:464 mod/contacts.php:60 mod/notifications.php:262
|
||||
msgid "Network:"
|
||||
msgstr "Réseau"
|
||||
|
||||
#: include/identity.php:451 include/identity.php:535
|
||||
#: include/identity.php:496 include/identity.php:594
|
||||
msgid "g A l F d"
|
||||
msgstr "g A | F d"
|
||||
|
||||
#: include/identity.php:452 include/identity.php:536
|
||||
#: include/identity.php:497 include/identity.php:595
|
||||
msgid "F d"
|
||||
msgstr "F d"
|
||||
|
||||
#: include/identity.php:497 include/identity.php:582
|
||||
#: include/identity.php:554 include/identity.php:643
|
||||
msgid "[today]"
|
||||
msgstr "[aujourd'hui]"
|
||||
|
||||
#: include/identity.php:509
|
||||
#: include/identity.php:567
|
||||
msgid "Birthday Reminders"
|
||||
msgstr "Rappels d'anniversaires"
|
||||
|
||||
#: include/identity.php:510
|
||||
#: include/identity.php:568
|
||||
msgid "Birthdays this week:"
|
||||
msgstr "Anniversaires cette semaine:"
|
||||
msgstr "Anniversaires cette semaine :"
|
||||
|
||||
#: include/identity.php:569
|
||||
#: include/identity.php:630
|
||||
msgid "[No description]"
|
||||
msgstr "[Sans description]"
|
||||
|
||||
#: include/identity.php:593
|
||||
#: include/identity.php:659
|
||||
msgid "Event Reminders"
|
||||
msgstr "Rappels d'événements"
|
||||
|
||||
#: include/identity.php:594
|
||||
#: include/identity.php:660
|
||||
msgid "Events this week:"
|
||||
msgstr "Evénements cette semaine :"
|
||||
|
||||
#: include/identity.php:614 mod/settings.php:1279
|
||||
msgid "Full Name:"
|
||||
msgstr "Nom complet:"
|
||||
#: include/identity.php:674 include/identity.php:804 include/identity.php:839
|
||||
#: include/nav.php:87 mod/contacts.php:677 mod/contacts.php:879
|
||||
#: mod/newmember.php:21 mod/profperm.php:108 view/theme/frio/theme.php:257
|
||||
msgid "Profile"
|
||||
msgstr "Profil"
|
||||
|
||||
#: include/identity.php:621
|
||||
#: include/identity.php:683 mod/settings.php:1270
|
||||
msgid "Full Name:"
|
||||
msgstr "Nom complet :"
|
||||
|
||||
#: include/identity.php:690
|
||||
msgid "j F, Y"
|
||||
msgstr "j F, Y"
|
||||
|
||||
#: include/identity.php:622
|
||||
#: include/identity.php:691
|
||||
msgid "j F"
|
||||
msgstr "j F"
|
||||
|
||||
#: include/identity.php:633
|
||||
#: include/identity.php:704
|
||||
msgid "Age:"
|
||||
msgstr "Age:"
|
||||
msgstr "Age :"
|
||||
|
||||
#: include/identity.php:642
|
||||
#: include/identity.php:717
|
||||
#, php-format
|
||||
msgid "for %1$d %2$s"
|
||||
msgstr "depuis %1$d %2$s"
|
||||
|
||||
#: include/identity.php:645 mod/profiles.php:710
|
||||
#: include/identity.php:721 mod/profiles.php:706
|
||||
msgid "Sexual Preference:"
|
||||
msgstr "Préférence sexuelle:"
|
||||
msgstr "Préférence sexuelle :"
|
||||
|
||||
#: include/identity.php:649 mod/profiles.php:737
|
||||
#: include/identity.php:729 mod/profiles.php:733
|
||||
msgid "Hometown:"
|
||||
msgstr " Ville d'origine:"
|
||||
msgstr " Ville d'origine :"
|
||||
|
||||
#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634
|
||||
#: mod/follow.php:134
|
||||
#: include/identity.php:733 mod/contacts.php:672 mod/follow.php:175
|
||||
#: mod/notifications.php:252
|
||||
msgid "Tags:"
|
||||
msgstr "Étiquette:"
|
||||
msgstr "Étiquette :"
|
||||
|
||||
#: include/identity.php:653 mod/profiles.php:738
|
||||
#: include/identity.php:737 mod/profiles.php:734
|
||||
msgid "Political Views:"
|
||||
msgstr "Opinions politiques:"
|
||||
msgstr "Opinions politiques :"
|
||||
|
||||
#: include/identity.php:655
|
||||
#: include/identity.php:741
|
||||
msgid "Religion:"
|
||||
msgstr "Religion:"
|
||||
msgstr "Religion :"
|
||||
|
||||
#: include/identity.php:659
|
||||
#: include/identity.php:749
|
||||
msgid "Hobbies/Interests:"
|
||||
msgstr "Passe-temps/Centres d'intérêt:"
|
||||
msgstr "Passe-temps/Centres d'intérêt :"
|
||||
|
||||
#: include/identity.php:661 mod/profiles.php:742
|
||||
#: include/identity.php:753 mod/profiles.php:738
|
||||
msgid "Likes:"
|
||||
msgstr "J'aime :"
|
||||
|
||||
#: include/identity.php:663 mod/profiles.php:743
|
||||
#: include/identity.php:757 mod/profiles.php:739
|
||||
msgid "Dislikes:"
|
||||
msgstr "Je n'aime pas :"
|
||||
|
||||
#: include/identity.php:666
|
||||
#: include/identity.php:761
|
||||
msgid "Contact information and Social Networks:"
|
||||
msgstr "Coordonnées/Réseaux sociaux:"
|
||||
msgstr "Coordonnées/Réseaux sociaux :"
|
||||
|
||||
#: include/identity.php:668
|
||||
#: include/identity.php:765
|
||||
msgid "Musical interests:"
|
||||
msgstr "Goûts musicaux:"
|
||||
msgstr "Goûts musicaux :"
|
||||
|
||||
#: include/identity.php:670
|
||||
#: include/identity.php:769
|
||||
msgid "Books, literature:"
|
||||
msgstr "Lectures:"
|
||||
msgstr "Lectures :"
|
||||
|
||||
#: include/identity.php:672
|
||||
#: include/identity.php:773
|
||||
msgid "Television:"
|
||||
msgstr "Télévision:"
|
||||
msgstr "Télévision :"
|
||||
|
||||
#: include/identity.php:674
|
||||
#: include/identity.php:777
|
||||
msgid "Film/dance/culture/entertainment:"
|
||||
msgstr "Cinéma/Danse/Culture/Divertissement:"
|
||||
msgstr "Cinéma/Danse/Culture/Divertissement :"
|
||||
|
||||
#: include/identity.php:676
|
||||
#: include/identity.php:781
|
||||
msgid "Love/Romance:"
|
||||
msgstr "Amour/Romance:"
|
||||
msgstr "Amour/Romance :"
|
||||
|
||||
#: include/identity.php:678
|
||||
#: include/identity.php:785
|
||||
msgid "Work/employment:"
|
||||
msgstr "Activité professionnelle/Occupation:"
|
||||
msgstr "Activité professionnelle/Occupation :"
|
||||
|
||||
#: include/identity.php:680
|
||||
#: include/identity.php:789
|
||||
msgid "School/education:"
|
||||
msgstr "Études/Formation:"
|
||||
msgstr "Études/Formation :"
|
||||
|
||||
#: include/identity.php:684
|
||||
#: include/identity.php:794
|
||||
msgid "Forums:"
|
||||
msgstr "Forums :"
|
||||
|
||||
#: include/identity.php:692 mod/events.php:507
|
||||
#: include/identity.php:805 mod/events.php:532
|
||||
msgid "Basic"
|
||||
msgstr "Simple"
|
||||
|
||||
#: include/identity.php:693 mod/events.php:508 mod/admin.php:959
|
||||
#: mod/contacts.php:870
|
||||
#: include/identity.php:806 mod/admin.php:1183 mod/contacts.php:908
|
||||
#: mod/events.php:533
|
||||
msgid "Advanced"
|
||||
msgstr "Avancé"
|
||||
|
||||
#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:142
|
||||
#: include/identity.php:831 include/nav.php:86 mod/contacts.php:675
|
||||
#: mod/contacts.php:871 view/theme/frio/theme.php:256
|
||||
msgid "Status"
|
||||
msgstr "Statut"
|
||||
|
||||
#: include/identity.php:834 mod/contacts.php:874 mod/follow.php:183
|
||||
#: mod/unfollow.php:132
|
||||
msgid "Status Messages and Posts"
|
||||
msgstr "Messages d'état et publications"
|
||||
|
||||
#: include/identity.php:725 mod/contacts.php:844
|
||||
#: include/identity.php:842 mod/contacts.php:882
|
||||
msgid "Profile Details"
|
||||
msgstr "Détails du profil"
|
||||
|
||||
#: include/identity.php:733 mod/photos.php:87
|
||||
#: include/identity.php:847 include/nav.php:88 mod/fbrowser.php:34
|
||||
#: view/theme/frio/theme.php:258
|
||||
msgid "Photos"
|
||||
msgstr "Photos"
|
||||
|
||||
#: include/identity.php:850 mod/photos.php:99
|
||||
msgid "Photo Albums"
|
||||
msgstr "Albums photo"
|
||||
|
||||
#: include/identity.php:772 mod/notes.php:46
|
||||
#: include/identity.php:855 include/identity.php:858 include/nav.php:89
|
||||
#: view/theme/frio/theme.php:259
|
||||
msgid "Videos"
|
||||
msgstr "Vidéos"
|
||||
|
||||
#: include/identity.php:867 include/identity.php:878 include/nav.php:90
|
||||
#: include/nav.php:154 mod/cal.php:276 mod/events.php:385
|
||||
#: view/theme/frio/theme.php:260 view/theme/frio/theme.php:264
|
||||
msgid "Events"
|
||||
msgstr "Événements"
|
||||
|
||||
#: include/identity.php:870 include/identity.php:881 include/nav.php:154
|
||||
#: view/theme/frio/theme.php:264
|
||||
msgid "Events and Calendar"
|
||||
msgstr "Événements et agenda"
|
||||
|
||||
#: include/identity.php:889 mod/notes.php:50
|
||||
msgid "Personal Notes"
|
||||
msgstr "Notes personnelles"
|
||||
|
||||
#: include/identity.php:775
|
||||
#: include/identity.php:892
|
||||
msgid "Only You Can See This"
|
||||
msgstr "Vous seul pouvez voir ça"
|
||||
|
||||
#: include/items.php:1575 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746
|
||||
#: include/identity.php:900 include/identity.php:903 include/nav.php:133
|
||||
#: include/nav.php:197 include/text.php:1056 mod/contacts.php:830
|
||||
#: mod/contacts.php:891 mod/viewcontacts.php:126 view/theme/frio/theme.php:267
|
||||
msgid "Contacts"
|
||||
msgstr "Contacts"
|
||||
|
||||
#: include/items.php:1731 mod/dfrn_confirm.php:742 mod/dfrn_request.php:762
|
||||
msgid "[Name Withheld]"
|
||||
msgstr "[Nom non-publié]"
|
||||
|
||||
#: include/items.php:1930 mod/viewsrc.php:15 mod/notice.php:15
|
||||
#: mod/display.php:103 mod/display.php:279 mod/display.php:478
|
||||
#: mod/admin.php:234 mod/admin.php:1471 mod/admin.php:1705
|
||||
#: include/items.php:2100 mod/admin.php:260 mod/admin.php:1687
|
||||
#: mod/admin.php:1938 mod/display.php:108 mod/display.php:279
|
||||
#: mod/display.php:487 mod/notice.php:19 mod/viewsrc.php:17
|
||||
msgid "Item not found."
|
||||
msgstr "Élément introuvable."
|
||||
|
||||
#: include/items.php:1969
|
||||
#: include/items.php:2143
|
||||
msgid "Do you really want to delete this item?"
|
||||
msgstr "Voulez-vous vraiment supprimer cet élément ?"
|
||||
|
||||
#: include/items.php:1971 mod/api.php:105 mod/message.php:217
|
||||
#: mod/profiles.php:648 mod/profiles.php:651 mod/profiles.php:677
|
||||
#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163
|
||||
#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181
|
||||
#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198
|
||||
#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231
|
||||
#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
|
||||
#: mod/contacts.php:442 mod/dfrn_request.php:862 mod/follow.php:110
|
||||
#: include/items.php:2145 mod/api.php:109 mod/contacts.php:467
|
||||
#: mod/dfrn_request.php:883 mod/follow.php:151 mod/message.php:209
|
||||
#: mod/profiles.php:643 mod/profiles.php:646 mod/profiles.php:673
|
||||
#: mod/register.php:252 mod/settings.php:1155 mod/settings.php:1161
|
||||
#: mod/settings.php:1168 mod/settings.php:1172 mod/settings.php:1177
|
||||
#: mod/settings.php:1182 mod/settings.php:1187 mod/settings.php:1192
|
||||
#: mod/settings.php:1218 mod/settings.php:1219 mod/settings.php:1220
|
||||
#: mod/settings.php:1221 mod/settings.php:1222 mod/suggest.php:36
|
||||
msgid "Yes"
|
||||
msgstr "Oui"
|
||||
|
||||
#: include/items.php:2134 mod/notes.php:22 mod/uimport.php:23
|
||||
#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101
|
||||
#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33
|
||||
#: mod/editpost.php:10 mod/group.php:19 mod/wallmessage.php:9
|
||||
#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103
|
||||
#: mod/api.php:26 mod/api.php:31 mod/ostatus_subscribe.php:9
|
||||
#: mod/message.php:46 mod/message.php:182 mod/manage.php:96
|
||||
#: mod/crepair.php:100 mod/fsuggest.php:78 mod/mood.php:114 mod/poke.php:150
|
||||
#: mod/profile_photo.php:19 mod/profile_photo.php:175
|
||||
#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110
|
||||
#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605
|
||||
#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18 mod/dirfind.php:11
|
||||
#: mod/display.php:475 mod/events.php:190 mod/suggest.php:58
|
||||
#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42
|
||||
#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665
|
||||
#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wall_upload.php:77
|
||||
#: mod/wall_upload.php:80 mod/contacts.php:350 mod/dfrn_confirm.php:61
|
||||
#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/item.php:199
|
||||
#: mod/item.php:211 mod/network.php:4 mod/viewcontacts.php:45 index.php:401
|
||||
#: include/items.php:2272 mod/allfriends.php:18 mod/api.php:30 mod/api.php:35
|
||||
#: mod/attach.php:36 mod/cal.php:305 mod/common.php:23 mod/contacts.php:375
|
||||
#: mod/crepair.php:108 mod/delegate.php:16 mod/dfrn_confirm.php:69
|
||||
#: mod/dirfind.php:21 mod/display.php:484 mod/editpost.php:15
|
||||
#: mod/events.php:192 mod/follow.php:15 mod/follow.php:56 mod/follow.php:119
|
||||
#: mod/fsuggest.php:82 mod/group.php:24 mod/invite.php:20 mod/invite.php:108
|
||||
#: mod/item.php:203 mod/item.php:215 mod/manage.php:105 mod/message.php:51
|
||||
#: mod/message.php:174 mod/mood.php:119 mod/network.php:21 mod/nogroup.php:30
|
||||
#: mod/notes.php:26 mod/notifications.php:75 mod/ostatus_subscribe.php:13
|
||||
#: mod/photos.php:172 mod/photos.php:1097 mod/poke.php:158
|
||||
#: mod/profile_photo.php:23 mod/profile_photo.php:183
|
||||
#: mod/profile_photo.php:194 mod/profile_photo.php:207 mod/profiles.php:172
|
||||
#: mod/profiles.php:610 mod/register.php:49 mod/regmod.php:110
|
||||
#: mod/repair_ostatus.php:11 mod/settings.php:31 mod/settings.php:133
|
||||
#: mod/settings.php:683 mod/suggest.php:62 mod/uimport.php:27
|
||||
#: mod/unfollow.php:14 mod/unfollow.php:56 mod/unfollow.php:89
|
||||
#: mod/viewcontacts.php:51 mod/wall_attach.php:71 mod/wall_attach.php:74
|
||||
#: mod/wall_upload.php:103 mod/wall_upload.php:106 mod/wallmessage.php:13
|
||||
#: mod/wallmessage.php:37 mod/wallmessage.php:77 mod/wallmessage.php:101
|
||||
#: index.php:399
|
||||
msgid "Permission denied."
|
||||
msgstr "Permission refusée."
|
||||
|
||||
#: include/items.php:2239
|
||||
#: include/items.php:2389
|
||||
msgid "Archives"
|
||||
msgstr "Archives"
|
||||
|
||||
#: include/oembed.php:264
|
||||
#: include/like.php:47
|
||||
#, php-format
|
||||
msgid "%1$s is attending %2$s's %3$s"
|
||||
msgstr "%1$s participe à %3$s de %2$s"
|
||||
|
||||
#: include/like.php:52
|
||||
#, php-format
|
||||
msgid "%1$s is not attending %2$s's %3$s"
|
||||
msgstr "%1$s ne participe pas à %3$s de %2$s"
|
||||
|
||||
#: include/like.php:57
|
||||
#, php-format
|
||||
msgid "%1$s may attend %2$s's %3$s"
|
||||
msgstr "%1$s participera peut-être à %3$s de %2$s"
|
||||
|
||||
#: include/message.php:17 include/message.php:163
|
||||
msgid "[no subject]"
|
||||
msgstr "[pas de sujet]"
|
||||
|
||||
#: include/nav.php:40 mod/navigation.php:22
|
||||
msgid "Nothing new here"
|
||||
msgstr "Rien de neuf ici"
|
||||
|
||||
#: include/nav.php:44 mod/navigation.php:26
|
||||
msgid "Clear notifications"
|
||||
msgstr "Effacer les notifications"
|
||||
|
||||
#: include/nav.php:45 include/text.php:1049
|
||||
msgid "@name, !forum, #tags, content"
|
||||
msgstr "@nom, !forum, #tags, contenu"
|
||||
|
||||
#: include/nav.php:83 view/theme/frio/theme.php:253 boot.php:901
|
||||
msgid "Logout"
|
||||
msgstr "Se déconnecter"
|
||||
|
||||
#: include/nav.php:83 view/theme/frio/theme.php:253
|
||||
msgid "End this session"
|
||||
msgstr "Mettre fin à cette session"
|
||||
|
||||
#: include/nav.php:86 include/nav.php:166 view/theme/frio/theme.php:256
|
||||
msgid "Your posts and conversations"
|
||||
msgstr "Vos publications et conversations"
|
||||
|
||||
#: include/nav.php:87 view/theme/frio/theme.php:257
|
||||
msgid "Your profile page"
|
||||
msgstr "Votre page de profil"
|
||||
|
||||
#: include/nav.php:88 view/theme/frio/theme.php:258
|
||||
msgid "Your photos"
|
||||
msgstr "Vos photos"
|
||||
|
||||
#: include/nav.php:89 view/theme/frio/theme.php:259
|
||||
msgid "Your videos"
|
||||
msgstr "Vos vidéos"
|
||||
|
||||
#: include/nav.php:90 view/theme/frio/theme.php:260
|
||||
msgid "Your events"
|
||||
msgstr "Vos événements"
|
||||
|
||||
#: include/nav.php:91
|
||||
msgid "Personal notes"
|
||||
msgstr "Notes personnelles"
|
||||
|
||||
#: include/nav.php:91
|
||||
msgid "Your personal notes"
|
||||
msgstr "Vos notes personnelles"
|
||||
|
||||
#: include/nav.php:100 mod/bookmarklet.php:15 boot.php:902
|
||||
msgid "Login"
|
||||
msgstr "Connexion"
|
||||
|
||||
#: include/nav.php:100
|
||||
msgid "Sign in"
|
||||
msgstr "Se connecter"
|
||||
|
||||
#: include/nav.php:110 include/nav.php:166
|
||||
#: src/Core/NotificationsManager.php:197
|
||||
msgid "Home"
|
||||
msgstr "Profil"
|
||||
|
||||
#: include/nav.php:110
|
||||
msgid "Home Page"
|
||||
msgstr "Page d'accueil"
|
||||
|
||||
#: include/nav.php:114 mod/register.php:296 boot.php:874
|
||||
msgid "Register"
|
||||
msgstr "S'inscrire"
|
||||
|
||||
#: include/nav.php:114
|
||||
msgid "Create an account"
|
||||
msgstr "Créer un compte"
|
||||
|
||||
#: include/nav.php:120 mod/help.php:51 view/theme/vier/theme.php:292
|
||||
msgid "Help"
|
||||
msgstr "Aide"
|
||||
|
||||
#: include/nav.php:120
|
||||
msgid "Help and documentation"
|
||||
msgstr "Aide et documentation"
|
||||
|
||||
#: include/nav.php:124
|
||||
msgid "Apps"
|
||||
msgstr "Applications"
|
||||
|
||||
#: include/nav.php:124
|
||||
msgid "Addon applications, utilities, games"
|
||||
msgstr "Applications supplémentaires, utilitaires, jeux"
|
||||
|
||||
#: include/nav.php:128 include/text.php:1046 mod/search.php:148
|
||||
msgid "Search"
|
||||
msgstr "Recherche"
|
||||
|
||||
#: include/nav.php:128
|
||||
msgid "Search site content"
|
||||
msgstr "Rechercher dans le contenu du site"
|
||||
|
||||
#: include/nav.php:131 include/text.php:1054
|
||||
msgid "Full Text"
|
||||
msgstr "Texte Entier"
|
||||
|
||||
#: include/nav.php:132 include/tags.php:234 include/text.php:1055
|
||||
msgid "Tags"
|
||||
msgstr "Tags"
|
||||
|
||||
#: include/nav.php:136 include/text.php:1059 view/theme/vier/theme.php:249
|
||||
#: src/Content/ForumManager.php:121
|
||||
msgid "Forums"
|
||||
msgstr "Forums"
|
||||
|
||||
#: include/nav.php:148 include/nav.php:150 mod/community.php:89
|
||||
msgid "Community"
|
||||
msgstr "Communauté"
|
||||
|
||||
#: include/nav.php:148
|
||||
msgid "Conversations on this site"
|
||||
msgstr "Conversations ayant cours sur ce site"
|
||||
|
||||
#: include/nav.php:150
|
||||
msgid "Conversations on the network"
|
||||
msgstr "Conversations sur le réseau"
|
||||
|
||||
#: include/nav.php:157
|
||||
msgid "Directory"
|
||||
msgstr "Annuaire"
|
||||
|
||||
#: include/nav.php:157
|
||||
msgid "People directory"
|
||||
msgstr "Annuaire des utilisateurs"
|
||||
|
||||
#: include/nav.php:159
|
||||
msgid "Information"
|
||||
msgstr "Information"
|
||||
|
||||
#: include/nav.php:159
|
||||
msgid "Information about this friendica instance"
|
||||
msgstr "Information au sujet de cette instance de friendica"
|
||||
|
||||
#: include/nav.php:163 mod/admin.php:592 view/theme/frio/theme.php:263
|
||||
#: src/Core/NotificationsManager.php:183
|
||||
msgid "Network"
|
||||
msgstr "Réseau"
|
||||
|
||||
#: include/nav.php:163 view/theme/frio/theme.php:263
|
||||
msgid "Conversations from your friends"
|
||||
msgstr "Conversations de vos amis"
|
||||
|
||||
#: include/nav.php:164
|
||||
msgid "Network Reset"
|
||||
msgstr "Réinitialiser le réseau"
|
||||
|
||||
#: include/nav.php:164
|
||||
msgid "Load Network page with no filters"
|
||||
msgstr "Chargement des pages du réseau sans filtre"
|
||||
|
||||
#: include/nav.php:171 src/Core/NotificationsManager.php:204
|
||||
msgid "Introductions"
|
||||
msgstr "Introductions"
|
||||
|
||||
#: include/nav.php:171
|
||||
msgid "Friend Requests"
|
||||
msgstr "Demande d'amitié"
|
||||
|
||||
#: include/nav.php:174 mod/notifications.php:100
|
||||
msgid "Notifications"
|
||||
msgstr "Notifications"
|
||||
|
||||
#: include/nav.php:175
|
||||
msgid "See all notifications"
|
||||
msgstr "Voir toute notification"
|
||||
|
||||
#: include/nav.php:176 mod/settings.php:916
|
||||
msgid "Mark as seen"
|
||||
msgstr "Marquer comme vu"
|
||||
|
||||
#: include/nav.php:176
|
||||
msgid "Mark all system notifications seen"
|
||||
msgstr "Marquer toutes les notifications système comme 'vues'"
|
||||
|
||||
#: include/nav.php:180 mod/message.php:182 view/theme/frio/theme.php:265
|
||||
msgid "Messages"
|
||||
msgstr "Messages"
|
||||
|
||||
#: include/nav.php:180 view/theme/frio/theme.php:265
|
||||
msgid "Private mail"
|
||||
msgstr "Messages privés"
|
||||
|
||||
#: include/nav.php:181
|
||||
msgid "Inbox"
|
||||
msgstr "Messages entrants"
|
||||
|
||||
#: include/nav.php:182
|
||||
msgid "Outbox"
|
||||
msgstr "Messages sortants"
|
||||
|
||||
#: include/nav.php:183 mod/message.php:21
|
||||
msgid "New Message"
|
||||
msgstr "Nouveau message"
|
||||
|
||||
#: include/nav.php:186
|
||||
msgid "Manage"
|
||||
msgstr "Gérer"
|
||||
|
||||
#: include/nav.php:186
|
||||
msgid "Manage other pages"
|
||||
msgstr "Gérer les autres pages"
|
||||
|
||||
#: include/nav.php:189 mod/settings.php:84
|
||||
msgid "Delegations"
|
||||
msgstr "Délégations"
|
||||
|
||||
#: include/nav.php:189 mod/delegate.php:131
|
||||
msgid "Delegate Page Management"
|
||||
msgstr "Déléguer la gestion de la page"
|
||||
|
||||
#: include/nav.php:191 mod/admin.php:1740 mod/admin.php:2016
|
||||
#: mod/newmember.php:16 mod/settings.php:114 view/theme/frio/theme.php:266
|
||||
msgid "Settings"
|
||||
msgstr "Réglages"
|
||||
|
||||
#: include/nav.php:191 view/theme/frio/theme.php:266
|
||||
msgid "Account settings"
|
||||
msgstr "Compte"
|
||||
|
||||
#: include/nav.php:194
|
||||
msgid "Manage/Edit Profiles"
|
||||
msgstr "Gérer/Éditer les profiles"
|
||||
|
||||
#: include/nav.php:197 view/theme/frio/theme.php:267
|
||||
msgid "Manage/edit friends and contacts"
|
||||
msgstr "Gérer/éditer les amitiés et contacts"
|
||||
|
||||
#: include/nav.php:202 mod/admin.php:206
|
||||
msgid "Admin"
|
||||
msgstr "Admin"
|
||||
|
||||
#: include/nav.php:202
|
||||
msgid "Site setup and configuration"
|
||||
msgstr "Démarrage et configuration du site"
|
||||
|
||||
#: include/nav.php:205
|
||||
msgid "Navigation"
|
||||
msgstr "Navigation"
|
||||
|
||||
#: include/nav.php:205
|
||||
msgid "Site map"
|
||||
msgstr "Carte du site"
|
||||
|
||||
#: include/network.php:732
|
||||
msgid "view full size"
|
||||
msgstr "voir en pleine taille"
|
||||
|
||||
#: include/oembed.php:256
|
||||
msgid "Embedded content"
|
||||
msgstr "Contenu incorporé"
|
||||
|
||||
#: include/oembed.php:272
|
||||
#: include/oembed.php:264
|
||||
msgid "Embedding disabled"
|
||||
msgstr "Incorporation désactivée"
|
||||
|
||||
#: include/ostatus.php:1825
|
||||
#, php-format
|
||||
msgid "%s is now following %s."
|
||||
msgstr ""
|
||||
#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:43
|
||||
#: mod/fbrowser.php:65 mod/photos.php:193 mod/photos.php:1111
|
||||
#: mod/photos.php:1230 mod/photos.php:1247 mod/photos.php:1785
|
||||
#: mod/photos.php:1799
|
||||
msgid "Contact Photos"
|
||||
msgstr "Photos du contact"
|
||||
|
||||
#: include/ostatus.php:1826
|
||||
msgid "following"
|
||||
msgstr "following"
|
||||
#: include/security.php:67
|
||||
msgid "Welcome "
|
||||
msgstr "Bienvenue "
|
||||
|
||||
#: include/ostatus.php:1829
|
||||
#, php-format
|
||||
msgid "%s stopped following %s."
|
||||
msgstr ""
|
||||
#: include/security.php:68
|
||||
msgid "Please upload a profile photo."
|
||||
msgstr "Merci d'illustrer votre profil d'une image."
|
||||
|
||||
#: include/ostatus.php:1830
|
||||
msgid "stopped following"
|
||||
msgstr "retiré de la liste de suivi"
|
||||
#: include/security.php:70
|
||||
msgid "Welcome back "
|
||||
msgstr "Bienvenue à nouveau, "
|
||||
|
||||
#: include/text.php:304
|
||||
#: include/security.php:427
|
||||
msgid ""
|
||||
"The form security token was not correct. This probably happened because the "
|
||||
"form has been opened for too long (>3 hours) before submitting it."
|
||||
msgstr "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé."
|
||||
|
||||
#: include/text.php:289
|
||||
msgid "newer"
|
||||
msgstr "Plus récent"
|
||||
|
||||
#: include/text.php:306
|
||||
#: include/text.php:290
|
||||
msgid "older"
|
||||
msgstr "Plus ancien"
|
||||
|
||||
#: include/text.php:311
|
||||
msgid "prev"
|
||||
msgstr "précédent"
|
||||
|
||||
#: include/text.php:313
|
||||
#: include/text.php:295
|
||||
msgid "first"
|
||||
msgstr "premier"
|
||||
|
||||
#: include/text.php:345
|
||||
msgid "last"
|
||||
msgstr "dernier"
|
||||
#: include/text.php:296
|
||||
msgid "prev"
|
||||
msgstr "précédent"
|
||||
|
||||
#: include/text.php:348
|
||||
#: include/text.php:330
|
||||
msgid "next"
|
||||
msgstr "suivant"
|
||||
|
||||
#: include/text.php:403
|
||||
#: include/text.php:331
|
||||
msgid "last"
|
||||
msgstr "dernier"
|
||||
|
||||
#: include/text.php:385
|
||||
msgid "Loading more entries..."
|
||||
msgstr "Chargement de résultats supplémentaires..."
|
||||
|
||||
#: include/text.php:404
|
||||
#: include/text.php:386
|
||||
msgid "The end"
|
||||
msgstr "Fin"
|
||||
|
||||
#: include/text.php:889
|
||||
#: include/text.php:922
|
||||
msgid "No contacts"
|
||||
msgstr "Aucun contact"
|
||||
|
||||
#: include/text.php:912
|
||||
#: include/text.php:946
|
||||
#, php-format
|
||||
msgid "%d Contact"
|
||||
msgid_plural "%d Contacts"
|
||||
msgstr[0] "%d contact"
|
||||
msgstr[1] "%d contacts"
|
||||
|
||||
#: include/text.php:925
|
||||
#: include/text.php:959
|
||||
msgid "View Contacts"
|
||||
msgstr "Voir les contacts"
|
||||
|
||||
#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31
|
||||
#: mod/editpost.php:109
|
||||
#: include/text.php:1047 mod/editpost.php:104 mod/filer.php:33
|
||||
#: mod/notes.php:65
|
||||
msgid "Save"
|
||||
msgstr "Sauver"
|
||||
|
||||
#: include/text.php:1076
|
||||
#: include/text.php:1106
|
||||
msgid "poke"
|
||||
msgstr "titiller"
|
||||
|
||||
#: include/text.php:1076
|
||||
#: include/text.php:1106
|
||||
msgid "poked"
|
||||
msgstr "a titillé"
|
||||
|
||||
#: include/text.php:1077
|
||||
#: include/text.php:1107
|
||||
msgid "ping"
|
||||
msgstr "attirer l'attention"
|
||||
|
||||
#: include/text.php:1077
|
||||
#: include/text.php:1107
|
||||
msgid "pinged"
|
||||
msgstr "a attiré l'attention de"
|
||||
|
||||
#: include/text.php:1078
|
||||
#: include/text.php:1108
|
||||
msgid "prod"
|
||||
msgstr "aiguillonner"
|
||||
|
||||
#: include/text.php:1078
|
||||
#: include/text.php:1108
|
||||
msgid "prodded"
|
||||
msgstr "a aiguillonné"
|
||||
|
||||
#: include/text.php:1079
|
||||
#: include/text.php:1109
|
||||
msgid "slap"
|
||||
msgstr "gifler"
|
||||
|
||||
#: include/text.php:1079
|
||||
#: include/text.php:1109
|
||||
msgid "slapped"
|
||||
msgstr "a giflé"
|
||||
|
||||
#: include/text.php:1080
|
||||
#: include/text.php:1110
|
||||
msgid "finger"
|
||||
msgstr "tripoter"
|
||||
|
||||
#: include/text.php:1080
|
||||
#: include/text.php:1110
|
||||
msgid "fingered"
|
||||
msgstr "a tripoté"
|
||||
|
||||
#: include/text.php:1081
|
||||
#: include/text.php:1111
|
||||
msgid "rebuff"
|
||||
msgstr "rabrouer"
|
||||
|
||||
#: include/text.php:1081
|
||||
#: include/text.php:1111
|
||||
msgid "rebuffed"
|
||||
msgstr "a rabroué"
|
||||
|
||||
#: include/text.php:1095
|
||||
#: include/text.php:1125
|
||||
msgid "happy"
|
||||
msgstr "heureuse"
|
||||
|
||||
#: include/text.php:1096
|
||||
#: include/text.php:1126
|
||||
msgid "sad"
|
||||
msgstr "triste"
|
||||
|
||||
#: include/text.php:1097
|
||||
#: include/text.php:1127
|
||||
msgid "mellow"
|
||||
msgstr "suave"
|
||||
|
||||
#: include/text.php:1098
|
||||
#: include/text.php:1128
|
||||
msgid "tired"
|
||||
msgstr "fatiguée"
|
||||
|
||||
#: include/text.php:1099
|
||||
#: include/text.php:1129
|
||||
msgid "perky"
|
||||
msgstr "guillerette"
|
||||
|
||||
#: include/text.php:1100
|
||||
#: include/text.php:1130
|
||||
msgid "angry"
|
||||
msgstr "colérique"
|
||||
|
||||
#: include/text.php:1101
|
||||
#: include/text.php:1131
|
||||
msgid "stupified"
|
||||
msgstr "stupéfaite"
|
||||
|
||||
#: include/text.php:1102
|
||||
#: include/text.php:1132
|
||||
msgid "puzzled"
|
||||
msgstr "perplexe"
|
||||
|
||||
#: include/text.php:1103
|
||||
#: include/text.php:1133
|
||||
msgid "interested"
|
||||
msgstr "intéressée"
|
||||
|
||||
#: include/text.php:1104
|
||||
#: include/text.php:1134
|
||||
msgid "bitter"
|
||||
msgstr "amère"
|
||||
|
||||
#: include/text.php:1105
|
||||
#: include/text.php:1135
|
||||
msgid "cheerful"
|
||||
msgstr "entraînante"
|
||||
|
||||
#: include/text.php:1106
|
||||
#: include/text.php:1136
|
||||
msgid "alive"
|
||||
msgstr "vivante"
|
||||
|
||||
#: include/text.php:1107
|
||||
#: include/text.php:1137
|
||||
msgid "annoyed"
|
||||
msgstr "ennuyée"
|
||||
|
||||
#: include/text.php:1108
|
||||
#: include/text.php:1138
|
||||
msgid "anxious"
|
||||
msgstr "anxieuse"
|
||||
|
||||
#: include/text.php:1109
|
||||
#: include/text.php:1139
|
||||
msgid "cranky"
|
||||
msgstr "excentrique"
|
||||
|
||||
#: include/text.php:1110
|
||||
#: include/text.php:1140
|
||||
msgid "disturbed"
|
||||
msgstr "dérangée"
|
||||
|
||||
#: include/text.php:1111
|
||||
#: include/text.php:1141
|
||||
msgid "frustrated"
|
||||
msgstr "frustré"
|
||||
|
||||
#: include/text.php:1112
|
||||
#: include/text.php:1142
|
||||
msgid "motivated"
|
||||
msgstr "motivée"
|
||||
|
||||
#: include/text.php:1113
|
||||
#: include/text.php:1143
|
||||
msgid "relaxed"
|
||||
msgstr "détendue"
|
||||
|
||||
#: include/text.php:1114
|
||||
#: include/text.php:1144
|
||||
msgid "surprised"
|
||||
msgstr "surprise"
|
||||
|
||||
#: include/text.php:1324 mod/videos.php:380
|
||||
#: include/text.php:1177
|
||||
msgid "Sund"
|
||||
msgstr ""
|
||||
|
||||
#: include/text.php:1180
|
||||
msgid "Sep"
|
||||
msgstr ""
|
||||
|
||||
#: include/text.php:1377 mod/videos.php:387
|
||||
msgid "View Video"
|
||||
msgstr "Regarder la vidéo"
|
||||
|
||||
#: include/text.php:1356
|
||||
#: include/text.php:1394
|
||||
msgid "bytes"
|
||||
msgstr "octets"
|
||||
|
||||
#: include/text.php:1388 include/text.php:1400
|
||||
#: include/text.php:1429 include/text.php:1440
|
||||
msgid "Click to open/close"
|
||||
msgstr "Cliquer pour ouvrir/fermer"
|
||||
|
||||
#: include/text.php:1526
|
||||
#: include/text.php:1568
|
||||
msgid "View on separate page"
|
||||
msgstr "Voir dans une nouvelle page"
|
||||
|
||||
#: include/text.php:1527
|
||||
#: include/text.php:1569
|
||||
msgid "view on separate page"
|
||||
msgstr "voir dans une nouvelle page"
|
||||
|
||||
#: include/text.php:1806
|
||||
#: include/text.php:1787
|
||||
msgid "activity"
|
||||
msgstr "activité"
|
||||
|
||||
#: include/text.php:1808 mod/content.php:623 object/Item.php:431
|
||||
#: object/Item.php:444
|
||||
#: include/text.php:1789 src/Object/Item.php:421 src/Object/Item.php:433
|
||||
msgid "comment"
|
||||
msgid_plural "comments"
|
||||
msgstr[0] ""
|
||||
msgstr[1] "commentaire"
|
||||
|
||||
#: include/text.php:1809
|
||||
#: include/text.php:1792
|
||||
msgid "post"
|
||||
msgstr "publication"
|
||||
|
||||
#: include/text.php:1977
|
||||
#: include/text.php:1955
|
||||
msgid "Item filed"
|
||||
msgstr "Élément classé"
|
||||
|
||||
#: include/user.php:39 mod/settings.php:373
|
||||
#: include/uimport.php:82
|
||||
msgid "Error decoding account file"
|
||||
msgstr "Une erreur a été détecté en décodant un fichier utilisateur"
|
||||
|
||||
#: include/uimport.php:88
|
||||
msgid "Error! No version data in file! This is not a Friendica account file?"
|
||||
msgstr "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?"
|
||||
|
||||
#: include/uimport.php:105 include/uimport.php:116
|
||||
msgid "Error! Cannot check nickname"
|
||||
msgstr "Erreur! Pseudo invalide"
|
||||
|
||||
#: include/uimport.php:109 include/uimport.php:120
|
||||
#, php-format
|
||||
msgid "User '%s' already exists on this server!"
|
||||
msgstr "L'utilisateur '%s' existe déjà sur ce serveur!"
|
||||
|
||||
#: include/uimport.php:151
|
||||
msgid "User creation error"
|
||||
msgstr "Erreur de création d'utilisateur"
|
||||
|
||||
#: include/uimport.php:174
|
||||
msgid "User profile creation error"
|
||||
msgstr "Erreur de création du profil utilisateur"
|
||||
|
||||
#: include/uimport.php:224
|
||||
#, php-format
|
||||
msgid "%d contact not imported"
|
||||
msgid_plural "%d contacts not imported"
|
||||
msgstr[0] "%d contacts non importés"
|
||||
msgstr[1] "%d contacts non importés"
|
||||
|
||||
#: include/uimport.php:290
|
||||
msgid "Done. You can now login with your username and password"
|
||||
msgstr "Action réalisée. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe"
|
||||
|
||||
#: include/user.php:42 mod/settings.php:378
|
||||
msgid "Passwords do not match. Password unchanged."
|
||||
msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué."
|
||||
|
||||
#: include/user.php:48
|
||||
#: include/user.php:51
|
||||
msgid "An invitation is required."
|
||||
msgstr "Une invitation est requise."
|
||||
|
||||
#: include/user.php:53
|
||||
#: include/user.php:56
|
||||
msgid "Invitation could not be verified."
|
||||
msgstr "L'invitation fournie n'a pu être validée."
|
||||
|
||||
#: include/user.php:61
|
||||
#: include/user.php:64
|
||||
msgid "Invalid OpenID url"
|
||||
msgstr "Adresse OpenID invalide"
|
||||
|
||||
#: include/user.php:82
|
||||
#: include/user.php:85
|
||||
msgid "Please enter the required information."
|
||||
msgstr "Entrez les informations requises."
|
||||
|
||||
#: include/user.php:96
|
||||
#: include/user.php:99
|
||||
msgid "Please use a shorter name."
|
||||
msgstr "Utilisez un nom plus court."
|
||||
|
||||
#: include/user.php:98
|
||||
#: include/user.php:101
|
||||
msgid "Name too short."
|
||||
msgstr "Nom trop court."
|
||||
|
||||
#: include/user.php:113
|
||||
#: include/user.php:109
|
||||
msgid "That doesn't appear to be your full (First Last) name."
|
||||
msgstr "Ceci ne semble pas être votre nom complet (Prénom Nom)."
|
||||
|
||||
#: include/user.php:118
|
||||
#: include/user.php:114
|
||||
msgid "Your email domain is not among those allowed on this site."
|
||||
msgstr "Votre domaine de courriel n'est pas autorisé sur ce site."
|
||||
|
||||
#: include/user.php:121
|
||||
#: include/user.php:117
|
||||
msgid "Not a valid email address."
|
||||
msgstr "Ceci n'est pas une adresse courriel valide."
|
||||
|
||||
#: include/user.php:134
|
||||
#: include/user.php:130
|
||||
msgid "Cannot use that email."
|
||||
msgstr "Impossible d'utiliser ce courriel."
|
||||
|
||||
#: include/user.php:140
|
||||
#: include/user.php:136
|
||||
msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
|
||||
msgstr "Votre \"pseudonyme\" peut seulement contenir les caractères \"a-z\", \"0-9\" et \"_\"."
|
||||
|
||||
#: include/user.php:147 include/user.php:245
|
||||
#: include/user.php:143 include/user.php:225
|
||||
msgid "Nickname is already registered. Please choose another."
|
||||
msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre."
|
||||
|
||||
#: include/user.php:157
|
||||
#: include/user.php:153
|
||||
msgid ""
|
||||
"Nickname was once registered here and may not be re-used. Please choose "
|
||||
"another."
|
||||
msgstr "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre."
|
||||
|
||||
#: include/user.php:173
|
||||
#: include/user.php:169
|
||||
msgid "SERIOUS ERROR: Generation of security keys failed."
|
||||
msgstr "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué."
|
||||
msgstr "ERREUR FATALE : La génération des clés de sécurité a échoué."
|
||||
|
||||
#: include/user.php:231
|
||||
#: include/user.php:211
|
||||
msgid "An error occurred during registration. Please try again."
|
||||
msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer."
|
||||
|
||||
#: include/user.php:256 view/theme/duepuntozero/config.php:44
|
||||
#: include/user.php:234 view/theme/duepuntozero/config.php:49
|
||||
msgid "default"
|
||||
msgstr "défaut"
|
||||
|
||||
#: include/user.php:266
|
||||
#: include/user.php:244
|
||||
msgid "An error occurred creating your default profile. Please try again."
|
||||
msgstr "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer."
|
||||
|
||||
#: include/user.php:326 include/user.php:333 include/user.php:340
|
||||
#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88
|
||||
#: mod/profile_photo.php:210 mod/profile_photo.php:302
|
||||
#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180
|
||||
#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232
|
||||
#: mod/photos.php:1819
|
||||
msgid "Profile Photos"
|
||||
msgstr "Photos du profil"
|
||||
|
||||
#: include/user.php:414
|
||||
#: include/user.php:394
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\tDear %1$s,\n"
|
||||
"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
|
||||
"\t"
|
||||
msgstr ""
|
||||
msgstr "\n\t\tCher %1$s,\nMerci pour votre inscription sur %2$s. Votre compte est en attente de l'approbation de l'administrateur.\n\t"
|
||||
|
||||
#: include/user.php:424
|
||||
#: include/user.php:404
|
||||
#, php-format
|
||||
msgid "Registration at %s"
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:434
|
||||
#: include/user.php:414
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
|
|
@ -3064,7 +2997,7 @@ msgid ""
|
|||
"\t"
|
||||
msgstr "\n\t\tChère/Cher %1$s,\n\t\t\tMerci de vous être inscrit sur %2$s. Votre compte a bien été créé.\n\t"
|
||||
|
||||
#: include/user.php:438
|
||||
#: include/user.php:418
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
|
|
@ -3094,3719 +3027,871 @@ msgid ""
|
|||
"\t\tThank you and welcome to %2$s."
|
||||
msgstr "\n\t\tVoici vos informations de connexion :\n\t\t\tAdresse :\t%3$s\n\t\t\tIdentifiant :\t%1$s\n\t\t\tMot de passe :\t%5$s\n\n\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\n\t\tMerci et bienvenu sur %2$s."
|
||||
|
||||
#: include/user.php:470 mod/admin.php:1213
|
||||
#: include/user.php:450 mod/admin.php:1432
|
||||
#, php-format
|
||||
msgid "Registration details for %s"
|
||||
msgstr "Détails d'inscription pour %s"
|
||||
|
||||
#: mod/oexchange.php:25
|
||||
msgid "Post successful."
|
||||
msgstr "Publication réussie."
|
||||
#: mod/babel.php:18
|
||||
msgid "Source (bbcode) text:"
|
||||
msgstr "Texte source (bbcode) :"
|
||||
|
||||
#: mod/viewsrc.php:7
|
||||
msgid "Access denied."
|
||||
msgstr "Accès refusé."
|
||||
#: mod/babel.php:25
|
||||
msgid "Source (Diaspora) text to convert to BBcode:"
|
||||
msgstr "Texte source (Diaspora) à convertir en BBcode :"
|
||||
|
||||
#: mod/home.php:35
|
||||
#, php-format
|
||||
msgid "Welcome to %s"
|
||||
msgstr "Bienvenue sur %s"
|
||||
#: mod/babel.php:33
|
||||
msgid "Source input: "
|
||||
msgstr "Source input : "
|
||||
|
||||
#: mod/notify.php:60
|
||||
msgid "No more system notifications."
|
||||
msgstr "Pas plus de notifications système."
|
||||
#: mod/babel.php:37
|
||||
msgid "bb2html (raw HTML): "
|
||||
msgstr "bb2html (HTML brut)"
|
||||
|
||||
#: mod/notify.php:64 mod/notifications.php:111
|
||||
msgid "System Notifications"
|
||||
msgstr "Notifications du système"
|
||||
#: mod/babel.php:41
|
||||
msgid "bb2html: "
|
||||
msgstr "bb2html : "
|
||||
|
||||
#: mod/search.php:25 mod/network.php:191
|
||||
msgid "Remove term"
|
||||
msgstr "Retirer le terme"
|
||||
#: mod/babel.php:45
|
||||
msgid "bb2html2bb: "
|
||||
msgstr "bb2html2bb : "
|
||||
|
||||
#: mod/search.php:93 mod/search.php:99 mod/community.php:22
|
||||
#: mod/directory.php:37 mod/display.php:200 mod/photos.php:944
|
||||
#: mod/videos.php:194 mod/dfrn_request.php:791 mod/viewcontacts.php:35
|
||||
msgid "Public access denied."
|
||||
msgstr "Accès public refusé."
|
||||
#: mod/babel.php:49
|
||||
msgid "bb2md: "
|
||||
msgstr "bb2md : "
|
||||
|
||||
#: mod/search.php:100
|
||||
msgid "Only logged in users are permitted to perform a search."
|
||||
msgstr "Seuls les utilisateurs inscrits sont autorisés à lancer une recherche."
|
||||
#: mod/babel.php:53
|
||||
msgid "bb2md2html: "
|
||||
msgstr "bb2md2html : "
|
||||
|
||||
#: mod/search.php:124
|
||||
msgid "Too Many Requests"
|
||||
msgstr "Trop de requêtes"
|
||||
#: mod/babel.php:57
|
||||
msgid "bb2dia2bb: "
|
||||
msgstr "bb2dia2bb : "
|
||||
|
||||
#: mod/search.php:125
|
||||
msgid "Only one search per minute is permitted for not logged in users."
|
||||
msgstr "Une seule recherche par minute pour les utilisateurs qui ne sont pas connectés."
|
||||
#: mod/babel.php:61
|
||||
msgid "bb2md2html2bb: "
|
||||
msgstr "bb2md2html2bb : "
|
||||
|
||||
#: mod/search.php:224 mod/community.php:66 mod/community.php:75
|
||||
msgid "No results."
|
||||
msgstr "Aucun résultat."
|
||||
#: mod/babel.php:67
|
||||
msgid "Source input (Diaspora format): "
|
||||
msgstr "Texte source (format Diaspora) :"
|
||||
|
||||
#: mod/search.php:230
|
||||
#, php-format
|
||||
msgid "Items tagged with: %s"
|
||||
msgstr "Éléments taggés %s"
|
||||
#: mod/babel.php:71
|
||||
msgid "diaspora2bb: "
|
||||
msgstr "diaspora2bb :"
|
||||
|
||||
#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146
|
||||
#, php-format
|
||||
msgid "Results for: %s"
|
||||
msgstr "Résultats pour : %s"
|
||||
|
||||
#: mod/friendica.php:70
|
||||
msgid "This is Friendica, version"
|
||||
msgstr "Motorisé par Friendica version"
|
||||
|
||||
#: mod/friendica.php:71
|
||||
msgid "running at web location"
|
||||
msgstr "hébergé sur"
|
||||
|
||||
#: mod/friendica.php:73
|
||||
msgid ""
|
||||
"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
|
||||
"more about the Friendica project."
|
||||
msgstr "Merci de vous rendre sur <a href=\"http://friendica.com\">Friendica.com</a> si vous souhaitez en savoir plus sur le projet Friendica."
|
||||
|
||||
#: mod/friendica.php:75
|
||||
msgid "Bug reports and issues: please visit"
|
||||
msgstr "Pour les rapports de bugs: rendez vous sur"
|
||||
|
||||
#: mod/friendica.php:75
|
||||
msgid "the bugtracker at github"
|
||||
msgstr "le bugtracker sur GitHub"
|
||||
|
||||
#: mod/friendica.php:76
|
||||
msgid ""
|
||||
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
|
||||
"dot com"
|
||||
msgstr "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com"
|
||||
|
||||
#: mod/friendica.php:90
|
||||
msgid "Installed plugins/addons/apps:"
|
||||
msgstr "Extensions/greffons/applications installées:"
|
||||
|
||||
#: mod/friendica.php:103
|
||||
msgid "No installed plugins/addons/apps"
|
||||
msgstr "Extensions/greffons/applications non installées:"
|
||||
|
||||
#: mod/lostpass.php:19
|
||||
msgid "No valid account found."
|
||||
msgstr "Impossible de trouver un compte valide."
|
||||
|
||||
#: mod/lostpass.php:35
|
||||
msgid "Password reset request issued. Check your email."
|
||||
msgstr "Réinitialisation du mot de passe en cours. Vérifiez votre courriel."
|
||||
|
||||
#: mod/lostpass.php:42
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\tDear %1$s,\n"
|
||||
"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
|
||||
"\t\tpassword. In order to confirm this request, please select the verification link\n"
|
||||
"\t\tbelow or paste it into your web browser address bar.\n"
|
||||
"\n"
|
||||
"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
|
||||
"\t\tprovided and ignore and/or delete this email.\n"
|
||||
"\n"
|
||||
"\t\tYour password will not be changed unless we can verify that you\n"
|
||||
"\t\tissued this request."
|
||||
msgstr "\n\t\tChère/Cher %1$s,\n\t\t\tNous avons reçu une demande de ré-initialisation du mot de passe de votre compte sur \"%2$s\". Pour confirmer cette demande, veuillez cliquer sur le lien de vérification ci-dessous ou le coller dans la barre d’adresse de votre navigateur.\n\n\t\tSi vous n’êtes PAS à l’origine de cette demande, NE suivez PAS le lien—ignorez et/ou supprimez ce message.\n\n\t\tVotre mot de passe ne sera pas modifié si nous n’avons pas de confirmation que la demande émane de vous."
|
||||
|
||||
#: mod/lostpass.php:53
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\tFollow this link to verify your identity:\n"
|
||||
"\n"
|
||||
"\t\t%1$s\n"
|
||||
"\n"
|
||||
"\t\tYou will then receive a follow-up message containing the new password.\n"
|
||||
"\t\tYou may change that password from your account settings page after logging in.\n"
|
||||
"\n"
|
||||
"\t\tThe login details are as follows:\n"
|
||||
"\n"
|
||||
"\t\tSite Location:\t%2$s\n"
|
||||
"\t\tLogin Name:\t%3$s"
|
||||
msgstr "\n\t\tSuivez ce lien pour confirmer votre identité :\n\n\t\t%1$s\n\n\t\tVous recevrez alors a message contenant votre nouveau mot de passe.\n\t\tVous pourrez changer ce mot de passe depuis les paramètres de votre compte une fois connecté.\n\n\t\tInformations de connexion :\n\n\t\tAdresse :\t%2$s\n\t\tIdentifiant :\t%3$s"
|
||||
|
||||
#: mod/lostpass.php:72
|
||||
#, php-format
|
||||
msgid "Password reset requested at %s"
|
||||
msgstr "Requête de réinitialisation de mot de passe à %s"
|
||||
|
||||
#: mod/lostpass.php:92
|
||||
msgid ""
|
||||
"Request could not be verified. (You may have previously submitted it.) "
|
||||
"Password reset failed."
|
||||
msgstr "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué."
|
||||
|
||||
#: mod/lostpass.php:109 boot.php:1807
|
||||
msgid "Password Reset"
|
||||
msgstr "Réinitialiser le mot de passe"
|
||||
|
||||
#: mod/lostpass.php:110
|
||||
msgid "Your password has been reset as requested."
|
||||
msgstr "Votre mot de passe a bien été réinitialisé."
|
||||
|
||||
#: mod/lostpass.php:111
|
||||
msgid "Your new password is"
|
||||
msgstr "Votre nouveau mot de passe est "
|
||||
|
||||
#: mod/lostpass.php:112
|
||||
msgid "Save or copy your new password - and then"
|
||||
msgstr "Sauvez ou copiez ce nouveau mot de passe - puis"
|
||||
|
||||
#: mod/lostpass.php:113
|
||||
msgid "click here to login"
|
||||
msgstr "cliquez ici pour vous connecter"
|
||||
|
||||
#: mod/lostpass.php:114
|
||||
msgid ""
|
||||
"Your password may be changed from the <em>Settings</em> page after "
|
||||
"successful login."
|
||||
msgstr "Votre mot de passe peut être changé depuis la page <em>Réglages</em>, une fois que vous serez connecté."
|
||||
|
||||
#: mod/lostpass.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\t\tDear %1$s,\n"
|
||||
"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
|
||||
"\t\t\t\tinformation for your records (or change your password immediately to\n"
|
||||
"\t\t\t\tsomething that you will remember).\n"
|
||||
"\t\t\t"
|
||||
msgstr "\n\t\t\t\tChère/Cher %1$s,\n\t\t\t\t\tVotre mot de passe a été changé ainsi que vous l’avez demandé. Veuillez conserver cette informations dans vos archives (ou changer immédiatement votre mot de passe pour un autre dont vous vous souviendrez).\n\t\t\t"
|
||||
|
||||
#: mod/lostpass.php:131
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\t\tYour login details are as follows:\n"
|
||||
"\n"
|
||||
"\t\t\t\tSite Location:\t%1$s\n"
|
||||
"\t\t\t\tLogin Name:\t%2$s\n"
|
||||
"\t\t\t\tPassword:\t%3$s\n"
|
||||
"\n"
|
||||
"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
|
||||
"\t\t\t"
|
||||
msgstr "\n\t\t\t\tVoici vos informations de connexion :\n\n\t\t\t\tAdresse :\t%1$s\n\t\t\t\tIdentifiant :\t%2$s\n\t\t\t\tMot de passe :\t%3$s\n\n\t\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\t\t\t"
|
||||
|
||||
#: mod/lostpass.php:147
|
||||
#, php-format
|
||||
msgid "Your password has been changed at %s"
|
||||
msgstr "Votre mot de passe a été modifié à %s"
|
||||
|
||||
#: mod/lostpass.php:159
|
||||
msgid "Forgot your Password?"
|
||||
msgstr "Mot de passe oublié ?"
|
||||
|
||||
#: mod/lostpass.php:160
|
||||
msgid ""
|
||||
"Enter your email address and submit to have your password reset. Then check "
|
||||
"your email for further instructions."
|
||||
msgstr "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel."
|
||||
|
||||
#: mod/lostpass.php:161 boot.php:1795
|
||||
msgid "Nickname or Email: "
|
||||
msgstr "Pseudo ou eMail : "
|
||||
|
||||
#: mod/lostpass.php:162
|
||||
msgid "Reset"
|
||||
msgstr "Réinitialiser"
|
||||
|
||||
#: mod/hcard.php:10
|
||||
msgid "No profile"
|
||||
msgstr "Aucun profil"
|
||||
|
||||
#: mod/help.php:41
|
||||
msgid "Help:"
|
||||
msgstr "Aide :"
|
||||
|
||||
#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12
|
||||
#: mod/fetch.php:39 mod/fetch.php:48 index.php:288
|
||||
msgid "Not Found"
|
||||
msgstr "Non trouvé"
|
||||
|
||||
#: mod/help.php:56 index.php:291
|
||||
msgid "Page not found."
|
||||
msgstr "Page introuvable."
|
||||
|
||||
#: mod/lockview.php:31 mod/lockview.php:39
|
||||
msgid "Remote privacy information not available."
|
||||
msgstr "Informations de confidentialité indisponibles."
|
||||
|
||||
#: mod/lockview.php:48
|
||||
msgid "Visible to:"
|
||||
msgstr "Visible par:"
|
||||
|
||||
#: mod/openid.php:24
|
||||
msgid "OpenID protocol error. No ID returned."
|
||||
msgstr "Erreur de protocole OpenID. Pas d'ID en retour."
|
||||
|
||||
#: mod/openid.php:60
|
||||
msgid ""
|
||||
"Account not found and OpenID registration is not permitted on this site."
|
||||
msgstr "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site."
|
||||
|
||||
#: mod/uimport.php:50 mod/register.php:198
|
||||
msgid ""
|
||||
"This site has exceeded the number of allowed daily account registrations. "
|
||||
"Please try again tomorrow."
|
||||
msgstr "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain."
|
||||
|
||||
#: mod/uimport.php:64 mod/register.php:295
|
||||
msgid "Import"
|
||||
msgstr "Importer"
|
||||
|
||||
#: mod/uimport.php:66
|
||||
msgid "Move account"
|
||||
msgstr "Migrer le compte"
|
||||
|
||||
#: mod/uimport.php:67
|
||||
msgid "You can import an account from another Friendica server."
|
||||
msgstr "Vous pouvez importer un compte d'un autre serveur Friendica."
|
||||
|
||||
#: mod/uimport.php:68
|
||||
msgid ""
|
||||
"You need to export your account from the old server and upload it here. We "
|
||||
"will recreate your old account here with all your contacts. We will try also"
|
||||
" to inform your friends that you moved here."
|
||||
msgstr "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici."
|
||||
|
||||
#: mod/uimport.php:69
|
||||
msgid ""
|
||||
"This feature is experimental. We can't import contacts from the OStatus "
|
||||
"network (GNU Social/Statusnet) or from Diaspora"
|
||||
msgstr "Cette fonctionalité est expérimentale. Il n'est pas possible d'importer des contacts depuis le réseau OStatus (GNU Social/Statusnet) ou depuis Diaspora."
|
||||
|
||||
#: mod/uimport.php:70
|
||||
msgid "Account file"
|
||||
msgstr "Fichier du compte"
|
||||
|
||||
#: mod/uimport.php:70
|
||||
msgid ""
|
||||
"To export your account, go to \"Settings->Export your personal data\" and "
|
||||
"select \"Export account\""
|
||||
msgstr "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\""
|
||||
|
||||
#: mod/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:930
|
||||
#: mod/viewcontacts.php:97
|
||||
#, php-format
|
||||
msgid "Visit %s's profile [%s]"
|
||||
msgstr "Visiter le profil de %s [%s]"
|
||||
|
||||
#: mod/nogroup.php:42 mod/contacts.php:931
|
||||
msgid "Edit contact"
|
||||
msgstr "Éditer le contact"
|
||||
|
||||
#: mod/nogroup.php:63
|
||||
msgid "Contacts who are not members of a group"
|
||||
msgstr "Contacts qui n’appartiennent à aucun groupe"
|
||||
|
||||
#: mod/uexport.php:29
|
||||
msgid "Export account"
|
||||
msgstr "Exporter le compte"
|
||||
|
||||
#: mod/uexport.php:29
|
||||
msgid ""
|
||||
"Export your account info and contacts. Use this to make a backup of your "
|
||||
"account and/or to move it to another server."
|
||||
msgstr "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur."
|
||||
|
||||
#: mod/uexport.php:30
|
||||
msgid "Export all"
|
||||
msgstr "Tout exporter"
|
||||
|
||||
#: mod/uexport.php:30
|
||||
msgid ""
|
||||
"Export your accout info, contacts and all your items as json. Could be a "
|
||||
"very big file, and could take a lot of time. Use this to make a full backup "
|
||||
"of your account (photos are not exported)"
|
||||
msgstr "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos)."
|
||||
|
||||
#: mod/uexport.php:37 mod/settings.php:95
|
||||
msgid "Export personal data"
|
||||
msgstr "Exporter"
|
||||
|
||||
#: mod/invite.php:27
|
||||
msgid "Total invitation limit exceeded."
|
||||
msgstr "La limite d'invitation totale est éxédée."
|
||||
|
||||
#: mod/invite.php:49
|
||||
#, php-format
|
||||
msgid "%s : Not a valid email address."
|
||||
msgstr "%s : Adresse de courriel invalide."
|
||||
|
||||
#: mod/invite.php:73
|
||||
msgid "Please join us on Friendica"
|
||||
msgstr "Rejoignez-nous sur Friendica"
|
||||
|
||||
#: mod/invite.php:84
|
||||
msgid "Invitation limit exceeded. Please contact your site administrator."
|
||||
msgstr "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site."
|
||||
|
||||
#: mod/invite.php:89
|
||||
#, php-format
|
||||
msgid "%s : Message delivery failed."
|
||||
msgstr "%s : L'envoi du message a échoué."
|
||||
|
||||
#: mod/invite.php:93
|
||||
#, php-format
|
||||
msgid "%d message sent."
|
||||
msgid_plural "%d messages sent."
|
||||
msgstr[0] "%d message envoyé."
|
||||
msgstr[1] "%d messages envoyés."
|
||||
|
||||
#: mod/invite.php:112
|
||||
msgid "You have no more invitations available"
|
||||
msgstr "Vous n'avez plus d'invitations disponibles"
|
||||
|
||||
#: mod/invite.php:120
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Visit %s for a list of public sites that you can join. Friendica members on "
|
||||
"other sites can all connect with each other, as well as with members of many"
|
||||
" other social networks."
|
||||
msgstr "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux."
|
||||
|
||||
#: mod/invite.php:122
|
||||
#, php-format
|
||||
msgid ""
|
||||
"To accept this invitation, please visit and register at %s or any other "
|
||||
"public Friendica website."
|
||||
msgstr "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public."
|
||||
|
||||
#: mod/invite.php:123
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
|
||||
"web that is owned and controlled by its members. They can also connect with "
|
||||
"many traditional social networks. See %s for a list of alternate Friendica "
|
||||
"sites you can join."
|
||||
msgstr "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre."
|
||||
|
||||
#: mod/invite.php:126
|
||||
msgid ""
|
||||
"Our apologies. This system is not currently configured to connect with other"
|
||||
" public sites or invite members."
|
||||
msgstr "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres."
|
||||
|
||||
#: mod/invite.php:132
|
||||
msgid "Send invitations"
|
||||
msgstr "Envoyer des invitations"
|
||||
|
||||
#: mod/invite.php:133
|
||||
msgid "Enter email addresses, one per line:"
|
||||
msgstr "Entrez les adresses email, une par ligne :"
|
||||
|
||||
#: mod/invite.php:134 mod/wallmessage.php:151 mod/message.php:351
|
||||
#: mod/message.php:541
|
||||
msgid "Your message:"
|
||||
msgstr "Votre message:"
|
||||
|
||||
#: mod/invite.php:135
|
||||
msgid ""
|
||||
"You are cordially invited to join me and other close friends on Friendica - "
|
||||
"and help us to create a better social web."
|
||||
msgstr "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social."
|
||||
|
||||
#: mod/invite.php:137
|
||||
msgid "You will need to supply this invitation code: $invite_code"
|
||||
msgstr "Vous devrez fournir ce code d'invitation : $invite_code"
|
||||
|
||||
#: mod/invite.php:137
|
||||
msgid ""
|
||||
"Once you have registered, please connect with me via my profile page at:"
|
||||
msgstr "Une fois inscrit, connectez-vous à la page de mon profil sur :"
|
||||
|
||||
#: mod/invite.php:139
|
||||
msgid ""
|
||||
"For more information about the Friendica project and why we feel it is "
|
||||
"important, please visit http://friendica.com"
|
||||
msgstr "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com"
|
||||
|
||||
#: mod/invite.php:140 mod/localtime.php:45 mod/message.php:357
|
||||
#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154
|
||||
#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199
|
||||
#: mod/profiles.php:688 mod/events.php:506 mod/photos.php:1104
|
||||
#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590
|
||||
#: mod/photos.php:1638 mod/photos.php:1724 mod/contacts.php:577
|
||||
#: mod/install.php:272 mod/install.php:312 object/Item.php:720
|
||||
#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64
|
||||
#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59
|
||||
msgid "Submit"
|
||||
msgstr "Envoyer"
|
||||
|
||||
#: mod/fbrowser.php:133
|
||||
msgid "Files"
|
||||
msgstr "Fichiers"
|
||||
|
||||
#: mod/profperm.php:19 mod/group.php:72 index.php:400
|
||||
msgid "Permission denied"
|
||||
msgstr "Permission refusée"
|
||||
|
||||
#: mod/profperm.php:25 mod/profperm.php:56
|
||||
msgid "Invalid profile identifier."
|
||||
msgstr "Identifiant de profil invalide."
|
||||
|
||||
#: mod/profperm.php:102
|
||||
msgid "Profile Visibility Editor"
|
||||
msgstr "Éditer la visibilité du profil"
|
||||
|
||||
#: mod/profperm.php:106 mod/group.php:223
|
||||
msgid "Click on a contact to add or remove."
|
||||
msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer."
|
||||
|
||||
#: mod/profperm.php:115
|
||||
msgid "Visible To"
|
||||
msgstr "Visible par"
|
||||
|
||||
#: mod/profperm.php:131
|
||||
msgid "All Contacts (with secure profile access)"
|
||||
msgstr "Tous les contacts (ayant un accès sécurisé)"
|
||||
|
||||
#: mod/tagrm.php:41
|
||||
msgid "Tag removed"
|
||||
msgstr "Étiquette supprimée"
|
||||
|
||||
#: mod/tagrm.php:79
|
||||
msgid "Remove Item Tag"
|
||||
msgstr "Enlever l'étiquette de l'élément"
|
||||
|
||||
#: mod/tagrm.php:81
|
||||
msgid "Select a tag to remove: "
|
||||
msgstr "Sélectionner une étiquette à supprimer: "
|
||||
|
||||
#: mod/tagrm.php:93 mod/delegate.php:139
|
||||
msgid "Remove"
|
||||
msgstr "Utiliser comme photo de profil"
|
||||
|
||||
#: mod/repair_ostatus.php:14
|
||||
msgid "Resubscribing to OStatus contacts"
|
||||
msgstr "Réinscription aux contacts OStatus"
|
||||
|
||||
#: mod/repair_ostatus.php:30
|
||||
msgid "Error"
|
||||
msgstr "Erreur"
|
||||
|
||||
#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51
|
||||
msgid "Done"
|
||||
msgstr "Terminé"
|
||||
|
||||
#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73
|
||||
msgid "Keep this window open until done."
|
||||
msgstr "Veuillez garder cette fenêtre ouverte jusqu'à la fin."
|
||||
|
||||
#: mod/delegate.php:101
|
||||
msgid "No potential page delegates located."
|
||||
msgstr "Pas de délégataire potentiel."
|
||||
|
||||
#: mod/delegate.php:132
|
||||
msgid ""
|
||||
"Delegates are able to manage all aspects of this account/page except for "
|
||||
"basic account settings. Please do not delegate your personal account to "
|
||||
"anybody that you do not trust completely."
|
||||
msgstr "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue."
|
||||
|
||||
#: mod/delegate.php:133
|
||||
msgid "Existing Page Managers"
|
||||
msgstr "Gestionnaires existants"
|
||||
|
||||
#: mod/delegate.php:135
|
||||
msgid "Existing Page Delegates"
|
||||
msgstr "Délégataires existants"
|
||||
|
||||
#: mod/delegate.php:137
|
||||
msgid "Potential Delegates"
|
||||
msgstr "Délégataires potentiels"
|
||||
|
||||
#: mod/delegate.php:140
|
||||
msgid "Add"
|
||||
msgstr "Ajouter"
|
||||
|
||||
#: mod/delegate.php:141
|
||||
msgid "No entries."
|
||||
msgstr "Aucune entrée."
|
||||
|
||||
#: mod/credits.php:16
|
||||
#: mod/credits.php:19
|
||||
msgid "Credits"
|
||||
msgstr "Remerciements"
|
||||
|
||||
#: mod/credits.php:17
|
||||
#: mod/credits.php:20
|
||||
msgid ""
|
||||
"Friendica is a community project, that would not be possible without the "
|
||||
"help of many people. Here is a list of those who have contributed to the "
|
||||
"code or the translation of Friendica. Thank you all!"
|
||||
msgstr "Friendica est un projet communautaire, qui ne serait pas possible sans l'aide de beaucoup de gens. Voici une liste de ceux qui ont contribué au code ou à la traduction de Friendica. Merci à tous!"
|
||||
|
||||
#: mod/filer.php:30
|
||||
msgid "- select -"
|
||||
msgstr "- choisir -"
|
||||
#: mod/maintenance.php:21
|
||||
msgid "System down for maintenance"
|
||||
msgstr "Système indisponible pour cause de maintenance"
|
||||
|
||||
#: mod/subthread.php:103
|
||||
#, php-format
|
||||
msgid "%1$s is following %2$s's %3$s"
|
||||
msgstr "%1$s suit les %3$s de %2$s"
|
||||
#: mod/webfinger.php:10 mod/probe.php:9 mod/community.php:18
|
||||
#: mod/dfrn_request.php:807 mod/directory.php:34 mod/display.php:202
|
||||
#: mod/photos.php:967 mod/search.php:92 mod/search.php:98 mod/videos.php:205
|
||||
#: mod/viewcontacts.php:41
|
||||
msgid "Public access denied."
|
||||
msgstr "Accès public refusé."
|
||||
|
||||
#: mod/attach.php:8
|
||||
msgid "Item not available."
|
||||
msgstr "Elément non disponible."
|
||||
|
||||
#: mod/attach.php:20
|
||||
msgid "Item was not found."
|
||||
msgstr "Element introuvable."
|
||||
|
||||
#: mod/apps.php:7 index.php:244
|
||||
msgid "You must be logged in to use addons. "
|
||||
msgstr "Vous devez être connecté pour utiliser les greffons."
|
||||
|
||||
#: mod/apps.php:11
|
||||
msgid "Applications"
|
||||
msgstr "Applications"
|
||||
|
||||
#: mod/apps.php:14
|
||||
msgid "No installed applications."
|
||||
msgstr "Pas d'application installée."
|
||||
|
||||
#: mod/p.php:9
|
||||
msgid "Not Extended"
|
||||
#: mod/webfinger.php:11 mod/probe.php:10
|
||||
msgid "Only logged in users are permitted to perform a probing."
|
||||
msgstr ""
|
||||
|
||||
#: mod/newmember.php:6
|
||||
msgid "Welcome to Friendica"
|
||||
msgstr "Bienvenue sur Friendica"
|
||||
#: mod/bookmarklet.php:44
|
||||
msgid "The post was created"
|
||||
msgstr "La publication a été créée"
|
||||
|
||||
#: mod/newmember.php:8
|
||||
msgid "New Member Checklist"
|
||||
msgstr "Checklist du nouvel utilisateur"
|
||||
#: mod/help.php:45
|
||||
msgid "Help:"
|
||||
msgstr "Aide :"
|
||||
|
||||
#: mod/newmember.php:12
|
||||
msgid ""
|
||||
"We would like to offer some tips and links to help make your experience "
|
||||
"enjoyable. Click any item to visit the relevant page. A link to this page "
|
||||
"will be visible from your home page for two weeks after your initial "
|
||||
"registration and then will quietly disappear."
|
||||
msgstr "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement."
|
||||
#: mod/help.php:57 mod/fetch.php:17 mod/fetch.php:53 mod/fetch.php:66
|
||||
#: mod/p.php:20 mod/p.php:47 mod/p.php:56 index.php:287
|
||||
msgid "Not Found"
|
||||
msgstr "Non trouvé"
|
||||
|
||||
#: mod/newmember.php:14
|
||||
msgid "Getting Started"
|
||||
msgstr "Bien démarrer"
|
||||
#: mod/help.php:60 index.php:292
|
||||
msgid "Page not found."
|
||||
msgstr "Page introuvable."
|
||||
|
||||
#: mod/newmember.php:18
|
||||
msgid "Friendica Walk-Through"
|
||||
msgstr "Friendica pas-à-pas"
|
||||
|
||||
#: mod/newmember.php:18
|
||||
msgid ""
|
||||
"On your <em>Quick Start</em> page - find a brief introduction to your "
|
||||
"profile and network tabs, make some new connections, and find some groups to"
|
||||
" join."
|
||||
msgstr "Sur votre page d'accueil, dans <em>Conseils aux nouveaux venus</em> - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre."
|
||||
|
||||
#: mod/newmember.php:26
|
||||
msgid "Go to Your Settings"
|
||||
msgstr "Éditer vos Réglages"
|
||||
|
||||
#: mod/newmember.php:26
|
||||
msgid ""
|
||||
"On your <em>Settings</em> page - change your initial password. Also make a "
|
||||
"note of your Identity Address. This looks just like an email address - and "
|
||||
"will be useful in making friends on the free social web."
|
||||
msgstr "Sur la page des <em>Réglages</em> - changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre."
|
||||
|
||||
#: mod/newmember.php:28
|
||||
msgid ""
|
||||
"Review the other settings, particularly the privacy settings. An unpublished"
|
||||
" directory listing is like having an unlisted phone number. In general, you "
|
||||
"should probably publish your listing - unless all of your friends and "
|
||||
"potential friends know exactly how to find you."
|
||||
msgstr "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver."
|
||||
|
||||
#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:707
|
||||
msgid "Upload Profile Photo"
|
||||
msgstr "Téléverser une photo de profil"
|
||||
|
||||
#: mod/newmember.php:36
|
||||
msgid ""
|
||||
"Upload a profile photo if you have not done so already. Studies have shown "
|
||||
"that people with real photos of themselves are ten times more likely to make"
|
||||
" friends than people who do not."
|
||||
msgstr "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis."
|
||||
|
||||
#: mod/newmember.php:38
|
||||
msgid "Edit Your Profile"
|
||||
msgstr "Éditer votre Profil"
|
||||
|
||||
#: mod/newmember.php:38
|
||||
msgid ""
|
||||
"Edit your <strong>default</strong> profile to your liking. Review the "
|
||||
"settings for hiding your list of friends and hiding the profile from unknown"
|
||||
" visitors."
|
||||
msgstr "Éditez votre profil <strong>par défaut</strong> à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus."
|
||||
|
||||
#: mod/newmember.php:40
|
||||
msgid "Profile Keywords"
|
||||
msgstr "Mots-clés du profil"
|
||||
|
||||
#: mod/newmember.php:40
|
||||
msgid ""
|
||||
"Set some public keywords for your default profile which describe your "
|
||||
"interests. We may be able to find other people with similar interests and "
|
||||
"suggest friendships."
|
||||
msgstr "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent."
|
||||
|
||||
#: mod/newmember.php:44
|
||||
msgid "Connecting"
|
||||
msgstr "Connexions"
|
||||
|
||||
#: mod/newmember.php:51
|
||||
msgid "Importing Emails"
|
||||
msgstr "Importer courriels"
|
||||
|
||||
#: mod/newmember.php:51
|
||||
msgid ""
|
||||
"Enter your email access information on your Connector Settings page if you "
|
||||
"wish to import and interact with friends or mailing lists from your email "
|
||||
"INBOX"
|
||||
msgstr "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception."
|
||||
|
||||
#: mod/newmember.php:53
|
||||
msgid "Go to Your Contacts Page"
|
||||
msgstr "Consulter vos Contacts"
|
||||
|
||||
#: mod/newmember.php:53
|
||||
msgid ""
|
||||
"Your Contacts page is your gateway to managing friendships and connecting "
|
||||
"with friends on other networks. Typically you enter their address or site "
|
||||
"URL in the <em>Add New Contact</em> dialog."
|
||||
msgstr "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire <em>Ajouter un nouveau contact</em>."
|
||||
|
||||
#: mod/newmember.php:55
|
||||
msgid "Go to Your Site's Directory"
|
||||
msgstr "Consulter l'Annuaire de votre Site"
|
||||
|
||||
#: mod/newmember.php:55
|
||||
msgid ""
|
||||
"The Directory page lets you find other people in this network or other "
|
||||
"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
|
||||
"their profile page. Provide your own Identity Address if requested."
|
||||
msgstr "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien <em>Relier</em> ou <em>Suivre</em> sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité."
|
||||
|
||||
#: mod/newmember.php:57
|
||||
msgid "Finding New People"
|
||||
msgstr "Trouver de nouvelles personnes"
|
||||
|
||||
#: mod/newmember.php:57
|
||||
msgid ""
|
||||
"On the side panel of the Contacts page are several tools to find new "
|
||||
"friends. We can match people by interest, look up people by name or "
|
||||
"interest, and provide suggestions based on network relationships. On a brand"
|
||||
" new site, friend suggestions will usually begin to be populated within 24 "
|
||||
"hours."
|
||||
msgstr "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures."
|
||||
|
||||
#: mod/newmember.php:65
|
||||
msgid "Group Your Contacts"
|
||||
msgstr "Grouper vos contacts"
|
||||
|
||||
#: mod/newmember.php:65
|
||||
msgid ""
|
||||
"Once you have made some friends, organize them into private conversation "
|
||||
"groups from the sidebar of your Contacts page and then you can interact with"
|
||||
" each group privately on your Network page."
|
||||
msgstr "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau."
|
||||
|
||||
#: mod/newmember.php:68
|
||||
msgid "Why Aren't My Posts Public?"
|
||||
msgstr "Pourquoi mes éléments ne sont pas publics ?"
|
||||
|
||||
#: mod/newmember.php:68
|
||||
msgid ""
|
||||
"Friendica respects your privacy. By default, your posts will only show up to"
|
||||
" people you've added as friends. For more information, see the help section "
|
||||
"from the link above."
|
||||
msgstr "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus."
|
||||
|
||||
#: mod/newmember.php:73
|
||||
msgid "Getting Help"
|
||||
msgstr "Obtenir de l'aide"
|
||||
|
||||
#: mod/newmember.php:77
|
||||
msgid "Go to the Help Section"
|
||||
msgstr "Aller à la section Aide"
|
||||
|
||||
#: mod/newmember.php:77
|
||||
msgid ""
|
||||
"Our <strong>help</strong> pages may be consulted for detail on other program"
|
||||
" features and resources."
|
||||
msgstr "Nos pages d'<strong>aide</strong> peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources."
|
||||
|
||||
#: mod/removeme.php:46 mod/removeme.php:49
|
||||
msgid "Remove My Account"
|
||||
msgstr "Supprimer mon compte"
|
||||
|
||||
#: mod/removeme.php:47
|
||||
msgid ""
|
||||
"This will completely remove your account. Once this has been done it is not "
|
||||
"recoverable."
|
||||
msgstr "Ceci supprimera totalement votre compte. Cette opération est irréversible."
|
||||
|
||||
#: mod/removeme.php:48
|
||||
msgid "Please enter your password for verification:"
|
||||
msgstr "Merci de saisir votre mot de passe pour vérification :"
|
||||
|
||||
#: mod/editpost.php:17 mod/editpost.php:27
|
||||
msgid "Item not found"
|
||||
msgstr "Élément introuvable"
|
||||
|
||||
#: mod/editpost.php:40
|
||||
msgid "Edit post"
|
||||
msgstr "Éditer la publication"
|
||||
|
||||
#: mod/localtime.php:24
|
||||
#: mod/localtime.php:26
|
||||
msgid "Time Conversion"
|
||||
msgstr "Conversion temporelle"
|
||||
|
||||
#: mod/localtime.php:26
|
||||
#: mod/localtime.php:28
|
||||
msgid ""
|
||||
"Friendica provides this service for sharing events with other networks and "
|
||||
"friends in unknown timezones."
|
||||
msgstr "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire."
|
||||
|
||||
#: mod/localtime.php:30
|
||||
#: mod/localtime.php:32
|
||||
#, php-format
|
||||
msgid "UTC time: %s"
|
||||
msgstr "Temps UTC : %s"
|
||||
|
||||
#: mod/localtime.php:33
|
||||
#: mod/localtime.php:35
|
||||
#, php-format
|
||||
msgid "Current timezone: %s"
|
||||
msgstr "Zone de temps courante : %s"
|
||||
|
||||
#: mod/localtime.php:36
|
||||
#: mod/localtime.php:38
|
||||
#, php-format
|
||||
msgid "Converted localtime: %s"
|
||||
msgstr "Temps local converti : %s"
|
||||
|
||||
#: mod/localtime.php:41
|
||||
#: mod/localtime.php:43
|
||||
msgid "Please select your timezone:"
|
||||
msgstr "Sélectionner votre zone :"
|
||||
|
||||
#: mod/bookmarklet.php:41
|
||||
msgid "The post was created"
|
||||
msgstr "La publication a été créée"
|
||||
|
||||
#: mod/group.php:29
|
||||
msgid "Group created."
|
||||
msgstr "Groupe créé."
|
||||
|
||||
#: mod/group.php:35
|
||||
msgid "Could not create group."
|
||||
msgstr "Impossible de créer le groupe."
|
||||
|
||||
#: mod/group.php:47 mod/group.php:140
|
||||
msgid "Group not found."
|
||||
msgstr "Groupe introuvable."
|
||||
|
||||
#: mod/group.php:60
|
||||
msgid "Group name changed."
|
||||
msgstr "Groupe renommé."
|
||||
|
||||
#: mod/group.php:87
|
||||
msgid "Save Group"
|
||||
msgstr "Sauvegarder le groupe"
|
||||
|
||||
#: mod/group.php:93
|
||||
msgid "Create a group of contacts/friends."
|
||||
msgstr "Créez un groupe de contacts/amis."
|
||||
|
||||
#: mod/group.php:113
|
||||
msgid "Group removed."
|
||||
msgstr "Groupe enlevé."
|
||||
|
||||
#: mod/group.php:115
|
||||
msgid "Unable to remove group."
|
||||
msgstr "Impossible d'enlever le groupe."
|
||||
|
||||
#: mod/group.php:177
|
||||
msgid "Group Editor"
|
||||
msgstr "Éditeur de groupe"
|
||||
|
||||
#: mod/group.php:190
|
||||
msgid "Members"
|
||||
msgstr "Membres"
|
||||
|
||||
#: mod/group.php:192 mod/contacts.php:692
|
||||
msgid "All Contacts"
|
||||
msgstr "Tous les contacts"
|
||||
|
||||
#: mod/group.php:193 mod/content.php:130 mod/network.php:496
|
||||
msgid "Group is empty"
|
||||
msgstr "Groupe vide"
|
||||
|
||||
#: mod/wallmessage.php:42 mod/wallmessage.php:112
|
||||
#, php-format
|
||||
msgid "Number of daily wall messages for %s exceeded. Message failed."
|
||||
msgstr "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message."
|
||||
|
||||
#: mod/wallmessage.php:56 mod/message.php:71
|
||||
msgid "No recipient selected."
|
||||
msgstr "Pas de destinataire sélectionné."
|
||||
|
||||
#: mod/wallmessage.php:59
|
||||
msgid "Unable to check your home location."
|
||||
msgstr "Impossible de vérifier votre localisation."
|
||||
|
||||
#: mod/wallmessage.php:62 mod/message.php:78
|
||||
msgid "Message could not be sent."
|
||||
msgstr "Impossible d'envoyer le message."
|
||||
|
||||
#: mod/wallmessage.php:65 mod/message.php:81
|
||||
msgid "Message collection failure."
|
||||
msgstr "Récupération des messages infructueuse."
|
||||
|
||||
#: mod/wallmessage.php:68 mod/message.php:84
|
||||
msgid "Message sent."
|
||||
msgstr "Message envoyé."
|
||||
|
||||
#: mod/wallmessage.php:86 mod/wallmessage.php:95
|
||||
msgid "No recipient."
|
||||
msgstr "Pas de destinataire."
|
||||
|
||||
#: mod/wallmessage.php:142 mod/message.php:341
|
||||
msgid "Send Private Message"
|
||||
msgstr "Envoyer un message privé"
|
||||
|
||||
#: mod/wallmessage.php:143
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you wish for %s to respond, please check that the privacy settings on "
|
||||
"your site allow private mail from unknown senders."
|
||||
msgstr "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus."
|
||||
|
||||
#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536
|
||||
msgid "To:"
|
||||
msgstr "À:"
|
||||
|
||||
#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538
|
||||
msgid "Subject:"
|
||||
msgstr "Sujet:"
|
||||
|
||||
#: mod/share.php:38
|
||||
msgid "link"
|
||||
msgstr "lien"
|
||||
|
||||
#: mod/api.php:76 mod/api.php:102
|
||||
msgid "Authorize application connection"
|
||||
msgstr "Autoriser l'application à se connecter"
|
||||
|
||||
#: mod/api.php:77
|
||||
msgid "Return to your app and insert this Securty Code:"
|
||||
msgstr "Retournez à votre application et saisissez ce Code de Sécurité : "
|
||||
|
||||
#: mod/api.php:89
|
||||
msgid "Please login to continue."
|
||||
msgstr "Merci de vous connecter pour continuer."
|
||||
|
||||
#: mod/api.php:104
|
||||
msgid ""
|
||||
"Do you want to authorize this application to access your posts and contacts,"
|
||||
" and/or create new posts for you?"
|
||||
msgstr "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à créer des billets à votre place?"
|
||||
|
||||
#: mod/api.php:106 mod/profiles.php:648 mod/profiles.php:652
|
||||
#: mod/profiles.php:677 mod/register.php:246 mod/settings.php:1163
|
||||
#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181
|
||||
#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198
|
||||
#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231
|
||||
#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
|
||||
#: mod/dfrn_request.php:862 mod/follow.php:110
|
||||
msgid "No"
|
||||
msgstr "Non"
|
||||
|
||||
#: mod/babel.php:17
|
||||
msgid "Source (bbcode) text:"
|
||||
msgstr "Texte source (bbcode) :"
|
||||
|
||||
#: mod/babel.php:23
|
||||
msgid "Source (Diaspora) text to convert to BBcode:"
|
||||
msgstr "Texte source (Diaspora) à convertir en BBcode :"
|
||||
|
||||
#: mod/babel.php:31
|
||||
msgid "Source input: "
|
||||
msgstr "Source input : "
|
||||
|
||||
#: mod/babel.php:35
|
||||
msgid "bb2html (raw HTML): "
|
||||
msgstr "bb2html (HTML brut)"
|
||||
|
||||
#: mod/babel.php:39
|
||||
msgid "bb2html: "
|
||||
msgstr "bb2html : "
|
||||
|
||||
#: mod/babel.php:43
|
||||
msgid "bb2html2bb: "
|
||||
msgstr "bb2html2bb : "
|
||||
|
||||
#: mod/babel.php:47
|
||||
msgid "bb2md: "
|
||||
msgstr "bb2md : "
|
||||
|
||||
#: mod/babel.php:51
|
||||
msgid "bb2md2html: "
|
||||
msgstr "bb2md2html : "
|
||||
|
||||
#: mod/babel.php:55
|
||||
msgid "bb2dia2bb: "
|
||||
msgstr "bb2dia2bb : "
|
||||
|
||||
#: mod/babel.php:59
|
||||
msgid "bb2md2html2bb: "
|
||||
msgstr "bb2md2html2bb : "
|
||||
|
||||
#: mod/babel.php:69
|
||||
msgid "Source input (Diaspora format): "
|
||||
msgstr "Texte source (format Diaspora) :"
|
||||
|
||||
#: mod/babel.php:74
|
||||
msgid "diaspora2bb: "
|
||||
msgstr "diaspora2bb :"
|
||||
|
||||
#: mod/ostatus_subscribe.php:14
|
||||
msgid "Subscribing to OStatus contacts"
|
||||
msgstr "Inscription aux contacts OStatus"
|
||||
|
||||
#: mod/ostatus_subscribe.php:25
|
||||
msgid "No contact provided."
|
||||
msgstr "Pas de contact fourni."
|
||||
|
||||
#: mod/ostatus_subscribe.php:30
|
||||
msgid "Couldn't fetch information for contact."
|
||||
msgstr "Impossible de récupérer les informations pour ce contact."
|
||||
|
||||
#: mod/ostatus_subscribe.php:38
|
||||
msgid "Couldn't fetch friends for contact."
|
||||
msgstr "Impossible de récupérer les amis de ce contact."
|
||||
|
||||
#: mod/ostatus_subscribe.php:65
|
||||
msgid "success"
|
||||
msgstr "réussite"
|
||||
|
||||
#: mod/ostatus_subscribe.php:67
|
||||
msgid "failed"
|
||||
msgstr "échec"
|
||||
|
||||
#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245
|
||||
msgid "ignored"
|
||||
msgstr "ignoré"
|
||||
|
||||
#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537
|
||||
#, php-format
|
||||
msgid "%1$s welcomes %2$s"
|
||||
msgstr "%1$s accueille %2$s"
|
||||
|
||||
#: mod/message.php:75
|
||||
msgid "Unable to locate contact information."
|
||||
msgstr "Impossible de localiser les informations du contact."
|
||||
|
||||
#: mod/message.php:215
|
||||
msgid "Do you really want to delete this message?"
|
||||
msgstr "Voulez-vous vraiment supprimer ce message ?"
|
||||
|
||||
#: mod/message.php:235
|
||||
msgid "Message deleted."
|
||||
msgstr "Message supprimé."
|
||||
|
||||
#: mod/message.php:266
|
||||
msgid "Conversation removed."
|
||||
msgstr "Conversation supprimée."
|
||||
|
||||
#: mod/message.php:383
|
||||
msgid "No messages."
|
||||
msgstr "Aucun message."
|
||||
|
||||
#: mod/message.php:426
|
||||
msgid "Message not available."
|
||||
msgstr "Message indisponible."
|
||||
|
||||
#: mod/message.php:503
|
||||
msgid "Delete message"
|
||||
msgstr "Effacer message"
|
||||
|
||||
#: mod/message.php:529 mod/message.php:609
|
||||
msgid "Delete conversation"
|
||||
msgstr "Effacer conversation"
|
||||
|
||||
#: mod/message.php:531
|
||||
msgid ""
|
||||
"No secure communications available. You <strong>may</strong> be able to "
|
||||
"respond from the sender's profile page."
|
||||
msgstr "Pas de communications sécurisées possibles. Vous serez <strong>peut-être</strong> en mesure de répondre depuis la page de profil de l'émetteur."
|
||||
|
||||
#: mod/message.php:535
|
||||
msgid "Send Reply"
|
||||
msgstr "Répondre"
|
||||
|
||||
#: mod/message.php:579
|
||||
#, php-format
|
||||
msgid "Unknown sender - %s"
|
||||
msgstr "Émetteur inconnu - %s"
|
||||
|
||||
#: mod/message.php:581
|
||||
#, php-format
|
||||
msgid "You and %s"
|
||||
msgstr "Vous et %s"
|
||||
|
||||
#: mod/message.php:583
|
||||
#, php-format
|
||||
msgid "%s and You"
|
||||
msgstr "%s et vous"
|
||||
|
||||
#: mod/message.php:612
|
||||
msgid "D, d M Y - g:i A"
|
||||
msgstr "D, d M Y - g:i A"
|
||||
|
||||
#: mod/message.php:615
|
||||
#, php-format
|
||||
msgid "%d message"
|
||||
msgid_plural "%d messages"
|
||||
msgstr[0] "%d message"
|
||||
msgstr[1] "%d messages"
|
||||
|
||||
#: mod/manage.php:139
|
||||
msgid "Manage Identities and/or Pages"
|
||||
msgstr "Gérer les identités et/ou les pages"
|
||||
|
||||
#: mod/manage.php:140
|
||||
msgid ""
|
||||
"Toggle between different identities or community/group pages which share "
|
||||
"your account details or which you have been granted \"manage\" permissions"
|
||||
msgstr "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer."
|
||||
|
||||
#: mod/manage.php:141
|
||||
msgid "Select an identity to manage: "
|
||||
msgstr "Choisir une identité à gérer: "
|
||||
|
||||
#: mod/crepair.php:87
|
||||
msgid "Contact settings applied."
|
||||
msgstr "Réglages du contact appliqués."
|
||||
|
||||
#: mod/crepair.php:89
|
||||
msgid "Contact update failed."
|
||||
msgstr "Impossible d'appliquer les réglages."
|
||||
|
||||
#: mod/crepair.php:114 mod/fsuggest.php:20 mod/fsuggest.php:92
|
||||
#: mod/dfrn_confirm.php:126
|
||||
msgid "Contact not found."
|
||||
msgstr "Contact introuvable."
|
||||
|
||||
#: mod/crepair.php:120
|
||||
msgid ""
|
||||
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
|
||||
" information your communications with this contact may stop working."
|
||||
msgstr "<strong>ATTENTION: Manipulation réservée aux experts</strong>, toute information incorrecte pourrait empêcher la communication avec ce contact."
|
||||
|
||||
#: mod/crepair.php:121
|
||||
msgid ""
|
||||
"Please use your browser 'Back' button <strong>now</strong> if you are "
|
||||
"uncertain what to do on this page."
|
||||
msgstr "une photo"
|
||||
|
||||
#: mod/crepair.php:134 mod/crepair.php:136
|
||||
msgid "No mirroring"
|
||||
msgstr "Pas de miroir"
|
||||
|
||||
#: mod/crepair.php:134
|
||||
msgid "Mirror as forwarded posting"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:134 mod/crepair.php:136
|
||||
msgid "Mirror as my own posting"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:150
|
||||
msgid "Return to contact editor"
|
||||
msgstr "Retour à l'éditeur de contact"
|
||||
|
||||
#: mod/crepair.php:152
|
||||
msgid "Refetch contact data"
|
||||
msgstr "Récupérer à nouveau les données de contact"
|
||||
|
||||
#: mod/crepair.php:156
|
||||
msgid "Remote Self"
|
||||
msgstr "Identité à distance"
|
||||
|
||||
#: mod/crepair.php:159
|
||||
msgid "Mirror postings from this contact"
|
||||
msgstr "Copier les publications de ce contact"
|
||||
|
||||
#: mod/crepair.php:161
|
||||
msgid ""
|
||||
"Mark this contact as remote_self, this will cause friendica to repost new "
|
||||
"entries from this contact."
|
||||
msgstr "Marquer ce contact comme étant remote_self, friendica republiera alors les nouvelles entrées de ce contact."
|
||||
|
||||
#: mod/crepair.php:165 mod/settings.php:680 mod/settings.php:706
|
||||
#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1438
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#: mod/crepair.php:166
|
||||
msgid "Account Nickname"
|
||||
msgstr "Pseudo du compte"
|
||||
|
||||
#: mod/crepair.php:167
|
||||
msgid "@Tagname - overrides Name/Nickname"
|
||||
msgstr "@NomEtiquette - prend le pas sur Nom/Pseudo"
|
||||
|
||||
#: mod/crepair.php:168
|
||||
msgid "Account URL"
|
||||
msgstr "URL du compte"
|
||||
|
||||
#: mod/crepair.php:169
|
||||
msgid "Friend Request URL"
|
||||
msgstr "Echec du téléversement de l'image."
|
||||
|
||||
#: mod/crepair.php:170
|
||||
msgid "Friend Confirm URL"
|
||||
msgstr "Accès public refusé."
|
||||
|
||||
#: mod/crepair.php:171
|
||||
msgid "Notification Endpoint URL"
|
||||
msgstr "Aucune photo sélectionnée"
|
||||
|
||||
#: mod/crepair.php:172
|
||||
msgid "Poll/Feed URL"
|
||||
msgstr "Téléverser des photos"
|
||||
|
||||
#: mod/crepair.php:173
|
||||
msgid "New photo from this URL"
|
||||
msgstr "Nouvelle photo depuis cette URL"
|
||||
|
||||
#: mod/content.php:119 mod/network.php:469
|
||||
msgid "No such group"
|
||||
msgstr "Groupe inexistant"
|
||||
|
||||
#: mod/content.php:135 mod/network.php:500
|
||||
#, php-format
|
||||
msgid "Group: %s"
|
||||
msgstr "Group : %s"
|
||||
|
||||
#: mod/content.php:325 object/Item.php:95
|
||||
msgid "This entry was edited"
|
||||
msgstr "Cette entrée à été édité"
|
||||
|
||||
#: mod/content.php:621 object/Item.php:429
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
msgstr[0] "%d commentaire"
|
||||
msgstr[1] "%d commentaires"
|
||||
|
||||
#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117
|
||||
msgid "Private Message"
|
||||
msgstr "Message privé"
|
||||
|
||||
#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263
|
||||
msgid "I like this (toggle)"
|
||||
msgstr "J'aime"
|
||||
|
||||
#: mod/content.php:702 object/Item.php:263
|
||||
msgid "like"
|
||||
msgstr "aime"
|
||||
|
||||
#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264
|
||||
msgid "I don't like this (toggle)"
|
||||
msgstr "Je n'aime pas"
|
||||
|
||||
#: mod/content.php:703 object/Item.php:264
|
||||
msgid "dislike"
|
||||
msgstr "n'aime pas"
|
||||
|
||||
#: mod/content.php:705 object/Item.php:266
|
||||
msgid "Share this"
|
||||
msgstr "Partager"
|
||||
|
||||
#: mod/content.php:705 object/Item.php:266
|
||||
msgid "share"
|
||||
msgstr "partager"
|
||||
|
||||
#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635
|
||||
#: mod/photos.php:1721 object/Item.php:717
|
||||
msgid "This is you"
|
||||
msgstr "C'est vous"
|
||||
|
||||
#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589
|
||||
#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403
|
||||
#: object/Item.php:719 boot.php:971
|
||||
msgid "Comment"
|
||||
msgstr "Commenter"
|
||||
|
||||
#: mod/content.php:729 object/Item.php:721
|
||||
msgid "Bold"
|
||||
msgstr "Gras"
|
||||
|
||||
#: mod/content.php:730 object/Item.php:722
|
||||
msgid "Italic"
|
||||
msgstr "Italique"
|
||||
|
||||
#: mod/content.php:731 object/Item.php:723
|
||||
msgid "Underline"
|
||||
msgstr "Souligné"
|
||||
|
||||
#: mod/content.php:732 object/Item.php:724
|
||||
msgid "Quote"
|
||||
msgstr "Citation"
|
||||
|
||||
#: mod/content.php:733 object/Item.php:725
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#: mod/content.php:734 object/Item.php:726
|
||||
msgid "Image"
|
||||
msgstr "Image"
|
||||
|
||||
#: mod/content.php:735 object/Item.php:727
|
||||
msgid "Link"
|
||||
msgstr "Lien"
|
||||
|
||||
#: mod/content.php:736 object/Item.php:728
|
||||
msgid "Video"
|
||||
msgstr "Vidéo"
|
||||
|
||||
#: mod/content.php:746 mod/settings.php:740 object/Item.php:122
|
||||
#: object/Item.php:124
|
||||
msgid "Edit"
|
||||
msgstr "Éditer"
|
||||
|
||||
#: mod/content.php:771 object/Item.php:227
|
||||
msgid "add star"
|
||||
msgstr "mett en avant"
|
||||
|
||||
#: mod/content.php:772 object/Item.php:228
|
||||
msgid "remove star"
|
||||
msgstr "ne plus mettre en avant"
|
||||
|
||||
#: mod/content.php:773 object/Item.php:229
|
||||
msgid "toggle star status"
|
||||
msgstr "mettre en avant"
|
||||
|
||||
#: mod/content.php:776 object/Item.php:232
|
||||
msgid "starred"
|
||||
msgstr "mis en avant"
|
||||
|
||||
#: mod/content.php:777 mod/content.php:798 object/Item.php:252
|
||||
msgid "add tag"
|
||||
msgstr "ajouter une étiquette"
|
||||
|
||||
#: mod/content.php:787 object/Item.php:240
|
||||
msgid "ignore thread"
|
||||
msgstr "ignorer le fil"
|
||||
|
||||
#: mod/content.php:788 object/Item.php:241
|
||||
msgid "unignore thread"
|
||||
msgstr "Ne plus ignorer le fil"
|
||||
|
||||
#: mod/content.php:789 object/Item.php:242
|
||||
msgid "toggle ignore status"
|
||||
msgstr "Ignorer le statut"
|
||||
|
||||
#: mod/content.php:803 object/Item.php:137
|
||||
msgid "save to folder"
|
||||
msgstr "sauver vers dossier"
|
||||
|
||||
#: mod/content.php:848 object/Item.php:201
|
||||
msgid "I will attend"
|
||||
msgstr "Je vais participer"
|
||||
|
||||
#: mod/content.php:848 object/Item.php:201
|
||||
msgid "I will not attend"
|
||||
msgstr "Je ne vais pas participer"
|
||||
|
||||
#: mod/content.php:848 object/Item.php:201
|
||||
msgid "I might attend"
|
||||
msgstr "Je vais peut-être participer"
|
||||
|
||||
#: mod/content.php:912 object/Item.php:369
|
||||
msgid "to"
|
||||
msgstr "à"
|
||||
|
||||
#: mod/content.php:913 object/Item.php:371
|
||||
msgid "Wall-to-Wall"
|
||||
msgstr "Inter-mur"
|
||||
|
||||
#: mod/content.php:914 object/Item.php:372
|
||||
msgid "via Wall-To-Wall:"
|
||||
msgstr "en Inter-mur:"
|
||||
|
||||
#: mod/fsuggest.php:63
|
||||
msgid "Friend suggestion sent."
|
||||
msgstr "Suggestion d'amitié/contact envoyée."
|
||||
|
||||
#: mod/fsuggest.php:97
|
||||
msgid "Suggest Friends"
|
||||
msgstr "Suggérer des amis/contacts"
|
||||
|
||||
#: mod/fsuggest.php:99
|
||||
#, php-format
|
||||
msgid "Suggest a friend for %s"
|
||||
msgstr "Suggérer un ami/contact pour %s"
|
||||
|
||||
#: mod/mood.php:133
|
||||
msgid "Mood"
|
||||
msgstr "Humeur"
|
||||
|
||||
#: mod/mood.php:134
|
||||
msgid "Set your current mood and tell your friends"
|
||||
msgstr "Spécifiez votre humeur du moment, et informez vos amis"
|
||||
|
||||
#: mod/poke.php:192
|
||||
msgid "Poke/Prod"
|
||||
msgstr "Solliciter"
|
||||
|
||||
#: mod/poke.php:193
|
||||
msgid "poke, prod or do other things to somebody"
|
||||
msgstr "solliciter (poke/...) quelqu'un"
|
||||
|
||||
#: mod/poke.php:194
|
||||
msgid "Recipient"
|
||||
msgstr "Destinataire"
|
||||
|
||||
#: mod/poke.php:195
|
||||
msgid "Choose what you wish to do to recipient"
|
||||
msgstr "Choisissez ce que vous voulez faire au destinataire"
|
||||
|
||||
#: mod/poke.php:198
|
||||
msgid "Make this post private"
|
||||
msgstr "Rendez ce message privé"
|
||||
|
||||
#: mod/profile_photo.php:44
|
||||
msgid "Image uploaded but image cropping failed."
|
||||
msgstr "Image envoyée, mais impossible de la retailler."
|
||||
|
||||
#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91
|
||||
#: mod/profile_photo.php:314
|
||||
#, php-format
|
||||
msgid "Image size reduction [%s] failed."
|
||||
msgstr "Réduction de la taille de l'image [%s] échouée."
|
||||
|
||||
#: mod/profile_photo.php:124
|
||||
msgid ""
|
||||
"Shift-reload the page or clear browser cache if the new photo does not "
|
||||
"display immediately."
|
||||
msgstr "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement."
|
||||
|
||||
#: mod/profile_photo.php:134
|
||||
msgid "Unable to process image"
|
||||
msgstr "Impossible de traiter l'image"
|
||||
|
||||
#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151
|
||||
#, php-format
|
||||
msgid "Image exceeds size limit of %s"
|
||||
msgstr "L'image dépasse la taille limite de %s"
|
||||
|
||||
#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188
|
||||
msgid "Unable to process image."
|
||||
msgstr "Impossible de traiter l'image."
|
||||
|
||||
#: mod/profile_photo.php:248
|
||||
msgid "Upload File:"
|
||||
msgstr "Fichier à téléverser:"
|
||||
|
||||
#: mod/profile_photo.php:249
|
||||
msgid "Select a profile:"
|
||||
msgstr "Choisir un profil:"
|
||||
|
||||
#: mod/profile_photo.php:251
|
||||
msgid "Upload"
|
||||
msgstr "Téléverser"
|
||||
|
||||
#: mod/profile_photo.php:254
|
||||
msgid "or"
|
||||
msgstr "ou"
|
||||
|
||||
#: mod/profile_photo.php:254
|
||||
msgid "skip this step"
|
||||
msgstr "ignorer cette étape"
|
||||
|
||||
#: mod/profile_photo.php:254
|
||||
msgid "select a photo from your photo albums"
|
||||
msgstr "choisissez une photo depuis vos albums"
|
||||
|
||||
#: mod/profile_photo.php:268
|
||||
msgid "Crop Image"
|
||||
msgstr "(Re)cadrer l'image"
|
||||
|
||||
#: mod/profile_photo.php:269
|
||||
msgid "Please adjust the image cropping for optimum viewing."
|
||||
msgstr "Ajustez le cadre de l'image pour une visualisation optimale."
|
||||
|
||||
#: mod/profile_photo.php:271
|
||||
msgid "Done Editing"
|
||||
msgstr "Édition terminée"
|
||||
|
||||
#: mod/profile_photo.php:305
|
||||
msgid "Image uploaded successfully."
|
||||
msgstr "Image téléversée avec succès."
|
||||
|
||||
#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221
|
||||
msgid "Image upload failed."
|
||||
msgstr "Le téléversement de l'image a échoué."
|
||||
|
||||
#: mod/regmod.php:55
|
||||
msgid "Account approved."
|
||||
msgstr "Inscription validée."
|
||||
|
||||
#: mod/regmod.php:92
|
||||
#, php-format
|
||||
msgid "Registration revoked for %s"
|
||||
msgstr "Inscription révoquée pour %s"
|
||||
|
||||
#: mod/regmod.php:104
|
||||
msgid "Please login."
|
||||
msgstr "Merci de vous connecter."
|
||||
|
||||
#: mod/notifications.php:35
|
||||
msgid "Invalid request identifier."
|
||||
msgstr "Identifiant de demande invalide."
|
||||
|
||||
#: mod/notifications.php:44 mod/notifications.php:180
|
||||
#: mod/notifications.php:252
|
||||
msgid "Discard"
|
||||
msgstr "Rejeter"
|
||||
|
||||
#: mod/notifications.php:60 mod/notifications.php:179
|
||||
#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806
|
||||
#: mod/contacts.php:991
|
||||
msgid "Ignore"
|
||||
msgstr "Ignorer"
|
||||
|
||||
#: mod/notifications.php:105
|
||||
msgid "Network Notifications"
|
||||
msgstr "Notifications du réseau"
|
||||
|
||||
#: mod/notifications.php:117
|
||||
msgid "Personal Notifications"
|
||||
msgstr "Notifications personnelles"
|
||||
|
||||
#: mod/notifications.php:123
|
||||
msgid "Home Notifications"
|
||||
msgstr "Notifications de page d'accueil"
|
||||
|
||||
#: mod/notifications.php:152
|
||||
msgid "Show Ignored Requests"
|
||||
msgstr "Voir les demandes ignorées"
|
||||
|
||||
#: mod/notifications.php:152
|
||||
msgid "Hide Ignored Requests"
|
||||
msgstr "Cacher les demandes ignorées"
|
||||
|
||||
#: mod/notifications.php:164 mod/notifications.php:222
|
||||
msgid "Notification type: "
|
||||
msgstr "Type de notification: "
|
||||
|
||||
#: mod/notifications.php:167
|
||||
#, php-format
|
||||
msgid "suggested by %s"
|
||||
msgstr "suggéré(e) par %s"
|
||||
|
||||
#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613
|
||||
msgid "Hide this contact from others"
|
||||
msgstr "Cacher ce contact aux autres"
|
||||
|
||||
#: mod/notifications.php:173 mod/notifications.php:240
|
||||
msgid "Post a new friend activity"
|
||||
msgstr "Poster une nouvelle avtivité d'ami"
|
||||
|
||||
#: mod/notifications.php:173 mod/notifications.php:240
|
||||
msgid "if applicable"
|
||||
msgstr "si possible"
|
||||
|
||||
#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412
|
||||
msgid "Approve"
|
||||
msgstr "Approuver"
|
||||
|
||||
#: mod/notifications.php:195
|
||||
msgid "Claims to be known to you: "
|
||||
msgstr "Prétend que vous le connaissez: "
|
||||
|
||||
#: mod/notifications.php:196
|
||||
msgid "yes"
|
||||
msgstr "oui"
|
||||
|
||||
#: mod/notifications.php:196
|
||||
msgid "no"
|
||||
msgstr "non"
|
||||
|
||||
#: mod/notifications.php:197
|
||||
msgid ""
|
||||
"Shall your connection be bidirectional or not? \"Friend\" implies that you "
|
||||
"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that "
|
||||
"you allow to read but you do not want to read theirs. Approve as: "
|
||||
msgstr "Doit être votre connexion bidirectionnelle ou non? \"Ami\" implique que vous autorisiez à lire et vous vous abonnez à leurs postes. \"Fan / Admirateur\" signifie que vous permettez de lire, mais vous ne voulez pas lire les leurs. Approuver en:"
|
||||
|
||||
#: mod/notifications.php:200
|
||||
msgid ""
|
||||
"Shall your connection be bidirectional or not? \"Friend\" implies that you "
|
||||
"allow to read and you subscribe to their posts. \"Sharer\" means that you "
|
||||
"allow to read but you do not want to read theirs. Approve as: "
|
||||
msgstr "Doit être votre connexion bidirectionnelle ou non? \"Ami\" implique que vous autorisiez à lire et vous vous abonnez à leurs postes. \"Fan / Admirateur\" signifie que vous permettez de lire, mais vous ne voulez pas lire les leurs. Approuver en:"
|
||||
|
||||
#: mod/notifications.php:209
|
||||
msgid "Friend"
|
||||
msgstr "Ami"
|
||||
|
||||
#: mod/notifications.php:210
|
||||
msgid "Sharer"
|
||||
msgstr "Initiateur du partage"
|
||||
|
||||
#: mod/notifications.php:210
|
||||
msgid "Fan/Admirer"
|
||||
msgstr "Fan/Admirateur"
|
||||
|
||||
#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126
|
||||
msgid "Profile URL"
|
||||
msgstr "URL du Profil"
|
||||
|
||||
#: mod/notifications.php:260
|
||||
msgid "No introductions."
|
||||
msgstr "Aucune demande d'introduction."
|
||||
|
||||
#: mod/notifications.php:299
|
||||
msgid "Show unread"
|
||||
msgstr "Afficher non-lus"
|
||||
|
||||
#: mod/notifications.php:299
|
||||
msgid "Show all"
|
||||
msgstr "Tout afficher"
|
||||
|
||||
#: mod/notifications.php:305
|
||||
#, php-format
|
||||
msgid "No more %s notifications."
|
||||
msgstr "Aucune notification de %s"
|
||||
|
||||
#: mod/profiles.php:19 mod/profiles.php:134 mod/profiles.php:180
|
||||
#: mod/profiles.php:617 mod/dfrn_confirm.php:70
|
||||
msgid "Profile not found."
|
||||
msgstr "Profil introuvable."
|
||||
|
||||
#: mod/profiles.php:38
|
||||
msgid "Profile deleted."
|
||||
msgstr "Profil supprimé."
|
||||
|
||||
#: mod/profiles.php:56 mod/profiles.php:90
|
||||
msgid "Profile-"
|
||||
msgstr "Profil-"
|
||||
|
||||
#: mod/profiles.php:75 mod/profiles.php:118
|
||||
msgid "New profile created."
|
||||
msgstr "Nouveau profil créé."
|
||||
|
||||
#: mod/profiles.php:96
|
||||
msgid "Profile unavailable to clone."
|
||||
msgstr "Ce profil ne peut être cloné."
|
||||
|
||||
#: mod/profiles.php:190
|
||||
msgid "Profile Name is required."
|
||||
msgstr "Le nom du profil est requis."
|
||||
|
||||
#: mod/profiles.php:338
|
||||
msgid "Marital Status"
|
||||
msgstr "Statut marital"
|
||||
|
||||
#: mod/profiles.php:342
|
||||
msgid "Romantic Partner"
|
||||
msgstr "Partenaire / conjoint"
|
||||
|
||||
#: mod/profiles.php:354
|
||||
msgid "Work/Employment"
|
||||
msgstr "Travail / Occupation"
|
||||
|
||||
#: mod/profiles.php:357
|
||||
msgid "Religion"
|
||||
msgstr "Religion"
|
||||
|
||||
#: mod/profiles.php:361
|
||||
msgid "Political Views"
|
||||
msgstr "Tendance politique"
|
||||
|
||||
#: mod/profiles.php:365
|
||||
msgid "Gender"
|
||||
msgstr "Sexe"
|
||||
|
||||
#: mod/profiles.php:369
|
||||
msgid "Sexual Preference"
|
||||
msgstr "Préférence sexuelle"
|
||||
|
||||
#: mod/profiles.php:373
|
||||
msgid "XMPP"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profiles.php:377
|
||||
msgid "Homepage"
|
||||
msgstr "Site internet"
|
||||
|
||||
#: mod/profiles.php:381 mod/profiles.php:702
|
||||
msgid "Interests"
|
||||
msgstr "Centres d'intérêt"
|
||||
|
||||
#: mod/profiles.php:385
|
||||
msgid "Address"
|
||||
msgstr "Adresse"
|
||||
|
||||
#: mod/profiles.php:392 mod/profiles.php:698
|
||||
msgid "Location"
|
||||
msgstr "Localisation"
|
||||
|
||||
#: mod/profiles.php:477
|
||||
msgid "Profile updated."
|
||||
msgstr "Profil mis à jour."
|
||||
|
||||
#: mod/profiles.php:564
|
||||
msgid " and "
|
||||
msgstr " et "
|
||||
|
||||
#: mod/profiles.php:572
|
||||
msgid "public profile"
|
||||
msgstr "profil public"
|
||||
|
||||
#: mod/profiles.php:575
|
||||
#, php-format
|
||||
msgid "%1$s changed %2$s to “%3$s”"
|
||||
msgstr "%1$s a changé %2$s en “%3$s”"
|
||||
|
||||
#: mod/profiles.php:576
|
||||
#, php-format
|
||||
msgid " - Visit %1$s's %2$s"
|
||||
msgstr "Visiter le %2$s de %1$s"
|
||||
|
||||
#: mod/profiles.php:579
|
||||
#, php-format
|
||||
msgid "%1$s has an updated %2$s, changing %3$s."
|
||||
msgstr "%1$s a mis à jour son %2$s, en modifiant %3$s."
|
||||
|
||||
#: mod/profiles.php:645
|
||||
msgid "Hide contacts and friends:"
|
||||
msgstr "Cacher mes contacts et amis :"
|
||||
|
||||
#: mod/profiles.php:650
|
||||
msgid "Hide your contact/friend list from viewers of this profile?"
|
||||
msgstr "Cacher ma liste d'amis / contacts des visiteurs de ce profil ?"
|
||||
|
||||
#: mod/profiles.php:674
|
||||
msgid "Show more profile fields:"
|
||||
msgstr "Afficher plus d'infos de profil:"
|
||||
|
||||
#: mod/profiles.php:686
|
||||
msgid "Profile Actions"
|
||||
msgstr "Actions de Profil"
|
||||
|
||||
#: mod/profiles.php:687
|
||||
msgid "Edit Profile Details"
|
||||
msgstr "Éditer les détails du profil"
|
||||
|
||||
#: mod/profiles.php:689
|
||||
msgid "Change Profile Photo"
|
||||
msgstr "Changer la photo du profil"
|
||||
|
||||
#: mod/profiles.php:690
|
||||
msgid "View this profile"
|
||||
msgstr "Voir ce profil"
|
||||
|
||||
#: mod/profiles.php:692
|
||||
msgid "Create a new profile using these settings"
|
||||
msgstr "Créer un nouveau profil en utilisant ces réglages"
|
||||
|
||||
#: mod/profiles.php:693
|
||||
msgid "Clone this profile"
|
||||
msgstr "Cloner ce profil"
|
||||
|
||||
#: mod/profiles.php:694
|
||||
msgid "Delete this profile"
|
||||
msgstr "Supprimer ce profil"
|
||||
|
||||
#: mod/profiles.php:696
|
||||
msgid "Basic information"
|
||||
msgstr "Information de base"
|
||||
|
||||
#: mod/profiles.php:697
|
||||
msgid "Profile picture"
|
||||
msgstr "Image de profil"
|
||||
|
||||
#: mod/profiles.php:699
|
||||
msgid "Preferences"
|
||||
msgstr "Préférences"
|
||||
|
||||
#: mod/profiles.php:700
|
||||
msgid "Status information"
|
||||
msgstr "Information sur le statut"
|
||||
|
||||
#: mod/profiles.php:701
|
||||
msgid "Additional information"
|
||||
msgstr "Information additionnelle"
|
||||
|
||||
#: mod/profiles.php:704
|
||||
msgid "Relation"
|
||||
msgstr "Relation"
|
||||
|
||||
#: mod/profiles.php:708
|
||||
msgid "Your Gender:"
|
||||
msgstr "Votre genre :"
|
||||
|
||||
#: mod/profiles.php:709
|
||||
msgid "<span class=\"heart\">♥</span> Marital Status:"
|
||||
msgstr "<span class=\"heart\">♥</span> Statut marital :"
|
||||
|
||||
#: mod/profiles.php:711
|
||||
msgid "Example: fishing photography software"
|
||||
msgstr "Exemple : football dessin programmation"
|
||||
|
||||
#: mod/profiles.php:716
|
||||
msgid "Profile Name:"
|
||||
msgstr "Nom du profil :"
|
||||
|
||||
#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496
|
||||
msgid "Required"
|
||||
msgstr "Requis"
|
||||
|
||||
#: mod/profiles.php:718
|
||||
msgid ""
|
||||
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
|
||||
"be visible to anybody using the internet."
|
||||
msgstr "Ceci est votre profil <strong>public</strong>.<br />Il <strong>peut</strong> être visible par n'importe quel utilisateur d'Internet."
|
||||
|
||||
#: mod/profiles.php:719
|
||||
msgid "Your Full Name:"
|
||||
msgstr "Votre nom complet :"
|
||||
|
||||
#: mod/profiles.php:720
|
||||
msgid "Title/Description:"
|
||||
msgstr "Titre / Description :"
|
||||
|
||||
#: mod/profiles.php:723
|
||||
msgid "Street Address:"
|
||||
msgstr "Adresse postale :"
|
||||
|
||||
#: mod/profiles.php:724
|
||||
msgid "Locality/City:"
|
||||
msgstr "Ville / Localité :"
|
||||
|
||||
#: mod/profiles.php:725
|
||||
msgid "Region/State:"
|
||||
msgstr "Région / État :"
|
||||
|
||||
#: mod/profiles.php:726
|
||||
msgid "Postal/Zip Code:"
|
||||
msgstr "Code postal :"
|
||||
|
||||
#: mod/profiles.php:727
|
||||
msgid "Country:"
|
||||
msgstr "Pays :"
|
||||
|
||||
#: mod/profiles.php:731
|
||||
msgid "Who: (if applicable)"
|
||||
msgstr "Qui : (si pertinent)"
|
||||
|
||||
#: mod/profiles.php:731
|
||||
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
|
||||
msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com"
|
||||
|
||||
#: mod/profiles.php:732
|
||||
msgid "Since [date]:"
|
||||
msgstr "Depuis [date] :"
|
||||
|
||||
#: mod/profiles.php:734
|
||||
msgid "Tell us about yourself..."
|
||||
msgstr "Parlez-nous de vous..."
|
||||
|
||||
#: mod/profiles.php:735
|
||||
msgid "XMPP (Jabber) address:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profiles.php:735
|
||||
msgid ""
|
||||
"The XMPP address will be propagated to your contacts so that they can follow"
|
||||
" you."
|
||||
msgstr ""
|
||||
|
||||
#: mod/profiles.php:736
|
||||
msgid "Homepage URL:"
|
||||
msgstr "Page personnelle :"
|
||||
|
||||
#: mod/profiles.php:739
|
||||
msgid "Religious Views:"
|
||||
msgstr "Opinions religieuses :"
|
||||
|
||||
#: mod/profiles.php:740
|
||||
msgid "Public Keywords:"
|
||||
msgstr "Mots-clés publics :"
|
||||
|
||||
#: mod/profiles.php:740
|
||||
msgid "(Used for suggesting potential friends, can be seen by others)"
|
||||
msgstr "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)"
|
||||
|
||||
#: mod/profiles.php:741
|
||||
msgid "Private Keywords:"
|
||||
msgstr "Mots-clés privés :"
|
||||
|
||||
#: mod/profiles.php:741
|
||||
msgid "(Used for searching profiles, never shown to others)"
|
||||
msgstr "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)"
|
||||
|
||||
#: mod/profiles.php:744
|
||||
msgid "Musical interests"
|
||||
msgstr "Goûts musicaux"
|
||||
|
||||
#: mod/profiles.php:745
|
||||
msgid "Books, literature"
|
||||
msgstr "Lectures"
|
||||
|
||||
#: mod/profiles.php:746
|
||||
msgid "Television"
|
||||
msgstr "Télévision"
|
||||
|
||||
#: mod/profiles.php:747
|
||||
msgid "Film/dance/culture/entertainment"
|
||||
msgstr "Cinéma / Danse / Culture / Divertissement"
|
||||
|
||||
#: mod/profiles.php:748
|
||||
msgid "Hobbies/Interests"
|
||||
msgstr "Passe-temps / Centres d'intérêt"
|
||||
|
||||
#: mod/profiles.php:749
|
||||
msgid "Love/romance"
|
||||
msgstr "Amour / Romance"
|
||||
|
||||
#: mod/profiles.php:750
|
||||
msgid "Work/employment"
|
||||
msgstr "Activité professionnelle / Occupation"
|
||||
|
||||
#: mod/profiles.php:751
|
||||
msgid "School/education"
|
||||
msgstr "Études / Formation"
|
||||
|
||||
#: mod/profiles.php:752
|
||||
msgid "Contact information and Social Networks"
|
||||
msgstr "Coordonnées / Réseaux sociaux"
|
||||
|
||||
#: mod/profiles.php:794
|
||||
msgid "Edit/Manage Profiles"
|
||||
msgstr "Editer / gérer les profils"
|
||||
|
||||
#: mod/allfriends.php:43
|
||||
msgid "No friends to display."
|
||||
msgstr "Pas d'amis à afficher."
|
||||
|
||||
#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155
|
||||
msgid "Access to this profile has been restricted."
|
||||
msgstr "L'accès au profil a été restreint."
|
||||
|
||||
#: mod/cal.php:276 mod/events.php:380
|
||||
msgid "View"
|
||||
msgstr "Vue"
|
||||
|
||||
#: mod/cal.php:277 mod/events.php:382
|
||||
msgid "Previous"
|
||||
msgstr "Précédent"
|
||||
|
||||
#: mod/cal.php:278 mod/events.php:383 mod/install.php:231
|
||||
msgid "Next"
|
||||
msgstr "Suivant"
|
||||
|
||||
#: mod/cal.php:287 mod/events.php:392
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:297
|
||||
msgid "User not found"
|
||||
msgstr "Utilisateur introuvable"
|
||||
|
||||
#: mod/cal.php:313
|
||||
msgid "This calendar format is not supported"
|
||||
msgstr "Format de calendrier inconnu"
|
||||
|
||||
#: mod/cal.php:315
|
||||
msgid "No exportable data found"
|
||||
msgstr "Rien à exporter"
|
||||
|
||||
#: mod/cal.php:330
|
||||
msgid "calendar"
|
||||
msgstr "calendrier"
|
||||
|
||||
#: mod/common.php:86
|
||||
msgid "No contacts in common."
|
||||
msgstr "Pas de contacts en commun."
|
||||
|
||||
#: mod/common.php:134 mod/contacts.php:863
|
||||
msgid "Common Friends"
|
||||
msgstr "Amis communs"
|
||||
|
||||
#: mod/community.php:27
|
||||
msgid "Not available."
|
||||
msgstr "Indisponible."
|
||||
|
||||
#: mod/directory.php:197 view/theme/vier/theme.php:201
|
||||
msgid "Global Directory"
|
||||
msgstr "Annuaire global"
|
||||
|
||||
#: mod/directory.php:199
|
||||
msgid "Find on this site"
|
||||
msgstr "Trouver sur ce site"
|
||||
|
||||
#: mod/directory.php:201
|
||||
msgid "Results for:"
|
||||
msgstr "Résultats pour :"
|
||||
|
||||
#: mod/directory.php:203
|
||||
msgid "Site Directory"
|
||||
msgstr "Annuaire local"
|
||||
|
||||
#: mod/directory.php:210
|
||||
msgid "No entries (some entries may be hidden)."
|
||||
msgstr "Aucune entrée (certaines peuvent être cachées)."
|
||||
|
||||
#: mod/dirfind.php:36
|
||||
#, php-format
|
||||
msgid "People Search - %s"
|
||||
msgstr "Recherche de personne - %s"
|
||||
|
||||
#: mod/dirfind.php:47
|
||||
#, php-format
|
||||
msgid "Forum Search - %s"
|
||||
msgstr "Recherche de Forum - %s"
|
||||
|
||||
#: mod/dirfind.php:240 mod/match.php:107
|
||||
msgid "No matches"
|
||||
msgstr "Aucune correspondance"
|
||||
|
||||
#: mod/display.php:473
|
||||
msgid "Item has been removed."
|
||||
msgstr "Cet élément a été enlevé."
|
||||
|
||||
#: mod/events.php:95 mod/events.php:97
|
||||
msgid "Event can not end before it has started."
|
||||
msgstr "L'événement ne peut pas se terminer avant d'avoir commencé."
|
||||
|
||||
#: mod/events.php:104 mod/events.php:106
|
||||
msgid "Event title and start time are required."
|
||||
msgstr "Vous devez donner un nom et un horaire de début à l'événement."
|
||||
|
||||
#: mod/events.php:381
|
||||
msgid "Create New Event"
|
||||
msgstr "Créer un nouvel événement"
|
||||
|
||||
#: mod/events.php:482
|
||||
msgid "Event details"
|
||||
msgstr "Détails de l'événement"
|
||||
|
||||
#: mod/events.php:483
|
||||
msgid "Starting date and Title are required."
|
||||
msgstr "La date de début et le titre sont requis."
|
||||
|
||||
#: mod/events.php:484 mod/events.php:485
|
||||
msgid "Event Starts:"
|
||||
msgstr "Début de l'événement :"
|
||||
|
||||
#: mod/events.php:486 mod/events.php:502
|
||||
msgid "Finish date/time is not known or not relevant"
|
||||
msgstr "Date / heure de fin inconnue ou sans objet"
|
||||
|
||||
#: mod/events.php:488 mod/events.php:489
|
||||
msgid "Event Finishes:"
|
||||
msgstr "Fin de l'événement:"
|
||||
|
||||
#: mod/events.php:490 mod/events.php:503
|
||||
msgid "Adjust for viewer timezone"
|
||||
msgstr "Ajuster à la zone horaire du visiteur"
|
||||
|
||||
#: mod/events.php:492
|
||||
msgid "Description:"
|
||||
msgstr "Description:"
|
||||
|
||||
#: mod/events.php:496 mod/events.php:498
|
||||
msgid "Title:"
|
||||
msgstr "Titre :"
|
||||
|
||||
#: mod/events.php:499 mod/events.php:500
|
||||
msgid "Share this event"
|
||||
msgstr "Partager cet événement"
|
||||
|
||||
#: mod/maintenance.php:9
|
||||
msgid "System down for maintenance"
|
||||
msgstr "Système indisponible pour cause de maintenance"
|
||||
|
||||
#: mod/match.php:33
|
||||
msgid "No keywords to match. Please add keywords to your default profile."
|
||||
msgstr "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut."
|
||||
|
||||
#: mod/match.php:86
|
||||
msgid "is interested in:"
|
||||
msgstr "s'intéresse à :"
|
||||
|
||||
#: mod/match.php:100
|
||||
msgid "Profile Match"
|
||||
msgstr "Correpondance de profils"
|
||||
|
||||
#: mod/profile.php:179
|
||||
msgid "Tips for New Members"
|
||||
msgstr "Conseils aux nouveaux venus"
|
||||
|
||||
#: mod/suggest.php:27
|
||||
msgid "Do you really want to delete this suggestion?"
|
||||
msgstr "Voulez-vous vraiment supprimer cette suggestion ?"
|
||||
|
||||
#: mod/suggest.php:71
|
||||
msgid ""
|
||||
"No suggestions available. If this is a new site, please try again in 24 "
|
||||
"hours."
|
||||
msgstr "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h."
|
||||
|
||||
#: mod/suggest.php:84 mod/suggest.php:104
|
||||
msgid "Ignore/Hide"
|
||||
msgstr "Ignorer/cacher"
|
||||
|
||||
#: mod/update_community.php:19 mod/update_display.php:23
|
||||
#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
|
||||
msgid "[Embedded content - reload page to view]"
|
||||
msgstr "[contenu incorporé - rechargez la page pour le voir]"
|
||||
|
||||
#: mod/photos.php:88 mod/photos.php:1856
|
||||
msgid "Recent Photos"
|
||||
msgstr "Photos récentes"
|
||||
|
||||
#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858
|
||||
msgid "Upload New Photos"
|
||||
msgstr "Téléverser de nouvelles photos"
|
||||
|
||||
#: mod/photos.php:105 mod/settings.php:36
|
||||
msgid "everybody"
|
||||
msgstr "tout le monde"
|
||||
|
||||
#: mod/photos.php:169
|
||||
msgid "Contact information unavailable"
|
||||
msgstr "Informations de contact indisponibles"
|
||||
|
||||
#: mod/photos.php:190
|
||||
msgid "Album not found."
|
||||
msgstr "Album introuvable."
|
||||
|
||||
#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227
|
||||
msgid "Delete Album"
|
||||
msgstr "Effacer l'album"
|
||||
|
||||
#: mod/photos.php:230
|
||||
msgid "Do you really want to delete this photo album and all its photos?"
|
||||
msgstr "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?"
|
||||
|
||||
#: mod/photos.php:308 mod/photos.php:319 mod/photos.php:1540
|
||||
msgid "Delete Photo"
|
||||
msgstr "Effacer la photo"
|
||||
|
||||
#: mod/photos.php:317
|
||||
msgid "Do you really want to delete this photo?"
|
||||
msgstr "Voulez-vous vraiment supprimer cette photo ?"
|
||||
|
||||
#: mod/photos.php:688
|
||||
#, php-format
|
||||
msgid "%1$s was tagged in %2$s by %3$s"
|
||||
msgstr "%1$s a été étiqueté dans %2$s par %3$s"
|
||||
|
||||
#: mod/photos.php:688
|
||||
msgid "a photo"
|
||||
msgstr "une photo"
|
||||
|
||||
#: mod/photos.php:794
|
||||
msgid "Image file is empty."
|
||||
msgstr "Fichier image vide."
|
||||
|
||||
#: mod/photos.php:954
|
||||
msgid "No photos selected"
|
||||
msgstr "Aucune photo sélectionnée"
|
||||
|
||||
#: mod/photos.php:1054 mod/videos.php:305
|
||||
msgid "Access to this item is restricted."
|
||||
msgstr "Accès restreint à cet élément."
|
||||
|
||||
#: mod/photos.php:1114
|
||||
#, php-format
|
||||
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
|
||||
msgstr "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos."
|
||||
|
||||
#: mod/photos.php:1148
|
||||
msgid "Upload Photos"
|
||||
msgstr "Téléverser des photos"
|
||||
|
||||
#: mod/photos.php:1152 mod/photos.php:1222
|
||||
msgid "New album name: "
|
||||
msgstr "Nom du nouvel album: "
|
||||
|
||||
#: mod/photos.php:1153
|
||||
msgid "or existing album name: "
|
||||
msgstr "ou nom d'un album existant: "
|
||||
|
||||
#: mod/photos.php:1154
|
||||
msgid "Do not show a status post for this upload"
|
||||
msgstr "Ne pas publier de notice de statut pour cet envoi"
|
||||
|
||||
#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300
|
||||
msgid "Show to Groups"
|
||||
msgstr "Montrer aux groupes"
|
||||
|
||||
#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301
|
||||
msgid "Show to Contacts"
|
||||
msgstr "Montrer aux Contacts"
|
||||
|
||||
#: mod/photos.php:1167
|
||||
msgid "Private Photo"
|
||||
msgstr "Photo privée"
|
||||
|
||||
#: mod/photos.php:1168
|
||||
msgid "Public Photo"
|
||||
msgstr "Photo publique"
|
||||
|
||||
#: mod/photos.php:1234
|
||||
msgid "Edit Album"
|
||||
msgstr "Éditer l'album"
|
||||
|
||||
#: mod/photos.php:1240
|
||||
msgid "Show Newest First"
|
||||
msgstr "Plus récent d'abord"
|
||||
|
||||
#: mod/photos.php:1242
|
||||
msgid "Show Oldest First"
|
||||
msgstr "Plus ancien d'abord"
|
||||
|
||||
#: mod/photos.php:1269 mod/photos.php:1841
|
||||
msgid "View Photo"
|
||||
msgstr "Voir la photo"
|
||||
|
||||
#: mod/photos.php:1315
|
||||
msgid "Permission denied. Access to this item may be restricted."
|
||||
msgstr "Interdit. L'accès à cet élément peut avoir été restreint."
|
||||
|
||||
#: mod/photos.php:1317
|
||||
msgid "Photo not available"
|
||||
msgstr "Photo indisponible"
|
||||
|
||||
#: mod/photos.php:1372
|
||||
msgid "View photo"
|
||||
msgstr "Voir photo"
|
||||
|
||||
#: mod/photos.php:1372
|
||||
msgid "Edit photo"
|
||||
msgstr "Éditer la photo"
|
||||
|
||||
#: mod/photos.php:1373
|
||||
msgid "Use as profile photo"
|
||||
msgstr "Utiliser comme photo de profil"
|
||||
|
||||
#: mod/photos.php:1398
|
||||
msgid "View Full Size"
|
||||
msgstr "Voir en taille réelle"
|
||||
|
||||
#: mod/photos.php:1484
|
||||
msgid "Tags: "
|
||||
msgstr "Étiquettes:"
|
||||
|
||||
#: mod/photos.php:1487
|
||||
msgid "[Remove any tag]"
|
||||
msgstr "[Retirer toutes les étiquettes]"
|
||||
|
||||
#: mod/photos.php:1526
|
||||
msgid "New album name"
|
||||
msgstr "Nom du nouvel album"
|
||||
|
||||
#: mod/photos.php:1527
|
||||
msgid "Caption"
|
||||
msgstr "Titre"
|
||||
|
||||
#: mod/photos.php:1528
|
||||
msgid "Add a Tag"
|
||||
msgstr "Ajouter une étiquette"
|
||||
|
||||
#: mod/photos.php:1528
|
||||
msgid ""
|
||||
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
||||
msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances"
|
||||
|
||||
#: mod/photos.php:1529
|
||||
msgid "Do not rotate"
|
||||
msgstr "Pas de rotation"
|
||||
|
||||
#: mod/photos.php:1530
|
||||
msgid "Rotate CW (right)"
|
||||
msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)"
|
||||
|
||||
#: mod/photos.php:1531
|
||||
msgid "Rotate CCW (left)"
|
||||
msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)"
|
||||
|
||||
#: mod/photos.php:1546
|
||||
msgid "Private photo"
|
||||
msgstr "Photo privée"
|
||||
|
||||
#: mod/photos.php:1547
|
||||
msgid "Public photo"
|
||||
msgstr "Photo publique"
|
||||
|
||||
#: mod/photos.php:1770
|
||||
msgid "Map"
|
||||
msgstr "Carte"
|
||||
|
||||
#: mod/photos.php:1847 mod/videos.php:387
|
||||
msgid "View Album"
|
||||
msgstr "Voir l'album"
|
||||
|
||||
#: mod/register.php:93
|
||||
msgid ""
|
||||
"Registration successful. Please check your email for further instructions."
|
||||
msgstr "Inscription réussie. Vérifiez vos emails pour la suite des instructions."
|
||||
|
||||
#: mod/register.php:98
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Failed to send email message. Here your accout details:<br> login: %s<br> "
|
||||
"password: %s<br><br>You can change your password after login."
|
||||
msgstr "Impossible d’envoyer le courriel de confirmation. Voici vos informations de connexion:<br> identifiant : %s<br> mot de passe : %s<br><br>Vous pourrez changer votre mot de passe une fois connecté."
|
||||
|
||||
#: mod/register.php:105
|
||||
msgid "Registration successful."
|
||||
msgstr "Inscription réussie."
|
||||
|
||||
#: mod/register.php:111
|
||||
msgid "Your registration can not be processed."
|
||||
msgstr "Votre inscription ne peut être traitée."
|
||||
|
||||
#: mod/register.php:160
|
||||
msgid "Your registration is pending approval by the site owner."
|
||||
msgstr "Votre inscription attend une validation du propriétaire du site."
|
||||
|
||||
#: mod/register.php:226
|
||||
msgid ""
|
||||
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
|
||||
"and clicking 'Register'."
|
||||
msgstr "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\"."
|
||||
|
||||
#: mod/register.php:227
|
||||
msgid ""
|
||||
"If you are not familiar with OpenID, please leave that field blank and fill "
|
||||
"in the rest of the items."
|
||||
msgstr "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste."
|
||||
|
||||
#: mod/register.php:228
|
||||
msgid "Your OpenID (optional): "
|
||||
msgstr "Votre OpenID (facultatif): "
|
||||
|
||||
#: mod/register.php:242
|
||||
msgid "Include your profile in member directory?"
|
||||
msgstr "Inclure votre profil dans l'annuaire des membres?"
|
||||
|
||||
#: mod/register.php:267
|
||||
msgid "Note for the admin"
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:267
|
||||
msgid "Leave a message for the admin, why you want to join this node"
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:268
|
||||
msgid "Membership on this site is by invitation only."
|
||||
msgstr "L'inscription à ce site se fait uniquement sur invitation."
|
||||
|
||||
#: mod/register.php:269
|
||||
msgid "Your invitation ID: "
|
||||
msgstr "Votre ID d'invitation: "
|
||||
|
||||
#: mod/register.php:272 mod/admin.php:956
|
||||
msgid "Registration"
|
||||
msgstr "Inscription"
|
||||
|
||||
#: mod/register.php:280
|
||||
msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
|
||||
msgstr "Votre nom complet (p. ex. Michel Dupont):"
|
||||
|
||||
#: mod/register.php:281
|
||||
msgid "Your Email Address: "
|
||||
msgstr "Votre adresse courriel: "
|
||||
|
||||
#: mod/register.php:283 mod/settings.php:1271
|
||||
msgid "New Password:"
|
||||
msgstr "Nouveau mot de passe:"
|
||||
|
||||
#: mod/register.php:283
|
||||
msgid "Leave empty for an auto generated password."
|
||||
msgstr "Laisser ce champ libre pour obtenir un mot de passe généré automatiquement."
|
||||
|
||||
#: mod/register.php:284 mod/settings.php:1272
|
||||
msgid "Confirm:"
|
||||
msgstr "Confirmer:"
|
||||
|
||||
#: mod/register.php:285
|
||||
msgid ""
|
||||
"Choose a profile nickname. This must begin with a text character. Your "
|
||||
"profile address on this site will then be "
|
||||
"'<strong>nickname@$sitename</strong>'."
|
||||
msgstr "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '<strong>pseudo@$sitename</strong>'."
|
||||
|
||||
#: mod/register.php:286
|
||||
msgid "Choose a nickname: "
|
||||
msgstr "Choisir un pseudo: "
|
||||
|
||||
#: mod/register.php:296
|
||||
msgid "Import your profile to this friendica instance"
|
||||
msgstr "Importer votre profile dans cette instance de friendica"
|
||||
|
||||
#: mod/settings.php:43 mod/admin.php:1396
|
||||
msgid "Account"
|
||||
msgstr "Compte"
|
||||
|
||||
#: mod/settings.php:52 mod/admin.php:160
|
||||
msgid "Additional features"
|
||||
msgstr "Fonctions supplémentaires"
|
||||
|
||||
#: mod/settings.php:60
|
||||
msgid "Display"
|
||||
msgstr "Afficher"
|
||||
|
||||
#: mod/settings.php:67 mod/settings.php:886
|
||||
msgid "Social Networks"
|
||||
msgstr "Réseaux sociaux"
|
||||
|
||||
#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582
|
||||
msgid "Plugins"
|
||||
msgstr "Extensions"
|
||||
|
||||
#: mod/settings.php:88
|
||||
msgid "Connected apps"
|
||||
msgstr "Applications connectées"
|
||||
|
||||
#: mod/settings.php:102
|
||||
msgid "Remove account"
|
||||
msgstr "Supprimer le compte"
|
||||
|
||||
#: mod/settings.php:155
|
||||
msgid "Missing some important data!"
|
||||
msgstr "Il manque certaines informations importantes!"
|
||||
|
||||
#: mod/settings.php:158 mod/settings.php:704 mod/contacts.php:804
|
||||
msgid "Update"
|
||||
msgstr "Mises-à-jour"
|
||||
|
||||
#: mod/settings.php:269
|
||||
msgid "Failed to connect with email account using the settings provided."
|
||||
msgstr "Impossible de se connecter au compte courriel configuré."
|
||||
|
||||
#: mod/settings.php:274
|
||||
msgid "Email settings updated."
|
||||
msgstr "Réglages de courriel mis-à-jour."
|
||||
|
||||
#: mod/settings.php:289
|
||||
msgid "Features updated"
|
||||
msgstr "Fonctionnalités mises à jour"
|
||||
|
||||
#: mod/settings.php:359
|
||||
msgid "Relocate message has been send to your contacts"
|
||||
msgstr "Un message de relocalisation a été envoyé à vos contacts."
|
||||
|
||||
#: mod/settings.php:378
|
||||
msgid "Empty passwords are not allowed. Password unchanged."
|
||||
msgstr "Les mots de passe vides sont interdits. Aucun changement appliqué."
|
||||
|
||||
#: mod/settings.php:386
|
||||
msgid "Wrong password."
|
||||
msgstr "Mauvais mot de passe."
|
||||
|
||||
#: mod/settings.php:397
|
||||
msgid "Password changed."
|
||||
msgstr "Mots de passe changés."
|
||||
|
||||
#: mod/settings.php:399
|
||||
msgid "Password update failed. Please try again."
|
||||
msgstr "Le changement de mot de passe a échoué. Merci de recommencer."
|
||||
|
||||
#: mod/settings.php:479
|
||||
msgid " Please use a shorter name."
|
||||
msgstr " Merci d'utiliser un nom plus court."
|
||||
|
||||
#: mod/settings.php:481
|
||||
msgid " Name too short."
|
||||
msgstr " Nom trop court."
|
||||
|
||||
#: mod/settings.php:490
|
||||
msgid "Wrong Password"
|
||||
msgstr "Mauvais mot de passe"
|
||||
|
||||
#: mod/settings.php:495
|
||||
msgid " Not valid email."
|
||||
msgstr " Email invalide."
|
||||
|
||||
#: mod/settings.php:501
|
||||
msgid " Cannot change to that email."
|
||||
msgstr " Impossible de changer pour cet email."
|
||||
|
||||
#: mod/settings.php:557
|
||||
msgid "Private forum has no privacy permissions. Using default privacy group."
|
||||
msgstr "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut."
|
||||
|
||||
#: mod/settings.php:561
|
||||
msgid "Private forum has no privacy permissions and no default privacy group."
|
||||
msgstr "Ce forum privé n'a pas de paramètres de vie privée ni de paramètres de confidentialité par défaut."
|
||||
|
||||
#: mod/settings.php:601
|
||||
msgid "Settings updated."
|
||||
msgstr "Réglages mis à jour."
|
||||
|
||||
#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739
|
||||
msgid "Add application"
|
||||
msgstr "Ajouter une application"
|
||||
|
||||
#: mod/settings.php:678 mod/settings.php:788 mod/settings.php:835
|
||||
#: mod/settings.php:904 mod/settings.php:996 mod/settings.php:1264
|
||||
#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905
|
||||
#: mod/admin.php:2055
|
||||
msgid "Save Settings"
|
||||
msgstr "Sauvegarder les paramétres"
|
||||
|
||||
#: mod/settings.php:681 mod/settings.php:707
|
||||
msgid "Consumer Key"
|
||||
msgstr "Clé utilisateur"
|
||||
|
||||
#: mod/settings.php:682 mod/settings.php:708
|
||||
msgid "Consumer Secret"
|
||||
msgstr "Secret utilisateur"
|
||||
|
||||
#: mod/settings.php:683 mod/settings.php:709
|
||||
msgid "Redirect"
|
||||
msgstr "Rediriger"
|
||||
|
||||
#: mod/settings.php:684 mod/settings.php:710
|
||||
msgid "Icon url"
|
||||
msgstr "URL de l'icône"
|
||||
|
||||
#: mod/settings.php:695
|
||||
msgid "You can't edit this application."
|
||||
msgstr "Vous ne pouvez pas éditer cette application."
|
||||
|
||||
#: mod/settings.php:738
|
||||
msgid "Connected Apps"
|
||||
msgstr "Applications connectées"
|
||||
|
||||
#: mod/settings.php:742
|
||||
msgid "Client key starts with"
|
||||
msgstr "La clé cliente commence par"
|
||||
|
||||
#: mod/settings.php:743
|
||||
msgid "No name"
|
||||
msgstr "Sans nom"
|
||||
|
||||
#: mod/settings.php:744
|
||||
msgid "Remove authorization"
|
||||
msgstr "Révoquer l'autorisation"
|
||||
|
||||
#: mod/settings.php:756
|
||||
msgid "No Plugin settings configured"
|
||||
msgstr "Pas de réglages d'extensions configurés"
|
||||
|
||||
#: mod/settings.php:764
|
||||
msgid "Plugin Settings"
|
||||
msgstr "Extensions"
|
||||
|
||||
#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045
|
||||
msgid "Off"
|
||||
msgstr "Éteint"
|
||||
|
||||
#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045
|
||||
msgid "On"
|
||||
msgstr "Allumé"
|
||||
|
||||
#: mod/settings.php:786
|
||||
msgid "Additional Features"
|
||||
msgstr "Fonctions supplémentaires"
|
||||
|
||||
#: mod/settings.php:796 mod/settings.php:800
|
||||
msgid "General Social Media Settings"
|
||||
msgstr "Paramètres généraux des réseaux sociaux"
|
||||
|
||||
#: mod/settings.php:806
|
||||
msgid "Disable intelligent shortening"
|
||||
msgstr "Désactiver la réduction d'URL"
|
||||
|
||||
#: mod/settings.php:808
|
||||
msgid ""
|
||||
"Normally the system tries to find the best link to add to shortened posts. "
|
||||
"If this option is enabled then every shortened post will always point to the"
|
||||
" original friendica post."
|
||||
msgstr "Normalement, le système tente de trouver le meilleur lien à ajouter aux publications raccourcies. Si cette option est activée, les publications raccourcies dirigeront toujours vers leur publication d'origine sur Friendica."
|
||||
|
||||
#: mod/settings.php:814
|
||||
msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
|
||||
msgstr "Suivre automatiquement ceux qui me suivent ou me mentionnent sur GNU Social (OStatus)"
|
||||
|
||||
#: mod/settings.php:816
|
||||
msgid ""
|
||||
"If you receive a message from an unknown OStatus user, this option decides "
|
||||
"what to do. If it is checked, a new contact will be created for every "
|
||||
"unknown user."
|
||||
msgstr "Si vous recevez un message d'un utilisateur OStatus inconnu, cette option détermine ce qui sera fait. Si elle est cochée, un nouveau contact sera créé pour chaque utilisateur inconnu."
|
||||
|
||||
#: mod/settings.php:822
|
||||
msgid "Default group for OStatus contacts"
|
||||
msgstr "Groupe par défaut pour les contacts OStatus"
|
||||
|
||||
#: mod/settings.php:828
|
||||
msgid "Your legacy GNU Social account"
|
||||
msgstr "Le compte GNU Social que vous avez déjà"
|
||||
|
||||
#: mod/settings.php:830
|
||||
msgid ""
|
||||
"If you enter your old GNU Social/Statusnet account name here (in the format "
|
||||
"user@domain.tld), your contacts will be added automatically. The field will "
|
||||
"be emptied when done."
|
||||
msgstr "Si vous entrez le nom de votre ancien compte GNU Social / StatusNet ici (utiliser le format utilisateur@domaine.tld), vos contacts seront ajoutés automatiquement. Le champ sera vidé lorsque ce sera terminé."
|
||||
|
||||
#: mod/settings.php:833
|
||||
msgid "Repair OStatus subscriptions"
|
||||
msgstr "Réparer les abonnements OStatus"
|
||||
|
||||
#: mod/settings.php:842 mod/settings.php:843
|
||||
#, php-format
|
||||
msgid "Built-in support for %s connectivity is %s"
|
||||
msgstr "Le support natif pour la connectivité %s est %s"
|
||||
|
||||
#: mod/settings.php:842 mod/settings.php:843
|
||||
msgid "enabled"
|
||||
msgstr "activé"
|
||||
|
||||
#: mod/settings.php:842 mod/settings.php:843
|
||||
msgid "disabled"
|
||||
msgstr "désactivé"
|
||||
|
||||
#: mod/settings.php:843
|
||||
msgid "GNU Social (OStatus)"
|
||||
msgstr "GNU Social (OStatus)"
|
||||
|
||||
#: mod/settings.php:879
|
||||
msgid "Email access is disabled on this site."
|
||||
msgstr "L'accès courriel est désactivé sur ce site."
|
||||
|
||||
#: mod/settings.php:891
|
||||
msgid "Email/Mailbox Setup"
|
||||
msgstr "Réglages de courriel/boîte à lettre"
|
||||
|
||||
#: mod/settings.php:892
|
||||
msgid ""
|
||||
"If you wish to communicate with email contacts using this service "
|
||||
"(optional), please specify how to connect to your mailbox."
|
||||
msgstr "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte."
|
||||
|
||||
#: mod/settings.php:893
|
||||
msgid "Last successful email check:"
|
||||
msgstr "Dernière vérification réussie des courriels:"
|
||||
|
||||
#: mod/settings.php:895
|
||||
msgid "IMAP server name:"
|
||||
msgstr "Nom du serveur IMAP:"
|
||||
|
||||
#: mod/settings.php:896
|
||||
msgid "IMAP port:"
|
||||
msgstr "Port IMAP:"
|
||||
|
||||
#: mod/settings.php:897
|
||||
msgid "Security:"
|
||||
msgstr "Sécurité:"
|
||||
|
||||
#: mod/settings.php:897 mod/settings.php:902
|
||||
msgid "None"
|
||||
msgstr "Aucun(e)"
|
||||
|
||||
#: mod/settings.php:898
|
||||
msgid "Email login name:"
|
||||
msgstr "Nom de connexion:"
|
||||
|
||||
#: mod/settings.php:899
|
||||
msgid "Email password:"
|
||||
msgstr "Mot de passe:"
|
||||
|
||||
#: mod/settings.php:900
|
||||
msgid "Reply-to address:"
|
||||
msgstr "Adresse de réponse:"
|
||||
|
||||
#: mod/settings.php:901
|
||||
msgid "Send public posts to all email contacts:"
|
||||
msgstr "Envoyer les publications publiques à tous les contacts courriels:"
|
||||
|
||||
#: mod/settings.php:902
|
||||
msgid "Action after import:"
|
||||
msgstr "Action après import:"
|
||||
|
||||
#: mod/settings.php:902
|
||||
msgid "Move to folder"
|
||||
msgstr "Déplacer vers"
|
||||
|
||||
#: mod/settings.php:903
|
||||
msgid "Move to folder:"
|
||||
msgstr "Déplacer vers:"
|
||||
|
||||
#: mod/settings.php:934 mod/admin.php:862
|
||||
msgid "No special theme for mobile devices"
|
||||
msgstr "Pas de thème particulier pour les terminaux mobiles"
|
||||
|
||||
#: mod/settings.php:994
|
||||
msgid "Display Settings"
|
||||
msgstr "Affichage"
|
||||
|
||||
#: mod/settings.php:1000 mod/settings.php:1023
|
||||
msgid "Display Theme:"
|
||||
msgstr "Thème d'affichage:"
|
||||
|
||||
#: mod/settings.php:1001
|
||||
msgid "Mobile Theme:"
|
||||
msgstr "Thème mobile:"
|
||||
|
||||
#: mod/settings.php:1002
|
||||
msgid "Suppress warning of insecure networks"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1002
|
||||
msgid ""
|
||||
"Should the system suppress the warning that the current group contains "
|
||||
"members of networks that can't receive non public postings."
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1003
|
||||
msgid "Update browser every xx seconds"
|
||||
msgstr "Mettre-à-jour l'affichage toutes les xx secondes"
|
||||
|
||||
#: mod/settings.php:1003
|
||||
msgid "Minimum of 10 seconds. Enter -1 to disable it."
|
||||
msgstr "Minimum de 10 secondes. Saisir -1 pour désactiver."
|
||||
|
||||
#: mod/settings.php:1004
|
||||
msgid "Number of items to display per page:"
|
||||
msgstr "Nombre d’éléments par page:"
|
||||
|
||||
#: mod/settings.php:1004 mod/settings.php:1005
|
||||
msgid "Maximum of 100 items"
|
||||
msgstr "Maximum de 100 éléments"
|
||||
|
||||
#: mod/settings.php:1005
|
||||
msgid "Number of items to display per page when viewed from mobile device:"
|
||||
msgstr "Nombre d'éléments a afficher par page pour un appareil mobile"
|
||||
|
||||
#: mod/settings.php:1006
|
||||
msgid "Don't show emoticons"
|
||||
msgstr "Ne pas afficher les émoticônes (smileys grahiques)"
|
||||
|
||||
#: mod/settings.php:1007
|
||||
msgid "Calendar"
|
||||
msgstr "Calendrier"
|
||||
|
||||
#: mod/settings.php:1008
|
||||
msgid "Beginning of week:"
|
||||
msgstr "Début de la semaine :"
|
||||
|
||||
#: mod/settings.php:1009
|
||||
msgid "Don't show notices"
|
||||
msgstr "Ne plus afficher les avis"
|
||||
|
||||
#: mod/settings.php:1010
|
||||
msgid "Infinite scroll"
|
||||
msgstr "Défilement infini"
|
||||
|
||||
#: mod/settings.php:1011
|
||||
msgid "Automatic updates only at the top of the network page"
|
||||
msgstr "Mises à jour automatiques seulement en haut de la page du réseau."
|
||||
|
||||
#: mod/settings.php:1012
|
||||
msgid "Bandwith Saver Mode"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1012
|
||||
msgid ""
|
||||
"When enabled, embedded content is not displayed on automatic updates, they "
|
||||
"only show on page reload."
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1014
|
||||
msgid "General Theme Settings"
|
||||
msgstr "Paramètres généraux de thème"
|
||||
|
||||
#: mod/settings.php:1015
|
||||
msgid "Custom Theme Settings"
|
||||
msgstr "Paramètres personnalisés de thème"
|
||||
|
||||
#: mod/settings.php:1016
|
||||
msgid "Content Settings"
|
||||
msgstr "Paramètres de contenu"
|
||||
|
||||
#: mod/settings.php:1017 view/theme/frio/config.php:61
|
||||
#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109
|
||||
#: view/theme/duepuntozero/config.php:61
|
||||
msgid "Theme settings"
|
||||
msgstr "Réglages du thème graphique"
|
||||
|
||||
#: mod/settings.php:1099
|
||||
msgid "Account Types"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1100
|
||||
msgid "Personal Page Subtypes"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1101
|
||||
msgid "Community Forum Subtypes"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1108
|
||||
msgid "Personal Page"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1109
|
||||
msgid "This account is a regular personal profile"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1112
|
||||
msgid "Organisation Page"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1113
|
||||
msgid "This account is a profile for an organisation"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1116
|
||||
msgid "News Page"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1117
|
||||
msgid "This account is a news account/reflector"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1120
|
||||
msgid "Community Forum"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1121
|
||||
msgid ""
|
||||
"This account is a community forum where people can discuss with each other"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1124
|
||||
msgid "Normal Account Page"
|
||||
msgstr "Compte normal"
|
||||
|
||||
#: mod/settings.php:1125
|
||||
msgid "This account is a normal personal profile"
|
||||
msgstr "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)"
|
||||
|
||||
#: mod/settings.php:1128
|
||||
msgid "Soapbox Page"
|
||||
msgstr "Compte \"boîte à savon\""
|
||||
|
||||
#: mod/settings.php:1129
|
||||
msgid "Automatically approve all connection/friend requests as read-only fans"
|
||||
msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'"
|
||||
|
||||
#: mod/settings.php:1132
|
||||
msgid "Public Forum"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1133
|
||||
msgid "Automatically approve all contact requests"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1136
|
||||
msgid "Automatic Friend Page"
|
||||
msgstr "Compte d'\"amitié automatique\""
|
||||
|
||||
#: mod/settings.php:1137
|
||||
msgid "Automatically approve all connection/friend requests as friends"
|
||||
msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis"
|
||||
|
||||
#: mod/settings.php:1140
|
||||
msgid "Private Forum [Experimental]"
|
||||
msgstr "Forum privé [expérimental]"
|
||||
|
||||
#: mod/settings.php:1141
|
||||
msgid "Private forum - approved members only"
|
||||
msgstr "Forum privé - modéré en inscription"
|
||||
|
||||
#: mod/settings.php:1153
|
||||
msgid "OpenID:"
|
||||
msgstr "OpenID:"
|
||||
|
||||
#: mod/settings.php:1153
|
||||
msgid "(Optional) Allow this OpenID to login to this account."
|
||||
msgstr "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte."
|
||||
|
||||
#: mod/settings.php:1163
|
||||
msgid "Publish your default profile in your local site directory?"
|
||||
msgstr "Publier votre profil par défaut sur l'annuaire local de ce site?"
|
||||
|
||||
#: mod/settings.php:1169
|
||||
msgid "Publish your default profile in the global social directory?"
|
||||
msgstr "Publier votre profil par défaut sur l'annuaire social global?"
|
||||
|
||||
#: mod/settings.php:1177
|
||||
msgid "Hide your contact/friend list from viewers of your default profile?"
|
||||
msgstr "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?"
|
||||
|
||||
#: mod/settings.php:1181
|
||||
msgid ""
|
||||
"If enabled, posting public messages to Diaspora and other networks isn't "
|
||||
"possible."
|
||||
msgstr "Si activé, il est impossible de publier les messages publics sur Diaspora et autres réseaux."
|
||||
|
||||
#: mod/settings.php:1186
|
||||
msgid "Allow friends to post to your profile page?"
|
||||
msgstr "Autoriser vos amis à publier sur votre profil?"
|
||||
|
||||
#: mod/settings.php:1192
|
||||
msgid "Allow friends to tag your posts?"
|
||||
msgstr "Autoriser vos amis à étiqueter vos publications?"
|
||||
|
||||
#: mod/settings.php:1198
|
||||
msgid "Allow us to suggest you as a potential friend to new members?"
|
||||
msgstr "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?"
|
||||
|
||||
#: mod/settings.php:1204
|
||||
msgid "Permit unknown people to send you private mail?"
|
||||
msgstr "Autoriser les messages privés d'inconnus?"
|
||||
|
||||
#: mod/settings.php:1212
|
||||
msgid "Profile is <strong>not published</strong>."
|
||||
msgstr "Ce profil n'est <strong>pas publié</strong>."
|
||||
|
||||
#: mod/settings.php:1220
|
||||
#, php-format
|
||||
msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
|
||||
msgstr "L’adresse de votre identité est <strong>'%s'</strong> or '%s'."
|
||||
|
||||
#: mod/settings.php:1227
|
||||
msgid "Automatically expire posts after this many days:"
|
||||
msgstr "Les publications expirent automatiquement après (en jours) :"
|
||||
|
||||
#: mod/settings.php:1227
|
||||
msgid "If empty, posts will not expire. Expired posts will be deleted"
|
||||
msgstr "Si ce champ est vide, les publications n'expireront pas. Les publications expirées seront supprimées"
|
||||
|
||||
#: mod/settings.php:1228
|
||||
msgid "Advanced expiration settings"
|
||||
msgstr "Réglages avancés de l'expiration"
|
||||
|
||||
#: mod/settings.php:1229
|
||||
msgid "Advanced Expiration"
|
||||
msgstr "Expiration (avancé)"
|
||||
|
||||
#: mod/settings.php:1230
|
||||
msgid "Expire posts:"
|
||||
msgstr "Faire expirer les publications:"
|
||||
|
||||
#: mod/settings.php:1231
|
||||
msgid "Expire personal notes:"
|
||||
msgstr "Faire expirer les notes personnelles:"
|
||||
|
||||
#: mod/settings.php:1232
|
||||
msgid "Expire starred posts:"
|
||||
msgstr "Faire expirer les publications marqués:"
|
||||
|
||||
#: mod/settings.php:1233
|
||||
msgid "Expire photos:"
|
||||
msgstr "Faire expirer les photos:"
|
||||
|
||||
#: mod/settings.php:1234
|
||||
msgid "Only expire posts by others:"
|
||||
msgstr "Faire expirer seulement les publications des autres:"
|
||||
|
||||
#: mod/settings.php:1262
|
||||
msgid "Account Settings"
|
||||
msgstr "Compte"
|
||||
|
||||
#: mod/settings.php:1270
|
||||
msgid "Password Settings"
|
||||
msgstr "Réglages de mot de passe"
|
||||
|
||||
#: mod/settings.php:1272
|
||||
msgid "Leave password fields blank unless changing"
|
||||
msgstr "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer"
|
||||
|
||||
#: mod/settings.php:1273
|
||||
msgid "Current Password:"
|
||||
msgstr "Mot de passe actuel:"
|
||||
|
||||
#: mod/settings.php:1273 mod/settings.php:1274
|
||||
msgid "Your current password to confirm the changes"
|
||||
msgstr "Votre mot de passe actuel pour confirmer les modifications"
|
||||
|
||||
#: mod/settings.php:1274
|
||||
msgid "Password:"
|
||||
msgstr "Mot de passe:"
|
||||
|
||||
#: mod/settings.php:1278
|
||||
msgid "Basic Settings"
|
||||
msgstr "Réglages basiques"
|
||||
|
||||
#: mod/settings.php:1280
|
||||
msgid "Email Address:"
|
||||
msgstr "Adresse courriel:"
|
||||
|
||||
#: mod/settings.php:1281
|
||||
msgid "Your Timezone:"
|
||||
msgstr "Votre fuseau horaire:"
|
||||
|
||||
#: mod/settings.php:1282
|
||||
msgid "Your Language:"
|
||||
msgstr "Votre langue :"
|
||||
|
||||
#: mod/settings.php:1282
|
||||
msgid ""
|
||||
"Set the language we use to show you friendica interface and to send you "
|
||||
"emails"
|
||||
msgstr "Détermine la langue que nous utilisons pour afficher votre interface Friendica et pour vous envoyer des courriels"
|
||||
|
||||
#: mod/settings.php:1283
|
||||
msgid "Default Post Location:"
|
||||
msgstr "Emplacement de publication par défaut:"
|
||||
|
||||
#: mod/settings.php:1284
|
||||
msgid "Use Browser Location:"
|
||||
msgstr "Utiliser la localisation géographique du navigateur:"
|
||||
|
||||
#: mod/settings.php:1287
|
||||
msgid "Security and Privacy Settings"
|
||||
msgstr "Réglages de sécurité et vie privée"
|
||||
|
||||
#: mod/settings.php:1289
|
||||
msgid "Maximum Friend Requests/Day:"
|
||||
msgstr "Nombre maximal de requêtes d'amitié/jour:"
|
||||
|
||||
#: mod/settings.php:1289 mod/settings.php:1319
|
||||
msgid "(to prevent spam abuse)"
|
||||
msgstr "(pour limiter l'impact du spam)"
|
||||
|
||||
#: mod/settings.php:1290
|
||||
msgid "Default Post Permissions"
|
||||
msgstr "Permissions de publication par défaut"
|
||||
|
||||
#: mod/settings.php:1291
|
||||
msgid "(click to open/close)"
|
||||
msgstr "(cliquer pour ouvrir/fermer)"
|
||||
|
||||
#: mod/settings.php:1302
|
||||
msgid "Default Private Post"
|
||||
msgstr "Message privé par défaut"
|
||||
|
||||
#: mod/settings.php:1303
|
||||
msgid "Default Public Post"
|
||||
msgstr "Message publique par défaut"
|
||||
|
||||
#: mod/settings.php:1307
|
||||
msgid "Default Permissions for New Posts"
|
||||
msgstr "Permissions par défaut pour les nouvelles publications"
|
||||
|
||||
#: mod/settings.php:1319
|
||||
msgid "Maximum private messages per day from unknown people:"
|
||||
msgstr "Maximum de messages privés d'inconnus par jour:"
|
||||
|
||||
#: mod/settings.php:1322
|
||||
msgid "Notification Settings"
|
||||
msgstr "Réglages de notification"
|
||||
|
||||
#: mod/settings.php:1323
|
||||
msgid "By default post a status message when:"
|
||||
msgstr "Par défaut, poster un statut quand:"
|
||||
|
||||
#: mod/settings.php:1324
|
||||
msgid "accepting a friend request"
|
||||
msgstr "j'accepte un ami"
|
||||
|
||||
#: mod/settings.php:1325
|
||||
msgid "joining a forum/community"
|
||||
msgstr "joignant un forum/une communauté"
|
||||
|
||||
#: mod/settings.php:1326
|
||||
msgid "making an <em>interesting</em> profile change"
|
||||
msgstr "je fais une modification <em>intéressante</em> de mon profil"
|
||||
|
||||
#: mod/settings.php:1327
|
||||
msgid "Send a notification email when:"
|
||||
msgstr "Envoyer un courriel de notification quand:"
|
||||
|
||||
#: mod/settings.php:1328
|
||||
msgid "You receive an introduction"
|
||||
msgstr "Vous recevez une introduction"
|
||||
|
||||
#: mod/settings.php:1329
|
||||
msgid "Your introductions are confirmed"
|
||||
msgstr "Vos introductions sont confirmées"
|
||||
|
||||
#: mod/settings.php:1330
|
||||
msgid "Someone writes on your profile wall"
|
||||
msgstr "Quelqu'un écrit sur votre mur"
|
||||
|
||||
#: mod/settings.php:1331
|
||||
msgid "Someone writes a followup comment"
|
||||
msgstr "Quelqu'un vous commente"
|
||||
|
||||
#: mod/settings.php:1332
|
||||
msgid "You receive a private message"
|
||||
msgstr "Vous recevez un message privé"
|
||||
|
||||
#: mod/settings.php:1333
|
||||
msgid "You receive a friend suggestion"
|
||||
msgstr "Vous avez reçu une suggestion d'ami"
|
||||
|
||||
#: mod/settings.php:1334
|
||||
msgid "You are tagged in a post"
|
||||
msgstr "Vous avez été étiquetté dans une publication"
|
||||
|
||||
#: mod/settings.php:1335
|
||||
msgid "You are poked/prodded/etc. in a post"
|
||||
msgstr "Vous avez été sollicité dans une publication"
|
||||
|
||||
#: mod/settings.php:1337
|
||||
msgid "Activate desktop notifications"
|
||||
msgstr "Activer les notifications de bureau"
|
||||
|
||||
#: mod/settings.php:1337
|
||||
msgid "Show desktop popup on new notifications"
|
||||
msgstr "Afficher dans des pops-ups les nouvelles notifications"
|
||||
|
||||
#: mod/settings.php:1339
|
||||
msgid "Text-only notification emails"
|
||||
msgstr "Courriels de notification en format texte"
|
||||
|
||||
#: mod/settings.php:1341
|
||||
msgid "Send text only notification emails, without the html part"
|
||||
msgstr "Envoyer le texte des courriels de notification, sans la composante html"
|
||||
|
||||
#: mod/settings.php:1343
|
||||
msgid "Advanced Account/Page Type Settings"
|
||||
msgstr "Paramètres avancés de compte/page"
|
||||
|
||||
#: mod/settings.php:1344
|
||||
msgid "Change the behaviour of this account for special situations"
|
||||
msgstr "Modifier le comportement de ce compte dans certaines situations"
|
||||
|
||||
#: mod/settings.php:1347
|
||||
msgid "Relocate"
|
||||
msgstr "Relocaliser"
|
||||
|
||||
#: mod/settings.php:1348
|
||||
msgid ""
|
||||
"If you have moved this profile from another server, and some of your "
|
||||
"contacts don't receive your updates, try pushing this button."
|
||||
msgstr "Si vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton."
|
||||
|
||||
#: mod/settings.php:1349
|
||||
msgid "Resend relocate message to contacts"
|
||||
msgstr "Renvoyer un message de relocalisation aux contacts."
|
||||
|
||||
#: mod/videos.php:120
|
||||
msgid "Do you really want to delete this video?"
|
||||
msgstr "Voulez-vous vraiment supprimer cette vidéo?"
|
||||
|
||||
#: mod/videos.php:125
|
||||
msgid "Delete Video"
|
||||
msgstr "Supprimer la vidéo"
|
||||
|
||||
#: mod/videos.php:204
|
||||
msgid "No videos selected"
|
||||
msgstr "Pas de vidéo sélectionné"
|
||||
|
||||
#: mod/videos.php:396
|
||||
msgid "Recent Videos"
|
||||
msgstr "Vidéos récente"
|
||||
|
||||
#: mod/videos.php:398
|
||||
msgid "Upload New Videos"
|
||||
msgstr "Téléversé une nouvelle vidéo"
|
||||
|
||||
#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76
|
||||
#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
|
||||
#: mod/wall_upload.php:122 mod/wall_upload.php:125
|
||||
msgid "Invalid request."
|
||||
msgstr "Requête invalide."
|
||||
|
||||
#: mod/wall_attach.php:94
|
||||
msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
|
||||
msgstr "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise"
|
||||
|
||||
#: mod/wall_attach.php:94
|
||||
msgid "Or - did you try to upload an empty file?"
|
||||
msgstr "Ou — auriez-vous essayé de télécharger un fichier vide ?"
|
||||
|
||||
#: mod/wall_attach.php:105
|
||||
#, php-format
|
||||
msgid "File exceeds size limit of %s"
|
||||
msgstr "La taille du fichier dépasse la limite de %s"
|
||||
|
||||
#: mod/wall_attach.php:156 mod/wall_attach.php:172
|
||||
msgid "File upload failed."
|
||||
msgstr "Le téléversement a échoué."
|
||||
|
||||
#: mod/admin.php:92
|
||||
#: mod/localtime.php:47 mod/contacts.php:612 mod/crepair.php:162
|
||||
#: mod/events.php:531 mod/fsuggest.php:117 mod/install.php:244
|
||||
#: mod/install.php:284 mod/invite.php:152 mod/manage.php:158
|
||||
#: mod/message.php:340 mod/message.php:512 mod/mood.php:142
|
||||
#: mod/photos.php:1129 mod/photos.php:1241 mod/photos.php:1556
|
||||
#: mod/photos.php:1605 mod/photos.php:1647 mod/photos.php:1721
|
||||
#: mod/poke.php:207 mod/profiles.php:684 view/theme/duepuntozero/config.php:67
|
||||
#: view/theme/frio/config.php:108 view/theme/quattro/config.php:73
|
||||
#: view/theme/vier/config.php:117 src/Object/Item.php:787
|
||||
msgid "Submit"
|
||||
msgstr "Envoyer"
|
||||
|
||||
#: mod/oexchange.php:25
|
||||
msgid "Post successful."
|
||||
msgstr "Publication réussie."
|
||||
|
||||
#: mod/admin.php:102
|
||||
msgid "Theme settings updated."
|
||||
msgstr "Réglages du thème sauvés."
|
||||
|
||||
#: mod/admin.php:156 mod/admin.php:954
|
||||
#: mod/admin.php:174 mod/admin.php:1177
|
||||
msgid "Site"
|
||||
msgstr "Site"
|
||||
|
||||
#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420
|
||||
#: mod/admin.php:175 mod/admin.php:1105 mod/admin.php:1620 mod/admin.php:1636
|
||||
msgid "Users"
|
||||
msgstr "Utilisateurs"
|
||||
|
||||
#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830
|
||||
#: mod/admin.php:176 mod/admin.php:1738 mod/admin.php:1801 mod/settings.php:77
|
||||
msgid "Plugins"
|
||||
msgstr "Extensions"
|
||||
|
||||
#: mod/admin.php:177 mod/admin.php:2014 mod/admin.php:2064
|
||||
msgid "Themes"
|
||||
msgstr "Thèmes"
|
||||
|
||||
#: mod/admin.php:161
|
||||
#: mod/admin.php:178 mod/settings.php:55
|
||||
msgid "Additional features"
|
||||
msgstr "Fonctions supplémentaires"
|
||||
|
||||
#: mod/admin.php:179
|
||||
msgid "DB updates"
|
||||
msgstr "Mise-à-jour de la base"
|
||||
|
||||
#: mod/admin.php:162 mod/admin.php:406
|
||||
#: mod/admin.php:180 mod/admin.php:587
|
||||
msgid "Inspect Queue"
|
||||
msgstr "Inspecter la file d'attente"
|
||||
|
||||
#: mod/admin.php:163 mod/admin.php:372
|
||||
#: mod/admin.php:181 mod/admin.php:301
|
||||
msgid "Server Blocklist"
|
||||
msgstr "Serveurs bloqués"
|
||||
|
||||
#: mod/admin.php:182 mod/admin.php:553
|
||||
msgid "Federation Statistics"
|
||||
msgstr "Statistiques Federation"
|
||||
|
||||
#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904
|
||||
#: mod/admin.php:183 mod/admin.php:378
|
||||
msgid "Delete Item"
|
||||
msgstr "Supprimer un élément"
|
||||
|
||||
#: mod/admin.php:197 mod/admin.php:208 mod/admin.php:2138
|
||||
msgid "Logs"
|
||||
msgstr "Journaux"
|
||||
|
||||
#: mod/admin.php:178 mod/admin.php:1972
|
||||
#: mod/admin.php:198 mod/admin.php:2206
|
||||
msgid "View Logs"
|
||||
msgstr "Voir les logs"
|
||||
|
||||
#: mod/admin.php:179
|
||||
#: mod/admin.php:199
|
||||
msgid "probe address"
|
||||
msgstr "Tester une adresse"
|
||||
|
||||
#: mod/admin.php:180
|
||||
#: mod/admin.php:200
|
||||
msgid "check webfinger"
|
||||
msgstr "vérification de webfinger"
|
||||
|
||||
#: mod/admin.php:187
|
||||
#: mod/admin.php:207
|
||||
msgid "Plugin Features"
|
||||
msgstr "Propriétés des extensions"
|
||||
|
||||
#: mod/admin.php:189
|
||||
#: mod/admin.php:209
|
||||
msgid "diagnostics"
|
||||
msgstr "diagnostic"
|
||||
|
||||
#: mod/admin.php:190
|
||||
#: mod/admin.php:210
|
||||
msgid "User registrations waiting for confirmation"
|
||||
msgstr "Inscriptions en attente de confirmation"
|
||||
|
||||
#: mod/admin.php:306
|
||||
msgid "unknown"
|
||||
msgstr ""
|
||||
#: mod/admin.php:292
|
||||
msgid "The blocked domain"
|
||||
msgstr "Domaine bloqué"
|
||||
|
||||
#: mod/admin.php:365
|
||||
#: mod/admin.php:293 mod/admin.php:311 mod/friendica.php:117
|
||||
msgid "Reason for the block"
|
||||
msgstr "Raison du blocage."
|
||||
|
||||
#: mod/admin.php:293 mod/admin.php:306
|
||||
msgid "The reason why you blocked this domain."
|
||||
msgstr "Raison pour laquelle vous souhaitez bloquer ce domaine."
|
||||
|
||||
#: mod/admin.php:294
|
||||
msgid "Delete domain"
|
||||
msgstr "Supprimer le domaine."
|
||||
|
||||
#: mod/admin.php:294
|
||||
msgid "Check to delete this entry from the blocklist"
|
||||
msgstr "Cochez la case pour retirer cette entrée de la liste noire"
|
||||
|
||||
#: mod/admin.php:300 mod/admin.php:377 mod/admin.php:552 mod/admin.php:586
|
||||
#: mod/admin.php:683 mod/admin.php:1176 mod/admin.php:1619 mod/admin.php:1737
|
||||
#: mod/admin.php:1800 mod/admin.php:2013 mod/admin.php:2063 mod/admin.php:2137
|
||||
#: mod/admin.php:2205
|
||||
msgid "Administration"
|
||||
msgstr "Administration"
|
||||
|
||||
#: mod/admin.php:302
|
||||
msgid ""
|
||||
"This page can be used to define a black list of servers from the federated "
|
||||
"network that are not allowed to interact with your node. For all entered "
|
||||
"domains you should also give a reason why you have blocked the remote "
|
||||
"server."
|
||||
msgstr "Cette page permet de créer une liste noire des serveurs de la fédération qui ne sont pas autorisés à interagir avec votre serveur. Pour chaque serveur bloqué, vous devez fournir la raison du blocage."
|
||||
|
||||
#: mod/admin.php:303
|
||||
msgid ""
|
||||
"The list of blocked servers will be made publically available on the "
|
||||
"/friendica page so that your users and people investigating communication "
|
||||
"problems can find the reason easily."
|
||||
msgstr "La liste des serveurs bloqués sera publiée sur la page /friendica pour que les utilisateurs rencontrant des problèmes de communication puissent en comprendre la raison."
|
||||
|
||||
#: mod/admin.php:304
|
||||
msgid "Add new entry to block list"
|
||||
msgstr "Ajouter une nouvelle entrée à la liste noire"
|
||||
|
||||
#: mod/admin.php:305
|
||||
msgid "Server Domain"
|
||||
msgstr "Adresse du serveur"
|
||||
|
||||
#: mod/admin.php:305
|
||||
msgid ""
|
||||
"The domain of the new server to add to the block list. Do not include the "
|
||||
"protocol."
|
||||
msgstr "Adresse du serveur à ajouter à la liste noire. Ne pas mettre le protocole."
|
||||
|
||||
#: mod/admin.php:306
|
||||
msgid "Block reason"
|
||||
msgstr "Raison du blocage."
|
||||
|
||||
#: mod/admin.php:307
|
||||
msgid "Add Entry"
|
||||
msgstr "Ajouter"
|
||||
|
||||
#: mod/admin.php:308
|
||||
msgid "Save changes to the blocklist"
|
||||
msgstr "Sauvegarder la liste noire"
|
||||
|
||||
#: mod/admin.php:309
|
||||
msgid "Current Entries in the Blocklist"
|
||||
msgstr "Entrées de la liste noire"
|
||||
|
||||
#: mod/admin.php:312
|
||||
msgid "Delete entry from blocklist"
|
||||
msgstr "Supprimer l'entrée de la liste noire"
|
||||
|
||||
#: mod/admin.php:315
|
||||
msgid "Delete entry from blocklist?"
|
||||
msgstr "Supprimer l'entrée de la liste noire ?"
|
||||
|
||||
#: mod/admin.php:340
|
||||
msgid "Server added to blocklist."
|
||||
msgstr "Serveur ajouté à la liste noire."
|
||||
|
||||
#: mod/admin.php:356
|
||||
msgid "Site blocklist updated."
|
||||
msgstr "Liste noire mise à jour."
|
||||
|
||||
#: mod/admin.php:379
|
||||
msgid "Delete this Item"
|
||||
msgstr "Supprimer l'élément"
|
||||
|
||||
#: mod/admin.php:380
|
||||
msgid ""
|
||||
"On this page you can delete an item from your node. If the item is a top "
|
||||
"level posting, the entire thread will be deleted."
|
||||
msgstr "Sur cette page, vous pouvez supprimer un élément de votre noeud. Si cet élément est le premier post d'un fil de discussion, le fil de discussion entier sera supprimé."
|
||||
|
||||
#: mod/admin.php:381
|
||||
msgid ""
|
||||
"You need to know the GUID of the item. You can find it e.g. by looking at "
|
||||
"the display URL. The last part of http://example.com/display/123456 is the "
|
||||
"GUID, here 123456."
|
||||
msgstr "Vous devez connaître le GUID de l'élément. Vous pouvez le trouver en sélectionnant l'élément puis en lisant l'URL. La dernière partie de l'URL est le GUID. Exemple: http://example.com/display/123456 a pour GUID: 123456."
|
||||
|
||||
#: mod/admin.php:382
|
||||
msgid "GUID"
|
||||
msgstr "GUID"
|
||||
|
||||
#: mod/admin.php:382
|
||||
msgid "The GUID of the item you want to delete."
|
||||
msgstr "GUID de l'élément à supprimer."
|
||||
|
||||
#: mod/admin.php:419
|
||||
msgid "Item marked for deletion."
|
||||
msgstr "L'élément va être supprimé."
|
||||
|
||||
#: mod/admin.php:483
|
||||
msgid "unknown"
|
||||
msgstr "inconnu"
|
||||
|
||||
#: mod/admin.php:546
|
||||
msgid ""
|
||||
"This page offers you some numbers to the known part of the federated social "
|
||||
"network your Friendica node is part of. These numbers are not complete but "
|
||||
"only reflect the part of the network your node is aware of."
|
||||
msgstr "Cette page montre quelques statistiques de la partie connue du réseau social fédéré dont votre instance Friendica fait partie. Ces chiffres sont partiels et ne reflètent que la portion du réseau dont votre instance a connaissance."
|
||||
|
||||
#: mod/admin.php:366
|
||||
#: mod/admin.php:547
|
||||
msgid ""
|
||||
"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
|
||||
"will improve the data displayed here."
|
||||
msgstr "En activant la fonctionnalité <em>Répertoire de Contacts Découverts Automatiquement</em>, cela améliorera la qualité des chiffres présentés ici."
|
||||
|
||||
#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953
|
||||
#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779
|
||||
#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971
|
||||
msgid "Administration"
|
||||
msgstr "Administration"
|
||||
|
||||
#: mod/admin.php:378
|
||||
#: mod/admin.php:559
|
||||
#, php-format
|
||||
msgid "Currently this node is aware of %d nodes from the following platforms:"
|
||||
msgstr "Actuellement cette instance est en relation avec %d autres instances des plate-formes suivantes :"
|
||||
|
||||
#: mod/admin.php:408
|
||||
#: mod/admin.php:589
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#: mod/admin.php:409
|
||||
#: mod/admin.php:590
|
||||
msgid "Recipient Name"
|
||||
msgstr "Nom du destinataire"
|
||||
|
||||
#: mod/admin.php:410
|
||||
#: mod/admin.php:591
|
||||
msgid "Recipient Profile"
|
||||
msgstr "Profil du destinataire"
|
||||
|
||||
#: mod/admin.php:412
|
||||
#: mod/admin.php:593
|
||||
msgid "Created"
|
||||
msgstr "Créé"
|
||||
|
||||
#: mod/admin.php:413
|
||||
#: mod/admin.php:594
|
||||
msgid "Last Tried"
|
||||
msgstr "Dernier essai"
|
||||
|
||||
#: mod/admin.php:414
|
||||
#: mod/admin.php:595
|
||||
msgid ""
|
||||
"This page lists the content of the queue for outgoing postings. These are "
|
||||
"postings the initial delivery failed for. They will be resend later and "
|
||||
"eventually deleted if the delivery fails permanently."
|
||||
msgstr "Cette page présente le contenu de la file d'attente pour les publications sortantes. Ce sont des messages dont la première livraison a échoué. Ils seront réenvoyés plus tard et éventuellement supprimés si l'envoi échoue de façon permanente."
|
||||
|
||||
#: mod/admin.php:439
|
||||
#: mod/admin.php:619
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Your DB still runs with MyISAM tables. You should change the engine type to "
|
||||
"InnoDB. As Friendica will use InnoDB only features in the future, you should"
|
||||
" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
|
||||
"converting the table engines. You may also use the "
|
||||
"<tt>convert_innodb.sql</tt> in the <tt>/util</tt> directory of your "
|
||||
"Friendica installation.<br />"
|
||||
msgstr ""
|
||||
"converting the table engines. You may also use the command <tt>php "
|
||||
"include/dbstructure.php toinnodb</tt> of your Friendica installation for an "
|
||||
"automatic conversion.<br />"
|
||||
msgstr "Votre base de données fonctionne avec MyISAM. Vous devriez utiliser InnoDB comme type de moteur. Comme Friendica utilisera uniquement InnoDB dans le futur, vous devriez suivre cette recommandation. <a href=\"%s\">Ce guide</a> peut vous servir pour changer le type de moteur. Vous pouvez aussi utiliser la commande <tt>php include/dbstructure.php toinnodb</tt> de votre installation Friendica pour une conversion automatique. <br />"
|
||||
|
||||
#: mod/admin.php:444
|
||||
#: mod/admin.php:626
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You are using a MySQL version which does not support all features that "
|
||||
"Friendica uses. You should consider switching to MariaDB."
|
||||
msgstr ""
|
||||
"There is a new version of Friendica available for download. Your current "
|
||||
"version is %1$s, upstream version is %2$s"
|
||||
msgstr "Une nouvelle version de Friendica est disponible. Votre version est %1$s, la nouvelle version est %2$s"
|
||||
|
||||
#: mod/admin.php:448 mod/admin.php:1352
|
||||
#: mod/admin.php:637
|
||||
msgid ""
|
||||
"The database update failed. Please run \"php include/dbstructure.php "
|
||||
"update\" from the command line and have a look at the errors that might "
|
||||
"appear."
|
||||
msgstr "La mise à jour de la base de données a échoué. Exécutez \"php include/dbstructure.php update\" depuis un terminal et examinez les erreurs qui sont renvoyées."
|
||||
|
||||
#: mod/admin.php:643
|
||||
msgid "The worker was never executed. Please check your database structure!"
|
||||
msgstr "Le 'worker' n'a pas encore été exécuté. Vérifiez la structure de votre base de données."
|
||||
|
||||
#: mod/admin.php:646
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The last worker execution was on %s UTC. This is older than one hour. Please"
|
||||
" check your crontab settings."
|
||||
msgstr "La dernière exécution du 'worker' s'est déroulée à %s, c'est-à-dire il y a plus d'une heure. Vérifiez les réglages de crontab."
|
||||
|
||||
#: mod/admin.php:651 mod/admin.php:1569
|
||||
msgid "Normal Account"
|
||||
msgstr "Compte normal"
|
||||
|
||||
#: mod/admin.php:449 mod/admin.php:1353
|
||||
msgid "Soapbox Account"
|
||||
msgstr "Compte \"boîte à savon\""
|
||||
#: mod/admin.php:652 mod/admin.php:1570
|
||||
msgid "Automatic Follower Account"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:450 mod/admin.php:1354
|
||||
msgid "Community/Celebrity Account"
|
||||
msgstr "Compte de communauté/célébrité"
|
||||
#: mod/admin.php:653 mod/admin.php:1571
|
||||
msgid "Public Forum Account"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:451 mod/admin.php:1355
|
||||
#: mod/admin.php:654 mod/admin.php:1572
|
||||
msgid "Automatic Friend Account"
|
||||
msgstr "Compte auto-amical"
|
||||
|
||||
#: mod/admin.php:452
|
||||
#: mod/admin.php:655
|
||||
msgid "Blog Account"
|
||||
msgstr "Compte de blog"
|
||||
|
||||
#: mod/admin.php:453
|
||||
msgid "Private Forum"
|
||||
msgstr "Forum privé"
|
||||
#: mod/admin.php:656
|
||||
msgid "Private Forum Account"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:479
|
||||
#: mod/admin.php:678
|
||||
msgid "Message queues"
|
||||
msgstr "Files d'attente des messages"
|
||||
|
||||
#: mod/admin.php:485
|
||||
#: mod/admin.php:684
|
||||
msgid "Summary"
|
||||
msgstr "Résumé"
|
||||
|
||||
#: mod/admin.php:488
|
||||
#: mod/admin.php:686
|
||||
msgid "Registered users"
|
||||
msgstr "Utilisateurs inscrits"
|
||||
|
||||
#: mod/admin.php:490
|
||||
#: mod/admin.php:688
|
||||
msgid "Pending registrations"
|
||||
msgstr "Inscriptions en attente"
|
||||
|
||||
#: mod/admin.php:491
|
||||
#: mod/admin.php:689
|
||||
msgid "Version"
|
||||
msgstr "Versio"
|
||||
msgstr "Version"
|
||||
|
||||
#: mod/admin.php:496
|
||||
#: mod/admin.php:694
|
||||
msgid "Active plugins"
|
||||
msgstr "Extensions activés"
|
||||
msgstr "Extensions activées"
|
||||
|
||||
#: mod/admin.php:521
|
||||
#: mod/admin.php:724
|
||||
msgid "Can not parse base url. Must have at least <scheme>://<domain>"
|
||||
msgstr "Impossible d'analyser l'URL de base. Doit contenir au moins <scheme>://<domain>"
|
||||
|
||||
#: mod/admin.php:826
|
||||
msgid "RINO2 needs mcrypt php extension to work."
|
||||
msgstr "RINO2 a besoin du module php mcrypt pour fonctionner."
|
||||
|
||||
#: mod/admin.php:834
|
||||
#: mod/admin.php:1031
|
||||
msgid "Site settings updated."
|
||||
msgstr "Réglages du site mis-à-jour."
|
||||
|
||||
#: mod/admin.php:881
|
||||
#: mod/admin.php:1059 mod/settings.php:953
|
||||
msgid "No special theme for mobile devices"
|
||||
msgstr "Pas de thème particulier pour les terminaux mobiles"
|
||||
|
||||
#: mod/admin.php:1088
|
||||
msgid "No community page"
|
||||
msgstr "Aucune page de communauté"
|
||||
|
||||
#: mod/admin.php:882
|
||||
#: mod/admin.php:1089
|
||||
msgid "Public postings from users of this site"
|
||||
msgstr "Publications publiques des utilisateurs de ce site"
|
||||
|
||||
#: mod/admin.php:883
|
||||
#: mod/admin.php:1090
|
||||
msgid "Global community page"
|
||||
msgstr "Page de la communauté globale"
|
||||
|
||||
#: mod/admin.php:888 mod/contacts.php:530
|
||||
#: mod/admin.php:1095 mod/contacts.php:553
|
||||
msgid "Never"
|
||||
msgstr "Jamais"
|
||||
|
||||
#: mod/admin.php:889
|
||||
#: mod/admin.php:1096
|
||||
msgid "At post arrival"
|
||||
msgstr "A l'arrivé d'une publication"
|
||||
msgstr "A l'arrivée d'une publication"
|
||||
|
||||
#: mod/admin.php:897 mod/contacts.php:557
|
||||
#: mod/admin.php:1104 mod/contacts.php:583
|
||||
msgid "Disabled"
|
||||
msgstr "Désactivé"
|
||||
|
||||
#: mod/admin.php:899
|
||||
#: mod/admin.php:1106
|
||||
msgid "Users, Global Contacts"
|
||||
msgstr "Utilisateurs, Contacts Globaux"
|
||||
|
||||
#: mod/admin.php:900
|
||||
#: mod/admin.php:1107
|
||||
msgid "Users, Global Contacts/fallback"
|
||||
msgstr "Utilisateurs, Contacts Globaux/alternative"
|
||||
|
||||
#: mod/admin.php:904
|
||||
#: mod/admin.php:1111
|
||||
msgid "One month"
|
||||
msgstr "Un mois"
|
||||
|
||||
#: mod/admin.php:905
|
||||
#: mod/admin.php:1112
|
||||
msgid "Three months"
|
||||
msgstr "Trois mois"
|
||||
|
||||
#: mod/admin.php:906
|
||||
#: mod/admin.php:1113
|
||||
msgid "Half a year"
|
||||
msgstr "Six mois"
|
||||
|
||||
#: mod/admin.php:907
|
||||
#: mod/admin.php:1114
|
||||
msgid "One year"
|
||||
msgstr "Un an"
|
||||
|
||||
#: mod/admin.php:912
|
||||
#: mod/admin.php:1119
|
||||
msgid "Multi user instance"
|
||||
msgstr "Instance multi-utilisateurs"
|
||||
|
||||
#: mod/admin.php:935
|
||||
#: mod/admin.php:1142
|
||||
msgid "Closed"
|
||||
msgstr "Fermé"
|
||||
|
||||
#: mod/admin.php:936
|
||||
#: mod/admin.php:1143
|
||||
msgid "Requires approval"
|
||||
msgstr "Demande une apptrobation"
|
||||
|
||||
#: mod/admin.php:937
|
||||
#: mod/admin.php:1144
|
||||
msgid "Open"
|
||||
msgstr "Ouvert"
|
||||
|
||||
#: mod/admin.php:941
|
||||
#: mod/admin.php:1148
|
||||
msgid "No SSL policy, links will track page SSL state"
|
||||
msgstr "Pas de politique SSL, le liens conserveront l'état SSL de la page"
|
||||
|
||||
#: mod/admin.php:942
|
||||
#: mod/admin.php:1149
|
||||
msgid "Force all links to use SSL"
|
||||
msgstr "Forcer tous les liens à utiliser SSL"
|
||||
|
||||
#: mod/admin.php:943
|
||||
#: mod/admin.php:1150
|
||||
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
|
||||
msgstr "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)"
|
||||
|
||||
#: mod/admin.php:957
|
||||
#: mod/admin.php:1154
|
||||
msgid "Don't check"
|
||||
msgstr "Ne pas rechercher"
|
||||
|
||||
#: mod/admin.php:1155
|
||||
msgid "check the stable version"
|
||||
msgstr "Rechercher les versions stables"
|
||||
|
||||
#: mod/admin.php:1156
|
||||
msgid "check the development version"
|
||||
msgstr "Rechercher les versions de développement"
|
||||
|
||||
#: mod/admin.php:1178 mod/admin.php:1802 mod/admin.php:2065 mod/admin.php:2139
|
||||
#: mod/admin.php:2289 mod/settings.php:696 mod/settings.php:807
|
||||
#: mod/settings.php:856 mod/settings.php:918 mod/settings.php:1006
|
||||
#: mod/settings.php:1255
|
||||
msgid "Save Settings"
|
||||
msgstr "Sauvegarder les paramètres"
|
||||
|
||||
#: mod/admin.php:1179
|
||||
msgid "Republish users to directory"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1180 mod/register.php:279
|
||||
msgid "Registration"
|
||||
msgstr "Inscription"
|
||||
|
||||
#: mod/admin.php:1181
|
||||
msgid "File upload"
|
||||
msgstr "Téléversement de fichier"
|
||||
|
||||
#: mod/admin.php:958
|
||||
#: mod/admin.php:1182
|
||||
msgid "Policies"
|
||||
msgstr "Politiques"
|
||||
|
||||
#: mod/admin.php:960
|
||||
#: mod/admin.php:1184
|
||||
msgid "Auto Discovered Contact Directory"
|
||||
msgstr "Répertoire de Contacts Découverts Automatiquement"
|
||||
|
||||
#: mod/admin.php:961
|
||||
#: mod/admin.php:1185
|
||||
msgid "Performance"
|
||||
msgstr "Performance"
|
||||
|
||||
#: mod/admin.php:962
|
||||
#: mod/admin.php:1186
|
||||
msgid "Worker"
|
||||
msgstr "Worker"
|
||||
|
||||
#: mod/admin.php:963
|
||||
#: mod/admin.php:1187
|
||||
msgid ""
|
||||
"Relocate - WARNING: advanced function. Could make this server unreachable."
|
||||
msgstr "Relocalisation - ATTENTION: fonction avancée. Peut rendre ce serveur inaccessible."
|
||||
|
||||
#: mod/admin.php:966
|
||||
#: mod/admin.php:1190
|
||||
msgid "Site name"
|
||||
msgstr "Nom du site"
|
||||
|
||||
#: mod/admin.php:967
|
||||
#: mod/admin.php:1191
|
||||
msgid "Host name"
|
||||
msgstr "Nom de la machine hôte"
|
||||
|
||||
#: mod/admin.php:968
|
||||
#: mod/admin.php:1192
|
||||
msgid "Sender Email"
|
||||
msgstr "Courriel de l'émetteur"
|
||||
|
||||
#: mod/admin.php:968
|
||||
#: mod/admin.php:1192
|
||||
msgid ""
|
||||
"The email address your server shall use to send notification emails from."
|
||||
msgstr "L'adresse courriel à partir de laquelle votre serveur enverra des courriels."
|
||||
|
||||
#: mod/admin.php:969
|
||||
#: mod/admin.php:1193
|
||||
msgid "Banner/Logo"
|
||||
msgstr "Bannière/Logo"
|
||||
|
||||
#: mod/admin.php:970
|
||||
#: mod/admin.php:1194
|
||||
msgid "Shortcut icon"
|
||||
msgstr "Icône de raccourci"
|
||||
|
||||
#: mod/admin.php:970
|
||||
#: mod/admin.php:1194
|
||||
msgid "Link to an icon that will be used for browsers."
|
||||
msgstr "Lien vers une icône qui sera utilisée pour les navigateurs."
|
||||
|
||||
#: mod/admin.php:971
|
||||
#: mod/admin.php:1195
|
||||
msgid "Touch icon"
|
||||
msgstr "Icône pour systèmes tactiles"
|
||||
|
||||
#: mod/admin.php:971
|
||||
#: mod/admin.php:1195
|
||||
msgid "Link to an icon that will be used for tablets and mobiles."
|
||||
msgstr "Lien vers une icône qui sera utilisée pour les tablettes et les mobiles."
|
||||
|
||||
#: mod/admin.php:972
|
||||
#: mod/admin.php:1196
|
||||
msgid "Additional Info"
|
||||
msgstr "Informations supplémentaires"
|
||||
|
||||
#: mod/admin.php:972
|
||||
#: mod/admin.php:1196
|
||||
#, php-format
|
||||
msgid ""
|
||||
"For public servers: you can add additional information here that will be "
|
||||
"listed at %s/siteinfo."
|
||||
msgstr "Pour les serveurs publics : vous pouvez ajouter des informations supplémentaires ici, qui figureront dans %s/siteinfo."
|
||||
|
||||
#: mod/admin.php:973
|
||||
#: mod/admin.php:1197
|
||||
msgid "System language"
|
||||
msgstr "Langue du système"
|
||||
|
||||
#: mod/admin.php:974
|
||||
#: mod/admin.php:1198
|
||||
msgid "System theme"
|
||||
msgstr "Thème du système"
|
||||
|
||||
#: mod/admin.php:974
|
||||
#: mod/admin.php:1198
|
||||
msgid ""
|
||||
"Default system theme - may be over-ridden by user profiles - <a href='#' "
|
||||
"id='cnftheme'>change theme settings</a>"
|
||||
msgstr "Thème par défaut sur ce site - peut être changé au niveau du profile utilisateur - <a href='#' id='cnftheme'>changer les réglages du thème</a>"
|
||||
|
||||
#: mod/admin.php:975
|
||||
#: mod/admin.php:1199
|
||||
msgid "Mobile system theme"
|
||||
msgstr "Thème mobile"
|
||||
|
||||
#: mod/admin.php:975
|
||||
#: mod/admin.php:1199
|
||||
msgid "Theme for mobile devices"
|
||||
msgstr "Thème pour les terminaux mobiles"
|
||||
|
||||
#: mod/admin.php:976
|
||||
#: mod/admin.php:1200
|
||||
msgid "SSL link policy"
|
||||
msgstr "Politique SSL pour les liens"
|
||||
|
||||
#: mod/admin.php:976
|
||||
#: mod/admin.php:1200
|
||||
msgid "Determines whether generated links should be forced to use SSL"
|
||||
msgstr "Détermine si les liens générés doivent forcer l'utilisation de SSL"
|
||||
|
||||
#: mod/admin.php:977
|
||||
#: mod/admin.php:1201
|
||||
msgid "Force SSL"
|
||||
msgstr "SSL obligatoire"
|
||||
|
||||
#: mod/admin.php:977
|
||||
#: mod/admin.php:1201
|
||||
msgid ""
|
||||
"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
|
||||
" to endless loops."
|
||||
msgstr "Redirige toutes les requêtes en clair vers des requêtes SSL. Attention : sur certains systèmes cela peut conduire à des boucles de redirection infinies."
|
||||
|
||||
#: mod/admin.php:978
|
||||
msgid "Old style 'Share'"
|
||||
msgstr "Anciens style 'Partage'"
|
||||
|
||||
#: mod/admin.php:978
|
||||
msgid "Deactivates the bbcode element 'share' for repeating items."
|
||||
msgstr "Désactive l'élément 'partage' de bbcode pour répéter les articles."
|
||||
|
||||
#: mod/admin.php:979
|
||||
#: mod/admin.php:1202
|
||||
msgid "Hide help entry from navigation menu"
|
||||
msgstr "Cacher l'aide du menu de navigation"
|
||||
|
||||
#: mod/admin.php:979
|
||||
#: mod/admin.php:1202
|
||||
msgid ""
|
||||
"Hides the menu entry for the Help pages from the navigation menu. You can "
|
||||
"still access it calling /help directly."
|
||||
msgstr "Cacher du menu de navigation le l'entrée des vers les pages d'aide. Vous pouvez toujours y accéder en tapant directement /help."
|
||||
msgstr "Cacher du menu de navigation l'entrée vers les pages d'aide. Vous pouvez toujours y accéder en tapant directement /help."
|
||||
|
||||
#: mod/admin.php:980
|
||||
#: mod/admin.php:1203
|
||||
msgid "Single user instance"
|
||||
msgstr "Instance mono-utilisateur"
|
||||
|
||||
#: mod/admin.php:980
|
||||
#: mod/admin.php:1203
|
||||
msgid "Make this instance multi-user or single-user for the named user"
|
||||
msgstr "Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l'utilisateur."
|
||||
|
||||
#: mod/admin.php:981
|
||||
#: mod/admin.php:1204
|
||||
msgid "Maximum image size"
|
||||
msgstr "Taille maximale des images"
|
||||
|
||||
#: mod/admin.php:981
|
||||
#: mod/admin.php:1204
|
||||
msgid ""
|
||||
"Maximum size in bytes of uploaded images. Default is 0, which means no "
|
||||
"limits."
|
||||
msgstr "Taille maximale des images envoyées (en octets). 0 par défaut, c'est à dire \"aucune limite\"."
|
||||
|
||||
#: mod/admin.php:982
|
||||
#: mod/admin.php:1205
|
||||
msgid "Maximum image length"
|
||||
msgstr "Longueur maximale des images"
|
||||
|
||||
#: mod/admin.php:982
|
||||
#: mod/admin.php:1205
|
||||
msgid ""
|
||||
"Maximum length in pixels of the longest side of uploaded images. Default is "
|
||||
"-1, which means no limits."
|
||||
msgstr "Longueur maximale (en pixels) du plus long côté des images téléversées. La valeur par défaut est -1, soit une absence de limite."
|
||||
msgstr "Longueur maximale en pixels du plus long côté des images téléversées. La valeur par défaut est -1 : absence de limite."
|
||||
|
||||
#: mod/admin.php:983
|
||||
#: mod/admin.php:1206
|
||||
msgid "JPEG image quality"
|
||||
msgstr "Qualité JPEG des images"
|
||||
|
||||
#: mod/admin.php:983
|
||||
#: mod/admin.php:1206
|
||||
msgid ""
|
||||
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
|
||||
"100, which is full quality."
|
||||
msgstr "Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale."
|
||||
|
||||
#: mod/admin.php:985
|
||||
#: mod/admin.php:1208
|
||||
msgid "Register policy"
|
||||
msgstr "Politique d'inscription"
|
||||
|
||||
#: mod/admin.php:986
|
||||
#: mod/admin.php:1209
|
||||
msgid "Maximum Daily Registrations"
|
||||
msgstr "Inscriptions maximum par jour"
|
||||
|
||||
#: mod/admin.php:986
|
||||
#: mod/admin.php:1209
|
||||
msgid ""
|
||||
"If registration is permitted above, this sets the maximum number of new user"
|
||||
" registrations to accept per day. If register is set to closed, this "
|
||||
"setting has no effect."
|
||||
msgstr "Si les inscriptions sont permises ci-dessus, ceci fixe le nombre maximum d'inscriptions de nouveaux utilisateurs acceptées par jour. Si les inscriptions ne sont pas ouvertes, ce paramètre n'a aucun effet."
|
||||
|
||||
#: mod/admin.php:987
|
||||
#: mod/admin.php:1210
|
||||
msgid "Register text"
|
||||
msgstr "Texte d'inscription"
|
||||
|
||||
#: mod/admin.php:987
|
||||
#: mod/admin.php:1210
|
||||
msgid "Will be displayed prominently on the registration page."
|
||||
msgstr "Sera affiché de manière bien visible sur la page d'accueil."
|
||||
|
||||
#: mod/admin.php:988
|
||||
#: mod/admin.php:1211
|
||||
msgid "Accounts abandoned after x days"
|
||||
msgstr "Les comptes sont abandonnés après x jours"
|
||||
|
||||
#: mod/admin.php:988
|
||||
#: mod/admin.php:1211
|
||||
msgid ""
|
||||
"Will not waste system resources polling external sites for abandonded "
|
||||
"accounts. Enter 0 for no time limit."
|
||||
msgstr "Pour ne pas gaspiller les ressources système, on cesse d'interroger les sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette fonction."
|
||||
|
||||
#: mod/admin.php:989
|
||||
#: mod/admin.php:1212
|
||||
msgid "Allowed friend domains"
|
||||
msgstr "Domaines autorisés"
|
||||
|
||||
#: mod/admin.php:989
|
||||
#: mod/admin.php:1212
|
||||
msgid ""
|
||||
"Comma separated list of domains which are allowed to establish friendships "
|
||||
"with this site. Wildcards are accepted. Empty to allow any domains"
|
||||
msgstr "Une liste de domaines, séparés par des virgules, autorisés à établir des relations avec les utilisateurs de ce site. Les '*' sont acceptés. Laissez vide pour autoriser tous les domaines"
|
||||
|
||||
#: mod/admin.php:990
|
||||
#: mod/admin.php:1213
|
||||
msgid "Allowed email domains"
|
||||
msgstr "Domaines courriel autorisés"
|
||||
|
||||
#: mod/admin.php:990
|
||||
#: mod/admin.php:1213
|
||||
msgid ""
|
||||
"Comma separated list of domains which are allowed in email addresses for "
|
||||
"registrations to this site. Wildcards are accepted. Empty to allow any "
|
||||
"domains"
|
||||
msgstr "Liste de domaines - séparés par des virgules - dont les adresses e-mail sont autorisées à s'inscrire sur ce site. Les '*' sont acceptées. Laissez vide pour autoriser tous les domaines"
|
||||
|
||||
#: mod/admin.php:991
|
||||
#: mod/admin.php:1214
|
||||
msgid "Block public"
|
||||
msgstr "Interdire la publication globale"
|
||||
|
||||
#: mod/admin.php:991
|
||||
#: mod/admin.php:1214
|
||||
msgid ""
|
||||
"Check to block public access to all otherwise public personal pages on this "
|
||||
"site unless you are currently logged in."
|
||||
msgstr "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques."
|
||||
|
||||
#: mod/admin.php:992
|
||||
#: mod/admin.php:1215
|
||||
msgid "Force publish"
|
||||
msgstr "Forcer la publication globale"
|
||||
|
||||
#: mod/admin.php:992
|
||||
#: mod/admin.php:1215
|
||||
msgid ""
|
||||
"Check to force all profiles on this site to be listed in the site directory."
|
||||
msgstr "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site."
|
||||
|
||||
#: mod/admin.php:993
|
||||
#: mod/admin.php:1216
|
||||
msgid "Global directory URL"
|
||||
msgstr "URL de l'annuaire global"
|
||||
|
||||
#: mod/admin.php:993
|
||||
#: mod/admin.php:1216
|
||||
msgid ""
|
||||
"URL to the global directory. If this is not set, the global directory is "
|
||||
"completely unavailable to the application."
|
||||
msgstr "URL de l'annuaire global. Si ce champ n'est pas défini, l'annuaire global sera complètement indisponible pour l'application."
|
||||
|
||||
#: mod/admin.php:994
|
||||
#: mod/admin.php:1217
|
||||
msgid "Allow threaded items"
|
||||
msgstr "autoriser le suivi des éléments par fil conducteur"
|
||||
|
||||
#: mod/admin.php:994
|
||||
#: mod/admin.php:1217
|
||||
msgid "Allow infinite level threading for items on this site."
|
||||
msgstr "Permettre une imbrication infinie des commentaires."
|
||||
|
||||
#: mod/admin.php:995
|
||||
#: mod/admin.php:1218
|
||||
msgid "Private posts by default for new users"
|
||||
msgstr "Publications privées par défaut pour les nouveaux utilisateurs"
|
||||
|
||||
#: mod/admin.php:995
|
||||
#: mod/admin.php:1218
|
||||
msgid ""
|
||||
"Set default post permissions for all new members to the default privacy "
|
||||
"group rather than public."
|
||||
msgstr "Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde."
|
||||
|
||||
#: mod/admin.php:996
|
||||
#: mod/admin.php:1219
|
||||
msgid "Don't include post content in email notifications"
|
||||
msgstr "Ne pas inclure le contenu posté dans l'e-mail de notification"
|
||||
|
||||
#: mod/admin.php:996
|
||||
#: mod/admin.php:1219
|
||||
msgid ""
|
||||
"Don't include the content of a post/comment/private message/etc. in the "
|
||||
"email notifications that are sent out from this site, as a privacy measure."
|
||||
msgstr "Ne pas inclure le contenu de publication/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité."
|
||||
|
||||
#: mod/admin.php:997
|
||||
#: mod/admin.php:1220
|
||||
msgid "Disallow public access to addons listed in the apps menu."
|
||||
msgstr "Interdire l’accès public pour les greffons listées dans le menu apps."
|
||||
|
||||
#: mod/admin.php:997
|
||||
#: mod/admin.php:1220
|
||||
msgid ""
|
||||
"Checking this box will restrict addons listed in the apps menu to members "
|
||||
"only."
|
||||
msgstr "Cocher cette case restreint la liste des greffons dans le menu des applications seulement aux membres."
|
||||
|
||||
#: mod/admin.php:998
|
||||
#: mod/admin.php:1221
|
||||
msgid "Don't embed private images in posts"
|
||||
msgstr "Ne pas miniaturiser les images privées dans les publications"
|
||||
|
||||
#: mod/admin.php:998
|
||||
#: mod/admin.php:1221
|
||||
msgid ""
|
||||
"Don't replace locally-hosted private photos in posts with an embedded copy "
|
||||
"of the image. This means that contacts who receive posts containing private "
|
||||
|
|
@ -6814,239 +3899,210 @@ msgid ""
|
|||
"while."
|
||||
msgstr "Ne remplacez pas les images privées hébergées localement dans les publications avec une image attaché en copie, car cela signifie que le contact qui reçoit les publications contenant ces photos privées devra s’authentifier pour charger chaque image, ce qui peut prendre du temps."
|
||||
|
||||
#: mod/admin.php:999
|
||||
#: mod/admin.php:1222
|
||||
msgid "Allow Users to set remote_self"
|
||||
msgstr "Autoriser les utilisateurs à définir remote_self"
|
||||
|
||||
#: mod/admin.php:999
|
||||
#: mod/admin.php:1222
|
||||
msgid ""
|
||||
"With checking this, every user is allowed to mark every contact as a "
|
||||
"remote_self in the repair contact dialog. Setting this flag on a contact "
|
||||
"causes mirroring every posting of that contact in the users stream."
|
||||
msgstr "Cocher cette case, permet à chaque utilisateur de marquer chaque contact comme un remote_self dans la boîte de dialogue de réparation des contacts. Activer cette fonction à un contact engendre la réplique de toutes les publications d'un contact dans le flux d'activités des utilisateurs."
|
||||
|
||||
#: mod/admin.php:1000
|
||||
#: mod/admin.php:1223
|
||||
msgid "Block multiple registrations"
|
||||
msgstr "Interdire les inscriptions multiples"
|
||||
|
||||
#: mod/admin.php:1000
|
||||
#: mod/admin.php:1223
|
||||
msgid "Disallow users to register additional accounts for use as pages."
|
||||
msgstr "Ne pas permettre l'inscription de comptes multiples comme des pages."
|
||||
|
||||
#: mod/admin.php:1001
|
||||
#: mod/admin.php:1224
|
||||
msgid "OpenID support"
|
||||
msgstr "Support OpenID"
|
||||
|
||||
#: mod/admin.php:1001
|
||||
#: mod/admin.php:1224
|
||||
msgid "OpenID support for registration and logins."
|
||||
msgstr "Supporter OpenID pour les inscriptions et connexions."
|
||||
|
||||
#: mod/admin.php:1002
|
||||
#: mod/admin.php:1225
|
||||
msgid "Fullname check"
|
||||
msgstr "Vérification du \"Prénom Nom\""
|
||||
|
||||
#: mod/admin.php:1002
|
||||
#: mod/admin.php:1225
|
||||
msgid ""
|
||||
"Force users to register with a space between firstname and lastname in Full "
|
||||
"name, as an antispam measure"
|
||||
msgstr "Imposer l'utilisation d'un espace entre le prénom et le nom (dans le Nom complet), pour limiter les abus"
|
||||
|
||||
#: mod/admin.php:1003
|
||||
msgid "UTF-8 Regular expressions"
|
||||
msgstr "Regex UTF-8"
|
||||
|
||||
#: mod/admin.php:1003
|
||||
msgid "Use PHP UTF8 regular expressions"
|
||||
msgstr "Utiliser les expressions rationnelles de PHP en UTF8"
|
||||
|
||||
#: mod/admin.php:1004
|
||||
#: mod/admin.php:1226
|
||||
msgid "Community Page Style"
|
||||
msgstr "Style de la page de communauté"
|
||||
|
||||
#: mod/admin.php:1004
|
||||
#: mod/admin.php:1226
|
||||
msgid ""
|
||||
"Type of community page to show. 'Global community' shows every public "
|
||||
"posting from an open distributed network that arrived on this server."
|
||||
msgstr "Type de page de la communauté à afficher. « Communauté globale » montre toutes les publications publiques des réseaux distribués ouverts qui arrivent sur ce serveur."
|
||||
|
||||
#: mod/admin.php:1005
|
||||
#: mod/admin.php:1227
|
||||
msgid "Posts per user on community page"
|
||||
msgstr "Nombre de publications par utilisateur sur la page de la communauté (n'est pas valide pour "
|
||||
|
||||
#: mod/admin.php:1005
|
||||
#: mod/admin.php:1227
|
||||
msgid ""
|
||||
"The maximum number of posts per user on the community page. (Not valid for "
|
||||
"'Global Community')"
|
||||
msgstr "Nombre maximal de publications par utilisateurs sur la page de la communauté (ne s'applique pas pour « Communauté globale »)."
|
||||
|
||||
#: mod/admin.php:1006
|
||||
#: mod/admin.php:1228
|
||||
msgid "Enable OStatus support"
|
||||
msgstr "Activer le support d'OStatus"
|
||||
|
||||
#: mod/admin.php:1006
|
||||
#: mod/admin.php:1228
|
||||
msgid ""
|
||||
"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
|
||||
"communications in OStatus are public, so privacy warnings will be "
|
||||
"occasionally displayed."
|
||||
msgstr "Fourni nativement la compatibilité avec OStatus (StatusNet, GNU Social etc.). Touts les communications utilisant OStatus sont public, des avertissements liés à la vie privée seront affichés si utile."
|
||||
|
||||
#: mod/admin.php:1007
|
||||
msgid "OStatus conversation completion interval"
|
||||
msgstr "Achèvement de l'intervalle de conversation OStatus "
|
||||
|
||||
#: mod/admin.php:1007
|
||||
msgid ""
|
||||
"How often shall the poller check for new entries in OStatus conversations? "
|
||||
"This can be a very ressource task."
|
||||
msgstr "Combien de fois le poller devra vérifier les nouvelles entrées dans les conversations OStatus? Cela peut utilisé beaucoup de ressources."
|
||||
|
||||
#: mod/admin.php:1008
|
||||
#: mod/admin.php:1229
|
||||
msgid "Only import OStatus threads from our contacts"
|
||||
msgstr "Importer seulement les fils OStatus de nos contacts"
|
||||
|
||||
#: mod/admin.php:1008
|
||||
#: mod/admin.php:1229
|
||||
msgid ""
|
||||
"Normally we import every content from our OStatus contacts. With this option"
|
||||
" we only store threads that are started by a contact that is known on our "
|
||||
"system."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1009
|
||||
#: mod/admin.php:1230
|
||||
msgid "OStatus support can only be enabled if threading is enabled."
|
||||
msgstr "Le support OStatus ne peut être activé que si l'imbrication des commentaires est activée."
|
||||
|
||||
#: mod/admin.php:1011
|
||||
#: mod/admin.php:1232
|
||||
msgid ""
|
||||
"Diaspora support can't be enabled because Friendica was installed into a sub"
|
||||
" directory."
|
||||
msgstr "Le support de Diaspora ne peut pas être activé parce que Friendica a été installé dans un sous-répertoire."
|
||||
|
||||
#: mod/admin.php:1012
|
||||
#: mod/admin.php:1233
|
||||
msgid "Enable Diaspora support"
|
||||
msgstr "Activer le support de Diaspora"
|
||||
|
||||
#: mod/admin.php:1012
|
||||
#: mod/admin.php:1233
|
||||
msgid "Provide built-in Diaspora network compatibility."
|
||||
msgstr "Fournir une compatibilité Diaspora intégrée."
|
||||
|
||||
#: mod/admin.php:1013
|
||||
#: mod/admin.php:1234
|
||||
msgid "Only allow Friendica contacts"
|
||||
msgstr "N'autoriser que les contacts Friendica"
|
||||
|
||||
#: mod/admin.php:1013
|
||||
#: mod/admin.php:1234
|
||||
msgid ""
|
||||
"All contacts must use Friendica protocols. All other built-in communication "
|
||||
"protocols disabled."
|
||||
msgstr "Tous les contacts doivent utiliser les protocoles de Friendica. Tous les autres protocoles de communication intégrés sont désactivés."
|
||||
|
||||
#: mod/admin.php:1014
|
||||
#: mod/admin.php:1235
|
||||
msgid "Verify SSL"
|
||||
msgstr "Vérifier SSL"
|
||||
|
||||
#: mod/admin.php:1014
|
||||
#: mod/admin.php:1235
|
||||
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 "Si vous le souhaitez, vous pouvez activier la vérification stricte des certificats. Cela signifie que vous ne pourrez pas vous connecter (du tout) aux sites SSL munis d'un certificat auto-signé."
|
||||
|
||||
#: mod/admin.php:1015
|
||||
#: mod/admin.php:1236
|
||||
msgid "Proxy user"
|
||||
msgstr "Utilisateur du proxy"
|
||||
|
||||
#: mod/admin.php:1016
|
||||
#: mod/admin.php:1237
|
||||
msgid "Proxy URL"
|
||||
msgstr "URL du proxy"
|
||||
|
||||
#: mod/admin.php:1017
|
||||
#: mod/admin.php:1238
|
||||
msgid "Network timeout"
|
||||
msgstr "Dépassement du délai d'attente du réseau"
|
||||
|
||||
#: mod/admin.php:1017
|
||||
#: mod/admin.php:1238
|
||||
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
|
||||
msgstr "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)."
|
||||
|
||||
#: mod/admin.php:1018
|
||||
msgid "Delivery interval"
|
||||
msgstr "Intervalle de transmission"
|
||||
|
||||
#: mod/admin.php:1018
|
||||
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 "Rallonge le processus de transmissions pour réduire la charge système (en secondes). Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS, 0-1 pour les gros servers dédiés."
|
||||
|
||||
#: mod/admin.php:1019
|
||||
msgid "Poll interval"
|
||||
msgstr "Intervalle de réception"
|
||||
|
||||
#: mod/admin.php:1019
|
||||
msgid ""
|
||||
"Delay background polling processes by this many seconds to reduce system "
|
||||
"load. If 0, use delivery interval."
|
||||
msgstr "Rajouter un délai - en secondes - au processus de 'polling', afin de réduire la charge système. Mettre à 0 pour utiliser l'intervalle d'émission."
|
||||
|
||||
#: mod/admin.php:1020
|
||||
#: mod/admin.php:1239
|
||||
msgid "Maximum Load Average"
|
||||
msgstr "Plafond de la charge moyenne"
|
||||
|
||||
#: mod/admin.php:1020
|
||||
#: mod/admin.php:1239
|
||||
msgid ""
|
||||
"Maximum system load before delivery and poll processes are deferred - "
|
||||
"default 50."
|
||||
msgstr "Charge système maximale à partir de laquelle l'émission et la réception seront soumises à un délai supplémentaire. Par défaut, 50."
|
||||
|
||||
#: mod/admin.php:1021
|
||||
#: mod/admin.php:1240
|
||||
msgid "Maximum Load Average (Frontend)"
|
||||
msgstr "Plafond de la charge moyenne (frontale)"
|
||||
|
||||
#: mod/admin.php:1021
|
||||
#: mod/admin.php:1240
|
||||
msgid "Maximum system load before the frontend quits service - default 50."
|
||||
msgstr "Limite de charge système pour le rendu des pages - défaut 50."
|
||||
|
||||
#: mod/admin.php:1022
|
||||
#: mod/admin.php:1241
|
||||
msgid "Minimal Memory"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1241
|
||||
msgid ""
|
||||
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
|
||||
"default 0 (deactivated)."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1242
|
||||
msgid "Maximum table size for optimization"
|
||||
msgstr "Limite de taille de table pour l'optimisation"
|
||||
|
||||
#: mod/admin.php:1022
|
||||
#: mod/admin.php:1242
|
||||
msgid ""
|
||||
"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
|
||||
"Enter -1 to disable it."
|
||||
msgstr "Limite de taille de table (en Mo) pour l'optimisation automatique - défaut 100 Mo. -1 pour désactiver la limite."
|
||||
|
||||
#: mod/admin.php:1023
|
||||
#: mod/admin.php:1243
|
||||
msgid "Minimum level of fragmentation"
|
||||
msgstr "Seuil de fragmentation"
|
||||
|
||||
#: mod/admin.php:1023
|
||||
#: mod/admin.php:1243
|
||||
msgid ""
|
||||
"Minimum fragmenation level to start the automatic optimization - default "
|
||||
"value is 30%."
|
||||
msgstr "Seuil de fragmentation pour que l'optimisation automatique se déclenche - défaut 30%."
|
||||
|
||||
#: mod/admin.php:1025
|
||||
#: mod/admin.php:1245
|
||||
msgid "Periodical check of global contacts"
|
||||
msgstr "Vérification périodique des contacts globaux"
|
||||
|
||||
#: mod/admin.php:1025
|
||||
#: mod/admin.php:1245
|
||||
msgid ""
|
||||
"If enabled, the global contacts are checked periodically for missing or "
|
||||
"outdated data and the vitality of the contacts and servers."
|
||||
msgstr "Si activé, les données manquantes et obsolètes et la vitalité des contacts et des serveurs seront vérifiées périodiquement dans les contacts globaux."
|
||||
|
||||
#: mod/admin.php:1026
|
||||
#: mod/admin.php:1246
|
||||
msgid "Days between requery"
|
||||
msgstr "Nombre de jours entre les requêtes"
|
||||
|
||||
#: mod/admin.php:1026
|
||||
#: mod/admin.php:1246
|
||||
msgid "Number of days after which a server is requeried for his contacts."
|
||||
msgstr "Nombre de jours avant qu'une requête de contacts soient envoyée à nouveau à un serveur."
|
||||
|
||||
#: mod/admin.php:1027
|
||||
#: mod/admin.php:1247
|
||||
msgid "Discover contacts from other servers"
|
||||
msgstr "Découvrir des contacts des autres serveurs"
|
||||
|
||||
#: mod/admin.php:1027
|
||||
#: mod/admin.php:1247
|
||||
msgid ""
|
||||
"Periodically query other servers for contacts. You can choose between "
|
||||
"'users': the users on the remote system, 'Global Contacts': active contacts "
|
||||
|
|
@ -7056,32 +4112,32 @@ msgid ""
|
|||
"Global Contacts'."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1028
|
||||
#: mod/admin.php:1248
|
||||
msgid "Timeframe for fetching global contacts"
|
||||
msgstr "Fréquence de récupération des contacts globaux"
|
||||
|
||||
#: mod/admin.php:1028
|
||||
#: mod/admin.php:1248
|
||||
msgid ""
|
||||
"When the discovery is activated, this value defines the timeframe for the "
|
||||
"activity of the global contacts that are fetched from other servers."
|
||||
msgstr "Quand la découverte de contacts est activée, cette valeur détermine la fréquence de récupération des données des contacts globaux présents sur d'autres serveurs."
|
||||
|
||||
#: mod/admin.php:1029
|
||||
#: mod/admin.php:1249
|
||||
msgid "Search the local directory"
|
||||
msgstr "Chercher dans le répertoire local"
|
||||
|
||||
#: mod/admin.php:1029
|
||||
#: mod/admin.php:1249
|
||||
msgid ""
|
||||
"Search the local directory instead of the global directory. When searching "
|
||||
"locally, every search will be executed on the global directory in the "
|
||||
"background. This improves the search results when the search is repeated."
|
||||
msgstr "Cherche dans le répertoire local au lieu du répertoire local. Quand une recherche locale est effectuée, la même recherche est effectuée dans le répertoire global en tâche de fond. Cela améliore les résultats de la recherche si elle est réitérée."
|
||||
|
||||
#: mod/admin.php:1031
|
||||
#: mod/admin.php:1251
|
||||
msgid "Publish server information"
|
||||
msgstr "Publier les informations du serveur"
|
||||
|
||||
#: mod/admin.php:1031
|
||||
#: mod/admin.php:1251
|
||||
msgid ""
|
||||
"If enabled, general server and usage data will be published. The data "
|
||||
"contains the name and version of the server, number of users with public "
|
||||
|
|
@ -7089,260 +4145,212 @@ msgid ""
|
|||
" href='http://the-federation.info/'>the-federation.info</a> for details."
|
||||
msgstr "Si cette option est activée, des informations sur le serveur et son utilisation seront publiées. Ces informations incluent le nom et la version du serveur, le nombre d’utilisateurs avec des profils publics, le nombre de messages, les protocoles supportés et les connecteurs disponibles. Plus de détails sur <a href='http://the-federation.info/'>the-federation.info</a>."
|
||||
|
||||
#: mod/admin.php:1033
|
||||
msgid "Use MySQL full text engine"
|
||||
msgstr "Utiliser le moteur de recherche plein texte de MySQL"
|
||||
#: mod/admin.php:1253
|
||||
msgid "Check upstream version"
|
||||
msgstr "Mises à jour"
|
||||
|
||||
#: mod/admin.php:1033
|
||||
#: mod/admin.php:1253
|
||||
msgid ""
|
||||
"Activates the full text engine. Speeds up search - but can only search for "
|
||||
"four and more characters."
|
||||
msgstr "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus."
|
||||
"Enables checking for new Friendica versions at github. If there is a new "
|
||||
"version, you will be informed in the admin panel overview."
|
||||
msgstr "Permet de vérifier la présence de nouvelles versions de Friendica sur github. Si une nouvelle version est disponible, vous recevrez une notification dans l'interface d'administration."
|
||||
|
||||
#: mod/admin.php:1034
|
||||
msgid "Suppress Language"
|
||||
msgstr "Supprimer un langage"
|
||||
|
||||
#: mod/admin.php:1034
|
||||
msgid "Suppress language information in meta information about a posting."
|
||||
msgstr "Supprimer les informations de langue dans les métadonnées des publications."
|
||||
|
||||
#: mod/admin.php:1035
|
||||
#: mod/admin.php:1254
|
||||
msgid "Suppress Tags"
|
||||
msgstr "Masquer les tags"
|
||||
|
||||
#: mod/admin.php:1035
|
||||
#: mod/admin.php:1254
|
||||
msgid "Suppress showing a list of hashtags at the end of the posting."
|
||||
msgstr "Ne pas afficher la liste des hashtags à la fin d’un message."
|
||||
|
||||
#: mod/admin.php:1036
|
||||
#: mod/admin.php:1255
|
||||
msgid "Path to item cache"
|
||||
msgstr "Chemin vers le cache des objets."
|
||||
|
||||
#: mod/admin.php:1036
|
||||
#: mod/admin.php:1255
|
||||
msgid "The item caches buffers generated bbcode and external images."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1037
|
||||
#: mod/admin.php:1256
|
||||
msgid "Cache duration in seconds"
|
||||
msgstr "Durée du cache en secondes"
|
||||
|
||||
#: mod/admin.php:1037
|
||||
#: mod/admin.php:1256
|
||||
msgid ""
|
||||
"How long should the cache files be hold? Default value is 86400 seconds (One"
|
||||
" day). To disable the item cache, set the value to -1."
|
||||
msgstr "Combien de temps les fichiers de cache doivent être maintenu? La valeur par défaut est 86400 secondes (une journée). Pour désactiver le cache de l'item, définissez la valeur à -1."
|
||||
|
||||
#: mod/admin.php:1038
|
||||
#: mod/admin.php:1257
|
||||
msgid "Maximum numbers of comments per post"
|
||||
msgstr "Nombre maximum de commentaires par publication"
|
||||
|
||||
#: mod/admin.php:1038
|
||||
#: mod/admin.php:1257
|
||||
msgid "How much comments should be shown for each post? Default value is 100."
|
||||
msgstr "Combien de commentaires doivent être affichés pour chaque publication? Valeur par défaut: 100."
|
||||
|
||||
#: mod/admin.php:1039
|
||||
msgid "Path for lock file"
|
||||
msgstr "Chemin vers le ficher de verrouillage"
|
||||
|
||||
#: mod/admin.php:1039
|
||||
msgid ""
|
||||
"The lock file is used to avoid multiple pollers at one time. Only define a "
|
||||
"folder here."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1040
|
||||
#: mod/admin.php:1258
|
||||
msgid "Temp path"
|
||||
msgstr "Chemin des fichiers temporaires"
|
||||
|
||||
#: mod/admin.php:1040
|
||||
#: mod/admin.php:1258
|
||||
msgid ""
|
||||
"If you have a restricted system where the webserver can't access the system "
|
||||
"temp path, enter another path here."
|
||||
msgstr ""
|
||||
msgstr "Si vous n'avez pas la possibilité d'avoir accès au répertoire temp, entrez un autre répertoire ici."
|
||||
|
||||
#: mod/admin.php:1041
|
||||
#: mod/admin.php:1259
|
||||
msgid "Base path to installation"
|
||||
msgstr "Chemin de base de l'installation"
|
||||
|
||||
#: mod/admin.php:1041
|
||||
#: mod/admin.php:1259
|
||||
msgid ""
|
||||
"If the system cannot detect the correct path to your installation, enter the"
|
||||
" correct path here. This setting should only be set if you are using a "
|
||||
"restricted system and symbolic links to your webroot."
|
||||
msgstr ""
|
||||
msgstr "Si le système ne peut pas détecter le chemin de l'installation, entrez le bon chemin ici. Ce paramètre doit être utilisé uniquement si vous avez des accès restreints à votre système et que vous n'avez qu'un lien symbolique vers le répertoire web."
|
||||
|
||||
#: mod/admin.php:1042
|
||||
#: mod/admin.php:1260
|
||||
msgid "Disable picture proxy"
|
||||
msgstr "Désactiver le proxy image "
|
||||
|
||||
#: mod/admin.php:1042
|
||||
#: mod/admin.php:1260
|
||||
msgid ""
|
||||
"The picture proxy increases performance and privacy. It shouldn't be used on"
|
||||
" systems with very low bandwith."
|
||||
msgstr "Le proxy d'image augmente les performances et l'intimité. Il ne devrait pas être utilisé sur des systèmes avec une très faible bande passante."
|
||||
|
||||
#: mod/admin.php:1043
|
||||
msgid "Enable old style pager"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1043
|
||||
msgid ""
|
||||
"The old style pager has page numbers but slows down massively the page "
|
||||
"speed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1044
|
||||
#: mod/admin.php:1261
|
||||
msgid "Only search in tags"
|
||||
msgstr "Rechercher seulement dans les étiquettes"
|
||||
|
||||
#: mod/admin.php:1044
|
||||
#: mod/admin.php:1261
|
||||
msgid "On large systems the text search can slow down the system extremely."
|
||||
msgstr "La recherche textuelle peut ralentir considérablement les systèmes de grande taille."
|
||||
|
||||
#: mod/admin.php:1046
|
||||
#: mod/admin.php:1263
|
||||
msgid "New base url"
|
||||
msgstr "Nouvelle URL de base"
|
||||
|
||||
#: mod/admin.php:1046
|
||||
#: mod/admin.php:1263
|
||||
msgid ""
|
||||
"Change base url for this server. Sends relocate message to all DFRN contacts"
|
||||
" of all users."
|
||||
msgstr "Changer d'URL de base pour ce serveur. Envoie un message de relocalisation à tous les contacts des réseaux distribués d'amis et de relations (DFRN) de tous les utilisateurs."
|
||||
"Change base url for this server. Sends relocate message to all Friendica and"
|
||||
" Diaspora* contacts of all users."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1048
|
||||
#: mod/admin.php:1265
|
||||
msgid "RINO Encryption"
|
||||
msgstr "Chiffrement RINO"
|
||||
|
||||
#: mod/admin.php:1048
|
||||
#: mod/admin.php:1265
|
||||
msgid "Encryption layer between nodes."
|
||||
msgstr "Couche de chiffrement entre les nœuds du réseau."
|
||||
|
||||
#: mod/admin.php:1049
|
||||
msgid "Embedly API key"
|
||||
msgstr "Clé API d'Embedly"
|
||||
|
||||
#: mod/admin.php:1049
|
||||
msgid ""
|
||||
"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
|
||||
"web pages. This is an optional parameter."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1051
|
||||
msgid "Enable 'worker' background processing"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1051
|
||||
msgid ""
|
||||
"The worker background processing limits the number of parallel background "
|
||||
"jobs to a maximum number and respects the system load."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1052
|
||||
#: mod/admin.php:1267
|
||||
msgid "Maximum number of parallel workers"
|
||||
msgstr "Nombre maximum de processus simultanés"
|
||||
|
||||
#: mod/admin.php:1052
|
||||
#: mod/admin.php:1267
|
||||
msgid ""
|
||||
"On shared hosters set this to 2. On larger systems, values of 10 are great. "
|
||||
"Default value is 4."
|
||||
msgstr "Sur un hébergement partagé, mettez 2. Sur des serveurs plus puissants, 10 est une bonne idée. Le défaut est 4."
|
||||
|
||||
#: mod/admin.php:1053
|
||||
#: mod/admin.php:1268
|
||||
msgid "Don't use 'proc_open' with the worker"
|
||||
msgstr "Ne pas utiliser 'proc_open' pour les tâches de fond"
|
||||
|
||||
#: mod/admin.php:1053
|
||||
#: mod/admin.php:1268
|
||||
msgid ""
|
||||
"Enable this if your system doesn't allow the use of 'proc_open'. This can "
|
||||
"happen on shared hosters. If this is enabled you should increase the "
|
||||
"frequency of poller calls in your crontab."
|
||||
msgstr "Activez ceci si votre hébergement ne vous permet pas d'utiliser 'proc_open'. Cela arrive le plus souvent dans les hébergements partagés. Si vous l'activez, pensez à augmenter la fréquence de l'exécution des tâches de fond dans votre crontab."
|
||||
"frequency of worker calls in your crontab."
|
||||
msgstr "Activez cette option si votre système ne permet pas d'utiliser 'proc_open'. Cela peut être le cas sur les hébergements partagés. Si vous activez cette option, vous devriez augmenter la fréquence d'appel du \"worker\" dans crontab."
|
||||
|
||||
#: mod/admin.php:1054
|
||||
#: mod/admin.php:1269
|
||||
msgid "Enable fastlane"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1054
|
||||
#: mod/admin.php:1269
|
||||
msgid ""
|
||||
"When enabed, the fastlane mechanism starts an additional worker if processes"
|
||||
" with higher priority are blocked by processes of lower priority."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1055
|
||||
#: mod/admin.php:1270
|
||||
msgid "Enable frontend worker"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1055
|
||||
#: mod/admin.php:1270
|
||||
#, php-format
|
||||
msgid ""
|
||||
"When enabled the Worker process is triggered when backend access is "
|
||||
"performed (e.g. messages being delivered). On smaller sites you might want "
|
||||
"to call yourdomain.tld/worker on a regular basis via an external cron job. "
|
||||
"You should only enable this option if you cannot utilize cron/scheduled jobs"
|
||||
" on your server. The worker background process needs to be activated for "
|
||||
"this."
|
||||
"to call %s/worker on a regular basis via an external cron job. You should "
|
||||
"only enable this option if you cannot utilize cron/scheduled jobs on your "
|
||||
"server."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1084
|
||||
#: mod/admin.php:1300
|
||||
msgid "Update has been marked successful"
|
||||
msgstr "Mise-à-jour validée comme 'réussie'"
|
||||
|
||||
#: mod/admin.php:1092
|
||||
#: mod/admin.php:1308
|
||||
#, php-format
|
||||
msgid "Database structure update %s was successfully applied."
|
||||
msgstr "La structure de base de données pour la mise à jour %s a été appliquée avec succès."
|
||||
|
||||
#: mod/admin.php:1095
|
||||
#: mod/admin.php:1311
|
||||
#, php-format
|
||||
msgid "Executing of database structure update %s failed with error: %s"
|
||||
msgstr "L'exécution de la mise à jour %s pour la structure de base de données a échoué avec l'erreur: %s"
|
||||
|
||||
#: mod/admin.php:1107
|
||||
#: mod/admin.php:1325
|
||||
#, php-format
|
||||
msgid "Executing %s failed with error: %s"
|
||||
msgstr "L'exécution %s a échoué avec l'erreur: %s"
|
||||
|
||||
#: mod/admin.php:1110
|
||||
#: mod/admin.php:1328
|
||||
#, php-format
|
||||
msgid "Update %s was successfully applied."
|
||||
msgstr "Mise-à-jour %s appliquée avec succès."
|
||||
|
||||
#: mod/admin.php:1114
|
||||
#: mod/admin.php:1331
|
||||
#, php-format
|
||||
msgid "Update %s did not return a status. Unknown if it succeeded."
|
||||
msgstr "La mise-à-jour %s n'a pas retourné de détails. Impossible de savoir si elle a réussi."
|
||||
|
||||
#: mod/admin.php:1116
|
||||
#: mod/admin.php:1334
|
||||
#, php-format
|
||||
msgid "There was no additional update function %s that needed to be called."
|
||||
msgstr "Il n'y avait aucune fonction supplémentaire de mise à jour %s qui devait être appelé"
|
||||
|
||||
#: mod/admin.php:1135
|
||||
#: mod/admin.php:1354
|
||||
msgid "No failed updates."
|
||||
msgstr "Pas de mises-à-jour échouées."
|
||||
|
||||
#: mod/admin.php:1136
|
||||
#: mod/admin.php:1355
|
||||
msgid "Check database structure"
|
||||
msgstr "Vérifier la structure de la base de données"
|
||||
|
||||
#: mod/admin.php:1141
|
||||
#: mod/admin.php:1360
|
||||
msgid "Failed Updates"
|
||||
msgstr "Mises-à-jour échouées"
|
||||
|
||||
#: mod/admin.php:1142
|
||||
#: mod/admin.php:1361
|
||||
msgid ""
|
||||
"This does not include updates prior to 1139, which did not return a status."
|
||||
msgstr "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails."
|
||||
|
||||
#: mod/admin.php:1143
|
||||
#: mod/admin.php:1362
|
||||
msgid "Mark success (if update was manually applied)"
|
||||
msgstr "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)"
|
||||
|
||||
#: mod/admin.php:1144
|
||||
#: mod/admin.php:1363
|
||||
msgid "Attempt to execute this update step automatically"
|
||||
msgstr "Tenter d'éxecuter cette étape automatiquement"
|
||||
|
||||
#: mod/admin.php:1178
|
||||
#: mod/admin.php:1397
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
|
|
@ -7350,7 +4358,7 @@ msgid ""
|
|||
"\t\t\t\tthe administrator of %2$s has set up an account for you."
|
||||
msgstr "\n\t\t\tChère/Cher %1$s,\n\t\t\t\tL’administrateur de %2$s vous a ouvert un compte."
|
||||
|
||||
#: mod/admin.php:1181
|
||||
#: mod/admin.php:1400
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
|
|
@ -7380,239 +4388,252 @@ msgid ""
|
|||
"\t\t\tThank you and welcome to %4$s."
|
||||
msgstr "\n\t\t\tVoici vos informations de connexion :\n\n\t\t\tAdresse :\t%1$s\n\t\t\tIdentifiant :\t\t%2$s\n\t\t\tMot de passe :\t\t%3$s\n\n\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\t\t\tMerci et bienvenu sur %4$s."
|
||||
|
||||
#: mod/admin.php:1225
|
||||
#: mod/admin.php:1444
|
||||
#, php-format
|
||||
msgid "%s user blocked/unblocked"
|
||||
msgid_plural "%s users blocked/unblocked"
|
||||
msgstr[0] "%s utilisateur a (dé)bloqué"
|
||||
msgstr[1] "%s utilisateurs ont (dé)bloqué"
|
||||
|
||||
#: mod/admin.php:1232
|
||||
#: mod/admin.php:1450
|
||||
#, php-format
|
||||
msgid "%s user deleted"
|
||||
msgid_plural "%s users deleted"
|
||||
msgstr[0] "%s utilisateur supprimé"
|
||||
msgstr[1] "%s utilisateurs supprimés"
|
||||
|
||||
#: mod/admin.php:1279
|
||||
#: mod/admin.php:1496
|
||||
#, php-format
|
||||
msgid "User '%s' deleted"
|
||||
msgstr "Utilisateur '%s' supprimé"
|
||||
|
||||
#: mod/admin.php:1287
|
||||
#: mod/admin.php:1504
|
||||
#, php-format
|
||||
msgid "User '%s' unblocked"
|
||||
msgstr "Utilisateur '%s' débloqué"
|
||||
|
||||
#: mod/admin.php:1287
|
||||
#: mod/admin.php:1504
|
||||
#, php-format
|
||||
msgid "User '%s' blocked"
|
||||
msgstr "Utilisateur '%s' bloqué"
|
||||
|
||||
#: mod/admin.php:1396 mod/admin.php:1422
|
||||
#: mod/admin.php:1612 mod/admin.php:1625 mod/admin.php:1638 mod/admin.php:1654
|
||||
#: mod/crepair.php:173 mod/settings.php:698 mod/settings.php:724
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#: mod/admin.php:1612 mod/admin.php:1638
|
||||
msgid "Register date"
|
||||
msgstr "Date d'inscription"
|
||||
|
||||
#: mod/admin.php:1396 mod/admin.php:1422
|
||||
#: mod/admin.php:1612 mod/admin.php:1638
|
||||
msgid "Last login"
|
||||
msgstr "Dernière connexion"
|
||||
|
||||
#: mod/admin.php:1396 mod/admin.php:1422
|
||||
#: mod/admin.php:1612 mod/admin.php:1638
|
||||
msgid "Last item"
|
||||
msgstr "Dernier élément"
|
||||
|
||||
#: mod/admin.php:1405
|
||||
#: mod/admin.php:1612 mod/settings.php:46
|
||||
msgid "Account"
|
||||
msgstr "Compte"
|
||||
|
||||
#: mod/admin.php:1621
|
||||
msgid "Add User"
|
||||
msgstr "Ajouter l'utilisateur"
|
||||
|
||||
#: mod/admin.php:1406
|
||||
#: mod/admin.php:1622
|
||||
msgid "select all"
|
||||
msgstr "tout sélectionner"
|
||||
|
||||
#: mod/admin.php:1407
|
||||
#: mod/admin.php:1623
|
||||
msgid "User registrations waiting for confirm"
|
||||
msgstr "Inscriptions d'utilisateurs en attente de confirmation"
|
||||
|
||||
#: mod/admin.php:1408
|
||||
#: mod/admin.php:1624
|
||||
msgid "User waiting for permanent deletion"
|
||||
msgstr "Utilisateur en attente de suppression définitive"
|
||||
|
||||
#: mod/admin.php:1409
|
||||
#: mod/admin.php:1625
|
||||
msgid "Request date"
|
||||
msgstr "Date de la demande"
|
||||
|
||||
#: mod/admin.php:1410
|
||||
#: mod/admin.php:1626
|
||||
msgid "No registrations."
|
||||
msgstr "Pas d'inscriptions."
|
||||
|
||||
#: mod/admin.php:1411
|
||||
#: mod/admin.php:1627
|
||||
msgid "Note from the user"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1413
|
||||
#: mod/admin.php:1628 mod/notifications.php:180 mod/notifications.php:265
|
||||
msgid "Approve"
|
||||
msgstr "Approuver"
|
||||
|
||||
#: mod/admin.php:1629
|
||||
msgid "Deny"
|
||||
msgstr "Rejetter"
|
||||
|
||||
#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805
|
||||
#: mod/contacts.php:983
|
||||
#: mod/admin.php:1631 mod/contacts.php:642 mod/contacts.php:843
|
||||
#: mod/contacts.php:1021
|
||||
msgid "Block"
|
||||
msgstr "Bloquer"
|
||||
|
||||
#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805
|
||||
#: mod/contacts.php:983
|
||||
#: mod/admin.php:1632 mod/contacts.php:642 mod/contacts.php:843
|
||||
#: mod/contacts.php:1021
|
||||
msgid "Unblock"
|
||||
msgstr "Débloquer"
|
||||
|
||||
#: mod/admin.php:1417
|
||||
#: mod/admin.php:1633
|
||||
msgid "Site admin"
|
||||
msgstr "Administration du Site"
|
||||
|
||||
#: mod/admin.php:1418
|
||||
#: mod/admin.php:1634
|
||||
msgid "Account expired"
|
||||
msgstr "Compte expiré"
|
||||
|
||||
#: mod/admin.php:1421
|
||||
#: mod/admin.php:1637
|
||||
msgid "New User"
|
||||
msgstr "Nouvel utilisateur"
|
||||
|
||||
#: mod/admin.php:1422
|
||||
#: mod/admin.php:1638
|
||||
msgid "Deleted since"
|
||||
msgstr "Supprimé depuis"
|
||||
|
||||
#: mod/admin.php:1427
|
||||
#: mod/admin.php:1643
|
||||
msgid ""
|
||||
"Selected users will be deleted!\\n\\nEverything these users had posted on "
|
||||
"this site will be permanently deleted!\\n\\nAre you sure?"
|
||||
msgstr "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement effacé!\\n\\nÊtes-vous certain?"
|
||||
|
||||
#: mod/admin.php:1428
|
||||
#: mod/admin.php:1644
|
||||
msgid ""
|
||||
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
|
||||
"site will be permanently deleted!\\n\\nAre you sure?"
|
||||
msgstr "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?"
|
||||
|
||||
#: mod/admin.php:1438
|
||||
#: mod/admin.php:1654
|
||||
msgid "Name of the new user."
|
||||
msgstr "Nom du nouvel utilisateur."
|
||||
|
||||
#: mod/admin.php:1439
|
||||
#: mod/admin.php:1655
|
||||
msgid "Nickname"
|
||||
msgstr "Pseudo"
|
||||
|
||||
#: mod/admin.php:1439
|
||||
#: mod/admin.php:1655
|
||||
msgid "Nickname of the new user."
|
||||
msgstr "Pseudo du nouvel utilisateur."
|
||||
|
||||
#: mod/admin.php:1440
|
||||
#: mod/admin.php:1656
|
||||
msgid "Email address of the new user."
|
||||
msgstr "Adresse mail du nouvel utilisateur."
|
||||
|
||||
#: mod/admin.php:1483
|
||||
#: mod/admin.php:1699
|
||||
#, php-format
|
||||
msgid "Plugin %s disabled."
|
||||
msgstr "Extension %s désactivée."
|
||||
|
||||
#: mod/admin.php:1487
|
||||
#: mod/admin.php:1703
|
||||
#, php-format
|
||||
msgid "Plugin %s enabled."
|
||||
msgstr "Extension %s activée."
|
||||
|
||||
#: mod/admin.php:1498 mod/admin.php:1734
|
||||
#: mod/admin.php:1714 mod/admin.php:1966
|
||||
msgid "Disable"
|
||||
msgstr "Désactiver"
|
||||
|
||||
#: mod/admin.php:1500 mod/admin.php:1736
|
||||
#: mod/admin.php:1716 mod/admin.php:1968
|
||||
msgid "Enable"
|
||||
msgstr "Activer"
|
||||
|
||||
#: mod/admin.php:1523 mod/admin.php:1781
|
||||
#: mod/admin.php:1739 mod/admin.php:2015
|
||||
msgid "Toggle"
|
||||
msgstr "Activer/Désactiver"
|
||||
|
||||
#: mod/admin.php:1531 mod/admin.php:1790
|
||||
#: mod/admin.php:1747 mod/admin.php:2024
|
||||
msgid "Author: "
|
||||
msgstr "Auteur: "
|
||||
msgstr "Auteur : "
|
||||
|
||||
#: mod/admin.php:1532 mod/admin.php:1791
|
||||
#: mod/admin.php:1748 mod/admin.php:2025
|
||||
msgid "Maintainer: "
|
||||
msgstr "Mainteneur: "
|
||||
msgstr "Mainteneur : "
|
||||
|
||||
#: mod/admin.php:1584
|
||||
#: mod/admin.php:1803
|
||||
msgid "Reload active plugins"
|
||||
msgstr "Recharger les extensions actives"
|
||||
|
||||
#: mod/admin.php:1589
|
||||
#: mod/admin.php:1808
|
||||
#, php-format
|
||||
msgid ""
|
||||
"There are currently no plugins available on your node. You can find the "
|
||||
"official plugin repository at %1$s and might find other interesting plugins "
|
||||
"in the open plugin registry at %2$s"
|
||||
msgstr ""
|
||||
msgstr "Aucun plugin n'a été trouvé sur votre instance. Le répertoire officiel des plugins se trouve sur %1$s. D'autres plugins sont disponibles sur %2$s."
|
||||
|
||||
#: mod/admin.php:1694
|
||||
#: mod/admin.php:1927
|
||||
msgid "No themes found."
|
||||
msgstr "Aucun thème trouvé."
|
||||
|
||||
#: mod/admin.php:1772
|
||||
#: mod/admin.php:2006
|
||||
msgid "Screenshot"
|
||||
msgstr "Capture d'écran"
|
||||
|
||||
#: mod/admin.php:1832
|
||||
#: mod/admin.php:2066
|
||||
msgid "Reload active themes"
|
||||
msgstr "Recharger les thèmes actifs"
|
||||
|
||||
#: mod/admin.php:1837
|
||||
#: mod/admin.php:2071
|
||||
#, php-format
|
||||
msgid "No themes found on the system. They should be paced in %1$s"
|
||||
msgstr ""
|
||||
msgstr "Aucun thème n'a été trouvé. Vous devez placer les thèmes dans %1$s"
|
||||
|
||||
#: mod/admin.php:1838
|
||||
#: mod/admin.php:2072
|
||||
msgid "[Experimental]"
|
||||
msgstr "[Expérimental]"
|
||||
|
||||
#: mod/admin.php:1839
|
||||
#: mod/admin.php:2073
|
||||
msgid "[Unsupported]"
|
||||
msgstr "[Non supporté]"
|
||||
|
||||
#: mod/admin.php:1863
|
||||
#: mod/admin.php:2097
|
||||
msgid "Log settings updated."
|
||||
msgstr "Réglages des journaux mis-à-jour."
|
||||
|
||||
#: mod/admin.php:1895
|
||||
#: mod/admin.php:2129
|
||||
msgid "PHP log currently enabled."
|
||||
msgstr "Log PHP actuellement activé."
|
||||
|
||||
#: mod/admin.php:1897
|
||||
#: mod/admin.php:2131
|
||||
msgid "PHP log currently disabled."
|
||||
msgstr "Log PHP actuellement desactivé."
|
||||
|
||||
#: mod/admin.php:1906
|
||||
#: mod/admin.php:2140
|
||||
msgid "Clear"
|
||||
msgstr "Effacer"
|
||||
|
||||
#: mod/admin.php:1911
|
||||
#: mod/admin.php:2145
|
||||
msgid "Enable Debugging"
|
||||
msgstr "Activer le déboggage"
|
||||
|
||||
#: mod/admin.php:1912
|
||||
#: mod/admin.php:2146
|
||||
msgid "Log file"
|
||||
msgstr "Fichier de journaux"
|
||||
|
||||
#: mod/admin.php:1912
|
||||
#: mod/admin.php:2146
|
||||
msgid ""
|
||||
"Must be writable by web server. Relative to your Friendica top-level "
|
||||
"directory."
|
||||
msgstr "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica."
|
||||
|
||||
#: mod/admin.php:1913
|
||||
#: mod/admin.php:2147
|
||||
msgid "Log level"
|
||||
msgstr "Niveau de journalisaton"
|
||||
|
||||
#: mod/admin.php:1916
|
||||
#: mod/admin.php:2150
|
||||
msgid "PHP logging"
|
||||
msgstr "Log PHP"
|
||||
|
||||
#: mod/admin.php:1917
|
||||
#: mod/admin.php:2151
|
||||
msgid ""
|
||||
"To enable logging of PHP errors and warnings you can add the following to "
|
||||
"the .htconfig.php file of your installation. The filename set in the "
|
||||
|
|
@ -7621,525 +4642,840 @@ msgid ""
|
|||
"'display_errors' is to enable these options, set to '0' to disable them."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:2045
|
||||
#: mod/admin.php:2278 mod/admin.php:2279 mod/settings.php:797
|
||||
msgid "Off"
|
||||
msgstr "Éteint"
|
||||
|
||||
#: mod/admin.php:2278 mod/admin.php:2279 mod/settings.php:797
|
||||
msgid "On"
|
||||
msgstr "Allumé"
|
||||
|
||||
#: mod/admin.php:2279
|
||||
#, php-format
|
||||
msgid "Lock feature %s"
|
||||
msgstr "Verouiller la fonctionnalité %s"
|
||||
|
||||
#: mod/admin.php:2053
|
||||
#: mod/admin.php:2287
|
||||
msgid "Manage Additional Features"
|
||||
msgstr "Gérer les fonctionnalités avancées"
|
||||
|
||||
#: mod/contacts.php:128
|
||||
#: mod/allfriends.php:52
|
||||
msgid "No friends to display."
|
||||
msgstr "Pas d'amis à afficher."
|
||||
|
||||
#: mod/api.php:80 mod/api.php:106
|
||||
msgid "Authorize application connection"
|
||||
msgstr "Autoriser l'application à se connecter"
|
||||
|
||||
#: mod/api.php:81
|
||||
msgid "Return to your app and insert this Securty Code:"
|
||||
msgstr "Retournez à votre application et saisissez ce Code de Sécurité : "
|
||||
|
||||
#: mod/api.php:93
|
||||
msgid "Please login to continue."
|
||||
msgstr "Merci de vous connecter pour continuer."
|
||||
|
||||
#: mod/api.php:108
|
||||
msgid ""
|
||||
"Do you want to authorize this application to access your posts and contacts,"
|
||||
" and/or create new posts for you?"
|
||||
msgstr "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à créer des billets à votre place?"
|
||||
|
||||
#: mod/api.php:110 mod/dfrn_request.php:883 mod/follow.php:151
|
||||
#: mod/profiles.php:643 mod/profiles.php:647 mod/profiles.php:673
|
||||
#: mod/register.php:253 mod/settings.php:1155 mod/settings.php:1161
|
||||
#: mod/settings.php:1168 mod/settings.php:1172 mod/settings.php:1177
|
||||
#: mod/settings.php:1182 mod/settings.php:1187 mod/settings.php:1192
|
||||
#: mod/settings.php:1218 mod/settings.php:1219 mod/settings.php:1220
|
||||
#: mod/settings.php:1221 mod/settings.php:1222
|
||||
msgid "No"
|
||||
msgstr "Non"
|
||||
|
||||
#: mod/apps.php:10 index.php:246
|
||||
msgid "You must be logged in to use addons. "
|
||||
msgstr "Vous devez être connecté pour utiliser les greffons."
|
||||
|
||||
#: mod/apps.php:15
|
||||
msgid "Applications"
|
||||
msgstr "Applications"
|
||||
|
||||
#: mod/apps.php:18
|
||||
msgid "No installed applications."
|
||||
msgstr "Pas d'application installée."
|
||||
|
||||
#: mod/attach.php:11
|
||||
msgid "Item not available."
|
||||
msgstr "Elément non disponible."
|
||||
|
||||
#: mod/attach.php:23
|
||||
msgid "Item was not found."
|
||||
msgstr "Element introuvable."
|
||||
|
||||
#: mod/cal.php:149 mod/display.php:339 mod/profile.php:162
|
||||
msgid "Access to this profile has been restricted."
|
||||
msgstr "L'accès au profil a été restreint."
|
||||
|
||||
#: mod/cal.php:277 mod/events.php:386
|
||||
msgid "View"
|
||||
msgstr "Vue"
|
||||
|
||||
#: mod/cal.php:278 mod/events.php:388
|
||||
msgid "Previous"
|
||||
msgstr "Précédent"
|
||||
|
||||
#: mod/cal.php:279 mod/events.php:389 mod/install.php:203
|
||||
msgid "Next"
|
||||
msgstr "Suivant"
|
||||
|
||||
#: mod/cal.php:288 mod/events.php:398
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#: mod/cal.php:298
|
||||
msgid "User not found"
|
||||
msgstr "Utilisateur introuvable"
|
||||
|
||||
#: mod/cal.php:314
|
||||
msgid "This calendar format is not supported"
|
||||
msgstr "Format de calendrier inconnu"
|
||||
|
||||
#: mod/cal.php:316
|
||||
msgid "No exportable data found"
|
||||
msgstr "Rien à exporter"
|
||||
|
||||
#: mod/cal.php:331
|
||||
msgid "calendar"
|
||||
msgstr "calendrier"
|
||||
|
||||
#: mod/common.php:96
|
||||
msgid "No contacts in common."
|
||||
msgstr "Pas de contacts en commun."
|
||||
|
||||
#: mod/common.php:146 mod/contacts.php:901
|
||||
msgid "Common Friends"
|
||||
msgstr "Amis communs"
|
||||
|
||||
#: mod/community.php:23
|
||||
msgid "Not available."
|
||||
msgstr "Indisponible."
|
||||
|
||||
#: mod/community.php:48 mod/search.php:218
|
||||
msgid "No results."
|
||||
msgstr "Aucun résultat."
|
||||
|
||||
#: mod/community.php:91
|
||||
msgid ""
|
||||
"This community stream shows all public posts received by this node. They may"
|
||||
" not reflect the opinions of this node’s users."
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:139
|
||||
#, php-format
|
||||
msgid "%d contact edited."
|
||||
msgid_plural "%d contacts edited."
|
||||
msgstr[0] "%d contact mis à jour."
|
||||
msgstr[1] "%d contacts mis à jour."
|
||||
|
||||
#: mod/contacts.php:159 mod/contacts.php:368
|
||||
#: mod/contacts.php:174 mod/contacts.php:393
|
||||
msgid "Could not access contact record."
|
||||
msgstr "Impossible d'accéder à l'enregistrement du contact."
|
||||
|
||||
#: mod/contacts.php:173
|
||||
#: mod/contacts.php:188
|
||||
msgid "Could not locate selected profile."
|
||||
msgstr "Impossible de localiser le profil séléctionné."
|
||||
|
||||
#: mod/contacts.php:206
|
||||
#: mod/contacts.php:221
|
||||
msgid "Contact updated."
|
||||
msgstr "Contact mis à jour."
|
||||
|
||||
#: mod/contacts.php:208 mod/dfrn_request.php:583
|
||||
#: mod/contacts.php:223 mod/dfrn_request.php:596
|
||||
msgid "Failed to update contact record."
|
||||
msgstr "Échec de mise à jour du contact."
|
||||
|
||||
#: mod/contacts.php:389
|
||||
#: mod/contacts.php:414
|
||||
msgid "Contact has been blocked"
|
||||
msgstr "Le contact a été bloqué"
|
||||
|
||||
#: mod/contacts.php:389
|
||||
#: mod/contacts.php:414
|
||||
msgid "Contact has been unblocked"
|
||||
msgstr "Le contact n'est plus bloqué"
|
||||
|
||||
#: mod/contacts.php:400
|
||||
#: mod/contacts.php:425
|
||||
msgid "Contact has been ignored"
|
||||
msgstr "Le contact a été ignoré"
|
||||
|
||||
#: mod/contacts.php:400
|
||||
#: mod/contacts.php:425
|
||||
msgid "Contact has been unignored"
|
||||
msgstr "Le contact n'est plus ignoré"
|
||||
|
||||
#: mod/contacts.php:412
|
||||
#: mod/contacts.php:437
|
||||
msgid "Contact has been archived"
|
||||
msgstr "Contact archivé"
|
||||
|
||||
#: mod/contacts.php:412
|
||||
#: mod/contacts.php:437
|
||||
msgid "Contact has been unarchived"
|
||||
msgstr "Contact désarchivé"
|
||||
|
||||
#: mod/contacts.php:437
|
||||
#: mod/contacts.php:462
|
||||
msgid "Drop contact"
|
||||
msgstr "Supprimer contact"
|
||||
|
||||
#: mod/contacts.php:440 mod/contacts.php:801
|
||||
#: mod/contacts.php:465 mod/contacts.php:839
|
||||
msgid "Do you really want to delete this contact?"
|
||||
msgstr "Voulez-vous vraiment supprimer ce contact?"
|
||||
|
||||
#: mod/contacts.php:457
|
||||
#: mod/contacts.php:484
|
||||
msgid "Contact has been removed."
|
||||
msgstr "Ce contact a été retiré."
|
||||
|
||||
#: mod/contacts.php:498
|
||||
#: mod/contacts.php:521
|
||||
#, php-format
|
||||
msgid "You are mutual friends with %s"
|
||||
msgstr "Vous êtes ami (et réciproquement) avec %s"
|
||||
|
||||
#: mod/contacts.php:502
|
||||
#: mod/contacts.php:525
|
||||
#, php-format
|
||||
msgid "You are sharing with %s"
|
||||
msgstr "Vous partagez avec %s"
|
||||
|
||||
#: mod/contacts.php:507
|
||||
#: mod/contacts.php:530
|
||||
#, php-format
|
||||
msgid "%s is sharing with you"
|
||||
msgstr "%s partage avec vous"
|
||||
|
||||
#: mod/contacts.php:527
|
||||
#: mod/contacts.php:550
|
||||
msgid "Private communications are not available for this contact."
|
||||
msgstr "Les communications privées ne sont pas disponibles pour ce contact."
|
||||
|
||||
#: mod/contacts.php:534
|
||||
#: mod/contacts.php:557
|
||||
msgid "(Update was successful)"
|
||||
msgstr "(Mise à jour effectuée avec succès)"
|
||||
|
||||
#: mod/contacts.php:534
|
||||
#: mod/contacts.php:557
|
||||
msgid "(Update was not successful)"
|
||||
msgstr "(Échec de la mise à jour)"
|
||||
|
||||
#: mod/contacts.php:536 mod/contacts.php:964
|
||||
#: mod/contacts.php:559 mod/contacts.php:1002
|
||||
msgid "Suggest friends"
|
||||
msgstr "Suggérer amitié/contact"
|
||||
|
||||
#: mod/contacts.php:540
|
||||
#: mod/contacts.php:563
|
||||
#, php-format
|
||||
msgid "Network type: %s"
|
||||
msgstr "Type de réseau %s"
|
||||
|
||||
#: mod/contacts.php:553
|
||||
#: mod/contacts.php:576
|
||||
msgid "Communications lost with this contact!"
|
||||
msgstr "Communications perdues avec ce contact !"
|
||||
|
||||
#: mod/contacts.php:556
|
||||
#: mod/contacts.php:580
|
||||
msgid "Fetch further information for feeds"
|
||||
msgstr "Chercher plus d'informations pour les flux"
|
||||
|
||||
#: mod/contacts.php:557
|
||||
#: mod/contacts.php:582
|
||||
msgid ""
|
||||
"Fetch information like preview pictures, title and teaser from the feed "
|
||||
"item. You can activate this if the feed doesn't contain much text. Keywords "
|
||||
"are taken from the meta header in the feed item and are posted as hash tags."
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:584
|
||||
msgid "Fetch information"
|
||||
msgstr "Récupérer informations"
|
||||
|
||||
#: mod/contacts.php:557
|
||||
#: mod/contacts.php:585
|
||||
msgid "Fetch keywords"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:586
|
||||
msgid "Fetch information and keywords"
|
||||
msgstr "Récupérer informations"
|
||||
|
||||
#: mod/contacts.php:575
|
||||
#: mod/contacts.php:600 mod/unfollow.php:99
|
||||
msgid "Disconnect/Unfollow"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:610
|
||||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#: mod/contacts.php:578
|
||||
#: mod/contacts.php:613
|
||||
msgid "Profile Visibility"
|
||||
msgstr "Visibilité du profil"
|
||||
|
||||
#: mod/contacts.php:579
|
||||
#: mod/contacts.php:614
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please choose the profile you would like to display to %s when viewing your "
|
||||
"profile securely."
|
||||
msgstr "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée."
|
||||
|
||||
#: mod/contacts.php:580
|
||||
#: mod/contacts.php:615
|
||||
msgid "Contact Information / Notes"
|
||||
msgstr "Informations de contact / Notes"
|
||||
|
||||
#: mod/contacts.php:581
|
||||
#: mod/contacts.php:616
|
||||
msgid "Their personal note"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:618
|
||||
msgid "Edit contact notes"
|
||||
msgstr "Éditer les notes des contacts"
|
||||
|
||||
#: mod/contacts.php:587
|
||||
#: mod/contacts.php:623 mod/contacts.php:968 mod/nogroup.php:44
|
||||
#: mod/viewcontacts.php:107
|
||||
#, php-format
|
||||
msgid "Visit %s's profile [%s]"
|
||||
msgstr "Visiter le profil de %s [%s]"
|
||||
|
||||
#: mod/contacts.php:624
|
||||
msgid "Block/Unblock contact"
|
||||
msgstr "Bloquer/débloquer ce contact"
|
||||
|
||||
#: mod/contacts.php:588
|
||||
#: mod/contacts.php:625
|
||||
msgid "Ignore contact"
|
||||
msgstr "Ignorer ce contact"
|
||||
|
||||
#: mod/contacts.php:589
|
||||
#: mod/contacts.php:626
|
||||
msgid "Repair URL settings"
|
||||
msgstr "Réglages de réparation des URL"
|
||||
|
||||
#: mod/contacts.php:590
|
||||
#: mod/contacts.php:627
|
||||
msgid "View conversations"
|
||||
msgstr "Voir les conversations"
|
||||
|
||||
#: mod/contacts.php:596
|
||||
#: mod/contacts.php:633
|
||||
msgid "Last update:"
|
||||
msgstr "Dernière mise-à-jour :"
|
||||
|
||||
#: mod/contacts.php:598
|
||||
#: mod/contacts.php:635
|
||||
msgid "Update public posts"
|
||||
msgstr "Mettre à jour les publications publiques:"
|
||||
|
||||
#: mod/contacts.php:600 mod/contacts.php:974
|
||||
#: mod/contacts.php:637 mod/contacts.php:1012
|
||||
msgid "Update now"
|
||||
msgstr "Mettre à jour"
|
||||
|
||||
#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:991
|
||||
#: mod/contacts.php:643 mod/contacts.php:844 mod/contacts.php:1029
|
||||
msgid "Unignore"
|
||||
msgstr "Ne plus ignorer"
|
||||
|
||||
#: mod/contacts.php:610
|
||||
#: mod/contacts.php:643 mod/contacts.php:844 mod/contacts.php:1029
|
||||
#: mod/notifications.php:64 mod/notifications.php:183
|
||||
#: mod/notifications.php:267
|
||||
msgid "Ignore"
|
||||
msgstr "Ignorer"
|
||||
|
||||
#: mod/contacts.php:647
|
||||
msgid "Currently blocked"
|
||||
msgstr "Actuellement bloqué"
|
||||
|
||||
#: mod/contacts.php:611
|
||||
#: mod/contacts.php:648
|
||||
msgid "Currently ignored"
|
||||
msgstr "Actuellement ignoré"
|
||||
|
||||
#: mod/contacts.php:612
|
||||
#: mod/contacts.php:649
|
||||
msgid "Currently archived"
|
||||
msgstr "Actuellement archivé"
|
||||
|
||||
#: mod/contacts.php:613
|
||||
#: mod/contacts.php:650
|
||||
msgid "Awaiting connection acknowledge"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:651 mod/notifications.php:176 mod/notifications.php:255
|
||||
msgid "Hide this contact from others"
|
||||
msgstr "Cacher ce contact aux autres"
|
||||
|
||||
#: mod/contacts.php:651
|
||||
msgid ""
|
||||
"Replies/likes to your public posts <strong>may</strong> still be visible"
|
||||
msgstr "Les réponses et \"j'aime\" à vos publications publiques <strong>peuvent</strong> être toujours visibles"
|
||||
|
||||
#: mod/contacts.php:614
|
||||
#: mod/contacts.php:652
|
||||
msgid "Notification for new posts"
|
||||
msgstr "Notification des nouvelles publications"
|
||||
|
||||
#: mod/contacts.php:614
|
||||
#: mod/contacts.php:652
|
||||
msgid "Send a notification of every new post of this contact"
|
||||
msgstr "Envoyer une notification de chaque nouveau message en provenance de ce contact"
|
||||
|
||||
#: mod/contacts.php:617
|
||||
#: mod/contacts.php:655
|
||||
msgid "Blacklisted keywords"
|
||||
msgstr "Mots-clés sur la liste noire"
|
||||
|
||||
#: mod/contacts.php:617
|
||||
#: mod/contacts.php:655
|
||||
msgid ""
|
||||
"Comma separated list of keywords that should not be converted to hashtags, "
|
||||
"when \"Fetch information and keywords\" is selected"
|
||||
msgstr "Liste de mots-clés separés par des virgules qui ne doivent pas être converti en mots-dièse quand « Récupérer informations et mots-clés » est sélectionné."
|
||||
|
||||
#: mod/contacts.php:635
|
||||
#: mod/contacts.php:662 mod/follow.php:167 mod/notifications.php:259
|
||||
#: mod/unfollow.php:121
|
||||
msgid "Profile URL"
|
||||
msgstr "URL du Profil"
|
||||
|
||||
#: mod/contacts.php:673
|
||||
msgid "Actions"
|
||||
msgstr "Actions"
|
||||
|
||||
#: mod/contacts.php:638
|
||||
#: mod/contacts.php:676
|
||||
msgid "Contact Settings"
|
||||
msgstr "Paramètres du Contact"
|
||||
|
||||
#: mod/contacts.php:684
|
||||
#: mod/contacts.php:722
|
||||
msgid "Suggestions"
|
||||
msgstr "Suggestions"
|
||||
|
||||
#: mod/contacts.php:687
|
||||
#: mod/contacts.php:725
|
||||
msgid "Suggest potential friends"
|
||||
msgstr "Suggérer des amis potentiels"
|
||||
|
||||
#: mod/contacts.php:695
|
||||
#: mod/contacts.php:730 mod/group.php:214
|
||||
msgid "All Contacts"
|
||||
msgstr "Tous les contacts"
|
||||
|
||||
#: mod/contacts.php:733
|
||||
msgid "Show all contacts"
|
||||
msgstr "Montrer tous les contacts"
|
||||
|
||||
#: mod/contacts.php:700
|
||||
#: mod/contacts.php:738
|
||||
msgid "Unblocked"
|
||||
msgstr "Non-bloqués"
|
||||
|
||||
#: mod/contacts.php:703
|
||||
#: mod/contacts.php:741
|
||||
msgid "Only show unblocked contacts"
|
||||
msgstr "Ne montrer que les contacts non-bloqués"
|
||||
|
||||
#: mod/contacts.php:709
|
||||
#: mod/contacts.php:747
|
||||
msgid "Blocked"
|
||||
msgstr "Bloqués"
|
||||
|
||||
#: mod/contacts.php:712
|
||||
#: mod/contacts.php:750
|
||||
msgid "Only show blocked contacts"
|
||||
msgstr "Ne montrer que les contacts bloqués"
|
||||
|
||||
#: mod/contacts.php:718
|
||||
#: mod/contacts.php:756
|
||||
msgid "Ignored"
|
||||
msgstr "Ignorés"
|
||||
|
||||
#: mod/contacts.php:721
|
||||
#: mod/contacts.php:759
|
||||
msgid "Only show ignored contacts"
|
||||
msgstr "Ne montrer que les contacts ignorés"
|
||||
|
||||
#: mod/contacts.php:727
|
||||
#: mod/contacts.php:765
|
||||
msgid "Archived"
|
||||
msgstr "Archivés"
|
||||
|
||||
#: mod/contacts.php:730
|
||||
#: mod/contacts.php:768
|
||||
msgid "Only show archived contacts"
|
||||
msgstr "Ne montrer que les contacts archivés"
|
||||
|
||||
#: mod/contacts.php:736
|
||||
#: mod/contacts.php:774
|
||||
msgid "Hidden"
|
||||
msgstr "Cachés"
|
||||
|
||||
#: mod/contacts.php:739
|
||||
#: mod/contacts.php:777
|
||||
msgid "Only show hidden contacts"
|
||||
msgstr "Ne montrer que les contacts masqués"
|
||||
|
||||
#: mod/contacts.php:796
|
||||
#: mod/contacts.php:834
|
||||
msgid "Search your contacts"
|
||||
msgstr "Rechercher dans vos contacts"
|
||||
|
||||
#: mod/contacts.php:807 mod/contacts.php:999
|
||||
#: mod/contacts.php:835 mod/search.php:226
|
||||
#, php-format
|
||||
msgid "Results for: %s"
|
||||
msgstr "Résultats pour : %s"
|
||||
|
||||
#: mod/contacts.php:842 mod/settings.php:163 mod/settings.php:722
|
||||
msgid "Update"
|
||||
msgstr "Mises-à-jour"
|
||||
|
||||
#: mod/contacts.php:845 mod/contacts.php:1037
|
||||
msgid "Archive"
|
||||
msgstr "Archiver"
|
||||
|
||||
#: mod/contacts.php:807 mod/contacts.php:999
|
||||
#: mod/contacts.php:845 mod/contacts.php:1037
|
||||
msgid "Unarchive"
|
||||
msgstr "Désarchiver"
|
||||
|
||||
#: mod/contacts.php:810
|
||||
#: mod/contacts.php:848
|
||||
msgid "Batch Actions"
|
||||
msgstr "Actions multiples"
|
||||
|
||||
#: mod/contacts.php:856
|
||||
#: mod/contacts.php:894
|
||||
msgid "View all contacts"
|
||||
msgstr "Voir tous les contacts"
|
||||
|
||||
#: mod/contacts.php:866
|
||||
#: mod/contacts.php:904
|
||||
msgid "View all common friends"
|
||||
msgstr "Voir tous les amis communs"
|
||||
|
||||
#: mod/contacts.php:873
|
||||
#: mod/contacts.php:911
|
||||
msgid "Advanced Contact Settings"
|
||||
msgstr "Réglages avancés du contact"
|
||||
|
||||
#: mod/contacts.php:907
|
||||
#: mod/contacts.php:945
|
||||
msgid "Mutual Friendship"
|
||||
msgstr "Relation réciproque"
|
||||
|
||||
#: mod/contacts.php:911
|
||||
#: mod/contacts.php:949
|
||||
msgid "is a fan of yours"
|
||||
msgstr "Vous suit"
|
||||
|
||||
#: mod/contacts.php:915
|
||||
#: mod/contacts.php:953
|
||||
msgid "you are a fan of"
|
||||
msgstr "Vous le/la suivez"
|
||||
|
||||
#: mod/contacts.php:985
|
||||
#: mod/contacts.php:969 mod/nogroup.php:45
|
||||
msgid "Edit contact"
|
||||
msgstr "Éditer le contact"
|
||||
|
||||
#: mod/contacts.php:1023
|
||||
msgid "Toggle Blocked status"
|
||||
msgstr "(dés)activer l'état \"bloqué\""
|
||||
|
||||
#: mod/contacts.php:993
|
||||
#: mod/contacts.php:1031
|
||||
msgid "Toggle Ignored status"
|
||||
msgstr "(dés)activer l'état \"ignoré\""
|
||||
|
||||
#: mod/contacts.php:1001
|
||||
#: mod/contacts.php:1039
|
||||
msgid "Toggle Archive status"
|
||||
msgstr "(dés)activer l'état \"archivé\""
|
||||
|
||||
#: mod/contacts.php:1009
|
||||
#: mod/contacts.php:1047
|
||||
msgid "Delete contact"
|
||||
msgstr "Effacer ce contact"
|
||||
|
||||
#: mod/dfrn_confirm.php:127
|
||||
#: mod/crepair.php:95
|
||||
msgid "Contact settings applied."
|
||||
msgstr "Réglages du contact appliqués."
|
||||
|
||||
#: mod/crepair.php:97
|
||||
msgid "Contact update failed."
|
||||
msgstr "Impossible d'appliquer les réglages."
|
||||
|
||||
#: mod/crepair.php:122 mod/dfrn_confirm.php:134 mod/fsuggest.php:24
|
||||
#: mod/fsuggest.php:98
|
||||
msgid "Contact not found."
|
||||
msgstr "Contact introuvable."
|
||||
|
||||
#: mod/crepair.php:128
|
||||
msgid ""
|
||||
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
|
||||
" information your communications with this contact may stop working."
|
||||
msgstr "<strong>ATTENTION: Manipulation réservée aux experts</strong>, toute information incorrecte pourrait empêcher la communication avec ce contact."
|
||||
|
||||
#: mod/crepair.php:129
|
||||
msgid ""
|
||||
"Please use your browser 'Back' button <strong>now</strong> if you are "
|
||||
"uncertain what to do on this page."
|
||||
msgstr "une photo"
|
||||
|
||||
#: mod/crepair.php:142 mod/crepair.php:144
|
||||
msgid "No mirroring"
|
||||
msgstr "Pas de miroir"
|
||||
|
||||
#: mod/crepair.php:142
|
||||
msgid "Mirror as forwarded posting"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:142 mod/crepair.php:144
|
||||
msgid "Mirror as my own posting"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:158
|
||||
msgid "Return to contact editor"
|
||||
msgstr "Retour à l'éditeur de contact"
|
||||
|
||||
#: mod/crepair.php:160
|
||||
msgid "Refetch contact data"
|
||||
msgstr "Récupérer à nouveau les données de contact"
|
||||
|
||||
#: mod/crepair.php:164
|
||||
msgid "Remote Self"
|
||||
msgstr "Identité à distance"
|
||||
|
||||
#: mod/crepair.php:167
|
||||
msgid "Mirror postings from this contact"
|
||||
msgstr "Copier les publications de ce contact"
|
||||
|
||||
#: mod/crepair.php:169
|
||||
msgid ""
|
||||
"Mark this contact as remote_self, this will cause friendica to repost new "
|
||||
"entries from this contact."
|
||||
msgstr "Marquer ce contact comme étant remote_self, friendica republiera alors les nouvelles entrées de ce contact."
|
||||
|
||||
#: mod/crepair.php:174
|
||||
msgid "Account Nickname"
|
||||
msgstr "Pseudo du compte"
|
||||
|
||||
#: mod/crepair.php:175
|
||||
msgid "@Tagname - overrides Name/Nickname"
|
||||
msgstr "@NomEtiquette - prend le pas sur Nom/Pseudo"
|
||||
|
||||
#: mod/crepair.php:176
|
||||
msgid "Account URL"
|
||||
msgstr "URL du compte"
|
||||
|
||||
#: mod/crepair.php:177
|
||||
msgid "Friend Request URL"
|
||||
msgstr "Echec du téléversement de l'image."
|
||||
|
||||
#: mod/crepair.php:178
|
||||
msgid "Friend Confirm URL"
|
||||
msgstr "Accès public refusé."
|
||||
|
||||
#: mod/crepair.php:179
|
||||
msgid "Notification Endpoint URL"
|
||||
msgstr "Aucune photo sélectionnée"
|
||||
|
||||
#: mod/crepair.php:180
|
||||
msgid "Poll/Feed URL"
|
||||
msgstr "Téléverser des photos"
|
||||
|
||||
#: mod/crepair.php:181
|
||||
msgid "New photo from this URL"
|
||||
msgstr "Nouvelle photo depuis cette URL"
|
||||
|
||||
#: mod/delegate.php:102
|
||||
msgid "No potential page delegates located."
|
||||
msgstr "Pas de délégataire potentiel."
|
||||
|
||||
#: mod/delegate.php:133
|
||||
msgid ""
|
||||
"Delegates are able to manage all aspects of this account/page except for "
|
||||
"basic account settings. Please do not delegate your personal account to "
|
||||
"anybody that you do not trust completely."
|
||||
msgstr "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue."
|
||||
|
||||
#: mod/delegate.php:134
|
||||
msgid "Existing Page Managers"
|
||||
msgstr "Gestionnaires existants"
|
||||
|
||||
#: mod/delegate.php:136
|
||||
msgid "Existing Page Delegates"
|
||||
msgstr "Délégataires existants"
|
||||
|
||||
#: mod/delegate.php:138
|
||||
msgid "Potential Delegates"
|
||||
msgstr "Délégataires potentiels"
|
||||
|
||||
#: mod/delegate.php:140 mod/tagrm.php:99
|
||||
msgid "Remove"
|
||||
msgstr "Utiliser comme photo de profil"
|
||||
|
||||
#: mod/delegate.php:141
|
||||
msgid "Add"
|
||||
msgstr "Ajouter"
|
||||
|
||||
#: mod/delegate.php:142
|
||||
msgid "No entries."
|
||||
msgstr "Aucune entrée."
|
||||
|
||||
#: mod/dfrn_confirm.php:78 mod/profiles.php:29 mod/profiles.php:139
|
||||
#: mod/profiles.php:186 mod/profiles.php:622
|
||||
msgid "Profile not found."
|
||||
msgstr "Profil introuvable."
|
||||
|
||||
#: mod/dfrn_confirm.php:135
|
||||
msgid ""
|
||||
"This may occasionally happen if contact was requested by both persons and it"
|
||||
" has already been approved."
|
||||
msgstr "Ceci peut se produire lorsque le contact a été requis par les deux personnes et a déjà été approuvé."
|
||||
|
||||
#: mod/dfrn_confirm.php:246
|
||||
#: mod/dfrn_confirm.php:252
|
||||
msgid "Response from remote site was not understood."
|
||||
msgstr "Réponse du site distant incomprise."
|
||||
|
||||
#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260
|
||||
#: mod/dfrn_confirm.php:261 mod/dfrn_confirm.php:266
|
||||
msgid "Unexpected response from remote site: "
|
||||
msgstr "Réponse inattendue du site distant : "
|
||||
|
||||
#: mod/dfrn_confirm.php:269
|
||||
#: mod/dfrn_confirm.php:275
|
||||
msgid "Confirmation completed successfully."
|
||||
msgstr "Confirmation achevée avec succès."
|
||||
|
||||
#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292
|
||||
#: mod/dfrn_confirm.php:277 mod/dfrn_confirm.php:291 mod/dfrn_confirm.php:298
|
||||
msgid "Remote site reported: "
|
||||
msgstr "Alerte du site distant : "
|
||||
|
||||
#: mod/dfrn_confirm.php:283
|
||||
#: mod/dfrn_confirm.php:289
|
||||
msgid "Temporary failure. Please wait and try again."
|
||||
msgstr "Échec temporaire. Merci de recommencer ultérieurement."
|
||||
|
||||
#: mod/dfrn_confirm.php:290
|
||||
#: mod/dfrn_confirm.php:296
|
||||
msgid "Introduction failed or was revoked."
|
||||
msgstr "Introduction échouée ou annulée."
|
||||
|
||||
#: mod/dfrn_confirm.php:419
|
||||
#: mod/dfrn_confirm.php:425
|
||||
msgid "Unable to set contact photo."
|
||||
msgstr "Impossible de définir la photo du contact."
|
||||
|
||||
#: mod/dfrn_confirm.php:557
|
||||
#: mod/dfrn_confirm.php:565
|
||||
#, php-format
|
||||
msgid "No user record found for '%s' "
|
||||
msgstr "Pas d'utilisateur trouvé pour '%s' "
|
||||
|
||||
#: mod/dfrn_confirm.php:567
|
||||
#: mod/dfrn_confirm.php:575
|
||||
msgid "Our site encryption key is apparently messed up."
|
||||
msgstr "Notre clé de chiffrement de site est apparemment corrompue."
|
||||
|
||||
#: mod/dfrn_confirm.php:578
|
||||
#: mod/dfrn_confirm.php:586
|
||||
msgid "Empty site URL was provided or URL could not be decrypted by us."
|
||||
msgstr "URL de site absente ou indéchiffrable."
|
||||
|
||||
#: mod/dfrn_confirm.php:599
|
||||
#: mod/dfrn_confirm.php:608
|
||||
msgid "Contact record was not found for you on our site."
|
||||
msgstr "Pas d'entrée pour ce contact sur notre site."
|
||||
|
||||
#: mod/dfrn_confirm.php:613
|
||||
#: mod/dfrn_confirm.php:622
|
||||
#, php-format
|
||||
msgid "Site public key not available in contact record for URL %s."
|
||||
msgstr "La clé publique du site ne se trouve pas dans l'enregistrement du contact pour l'URL %s."
|
||||
|
||||
#: mod/dfrn_confirm.php:633
|
||||
#: mod/dfrn_confirm.php:642
|
||||
msgid ""
|
||||
"The ID provided by your system is a duplicate on our system. It should work "
|
||||
"if you try again."
|
||||
msgstr "L'identifiant fourni par votre système fait doublon sur le notre. Cela peut fonctionner si vous réessayez."
|
||||
|
||||
#: mod/dfrn_confirm.php:644
|
||||
#: mod/dfrn_confirm.php:653
|
||||
msgid "Unable to set your contact credentials on our system."
|
||||
msgstr "Impossible de vous définir des permissions sur notre système."
|
||||
|
||||
#: mod/dfrn_confirm.php:703
|
||||
#: mod/dfrn_confirm.php:715
|
||||
msgid "Unable to update your contact profile details on our system"
|
||||
msgstr "Impossible de mettre les détails de votre profil à jour sur notre système"
|
||||
|
||||
#: mod/dfrn_confirm.php:775
|
||||
#: mod/dfrn_confirm.php:787
|
||||
#, php-format
|
||||
msgid "%1$s has joined %2$s"
|
||||
msgstr "%1$s a rejoint %2$s"
|
||||
|
||||
#: mod/dfrn_request.php:101
|
||||
#: mod/dfrn_poll.php:118 mod/dfrn_poll.php:554
|
||||
#, php-format
|
||||
msgid "%1$s welcomes %2$s"
|
||||
msgstr "%1$s accueille %2$s"
|
||||
|
||||
#: mod/dfrn_request.php:106
|
||||
msgid "This introduction has already been accepted."
|
||||
msgstr "Cette introduction a déjà été acceptée."
|
||||
|
||||
#: mod/dfrn_request.php:124 mod/dfrn_request.php:520
|
||||
#: mod/dfrn_request.php:129 mod/dfrn_request.php:531
|
||||
msgid "Profile location is not valid or does not contain profile information."
|
||||
msgstr "L'emplacement du profil est invalide ou ne contient pas de profil valide."
|
||||
|
||||
#: mod/dfrn_request.php:129 mod/dfrn_request.php:525
|
||||
#: mod/dfrn_request.php:134 mod/dfrn_request.php:536
|
||||
msgid "Warning: profile location has no identifiable owner name."
|
||||
msgstr "Attention: l'emplacement du profil n'a pas de nom identifiable."
|
||||
|
||||
#: mod/dfrn_request.php:131 mod/dfrn_request.php:527
|
||||
#: mod/dfrn_request.php:137 mod/dfrn_request.php:539
|
||||
msgid "Warning: profile location has no profile photo."
|
||||
msgstr "Attention: l'emplacement du profil n'a pas de photo de profil."
|
||||
|
||||
#: mod/dfrn_request.php:134 mod/dfrn_request.php:530
|
||||
#: mod/dfrn_request.php:141 mod/dfrn_request.php:543
|
||||
#, php-format
|
||||
msgid "%d required parameter was not found at the given location"
|
||||
msgid_plural "%d required parameters were not found at the given location"
|
||||
msgstr[0] "%d paramètre requis n'a pas été trouvé à l'endroit indiqué"
|
||||
msgstr[1] "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué"
|
||||
|
||||
#: mod/dfrn_request.php:180
|
||||
#: mod/dfrn_request.php:185
|
||||
msgid "Introduction complete."
|
||||
msgstr "Phase d'introduction achevée."
|
||||
|
||||
#: mod/dfrn_request.php:222
|
||||
#: mod/dfrn_request.php:230
|
||||
msgid "Unrecoverable protocol error."
|
||||
msgstr "Erreur de protocole non-récupérable."
|
||||
|
||||
#: mod/dfrn_request.php:250
|
||||
#: mod/dfrn_request.php:258
|
||||
msgid "Profile unavailable."
|
||||
msgstr "Profil indisponible."
|
||||
|
||||
#: mod/dfrn_request.php:277
|
||||
#: mod/dfrn_request.php:285
|
||||
#, php-format
|
||||
msgid "%s has received too many connection requests today."
|
||||
msgstr "%s a reçu trop de demandes d'introduction aujourd'hui."
|
||||
|
||||
#: mod/dfrn_request.php:278
|
||||
#: mod/dfrn_request.php:286
|
||||
msgid "Spam protection measures have been invoked."
|
||||
msgstr "Des mesures de protection contre le spam ont été déclenchées."
|
||||
|
||||
#: mod/dfrn_request.php:279
|
||||
#: mod/dfrn_request.php:287
|
||||
msgid "Friends are advised to please try again in 24 hours."
|
||||
msgstr "Les relations sont encouragées à attendre 24 heures pour recommencer."
|
||||
|
||||
#: mod/dfrn_request.php:341
|
||||
#: mod/dfrn_request.php:349
|
||||
msgid "Invalid locator"
|
||||
msgstr "Localisateur invalide"
|
||||
|
||||
#: mod/dfrn_request.php:350
|
||||
#: mod/dfrn_request.php:358
|
||||
msgid "Invalid email address."
|
||||
msgstr "Adresse courriel invalide."
|
||||
|
||||
#: mod/dfrn_request.php:375
|
||||
#: mod/dfrn_request.php:383
|
||||
msgid "This account has not been configured for email. Request failed."
|
||||
msgstr "Ce compte n'a pas été configuré pour les échanges de courriel. Requête avortée."
|
||||
|
||||
#: mod/dfrn_request.php:478
|
||||
#: mod/dfrn_request.php:486
|
||||
msgid "You have already introduced yourself here."
|
||||
msgstr "Vous vous êtes déjà présenté ici."
|
||||
|
||||
#: mod/dfrn_request.php:482
|
||||
#: mod/dfrn_request.php:490
|
||||
#, php-format
|
||||
msgid "Apparently you are already friends with %s."
|
||||
msgstr "Il semblerait que vous soyez déjà ami avec %s."
|
||||
|
||||
#: mod/dfrn_request.php:503
|
||||
#: mod/dfrn_request.php:511
|
||||
msgid "Invalid profile URL."
|
||||
msgstr "URL de profil invalide."
|
||||
|
||||
#: mod/dfrn_request.php:604
|
||||
#: mod/dfrn_request.php:617
|
||||
msgid "Your introduction has been sent."
|
||||
msgstr "Votre introduction a été envoyée."
|
||||
|
||||
#: mod/dfrn_request.php:644
|
||||
#: mod/dfrn_request.php:659
|
||||
msgid ""
|
||||
"Remote subscription can't be done for your network. Please subscribe "
|
||||
"directly on your system."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:664
|
||||
#: mod/dfrn_request.php:680
|
||||
msgid "Please login to confirm introduction."
|
||||
msgstr "Connectez-vous pour confirmer l'introduction."
|
||||
|
||||
#: mod/dfrn_request.php:674
|
||||
#: mod/dfrn_request.php:690
|
||||
msgid ""
|
||||
"Incorrect identity currently logged in. Please login to "
|
||||
"<strong>this</strong> profile."
|
||||
msgstr "Identité incorrecte actuellement connectée. Merci de vous connecter à <strong>ce</strong> profil."
|
||||
|
||||
#: mod/dfrn_request.php:688 mod/dfrn_request.php:705
|
||||
#: mod/dfrn_request.php:704 mod/dfrn_request.php:721
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmer"
|
||||
|
||||
#: mod/dfrn_request.php:700
|
||||
#: mod/dfrn_request.php:716
|
||||
msgid "Hide this contact"
|
||||
msgstr "Cacher ce contact"
|
||||
|
||||
#: mod/dfrn_request.php:703
|
||||
#: mod/dfrn_request.php:719
|
||||
#, php-format
|
||||
msgid "Welcome home %s."
|
||||
msgstr "Bienvenue chez vous, %s."
|
||||
|
||||
#: mod/dfrn_request.php:704
|
||||
#: mod/dfrn_request.php:720
|
||||
#, php-format
|
||||
msgid "Please confirm your introduction/connection request to %s."
|
||||
msgstr "Merci de confirmer votre demande d'introduction auprès de %s."
|
||||
|
||||
#: mod/dfrn_request.php:833
|
||||
#: mod/dfrn_request.php:851
|
||||
msgid ""
|
||||
"Please enter your 'Identity Address' from one of the following supported "
|
||||
"communications networks:"
|
||||
msgstr "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:"
|
||||
|
||||
#: mod/dfrn_request.php:854
|
||||
#: mod/dfrn_request.php:875
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you are not yet a member of the free social web, <a "
|
||||
|
|
@ -8147,461 +5483,1066 @@ msgid ""
|
|||
"join us today</a>."
|
||||
msgstr "Si vous n’êtes pas encore membre du web social libre, <a href=\"%s/siteinfo\">suivez ce lien pour trouver un site Friendica ouvert au public et nous rejoindre dès aujourd’hui</a>."
|
||||
|
||||
#: mod/dfrn_request.php:859
|
||||
#: mod/dfrn_request.php:880
|
||||
msgid "Friend/Connection Request"
|
||||
msgstr "Requête de relation/amitié"
|
||||
|
||||
#: mod/dfrn_request.php:860
|
||||
#: mod/dfrn_request.php:881
|
||||
msgid ""
|
||||
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
|
||||
"testuser@identi.ca"
|
||||
msgstr "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
|
||||
|
||||
#: mod/dfrn_request.php:861 mod/follow.php:109
|
||||
#: mod/dfrn_request.php:882 mod/follow.php:150
|
||||
msgid "Please answer the following:"
|
||||
msgstr "Merci de répondre à ce qui suit:"
|
||||
msgstr "Merci de répondre à ce qui suit :"
|
||||
|
||||
#: mod/dfrn_request.php:862 mod/follow.php:110
|
||||
#: mod/dfrn_request.php:883 mod/follow.php:151
|
||||
#, php-format
|
||||
msgid "Does %s know you?"
|
||||
msgstr "Est-ce que %s vous connaît?"
|
||||
|
||||
#: mod/dfrn_request.php:866 mod/follow.php:111
|
||||
#: mod/dfrn_request.php:887 mod/follow.php:152
|
||||
msgid "Add a personal note:"
|
||||
msgstr "Ajouter une note personnelle:"
|
||||
msgstr "Ajouter une note personnelle :"
|
||||
|
||||
#: mod/dfrn_request.php:869
|
||||
#: mod/dfrn_request.php:890
|
||||
msgid "StatusNet/Federated Social Web"
|
||||
msgstr "StatusNet/Federated Social Web"
|
||||
|
||||
#: mod/dfrn_request.php:871
|
||||
#: mod/dfrn_request.php:892
|
||||
#, php-format
|
||||
msgid ""
|
||||
" - please do not use this form. Instead, enter %s into your Diaspora search"
|
||||
" bar."
|
||||
msgstr " - merci de ne pas utiliser ce formulaire. Entrez plutôt %s dans votre barre de recherche Diaspora."
|
||||
|
||||
#: mod/dfrn_request.php:872 mod/follow.php:117
|
||||
#: mod/dfrn_request.php:893 mod/follow.php:158 mod/unfollow.php:112
|
||||
msgid "Your Identity Address:"
|
||||
msgstr "Votre adresse d'identité:"
|
||||
msgstr "Votre adresse d'identité :"
|
||||
|
||||
#: mod/dfrn_request.php:875 mod/follow.php:19
|
||||
#: mod/dfrn_request.php:896 mod/follow.php:64 mod/unfollow.php:64
|
||||
msgid "Submit Request"
|
||||
msgstr "Envoyer la requête"
|
||||
|
||||
#: mod/follow.php:30
|
||||
msgid "You already added this contact."
|
||||
msgstr "Vous avez déjà ajouté ce contact."
|
||||
#: mod/directory.php:191 view/theme/vier/theme.php:197
|
||||
msgid "Global Directory"
|
||||
msgstr "Annuaire global"
|
||||
|
||||
#: mod/follow.php:39
|
||||
msgid "Diaspora support isn't enabled. Contact can't be added."
|
||||
msgstr "Le support de Diaspora est désactivé. Le contact ne peut pas être ajouté."
|
||||
#: mod/directory.php:193
|
||||
msgid "Find on this site"
|
||||
msgstr "Trouver sur ce site"
|
||||
|
||||
#: mod/follow.php:46
|
||||
msgid "OStatus support is disabled. Contact can't be added."
|
||||
msgstr "Le support d'OStatus est désactivé. Le contact ne peut pas être ajouté."
|
||||
#: mod/directory.php:195
|
||||
msgid "Results for:"
|
||||
msgstr "Résultats pour :"
|
||||
|
||||
#: mod/follow.php:53
|
||||
msgid "The network type couldn't be detected. Contact can't be added."
|
||||
msgstr "Impossible de détecter le type de réseau. Le contact ne peut pas être ajouté."
|
||||
#: mod/directory.php:197
|
||||
msgid "Site Directory"
|
||||
msgstr "Annuaire local"
|
||||
|
||||
#: mod/follow.php:180
|
||||
#: mod/directory.php:204
|
||||
msgid "No entries (some entries may be hidden)."
|
||||
msgstr "Aucune entrée (certaines peuvent être cachées)."
|
||||
|
||||
#: mod/dirfind.php:45
|
||||
#, php-format
|
||||
msgid "People Search - %s"
|
||||
msgstr "Recherche de personne - %s"
|
||||
|
||||
#: mod/dirfind.php:56
|
||||
#, php-format
|
||||
msgid "Forum Search - %s"
|
||||
msgstr "Recherche de Forum - %s"
|
||||
|
||||
#: mod/dirfind.php:253 mod/match.php:122
|
||||
msgid "No matches"
|
||||
msgstr "Aucune correspondance"
|
||||
|
||||
#: mod/display.php:482
|
||||
msgid "Item has been removed."
|
||||
msgstr "Cet élément a été enlevé."
|
||||
|
||||
#: mod/editpost.php:22 mod/editpost.php:32
|
||||
msgid "Item not found"
|
||||
msgstr "Élément introuvable"
|
||||
|
||||
#: mod/editpost.php:37
|
||||
msgid "Edit post"
|
||||
msgstr "Éditer la publication"
|
||||
|
||||
#: mod/events.php:100 mod/events.php:102
|
||||
msgid "Event can not end before it has started."
|
||||
msgstr "L'événement ne peut pas se terminer avant d'avoir commencé."
|
||||
|
||||
#: mod/events.php:109 mod/events.php:111
|
||||
msgid "Event title and start time are required."
|
||||
msgstr "Vous devez donner un nom et un horaire de début à l'événement."
|
||||
|
||||
#: mod/events.php:387
|
||||
msgid "Create New Event"
|
||||
msgstr "Créer un nouvel événement"
|
||||
|
||||
#: mod/events.php:507
|
||||
msgid "Event details"
|
||||
msgstr "Détails de l'événement"
|
||||
|
||||
#: mod/events.php:508
|
||||
msgid "Starting date and Title are required."
|
||||
msgstr "La date de début et le titre sont requis."
|
||||
|
||||
#: mod/events.php:509 mod/events.php:510
|
||||
msgid "Event Starts:"
|
||||
msgstr "Début de l'événement :"
|
||||
|
||||
#: mod/events.php:509 mod/events.php:521 mod/profiles.php:712
|
||||
msgid "Required"
|
||||
msgstr "Requis"
|
||||
|
||||
#: mod/events.php:511 mod/events.php:527
|
||||
msgid "Finish date/time is not known or not relevant"
|
||||
msgstr "Date / heure de fin inconnue ou sans objet"
|
||||
|
||||
#: mod/events.php:513 mod/events.php:514
|
||||
msgid "Event Finishes:"
|
||||
msgstr "Fin de l'événement :"
|
||||
|
||||
#: mod/events.php:515 mod/events.php:528
|
||||
msgid "Adjust for viewer timezone"
|
||||
msgstr "Ajuster à la zone horaire du visiteur"
|
||||
|
||||
#: mod/events.php:517
|
||||
msgid "Description:"
|
||||
msgstr "Description :"
|
||||
|
||||
#: mod/events.php:521 mod/events.php:523
|
||||
msgid "Title:"
|
||||
msgstr "Titre :"
|
||||
|
||||
#: mod/events.php:524 mod/events.php:525
|
||||
msgid "Share this event"
|
||||
msgstr "Partager cet événement"
|
||||
|
||||
#: mod/events.php:554
|
||||
msgid "Failed to remove event"
|
||||
msgstr "La suppression de l'événement a échoué."
|
||||
|
||||
#: mod/events.php:556
|
||||
msgid "Event removed"
|
||||
msgstr "Événement supprimé."
|
||||
|
||||
#: mod/fbrowser.php:125
|
||||
msgid "Files"
|
||||
msgstr "Fichiers"
|
||||
|
||||
#: mod/filer.php:32
|
||||
msgid "- select -"
|
||||
msgstr "- choisir -"
|
||||
|
||||
#: mod/follow.php:43
|
||||
msgid "Contact added"
|
||||
msgstr "Contact ajouté"
|
||||
|
||||
#: mod/install.php:139
|
||||
#: mod/follow.php:75
|
||||
msgid "You already added this contact."
|
||||
msgstr "Vous avez déjà ajouté ce contact."
|
||||
|
||||
#: mod/follow.php:84
|
||||
msgid "Diaspora support isn't enabled. Contact can't be added."
|
||||
msgstr "Le support de Diaspora est désactivé. Le contact ne peut pas être ajouté."
|
||||
|
||||
#: mod/follow.php:91
|
||||
msgid "OStatus support is disabled. Contact can't be added."
|
||||
msgstr "Le support d'OStatus est désactivé. Le contact ne peut pas être ajouté."
|
||||
|
||||
#: mod/follow.php:98
|
||||
msgid "The network type couldn't be detected. Contact can't be added."
|
||||
msgstr "Impossible de détecter le type de réseau. Le contact ne peut pas être ajouté."
|
||||
|
||||
#: mod/friendica.php:71
|
||||
msgid "This is Friendica, version"
|
||||
msgstr "Motorisé par Friendica version"
|
||||
|
||||
#: mod/friendica.php:72
|
||||
msgid "running at web location"
|
||||
msgstr "hébergé sur"
|
||||
|
||||
#: mod/friendica.php:76
|
||||
msgid ""
|
||||
"Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
|
||||
"about the Friendica project."
|
||||
msgstr "Rendez-vous sur <a href=\"https://friendi.ca\">Friendi.ca</a> pour en savoir plus sur le projet Friendica."
|
||||
|
||||
#: mod/friendica.php:80
|
||||
msgid "Bug reports and issues: please visit"
|
||||
msgstr "Pour les rapports de bugs : rendez vous sur"
|
||||
|
||||
#: mod/friendica.php:80
|
||||
msgid "the bugtracker at github"
|
||||
msgstr "le bugtracker sur GitHub"
|
||||
|
||||
#: mod/friendica.php:83
|
||||
msgid ""
|
||||
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
|
||||
"dot com"
|
||||
msgstr "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com"
|
||||
|
||||
#: mod/friendica.php:97
|
||||
msgid "Installed plugins/addons/apps:"
|
||||
msgstr "Extensions/greffons/applications installées :"
|
||||
|
||||
#: mod/friendica.php:111
|
||||
msgid "No installed plugins/addons/apps"
|
||||
msgstr "Extensions/greffons/applications non installées :"
|
||||
|
||||
#: mod/friendica.php:116
|
||||
msgid "On this server the following remote servers are blocked."
|
||||
msgstr "Sur ce serveur, les serveurs suivants sont sur liste noire."
|
||||
|
||||
#: mod/fsuggest.php:67
|
||||
msgid "Friend suggestion sent."
|
||||
msgstr "Suggestion d'amitié/contact envoyée."
|
||||
|
||||
#: mod/fsuggest.php:103
|
||||
msgid "Suggest Friends"
|
||||
msgstr "Suggérer des amis/contacts"
|
||||
|
||||
#: mod/fsuggest.php:105
|
||||
#, php-format
|
||||
msgid "Suggest a friend for %s"
|
||||
msgstr "Suggérer un ami/contact pour %s"
|
||||
|
||||
#: mod/group.php:34
|
||||
msgid "Group created."
|
||||
msgstr "Groupe créé."
|
||||
|
||||
#: mod/group.php:40
|
||||
msgid "Could not create group."
|
||||
msgstr "Impossible de créer le groupe."
|
||||
|
||||
#: mod/group.php:54 mod/group.php:156
|
||||
msgid "Group not found."
|
||||
msgstr "Groupe introuvable."
|
||||
|
||||
#: mod/group.php:68
|
||||
msgid "Group name changed."
|
||||
msgstr "Groupe renommé."
|
||||
|
||||
#: mod/group.php:81 mod/profperm.php:25 index.php:398
|
||||
msgid "Permission denied"
|
||||
msgstr "Permission refusée"
|
||||
|
||||
#: mod/group.php:95
|
||||
msgid "Save Group"
|
||||
msgstr "Sauvegarder le groupe"
|
||||
|
||||
#: mod/group.php:100
|
||||
msgid "Create a group of contacts/friends."
|
||||
msgstr "Créez un groupe de contacts/amis."
|
||||
|
||||
#: mod/group.php:125
|
||||
msgid "Group removed."
|
||||
msgstr "Groupe enlevé."
|
||||
|
||||
#: mod/group.php:127
|
||||
msgid "Unable to remove group."
|
||||
msgstr "Impossible d'enlever le groupe."
|
||||
|
||||
#: mod/group.php:191
|
||||
msgid "Delete Group"
|
||||
msgstr "Supprimer le groupe"
|
||||
|
||||
#: mod/group.php:197
|
||||
msgid "Group Editor"
|
||||
msgstr "Éditeur de groupe"
|
||||
|
||||
#: mod/group.php:202
|
||||
msgid "Edit Group Name"
|
||||
msgstr "Éditer le nom du groupe"
|
||||
|
||||
#: mod/group.php:212
|
||||
msgid "Members"
|
||||
msgstr "Membres"
|
||||
|
||||
#: mod/group.php:215 mod/network.php:661
|
||||
msgid "Group is empty"
|
||||
msgstr "Groupe vide"
|
||||
|
||||
#: mod/group.php:228
|
||||
msgid "Remove Contact"
|
||||
msgstr "Supprimer le contact"
|
||||
|
||||
#: mod/group.php:252
|
||||
msgid "Add Contact"
|
||||
msgstr "Ajouter le contact"
|
||||
|
||||
#: mod/group.php:264 mod/profperm.php:110
|
||||
msgid "Click on a contact to add or remove."
|
||||
msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer."
|
||||
|
||||
#: mod/hcard.php:15
|
||||
msgid "No profile"
|
||||
msgstr "Aucun profil"
|
||||
|
||||
#: mod/home.php:43
|
||||
#, php-format
|
||||
msgid "Welcome to %s"
|
||||
msgstr "Bienvenue sur %s"
|
||||
|
||||
#: mod/install.php:108
|
||||
msgid "Friendica Communications Server - Setup"
|
||||
msgstr "Serveur de communications Friendica - Configuration"
|
||||
|
||||
#: mod/install.php:145
|
||||
#: mod/install.php:114
|
||||
msgid "Could not connect to database."
|
||||
msgstr "Impossible de se connecter à la base."
|
||||
|
||||
#: mod/install.php:149
|
||||
#: mod/install.php:118
|
||||
msgid "Could not create table."
|
||||
msgstr "Impossible de créer une table."
|
||||
|
||||
#: mod/install.php:155
|
||||
#: mod/install.php:124
|
||||
msgid "Your Friendica site database has been installed."
|
||||
msgstr "La base de données de votre site Friendica a bien été installée."
|
||||
|
||||
#: mod/install.php:160
|
||||
#: mod/install.php:129
|
||||
msgid ""
|
||||
"You may need to import the file \"database.sql\" manually using phpmyadmin "
|
||||
"or mysql."
|
||||
msgstr "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql."
|
||||
|
||||
#: mod/install.php:161 mod/install.php:230 mod/install.php:607
|
||||
#: mod/install.php:130 mod/install.php:202 mod/install.php:549
|
||||
msgid "Please see the file \"INSTALL.txt\"."
|
||||
msgstr "Référez-vous au fichier \"INSTALL.txt\"."
|
||||
|
||||
#: mod/install.php:173
|
||||
#: mod/install.php:142
|
||||
msgid "Database already in use."
|
||||
msgstr "Base de données déjà en cours d'utilisation."
|
||||
|
||||
#: mod/install.php:227
|
||||
#: mod/install.php:199
|
||||
msgid "System check"
|
||||
msgstr "Vérifications système"
|
||||
|
||||
#: mod/install.php:232
|
||||
#: mod/install.php:204
|
||||
msgid "Check again"
|
||||
msgstr "Vérifier à nouveau"
|
||||
|
||||
#: mod/install.php:251
|
||||
#: mod/install.php:223
|
||||
msgid "Database connection"
|
||||
msgstr "Connexion à la base de données"
|
||||
|
||||
#: mod/install.php:252
|
||||
#: mod/install.php:224
|
||||
msgid ""
|
||||
"In order to install Friendica we need to know how to connect to your "
|
||||
"database."
|
||||
msgstr "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données."
|
||||
|
||||
#: mod/install.php:253
|
||||
#: mod/install.php:225
|
||||
msgid ""
|
||||
"Please contact your hosting provider or site administrator if you have "
|
||||
"questions about these settings."
|
||||
msgstr "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages."
|
||||
|
||||
#: mod/install.php:254
|
||||
#: mod/install.php:226
|
||||
msgid ""
|
||||
"The database you specify below should already exist. If it does not, please "
|
||||
"create it before continuing."
|
||||
msgstr "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer."
|
||||
|
||||
#: mod/install.php:258
|
||||
#: mod/install.php:230
|
||||
msgid "Database Server Name"
|
||||
msgstr "Serveur de base de données"
|
||||
|
||||
#: mod/install.php:259
|
||||
#: mod/install.php:231
|
||||
msgid "Database Login Name"
|
||||
msgstr "Nom d'utilisateur de la base"
|
||||
|
||||
#: mod/install.php:260
|
||||
#: mod/install.php:232
|
||||
msgid "Database Login Password"
|
||||
msgstr "Mot de passe de la base"
|
||||
|
||||
#: mod/install.php:261
|
||||
#: mod/install.php:232
|
||||
msgid "For security reasons the password must not be empty"
|
||||
msgstr "Pour des raisons de sécurité, le mot de passe ne peut pas être vide."
|
||||
|
||||
#: mod/install.php:233
|
||||
msgid "Database Name"
|
||||
msgstr "Nom de la base"
|
||||
|
||||
#: mod/install.php:262 mod/install.php:303
|
||||
#: mod/install.php:234 mod/install.php:275
|
||||
msgid "Site administrator email address"
|
||||
msgstr "Adresse électronique de l'administrateur du site"
|
||||
|
||||
#: mod/install.php:262 mod/install.php:303
|
||||
#: mod/install.php:234 mod/install.php:275
|
||||
msgid ""
|
||||
"Your account email address must match this in order to use the web admin "
|
||||
"panel."
|
||||
msgstr "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration."
|
||||
|
||||
#: mod/install.php:266 mod/install.php:306
|
||||
#: mod/install.php:238 mod/install.php:278
|
||||
msgid "Please select a default timezone for your website"
|
||||
msgstr "Sélectionner un fuseau horaire par défaut pour votre site"
|
||||
|
||||
#: mod/install.php:293
|
||||
#: mod/install.php:265
|
||||
msgid "Site settings"
|
||||
msgstr "Réglages du site"
|
||||
|
||||
#: mod/install.php:307
|
||||
#: mod/install.php:279
|
||||
msgid "System Language:"
|
||||
msgstr "Langue système:"
|
||||
msgstr "Langue système :"
|
||||
|
||||
#: mod/install.php:307
|
||||
#: mod/install.php:279
|
||||
msgid ""
|
||||
"Set the default language for your Friendica installation interface and to "
|
||||
"send emails."
|
||||
msgstr "Définit la langue par défaut pour l'interface de votre instance Friendica et les mails envoyés."
|
||||
|
||||
#: mod/install.php:347
|
||||
#: mod/install.php:319
|
||||
msgid "Could not find a command line version of PHP in the web server PATH."
|
||||
msgstr "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web."
|
||||
|
||||
#: mod/install.php:348
|
||||
#: mod/install.php:320
|
||||
msgid ""
|
||||
"If you don't have a command line version of PHP installed on server, you "
|
||||
"will not be able to run background polling via cron. See <a "
|
||||
"will not be able to run the background processing. See <a "
|
||||
"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
|
||||
"up-the-poller'>'Setup the poller'</a>"
|
||||
msgstr "Si vous n'avez pas une version en ligne de commande de PHP sur votre serveur, vous ne pourrez pas exécuter l'attente active ou « polling » en arrière-plan via cron. Voir <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>."
|
||||
"up-the-worker'>'Setup the worker'</a>"
|
||||
msgstr "Si vous n'avez pas accès à PHP en lignes de commandes sur votre serveur, vous ne serez pas en mesure de faire fonctionner les tâches de fond. Voir <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-worker'>'Réglage du worker'</a>."
|
||||
|
||||
#: mod/install.php:352
|
||||
#: mod/install.php:324
|
||||
msgid "PHP executable path"
|
||||
msgstr "Chemin vers l'exécutable de PHP"
|
||||
|
||||
#: mod/install.php:352
|
||||
#: mod/install.php:324
|
||||
msgid ""
|
||||
"Enter full path to php executable. You can leave this blank to continue the "
|
||||
"installation."
|
||||
msgstr "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation."
|
||||
|
||||
#: mod/install.php:357
|
||||
#: mod/install.php:329
|
||||
msgid "Command line PHP"
|
||||
msgstr "Version \"ligne de commande\" de PHP"
|
||||
|
||||
#: mod/install.php:366
|
||||
#: mod/install.php:338
|
||||
msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
|
||||
msgstr "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)"
|
||||
|
||||
#: mod/install.php:367
|
||||
#: mod/install.php:339
|
||||
msgid "Found PHP version: "
|
||||
msgstr "Version de PHP:"
|
||||
msgstr "Version de PHP :"
|
||||
|
||||
#: mod/install.php:369
|
||||
#: mod/install.php:341
|
||||
msgid "PHP cli binary"
|
||||
msgstr "PHP cli binary"
|
||||
|
||||
#: mod/install.php:380
|
||||
#: mod/install.php:352
|
||||
msgid ""
|
||||
"The command line version of PHP on your system does not have "
|
||||
"\"register_argc_argv\" enabled."
|
||||
msgstr "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé."
|
||||
|
||||
#: mod/install.php:381
|
||||
#: mod/install.php:353
|
||||
msgid "This is required for message delivery to work."
|
||||
msgstr "Ceci est requis pour que la livraison des messages fonctionne."
|
||||
|
||||
#: mod/install.php:383
|
||||
#: mod/install.php:355
|
||||
msgid "PHP register_argc_argv"
|
||||
msgstr "PHP register_argc_argv"
|
||||
|
||||
#: mod/install.php:404
|
||||
#: mod/install.php:378
|
||||
msgid ""
|
||||
"Error: the \"openssl_pkey_new\" function on this system is not able to "
|
||||
"generate encryption keys"
|
||||
msgstr "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement"
|
||||
|
||||
#: mod/install.php:405
|
||||
#: mod/install.php:379
|
||||
msgid ""
|
||||
"If running under Windows, please see "
|
||||
"\"http://www.php.net/manual/en/openssl.installation.php\"."
|
||||
msgstr "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\"."
|
||||
|
||||
#: mod/install.php:407
|
||||
#: mod/install.php:381
|
||||
msgid "Generate encryption keys"
|
||||
msgstr "Générer les clés de chiffrement"
|
||||
|
||||
#: mod/install.php:414
|
||||
#: mod/install.php:388
|
||||
msgid "libCurl PHP module"
|
||||
msgstr "Module libCurl de PHP"
|
||||
|
||||
#: mod/install.php:415
|
||||
#: mod/install.php:389
|
||||
msgid "GD graphics PHP module"
|
||||
msgstr "Module GD (graphiques) de PHP"
|
||||
|
||||
#: mod/install.php:416
|
||||
#: mod/install.php:390
|
||||
msgid "OpenSSL PHP module"
|
||||
msgstr "Module OpenSSL de PHP"
|
||||
|
||||
#: mod/install.php:417
|
||||
msgid "mysqli PHP module"
|
||||
msgstr "Module Mysqli de PHP"
|
||||
#: mod/install.php:391
|
||||
msgid "PDO or MySQLi PHP module"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:418
|
||||
#: mod/install.php:392
|
||||
msgid "mb_string PHP module"
|
||||
msgstr "Module mb_string de PHP"
|
||||
|
||||
#: mod/install.php:419
|
||||
msgid "mcrypt PHP module"
|
||||
msgstr "Module PHP mcrypt"
|
||||
|
||||
#: mod/install.php:420
|
||||
#: mod/install.php:393
|
||||
msgid "XML PHP module"
|
||||
msgstr "Module PHP XML"
|
||||
|
||||
#: mod/install.php:421
|
||||
#: mod/install.php:394
|
||||
msgid "iconv module"
|
||||
msgstr "Module iconv"
|
||||
|
||||
#: mod/install.php:425 mod/install.php:427
|
||||
#: mod/install.php:398 mod/install.php:400
|
||||
msgid "Apache mod_rewrite module"
|
||||
msgstr "Module mod_rewrite Apache"
|
||||
|
||||
#: mod/install.php:425
|
||||
#: mod/install.php:398
|
||||
msgid ""
|
||||
"Error: Apache webserver mod-rewrite module is required but not installed."
|
||||
msgstr "Erreur : Le module \"rewrite\" du serveur web Apache est requis mais pas installé."
|
||||
|
||||
#: mod/install.php:433
|
||||
#: mod/install.php:406
|
||||
msgid "Error: libCURL PHP module required but not installed."
|
||||
msgstr "Erreur : Le module PHP \"libCURL\" est requis mais pas installé."
|
||||
|
||||
#: mod/install.php:437
|
||||
#: mod/install.php:410
|
||||
msgid ""
|
||||
"Error: GD graphics PHP module with JPEG support required but not installed."
|
||||
msgstr "Erreur : Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé."
|
||||
|
||||
#: mod/install.php:441
|
||||
#: mod/install.php:414
|
||||
msgid "Error: openssl PHP module required but not installed."
|
||||
msgstr "Erreur : Le module PHP \"openssl\" est requis mais pas installé."
|
||||
|
||||
#: mod/install.php:445
|
||||
msgid "Error: mysqli PHP module required but not installed."
|
||||
msgstr "Erreur : Le module PHP \"mysqli\" est requis mais pas installé."
|
||||
#: mod/install.php:418
|
||||
msgid "Error: PDO or MySQLi PHP module required but not installed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:449
|
||||
#: mod/install.php:422
|
||||
msgid "Error: The MySQL driver for PDO is not installed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:426
|
||||
msgid "Error: mb_string PHP module required but not installed."
|
||||
msgstr "Erreur : le module PHP mb_string est requis mais pas installé."
|
||||
|
||||
#: mod/install.php:453
|
||||
msgid "Error: mcrypt PHP module required but not installed."
|
||||
msgstr "Erreur : le module PHP mcrypt est nécessaire, mais n'es pas installé."
|
||||
|
||||
#: mod/install.php:457
|
||||
#: mod/install.php:430
|
||||
msgid "Error: iconv PHP module required but not installed."
|
||||
msgstr "Erreur : Le module PHP iconv requis est absent."
|
||||
|
||||
#: mod/install.php:466
|
||||
msgid ""
|
||||
"If you are using php_cli, please make sure that mcrypt module is enabled in "
|
||||
"its config file"
|
||||
msgstr "Si vous utilisez php_cli, veuillez vous assurer que le module mcrypt est activé dans le fichier de configuration"
|
||||
|
||||
#: mod/install.php:469
|
||||
msgid ""
|
||||
"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
|
||||
"encryption layer."
|
||||
msgstr "La fonction mcrypt_create_iv() n'est pas définie. Elle est requise pour activer le chiffrement RINO2."
|
||||
|
||||
#: mod/install.php:471
|
||||
msgid "mcrypt_create_iv() function"
|
||||
msgstr "fonction mcrypt_create_iv()"
|
||||
|
||||
#: mod/install.php:479
|
||||
#: mod/install.php:440
|
||||
msgid "Error, XML PHP module required but not installed."
|
||||
msgstr "Erreur : le module PHP XML requis est absent."
|
||||
|
||||
#: mod/install.php:494
|
||||
#: mod/install.php:452
|
||||
msgid ""
|
||||
"The web installer needs to be able to create a file called \".htconfig.php\""
|
||||
" in the top folder of your web server and it is unable to do so."
|
||||
msgstr "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable."
|
||||
|
||||
#: mod/install.php:495
|
||||
#: mod/install.php:453
|
||||
msgid ""
|
||||
"This is most often a permission setting, as the web server may not be able "
|
||||
"to write files in your folder - even if you can."
|
||||
msgstr "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez."
|
||||
|
||||
#: mod/install.php:496
|
||||
#: mod/install.php:454
|
||||
msgid ""
|
||||
"At the end of this procedure, we will give you a text to save in a file "
|
||||
"named .htconfig.php in your Friendica top folder."
|
||||
msgstr "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica."
|
||||
|
||||
#: mod/install.php:497
|
||||
#: mod/install.php:455
|
||||
msgid ""
|
||||
"You can alternatively skip this procedure and perform a manual installation."
|
||||
" Please see the file \"INSTALL.txt\" for instructions."
|
||||
msgstr "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\"."
|
||||
|
||||
#: mod/install.php:500
|
||||
#: mod/install.php:458
|
||||
msgid ".htconfig.php is writable"
|
||||
msgstr "Fichier .htconfig.php accessible en écriture"
|
||||
|
||||
#: mod/install.php:510
|
||||
#: mod/install.php:468
|
||||
msgid ""
|
||||
"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
|
||||
"compiles templates to PHP to speed up rendering."
|
||||
msgstr "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu."
|
||||
|
||||
#: mod/install.php:511
|
||||
#: mod/install.php:469
|
||||
msgid ""
|
||||
"In order to store these compiled templates, the web server needs to have "
|
||||
"write access to the directory view/smarty3/ under the Friendica top level "
|
||||
"folder."
|
||||
msgstr "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica."
|
||||
|
||||
#: mod/install.php:512
|
||||
#: mod/install.php:470
|
||||
msgid ""
|
||||
"Please ensure that the user that your web server runs as (e.g. www-data) has"
|
||||
" write access to this folder."
|
||||
msgstr "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier."
|
||||
|
||||
#: mod/install.php:513
|
||||
#: mod/install.php:471
|
||||
msgid ""
|
||||
"Note: as a security measure, you should give the web server write access to "
|
||||
"view/smarty3/ only--not the template files (.tpl) that it contains."
|
||||
msgstr "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient."
|
||||
|
||||
#: mod/install.php:516
|
||||
#: mod/install.php:474
|
||||
msgid "view/smarty3 is writable"
|
||||
msgstr "view/smarty3 est autorisé à l écriture"
|
||||
|
||||
#: mod/install.php:532
|
||||
#: mod/install.php:490
|
||||
msgid ""
|
||||
"Url rewrite in .htaccess is not working. Check your server configuration."
|
||||
msgstr "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur."
|
||||
|
||||
#: mod/install.php:534
|
||||
#: mod/install.php:492
|
||||
msgid "Url rewrite is working"
|
||||
msgstr "La réécriture d'URL fonctionne."
|
||||
|
||||
#: mod/install.php:552
|
||||
#: mod/install.php:511
|
||||
msgid "ImageMagick PHP extension is not installed"
|
||||
msgstr ""
|
||||
msgstr "L'extension PHP ImageMagick n'est pas installée"
|
||||
|
||||
#: mod/install.php:555
|
||||
#: mod/install.php:513
|
||||
msgid "ImageMagick PHP extension is installed"
|
||||
msgstr "L’extension PHP ImageMagick est installée"
|
||||
|
||||
#: mod/install.php:557
|
||||
#: mod/install.php:515
|
||||
msgid "ImageMagick supports GIF"
|
||||
msgstr "ImageMagick supporte le format GIF"
|
||||
|
||||
#: mod/install.php:566
|
||||
#: mod/install.php:522
|
||||
msgid ""
|
||||
"The database configuration file \".htconfig.php\" could not be written. "
|
||||
"Please use the enclosed text to create a configuration file in your web "
|
||||
"server root."
|
||||
msgstr "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement."
|
||||
|
||||
#: mod/install.php:605
|
||||
#: mod/install.php:547
|
||||
msgid "<h1>What next</h1>"
|
||||
msgstr "<h1>Ensuite</h1>"
|
||||
|
||||
#: mod/install.php:606
|
||||
#: mod/install.php:548
|
||||
msgid ""
|
||||
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
|
||||
"poller."
|
||||
msgstr "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le \"poller\"."
|
||||
"worker."
|
||||
msgstr "IMPORTANT: vous devrez ajouter [manuellement] une tâche planifiée pour le 'worker'."
|
||||
|
||||
#: mod/item.php:116
|
||||
#: mod/invite.php:33
|
||||
msgid "Total invitation limit exceeded."
|
||||
msgstr "La limite d'invitation totale est éxédée."
|
||||
|
||||
#: mod/invite.php:56
|
||||
#, php-format
|
||||
msgid "%s : Not a valid email address."
|
||||
msgstr "%s : Adresse de courriel invalide."
|
||||
|
||||
#: mod/invite.php:81
|
||||
msgid "Please join us on Friendica"
|
||||
msgstr "Rejoignez-nous sur Friendica"
|
||||
|
||||
#: mod/invite.php:92
|
||||
msgid "Invitation limit exceeded. Please contact your site administrator."
|
||||
msgstr "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site."
|
||||
|
||||
#: mod/invite.php:96
|
||||
#, php-format
|
||||
msgid "%s : Message delivery failed."
|
||||
msgstr "%s : L'envoi du message a échoué."
|
||||
|
||||
#: mod/invite.php:100
|
||||
#, php-format
|
||||
msgid "%d message sent."
|
||||
msgid_plural "%d messages sent."
|
||||
msgstr[0] "%d message envoyé."
|
||||
msgstr[1] "%d messages envoyés."
|
||||
|
||||
#: mod/invite.php:119
|
||||
msgid "You have no more invitations available"
|
||||
msgstr "Vous n'avez plus d'invitations disponibles"
|
||||
|
||||
#: mod/invite.php:127
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Visit %s for a list of public sites that you can join. Friendica members on "
|
||||
"other sites can all connect with each other, as well as with members of many"
|
||||
" other social networks."
|
||||
msgstr "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux."
|
||||
|
||||
#: mod/invite.php:129
|
||||
#, php-format
|
||||
msgid ""
|
||||
"To accept this invitation, please visit and register at %s or any other "
|
||||
"public Friendica website."
|
||||
msgstr "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public."
|
||||
|
||||
#: mod/invite.php:130
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
|
||||
"web that is owned and controlled by its members. They can also connect with "
|
||||
"many traditional social networks. See %s for a list of alternate Friendica "
|
||||
"sites you can join."
|
||||
msgstr "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre."
|
||||
|
||||
#: mod/invite.php:134
|
||||
msgid ""
|
||||
"Our apologies. This system is not currently configured to connect with other"
|
||||
" public sites or invite members."
|
||||
msgstr "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres."
|
||||
|
||||
#: mod/invite.php:137
|
||||
#, php-format
|
||||
msgid "To accept this invitation, please visit and register at %s."
|
||||
msgstr "Pour accepter cette invitation, rendez-vous sur %s et inscrivez-vous."
|
||||
|
||||
#: mod/invite.php:138
|
||||
msgid ""
|
||||
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
|
||||
"web that is owned and controlled by its members. They can also connect with "
|
||||
"many traditional social networks."
|
||||
msgstr "Les instances Friendica sont interconnectées pour créer un immense réseau social possédé et contrôlé par ses membres, et qui respecte leur vie privée. Ils peuvent aussi s'interconnecter avec d'autres réseaux sociaux traditionnels."
|
||||
|
||||
#: mod/invite.php:144
|
||||
msgid "Send invitations"
|
||||
msgstr "Envoyer des invitations"
|
||||
|
||||
#: mod/invite.php:145
|
||||
msgid "Enter email addresses, one per line:"
|
||||
msgstr "Entrez les adresses email, une par ligne :"
|
||||
|
||||
#: mod/invite.php:146 mod/message.php:334 mod/message.php:506
|
||||
#: mod/wallmessage.php:139
|
||||
msgid "Your message:"
|
||||
msgstr "Votre message :"
|
||||
|
||||
#: mod/invite.php:147
|
||||
msgid ""
|
||||
"You are cordially invited to join me and other close friends on Friendica - "
|
||||
"and help us to create a better social web."
|
||||
msgstr "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social."
|
||||
|
||||
#: mod/invite.php:149
|
||||
msgid "You will need to supply this invitation code: $invite_code"
|
||||
msgstr "Vous devrez fournir ce code d'invitation : $invite_code"
|
||||
|
||||
#: mod/invite.php:149
|
||||
msgid ""
|
||||
"Once you have registered, please connect with me via my profile page at:"
|
||||
msgstr "Une fois inscrit, connectez-vous à la page de mon profil sur :"
|
||||
|
||||
#: mod/invite.php:151
|
||||
msgid ""
|
||||
"For more information about the Friendica project and why we feel it is "
|
||||
"important, please visit http://friendi.ca"
|
||||
msgstr ""
|
||||
|
||||
#: mod/item.php:124
|
||||
msgid "Unable to locate original post."
|
||||
msgstr "Impossible de localiser la publication originale."
|
||||
|
||||
#: mod/item.php:341
|
||||
#: mod/item.php:351
|
||||
msgid "Empty post discarded."
|
||||
msgstr "Publication vide rejetée."
|
||||
|
||||
#: mod/item.php:902
|
||||
#: mod/item.php:937
|
||||
msgid "System error. Post not saved."
|
||||
msgstr "Erreur système. Publication non sauvée."
|
||||
|
||||
#: mod/item.php:992
|
||||
#: mod/item.php:1028
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This message was sent to you by %s, a member of the Friendica social "
|
||||
"network."
|
||||
msgstr "Ce message vous a été envoyé par %s, membre du réseau social Friendica."
|
||||
|
||||
#: mod/item.php:994
|
||||
#: mod/item.php:1030
|
||||
#, php-format
|
||||
msgid "You may visit them online at %s"
|
||||
msgstr "Vous pouvez leur rendre visite sur %s"
|
||||
|
||||
#: mod/item.php:995
|
||||
#: mod/item.php:1031
|
||||
msgid ""
|
||||
"Please contact the sender by replying to this post if you do not wish to "
|
||||
"receive these messages."
|
||||
msgstr "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages."
|
||||
|
||||
#: mod/item.php:999
|
||||
#: mod/item.php:1035
|
||||
#, php-format
|
||||
msgid "%s posted an update."
|
||||
msgstr "%s a publié une mise à jour."
|
||||
|
||||
#: mod/network.php:398
|
||||
#: mod/lockview.php:34 mod/lockview.php:42
|
||||
msgid "Remote privacy information not available."
|
||||
msgstr "Informations de confidentialité indisponibles."
|
||||
|
||||
#: mod/lockview.php:51
|
||||
msgid "Visible to:"
|
||||
msgstr "Visible par :"
|
||||
|
||||
#: mod/lostpass.php:23
|
||||
msgid "No valid account found."
|
||||
msgstr "Impossible de trouver un compte valide."
|
||||
|
||||
#: mod/lostpass.php:39
|
||||
msgid "Password reset request issued. Check your email."
|
||||
msgstr "Réinitialisation du mot de passe en cours. Vérifiez votre courriel."
|
||||
|
||||
#: mod/lostpass.php:45
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\tDear %1$s,\n"
|
||||
"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
|
||||
"\t\tpassword. In order to confirm this request, please select the verification link\n"
|
||||
"\t\tbelow or paste it into your web browser address bar.\n"
|
||||
"\n"
|
||||
"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
|
||||
"\t\tprovided and ignore and/or delete this email.\n"
|
||||
"\n"
|
||||
"\t\tYour password will not be changed unless we can verify that you\n"
|
||||
"\t\tissued this request."
|
||||
msgstr "\n\t\tChère/Cher %1$s,\n\t\t\tNous avons reçu une demande de ré-initialisation du mot de passe de votre compte sur \"%2$s\". Pour confirmer cette demande, veuillez cliquer sur le lien de vérification ci-dessous ou le coller dans la barre d’adresse de votre navigateur.\n\n\t\tSi vous n’êtes PAS à l’origine de cette demande, NE suivez PAS le lien—ignorez et/ou supprimez ce message.\n\n\t\tVotre mot de passe ne sera pas modifié si nous n’avons pas de confirmation que la demande émane de vous."
|
||||
|
||||
#: mod/lostpass.php:56
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\tFollow this link to verify your identity:\n"
|
||||
"\n"
|
||||
"\t\t%1$s\n"
|
||||
"\n"
|
||||
"\t\tYou will then receive a follow-up message containing the new password.\n"
|
||||
"\t\tYou may change that password from your account settings page after logging in.\n"
|
||||
"\n"
|
||||
"\t\tThe login details are as follows:\n"
|
||||
"\n"
|
||||
"\t\tSite Location:\t%2$s\n"
|
||||
"\t\tLogin Name:\t%3$s"
|
||||
msgstr "\n\t\tSuivez ce lien pour confirmer votre identité :\n\n\t\t%1$s\n\n\t\tVous recevrez alors a message contenant votre nouveau mot de passe.\n\t\tVous pourrez changer ce mot de passe depuis les paramètres de votre compte une fois connecté.\n\n\t\tInformations de connexion :\n\n\t\tAdresse :\t%2$s\n\t\tIdentifiant :\t%3$s"
|
||||
|
||||
#: mod/lostpass.php:75
|
||||
#, php-format
|
||||
msgid "Password reset requested at %s"
|
||||
msgstr "Requête de réinitialisation de mot de passe à %s"
|
||||
|
||||
#: mod/lostpass.php:95
|
||||
msgid ""
|
||||
"Request could not be verified. (You may have previously submitted it.) "
|
||||
"Password reset failed."
|
||||
msgstr "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué."
|
||||
|
||||
#: mod/lostpass.php:114 boot.php:916
|
||||
msgid "Password Reset"
|
||||
msgstr "Réinitialiser le mot de passe"
|
||||
|
||||
#: mod/lostpass.php:115
|
||||
msgid "Your password has been reset as requested."
|
||||
msgstr "Votre mot de passe a bien été réinitialisé."
|
||||
|
||||
#: mod/lostpass.php:116
|
||||
msgid "Your new password is"
|
||||
msgstr "Votre nouveau mot de passe est "
|
||||
|
||||
#: mod/lostpass.php:117
|
||||
msgid "Save or copy your new password - and then"
|
||||
msgstr "Sauvez ou copiez ce nouveau mot de passe - puis"
|
||||
|
||||
#: mod/lostpass.php:118
|
||||
msgid "click here to login"
|
||||
msgstr "cliquez ici pour vous connecter"
|
||||
|
||||
#: mod/lostpass.php:119
|
||||
msgid ""
|
||||
"Your password may be changed from the <em>Settings</em> page after "
|
||||
"successful login."
|
||||
msgstr "Votre mot de passe peut être changé depuis la page <em>Réglages</em>, une fois que vous serez connecté."
|
||||
|
||||
#: mod/lostpass.php:129
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\t\tDear %1$s,\n"
|
||||
"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
|
||||
"\t\t\t\tinformation for your records (or change your password immediately to\n"
|
||||
"\t\t\t\tsomething that you will remember).\n"
|
||||
"\t\t\t"
|
||||
msgstr "\n\t\t\t\tChère/Cher %1$s,\n\t\t\t\t\tVotre mot de passe a été changé ainsi que vous l’avez demandé. Veuillez conserver cette informations dans vos archives (ou changer immédiatement votre mot de passe pour un autre dont vous vous souviendrez).\n\t\t\t"
|
||||
|
||||
#: mod/lostpass.php:135
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\t\tYour login details are as follows:\n"
|
||||
"\n"
|
||||
"\t\t\t\tSite Location:\t%1$s\n"
|
||||
"\t\t\t\tLogin Name:\t%2$s\n"
|
||||
"\t\t\t\tPassword:\t%3$s\n"
|
||||
"\n"
|
||||
"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
|
||||
"\t\t\t"
|
||||
msgstr "\n\t\t\t\tVoici vos informations de connexion :\n\n\t\t\t\tAdresse :\t%1$s\n\t\t\t\tIdentifiant :\t%2$s\n\t\t\t\tMot de passe :\t%3$s\n\n\t\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\t\t\t"
|
||||
|
||||
#: mod/lostpass.php:151
|
||||
#, php-format
|
||||
msgid "Your password has been changed at %s"
|
||||
msgstr "Votre mot de passe a été modifié à %s"
|
||||
|
||||
#: mod/lostpass.php:163
|
||||
msgid "Forgot your Password?"
|
||||
msgstr "Mot de passe oublié ?"
|
||||
|
||||
#: mod/lostpass.php:164
|
||||
msgid ""
|
||||
"Enter your email address and submit to have your password reset. Then check "
|
||||
"your email for further instructions."
|
||||
msgstr "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel."
|
||||
|
||||
#: mod/lostpass.php:165 boot.php:904
|
||||
msgid "Nickname or Email: "
|
||||
msgstr "Pseudo ou eMail : "
|
||||
|
||||
#: mod/lostpass.php:166
|
||||
msgid "Reset"
|
||||
msgstr "Réinitialiser"
|
||||
|
||||
#: mod/manage.php:154
|
||||
msgid "Manage Identities and/or Pages"
|
||||
msgstr "Gérer les identités et/ou les pages"
|
||||
|
||||
#: mod/manage.php:155
|
||||
msgid ""
|
||||
"Toggle between different identities or community/group pages which share "
|
||||
"your account details or which you have been granted \"manage\" permissions"
|
||||
msgstr "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer."
|
||||
|
||||
#: mod/manage.php:156
|
||||
msgid "Select an identity to manage: "
|
||||
msgstr "Choisir une identité à gérer: "
|
||||
|
||||
#: mod/match.php:45
|
||||
msgid "No keywords to match. Please add keywords to your default profile."
|
||||
msgstr "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut."
|
||||
|
||||
#: mod/match.php:101
|
||||
msgid "is interested in:"
|
||||
msgstr "s'intéresse à :"
|
||||
|
||||
#: mod/match.php:117
|
||||
msgid "Profile Match"
|
||||
msgstr "Correpondance de profils"
|
||||
|
||||
#: mod/message.php:65 mod/wallmessage.php:54
|
||||
msgid "No recipient selected."
|
||||
msgstr "Pas de destinataire sélectionné."
|
||||
|
||||
#: mod/message.php:69
|
||||
msgid "Unable to locate contact information."
|
||||
msgstr "Impossible de localiser les informations du contact."
|
||||
|
||||
#: mod/message.php:72 mod/wallmessage.php:60
|
||||
msgid "Message could not be sent."
|
||||
msgstr "Impossible d'envoyer le message."
|
||||
|
||||
#: mod/message.php:75 mod/wallmessage.php:63
|
||||
msgid "Message collection failure."
|
||||
msgstr "Récupération des messages infructueuse."
|
||||
|
||||
#: mod/message.php:78 mod/wallmessage.php:66
|
||||
msgid "Message sent."
|
||||
msgstr "Message envoyé."
|
||||
|
||||
#: mod/message.php:207
|
||||
msgid "Do you really want to delete this message?"
|
||||
msgstr "Voulez-vous vraiment supprimer ce message ?"
|
||||
|
||||
#: mod/message.php:227
|
||||
msgid "Message deleted."
|
||||
msgstr "Message supprimé."
|
||||
|
||||
#: mod/message.php:257
|
||||
msgid "Conversation removed."
|
||||
msgstr "Conversation supprimée."
|
||||
|
||||
#: mod/message.php:324 mod/wallmessage.php:130
|
||||
msgid "Send Private Message"
|
||||
msgstr "Envoyer un message privé"
|
||||
|
||||
#: mod/message.php:325 mod/message.php:501 mod/wallmessage.php:132
|
||||
msgid "To:"
|
||||
msgstr "À:"
|
||||
|
||||
#: mod/message.php:330 mod/message.php:503 mod/wallmessage.php:133
|
||||
msgid "Subject:"
|
||||
msgstr "Sujet:"
|
||||
|
||||
#: mod/message.php:366
|
||||
msgid "No messages."
|
||||
msgstr "Aucun message."
|
||||
|
||||
#: mod/message.php:405
|
||||
msgid "Message not available."
|
||||
msgstr "Message indisponible."
|
||||
|
||||
#: mod/message.php:473
|
||||
msgid "Delete message"
|
||||
msgstr "Effacer message"
|
||||
|
||||
#: mod/message.php:494 mod/message.php:576
|
||||
msgid "Delete conversation"
|
||||
msgstr "Effacer conversation"
|
||||
|
||||
#: mod/message.php:496
|
||||
msgid ""
|
||||
"No secure communications available. You <strong>may</strong> be able to "
|
||||
"respond from the sender's profile page."
|
||||
msgstr "Pas de communications sécurisées possibles. Vous serez <strong>peut-être</strong> en mesure de répondre depuis la page de profil de l'émetteur."
|
||||
|
||||
#: mod/message.php:500
|
||||
msgid "Send Reply"
|
||||
msgstr "Répondre"
|
||||
|
||||
#: mod/message.php:552
|
||||
#, php-format
|
||||
msgid "Unknown sender - %s"
|
||||
msgstr "Émetteur inconnu - %s"
|
||||
|
||||
#: mod/message.php:554
|
||||
#, php-format
|
||||
msgid "You and %s"
|
||||
msgstr "Vous et %s"
|
||||
|
||||
#: mod/message.php:556
|
||||
#, php-format
|
||||
msgid "%s and You"
|
||||
msgstr "%s et vous"
|
||||
|
||||
#: mod/message.php:579
|
||||
msgid "D, d M Y - g:i A"
|
||||
msgstr "D, d M Y - g:i A"
|
||||
|
||||
#: mod/message.php:582
|
||||
#, php-format
|
||||
msgid "%d message"
|
||||
msgid_plural "%d messages"
|
||||
msgstr[0] "%d message"
|
||||
msgstr[1] "%d messages"
|
||||
|
||||
#: mod/mood.php:138
|
||||
msgid "Mood"
|
||||
msgstr "Humeur"
|
||||
|
||||
#: mod/mood.php:139
|
||||
msgid "Set your current mood and tell your friends"
|
||||
msgstr "Spécifiez votre humeur du moment, et informez vos amis"
|
||||
|
||||
#: mod/network.php:195 mod/search.php:31
|
||||
msgid "Remove term"
|
||||
msgstr "Retirer le terme"
|
||||
|
||||
#: mod/network.php:569
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Warning: This group contains %s member from a network that doesn't allow non"
|
||||
|
|
@ -8612,81 +6553,2164 @@ msgid_plural ""
|
|||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: mod/network.php:401
|
||||
#: mod/network.php:572
|
||||
msgid "Messages in this group won't be send to these receivers."
|
||||
msgstr ""
|
||||
msgstr "Les messages dans ce groupe ne seront pas envoyés à ces destinataires."
|
||||
|
||||
#: mod/network.php:529
|
||||
#: mod/network.php:640
|
||||
msgid "No such group"
|
||||
msgstr "Groupe inexistant"
|
||||
|
||||
#: mod/network.php:665
|
||||
#, php-format
|
||||
msgid "Group: %s"
|
||||
msgstr "Group : %s"
|
||||
|
||||
#: mod/network.php:692
|
||||
msgid "Private messages to this person are at risk of public disclosure."
|
||||
msgstr "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée."
|
||||
|
||||
#: mod/network.php:534
|
||||
#: mod/network.php:696
|
||||
msgid "Invalid contact."
|
||||
msgstr "Contact invalide."
|
||||
|
||||
#: mod/network.php:826
|
||||
#: mod/network.php:901
|
||||
msgid "Commented Order"
|
||||
msgstr "Tri par commentaires"
|
||||
|
||||
#: mod/network.php:829
|
||||
#: mod/network.php:904
|
||||
msgid "Sort by Comment Date"
|
||||
msgstr "Trier par date de commentaire"
|
||||
|
||||
#: mod/network.php:834
|
||||
#: mod/network.php:909
|
||||
msgid "Posted Order"
|
||||
msgstr "Tri des publications"
|
||||
|
||||
#: mod/network.php:837
|
||||
#: mod/network.php:912
|
||||
msgid "Sort by Post Date"
|
||||
msgstr "Trier par date de publication"
|
||||
|
||||
#: mod/network.php:848
|
||||
#: mod/network.php:920 mod/profiles.php:699
|
||||
#: src/Core/NotificationsManager.php:190
|
||||
msgid "Personal"
|
||||
msgstr "Personnel"
|
||||
|
||||
#: mod/network.php:923
|
||||
msgid "Posts that mention or involve you"
|
||||
msgstr "Publications qui vous concernent"
|
||||
|
||||
#: mod/network.php:856
|
||||
#: mod/network.php:931
|
||||
msgid "New"
|
||||
msgstr "Nouveau"
|
||||
|
||||
#: mod/network.php:859
|
||||
#: mod/network.php:934
|
||||
msgid "Activity Stream - by date"
|
||||
msgstr "Flux d'activités - par date"
|
||||
|
||||
#: mod/network.php:867
|
||||
#: mod/network.php:942
|
||||
msgid "Shared Links"
|
||||
msgstr "Liens partagés"
|
||||
|
||||
#: mod/network.php:870
|
||||
#: mod/network.php:945
|
||||
msgid "Interesting Links"
|
||||
msgstr "Liens intéressants"
|
||||
|
||||
#: mod/network.php:878
|
||||
#: mod/network.php:953
|
||||
msgid "Starred"
|
||||
msgstr "Mis en avant"
|
||||
|
||||
#: mod/network.php:881
|
||||
#: mod/network.php:956
|
||||
msgid "Favourite Posts"
|
||||
msgstr "Publications favorites"
|
||||
|
||||
#: mod/ping.php:261
|
||||
#: mod/newmember.php:8
|
||||
msgid "Welcome to Friendica"
|
||||
msgstr "Bienvenue sur Friendica"
|
||||
|
||||
#: mod/newmember.php:9
|
||||
msgid "New Member Checklist"
|
||||
msgstr "Checklist du nouvel utilisateur"
|
||||
|
||||
#: mod/newmember.php:11
|
||||
msgid ""
|
||||
"We would like to offer some tips and links to help make your experience "
|
||||
"enjoyable. Click any item to visit the relevant page. A link to this page "
|
||||
"will be visible from your home page for two weeks after your initial "
|
||||
"registration and then will quietly disappear."
|
||||
msgstr "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement."
|
||||
|
||||
#: mod/newmember.php:12
|
||||
msgid "Getting Started"
|
||||
msgstr "Bien démarrer"
|
||||
|
||||
#: mod/newmember.php:14
|
||||
msgid "Friendica Walk-Through"
|
||||
msgstr "Friendica pas-à-pas"
|
||||
|
||||
#: mod/newmember.php:14
|
||||
msgid ""
|
||||
"On your <em>Quick Start</em> page - find a brief introduction to your "
|
||||
"profile and network tabs, make some new connections, and find some groups to"
|
||||
" join."
|
||||
msgstr "Sur votre page d'accueil, dans <em>Conseils aux nouveaux venus</em> - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre."
|
||||
|
||||
#: mod/newmember.php:18
|
||||
msgid "Go to Your Settings"
|
||||
msgstr "Éditer vos Réglages"
|
||||
|
||||
#: mod/newmember.php:18
|
||||
msgid ""
|
||||
"On your <em>Settings</em> page - change your initial password. Also make a "
|
||||
"note of your Identity Address. This looks just like an email address - and "
|
||||
"will be useful in making friends on the free social web."
|
||||
msgstr "Sur la page des <em>Réglages</em> - changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre."
|
||||
|
||||
#: mod/newmember.php:19
|
||||
msgid ""
|
||||
"Review the other settings, particularly the privacy settings. An unpublished"
|
||||
" directory listing is like having an unlisted phone number. In general, you "
|
||||
"should probably publish your listing - unless all of your friends and "
|
||||
"potential friends know exactly how to find you."
|
||||
msgstr "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver."
|
||||
|
||||
#: mod/newmember.php:23 mod/profile_photo.php:259 mod/profiles.php:703
|
||||
msgid "Upload Profile Photo"
|
||||
msgstr "Téléverser une photo de profil"
|
||||
|
||||
#: mod/newmember.php:23
|
||||
msgid ""
|
||||
"Upload a profile photo if you have not done so already. Studies have shown "
|
||||
"that people with real photos of themselves are ten times more likely to make"
|
||||
" friends than people who do not."
|
||||
msgstr "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis."
|
||||
|
||||
#: mod/newmember.php:24
|
||||
msgid "Edit Your Profile"
|
||||
msgstr "Éditer votre Profil"
|
||||
|
||||
#: mod/newmember.php:24
|
||||
msgid ""
|
||||
"Edit your <strong>default</strong> profile to your liking. Review the "
|
||||
"settings for hiding your list of friends and hiding the profile from unknown"
|
||||
" visitors."
|
||||
msgstr "Éditez votre profil <strong>par défaut</strong> à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus."
|
||||
|
||||
#: mod/newmember.php:25
|
||||
msgid "Profile Keywords"
|
||||
msgstr "Mots-clés du profil"
|
||||
|
||||
#: mod/newmember.php:25
|
||||
msgid ""
|
||||
"Set some public keywords for your default profile which describe your "
|
||||
"interests. We may be able to find other people with similar interests and "
|
||||
"suggest friendships."
|
||||
msgstr "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent."
|
||||
|
||||
#: mod/newmember.php:27
|
||||
msgid "Connecting"
|
||||
msgstr "Connexions"
|
||||
|
||||
#: mod/newmember.php:33
|
||||
msgid "Importing Emails"
|
||||
msgstr "Importer courriels"
|
||||
|
||||
#: mod/newmember.php:33
|
||||
msgid ""
|
||||
"Enter your email access information on your Connector Settings page if you "
|
||||
"wish to import and interact with friends or mailing lists from your email "
|
||||
"INBOX"
|
||||
msgstr "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception."
|
||||
|
||||
#: mod/newmember.php:36
|
||||
msgid "Go to Your Contacts Page"
|
||||
msgstr "Consulter vos Contacts"
|
||||
|
||||
#: mod/newmember.php:36
|
||||
msgid ""
|
||||
"Your Contacts page is your gateway to managing friendships and connecting "
|
||||
"with friends on other networks. Typically you enter their address or site "
|
||||
"URL in the <em>Add New Contact</em> dialog."
|
||||
msgstr "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire <em>Ajouter un nouveau contact</em>."
|
||||
|
||||
#: mod/newmember.php:37
|
||||
msgid "Go to Your Site's Directory"
|
||||
msgstr "Consulter l'Annuaire de votre Site"
|
||||
|
||||
#: mod/newmember.php:37
|
||||
msgid ""
|
||||
"The Directory page lets you find other people in this network or other "
|
||||
"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
|
||||
"their profile page. Provide your own Identity Address if requested."
|
||||
msgstr "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien <em>Relier</em> ou <em>Suivre</em> sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité."
|
||||
|
||||
#: mod/newmember.php:38
|
||||
msgid "Finding New People"
|
||||
msgstr "Trouver de nouvelles personnes"
|
||||
|
||||
#: mod/newmember.php:38
|
||||
msgid ""
|
||||
"On the side panel of the Contacts page are several tools to find new "
|
||||
"friends. We can match people by interest, look up people by name or "
|
||||
"interest, and provide suggestions based on network relationships. On a brand"
|
||||
" new site, friend suggestions will usually begin to be populated within 24 "
|
||||
"hours."
|
||||
msgstr "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures."
|
||||
|
||||
#: mod/newmember.php:42
|
||||
msgid "Group Your Contacts"
|
||||
msgstr "Grouper vos contacts"
|
||||
|
||||
#: mod/newmember.php:42
|
||||
msgid ""
|
||||
"Once you have made some friends, organize them into private conversation "
|
||||
"groups from the sidebar of your Contacts page and then you can interact with"
|
||||
" each group privately on your Network page."
|
||||
msgstr "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau."
|
||||
|
||||
#: mod/newmember.php:45
|
||||
msgid "Why Aren't My Posts Public?"
|
||||
msgstr "Pourquoi mes éléments ne sont pas publics ?"
|
||||
|
||||
#: mod/newmember.php:45
|
||||
msgid ""
|
||||
"Friendica respects your privacy. By default, your posts will only show up to"
|
||||
" people you've added as friends. For more information, see the help section "
|
||||
"from the link above."
|
||||
msgstr "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus."
|
||||
|
||||
#: mod/newmember.php:49
|
||||
msgid "Getting Help"
|
||||
msgstr "Obtenir de l'aide"
|
||||
|
||||
#: mod/newmember.php:51
|
||||
msgid "Go to the Help Section"
|
||||
msgstr "Aller à la section Aide"
|
||||
|
||||
#: mod/newmember.php:51
|
||||
msgid ""
|
||||
"Our <strong>help</strong> pages may be consulted for detail on other program"
|
||||
" features and resources."
|
||||
msgstr "Nos pages d'<strong>aide</strong> peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources."
|
||||
|
||||
#: mod/nogroup.php:68
|
||||
msgid "Contacts who are not members of a group"
|
||||
msgstr "Contacts qui n’appartiennent à aucun groupe"
|
||||
|
||||
#: mod/notifications.php:39
|
||||
msgid "Invalid request identifier."
|
||||
msgstr "Identifiant de demande invalide."
|
||||
|
||||
#: mod/notifications.php:48 mod/notifications.php:184
|
||||
#: mod/notifications.php:231
|
||||
msgid "Discard"
|
||||
msgstr "Rejeter"
|
||||
|
||||
#: mod/notifications.php:109
|
||||
msgid "Network Notifications"
|
||||
msgstr "Notifications du réseau"
|
||||
|
||||
#: mod/notifications.php:115 mod/notify.php:73
|
||||
msgid "System Notifications"
|
||||
msgstr "Notifications du système"
|
||||
|
||||
#: mod/notifications.php:121
|
||||
msgid "Personal Notifications"
|
||||
msgstr "Notifications personnelles"
|
||||
|
||||
#: mod/notifications.php:127
|
||||
msgid "Home Notifications"
|
||||
msgstr "Notifications de page d'accueil"
|
||||
|
||||
#: mod/notifications.php:156
|
||||
msgid "Show Ignored Requests"
|
||||
msgstr "Voir les demandes ignorées"
|
||||
|
||||
#: mod/notifications.php:156
|
||||
msgid "Hide Ignored Requests"
|
||||
msgstr "Cacher les demandes ignorées"
|
||||
|
||||
#: mod/notifications.php:168 mod/notifications.php:238
|
||||
msgid "Notification type: "
|
||||
msgstr "Type de notification : "
|
||||
|
||||
#: mod/notifications.php:171
|
||||
#, php-format
|
||||
msgid "suggested by %s"
|
||||
msgstr "suggéré(e) par %s"
|
||||
|
||||
#: mod/notifications.php:177 mod/notifications.php:256
|
||||
msgid "Post a new friend activity"
|
||||
msgstr "Poster une nouvelle avtivité d'ami"
|
||||
|
||||
#: mod/notifications.php:177 mod/notifications.php:256
|
||||
msgid "if applicable"
|
||||
msgstr "si possible"
|
||||
|
||||
#: mod/notifications.php:199
|
||||
msgid "Claims to be known to you: "
|
||||
msgstr "Prétend que vous le connaissez : "
|
||||
|
||||
#: mod/notifications.php:200
|
||||
msgid "yes"
|
||||
msgstr "oui"
|
||||
|
||||
#: mod/notifications.php:200
|
||||
msgid "no"
|
||||
msgstr "non"
|
||||
|
||||
#: mod/notifications.php:201 mod/notifications.php:206
|
||||
msgid "Shall your connection be bidirectional or not?"
|
||||
msgstr "Souhaitez vous que votre connexion soit bi-directionnelle ?"
|
||||
|
||||
#: mod/notifications.php:202 mod/notifications.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
|
||||
"also receive updates from them in your news feed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:203
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
|
||||
" will not receive updates from them in your news feed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:208
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Accepting %s as a sharer allows them to subscribe to your posts, but you "
|
||||
"will not receive updates from them in your news feed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:219
|
||||
msgid "Friend"
|
||||
msgstr "Ami"
|
||||
|
||||
#: mod/notifications.php:220
|
||||
msgid "Sharer"
|
||||
msgstr "Initiateur du partage"
|
||||
|
||||
#: mod/notifications.php:220
|
||||
msgid "Subscriber"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:276
|
||||
msgid "No introductions."
|
||||
msgstr "Aucune demande d'introduction."
|
||||
|
||||
#: mod/notifications.php:317
|
||||
msgid "Show unread"
|
||||
msgstr "Afficher non-lus"
|
||||
|
||||
#: mod/notifications.php:317
|
||||
msgid "Show all"
|
||||
msgstr "Tout afficher"
|
||||
|
||||
#: mod/notifications.php:323
|
||||
#, php-format
|
||||
msgid "No more %s notifications."
|
||||
msgstr "Aucune notification de %s"
|
||||
|
||||
#: mod/notify.php:69
|
||||
msgid "No more system notifications."
|
||||
msgstr "Pas plus de notifications système."
|
||||
|
||||
#: mod/openid.php:27
|
||||
msgid "OpenID protocol error. No ID returned."
|
||||
msgstr "Erreur de protocole OpenID. Pas d'ID en retour."
|
||||
|
||||
#: mod/openid.php:63
|
||||
msgid ""
|
||||
"Account not found and OpenID registration is not permitted on this site."
|
||||
msgstr "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site."
|
||||
|
||||
#: mod/ostatus_subscribe.php:18
|
||||
msgid "Subscribing to OStatus contacts"
|
||||
msgstr "Inscription aux contacts OStatus"
|
||||
|
||||
#: mod/ostatus_subscribe.php:29
|
||||
msgid "No contact provided."
|
||||
msgstr "Pas de contact fourni."
|
||||
|
||||
#: mod/ostatus_subscribe.php:35
|
||||
msgid "Couldn't fetch information for contact."
|
||||
msgstr "Impossible de récupérer les informations pour ce contact."
|
||||
|
||||
#: mod/ostatus_subscribe.php:44
|
||||
msgid "Couldn't fetch friends for contact."
|
||||
msgstr "Impossible de récupérer les amis de ce contact."
|
||||
|
||||
#: mod/ostatus_subscribe.php:58 mod/repair_ostatus.php:46
|
||||
msgid "Done"
|
||||
msgstr "Terminé"
|
||||
|
||||
#: mod/ostatus_subscribe.php:72
|
||||
msgid "success"
|
||||
msgstr "réussite"
|
||||
|
||||
#: mod/ostatus_subscribe.php:74
|
||||
msgid "failed"
|
||||
msgstr "échec"
|
||||
|
||||
#: mod/ostatus_subscribe.php:77 src/Object/Item.php:276
|
||||
msgid "ignored"
|
||||
msgstr "ignoré"
|
||||
|
||||
#: mod/ostatus_subscribe.php:82 mod/repair_ostatus.php:52
|
||||
msgid "Keep this window open until done."
|
||||
msgstr "Veuillez garder cette fenêtre ouverte jusqu'à la fin."
|
||||
|
||||
#: mod/p.php:13
|
||||
msgid "Not Extended"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:100 mod/photos.php:1841
|
||||
msgid "Recent Photos"
|
||||
msgstr "Photos récentes"
|
||||
|
||||
#: mod/photos.php:103 mod/photos.php:1293 mod/photos.php:1843
|
||||
msgid "Upload New Photos"
|
||||
msgstr "Téléverser de nouvelles photos"
|
||||
|
||||
#: mod/photos.php:118 mod/settings.php:39
|
||||
msgid "everybody"
|
||||
msgstr "tout le monde"
|
||||
|
||||
#: mod/photos.php:182
|
||||
msgid "Contact information unavailable"
|
||||
msgstr "Informations de contact indisponibles"
|
||||
|
||||
#: mod/photos.php:203
|
||||
msgid "Album not found."
|
||||
msgstr "Album introuvable."
|
||||
|
||||
#: mod/photos.php:236 mod/photos.php:248 mod/photos.php:1242
|
||||
msgid "Delete Album"
|
||||
msgstr "Effacer l'album"
|
||||
|
||||
#: mod/photos.php:246
|
||||
msgid "Do you really want to delete this photo album and all its photos?"
|
||||
msgstr "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?"
|
||||
|
||||
#: mod/photos.php:329 mod/photos.php:340 mod/photos.php:1557
|
||||
msgid "Delete Photo"
|
||||
msgstr "Effacer la photo"
|
||||
|
||||
#: mod/photos.php:338
|
||||
msgid "Do you really want to delete this photo?"
|
||||
msgstr "Voulez-vous vraiment supprimer cette photo ?"
|
||||
|
||||
#: mod/photos.php:719
|
||||
#, php-format
|
||||
msgid "%1$s was tagged in %2$s by %3$s"
|
||||
msgstr "%1$s a été étiqueté dans %2$s par %3$s"
|
||||
|
||||
#: mod/photos.php:719
|
||||
msgid "a photo"
|
||||
msgstr "une photo"
|
||||
|
||||
#: mod/photos.php:819 mod/profile_photo.php:159 mod/wall_upload.php:183
|
||||
#, php-format
|
||||
msgid "Image exceeds size limit of %s"
|
||||
msgstr "L'image dépasse la taille limite de %s"
|
||||
|
||||
#: mod/photos.php:827
|
||||
msgid "Image file is empty."
|
||||
msgstr "Fichier image vide."
|
||||
|
||||
#: mod/photos.php:842 mod/profile_photo.php:168 mod/wall_upload.php:197
|
||||
msgid "Unable to process image."
|
||||
msgstr "Impossible de traiter l'image."
|
||||
|
||||
#: mod/photos.php:871 mod/profile_photo.php:318 mod/wall_upload.php:236
|
||||
msgid "Image upload failed."
|
||||
msgstr "Le téléversement de l'image a échoué."
|
||||
|
||||
#: mod/photos.php:976
|
||||
msgid "No photos selected"
|
||||
msgstr "Aucune photo sélectionnée"
|
||||
|
||||
#: mod/photos.php:1079 mod/videos.php:316
|
||||
msgid "Access to this item is restricted."
|
||||
msgstr "Accès restreint à cet élément."
|
||||
|
||||
#: mod/photos.php:1162
|
||||
msgid "Upload Photos"
|
||||
msgstr "Téléverser des photos"
|
||||
|
||||
#: mod/photos.php:1166 mod/photos.php:1237
|
||||
msgid "New album name: "
|
||||
msgstr "Nom du nouvel album : "
|
||||
|
||||
#: mod/photos.php:1167
|
||||
msgid "or existing album name: "
|
||||
msgstr "ou nom d'un album existant : "
|
||||
|
||||
#: mod/photos.php:1168
|
||||
msgid "Do not show a status post for this upload"
|
||||
msgstr "Ne pas publier de notice de statut pour cet envoi"
|
||||
|
||||
#: mod/photos.php:1179 mod/photos.php:1561 mod/settings.php:1291
|
||||
msgid "Show to Groups"
|
||||
msgstr "Montrer aux groupes"
|
||||
|
||||
#: mod/photos.php:1180 mod/photos.php:1562 mod/settings.php:1292
|
||||
msgid "Show to Contacts"
|
||||
msgstr "Montrer aux Contacts"
|
||||
|
||||
#: mod/photos.php:1181
|
||||
msgid "Private Photo"
|
||||
msgstr "Photo privée"
|
||||
|
||||
#: mod/photos.php:1182
|
||||
msgid "Public Photo"
|
||||
msgstr "Photo publique"
|
||||
|
||||
#: mod/photos.php:1248
|
||||
msgid "Edit Album"
|
||||
msgstr "Éditer l'album"
|
||||
|
||||
#: mod/photos.php:1253
|
||||
msgid "Show Newest First"
|
||||
msgstr "Plus récent d'abord"
|
||||
|
||||
#: mod/photos.php:1255
|
||||
msgid "Show Oldest First"
|
||||
msgstr "Plus ancien d'abord"
|
||||
|
||||
#: mod/photos.php:1279 mod/photos.php:1826
|
||||
msgid "View Photo"
|
||||
msgstr "Voir la photo"
|
||||
|
||||
#: mod/photos.php:1324
|
||||
msgid "Permission denied. Access to this item may be restricted."
|
||||
msgstr "Interdit. L'accès à cet élément peut avoir été restreint."
|
||||
|
||||
#: mod/photos.php:1326
|
||||
msgid "Photo not available"
|
||||
msgstr "Photo indisponible"
|
||||
|
||||
#: mod/photos.php:1387
|
||||
msgid "View photo"
|
||||
msgstr "Voir photo"
|
||||
|
||||
#: mod/photos.php:1387
|
||||
msgid "Edit photo"
|
||||
msgstr "Éditer la photo"
|
||||
|
||||
#: mod/photos.php:1388
|
||||
msgid "Use as profile photo"
|
||||
msgstr "Utiliser comme photo de profil"
|
||||
|
||||
#: mod/photos.php:1394 src/Object/Item.php:144
|
||||
msgid "Private Message"
|
||||
msgstr "Message privé"
|
||||
|
||||
#: mod/photos.php:1413
|
||||
msgid "View Full Size"
|
||||
msgstr "Voir en taille réelle"
|
||||
|
||||
#: mod/photos.php:1503
|
||||
msgid "Tags: "
|
||||
msgstr "Étiquettes :"
|
||||
|
||||
#: mod/photos.php:1506
|
||||
msgid "[Remove any tag]"
|
||||
msgstr "[Retirer toutes les étiquettes]"
|
||||
|
||||
#: mod/photos.php:1543
|
||||
msgid "New album name"
|
||||
msgstr "Nom du nouvel album"
|
||||
|
||||
#: mod/photos.php:1544
|
||||
msgid "Caption"
|
||||
msgstr "Titre"
|
||||
|
||||
#: mod/photos.php:1545
|
||||
msgid "Add a Tag"
|
||||
msgstr "Ajouter une étiquette"
|
||||
|
||||
#: mod/photos.php:1545
|
||||
msgid ""
|
||||
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
||||
msgstr "Exemples : @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances"
|
||||
|
||||
#: mod/photos.php:1546
|
||||
msgid "Do not rotate"
|
||||
msgstr "Pas de rotation"
|
||||
|
||||
#: mod/photos.php:1547
|
||||
msgid "Rotate CW (right)"
|
||||
msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)"
|
||||
|
||||
#: mod/photos.php:1548
|
||||
msgid "Rotate CCW (left)"
|
||||
msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)"
|
||||
|
||||
#: mod/photos.php:1563
|
||||
msgid "Private photo"
|
||||
msgstr "Photo privée"
|
||||
|
||||
#: mod/photos.php:1564
|
||||
msgid "Public photo"
|
||||
msgstr "Photo publique"
|
||||
|
||||
#: mod/photos.php:1584 src/Object/Item.php:294
|
||||
msgid "I like this (toggle)"
|
||||
msgstr "J'aime"
|
||||
|
||||
#: mod/photos.php:1585 src/Object/Item.php:295
|
||||
msgid "I don't like this (toggle)"
|
||||
msgstr "Je n'aime pas"
|
||||
|
||||
#: mod/photos.php:1602 mod/photos.php:1644 mod/photos.php:1718
|
||||
#: src/Object/Item.php:784
|
||||
msgid "This is you"
|
||||
msgstr "C'est vous"
|
||||
|
||||
#: mod/photos.php:1604 mod/photos.php:1646 mod/photos.php:1720
|
||||
#: src/Object/Item.php:391 src/Object/Item.php:786
|
||||
msgid "Comment"
|
||||
msgstr "Commenter"
|
||||
|
||||
#: mod/photos.php:1760
|
||||
msgid "Map"
|
||||
msgstr "Carte"
|
||||
|
||||
#: mod/photos.php:1832 mod/videos.php:394
|
||||
msgid "View Album"
|
||||
msgstr "Voir l'album"
|
||||
|
||||
#: mod/ping.php:287
|
||||
msgid "{0} wants to be your friend"
|
||||
msgstr "{0} souhaite être votre ami(e)"
|
||||
|
||||
#: mod/ping.php:276
|
||||
#: mod/ping.php:302
|
||||
msgid "{0} sent you a message"
|
||||
msgstr "{0} vous a envoyé un message"
|
||||
|
||||
#: mod/ping.php:291
|
||||
#: mod/ping.php:317
|
||||
msgid "{0} requested registration"
|
||||
msgstr "{0} a demandé à s'inscrire"
|
||||
|
||||
#: mod/viewcontacts.php:72
|
||||
#: mod/poke.php:200
|
||||
msgid "Poke/Prod"
|
||||
msgstr "Solliciter"
|
||||
|
||||
#: mod/poke.php:201
|
||||
msgid "poke, prod or do other things to somebody"
|
||||
msgstr "solliciter (poke/...) quelqu'un"
|
||||
|
||||
#: mod/poke.php:202
|
||||
msgid "Recipient"
|
||||
msgstr "Destinataire"
|
||||
|
||||
#: mod/poke.php:203
|
||||
msgid "Choose what you wish to do to recipient"
|
||||
msgstr "Choisissez ce que vous voulez faire au destinataire"
|
||||
|
||||
#: mod/poke.php:206
|
||||
msgid "Make this post private"
|
||||
msgstr "Rendez ce message privé"
|
||||
|
||||
#: mod/profile.php:182
|
||||
msgid "Tips for New Members"
|
||||
msgstr "Conseils aux nouveaux venus"
|
||||
|
||||
#: mod/profile_photo.php:48
|
||||
msgid "Image uploaded but image cropping failed."
|
||||
msgstr "Image envoyée, mais impossible de la retailler."
|
||||
|
||||
#: mod/profile_photo.php:81 mod/profile_photo.php:89 mod/profile_photo.php:97
|
||||
#: mod/profile_photo.php:326
|
||||
#, php-format
|
||||
msgid "Image size reduction [%s] failed."
|
||||
msgstr "Réduction de la taille de l'image [%s] échouée."
|
||||
|
||||
#: mod/profile_photo.php:131
|
||||
msgid ""
|
||||
"Shift-reload the page or clear browser cache if the new photo does not "
|
||||
"display immediately."
|
||||
msgstr "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement."
|
||||
|
||||
#: mod/profile_photo.php:140
|
||||
msgid "Unable to process image"
|
||||
msgstr "Impossible de traiter l'image"
|
||||
|
||||
#: mod/profile_photo.php:257
|
||||
msgid "Upload File:"
|
||||
msgstr "Fichier à téléverser :"
|
||||
|
||||
#: mod/profile_photo.php:258
|
||||
msgid "Select a profile:"
|
||||
msgstr "Choisir un profil :"
|
||||
|
||||
#: mod/profile_photo.php:260
|
||||
msgid "Upload"
|
||||
msgstr "Téléverser"
|
||||
|
||||
#: mod/profile_photo.php:263
|
||||
msgid "or"
|
||||
msgstr "ou"
|
||||
|
||||
#: mod/profile_photo.php:263
|
||||
msgid "skip this step"
|
||||
msgstr "ignorer cette étape"
|
||||
|
||||
#: mod/profile_photo.php:263
|
||||
msgid "select a photo from your photo albums"
|
||||
msgstr "choisissez une photo depuis vos albums"
|
||||
|
||||
#: mod/profile_photo.php:277
|
||||
msgid "Crop Image"
|
||||
msgstr "(Re)cadrer l'image"
|
||||
|
||||
#: mod/profile_photo.php:278
|
||||
msgid "Please adjust the image cropping for optimum viewing."
|
||||
msgstr "Ajustez le cadre de l'image pour une visualisation optimale."
|
||||
|
||||
#: mod/profile_photo.php:280
|
||||
msgid "Done Editing"
|
||||
msgstr "Édition terminée"
|
||||
|
||||
#: mod/profile_photo.php:316
|
||||
msgid "Image uploaded successfully."
|
||||
msgstr "Image téléversée avec succès."
|
||||
|
||||
#: mod/profiles.php:48
|
||||
msgid "Profile deleted."
|
||||
msgstr "Profil supprimé."
|
||||
|
||||
#: mod/profiles.php:64 mod/profiles.php:100
|
||||
msgid "Profile-"
|
||||
msgstr "Profil-"
|
||||
|
||||
#: mod/profiles.php:83 mod/profiles.php:122
|
||||
msgid "New profile created."
|
||||
msgstr "Nouveau profil créé."
|
||||
|
||||
#: mod/profiles.php:106
|
||||
msgid "Profile unavailable to clone."
|
||||
msgstr "Ce profil ne peut être cloné."
|
||||
|
||||
#: mod/profiles.php:196
|
||||
msgid "Profile Name is required."
|
||||
msgstr "Le nom du profil est requis."
|
||||
|
||||
#: mod/profiles.php:336
|
||||
msgid "Marital Status"
|
||||
msgstr "Statut marital"
|
||||
|
||||
#: mod/profiles.php:340
|
||||
msgid "Romantic Partner"
|
||||
msgstr "Partenaire / conjoint"
|
||||
|
||||
#: mod/profiles.php:352
|
||||
msgid "Work/Employment"
|
||||
msgstr "Travail / Occupation"
|
||||
|
||||
#: mod/profiles.php:355
|
||||
msgid "Religion"
|
||||
msgstr "Religion"
|
||||
|
||||
#: mod/profiles.php:359
|
||||
msgid "Political Views"
|
||||
msgstr "Tendance politique"
|
||||
|
||||
#: mod/profiles.php:363
|
||||
msgid "Gender"
|
||||
msgstr "Sexe"
|
||||
|
||||
#: mod/profiles.php:367
|
||||
msgid "Sexual Preference"
|
||||
msgstr "Préférence sexuelle"
|
||||
|
||||
#: mod/profiles.php:371
|
||||
msgid "XMPP"
|
||||
msgstr "XMPP"
|
||||
|
||||
#: mod/profiles.php:375
|
||||
msgid "Homepage"
|
||||
msgstr "Site internet"
|
||||
|
||||
#: mod/profiles.php:379 mod/profiles.php:698
|
||||
msgid "Interests"
|
||||
msgstr "Centres d'intérêt"
|
||||
|
||||
#: mod/profiles.php:383
|
||||
msgid "Address"
|
||||
msgstr "Adresse"
|
||||
|
||||
#: mod/profiles.php:390 mod/profiles.php:694
|
||||
msgid "Location"
|
||||
msgstr "Localisation"
|
||||
|
||||
#: mod/profiles.php:475
|
||||
msgid "Profile updated."
|
||||
msgstr "Profil mis à jour."
|
||||
|
||||
#: mod/profiles.php:567
|
||||
msgid " and "
|
||||
msgstr " et "
|
||||
|
||||
#: mod/profiles.php:576
|
||||
msgid "public profile"
|
||||
msgstr "profil public"
|
||||
|
||||
#: mod/profiles.php:579
|
||||
#, php-format
|
||||
msgid "%1$s changed %2$s to “%3$s”"
|
||||
msgstr "%1$s a changé %2$s en “%3$s”"
|
||||
|
||||
#: mod/profiles.php:580
|
||||
#, php-format
|
||||
msgid " - Visit %1$s's %2$s"
|
||||
msgstr "Visiter le %2$s de %1$s"
|
||||
|
||||
#: mod/profiles.php:582
|
||||
#, php-format
|
||||
msgid "%1$s has an updated %2$s, changing %3$s."
|
||||
msgstr "%1$s a mis à jour son %2$s, en modifiant %3$s."
|
||||
|
||||
#: mod/profiles.php:640
|
||||
msgid "Hide contacts and friends:"
|
||||
msgstr "Cacher mes contacts et amis :"
|
||||
|
||||
#: mod/profiles.php:645
|
||||
msgid "Hide your contact/friend list from viewers of this profile?"
|
||||
msgstr "Cacher ma liste d'amis / contacts des visiteurs de ce profil ?"
|
||||
|
||||
#: mod/profiles.php:670
|
||||
msgid "Show more profile fields:"
|
||||
msgstr "Afficher plus d'infos de profil :"
|
||||
|
||||
#: mod/profiles.php:682
|
||||
msgid "Profile Actions"
|
||||
msgstr "Actions de Profil"
|
||||
|
||||
#: mod/profiles.php:683
|
||||
msgid "Edit Profile Details"
|
||||
msgstr "Éditer les détails du profil"
|
||||
|
||||
#: mod/profiles.php:685
|
||||
msgid "Change Profile Photo"
|
||||
msgstr "Changer la photo du profil"
|
||||
|
||||
#: mod/profiles.php:686
|
||||
msgid "View this profile"
|
||||
msgstr "Voir ce profil"
|
||||
|
||||
#: mod/profiles.php:688
|
||||
msgid "Create a new profile using these settings"
|
||||
msgstr "Créer un nouveau profil en utilisant ces réglages"
|
||||
|
||||
#: mod/profiles.php:689
|
||||
msgid "Clone this profile"
|
||||
msgstr "Cloner ce profil"
|
||||
|
||||
#: mod/profiles.php:690
|
||||
msgid "Delete this profile"
|
||||
msgstr "Supprimer ce profil"
|
||||
|
||||
#: mod/profiles.php:692
|
||||
msgid "Basic information"
|
||||
msgstr "Information de base"
|
||||
|
||||
#: mod/profiles.php:693
|
||||
msgid "Profile picture"
|
||||
msgstr "Image de profil"
|
||||
|
||||
#: mod/profiles.php:695
|
||||
msgid "Preferences"
|
||||
msgstr "Préférences"
|
||||
|
||||
#: mod/profiles.php:696
|
||||
msgid "Status information"
|
||||
msgstr "Information sur le statut"
|
||||
|
||||
#: mod/profiles.php:697
|
||||
msgid "Additional information"
|
||||
msgstr "Information additionnelle"
|
||||
|
||||
#: mod/profiles.php:700
|
||||
msgid "Relation"
|
||||
msgstr "Relation"
|
||||
|
||||
#: mod/profiles.php:704
|
||||
msgid "Your Gender:"
|
||||
msgstr "Votre genre :"
|
||||
|
||||
#: mod/profiles.php:705
|
||||
msgid "<span class=\"heart\">♥</span> Marital Status:"
|
||||
msgstr "<span class=\"heart\">♥</span> Statut marital :"
|
||||
|
||||
#: mod/profiles.php:707
|
||||
msgid "Example: fishing photography software"
|
||||
msgstr "Exemple : football dessin programmation"
|
||||
|
||||
#: mod/profiles.php:712
|
||||
msgid "Profile Name:"
|
||||
msgstr "Nom du profil :"
|
||||
|
||||
#: mod/profiles.php:714
|
||||
msgid ""
|
||||
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
|
||||
"be visible to anybody using the internet."
|
||||
msgstr "Ceci est votre profil <strong>public</strong>.<br />Il <strong>peut</strong> être visible par n'importe quel utilisateur d'Internet."
|
||||
|
||||
#: mod/profiles.php:715
|
||||
msgid "Your Full Name:"
|
||||
msgstr "Votre nom complet :"
|
||||
|
||||
#: mod/profiles.php:716
|
||||
msgid "Title/Description:"
|
||||
msgstr "Titre / Description :"
|
||||
|
||||
#: mod/profiles.php:719
|
||||
msgid "Street Address:"
|
||||
msgstr "Adresse postale :"
|
||||
|
||||
#: mod/profiles.php:720
|
||||
msgid "Locality/City:"
|
||||
msgstr "Ville :"
|
||||
|
||||
#: mod/profiles.php:721
|
||||
msgid "Region/State:"
|
||||
msgstr "Région / État :"
|
||||
|
||||
#: mod/profiles.php:722
|
||||
msgid "Postal/Zip Code:"
|
||||
msgstr "Code postal :"
|
||||
|
||||
#: mod/profiles.php:723
|
||||
msgid "Country:"
|
||||
msgstr "Pays :"
|
||||
|
||||
#: mod/profiles.php:727
|
||||
msgid "Who: (if applicable)"
|
||||
msgstr "Qui : (si pertinent)"
|
||||
|
||||
#: mod/profiles.php:727
|
||||
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
|
||||
msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com"
|
||||
|
||||
#: mod/profiles.php:728
|
||||
msgid "Since [date]:"
|
||||
msgstr "Depuis [date] :"
|
||||
|
||||
#: mod/profiles.php:730
|
||||
msgid "Tell us about yourself..."
|
||||
msgstr "Parlez-nous de vous..."
|
||||
|
||||
#: mod/profiles.php:731
|
||||
msgid "XMPP (Jabber) address:"
|
||||
msgstr "Adresse XMPP (Jabber) :"
|
||||
|
||||
#: mod/profiles.php:731
|
||||
msgid ""
|
||||
"The XMPP address will be propagated to your contacts so that they can follow"
|
||||
" you."
|
||||
msgstr "Votre adresse XMPP sera transmise à vos contacts pour qu'ils puissent vous suivre."
|
||||
|
||||
#: mod/profiles.php:732
|
||||
msgid "Homepage URL:"
|
||||
msgstr "Page personnelle :"
|
||||
|
||||
#: mod/profiles.php:735
|
||||
msgid "Religious Views:"
|
||||
msgstr "Opinions religieuses :"
|
||||
|
||||
#: mod/profiles.php:736
|
||||
msgid "Public Keywords:"
|
||||
msgstr "Mots-clés publics :"
|
||||
|
||||
#: mod/profiles.php:736
|
||||
msgid "(Used for suggesting potential friends, can be seen by others)"
|
||||
msgstr "(Utilisés pour vous suggérer des amis potentiels. Ils peuvent être vus par autrui)"
|
||||
|
||||
#: mod/profiles.php:737
|
||||
msgid "Private Keywords:"
|
||||
msgstr "Mots-clés privés :"
|
||||
|
||||
#: mod/profiles.php:737
|
||||
msgid "(Used for searching profiles, never shown to others)"
|
||||
msgstr "(Utilisés pour rechercher des profils. Ils ne seront jamais montrés à autrui)"
|
||||
|
||||
#: mod/profiles.php:740
|
||||
msgid "Musical interests"
|
||||
msgstr "Goûts musicaux"
|
||||
|
||||
#: mod/profiles.php:741
|
||||
msgid "Books, literature"
|
||||
msgstr "Lectures"
|
||||
|
||||
#: mod/profiles.php:742
|
||||
msgid "Television"
|
||||
msgstr "Télévision"
|
||||
|
||||
#: mod/profiles.php:743
|
||||
msgid "Film/dance/culture/entertainment"
|
||||
msgstr "Cinéma / Danse / Culture / Divertissement"
|
||||
|
||||
#: mod/profiles.php:744
|
||||
msgid "Hobbies/Interests"
|
||||
msgstr "Passe-temps / Centres d'intérêt"
|
||||
|
||||
#: mod/profiles.php:745
|
||||
msgid "Love/romance"
|
||||
msgstr "Amour / Romance"
|
||||
|
||||
#: mod/profiles.php:746
|
||||
msgid "Work/employment"
|
||||
msgstr "Activité professionnelle / Occupation"
|
||||
|
||||
#: mod/profiles.php:747
|
||||
msgid "School/education"
|
||||
msgstr "Études / Formation"
|
||||
|
||||
#: mod/profiles.php:748
|
||||
msgid "Contact information and Social Networks"
|
||||
msgstr "Coordonnées / Réseaux sociaux"
|
||||
|
||||
#: mod/profiles.php:788
|
||||
msgid "Edit/Manage Profiles"
|
||||
msgstr "Editer / gérer les profils"
|
||||
|
||||
#: mod/profperm.php:31 mod/profperm.php:60
|
||||
msgid "Invalid profile identifier."
|
||||
msgstr "Identifiant de profil invalide."
|
||||
|
||||
#: mod/profperm.php:106
|
||||
msgid "Profile Visibility Editor"
|
||||
msgstr "Éditer la visibilité du profil"
|
||||
|
||||
#: mod/profperm.php:119
|
||||
msgid "Visible To"
|
||||
msgstr "Visible par"
|
||||
|
||||
#: mod/profperm.php:135
|
||||
msgid "All Contacts (with secure profile access)"
|
||||
msgstr "Tous les contacts (ayant un accès sécurisé)"
|
||||
|
||||
#: mod/register.php:100
|
||||
msgid ""
|
||||
"Registration successful. Please check your email for further instructions."
|
||||
msgstr "Inscription réussie. Vérifiez vos emails pour la suite des instructions."
|
||||
|
||||
#: mod/register.php:105
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Failed to send email message. Here your accout details:<br> login: %s<br> "
|
||||
"password: %s<br><br>You can change your password after login."
|
||||
msgstr "Impossible d’envoyer le courriel de confirmation. Voici vos informations de connexion:<br> identifiant : %s<br> mot de passe : %s<br><br>Vous pourrez changer votre mot de passe une fois connecté."
|
||||
|
||||
#: mod/register.php:112
|
||||
msgid "Registration successful."
|
||||
msgstr "Inscription réussie."
|
||||
|
||||
#: mod/register.php:118
|
||||
msgid "Your registration can not be processed."
|
||||
msgstr "Votre inscription ne peut être traitée."
|
||||
|
||||
#: mod/register.php:167
|
||||
msgid "Your registration is pending approval by the site owner."
|
||||
msgstr "Votre inscription attend une validation du propriétaire du site."
|
||||
|
||||
#: mod/register.php:205 mod/uimport.php:54
|
||||
msgid ""
|
||||
"This site has exceeded the number of allowed daily account registrations. "
|
||||
"Please try again tomorrow."
|
||||
msgstr "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain."
|
||||
|
||||
#: mod/register.php:233
|
||||
msgid ""
|
||||
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
|
||||
"and clicking 'Register'."
|
||||
msgstr "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\"."
|
||||
|
||||
#: mod/register.php:234
|
||||
msgid ""
|
||||
"If you are not familiar with OpenID, please leave that field blank and fill "
|
||||
"in the rest of the items."
|
||||
msgstr "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste."
|
||||
|
||||
#: mod/register.php:235
|
||||
msgid "Your OpenID (optional): "
|
||||
msgstr "Votre OpenID (facultatif): "
|
||||
|
||||
#: mod/register.php:249
|
||||
msgid "Include your profile in member directory?"
|
||||
msgstr "Inclure votre profil dans l'annuaire des membres?"
|
||||
|
||||
#: mod/register.php:274
|
||||
msgid "Note for the admin"
|
||||
msgstr "Commentaire pour l'administrateur"
|
||||
|
||||
#: mod/register.php:274
|
||||
msgid "Leave a message for the admin, why you want to join this node"
|
||||
msgstr "Indiquez à l'administrateur les raisons de votre inscription à cette instance."
|
||||
|
||||
#: mod/register.php:275
|
||||
msgid "Membership on this site is by invitation only."
|
||||
msgstr "L'inscription à ce site se fait uniquement sur invitation."
|
||||
|
||||
#: mod/register.php:276
|
||||
msgid "Your invitation ID: "
|
||||
msgstr "Votre ID d'invitation : "
|
||||
|
||||
#: mod/register.php:287
|
||||
msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
|
||||
msgstr "Votre nom complet (p. ex. Michel Dupont):"
|
||||
|
||||
#: mod/register.php:288
|
||||
msgid ""
|
||||
"Your Email Address: (Initial information will be send there, so this has to "
|
||||
"be an existing address.)"
|
||||
msgstr "Votre courriel : (Des informations de connexion vont être envoyées à cette adresse; elle doit exister)."
|
||||
|
||||
#: mod/register.php:290 mod/settings.php:1262
|
||||
msgid "New Password:"
|
||||
msgstr "Nouveau mot de passe :"
|
||||
|
||||
#: mod/register.php:290
|
||||
msgid "Leave empty for an auto generated password."
|
||||
msgstr "Laisser ce champ libre pour obtenir un mot de passe généré automatiquement."
|
||||
|
||||
#: mod/register.php:291 mod/settings.php:1263
|
||||
msgid "Confirm:"
|
||||
msgstr "Confirmer :"
|
||||
|
||||
#: mod/register.php:292
|
||||
msgid ""
|
||||
"Choose a profile nickname. This must begin with a text character. Your "
|
||||
"profile address on this site will then be "
|
||||
"'<strong>nickname@$sitename</strong>'."
|
||||
msgstr "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '<strong>pseudo@$sitename</strong>'."
|
||||
|
||||
#: mod/register.php:293
|
||||
msgid "Choose a nickname: "
|
||||
msgstr "Choisir un pseudo : "
|
||||
|
||||
#: mod/register.php:302 mod/uimport.php:69
|
||||
msgid "Import"
|
||||
msgstr "Importer"
|
||||
|
||||
#: mod/register.php:303
|
||||
msgid "Import your profile to this friendica instance"
|
||||
msgstr "Importer votre profile dans cette instance de friendica"
|
||||
|
||||
#: mod/regmod.php:64
|
||||
msgid "Account approved."
|
||||
msgstr "Inscription validée."
|
||||
|
||||
#: mod/regmod.php:92
|
||||
#, php-format
|
||||
msgid "Registration revoked for %s"
|
||||
msgstr "Inscription révoquée pour %s"
|
||||
|
||||
#: mod/regmod.php:104
|
||||
msgid "Please login."
|
||||
msgstr "Merci de vous connecter."
|
||||
|
||||
#: mod/removeme.php:55 mod/removeme.php:58
|
||||
msgid "Remove My Account"
|
||||
msgstr "Supprimer mon compte"
|
||||
|
||||
#: mod/removeme.php:56
|
||||
msgid ""
|
||||
"This will completely remove your account. Once this has been done it is not "
|
||||
"recoverable."
|
||||
msgstr "Ceci supprimera totalement votre compte. Cette opération est irréversible."
|
||||
|
||||
#: mod/removeme.php:57
|
||||
msgid "Please enter your password for verification:"
|
||||
msgstr "Merci de saisir votre mot de passe pour vérification :"
|
||||
|
||||
#: mod/repair_ostatus.php:16
|
||||
msgid "Resubscribing to OStatus contacts"
|
||||
msgstr "Réinscription aux contacts OStatus"
|
||||
|
||||
#: mod/repair_ostatus.php:32
|
||||
msgid "Error"
|
||||
msgstr "Erreur"
|
||||
|
||||
#: mod/search.php:99
|
||||
msgid "Only logged in users are permitted to perform a search."
|
||||
msgstr "Seuls les utilisateurs inscrits sont autorisés à lancer une recherche."
|
||||
|
||||
#: mod/search.php:123
|
||||
msgid "Too Many Requests"
|
||||
msgstr "Trop de requêtes"
|
||||
|
||||
#: mod/search.php:124
|
||||
msgid "Only one search per minute is permitted for not logged in users."
|
||||
msgstr "Une seule recherche par minute pour les utilisateurs qui ne sont pas connectés."
|
||||
|
||||
#: mod/search.php:224
|
||||
#, php-format
|
||||
msgid "Items tagged with: %s"
|
||||
msgstr "Éléments taggés %s"
|
||||
|
||||
#: mod/settings.php:63
|
||||
msgid "Display"
|
||||
msgstr "Afficher"
|
||||
|
||||
#: mod/settings.php:70 mod/settings.php:900
|
||||
msgid "Social Networks"
|
||||
msgstr "Réseaux sociaux"
|
||||
|
||||
#: mod/settings.php:91
|
||||
msgid "Connected apps"
|
||||
msgstr "Applications connectées"
|
||||
|
||||
#: mod/settings.php:98 mod/uexport.php:48
|
||||
msgid "Export personal data"
|
||||
msgstr "Exporter"
|
||||
|
||||
#: mod/settings.php:105
|
||||
msgid "Remove account"
|
||||
msgstr "Supprimer le compte"
|
||||
|
||||
#: mod/settings.php:160
|
||||
msgid "Missing some important data!"
|
||||
msgstr "Il manque certaines informations importantes!"
|
||||
|
||||
#: mod/settings.php:270
|
||||
msgid "Failed to connect with email account using the settings provided."
|
||||
msgstr "Impossible de se connecter au compte courriel configuré."
|
||||
|
||||
#: mod/settings.php:275
|
||||
msgid "Email settings updated."
|
||||
msgstr "Réglages de courriel mis-à-jour."
|
||||
|
||||
#: mod/settings.php:291
|
||||
msgid "Features updated"
|
||||
msgstr "Fonctionnalités mises à jour"
|
||||
|
||||
#: mod/settings.php:364
|
||||
msgid "Relocate message has been send to your contacts"
|
||||
msgstr "Un message de relocalisation a été envoyé à vos contacts."
|
||||
|
||||
#: mod/settings.php:383
|
||||
msgid "Empty passwords are not allowed. Password unchanged."
|
||||
msgstr "Les mots de passe vides sont interdits. Aucun changement appliqué."
|
||||
|
||||
#: mod/settings.php:391
|
||||
msgid "Wrong password."
|
||||
msgstr "Mauvais mot de passe."
|
||||
|
||||
#: mod/settings.php:402
|
||||
msgid "Password changed."
|
||||
msgstr "Mots de passe changés."
|
||||
|
||||
#: mod/settings.php:404
|
||||
msgid "Password update failed. Please try again."
|
||||
msgstr "Le changement de mot de passe a échoué. Merci de recommencer."
|
||||
|
||||
#: mod/settings.php:494
|
||||
msgid " Please use a shorter name."
|
||||
msgstr " Merci d'utiliser un nom plus court."
|
||||
|
||||
#: mod/settings.php:497
|
||||
msgid " Name too short."
|
||||
msgstr " Nom trop court."
|
||||
|
||||
#: mod/settings.php:507
|
||||
msgid "Wrong Password"
|
||||
msgstr "Mauvais mot de passe"
|
||||
|
||||
#: mod/settings.php:512
|
||||
msgid " Not valid email."
|
||||
msgstr " Email invalide."
|
||||
|
||||
#: mod/settings.php:519
|
||||
msgid " Cannot change to that email."
|
||||
msgstr " Impossible de changer pour cet email."
|
||||
|
||||
#: mod/settings.php:575
|
||||
msgid "Private forum has no privacy permissions. Using default privacy group."
|
||||
msgstr "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut."
|
||||
|
||||
#: mod/settings.php:578
|
||||
msgid "Private forum has no privacy permissions and no default privacy group."
|
||||
msgstr "Ce forum privé n'a pas de paramètres de vie privée ni de paramètres de confidentialité par défaut."
|
||||
|
||||
#: mod/settings.php:618
|
||||
msgid "Settings updated."
|
||||
msgstr "Réglages mis à jour."
|
||||
|
||||
#: mod/settings.php:695 mod/settings.php:721 mod/settings.php:757
|
||||
msgid "Add application"
|
||||
msgstr "Ajouter une application"
|
||||
|
||||
#: mod/settings.php:699 mod/settings.php:725
|
||||
msgid "Consumer Key"
|
||||
msgstr "Clé utilisateur"
|
||||
|
||||
#: mod/settings.php:700 mod/settings.php:726
|
||||
msgid "Consumer Secret"
|
||||
msgstr "Secret utilisateur"
|
||||
|
||||
#: mod/settings.php:701 mod/settings.php:727
|
||||
msgid "Redirect"
|
||||
msgstr "Rediriger"
|
||||
|
||||
#: mod/settings.php:702 mod/settings.php:728
|
||||
msgid "Icon url"
|
||||
msgstr "URL de l'icône"
|
||||
|
||||
#: mod/settings.php:713
|
||||
msgid "You can't edit this application."
|
||||
msgstr "Vous ne pouvez pas éditer cette application."
|
||||
|
||||
#: mod/settings.php:756
|
||||
msgid "Connected Apps"
|
||||
msgstr "Applications connectées"
|
||||
|
||||
#: mod/settings.php:758 src/Object/Item.php:149 src/Object/Item.php:151
|
||||
msgid "Edit"
|
||||
msgstr "Éditer"
|
||||
|
||||
#: mod/settings.php:760
|
||||
msgid "Client key starts with"
|
||||
msgstr "La clé cliente commence par"
|
||||
|
||||
#: mod/settings.php:761
|
||||
msgid "No name"
|
||||
msgstr "Sans nom"
|
||||
|
||||
#: mod/settings.php:762
|
||||
msgid "Remove authorization"
|
||||
msgstr "Révoquer l'autorisation"
|
||||
|
||||
#: mod/settings.php:774
|
||||
msgid "No Plugin settings configured"
|
||||
msgstr "Pas de réglages d'extensions configurés"
|
||||
|
||||
#: mod/settings.php:783
|
||||
msgid "Plugin Settings"
|
||||
msgstr "Extensions"
|
||||
|
||||
#: mod/settings.php:805
|
||||
msgid "Additional Features"
|
||||
msgstr "Fonctions supplémentaires"
|
||||
|
||||
#: mod/settings.php:815 mod/settings.php:819
|
||||
msgid "General Social Media Settings"
|
||||
msgstr "Paramètres généraux des réseaux sociaux"
|
||||
|
||||
#: mod/settings.php:825
|
||||
msgid "Disable intelligent shortening"
|
||||
msgstr "Désactiver la réduction d'URL"
|
||||
|
||||
#: mod/settings.php:827
|
||||
msgid ""
|
||||
"Normally the system tries to find the best link to add to shortened posts. "
|
||||
"If this option is enabled then every shortened post will always point to the"
|
||||
" original friendica post."
|
||||
msgstr "Normalement, le système tente de trouver le meilleur lien à ajouter aux publications raccourcies. Si cette option est activée, les publications raccourcies dirigeront toujours vers leur publication d'origine sur Friendica."
|
||||
|
||||
#: mod/settings.php:833
|
||||
msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
|
||||
msgstr "Suivre automatiquement ceux qui me suivent ou me mentionnent sur GNU Social (OStatus)"
|
||||
|
||||
#: mod/settings.php:835
|
||||
msgid ""
|
||||
"If you receive a message from an unknown OStatus user, this option decides "
|
||||
"what to do. If it is checked, a new contact will be created for every "
|
||||
"unknown user."
|
||||
msgstr "Si vous recevez un message d'un utilisateur OStatus inconnu, cette option détermine ce qui sera fait. Si elle est cochée, un nouveau contact sera créé pour chaque utilisateur inconnu."
|
||||
|
||||
#: mod/settings.php:841
|
||||
msgid "Default group for OStatus contacts"
|
||||
msgstr "Groupe par défaut pour les contacts OStatus"
|
||||
|
||||
#: mod/settings.php:849
|
||||
msgid "Your legacy GNU Social account"
|
||||
msgstr "Le compte GNU Social que vous avez déjà"
|
||||
|
||||
#: mod/settings.php:851
|
||||
msgid ""
|
||||
"If you enter your old GNU Social/Statusnet account name here (in the format "
|
||||
"user@domain.tld), your contacts will be added automatically. The field will "
|
||||
"be emptied when done."
|
||||
msgstr "Si vous entrez le nom de votre ancien compte GNU Social / StatusNet ici (utiliser le format utilisateur@domaine.tld), vos contacts seront ajoutés automatiquement. Le champ sera vidé lorsque ce sera terminé."
|
||||
|
||||
#: mod/settings.php:854
|
||||
msgid "Repair OStatus subscriptions"
|
||||
msgstr "Réparer les abonnements OStatus"
|
||||
|
||||
#: mod/settings.php:863 mod/settings.php:864
|
||||
#, php-format
|
||||
msgid "Built-in support for %s connectivity is %s"
|
||||
msgstr "Le support natif pour la connectivité %s est %s"
|
||||
|
||||
#: mod/settings.php:863 mod/settings.php:864
|
||||
msgid "enabled"
|
||||
msgstr "activé"
|
||||
|
||||
#: mod/settings.php:863 mod/settings.php:864
|
||||
msgid "disabled"
|
||||
msgstr "désactivé"
|
||||
|
||||
#: mod/settings.php:864
|
||||
msgid "GNU Social (OStatus)"
|
||||
msgstr "GNU Social (OStatus)"
|
||||
|
||||
#: mod/settings.php:895
|
||||
msgid "Email access is disabled on this site."
|
||||
msgstr "L'accès courriel est désactivé sur ce site."
|
||||
|
||||
#: mod/settings.php:905
|
||||
msgid "Email/Mailbox Setup"
|
||||
msgstr "Réglages de courriel/boîte à lettre"
|
||||
|
||||
#: mod/settings.php:906
|
||||
msgid ""
|
||||
"If you wish to communicate with email contacts using this service "
|
||||
"(optional), please specify how to connect to your mailbox."
|
||||
msgstr "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte."
|
||||
|
||||
#: mod/settings.php:907
|
||||
msgid "Last successful email check:"
|
||||
msgstr "Dernière vérification réussie des courriels :"
|
||||
|
||||
#: mod/settings.php:909
|
||||
msgid "IMAP server name:"
|
||||
msgstr "Nom du serveur IMAP :"
|
||||
|
||||
#: mod/settings.php:910
|
||||
msgid "IMAP port:"
|
||||
msgstr "Port IMAP :"
|
||||
|
||||
#: mod/settings.php:911
|
||||
msgid "Security:"
|
||||
msgstr "Sécurité :"
|
||||
|
||||
#: mod/settings.php:911 mod/settings.php:916
|
||||
msgid "None"
|
||||
msgstr "Aucun(e)"
|
||||
|
||||
#: mod/settings.php:912
|
||||
msgid "Email login name:"
|
||||
msgstr "Nom de connexion :"
|
||||
|
||||
#: mod/settings.php:913
|
||||
msgid "Email password:"
|
||||
msgstr "Mot de passe :"
|
||||
|
||||
#: mod/settings.php:914
|
||||
msgid "Reply-to address:"
|
||||
msgstr "Adresse de réponse :"
|
||||
|
||||
#: mod/settings.php:915
|
||||
msgid "Send public posts to all email contacts:"
|
||||
msgstr "Envoyer les publications publiques à tous les contacts courriels :"
|
||||
|
||||
#: mod/settings.php:916
|
||||
msgid "Action after import:"
|
||||
msgstr "Action après import :"
|
||||
|
||||
#: mod/settings.php:916
|
||||
msgid "Move to folder"
|
||||
msgstr "Déplacer vers"
|
||||
|
||||
#: mod/settings.php:917
|
||||
msgid "Move to folder:"
|
||||
msgstr "Déplacer vers :"
|
||||
|
||||
#: mod/settings.php:1004
|
||||
msgid "Display Settings"
|
||||
msgstr "Affichage"
|
||||
|
||||
#: mod/settings.php:1010 mod/settings.php:1034
|
||||
msgid "Display Theme:"
|
||||
msgstr "Thème d'affichage:"
|
||||
|
||||
#: mod/settings.php:1011
|
||||
msgid "Mobile Theme:"
|
||||
msgstr "Thème mobile:"
|
||||
|
||||
#: mod/settings.php:1012
|
||||
msgid "Suppress warning of insecure networks"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1012
|
||||
msgid ""
|
||||
"Should the system suppress the warning that the current group contains "
|
||||
"members of networks that can't receive non public postings."
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1013
|
||||
msgid "Update browser every xx seconds"
|
||||
msgstr "Mettre-à-jour l'affichage toutes les xx secondes"
|
||||
|
||||
#: mod/settings.php:1013
|
||||
msgid "Minimum of 10 seconds. Enter -1 to disable it."
|
||||
msgstr "Minimum de 10 secondes. Saisir -1 pour désactiver."
|
||||
|
||||
#: mod/settings.php:1014
|
||||
msgid "Number of items to display per page:"
|
||||
msgstr "Nombre d’éléments par page:"
|
||||
|
||||
#: mod/settings.php:1014 mod/settings.php:1015
|
||||
msgid "Maximum of 100 items"
|
||||
msgstr "Maximum de 100 éléments"
|
||||
|
||||
#: mod/settings.php:1015
|
||||
msgid "Number of items to display per page when viewed from mobile device:"
|
||||
msgstr "Nombre d'éléments a afficher par page pour un appareil mobile"
|
||||
|
||||
#: mod/settings.php:1016
|
||||
msgid "Don't show emoticons"
|
||||
msgstr "Ne pas afficher les émoticônes (smileys grahiques)"
|
||||
|
||||
#: mod/settings.php:1017
|
||||
msgid "Calendar"
|
||||
msgstr "Calendrier"
|
||||
|
||||
#: mod/settings.php:1018
|
||||
msgid "Beginning of week:"
|
||||
msgstr "Début de la semaine :"
|
||||
|
||||
#: mod/settings.php:1019
|
||||
msgid "Don't show notices"
|
||||
msgstr "Ne plus afficher les avis"
|
||||
|
||||
#: mod/settings.php:1020
|
||||
msgid "Infinite scroll"
|
||||
msgstr "Défilement infini"
|
||||
|
||||
#: mod/settings.php:1021
|
||||
msgid "Automatic updates only at the top of the network page"
|
||||
msgstr "Mises à jour automatiques seulement en haut de la page du réseau."
|
||||
|
||||
#: mod/settings.php:1021
|
||||
msgid ""
|
||||
"When disabled, the network page is updated all the time, which could be "
|
||||
"confusing while reading."
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1022
|
||||
msgid "Bandwith Saver Mode"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1022
|
||||
msgid ""
|
||||
"When enabled, embedded content is not displayed on automatic updates, they "
|
||||
"only show on page reload."
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1023
|
||||
msgid "Smart Threading"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1023
|
||||
msgid ""
|
||||
"When enabled, suppress extraneous thread indentation while keeping it where "
|
||||
"it matters. Only works if threading is available and enabled."
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1025
|
||||
msgid "General Theme Settings"
|
||||
msgstr "Paramètres généraux de thème"
|
||||
|
||||
#: mod/settings.php:1026
|
||||
msgid "Custom Theme Settings"
|
||||
msgstr "Paramètres personnalisés de thème"
|
||||
|
||||
#: mod/settings.php:1027
|
||||
msgid "Content Settings"
|
||||
msgstr "Paramètres de contenu"
|
||||
|
||||
#: mod/settings.php:1028 view/theme/duepuntozero/config.php:69
|
||||
#: view/theme/frio/config.php:110 view/theme/quattro/config.php:75
|
||||
#: view/theme/vier/config.php:119
|
||||
msgid "Theme settings"
|
||||
msgstr "Réglages du thème graphique"
|
||||
|
||||
#: mod/settings.php:1094
|
||||
msgid "Account Types"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1095
|
||||
msgid "Personal Page Subtypes"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1096
|
||||
msgid "Community Forum Subtypes"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1103
|
||||
msgid "Personal Page"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1104
|
||||
msgid "Account for a personal profile."
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1107
|
||||
msgid "Organisation Page"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1108
|
||||
msgid ""
|
||||
"Account for an organisation that automatically approves contact requests as "
|
||||
"\"Followers\"."
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1111
|
||||
msgid "News Page"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1112
|
||||
msgid ""
|
||||
"Account for a news reflector that automatically approves contact requests as"
|
||||
" \"Followers\"."
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1115
|
||||
msgid "Community Forum"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1116
|
||||
msgid "Account for community discussions."
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1119
|
||||
msgid "Normal Account Page"
|
||||
msgstr "Compte normal"
|
||||
|
||||
#: mod/settings.php:1120
|
||||
msgid ""
|
||||
"Account for a regular personal profile that requires manual approval of "
|
||||
"\"Friends\" and \"Followers\"."
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1123
|
||||
msgid "Soapbox Page"
|
||||
msgstr "Compte \"boîte à savon\""
|
||||
|
||||
#: mod/settings.php:1124
|
||||
msgid ""
|
||||
"Account for a public profile that automatically approves contact requests as"
|
||||
" \"Followers\"."
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1127
|
||||
msgid "Public Forum"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1128
|
||||
msgid "Automatically approves all contact requests."
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1131
|
||||
msgid "Automatic Friend Page"
|
||||
msgstr "Compte d'\"amitié automatique\""
|
||||
|
||||
#: mod/settings.php:1132
|
||||
msgid ""
|
||||
"Account for a popular profile that automatically approves contact requests "
|
||||
"as \"Friends\"."
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1135
|
||||
msgid "Private Forum [Experimental]"
|
||||
msgstr "Forum privé [expérimental]"
|
||||
|
||||
#: mod/settings.php:1136
|
||||
msgid "Requires manual approval of contact requests."
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1147
|
||||
msgid "OpenID:"
|
||||
msgstr "OpenID:"
|
||||
|
||||
#: mod/settings.php:1147
|
||||
msgid "(Optional) Allow this OpenID to login to this account."
|
||||
msgstr "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte."
|
||||
|
||||
#: mod/settings.php:1155
|
||||
msgid "Publish your default profile in your local site directory?"
|
||||
msgstr "Publier votre profil par défaut sur l'annuaire local de ce site ?"
|
||||
|
||||
#: mod/settings.php:1155
|
||||
msgid "Your profile may be visible in public."
|
||||
msgstr "Votre profil peut être accessible publiquement."
|
||||
|
||||
#: mod/settings.php:1161
|
||||
msgid "Publish your default profile in the global social directory?"
|
||||
msgstr "Publier votre profil par défaut sur l'annuaire global ?"
|
||||
|
||||
#: mod/settings.php:1168
|
||||
msgid "Hide your contact/friend list from viewers of your default profile?"
|
||||
msgstr "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?"
|
||||
|
||||
#: mod/settings.php:1172
|
||||
msgid ""
|
||||
"If enabled, posting public messages to Diaspora and other networks isn't "
|
||||
"possible."
|
||||
msgstr "Si activé, il est impossible de publier les messages publics sur Diaspora et autres réseaux."
|
||||
|
||||
#: mod/settings.php:1177
|
||||
msgid "Allow friends to post to your profile page?"
|
||||
msgstr "Autoriser vos amis à publier sur votre profil ?"
|
||||
|
||||
#: mod/settings.php:1182
|
||||
msgid "Allow friends to tag your posts?"
|
||||
msgstr "Autoriser vos amis à étiqueter vos publications?"
|
||||
|
||||
#: mod/settings.php:1187
|
||||
msgid "Allow us to suggest you as a potential friend to new members?"
|
||||
msgstr "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?"
|
||||
|
||||
#: mod/settings.php:1192
|
||||
msgid "Permit unknown people to send you private mail?"
|
||||
msgstr "Autoriser les messages privés d'inconnus?"
|
||||
|
||||
#: mod/settings.php:1200
|
||||
msgid "Profile is <strong>not published</strong>."
|
||||
msgstr "Ce profil n'est <strong>pas publié</strong>."
|
||||
|
||||
#: mod/settings.php:1208
|
||||
#, php-format
|
||||
msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
|
||||
msgstr "L’adresse de votre profil est <strong>'%s'</strong> ou '%s'."
|
||||
|
||||
#: mod/settings.php:1215
|
||||
msgid "Automatically expire posts after this many days:"
|
||||
msgstr "Les publications expirent automatiquement après (en jours) :"
|
||||
|
||||
#: mod/settings.php:1215
|
||||
msgid "If empty, posts will not expire. Expired posts will be deleted"
|
||||
msgstr "Si ce champ est vide, les publications n'expireront pas. Les publications expirées seront supprimées"
|
||||
|
||||
#: mod/settings.php:1216
|
||||
msgid "Advanced expiration settings"
|
||||
msgstr "Réglages avancés de l'expiration"
|
||||
|
||||
#: mod/settings.php:1217
|
||||
msgid "Advanced Expiration"
|
||||
msgstr "Expiration (avancé)"
|
||||
|
||||
#: mod/settings.php:1218
|
||||
msgid "Expire posts:"
|
||||
msgstr "Faire expirer les publications :"
|
||||
|
||||
#: mod/settings.php:1219
|
||||
msgid "Expire personal notes:"
|
||||
msgstr "Faire expirer les notes personnelles :"
|
||||
|
||||
#: mod/settings.php:1220
|
||||
msgid "Expire starred posts:"
|
||||
msgstr "Faire expirer les publications marqués :"
|
||||
|
||||
#: mod/settings.php:1221
|
||||
msgid "Expire photos:"
|
||||
msgstr "Faire expirer les photos :"
|
||||
|
||||
#: mod/settings.php:1222
|
||||
msgid "Only expire posts by others:"
|
||||
msgstr "Faire expirer seulement les publications des autres:"
|
||||
|
||||
#: mod/settings.php:1253
|
||||
msgid "Account Settings"
|
||||
msgstr "Compte"
|
||||
|
||||
#: mod/settings.php:1261
|
||||
msgid "Password Settings"
|
||||
msgstr "Réglages de mot de passe"
|
||||
|
||||
#: mod/settings.php:1263
|
||||
msgid "Leave password fields blank unless changing"
|
||||
msgstr "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer"
|
||||
|
||||
#: mod/settings.php:1264
|
||||
msgid "Current Password:"
|
||||
msgstr "Mot de passe actuel :"
|
||||
|
||||
#: mod/settings.php:1264 mod/settings.php:1265
|
||||
msgid "Your current password to confirm the changes"
|
||||
msgstr "Votre mot de passe actuel pour confirmer les modifications"
|
||||
|
||||
#: mod/settings.php:1265
|
||||
msgid "Password:"
|
||||
msgstr "Mot de passe :"
|
||||
|
||||
#: mod/settings.php:1269
|
||||
msgid "Basic Settings"
|
||||
msgstr "Réglages basiques"
|
||||
|
||||
#: mod/settings.php:1271
|
||||
msgid "Email Address:"
|
||||
msgstr "Adresse courriel :"
|
||||
|
||||
#: mod/settings.php:1272
|
||||
msgid "Your Timezone:"
|
||||
msgstr "Votre fuseau horaire :"
|
||||
|
||||
#: mod/settings.php:1273
|
||||
msgid "Your Language:"
|
||||
msgstr "Votre langue :"
|
||||
|
||||
#: mod/settings.php:1273
|
||||
msgid ""
|
||||
"Set the language we use to show you friendica interface and to send you "
|
||||
"emails"
|
||||
msgstr "Détermine la langue que nous utilisons pour afficher votre interface Friendica et pour vous envoyer des courriels"
|
||||
|
||||
#: mod/settings.php:1274
|
||||
msgid "Default Post Location:"
|
||||
msgstr "Emplacement de publication par défaut:"
|
||||
|
||||
#: mod/settings.php:1275
|
||||
msgid "Use Browser Location:"
|
||||
msgstr "Utiliser la localisation géographique du navigateur:"
|
||||
|
||||
#: mod/settings.php:1278
|
||||
msgid "Security and Privacy Settings"
|
||||
msgstr "Réglages de sécurité et vie privée"
|
||||
|
||||
#: mod/settings.php:1280
|
||||
msgid "Maximum Friend Requests/Day:"
|
||||
msgstr "Nombre maximal de requêtes d'amitié par jour :"
|
||||
|
||||
#: mod/settings.php:1280 mod/settings.php:1310
|
||||
msgid "(to prevent spam abuse)"
|
||||
msgstr "(pour limiter l'impact du spam)"
|
||||
|
||||
#: mod/settings.php:1281
|
||||
msgid "Default Post Permissions"
|
||||
msgstr "Permissions de publication par défaut"
|
||||
|
||||
#: mod/settings.php:1282
|
||||
msgid "(click to open/close)"
|
||||
msgstr "(cliquer pour ouvrir/fermer)"
|
||||
|
||||
#: mod/settings.php:1293
|
||||
msgid "Default Private Post"
|
||||
msgstr "Message privé par défaut"
|
||||
|
||||
#: mod/settings.php:1294
|
||||
msgid "Default Public Post"
|
||||
msgstr "Message publique par défaut"
|
||||
|
||||
#: mod/settings.php:1298
|
||||
msgid "Default Permissions for New Posts"
|
||||
msgstr "Permissions par défaut pour les nouvelles publications"
|
||||
|
||||
#: mod/settings.php:1310
|
||||
msgid "Maximum private messages per day from unknown people:"
|
||||
msgstr "Maximum de messages privés d'inconnus par jour :"
|
||||
|
||||
#: mod/settings.php:1313
|
||||
msgid "Notification Settings"
|
||||
msgstr "Réglages de notification"
|
||||
|
||||
#: mod/settings.php:1314
|
||||
msgid "By default post a status message when:"
|
||||
msgstr "Par défaut, poster un message quand :"
|
||||
|
||||
#: mod/settings.php:1315
|
||||
msgid "accepting a friend request"
|
||||
msgstr "Vous acceptez un ami"
|
||||
|
||||
#: mod/settings.php:1316
|
||||
msgid "joining a forum/community"
|
||||
msgstr "Vous rejoignez un forum/une communauté"
|
||||
|
||||
#: mod/settings.php:1317
|
||||
msgid "making an <em>interesting</em> profile change"
|
||||
msgstr "Vous faites une modification <em>intéressante</em> de votre profil"
|
||||
|
||||
#: mod/settings.php:1318
|
||||
msgid "Send a notification email when:"
|
||||
msgstr "Envoyer un courriel de notification quand:"
|
||||
|
||||
#: mod/settings.php:1319
|
||||
msgid "You receive an introduction"
|
||||
msgstr "Vous recevez une introduction"
|
||||
|
||||
#: mod/settings.php:1320
|
||||
msgid "Your introductions are confirmed"
|
||||
msgstr "Vos introductions sont confirmées"
|
||||
|
||||
#: mod/settings.php:1321
|
||||
msgid "Someone writes on your profile wall"
|
||||
msgstr "Quelqu'un écrit sur votre mur"
|
||||
|
||||
#: mod/settings.php:1322
|
||||
msgid "Someone writes a followup comment"
|
||||
msgstr "Quelqu'un vous commente"
|
||||
|
||||
#: mod/settings.php:1323
|
||||
msgid "You receive a private message"
|
||||
msgstr "Vous recevez un message privé"
|
||||
|
||||
#: mod/settings.php:1324
|
||||
msgid "You receive a friend suggestion"
|
||||
msgstr "Vous avez reçu une suggestion d'ami"
|
||||
|
||||
#: mod/settings.php:1325
|
||||
msgid "You are tagged in a post"
|
||||
msgstr "Vous avez été étiqueté dans une publication"
|
||||
|
||||
#: mod/settings.php:1326
|
||||
msgid "You are poked/prodded/etc. in a post"
|
||||
msgstr "Vous avez été sollicité dans une publication"
|
||||
|
||||
#: mod/settings.php:1328
|
||||
msgid "Activate desktop notifications"
|
||||
msgstr "Activer les notifications de bureau"
|
||||
|
||||
#: mod/settings.php:1328
|
||||
msgid "Show desktop popup on new notifications"
|
||||
msgstr "Afficher dans des pop-ups les nouvelles notifications"
|
||||
|
||||
#: mod/settings.php:1330
|
||||
msgid "Text-only notification emails"
|
||||
msgstr "Courriels de notification en format texte"
|
||||
|
||||
#: mod/settings.php:1332
|
||||
msgid "Send text only notification emails, without the html part"
|
||||
msgstr "Envoyer le texte des courriels de notification, sans la composante html"
|
||||
|
||||
#: mod/settings.php:1334
|
||||
msgid "Show detailled notifications"
|
||||
msgstr "Notifications détaillées"
|
||||
|
||||
#: mod/settings.php:1336
|
||||
msgid ""
|
||||
"Per default the notificiation are condensed to a single notification per "
|
||||
"item. When enabled, every notification is displayed."
|
||||
msgstr "Par défaut, les notifications sont regroupées en une seule notification par item. Si cette fonction est activée, chaque notification est affichée."
|
||||
|
||||
#: mod/settings.php:1338
|
||||
msgid "Advanced Account/Page Type Settings"
|
||||
msgstr "Paramètres avancés de compte/page"
|
||||
|
||||
#: mod/settings.php:1339
|
||||
msgid "Change the behaviour of this account for special situations"
|
||||
msgstr "Modifier le comportement de ce compte dans certaines situations"
|
||||
|
||||
#: mod/settings.php:1342
|
||||
msgid "Relocate"
|
||||
msgstr "Relocaliser"
|
||||
|
||||
#: mod/settings.php:1343
|
||||
msgid ""
|
||||
"If you have moved this profile from another server, and some of your "
|
||||
"contacts don't receive your updates, try pushing this button."
|
||||
msgstr "Si vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton."
|
||||
|
||||
#: mod/settings.php:1344
|
||||
msgid "Resend relocate message to contacts"
|
||||
msgstr "Renvoyer un message de relocalisation aux contacts."
|
||||
|
||||
#: mod/subthread.php:107
|
||||
#, php-format
|
||||
msgid "%1$s is following %2$s's %3$s"
|
||||
msgstr "%1$s suit les %3$s de %2$s"
|
||||
|
||||
#: mod/suggest.php:34
|
||||
msgid "Do you really want to delete this suggestion?"
|
||||
msgstr "Voulez-vous vraiment supprimer cette suggestion ?"
|
||||
|
||||
#: mod/suggest.php:75
|
||||
msgid ""
|
||||
"No suggestions available. If this is a new site, please try again in 24 "
|
||||
"hours."
|
||||
msgstr "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h."
|
||||
|
||||
#: mod/suggest.php:88 mod/suggest.php:108
|
||||
msgid "Ignore/Hide"
|
||||
msgstr "Ignorer/cacher"
|
||||
|
||||
#: mod/tagrm.php:47
|
||||
msgid "Tag removed"
|
||||
msgstr "Étiquette supprimée"
|
||||
|
||||
#: mod/tagrm.php:86
|
||||
msgid "Remove Item Tag"
|
||||
msgstr "Enlever l'étiquette de l'élément"
|
||||
|
||||
#: mod/tagrm.php:88
|
||||
msgid "Select a tag to remove: "
|
||||
msgstr "Sélectionner une étiquette à supprimer :"
|
||||
|
||||
#: mod/uexport.php:40
|
||||
msgid "Export account"
|
||||
msgstr "Exporter le compte"
|
||||
|
||||
#: mod/uexport.php:40
|
||||
msgid ""
|
||||
"Export your account info and contacts. Use this to make a backup of your "
|
||||
"account and/or to move it to another server."
|
||||
msgstr "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur."
|
||||
|
||||
#: mod/uexport.php:41
|
||||
msgid "Export all"
|
||||
msgstr "Tout exporter"
|
||||
|
||||
#: mod/uexport.php:41
|
||||
msgid ""
|
||||
"Export your accout info, contacts and all your items as json. Could be a "
|
||||
"very big file, and could take a lot of time. Use this to make a full backup "
|
||||
"of your account (photos are not exported)"
|
||||
msgstr "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos)."
|
||||
|
||||
#: mod/uimport.php:71
|
||||
msgid "Move account"
|
||||
msgstr "Migrer le compte"
|
||||
|
||||
#: mod/uimport.php:72
|
||||
msgid "You can import an account from another Friendica server."
|
||||
msgstr "Vous pouvez importer un compte d'un autre serveur Friendica."
|
||||
|
||||
#: mod/uimport.php:73
|
||||
msgid ""
|
||||
"You need to export your account from the old server and upload it here. We "
|
||||
"will recreate your old account here with all your contacts. We will try also"
|
||||
" to inform your friends that you moved here."
|
||||
msgstr "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici."
|
||||
|
||||
#: mod/uimport.php:74
|
||||
msgid ""
|
||||
"This feature is experimental. We can't import contacts from the OStatus "
|
||||
"network (GNU Social/Statusnet) or from Diaspora"
|
||||
msgstr "Cette fonctionalité est expérimentale. Il n'est pas possible d'importer des contacts depuis le réseau OStatus (GNU Social/Statusnet) ou depuis Diaspora."
|
||||
|
||||
#: mod/uimport.php:75
|
||||
msgid "Account file"
|
||||
msgstr "Fichier du compte"
|
||||
|
||||
#: mod/uimport.php:75
|
||||
msgid ""
|
||||
"To export your account, go to \"Settings->Export your personal data\" and "
|
||||
"select \"Export account\""
|
||||
msgstr "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\""
|
||||
|
||||
#: mod/unfollow.php:33
|
||||
msgid "Contact wasn't found or can't be unfollowed."
|
||||
msgstr "Le contact n'a pas été trouvé ou ne peut pas être suivi."
|
||||
|
||||
#: mod/unfollow.php:46
|
||||
msgid "Contact unfollowed"
|
||||
msgstr ""
|
||||
|
||||
#: mod/unfollow.php:72
|
||||
msgid "You aren't a friend of this contact."
|
||||
msgstr "Vous n'êtes pas amis avec ce contact."
|
||||
|
||||
#: mod/unfollow.php:78
|
||||
msgid "Unfollowing is currently not supported by your network."
|
||||
msgstr ""
|
||||
|
||||
#: mod/update_community.php:22 mod/update_display.php:26
|
||||
#: mod/update_network.php:30 mod/update_notes.php:39 mod/update_profile.php:38
|
||||
msgid "[Embedded content - reload page to view]"
|
||||
msgstr "[contenu incorporé - rechargez la page pour le voir]"
|
||||
|
||||
#: mod/videos.php:131
|
||||
msgid "Do you really want to delete this video?"
|
||||
msgstr "Voulez-vous vraiment supprimer cette vidéo?"
|
||||
|
||||
#: mod/videos.php:136
|
||||
msgid "Delete Video"
|
||||
msgstr "Supprimer la vidéo"
|
||||
|
||||
#: mod/videos.php:215
|
||||
msgid "No videos selected"
|
||||
msgstr "Pas de vidéo sélectionné"
|
||||
|
||||
#: mod/videos.php:403
|
||||
msgid "Recent Videos"
|
||||
msgstr "Vidéos récente"
|
||||
|
||||
#: mod/videos.php:405
|
||||
msgid "Upload New Videos"
|
||||
msgstr "Téléversé une nouvelle vidéo"
|
||||
|
||||
#: mod/viewcontacts.php:80
|
||||
msgid "No contacts."
|
||||
msgstr "Aucun contact."
|
||||
|
||||
#: object/Item.php:370
|
||||
msgid "via"
|
||||
msgstr "via"
|
||||
#: mod/viewsrc.php:9
|
||||
msgid "Access denied."
|
||||
msgstr "Accès refusé."
|
||||
|
||||
#: mod/wall_attach.php:21 mod/wall_attach.php:29 mod/wall_attach.php:80
|
||||
#: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112
|
||||
#: mod/wall_upload.php:152 mod/wall_upload.php:155
|
||||
msgid "Invalid request."
|
||||
msgstr "Requête invalide."
|
||||
|
||||
#: mod/wall_attach.php:98
|
||||
msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
|
||||
msgstr "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise"
|
||||
|
||||
#: mod/wall_attach.php:98
|
||||
msgid "Or - did you try to upload an empty file?"
|
||||
msgstr "Ou — auriez-vous essayé de télécharger un fichier vide ?"
|
||||
|
||||
#: mod/wall_attach.php:109
|
||||
#, php-format
|
||||
msgid "File exceeds size limit of %s"
|
||||
msgstr "La taille du fichier dépasse la limite de %s"
|
||||
|
||||
#: mod/wall_attach.php:133 mod/wall_attach.php:149
|
||||
msgid "File upload failed."
|
||||
msgstr "Le téléversement a échoué."
|
||||
|
||||
#: mod/wallmessage.php:46 mod/wallmessage.php:110
|
||||
#, php-format
|
||||
msgid "Number of daily wall messages for %s exceeded. Message failed."
|
||||
msgstr "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message."
|
||||
|
||||
#: mod/wallmessage.php:57
|
||||
msgid "Unable to check your home location."
|
||||
msgstr "Impossible de vérifier votre localisation."
|
||||
|
||||
#: mod/wallmessage.php:84 mod/wallmessage.php:93
|
||||
msgid "No recipient."
|
||||
msgstr "Pas de destinataire."
|
||||
|
||||
#: mod/wallmessage.php:131
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you wish for %s to respond, please check that the privacy settings on "
|
||||
"your site allow private mail from unknown senders."
|
||||
msgstr "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus."
|
||||
|
||||
#: view/theme/duepuntozero/config.php:50
|
||||
msgid "greenzero"
|
||||
msgstr "greenzero"
|
||||
|
||||
#: view/theme/duepuntozero/config.php:51
|
||||
msgid "purplezero"
|
||||
msgstr "purplezero"
|
||||
|
||||
#: view/theme/duepuntozero/config.php:52
|
||||
msgid "easterbunny"
|
||||
msgstr "easterbunny"
|
||||
|
||||
#: view/theme/duepuntozero/config.php:53
|
||||
msgid "darkzero"
|
||||
msgstr "darkzero"
|
||||
|
||||
#: view/theme/duepuntozero/config.php:54
|
||||
msgid "comix"
|
||||
msgstr "comix"
|
||||
|
||||
#: view/theme/duepuntozero/config.php:55
|
||||
msgid "slackr"
|
||||
msgstr "slackr"
|
||||
|
||||
#: view/theme/duepuntozero/config.php:70
|
||||
msgid "Variations"
|
||||
msgstr "Variations"
|
||||
|
||||
#: view/theme/frio/php/Image.php:23
|
||||
msgid "Repeat the image"
|
||||
|
|
@ -8720,195 +8744,401 @@ msgstr "Maintenir l'aspect sans couper"
|
|||
msgid "Resize to best fit and retain aspect ratio."
|
||||
msgstr "Redimensionne en conservant l'aspect sans couper."
|
||||
|
||||
#: view/theme/frio/config.php:42
|
||||
#: view/theme/frio/config.php:92
|
||||
msgid "Default"
|
||||
msgstr "Défaut"
|
||||
|
||||
#: view/theme/frio/config.php:54
|
||||
msgid "Note: "
|
||||
msgstr "Note: "
|
||||
#: view/theme/frio/config.php:104
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/config.php:54
|
||||
#: view/theme/frio/config.php:104
|
||||
msgid "Check image permissions if all users are allowed to visit the image"
|
||||
msgstr "Vérifiez que tous les utilisateurs du site sont autorisé à accéder à l'image."
|
||||
|
||||
#: view/theme/frio/config.php:62
|
||||
#: view/theme/frio/config.php:111
|
||||
msgid "Select scheme"
|
||||
msgstr "Sélectionnez la palette"
|
||||
|
||||
#: view/theme/frio/config.php:63
|
||||
#: view/theme/frio/config.php:112
|
||||
msgid "Navigation bar background color"
|
||||
msgstr "Couleur d'arrière-plan de la barre de navigation"
|
||||
|
||||
#: view/theme/frio/config.php:64
|
||||
#: view/theme/frio/config.php:113
|
||||
msgid "Navigation bar icon color "
|
||||
msgstr "Couleur des icônes de la barre de navigation"
|
||||
|
||||
#: view/theme/frio/config.php:65
|
||||
#: view/theme/frio/config.php:114
|
||||
msgid "Link color"
|
||||
msgstr "Couleur des liens"
|
||||
|
||||
#: view/theme/frio/config.php:66
|
||||
#: view/theme/frio/config.php:115
|
||||
msgid "Set the background color"
|
||||
msgstr "Couleur d'arrière-plan"
|
||||
|
||||
#: view/theme/frio/config.php:67
|
||||
#: view/theme/frio/config.php:116
|
||||
msgid "Content background transparency"
|
||||
msgstr "Opacité de l'arrière-plan du contenu"
|
||||
|
||||
#: view/theme/frio/config.php:68
|
||||
#: view/theme/frio/config.php:117
|
||||
msgid "Set the background image"
|
||||
msgstr "Image d'arrière-plan"
|
||||
|
||||
#: view/theme/frio/theme.php:229
|
||||
#: view/theme/frio/theme.php:234
|
||||
msgid "Guest"
|
||||
msgstr "Invité"
|
||||
|
||||
#: view/theme/frio/theme.php:235
|
||||
#: view/theme/frio/theme.php:240
|
||||
msgid "Visitor"
|
||||
msgstr "Visiteur"
|
||||
|
||||
#: view/theme/quattro/config.php:67
|
||||
#: view/theme/quattro/config.php:76
|
||||
msgid "Alignment"
|
||||
msgstr "Alignement"
|
||||
|
||||
#: view/theme/quattro/config.php:67
|
||||
#: view/theme/quattro/config.php:76
|
||||
msgid "Left"
|
||||
msgstr "Gauche"
|
||||
|
||||
#: view/theme/quattro/config.php:67
|
||||
#: view/theme/quattro/config.php:76
|
||||
msgid "Center"
|
||||
msgstr "Centre"
|
||||
|
||||
#: view/theme/quattro/config.php:68
|
||||
#: view/theme/quattro/config.php:77
|
||||
msgid "Color scheme"
|
||||
msgstr "Palette de couleurs"
|
||||
|
||||
#: view/theme/quattro/config.php:69
|
||||
#: view/theme/quattro/config.php:78
|
||||
msgid "Posts font size"
|
||||
msgstr "Taille de texte des publications"
|
||||
|
||||
#: view/theme/quattro/config.php:70
|
||||
#: view/theme/quattro/config.php:79
|
||||
msgid "Textareas font size"
|
||||
msgstr "Taille de police des zones de texte"
|
||||
|
||||
#: view/theme/vier/theme.php:152 view/theme/vier/config.php:112
|
||||
msgid "Community Profiles"
|
||||
msgstr "Profils communautaires"
|
||||
|
||||
#: view/theme/vier/theme.php:181 view/theme/vier/config.php:116
|
||||
msgid "Last users"
|
||||
msgstr "Derniers utilisateurs"
|
||||
|
||||
#: view/theme/vier/theme.php:199 view/theme/vier/config.php:115
|
||||
msgid "Find Friends"
|
||||
msgstr "Trouver des amis"
|
||||
|
||||
#: view/theme/vier/theme.php:200
|
||||
msgid "Local Directory"
|
||||
msgstr "Annuaire local"
|
||||
|
||||
#: view/theme/vier/theme.php:291
|
||||
msgid "Quick Start"
|
||||
msgstr "Démarrage rapide"
|
||||
|
||||
#: view/theme/vier/theme.php:373 view/theme/vier/config.php:114
|
||||
msgid "Connect Services"
|
||||
msgstr "Connecter des services"
|
||||
|
||||
#: view/theme/vier/config.php:64
|
||||
#: view/theme/vier/config.php:73
|
||||
msgid "Comma separated list of helper forums"
|
||||
msgstr "Liste de forums d'aide, séparés par des virgules"
|
||||
|
||||
#: view/theme/vier/config.php:110
|
||||
#: view/theme/vier/config.php:120
|
||||
msgid "Set style"
|
||||
msgstr "Définir le style"
|
||||
|
||||
#: view/theme/vier/config.php:111
|
||||
#: view/theme/vier/config.php:121
|
||||
msgid "Community Pages"
|
||||
msgstr "Pages de Communauté"
|
||||
|
||||
#: view/theme/vier/config.php:113
|
||||
#: view/theme/vier/config.php:122 view/theme/vier/theme.php:147
|
||||
msgid "Community Profiles"
|
||||
msgstr "Profils communautaires"
|
||||
|
||||
#: view/theme/vier/config.php:123
|
||||
msgid "Help or @NewHere ?"
|
||||
msgstr "Aide ou @NewHere?"
|
||||
|
||||
#: view/theme/duepuntozero/config.php:45
|
||||
msgid "greenzero"
|
||||
msgstr "greenzero"
|
||||
#: view/theme/vier/config.php:124 view/theme/vier/theme.php:385
|
||||
msgid "Connect Services"
|
||||
msgstr "Connecter des services"
|
||||
|
||||
#: view/theme/duepuntozero/config.php:46
|
||||
msgid "purplezero"
|
||||
msgstr "purplezero"
|
||||
#: view/theme/vier/config.php:125 view/theme/vier/theme.php:195
|
||||
msgid "Find Friends"
|
||||
msgstr "Trouver des amis"
|
||||
|
||||
#: view/theme/duepuntozero/config.php:47
|
||||
msgid "easterbunny"
|
||||
msgstr "easterbunny"
|
||||
#: view/theme/vier/config.php:126 view/theme/vier/theme.php:177
|
||||
msgid "Last users"
|
||||
msgstr "Derniers utilisateurs"
|
||||
|
||||
#: view/theme/duepuntozero/config.php:48
|
||||
msgid "darkzero"
|
||||
msgstr "darkzero"
|
||||
#: view/theme/vier/theme.php:196
|
||||
msgid "Local Directory"
|
||||
msgstr "Annuaire local"
|
||||
|
||||
#: view/theme/duepuntozero/config.php:49
|
||||
msgid "comix"
|
||||
msgstr "comix"
|
||||
#: view/theme/vier/theme.php:251 src/Content/ForumManager.php:123
|
||||
msgid "External link to forum"
|
||||
msgstr "Lien sortant vers le forum"
|
||||
|
||||
#: view/theme/duepuntozero/config.php:50
|
||||
msgid "slackr"
|
||||
msgstr "slackr"
|
||||
#: view/theme/vier/theme.php:285
|
||||
msgid "Quick Start"
|
||||
msgstr "Démarrage rapide"
|
||||
|
||||
#: view/theme/duepuntozero/config.php:62
|
||||
msgid "Variations"
|
||||
msgstr "Variations"
|
||||
#: src/Core/NotificationsManager.php:176
|
||||
msgid "System"
|
||||
msgstr "Système"
|
||||
|
||||
#: boot.php:970
|
||||
#: src/Core/NotificationsManager.php:261 src/Core/NotificationsManager.php:273
|
||||
#, php-format
|
||||
msgid "%s commented on %s's post"
|
||||
msgstr "%s a commenté la publication de %s"
|
||||
|
||||
#: src/Core/NotificationsManager.php:272
|
||||
#, php-format
|
||||
msgid "%s created a new post"
|
||||
msgstr "%s a créé une nouvelle publication"
|
||||
|
||||
#: src/Core/NotificationsManager.php:286
|
||||
#, php-format
|
||||
msgid "%s liked %s's post"
|
||||
msgstr "%s a aimé la publication de %s"
|
||||
|
||||
#: src/Core/NotificationsManager.php:299
|
||||
#, php-format
|
||||
msgid "%s disliked %s's post"
|
||||
msgstr "%s n'a pas aimé la publication de %s"
|
||||
|
||||
#: src/Core/NotificationsManager.php:312
|
||||
#, php-format
|
||||
msgid "%s is attending %s's event"
|
||||
msgstr "%s participe à l'événement de %s"
|
||||
|
||||
#: src/Core/NotificationsManager.php:325
|
||||
#, php-format
|
||||
msgid "%s is not attending %s's event"
|
||||
msgstr "%s ne participe pas à l'événement de %s"
|
||||
|
||||
#: src/Core/NotificationsManager.php:338
|
||||
#, php-format
|
||||
msgid "%s may attend %s's event"
|
||||
msgstr "%s participera peut-être à l'événement de %s"
|
||||
|
||||
#: src/Core/NotificationsManager.php:355
|
||||
#, php-format
|
||||
msgid "%s is now friends with %s"
|
||||
msgstr "%s est désormais ami(e) avec %s"
|
||||
|
||||
#: src/Core/NotificationsManager.php:829
|
||||
msgid "Friend Suggestion"
|
||||
msgstr "Suggestion d'amitié/contact"
|
||||
|
||||
#: src/Core/NotificationsManager.php:856
|
||||
msgid "Friend/Connect Request"
|
||||
msgstr "Demande de connexion/relation"
|
||||
|
||||
#: src/Core/NotificationsManager.php:856
|
||||
msgid "New Follower"
|
||||
msgstr "Nouvel abonné"
|
||||
|
||||
#: src/App.php:522
|
||||
msgid "Delete this item?"
|
||||
msgstr "Effacer cet élément?"
|
||||
|
||||
#: boot.php:973
|
||||
#: src/App.php:524
|
||||
msgid "show fewer"
|
||||
msgstr "montrer moins"
|
||||
|
||||
#: boot.php:1655
|
||||
#: src/Object/Contact.php:440
|
||||
msgid "Drop Contact"
|
||||
msgstr "Supprimer le contact"
|
||||
|
||||
#: src/Object/Contact.php:807
|
||||
msgid "Organisation"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Contact.php:810
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Contact.php:813
|
||||
msgid "Forum"
|
||||
msgstr "Forum"
|
||||
|
||||
#: src/Object/Item.php:123
|
||||
msgid "This entry was edited"
|
||||
msgstr "Cette entrée à été édité"
|
||||
|
||||
#: src/Object/Item.php:168
|
||||
msgid "save to folder"
|
||||
msgstr "sauver vers dossier"
|
||||
|
||||
#: src/Object/Item.php:235
|
||||
msgid "I will attend"
|
||||
msgstr "Je vais participer"
|
||||
|
||||
#: src/Object/Item.php:235
|
||||
msgid "I will not attend"
|
||||
msgstr "Je ne vais pas participer"
|
||||
|
||||
#: src/Object/Item.php:235
|
||||
msgid "I might attend"
|
||||
msgstr "Je vais peut-être participer"
|
||||
|
||||
#: src/Object/Item.php:261
|
||||
msgid "add star"
|
||||
msgstr "mett en avant"
|
||||
|
||||
#: src/Object/Item.php:262
|
||||
msgid "remove star"
|
||||
msgstr "ne plus mettre en avant"
|
||||
|
||||
#: src/Object/Item.php:263
|
||||
msgid "toggle star status"
|
||||
msgstr "mettre en avant"
|
||||
|
||||
#: src/Object/Item.php:266
|
||||
msgid "starred"
|
||||
msgstr "mis en avant"
|
||||
|
||||
#: src/Object/Item.php:271
|
||||
msgid "ignore thread"
|
||||
msgstr "ignorer le fil"
|
||||
|
||||
#: src/Object/Item.php:272
|
||||
msgid "unignore thread"
|
||||
msgstr "Ne plus ignorer le fil"
|
||||
|
||||
#: src/Object/Item.php:273
|
||||
msgid "toggle ignore status"
|
||||
msgstr "Ignorer le statut"
|
||||
|
||||
#: src/Object/Item.php:283
|
||||
msgid "add tag"
|
||||
msgstr "ajouter une étiquette"
|
||||
|
||||
#: src/Object/Item.php:294
|
||||
msgid "like"
|
||||
msgstr "aime"
|
||||
|
||||
#: src/Object/Item.php:295
|
||||
msgid "dislike"
|
||||
msgstr "n'aime pas"
|
||||
|
||||
#: src/Object/Item.php:298
|
||||
msgid "Share this"
|
||||
msgstr "Partager"
|
||||
|
||||
#: src/Object/Item.php:298
|
||||
msgid "share"
|
||||
msgstr "partager"
|
||||
|
||||
#: src/Object/Item.php:357
|
||||
msgid "to"
|
||||
msgstr "à"
|
||||
|
||||
#: src/Object/Item.php:358
|
||||
msgid "via"
|
||||
msgstr "via"
|
||||
|
||||
#: src/Object/Item.php:359
|
||||
msgid "Wall-to-Wall"
|
||||
msgstr "Inter-mur"
|
||||
|
||||
#: src/Object/Item.php:360
|
||||
msgid "via Wall-To-Wall:"
|
||||
msgstr "en Inter-mur :"
|
||||
|
||||
#: src/Object/Item.php:419
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
msgstr[0] "%d commentaire"
|
||||
msgstr[1] "%d commentaires"
|
||||
|
||||
#: src/Object/Item.php:788
|
||||
msgid "Bold"
|
||||
msgstr "Gras"
|
||||
|
||||
#: src/Object/Item.php:789
|
||||
msgid "Italic"
|
||||
msgstr "Italique"
|
||||
|
||||
#: src/Object/Item.php:790
|
||||
msgid "Underline"
|
||||
msgstr "Souligné"
|
||||
|
||||
#: src/Object/Item.php:791
|
||||
msgid "Quote"
|
||||
msgstr "Citation"
|
||||
|
||||
#: src/Object/Item.php:792
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#: src/Object/Item.php:793
|
||||
msgid "Image"
|
||||
msgstr "Image"
|
||||
|
||||
#: src/Object/Item.php:794
|
||||
msgid "Link"
|
||||
msgstr "Lien"
|
||||
|
||||
#: src/Object/Item.php:795
|
||||
msgid "Video"
|
||||
msgstr "Vidéo"
|
||||
|
||||
#: src/Protocol/DFRN.php:1416
|
||||
#, php-format
|
||||
msgid "%s\\'s birthday"
|
||||
msgstr "Anniversaire de %s"
|
||||
|
||||
#: src/Protocol/Diaspora.php:2488
|
||||
msgid "Sharing notification from Diaspora network"
|
||||
msgstr "Notification de partage du réseau Diaspora"
|
||||
|
||||
#: src/Protocol/Diaspora.php:3530
|
||||
msgid "Attachments:"
|
||||
msgstr "Pièces jointes : "
|
||||
|
||||
#: src/Protocol/OStatus.php:1786
|
||||
#, php-format
|
||||
msgid "%s is now following %s."
|
||||
msgstr "%s suit désormais %s."
|
||||
|
||||
#: src/Protocol/OStatus.php:1787
|
||||
msgid "following"
|
||||
msgstr "following"
|
||||
|
||||
#: src/Protocol/OStatus.php:1790
|
||||
#, php-format
|
||||
msgid "%s stopped following %s."
|
||||
msgstr "%s ne suit plus %s."
|
||||
|
||||
#: src/Protocol/OStatus.php:1791
|
||||
msgid "stopped following"
|
||||
msgstr "retiré de la liste de suivi"
|
||||
|
||||
#: src/Worker/Delivery.php:421
|
||||
msgid "(no subject)"
|
||||
msgstr "(sans titre)"
|
||||
|
||||
#: boot.php:762
|
||||
#, php-format
|
||||
msgid "Update %s failed. See error logs."
|
||||
msgstr "Mise-à-jour %s échouée. Voir les journaux d'erreur."
|
||||
|
||||
#: boot.php:1767
|
||||
#: boot.php:873
|
||||
msgid "Create a New Account"
|
||||
msgstr "Créer un nouveau compte"
|
||||
|
||||
#: boot.php:1796
|
||||
#: boot.php:905
|
||||
msgid "Password: "
|
||||
msgstr "Mot de passe: "
|
||||
msgstr "Mot de passe : "
|
||||
|
||||
#: boot.php:1797
|
||||
#: boot.php:906
|
||||
msgid "Remember me"
|
||||
msgstr "Se souvenir de moi"
|
||||
|
||||
#: boot.php:1800
|
||||
#: boot.php:909
|
||||
msgid "Or login using OpenID: "
|
||||
msgstr "Ou connectez-vous via OpenID: "
|
||||
msgstr "Ou connectez-vous via OpenID : "
|
||||
|
||||
#: boot.php:1806
|
||||
#: boot.php:915
|
||||
msgid "Forgot your password?"
|
||||
msgstr "Mot de passe oublié?"
|
||||
|
||||
#: boot.php:1809
|
||||
#: boot.php:918
|
||||
msgid "Website Terms of Service"
|
||||
msgstr "Conditions d'utilisation du site internet"
|
||||
|
||||
#: boot.php:1810
|
||||
#: boot.php:919
|
||||
msgid "terms of service"
|
||||
msgstr "conditions d'utilisation"
|
||||
|
||||
#: boot.php:1812
|
||||
#: boot.php:921
|
||||
msgid "Website Privacy Policy"
|
||||
msgstr "Politique de confidentialité du site internet"
|
||||
|
||||
#: boot.php:1813
|
||||
#: boot.php:922
|
||||
msgid "privacy policy"
|
||||
msgstr "politique de confidentialité"
|
||||
|
||||
#: index.php:451
|
||||
#: index.php:427
|
||||
msgid "toggle mobile"
|
||||
msgstr "activ. mobile"
|
||||
|
|
|
|||
|
|
@ -5,35 +5,6 @@ function string_plural_select_fr($n){
|
|||
return ($n > 1);;
|
||||
}}
|
||||
;
|
||||
$a->strings["Add New Contact"] = "Ajouter un nouveau contact";
|
||||
$a->strings["Enter address or web location"] = "Entrez son adresse ou sa localisation web";
|
||||
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple: bob@example.com, http://example.com/barbara";
|
||||
$a->strings["Connect"] = "Relier";
|
||||
$a->strings["%d invitation available"] = array(
|
||||
0 => "%d invitation disponible",
|
||||
1 => "%d invitations disponibles",
|
||||
);
|
||||
$a->strings["Find People"] = "Trouver des personnes";
|
||||
$a->strings["Enter name or interest"] = "Entrez un nom ou un centre d'intérêt";
|
||||
$a->strings["Connect/Follow"] = "Connecter/Suivre";
|
||||
$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Robert Morgenstein, Pêche";
|
||||
$a->strings["Find"] = "Trouver";
|
||||
$a->strings["Friend Suggestions"] = "Suggestions d'amitiés/contacts";
|
||||
$a->strings["Similar Interests"] = "Intérêts similaires";
|
||||
$a->strings["Random Profile"] = "Profil au hasard";
|
||||
$a->strings["Invite Friends"] = "Inviter des amis";
|
||||
$a->strings["Networks"] = "Réseaux";
|
||||
$a->strings["All Networks"] = "Tous réseaux";
|
||||
$a->strings["Saved Folders"] = "Dossiers sauvegardés";
|
||||
$a->strings["Everything"] = "Tout";
|
||||
$a->strings["Categories"] = "Catégories";
|
||||
$a->strings["%d contact in common"] = array(
|
||||
0 => "%d contact en commun",
|
||||
1 => "%d contacts en commun",
|
||||
);
|
||||
$a->strings["show more"] = "montrer plus";
|
||||
$a->strings["Forums"] = "Forums";
|
||||
$a->strings["External link to forum"] = "Lien sortant vers le forum";
|
||||
$a->strings["Male"] = "Masculin";
|
||||
$a->strings["Female"] = "Féminin";
|
||||
$a->strings["Currently Male"] = "Actuellement masculin";
|
||||
|
|
@ -95,22 +66,35 @@ $a->strings["Uncertain"] = "Incertain";
|
|||
$a->strings["It's complicated"] = "C'est compliqué";
|
||||
$a->strings["Don't care"] = "S'en désintéresse";
|
||||
$a->strings["Ask me"] = "Me demander";
|
||||
$a->strings["Cannot locate DNS info for database server '%s'"] = "Impossible de localiser les informations DNS pour le serveur de base de données '%s'";
|
||||
$a->strings["Wall Photos"] = "Photos du mur";
|
||||
$a->strings["Post to Email"] = "Publier aux courriels";
|
||||
$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Les connecteurs sont désactivés parce que \"%s\" est activé.";
|
||||
$a->strings["Hide your profile details from unknown viewers?"] = "Cacher les détails du profil aux visiteurs inconnus?";
|
||||
$a->strings["Visible to everybody"] = "Visible par tout le monde";
|
||||
$a->strings["show"] = "montrer";
|
||||
$a->strings["don't show"] = "cacher";
|
||||
$a->strings["CC: email addresses"] = "CC: adresses de courriel";
|
||||
$a->strings["Example: bob@example.com, mary@example.com"] = "Exemple : bob@exemple.com, mary@exemple.com";
|
||||
$a->strings["Permissions"] = "Permissions";
|
||||
$a->strings["Close"] = "Fermer";
|
||||
$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Le quota journalier de %d publications a été atteint. La publication a été rejetée.";
|
||||
$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Le quota hebdomadaire de %d publications a été atteint. La publication a été rejetée.";
|
||||
$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Le quota mensuel de %d publications a été atteint. La publication a été rejetée.";
|
||||
$a->strings["Profile Photos"] = "Photos du profil";
|
||||
$a->strings["Logged out."] = "Déconnecté.";
|
||||
$a->strings["Login failed."] = "Échec de connexion.";
|
||||
$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Nous avons eu un souci avec l'OpenID que vous avez fourni. merci de vérifier l'orthographe correcte de ce dernier.";
|
||||
$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Nous avons eu un souci avec l'OpenID que vous avez fourni. Merci de vérifier qu'il est correctement écrit.";
|
||||
$a->strings["The error message was:"] = "Le message d'erreur était :";
|
||||
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un groupe supprimé a été recréé. Les permissions existantes <strong>pourraient</strong> s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom.";
|
||||
$a->strings["Default privacy group for new contacts"] = "Paramètres de confidentialité par défaut pour les nouveaux contacts";
|
||||
$a->strings["Everybody"] = "Tout le monde";
|
||||
$a->strings["edit"] = "éditer";
|
||||
$a->strings["Groups"] = "Groupes";
|
||||
$a->strings["Edit groups"] = "Modifier les groupes";
|
||||
$a->strings["Edit group"] = "Editer groupe";
|
||||
$a->strings["Create a new group"] = "Créer un nouveau groupe";
|
||||
$a->strings["Group Name: "] = "Nom du groupe: ";
|
||||
$a->strings["Contacts not in any group"] = "Contacts n'appartenant à aucun groupe";
|
||||
$a->strings["add"] = "ajouter";
|
||||
$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
|
||||
$a->strings["Starts:"] = "Débute :";
|
||||
$a->strings["Finishes:"] = "Finit :";
|
||||
$a->strings["Location:"] = "Localisation :";
|
||||
$a->strings["Image/photo"] = "Image/photo";
|
||||
$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
|
||||
$a->strings["$1 wrote:"] = "$1 a écrit :";
|
||||
$a->strings["Encrypted content"] = "Contenu chiffré";
|
||||
$a->strings["Invalid source protocol"] = "";
|
||||
$a->strings["Invalid link protocol"] = "";
|
||||
$a->strings["Unknown | Not categorised"] = "Inconnu | Non-classé";
|
||||
$a->strings["Block immediately"] = "Bloquer immédiatement";
|
||||
$a->strings["Shady, spammer, self-marketer"] = "Douteux, spammeur, accro à l'auto-promotion";
|
||||
|
|
@ -137,45 +121,144 @@ $a->strings["Google+"] = "Google+";
|
|||
$a->strings["pump.io"] = "pump.io";
|
||||
$a->strings["Twitter"] = "Twitter";
|
||||
$a->strings["Diaspora Connector"] = "Connecteur Diaspora";
|
||||
$a->strings["GNU Social"] = "GNU Social";
|
||||
$a->strings["GNU Social Connector"] = "Connecteur GNU Social";
|
||||
$a->strings["pnut"] = "";
|
||||
$a->strings["App.net"] = "App.net";
|
||||
$a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix";
|
||||
$a->strings["Post to Email"] = "Publier aux courriels";
|
||||
$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Les connecteurs sont désactivés parce que \"%s\" est activé.";
|
||||
$a->strings["Hide your profile details from unknown viewers?"] = "Cacher les détails du profil aux visiteurs inconnus?";
|
||||
$a->strings["Visible to everybody"] = "Visible par tout le monde";
|
||||
$a->strings["show"] = "montrer";
|
||||
$a->strings["don't show"] = "cacher";
|
||||
$a->strings["CC: email addresses"] = "CC: adresses de courriel";
|
||||
$a->strings["Example: bob@example.com, mary@example.com"] = "Exemple: bob@exemple.com, mary@exemple.com";
|
||||
$a->strings["Permissions"] = "Permissions";
|
||||
$a->strings["Close"] = "Fermer";
|
||||
$a->strings["photo"] = "photo";
|
||||
$a->strings["status"] = "le statut";
|
||||
$a->strings["Add New Contact"] = "Ajouter un nouveau contact";
|
||||
$a->strings["Enter address or web location"] = "Entrez son adresse ou sa localisation web";
|
||||
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple : bob@example.com, http://example.com/barbara";
|
||||
$a->strings["Connect"] = "Se connecter";
|
||||
$a->strings["%d invitation available"] = array(
|
||||
0 => "%d invitation disponible",
|
||||
1 => "%d invitations disponibles",
|
||||
);
|
||||
$a->strings["Find People"] = "Trouver des personnes";
|
||||
$a->strings["Enter name or interest"] = "Entrez un nom ou un centre d'intérêt";
|
||||
$a->strings["Connect/Follow"] = "Connecter/Suivre";
|
||||
$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemples : Robert Morgenstein, Pêche";
|
||||
$a->strings["Find"] = "Trouver";
|
||||
$a->strings["Friend Suggestions"] = "Suggestions d'amitiés/contacts";
|
||||
$a->strings["Similar Interests"] = "Intérêts similaires";
|
||||
$a->strings["Random Profile"] = "Profil au hasard";
|
||||
$a->strings["Invite Friends"] = "Inviter des amis";
|
||||
$a->strings["View Global Directory"] = "Consulter le répertoire global";
|
||||
$a->strings["Networks"] = "Réseaux";
|
||||
$a->strings["All Networks"] = "Tous réseaux";
|
||||
$a->strings["Saved Folders"] = "Dossiers sauvegardés";
|
||||
$a->strings["Everything"] = "Tout";
|
||||
$a->strings["Categories"] = "Catégories";
|
||||
$a->strings["%d contact in common"] = array(
|
||||
0 => "%d contact en commun",
|
||||
1 => "%d contacts en commun",
|
||||
);
|
||||
$a->strings["show more"] = "montrer plus";
|
||||
$a->strings["event"] = "évènement";
|
||||
$a->strings["status"] = "le statut";
|
||||
$a->strings["photo"] = "photo";
|
||||
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s";
|
||||
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s n'aime pas %3\$s de %2\$s";
|
||||
$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s participe à %3\$s de %2\$s";
|
||||
$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s ne participe pas à %3\$s de %2\$s";
|
||||
$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s participera peut-être à %3\$s de %2\$s";
|
||||
$a->strings["[no subject]"] = "[pas de sujet]";
|
||||
$a->strings["Wall Photos"] = "Photos du mur";
|
||||
$a->strings["Click here to upgrade."] = "Cliquez ici pour mettre à jour.";
|
||||
$a->strings["This action exceeds the limits set by your subscription plan."] = "Cette action dépasse les limites définies par votre abonnement.";
|
||||
$a->strings["This action is not available under your subscription plan."] = "Cette action n'est pas disponible avec votre abonnement.";
|
||||
$a->strings["Error decoding account file"] = "Une erreur a été détecté en décodant un fichier utilisateur";
|
||||
$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?";
|
||||
$a->strings["Error! Cannot check nickname"] = "Erreur! Pseudo invalide";
|
||||
$a->strings["User '%s' already exists on this server!"] = "L'utilisateur '%s' existe déjà sur ce serveur!";
|
||||
$a->strings["User creation error"] = "Erreur de création d'utilisateur";
|
||||
$a->strings["User profile creation error"] = "Erreur de création du profil utilisateur";
|
||||
$a->strings["%d contact not imported"] = array(
|
||||
0 => "%d contacts non importés",
|
||||
1 => "%d contacts non importés",
|
||||
$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s participe à %3\$s de %2\$s";
|
||||
$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s ne participe pas à %3\$s de %2\$s";
|
||||
$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s participe peut-être à %3\$s de %2\$s";
|
||||
$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s est désormais lié à %2\$s";
|
||||
$a->strings["%1\$s poked %2\$s"] = "%1\$s a sollicité %2\$s";
|
||||
$a->strings["%1\$s is currently %2\$s"] = "%1\$s est d'humeur %2\$s";
|
||||
$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a étiqueté %3\$s de %2\$s avec %4\$s";
|
||||
$a->strings["post/item"] = "publication/élément";
|
||||
$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s a marqué le %3\$s de %2\$s comme favori";
|
||||
$a->strings["Likes"] = "Derniers \"J'aime\"";
|
||||
$a->strings["Dislikes"] = "Derniers \"Je n'aime pas\"";
|
||||
$a->strings["Attending"] = array(
|
||||
0 => "Participe",
|
||||
1 => "Participent",
|
||||
);
|
||||
$a->strings["Not attending"] = "Ne participe pas";
|
||||
$a->strings["Might attend"] = "Participera peut-être";
|
||||
$a->strings["Select"] = "Sélectionner";
|
||||
$a->strings["Delete"] = "Supprimer";
|
||||
$a->strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s";
|
||||
$a->strings["Categories:"] = "Catégories :";
|
||||
$a->strings["Filed under:"] = "Rangé sous :";
|
||||
$a->strings["%s from %s"] = "%s de %s";
|
||||
$a->strings["View in context"] = "Voir dans le contexte";
|
||||
$a->strings["Please wait"] = "Patientez";
|
||||
$a->strings["remove"] = "enlever";
|
||||
$a->strings["Delete Selected Items"] = "Supprimer les éléments sélectionnés";
|
||||
$a->strings["Follow Thread"] = "Suivre le fil";
|
||||
$a->strings["View Status"] = "Voir les statuts";
|
||||
$a->strings["View Profile"] = "Voir le profil";
|
||||
$a->strings["View Photos"] = "Voir les photos";
|
||||
$a->strings["Network Posts"] = "Publications du réseau";
|
||||
$a->strings["View Contact"] = "Voir Contact";
|
||||
$a->strings["Send PM"] = "Message privé";
|
||||
$a->strings["Poke"] = "Sollicitations (pokes)";
|
||||
$a->strings["%s likes this."] = "%s aime ça.";
|
||||
$a->strings["%s doesn't like this."] = "%s n'aime pas ça.";
|
||||
$a->strings["%s attends."] = "%s participe";
|
||||
$a->strings["%s doesn't attend."] = "%s ne participe pas";
|
||||
$a->strings["%s attends maybe."] = "%s participe peut-être";
|
||||
$a->strings["and"] = "et";
|
||||
$a->strings[", and %d other people"] = ", et %d autres personnes";
|
||||
$a->strings["<span %1\$s>%2\$d people</span> like this"] = "<span %1\$s>%2\$d personnes</span> aiment ça";
|
||||
$a->strings["%s like this."] = "%s aime ça.";
|
||||
$a->strings["<span %1\$s>%2\$d people</span> don't like this"] = "<span %1\$s>%2\$d personnes</span> n'aiment pas ça";
|
||||
$a->strings["%s don't like this."] = "%s n'aiment pas ça.";
|
||||
$a->strings["<span %1\$s>%2\$d people</span> attend"] = "<span %1\$s>%2\$d personnes</span> participent";
|
||||
$a->strings["%s attend."] = "%s participent.";
|
||||
$a->strings["<span %1\$s>%2\$d people</span> don't attend"] = "<span %1\$s>%2\$d personnes</span> ne participent pas";
|
||||
$a->strings["%s don't attend."] = "%s ne participent pas.";
|
||||
$a->strings["<span %1\$s>%2\$d people</span> attend maybe"] = "<span %1\$s>%2\$d personnes</span> vont peut-être participer";
|
||||
$a->strings["%s anttend maybe."] = "%s participent peut-être.";
|
||||
$a->strings["Visible to <strong>everybody</strong>"] = "Visible par <strong>tout le monde</strong>";
|
||||
$a->strings["Please enter a link URL:"] = "Entrez un lien web :";
|
||||
$a->strings["Please enter a video link/URL:"] = "Entrez un lien/URL video :";
|
||||
$a->strings["Please enter an audio link/URL:"] = "Entrez un lien/URL audio :";
|
||||
$a->strings["Tag term:"] = "Étiquette :";
|
||||
$a->strings["Save to Folder:"] = "Sauver dans le Dossier :";
|
||||
$a->strings["Where are you right now?"] = "Où êtes-vous actuellement ?";
|
||||
$a->strings["Delete item(s)?"] = "Supprimer les élément(s) ?";
|
||||
$a->strings["Share"] = "Partager";
|
||||
$a->strings["Upload photo"] = "Joindre photo";
|
||||
$a->strings["upload photo"] = "envoi image";
|
||||
$a->strings["Attach file"] = "Joindre fichier";
|
||||
$a->strings["attach file"] = "ajout fichier";
|
||||
$a->strings["Insert web link"] = "Insérer lien web";
|
||||
$a->strings["web link"] = "lien web";
|
||||
$a->strings["Insert video link"] = "Insérer un lien video";
|
||||
$a->strings["video link"] = "lien vidéo";
|
||||
$a->strings["Insert audio link"] = "Insérer un lien audio";
|
||||
$a->strings["audio link"] = "lien audio";
|
||||
$a->strings["Set your location"] = "Définir votre localisation";
|
||||
$a->strings["set location"] = "spéc. localisation";
|
||||
$a->strings["Clear browser location"] = "Effacer la localisation du navigateur";
|
||||
$a->strings["clear location"] = "supp. localisation";
|
||||
$a->strings["Set title"] = "Définir un titre";
|
||||
$a->strings["Categories (comma-separated list)"] = "Catégories (séparées par des virgules)";
|
||||
$a->strings["Permission settings"] = "Réglages des permissions";
|
||||
$a->strings["permissions"] = "permissions";
|
||||
$a->strings["Public post"] = "Publication publique";
|
||||
$a->strings["Preview"] = "Aperçu";
|
||||
$a->strings["Cancel"] = "Annuler";
|
||||
$a->strings["Post to Groups"] = "Publier aux groupes";
|
||||
$a->strings["Post to Contacts"] = "Publier aux contacts";
|
||||
$a->strings["Private post"] = "Message privé";
|
||||
$a->strings["Message"] = "Message";
|
||||
$a->strings["Browser"] = "Navigateur";
|
||||
$a->strings["View all"] = "Voir tout";
|
||||
$a->strings["Like"] = array(
|
||||
0 => "Like",
|
||||
1 => "Likes",
|
||||
);
|
||||
$a->strings["Dislike"] = array(
|
||||
0 => "Dislike",
|
||||
1 => "Dislikes",
|
||||
);
|
||||
$a->strings["Not Attending"] = array(
|
||||
0 => "Ne participe pas",
|
||||
1 => "Ne participent pas",
|
||||
);
|
||||
$a->strings["Done. You can now login with your username and password"] = "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe";
|
||||
$a->strings["Miscellaneous"] = "Divers";
|
||||
$a->strings["Birthday:"] = "Anniversaire:";
|
||||
$a->strings["Birthday:"] = "Anniversaire :";
|
||||
$a->strings["Age: "] = "Age : ";
|
||||
$a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-JJ ou MM-JJ";
|
||||
$a->strings["never"] = "jamais";
|
||||
|
|
@ -197,6 +280,14 @@ $a->strings["seconds"] = "secondes";
|
|||
$a->strings["%1\$d %2\$s ago"] = "il y a %1\$d %2\$s ";
|
||||
$a->strings["%s's birthday"] = "Anniversaire de %s's";
|
||||
$a->strings["Happy Birthday %s"] = "Joyeux anniversaire, %s !";
|
||||
$a->strings["Cannot locate DNS info for database server '%s'"] = "Impossible de localiser les informations DNS pour le serveur de base de données '%s'";
|
||||
$a->strings["There are no tables on MyISAM."] = "";
|
||||
$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nLes développeurs de Friendica ont récemment publié la mise à jour %s, mais en tentant de l’installer, quelque chose s’est terriblement mal passé. Une réparation s’impose et je ne peux pas la faire tout seul. Contactez un développeur Friendica si vous ne pouvez pas corriger le problème vous-même. Il est possible que ma base de données soit corrompue.";
|
||||
$a->strings["The error message is\n[pre]%s[/pre]"] = "Le message d’erreur est\n[pre]%s[/pre]";
|
||||
$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nErreur %d survenue durant la mise à jour de la base de données :\n%s\n";
|
||||
$a->strings["Errors encountered performing database changes: "] = "";
|
||||
$a->strings[": Database update"] = ": Mise à jour de la base de données";
|
||||
$a->strings["%s: updating %s table."] = "";
|
||||
$a->strings["Friendica Notification"] = "Notification Friendica";
|
||||
$a->strings["Thank You,"] = "Merci, ";
|
||||
$a->strings["%s Administrator"] = "L'administrateur de %s";
|
||||
|
|
@ -257,10 +348,7 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "V
|
|||
$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "%2\$s vous a envoyé une [url=%1\$s]demande de création de compte[/url].";
|
||||
$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nom complet :\t%1\$s\\nAdresse :\t%2\$s\\nIdentifiant :\t%3\$s (%4\$s)";
|
||||
$a->strings["Please visit %s to approve or reject the request."] = "Veuillez visiter %s pour approuver ou rejeter la demande.";
|
||||
$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
|
||||
$a->strings["Starts:"] = "Débute:";
|
||||
$a->strings["Finishes:"] = "Finit:";
|
||||
$a->strings["Location:"] = "Localisation:";
|
||||
$a->strings["all-day"] = "toute la journée";
|
||||
$a->strings["Sun"] = "Dim";
|
||||
$a->strings["Mon"] = "Lun";
|
||||
$a->strings["Tue"] = "Mar";
|
||||
|
|
@ -299,28 +387,173 @@ $a->strings["October"] = "Octobre";
|
|||
$a->strings["November"] = "Novembre";
|
||||
$a->strings["December"] = "Décembre";
|
||||
$a->strings["today"] = "aujourd'hui";
|
||||
$a->strings["all-day"] = "";
|
||||
$a->strings["No events to display"] = "";
|
||||
$a->strings["No events to display"] = "Pas d'événement à afficher";
|
||||
$a->strings["l, F j"] = "l, F j";
|
||||
$a->strings["Edit event"] = "Editer l'événement";
|
||||
$a->strings["Duplicate event"] = "Dupliquer l'événement";
|
||||
$a->strings["Delete event"] = "Supprimer l'événement";
|
||||
$a->strings["link to source"] = "lien original";
|
||||
$a->strings["Export"] = "Exporter";
|
||||
$a->strings["Export calendar as ical"] = "Exporter au format iCal";
|
||||
$a->strings["Export calendar as csv"] = "Exporter au format CSV";
|
||||
$a->strings["D g:i A"] = "";
|
||||
$a->strings["g:i A"] = "";
|
||||
$a->strings["Show map"] = "Montrer la carte";
|
||||
$a->strings["Hide map"] = "Cacher la carte";
|
||||
$a->strings["General Features"] = "Fonctions générales";
|
||||
$a->strings["Multiple Profiles"] = "Profils multiples";
|
||||
$a->strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils";
|
||||
$a->strings["Photo Location"] = "Lieu de prise de la photo";
|
||||
$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Les métadonnées des photos sont normalement retirées. Ceci permet de sauver l'emplacement (si présent) et de positionner la photo sur une carte.";
|
||||
$a->strings["Export Public Calendar"] = "Exporter le Calendrier Public";
|
||||
$a->strings["Ability for visitors to download the public calendar"] = "Les visiteurs peuvent télécharger le calendrier public";
|
||||
$a->strings["Post Composition Features"] = "Caractéristiques de composition de publication";
|
||||
$a->strings["Post Preview"] = "Aperçu de la publication";
|
||||
$a->strings["Allow previewing posts and comments before publishing them"] = "Permet la prévisualisation des publications et commentaires avant de les publier";
|
||||
$a->strings["Auto-mention Forums"] = "Mentionner automatiquement les Forums";
|
||||
$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Ajoute/retire une mention quand une page forum est sélectionnée/désélectionnée lors du choix des destinataires d'une publication.";
|
||||
$a->strings["Network Sidebar Widgets"] = "Widgets réseau pour barre latérale";
|
||||
$a->strings["Search by Date"] = "Rechercher par Date";
|
||||
$a->strings["Ability to select posts by date ranges"] = "Capacité de sélectionner les publications par intervalles de dates";
|
||||
$a->strings["List Forums"] = "Liste des forums";
|
||||
$a->strings["Enable widget to display the forums your are connected with"] = "Activer le widget pour afficher les forums auxquels vous êtes connecté";
|
||||
$a->strings["Group Filter"] = "Filtre de groupe";
|
||||
$a->strings["Enable widget to display Network posts only from selected group"] = "Activer le widget d’affichage des publications du réseau seulement pour le groupe sélectionné";
|
||||
$a->strings["Network Filter"] = "Filtre de réseau";
|
||||
$a->strings["Enable widget to display Network posts only from selected network"] = "Activer le widget d’affichage des publications du réseau seulement pour le réseau sélectionné";
|
||||
$a->strings["Saved Searches"] = "Recherches";
|
||||
$a->strings["Save search terms for re-use"] = "Sauvegarder la recherche pour une utilisation ultérieure";
|
||||
$a->strings["Network Tabs"] = "Onglets Réseau";
|
||||
$a->strings["Network Personal Tab"] = "Onglet Réseau Personnel";
|
||||
$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Activer l'onglet pour afficher seulement les publications du réseau où vous avez interagit";
|
||||
$a->strings["Network New Tab"] = "Nouvel onglet réseaux";
|
||||
$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Activer l'onglet pour afficher seulement les publications du réseau (dans les 12 dernières heures)";
|
||||
$a->strings["Network Shared Links Tab"] = "Onglet réseau partagé";
|
||||
$a->strings["Enable tab to display only Network posts with links in them"] = "Activer l'onglet pour afficher seulement les publications du réseau contenant des liens";
|
||||
$a->strings["Post/Comment Tools"] = "Outils de publication/commentaire";
|
||||
$a->strings["Multiple Deletion"] = "Suppression multiple";
|
||||
$a->strings["Select and delete multiple posts/comments at once"] = "Sélectionner et supprimer plusieurs publications/commentaires à la fois";
|
||||
$a->strings["Edit Sent Posts"] = "Éditer les publications envoyées";
|
||||
$a->strings["Edit and correct posts and comments after sending"] = "Éditer et corriger les publications et commentaires après l'envoi";
|
||||
$a->strings["Tagging"] = "Étiquettage";
|
||||
$a->strings["Ability to tag existing posts"] = "Possibilité d'étiqueter les publications existantes";
|
||||
$a->strings["Post Categories"] = "Catégories des publications";
|
||||
$a->strings["Add categories to your posts"] = "Ajouter des catégories à vos publications";
|
||||
$a->strings["Ability to file posts under folders"] = "Possibilité d'afficher les publications sous les répertoires";
|
||||
$a->strings["Dislike Posts"] = "Publications non aimées";
|
||||
$a->strings["Ability to dislike posts/comments"] = "Possibilité de ne pas aimer les publications/commentaires";
|
||||
$a->strings["Star Posts"] = "Publications spéciales";
|
||||
$a->strings["Ability to mark special posts with a star indicator"] = "Possibilité de marquer les publications spéciales d'une étoile";
|
||||
$a->strings["Mute Post Notifications"] = "Ignorer les notifications du post";
|
||||
$a->strings["Ability to mute notifications for a thread"] = "Permettre d'ignorer les notifications d'un fil de discussion";
|
||||
$a->strings["Advanced Profile Settings"] = "Paramètres Avancés du Profil";
|
||||
$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Montrer les forums communautaires aux visiteurs sur la Page de profil avancé";
|
||||
$a->strings["Tag Cloud"] = "";
|
||||
$a->strings["Provide a personal tag cloud on your profile page"] = "";
|
||||
$a->strings["Disallowed profile URL."] = "URL de profil interdite.";
|
||||
$a->strings["Blocked domain"] = "Domaine bloqué";
|
||||
$a->strings["Connect URL missing."] = "URL de connexion manquante.";
|
||||
$a->strings["This site is not configured to allow communications with other networks."] = "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux.";
|
||||
$a->strings["No compatible communication protocols or feeds were discovered."] = "Aucun protocole de communication ni aucun flux n'a pu être découvert.";
|
||||
$a->strings["The profile address specified does not provide adequate information."] = "L'adresse de profil indiquée ne fournit par les informations adéquates.";
|
||||
$a->strings["An author or name was not found."] = "Aucun auteur ou nom d'auteur n'a pu être trouvé.";
|
||||
$a->strings["No browser URL could be matched to this address."] = "Aucune URL de navigation ne correspond à cette adresse.";
|
||||
$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel.";
|
||||
$a->strings["Use mailto: in front of address to force email check."] = "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel.";
|
||||
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site.";
|
||||
$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part.";
|
||||
$a->strings["Unable to retrieve contact information."] = "Impossible de récupérer les informations du contact.";
|
||||
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un groupe supprimé a été recréé. Les permissions existantes <strong>pourraient</strong> s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom.";
|
||||
$a->strings["Default privacy group for new contacts"] = "Paramètres de confidentialité par défaut pour les nouveaux contacts";
|
||||
$a->strings["Everybody"] = "Tout le monde";
|
||||
$a->strings["edit"] = "éditer";
|
||||
$a->strings["Groups"] = "Groupes";
|
||||
$a->strings["Edit groups"] = "Modifier les groupes";
|
||||
$a->strings["Edit group"] = "Editer groupe";
|
||||
$a->strings["Create a new group"] = "Créer un nouveau groupe";
|
||||
$a->strings["Group Name: "] = "Nom du groupe : ";
|
||||
$a->strings["Contacts not in any group"] = "Contacts n'appartenant à aucun groupe";
|
||||
$a->strings["add"] = "ajouter";
|
||||
$a->strings["Requested account is not available."] = "Le compte demandé n'est pas disponible.";
|
||||
$a->strings["Requested profile is not available."] = "Le profil demandé n'est pas disponible.";
|
||||
$a->strings["Edit profile"] = "Editer le profil";
|
||||
$a->strings["Atom feed"] = "Flux Atom";
|
||||
$a->strings["Profiles"] = "Profils";
|
||||
$a->strings["Manage/edit profiles"] = "Gérer/éditer les profils";
|
||||
$a->strings["Change profile photo"] = "Changer de photo de profil";
|
||||
$a->strings["Create New Profile"] = "Créer un nouveau profil";
|
||||
$a->strings["Profile Image"] = "Image du profil";
|
||||
$a->strings["visible to everybody"] = "visible par tous";
|
||||
$a->strings["Edit visibility"] = "Changer la visibilité";
|
||||
$a->strings["Gender:"] = "Genre :";
|
||||
$a->strings["Status:"] = "Statut :";
|
||||
$a->strings["Homepage:"] = "Page personnelle :";
|
||||
$a->strings["About:"] = "À propos :";
|
||||
$a->strings["XMPP:"] = "XMPP";
|
||||
$a->strings["Network:"] = "Réseau";
|
||||
$a->strings["g A l F d"] = "g A | F d";
|
||||
$a->strings["F d"] = "F d";
|
||||
$a->strings["[today]"] = "[aujourd'hui]";
|
||||
$a->strings["Birthday Reminders"] = "Rappels d'anniversaires";
|
||||
$a->strings["Birthdays this week:"] = "Anniversaires cette semaine :";
|
||||
$a->strings["[No description]"] = "[Sans description]";
|
||||
$a->strings["Event Reminders"] = "Rappels d'événements";
|
||||
$a->strings["Events this week:"] = "Evénements cette semaine :";
|
||||
$a->strings["Profile"] = "Profil";
|
||||
$a->strings["Full Name:"] = "Nom complet :";
|
||||
$a->strings["j F, Y"] = "j F, Y";
|
||||
$a->strings["j F"] = "j F";
|
||||
$a->strings["Age:"] = "Age :";
|
||||
$a->strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s";
|
||||
$a->strings["Sexual Preference:"] = "Préférence sexuelle :";
|
||||
$a->strings["Hometown:"] = " Ville d'origine :";
|
||||
$a->strings["Tags:"] = "Étiquette :";
|
||||
$a->strings["Political Views:"] = "Opinions politiques :";
|
||||
$a->strings["Religion:"] = "Religion :";
|
||||
$a->strings["Hobbies/Interests:"] = "Passe-temps/Centres d'intérêt :";
|
||||
$a->strings["Likes:"] = "J'aime :";
|
||||
$a->strings["Dislikes:"] = "Je n'aime pas :";
|
||||
$a->strings["Contact information and Social Networks:"] = "Coordonnées/Réseaux sociaux :";
|
||||
$a->strings["Musical interests:"] = "Goûts musicaux :";
|
||||
$a->strings["Books, literature:"] = "Lectures :";
|
||||
$a->strings["Television:"] = "Télévision :";
|
||||
$a->strings["Film/dance/culture/entertainment:"] = "Cinéma/Danse/Culture/Divertissement :";
|
||||
$a->strings["Love/Romance:"] = "Amour/Romance :";
|
||||
$a->strings["Work/employment:"] = "Activité professionnelle/Occupation :";
|
||||
$a->strings["School/education:"] = "Études/Formation :";
|
||||
$a->strings["Forums:"] = "Forums :";
|
||||
$a->strings["Basic"] = "Simple";
|
||||
$a->strings["Advanced"] = "Avancé";
|
||||
$a->strings["Status"] = "Statut";
|
||||
$a->strings["Status Messages and Posts"] = "Messages d'état et publications";
|
||||
$a->strings["Profile Details"] = "Détails du profil";
|
||||
$a->strings["Photos"] = "Photos";
|
||||
$a->strings["Photo Albums"] = "Albums photo";
|
||||
$a->strings["Videos"] = "Vidéos";
|
||||
$a->strings["Events"] = "Événements";
|
||||
$a->strings["Events and Calendar"] = "Événements et agenda";
|
||||
$a->strings["Personal Notes"] = "Notes personnelles";
|
||||
$a->strings["Only You Can See This"] = "Vous seul pouvez voir ça";
|
||||
$a->strings["Contacts"] = "Contacts";
|
||||
$a->strings["[Name Withheld]"] = "[Nom non-publié]";
|
||||
$a->strings["Item not found."] = "Élément introuvable.";
|
||||
$a->strings["Do you really want to delete this item?"] = "Voulez-vous vraiment supprimer cet élément ?";
|
||||
$a->strings["Yes"] = "Oui";
|
||||
$a->strings["Permission denied."] = "Permission refusée.";
|
||||
$a->strings["Archives"] = "Archives";
|
||||
$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s participe à %3\$s de %2\$s";
|
||||
$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s ne participe pas à %3\$s de %2\$s";
|
||||
$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s participera peut-être à %3\$s de %2\$s";
|
||||
$a->strings["[no subject]"] = "[pas de sujet]";
|
||||
$a->strings["Nothing new here"] = "Rien de neuf ici";
|
||||
$a->strings["Clear notifications"] = "Effacer les notifications";
|
||||
$a->strings["@name, !forum, #tags, content"] = "@nom, !forum, #tags, contenu";
|
||||
$a->strings["Logout"] = "Se déconnecter";
|
||||
$a->strings["End this session"] = "Mettre fin à cette session";
|
||||
$a->strings["Status"] = "Statut";
|
||||
$a->strings["Your posts and conversations"] = "Vos publications et conversations";
|
||||
$a->strings["Profile"] = "Profil";
|
||||
$a->strings["Your profile page"] = "Votre page de profil";
|
||||
$a->strings["Photos"] = "Photos";
|
||||
$a->strings["Your photos"] = "Vos photos";
|
||||
$a->strings["Videos"] = "Vidéos";
|
||||
$a->strings["Your videos"] = "Vos vidéos";
|
||||
$a->strings["Events"] = "Événements";
|
||||
$a->strings["Your events"] = "Vos événements";
|
||||
$a->strings["Personal notes"] = "Notes personnelles";
|
||||
$a->strings["Your personal notes"] = "Vos notes personnelles";
|
||||
|
|
@ -338,11 +571,10 @@ $a->strings["Search"] = "Recherche";
|
|||
$a->strings["Search site content"] = "Rechercher dans le contenu du site";
|
||||
$a->strings["Full Text"] = "Texte Entier";
|
||||
$a->strings["Tags"] = "Tags";
|
||||
$a->strings["Contacts"] = "Contacts";
|
||||
$a->strings["Forums"] = "Forums";
|
||||
$a->strings["Community"] = "Communauté";
|
||||
$a->strings["Conversations on this site"] = "Conversations ayant cours sur ce site";
|
||||
$a->strings["Conversations on the network"] = "Conversations sur le réseau";
|
||||
$a->strings["Events and Calendar"] = "Événements et agenda";
|
||||
$a->strings["Directory"] = "Annuaire";
|
||||
$a->strings["People directory"] = "Annuaire des utilisateurs";
|
||||
$a->strings["Information"] = "Information";
|
||||
|
|
@ -368,286 +600,26 @@ $a->strings["Delegations"] = "Délégations";
|
|||
$a->strings["Delegate Page Management"] = "Déléguer la gestion de la page";
|
||||
$a->strings["Settings"] = "Réglages";
|
||||
$a->strings["Account settings"] = "Compte";
|
||||
$a->strings["Profiles"] = "Profils";
|
||||
$a->strings["Manage/Edit Profiles"] = "Gérer/Éditer les profiles";
|
||||
$a->strings["Manage/edit friends and contacts"] = "Gérer/éditer les amitiés et contacts";
|
||||
$a->strings["Admin"] = "Admin";
|
||||
$a->strings["Site setup and configuration"] = "Démarrage et configuration du site";
|
||||
$a->strings["Navigation"] = "Navigation";
|
||||
$a->strings["Site map"] = "Carte du site";
|
||||
$a->strings["view full size"] = "voir en pleine taille";
|
||||
$a->strings["Embedded content"] = "Contenu incorporé";
|
||||
$a->strings["Embedding disabled"] = "Incorporation désactivée";
|
||||
$a->strings["Contact Photos"] = "Photos du contact";
|
||||
$a->strings["Welcome "] = "Bienvenue ";
|
||||
$a->strings["Please upload a profile photo."] = "Merci d'illustrer votre profil d'une image.";
|
||||
$a->strings["Welcome back "] = "Bienvenue à nouveau, ";
|
||||
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé.";
|
||||
$a->strings["System"] = "Système";
|
||||
$a->strings["Personal"] = "Personnel";
|
||||
$a->strings["%s commented on %s's post"] = "%s a commenté la publication de %s";
|
||||
$a->strings["%s created a new post"] = "%s a créé une nouvelle publication";
|
||||
$a->strings["%s liked %s's post"] = "%s a aimé la publication de %s";
|
||||
$a->strings["%s disliked %s's post"] = "%s n'a pas aimé la publication de %s";
|
||||
$a->strings["%s is attending %s's event"] = "%s participe à l'événement de %s";
|
||||
$a->strings["%s is not attending %s's event"] = "%s ne participe pas à l'événement de %s";
|
||||
$a->strings["%s may attend %s's event"] = "%s participera peut-être à l'événement de %s";
|
||||
$a->strings["%s is now friends with %s"] = "%s est désormais ami(e) avec %s";
|
||||
$a->strings["Friend Suggestion"] = "Suggestion d'amitié/contact";
|
||||
$a->strings["Friend/Connect Request"] = "Demande de connexion/relation";
|
||||
$a->strings["New Follower"] = "Nouvel abonné";
|
||||
$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nLes développeurs de Friendica ont récemment publié la mise à jour %s, mais en tentant de l’installer, quelque chose s’est terriblement mal passé. Une réparation s’impose et je ne peux pas la faire tout seul. Contactez un développeur Friendica si vous ne pouvez pas corriger le problème vous-même. Il est possible que ma base de données soit corrompue.";
|
||||
$a->strings["The error message is\n[pre]%s[/pre]"] = "Le message d’erreur est\n[pre]%s[/pre]";
|
||||
$a->strings["Errors encountered creating database tables."] = "Des erreurs ont été signalées lors de la création des tables.";
|
||||
$a->strings["Errors encountered performing database changes."] = "Des erreurs sont survenues lors de la mise à jour de la base de données.";
|
||||
$a->strings["(no subject)"] = "(sans titre)";
|
||||
$a->strings["Sharing notification from Diaspora network"] = "Notification de partage du réseau Diaspora";
|
||||
$a->strings["Attachments:"] = "Pièces jointes : ";
|
||||
$a->strings["view full size"] = "voir en pleine taille";
|
||||
$a->strings["View Profile"] = "Voir le profil";
|
||||
$a->strings["View Status"] = "Voir les statuts";
|
||||
$a->strings["View Photos"] = "Voir les photos";
|
||||
$a->strings["Network Posts"] = "Publications du réseau";
|
||||
$a->strings["View Contact"] = "";
|
||||
$a->strings["Drop Contact"] = "Supprimer le contact";
|
||||
$a->strings["Send PM"] = "Message privé";
|
||||
$a->strings["Poke"] = "Sollicitations (pokes)";
|
||||
$a->strings["Organisation"] = "";
|
||||
$a->strings["News"] = "";
|
||||
$a->strings["Forum"] = "Forum";
|
||||
$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Le quota journalier de %d publications a été atteint. La publication a été rejetée.";
|
||||
$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Le quota hebdomadaire de %d publications a été atteint. La publication a été rejetée.";
|
||||
$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Le quota mensuel de %d publications a été atteint. La publication a été rejetée.";
|
||||
$a->strings["Image/photo"] = "Image/photo";
|
||||
$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
|
||||
$a->strings["$1 wrote:"] = "$1 a écrit:";
|
||||
$a->strings["Encrypted content"] = "Contenu chiffré";
|
||||
$a->strings["Invalid source protocol"] = "";
|
||||
$a->strings["Invalid link protocol"] = "";
|
||||
$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s participe à %3\$s de %2\$s";
|
||||
$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s ne participe pas à %3\$s de %2\$s";
|
||||
$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s participe peut-être à %3\$s de %2\$s";
|
||||
$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s est désormais lié à %2\$s";
|
||||
$a->strings["%1\$s poked %2\$s"] = "%1\$s a sollicité %2\$s";
|
||||
$a->strings["%1\$s is currently %2\$s"] = "%1\$s est d'humeur %2\$s";
|
||||
$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a étiqueté %3\$s de %2\$s avec %4\$s";
|
||||
$a->strings["post/item"] = "publication/élément";
|
||||
$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s a marqué le %3\$s de %2\$s comme favori";
|
||||
$a->strings["Likes"] = "Derniers \"J'aime\"";
|
||||
$a->strings["Dislikes"] = "Derniers \"Je n'aime pas\"";
|
||||
$a->strings["Attending"] = array(
|
||||
0 => "Participe",
|
||||
1 => "Participent",
|
||||
);
|
||||
$a->strings["Not attending"] = "Ne participe pas";
|
||||
$a->strings["Might attend"] = "Participera peut-être";
|
||||
$a->strings["Select"] = "Sélectionner";
|
||||
$a->strings["Delete"] = "Supprimer";
|
||||
$a->strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s";
|
||||
$a->strings["Categories:"] = "Catégories:";
|
||||
$a->strings["Filed under:"] = "Rangé sous:";
|
||||
$a->strings["%s from %s"] = "%s de %s";
|
||||
$a->strings["View in context"] = "Voir dans le contexte";
|
||||
$a->strings["Please wait"] = "Patientez";
|
||||
$a->strings["remove"] = "enlever";
|
||||
$a->strings["Delete Selected Items"] = "Supprimer les éléments sélectionnés";
|
||||
$a->strings["Follow Thread"] = "Suivre le fil";
|
||||
$a->strings["%s likes this."] = "%s aime ça.";
|
||||
$a->strings["%s doesn't like this."] = "%s n'aime pas ça.";
|
||||
$a->strings["%s attends."] = "%s participe";
|
||||
$a->strings["%s doesn't attend."] = "%s ne participe pas";
|
||||
$a->strings["%s attends maybe."] = "%s participe peut-être";
|
||||
$a->strings["and"] = "et";
|
||||
$a->strings[", and %d other people"] = ", et %d autres personnes";
|
||||
$a->strings["<span %1\$s>%2\$d people</span> like this"] = "<span %1\$s>%2\$d personnes</span> aiment ça";
|
||||
$a->strings["%s like this."] = "%s aime ça.";
|
||||
$a->strings["<span %1\$s>%2\$d people</span> don't like this"] = "<span %1\$s>%2\$d personnes</span> n'aiment pas ça";
|
||||
$a->strings["%s don't like this."] = "%s n'aiment pas ça.";
|
||||
$a->strings["<span %1\$s>%2\$d people</span> attend"] = "<span %1\$s>%2\$d personnes</span> participent";
|
||||
$a->strings["%s attend."] = "%s participent.";
|
||||
$a->strings["<span %1\$s>%2\$d people</span> don't attend"] = "<span %1\$s>%2\$d personnes</span> ne participent pas";
|
||||
$a->strings["%s don't attend."] = "%s ne participent pas.";
|
||||
$a->strings["<span %1\$s>%2\$d people</span> attend maybe"] = "<span %1\$s>%2\$d personnes</span> vont peut-être participer";
|
||||
$a->strings["%s anttend maybe."] = "%s participent peut-être.";
|
||||
$a->strings["Visible to <strong>everybody</strong>"] = "Visible par <strong>tout le monde</strong>";
|
||||
$a->strings["Please enter a link URL:"] = "Entrez un lien web:";
|
||||
$a->strings["Please enter a video link/URL:"] = "Entrez un lien/URL video :";
|
||||
$a->strings["Please enter an audio link/URL:"] = "Entrez un lien/URL audio :";
|
||||
$a->strings["Tag term:"] = "Terme d'étiquette:";
|
||||
$a->strings["Save to Folder:"] = "Sauver dans le Dossier:";
|
||||
$a->strings["Where are you right now?"] = "Où êtes-vous présentemment?";
|
||||
$a->strings["Delete item(s)?"] = "Supprimer les élément(s) ?";
|
||||
$a->strings["Share"] = "Partager";
|
||||
$a->strings["Upload photo"] = "Joindre photo";
|
||||
$a->strings["upload photo"] = "envoi image";
|
||||
$a->strings["Attach file"] = "Joindre fichier";
|
||||
$a->strings["attach file"] = "ajout fichier";
|
||||
$a->strings["Insert web link"] = "Insérer lien web";
|
||||
$a->strings["web link"] = "lien web";
|
||||
$a->strings["Insert video link"] = "Insérer un lien video";
|
||||
$a->strings["video link"] = "lien vidéo";
|
||||
$a->strings["Insert audio link"] = "Insérer un lien audio";
|
||||
$a->strings["audio link"] = "lien audio";
|
||||
$a->strings["Set your location"] = "Définir votre localisation";
|
||||
$a->strings["set location"] = "spéc. localisation";
|
||||
$a->strings["Clear browser location"] = "Effacer la localisation du navigateur";
|
||||
$a->strings["clear location"] = "supp. localisation";
|
||||
$a->strings["Set title"] = "Définir un titre";
|
||||
$a->strings["Categories (comma-separated list)"] = "Catégories (séparées par des virgules)";
|
||||
$a->strings["Permission settings"] = "Réglages des permissions";
|
||||
$a->strings["permissions"] = "permissions";
|
||||
$a->strings["Public post"] = "Publication publique";
|
||||
$a->strings["Preview"] = "Aperçu";
|
||||
$a->strings["Cancel"] = "Annuler";
|
||||
$a->strings["Post to Groups"] = "Publier aux groupes";
|
||||
$a->strings["Post to Contacts"] = "Publier aux contacts";
|
||||
$a->strings["Private post"] = "Message privé";
|
||||
$a->strings["Message"] = "Message";
|
||||
$a->strings["Browser"] = "Navigateur";
|
||||
$a->strings["View all"] = "Voir tout";
|
||||
$a->strings["Like"] = array(
|
||||
0 => "Like",
|
||||
1 => "Likes",
|
||||
);
|
||||
$a->strings["Dislike"] = array(
|
||||
0 => "Dislike",
|
||||
1 => "Dislikes",
|
||||
);
|
||||
$a->strings["Not Attending"] = array(
|
||||
0 => "Ne participe pas",
|
||||
1 => "Ne participent pas",
|
||||
);
|
||||
$a->strings["%s\\'s birthday"] = "Anniversaire de %s";
|
||||
$a->strings["General Features"] = "Fonctions générales";
|
||||
$a->strings["Multiple Profiles"] = "Profils multiples";
|
||||
$a->strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils";
|
||||
$a->strings["Photo Location"] = "Lieu de prise de la photo";
|
||||
$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Les métadonnées des photos sont normalement retirées. Ceci permet de sauver l'emplacement (si présent) et de positionner la photo sur une carte.";
|
||||
$a->strings["Export Public Calendar"] = "Exporter le Calendrier Public";
|
||||
$a->strings["Ability for visitors to download the public calendar"] = "Les visiteurs peuvent télécharger le calendrier public";
|
||||
$a->strings["Post Composition Features"] = "Caractéristiques de composition de publication";
|
||||
$a->strings["Richtext Editor"] = "Éditeur de texte enrichi";
|
||||
$a->strings["Enable richtext editor"] = "Activer l'éditeur de texte enrichi";
|
||||
$a->strings["Post Preview"] = "Aperçu de la publication";
|
||||
$a->strings["Allow previewing posts and comments before publishing them"] = "Permet la prévisualisation des publications et commentaires avant de les publier";
|
||||
$a->strings["Auto-mention Forums"] = "Mentionner automatiquement les Forums";
|
||||
$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Ajoute/retire une mention quand une page forum est sélectionnée/désélectionnée lors du choix des destinataires d'une publication.";
|
||||
$a->strings["Network Sidebar Widgets"] = "Widgets réseau pour barre latérale";
|
||||
$a->strings["Search by Date"] = "Rechercher par Date";
|
||||
$a->strings["Ability to select posts by date ranges"] = "Capacité de sélectionner les publications par intervalles de dates";
|
||||
$a->strings["List Forums"] = "Liste des forums";
|
||||
$a->strings["Enable widget to display the forums your are connected with"] = "Activer le widget pour afficher les forums auxquels vous êtes connecté";
|
||||
$a->strings["Group Filter"] = "Filtre de groupe";
|
||||
$a->strings["Enable widget to display Network posts only from selected group"] = "Activer le widget d’affichage des publications du réseau seulement pour le groupe sélectionné";
|
||||
$a->strings["Network Filter"] = "Filtre de réseau";
|
||||
$a->strings["Enable widget to display Network posts only from selected network"] = "Activer le widget d’affichage des publications du réseau seulement pour le réseau sélectionné";
|
||||
$a->strings["Saved Searches"] = "Recherches";
|
||||
$a->strings["Save search terms for re-use"] = "Sauvegarder la recherche pour une utilisation ultérieure";
|
||||
$a->strings["Network Tabs"] = "Onglets Réseau";
|
||||
$a->strings["Network Personal Tab"] = "Onglet Réseau Personnel";
|
||||
$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Activer l'onglet pour afficher seulement les publications du réseau où vous avez interagit";
|
||||
$a->strings["Network New Tab"] = "Nouvel onglet réseaux";
|
||||
$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Activer l'onglet pour afficher seulement les publications du réseau (dans les 12 dernières heures)";
|
||||
$a->strings["Network Shared Links Tab"] = "Onglet réseau partagé";
|
||||
$a->strings["Enable tab to display only Network posts with links in them"] = "Activer l'onglet pour afficher seulement les publications du réseau contenant des liens";
|
||||
$a->strings["Post/Comment Tools"] = "outils de publication/commentaire";
|
||||
$a->strings["Multiple Deletion"] = "Suppression multiple";
|
||||
$a->strings["Select and delete multiple posts/comments at once"] = "Sélectionner et supprimer plusieurs publications/commentaires à la fois";
|
||||
$a->strings["Edit Sent Posts"] = "Éditer les publications envoyées";
|
||||
$a->strings["Edit and correct posts and comments after sending"] = "Éditer et corriger les publications et commentaires après l'envoi";
|
||||
$a->strings["Tagging"] = "Étiquettage";
|
||||
$a->strings["Ability to tag existing posts"] = "Possibilité d'étiqueter les publications existantes";
|
||||
$a->strings["Post Categories"] = "Catégories des publications";
|
||||
$a->strings["Add categories to your posts"] = "Ajouter des catégories à vos publications";
|
||||
$a->strings["Ability to file posts under folders"] = "Possibilité d'afficher les publications sous les répertoires";
|
||||
$a->strings["Dislike Posts"] = "Publications non aimées";
|
||||
$a->strings["Ability to dislike posts/comments"] = "Possibilité de ne pas aimer les publications/commentaires";
|
||||
$a->strings["Star Posts"] = "Publications spéciales";
|
||||
$a->strings["Ability to mark special posts with a star indicator"] = "Possibilité de marquer les publications spéciales d'une étoile";
|
||||
$a->strings["Mute Post Notifications"] = "Ignorer les notifications du post";
|
||||
$a->strings["Ability to mute notifications for a thread"] = "Permettre d'ignorer les notifications d'un fil de discussion";
|
||||
$a->strings["Advanced Profile Settings"] = "Paramètres Avancés du Profil";
|
||||
$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Montrer les forums communautaires aux visiteurs sur la Page de profil avancé";
|
||||
$a->strings["Disallowed profile URL."] = "URL de profil interdite.";
|
||||
$a->strings["Connect URL missing."] = "URL de connexion manquante.";
|
||||
$a->strings["This site is not configured to allow communications with other networks."] = "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux.";
|
||||
$a->strings["No compatible communication protocols or feeds were discovered."] = "Aucun protocole de communication ni aucun flux n'a pu être découvert.";
|
||||
$a->strings["The profile address specified does not provide adequate information."] = "L'adresse de profil indiquée ne fournit par les informations adéquates.";
|
||||
$a->strings["An author or name was not found."] = "Aucun auteur ou nom d'auteur n'a pu être trouvé.";
|
||||
$a->strings["No browser URL could be matched to this address."] = "Aucune URL de navigation ne correspond à cette adresse.";
|
||||
$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel.";
|
||||
$a->strings["Use mailto: in front of address to force email check."] = "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel.";
|
||||
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site.";
|
||||
$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part.";
|
||||
$a->strings["Unable to retrieve contact information."] = "Impossible de récupérer les informations du contact.";
|
||||
$a->strings["Requested account is not available."] = "Le compte demandé n'est pas disponible.";
|
||||
$a->strings["Requested profile is not available."] = "Le profil demandé n'est pas disponible.";
|
||||
$a->strings["Edit profile"] = "Editer le profil";
|
||||
$a->strings["Atom feed"] = "Flux Atom";
|
||||
$a->strings["Manage/edit profiles"] = "Gérer/éditer les profils";
|
||||
$a->strings["Change profile photo"] = "Changer de photo de profil";
|
||||
$a->strings["Create New Profile"] = "Créer un nouveau profil";
|
||||
$a->strings["Profile Image"] = "Image du profil";
|
||||
$a->strings["visible to everybody"] = "visible par tous";
|
||||
$a->strings["Edit visibility"] = "Changer la visibilité";
|
||||
$a->strings["Gender:"] = "Genre:";
|
||||
$a->strings["Status:"] = "Statut:";
|
||||
$a->strings["Homepage:"] = "Page personnelle:";
|
||||
$a->strings["About:"] = "À propos:";
|
||||
$a->strings["XMPP:"] = "";
|
||||
$a->strings["Network:"] = "Réseau";
|
||||
$a->strings["g A l F d"] = "g A | F d";
|
||||
$a->strings["F d"] = "F d";
|
||||
$a->strings["[today]"] = "[aujourd'hui]";
|
||||
$a->strings["Birthday Reminders"] = "Rappels d'anniversaires";
|
||||
$a->strings["Birthdays this week:"] = "Anniversaires cette semaine:";
|
||||
$a->strings["[No description]"] = "[Sans description]";
|
||||
$a->strings["Event Reminders"] = "Rappels d'événements";
|
||||
$a->strings["Events this week:"] = "Evénements cette semaine :";
|
||||
$a->strings["Full Name:"] = "Nom complet:";
|
||||
$a->strings["j F, Y"] = "j F, Y";
|
||||
$a->strings["j F"] = "j F";
|
||||
$a->strings["Age:"] = "Age:";
|
||||
$a->strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s";
|
||||
$a->strings["Sexual Preference:"] = "Préférence sexuelle:";
|
||||
$a->strings["Hometown:"] = " Ville d'origine:";
|
||||
$a->strings["Tags:"] = "Étiquette:";
|
||||
$a->strings["Political Views:"] = "Opinions politiques:";
|
||||
$a->strings["Religion:"] = "Religion:";
|
||||
$a->strings["Hobbies/Interests:"] = "Passe-temps/Centres d'intérêt:";
|
||||
$a->strings["Likes:"] = "J'aime :";
|
||||
$a->strings["Dislikes:"] = "Je n'aime pas :";
|
||||
$a->strings["Contact information and Social Networks:"] = "Coordonnées/Réseaux sociaux:";
|
||||
$a->strings["Musical interests:"] = "Goûts musicaux:";
|
||||
$a->strings["Books, literature:"] = "Lectures:";
|
||||
$a->strings["Television:"] = "Télévision:";
|
||||
$a->strings["Film/dance/culture/entertainment:"] = "Cinéma/Danse/Culture/Divertissement:";
|
||||
$a->strings["Love/Romance:"] = "Amour/Romance:";
|
||||
$a->strings["Work/employment:"] = "Activité professionnelle/Occupation:";
|
||||
$a->strings["School/education:"] = "Études/Formation:";
|
||||
$a->strings["Forums:"] = "Forums :";
|
||||
$a->strings["Basic"] = "Simple";
|
||||
$a->strings["Advanced"] = "Avancé";
|
||||
$a->strings["Status Messages and Posts"] = "Messages d'état et publications";
|
||||
$a->strings["Profile Details"] = "Détails du profil";
|
||||
$a->strings["Photo Albums"] = "Albums photo";
|
||||
$a->strings["Personal Notes"] = "Notes personnelles";
|
||||
$a->strings["Only You Can See This"] = "Vous seul pouvez voir ça";
|
||||
$a->strings["[Name Withheld]"] = "[Nom non-publié]";
|
||||
$a->strings["Item not found."] = "Élément introuvable.";
|
||||
$a->strings["Do you really want to delete this item?"] = "Voulez-vous vraiment supprimer cet élément ?";
|
||||
$a->strings["Yes"] = "Oui";
|
||||
$a->strings["Permission denied."] = "Permission refusée.";
|
||||
$a->strings["Archives"] = "Archives";
|
||||
$a->strings["Embedded content"] = "Contenu incorporé";
|
||||
$a->strings["Embedding disabled"] = "Incorporation désactivée";
|
||||
$a->strings["%s is now following %s."] = "";
|
||||
$a->strings["following"] = "following";
|
||||
$a->strings["%s stopped following %s."] = "";
|
||||
$a->strings["stopped following"] = "retiré de la liste de suivi";
|
||||
$a->strings["newer"] = "Plus récent";
|
||||
$a->strings["older"] = "Plus ancien";
|
||||
$a->strings["prev"] = "précédent";
|
||||
$a->strings["first"] = "premier";
|
||||
$a->strings["last"] = "dernier";
|
||||
$a->strings["prev"] = "précédent";
|
||||
$a->strings["next"] = "suivant";
|
||||
$a->strings["last"] = "dernier";
|
||||
$a->strings["Loading more entries..."] = "Chargement de résultats supplémentaires...";
|
||||
$a->strings["The end"] = "Fin";
|
||||
$a->strings["No contacts"] = "Aucun contact";
|
||||
|
|
@ -689,6 +661,8 @@ $a->strings["frustrated"] = "frustré";
|
|||
$a->strings["motivated"] = "motivée";
|
||||
$a->strings["relaxed"] = "détendue";
|
||||
$a->strings["surprised"] = "surprise";
|
||||
$a->strings["Sund"] = "";
|
||||
$a->strings["Sep"] = "";
|
||||
$a->strings["View Video"] = "Regarder la vidéo";
|
||||
$a->strings["bytes"] = "octets";
|
||||
$a->strings["Click to open/close"] = "Cliquer pour ouvrir/fermer";
|
||||
|
|
@ -701,6 +675,17 @@ $a->strings["comment"] = array(
|
|||
);
|
||||
$a->strings["post"] = "publication";
|
||||
$a->strings["Item filed"] = "Élément classé";
|
||||
$a->strings["Error decoding account file"] = "Une erreur a été détecté en décodant un fichier utilisateur";
|
||||
$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?";
|
||||
$a->strings["Error! Cannot check nickname"] = "Erreur! Pseudo invalide";
|
||||
$a->strings["User '%s' already exists on this server!"] = "L'utilisateur '%s' existe déjà sur ce serveur!";
|
||||
$a->strings["User creation error"] = "Erreur de création d'utilisateur";
|
||||
$a->strings["User profile creation error"] = "Erreur de création du profil utilisateur";
|
||||
$a->strings["%d contact not imported"] = array(
|
||||
0 => "%d contacts non importés",
|
||||
1 => "%d contacts non importés",
|
||||
);
|
||||
$a->strings["Done. You can now login with your username and password"] = "Action réalisée. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe";
|
||||
$a->strings["Passwords do not match. Password unchanged."] = "Les mots de passe ne correspondent pas. Aucun changement appliqué.";
|
||||
$a->strings["An invitation is required."] = "Une invitation est requise.";
|
||||
$a->strings["Invitation could not be verified."] = "L'invitation fournie n'a pu être validée.";
|
||||
|
|
@ -715,206 +700,15 @@ $a->strings["Cannot use that email."] = "Impossible d'utiliser ce courriel.";
|
|||
$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Votre \"pseudonyme\" peut seulement contenir les caractères \"a-z\", \"0-9\" et \"_\".";
|
||||
$a->strings["Nickname is already registered. Please choose another."] = "Pseudo déjà utilisé. Merci d'en choisir un autre.";
|
||||
$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre.";
|
||||
$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué.";
|
||||
$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERREUR FATALE : La génération des clés de sécurité a échoué.";
|
||||
$a->strings["An error occurred during registration. Please try again."] = "Une erreur est survenue lors de l'inscription. Merci de recommencer.";
|
||||
$a->strings["default"] = "défaut";
|
||||
$a->strings["An error occurred creating your default profile. Please try again."] = "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer.";
|
||||
$a->strings["Profile Photos"] = "Photos du profil";
|
||||
$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "";
|
||||
$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\n\t\tCher %1\$s,\nMerci pour votre inscription sur %2\$s. Votre compte est en attente de l'approbation de l'administrateur.\n\t";
|
||||
$a->strings["Registration at %s"] = "";
|
||||
$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tChère/Cher %1\$s,\n\t\t\tMerci de vous être inscrit sur %2\$s. Votre compte a bien été créé.\n\t";
|
||||
$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\n\t\tVoici vos informations de connexion :\n\t\t\tAdresse :\t%3\$s\n\t\t\tIdentifiant :\t%1\$s\n\t\t\tMot de passe :\t%5\$s\n\n\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\n\t\tMerci et bienvenu sur %2\$s.";
|
||||
$a->strings["Registration details for %s"] = "Détails d'inscription pour %s";
|
||||
$a->strings["Post successful."] = "Publication réussie.";
|
||||
$a->strings["Access denied."] = "Accès refusé.";
|
||||
$a->strings["Welcome to %s"] = "Bienvenue sur %s";
|
||||
$a->strings["No more system notifications."] = "Pas plus de notifications système.";
|
||||
$a->strings["System Notifications"] = "Notifications du système";
|
||||
$a->strings["Remove term"] = "Retirer le terme";
|
||||
$a->strings["Public access denied."] = "Accès public refusé.";
|
||||
$a->strings["Only logged in users are permitted to perform a search."] = "Seuls les utilisateurs inscrits sont autorisés à lancer une recherche.";
|
||||
$a->strings["Too Many Requests"] = "Trop de requêtes";
|
||||
$a->strings["Only one search per minute is permitted for not logged in users."] = "Une seule recherche par minute pour les utilisateurs qui ne sont pas connectés.";
|
||||
$a->strings["No results."] = "Aucun résultat.";
|
||||
$a->strings["Items tagged with: %s"] = "Éléments taggés %s";
|
||||
$a->strings["Results for: %s"] = "Résultats pour : %s";
|
||||
$a->strings["This is Friendica, version"] = "Motorisé par Friendica version";
|
||||
$a->strings["running at web location"] = "hébergé sur";
|
||||
$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Merci de vous rendre sur <a href=\"http://friendica.com\">Friendica.com</a> si vous souhaitez en savoir plus sur le projet Friendica.";
|
||||
$a->strings["Bug reports and issues: please visit"] = "Pour les rapports de bugs: rendez vous sur";
|
||||
$a->strings["the bugtracker at github"] = "le bugtracker sur GitHub";
|
||||
$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com";
|
||||
$a->strings["Installed plugins/addons/apps:"] = "Extensions/greffons/applications installées:";
|
||||
$a->strings["No installed plugins/addons/apps"] = "Extensions/greffons/applications non installées:";
|
||||
$a->strings["No valid account found."] = "Impossible de trouver un compte valide.";
|
||||
$a->strings["Password reset request issued. Check your email."] = "Réinitialisation du mot de passe en cours. Vérifiez votre courriel.";
|
||||
$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tChère/Cher %1\$s,\n\t\t\tNous avons reçu une demande de ré-initialisation du mot de passe de votre compte sur \"%2\$s\". Pour confirmer cette demande, veuillez cliquer sur le lien de vérification ci-dessous ou le coller dans la barre d’adresse de votre navigateur.\n\n\t\tSi vous n’êtes PAS à l’origine de cette demande, NE suivez PAS le lien—ignorez et/ou supprimez ce message.\n\n\t\tVotre mot de passe ne sera pas modifié si nous n’avons pas de confirmation que la demande émane de vous.";
|
||||
$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tSuivez ce lien pour confirmer votre identité :\n\n\t\t%1\$s\n\n\t\tVous recevrez alors a message contenant votre nouveau mot de passe.\n\t\tVous pourrez changer ce mot de passe depuis les paramètres de votre compte une fois connecté.\n\n\t\tInformations de connexion :\n\n\t\tAdresse :\t%2\$s\n\t\tIdentifiant :\t%3\$s";
|
||||
$a->strings["Password reset requested at %s"] = "Requête de réinitialisation de mot de passe à %s";
|
||||
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué.";
|
||||
$a->strings["Password Reset"] = "Réinitialiser le mot de passe";
|
||||
$a->strings["Your password has been reset as requested."] = "Votre mot de passe a bien été réinitialisé.";
|
||||
$a->strings["Your new password is"] = "Votre nouveau mot de passe est ";
|
||||
$a->strings["Save or copy your new password - and then"] = "Sauvez ou copiez ce nouveau mot de passe - puis";
|
||||
$a->strings["click here to login"] = "cliquez ici pour vous connecter";
|
||||
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Votre mot de passe peut être changé depuis la page <em>Réglages</em>, une fois que vous serez connecté.";
|
||||
$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tChère/Cher %1\$s,\n\t\t\t\t\tVotre mot de passe a été changé ainsi que vous l’avez demandé. Veuillez conserver cette informations dans vos archives (ou changer immédiatement votre mot de passe pour un autre dont vous vous souviendrez).\n\t\t\t";
|
||||
$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\n\t\t\t\tVoici vos informations de connexion :\n\n\t\t\t\tAdresse :\t%1\$s\n\t\t\t\tIdentifiant :\t%2\$s\n\t\t\t\tMot de passe :\t%3\$s\n\n\t\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\t\t\t";
|
||||
$a->strings["Your password has been changed at %s"] = "Votre mot de passe a été modifié à %s";
|
||||
$a->strings["Forgot your Password?"] = "Mot de passe oublié ?";
|
||||
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel.";
|
||||
$a->strings["Nickname or Email: "] = "Pseudo ou eMail : ";
|
||||
$a->strings["Reset"] = "Réinitialiser";
|
||||
$a->strings["No profile"] = "Aucun profil";
|
||||
$a->strings["Help:"] = "Aide :";
|
||||
$a->strings["Not Found"] = "Non trouvé";
|
||||
$a->strings["Page not found."] = "Page introuvable.";
|
||||
$a->strings["Remote privacy information not available."] = "Informations de confidentialité indisponibles.";
|
||||
$a->strings["Visible to:"] = "Visible par:";
|
||||
$a->strings["OpenID protocol error. No ID returned."] = "Erreur de protocole OpenID. Pas d'ID en retour.";
|
||||
$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site.";
|
||||
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain.";
|
||||
$a->strings["Import"] = "Importer";
|
||||
$a->strings["Move account"] = "Migrer le compte";
|
||||
$a->strings["You can import an account from another Friendica server."] = "Vous pouvez importer un compte d'un autre serveur Friendica.";
|
||||
$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici.";
|
||||
$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Cette fonctionalité est expérimentale. Il n'est pas possible d'importer des contacts depuis le réseau OStatus (GNU Social/Statusnet) ou depuis Diaspora.";
|
||||
$a->strings["Account file"] = "Fichier du compte";
|
||||
$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\"";
|
||||
$a->strings["Visit %s's profile [%s]"] = "Visiter le profil de %s [%s]";
|
||||
$a->strings["Edit contact"] = "Éditer le contact";
|
||||
$a->strings["Contacts who are not members of a group"] = "Contacts qui n’appartiennent à aucun groupe";
|
||||
$a->strings["Export account"] = "Exporter le compte";
|
||||
$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur.";
|
||||
$a->strings["Export all"] = "Tout exporter";
|
||||
$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos).";
|
||||
$a->strings["Export personal data"] = "Exporter";
|
||||
$a->strings["Total invitation limit exceeded."] = "La limite d'invitation totale est éxédée.";
|
||||
$a->strings["%s : Not a valid email address."] = "%s : Adresse de courriel invalide.";
|
||||
$a->strings["Please join us on Friendica"] = "Rejoignez-nous sur Friendica";
|
||||
$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site.";
|
||||
$a->strings["%s : Message delivery failed."] = "%s : L'envoi du message a échoué.";
|
||||
$a->strings["%d message sent."] = array(
|
||||
0 => "%d message envoyé.",
|
||||
1 => "%d messages envoyés.",
|
||||
);
|
||||
$a->strings["You have no more invitations available"] = "Vous n'avez plus d'invitations disponibles";
|
||||
$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux.";
|
||||
$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public.";
|
||||
$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre.";
|
||||
$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres.";
|
||||
$a->strings["Send invitations"] = "Envoyer des invitations";
|
||||
$a->strings["Enter email addresses, one per line:"] = "Entrez les adresses email, une par ligne :";
|
||||
$a->strings["Your message:"] = "Votre message:";
|
||||
$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social.";
|
||||
$a->strings["You will need to supply this invitation code: \$invite_code"] = "Vous devrez fournir ce code d'invitation : \$invite_code";
|
||||
$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Une fois inscrit, connectez-vous à la page de mon profil sur :";
|
||||
$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com";
|
||||
$a->strings["Submit"] = "Envoyer";
|
||||
$a->strings["Files"] = "Fichiers";
|
||||
$a->strings["Permission denied"] = "Permission refusée";
|
||||
$a->strings["Invalid profile identifier."] = "Identifiant de profil invalide.";
|
||||
$a->strings["Profile Visibility Editor"] = "Éditer la visibilité du profil";
|
||||
$a->strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le supprimer.";
|
||||
$a->strings["Visible To"] = "Visible par";
|
||||
$a->strings["All Contacts (with secure profile access)"] = "Tous les contacts (ayant un accès sécurisé)";
|
||||
$a->strings["Tag removed"] = "Étiquette supprimée";
|
||||
$a->strings["Remove Item Tag"] = "Enlever l'étiquette de l'élément";
|
||||
$a->strings["Select a tag to remove: "] = "Sélectionner une étiquette à supprimer: ";
|
||||
$a->strings["Remove"] = "Utiliser comme photo de profil";
|
||||
$a->strings["Resubscribing to OStatus contacts"] = "Réinscription aux contacts OStatus";
|
||||
$a->strings["Error"] = "Erreur";
|
||||
$a->strings["Done"] = "Terminé";
|
||||
$a->strings["Keep this window open until done."] = "Veuillez garder cette fenêtre ouverte jusqu'à la fin.";
|
||||
$a->strings["No potential page delegates located."] = "Pas de délégataire potentiel.";
|
||||
$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue.";
|
||||
$a->strings["Existing Page Managers"] = "Gestionnaires existants";
|
||||
$a->strings["Existing Page Delegates"] = "Délégataires existants";
|
||||
$a->strings["Potential Delegates"] = "Délégataires potentiels";
|
||||
$a->strings["Add"] = "Ajouter";
|
||||
$a->strings["No entries."] = "Aucune entrée.";
|
||||
$a->strings["Credits"] = "Remerciements";
|
||||
$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica est un projet communautaire, qui ne serait pas possible sans l'aide de beaucoup de gens. Voici une liste de ceux qui ont contribué au code ou à la traduction de Friendica. Merci à tous!";
|
||||
$a->strings["- select -"] = "- choisir -";
|
||||
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit les %3\$s de %2\$s";
|
||||
$a->strings["Item not available."] = "Elément non disponible.";
|
||||
$a->strings["Item was not found."] = "Element introuvable.";
|
||||
$a->strings["You must be logged in to use addons. "] = "Vous devez être connecté pour utiliser les greffons.";
|
||||
$a->strings["Applications"] = "Applications";
|
||||
$a->strings["No installed applications."] = "Pas d'application installée.";
|
||||
$a->strings["Not Extended"] = "";
|
||||
$a->strings["Welcome to Friendica"] = "Bienvenue sur Friendica";
|
||||
$a->strings["New Member Checklist"] = "Checklist du nouvel utilisateur";
|
||||
$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement.";
|
||||
$a->strings["Getting Started"] = "Bien démarrer";
|
||||
$a->strings["Friendica Walk-Through"] = "Friendica pas-à-pas";
|
||||
$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sur votre page d'accueil, dans <em>Conseils aux nouveaux venus</em> - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre.";
|
||||
$a->strings["Go to Your Settings"] = "Éditer vos Réglages";
|
||||
$a->strings["On your <em>Settings</em> page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Sur la page des <em>Réglages</em> - changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre.";
|
||||
$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver.";
|
||||
$a->strings["Upload Profile Photo"] = "Téléverser une photo de profil";
|
||||
$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis.";
|
||||
$a->strings["Edit Your Profile"] = "Éditer votre Profil";
|
||||
$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Éditez votre profil <strong>par défaut</strong> à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus.";
|
||||
$a->strings["Profile Keywords"] = "Mots-clés du profil";
|
||||
$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent.";
|
||||
$a->strings["Connecting"] = "Connexions";
|
||||
$a->strings["Importing Emails"] = "Importer courriels";
|
||||
$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception.";
|
||||
$a->strings["Go to Your Contacts Page"] = "Consulter vos Contacts";
|
||||
$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire <em>Ajouter un nouveau contact</em>.";
|
||||
$a->strings["Go to Your Site's Directory"] = "Consulter l'Annuaire de votre Site";
|
||||
$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien <em>Relier</em> ou <em>Suivre</em> sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité.";
|
||||
$a->strings["Finding New People"] = "Trouver de nouvelles personnes";
|
||||
$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures.";
|
||||
$a->strings["Group Your Contacts"] = "Grouper vos contacts";
|
||||
$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau.";
|
||||
$a->strings["Why Aren't My Posts Public?"] = "Pourquoi mes éléments ne sont pas publics ?";
|
||||
$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus.";
|
||||
$a->strings["Getting Help"] = "Obtenir de l'aide";
|
||||
$a->strings["Go to the Help Section"] = "Aller à la section Aide";
|
||||
$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Nos pages d'<strong>aide</strong> peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources.";
|
||||
$a->strings["Remove My Account"] = "Supprimer mon compte";
|
||||
$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Ceci supprimera totalement votre compte. Cette opération est irréversible.";
|
||||
$a->strings["Please enter your password for verification:"] = "Merci de saisir votre mot de passe pour vérification :";
|
||||
$a->strings["Item not found"] = "Élément introuvable";
|
||||
$a->strings["Edit post"] = "Éditer la publication";
|
||||
$a->strings["Time Conversion"] = "Conversion temporelle";
|
||||
$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire.";
|
||||
$a->strings["UTC time: %s"] = "Temps UTC : %s";
|
||||
$a->strings["Current timezone: %s"] = "Zone de temps courante : %s";
|
||||
$a->strings["Converted localtime: %s"] = "Temps local converti : %s";
|
||||
$a->strings["Please select your timezone:"] = "Sélectionner votre zone :";
|
||||
$a->strings["The post was created"] = "La publication a été créée";
|
||||
$a->strings["Group created."] = "Groupe créé.";
|
||||
$a->strings["Could not create group."] = "Impossible de créer le groupe.";
|
||||
$a->strings["Group not found."] = "Groupe introuvable.";
|
||||
$a->strings["Group name changed."] = "Groupe renommé.";
|
||||
$a->strings["Save Group"] = "Sauvegarder le groupe";
|
||||
$a->strings["Create a group of contacts/friends."] = "Créez un groupe de contacts/amis.";
|
||||
$a->strings["Group removed."] = "Groupe enlevé.";
|
||||
$a->strings["Unable to remove group."] = "Impossible d'enlever le groupe.";
|
||||
$a->strings["Group Editor"] = "Éditeur de groupe";
|
||||
$a->strings["Members"] = "Membres";
|
||||
$a->strings["All Contacts"] = "Tous les contacts";
|
||||
$a->strings["Group is empty"] = "Groupe vide";
|
||||
$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message.";
|
||||
$a->strings["No recipient selected."] = "Pas de destinataire sélectionné.";
|
||||
$a->strings["Unable to check your home location."] = "Impossible de vérifier votre localisation.";
|
||||
$a->strings["Message could not be sent."] = "Impossible d'envoyer le message.";
|
||||
$a->strings["Message collection failure."] = "Récupération des messages infructueuse.";
|
||||
$a->strings["Message sent."] = "Message envoyé.";
|
||||
$a->strings["No recipient."] = "Pas de destinataire.";
|
||||
$a->strings["Send Private Message"] = "Envoyer un message privé";
|
||||
$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus.";
|
||||
$a->strings["To:"] = "À:";
|
||||
$a->strings["Subject:"] = "Sujet:";
|
||||
$a->strings["link"] = "lien";
|
||||
$a->strings["Authorize application connection"] = "Autoriser l'application à se connecter";
|
||||
$a->strings["Return to your app and insert this Securty Code:"] = "Retournez à votre application et saisissez ce Code de Sécurité : ";
|
||||
$a->strings["Please login to continue."] = "Merci de vous connecter pour continuer.";
|
||||
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à créer des billets à votre place?";
|
||||
$a->strings["No"] = "Non";
|
||||
$a->strings["Source (bbcode) text:"] = "Texte source (bbcode) :";
|
||||
$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Texte source (Diaspora) à convertir en BBcode :";
|
||||
$a->strings["Source input: "] = "Source input : ";
|
||||
|
|
@ -927,536 +721,34 @@ $a->strings["bb2dia2bb: "] = "bb2dia2bb : ";
|
|||
$a->strings["bb2md2html2bb: "] = "bb2md2html2bb : ";
|
||||
$a->strings["Source input (Diaspora format): "] = "Texte source (format Diaspora) :";
|
||||
$a->strings["diaspora2bb: "] = "diaspora2bb :";
|
||||
$a->strings["Subscribing to OStatus contacts"] = "Inscription aux contacts OStatus";
|
||||
$a->strings["No contact provided."] = "Pas de contact fourni.";
|
||||
$a->strings["Couldn't fetch information for contact."] = "Impossible de récupérer les informations pour ce contact.";
|
||||
$a->strings["Couldn't fetch friends for contact."] = "Impossible de récupérer les amis de ce contact.";
|
||||
$a->strings["success"] = "réussite";
|
||||
$a->strings["failed"] = "échec";
|
||||
$a->strings["ignored"] = "ignoré";
|
||||
$a->strings["%1\$s welcomes %2\$s"] = "%1\$s accueille %2\$s";
|
||||
$a->strings["Unable to locate contact information."] = "Impossible de localiser les informations du contact.";
|
||||
$a->strings["Do you really want to delete this message?"] = "Voulez-vous vraiment supprimer ce message ?";
|
||||
$a->strings["Message deleted."] = "Message supprimé.";
|
||||
$a->strings["Conversation removed."] = "Conversation supprimée.";
|
||||
$a->strings["No messages."] = "Aucun message.";
|
||||
$a->strings["Message not available."] = "Message indisponible.";
|
||||
$a->strings["Delete message"] = "Effacer message";
|
||||
$a->strings["Delete conversation"] = "Effacer conversation";
|
||||
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Pas de communications sécurisées possibles. Vous serez <strong>peut-être</strong> en mesure de répondre depuis la page de profil de l'émetteur.";
|
||||
$a->strings["Send Reply"] = "Répondre";
|
||||
$a->strings["Unknown sender - %s"] = "Émetteur inconnu - %s";
|
||||
$a->strings["You and %s"] = "Vous et %s";
|
||||
$a->strings["%s and You"] = "%s et vous";
|
||||
$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
|
||||
$a->strings["%d message"] = array(
|
||||
0 => "%d message",
|
||||
1 => "%d messages",
|
||||
);
|
||||
$a->strings["Manage Identities and/or Pages"] = "Gérer les identités et/ou les pages";
|
||||
$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer.";
|
||||
$a->strings["Select an identity to manage: "] = "Choisir une identité à gérer: ";
|
||||
$a->strings["Contact settings applied."] = "Réglages du contact appliqués.";
|
||||
$a->strings["Contact update failed."] = "Impossible d'appliquer les réglages.";
|
||||
$a->strings["Contact not found."] = "Contact introuvable.";
|
||||
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATTENTION: Manipulation réservée aux experts</strong>, toute information incorrecte pourrait empêcher la communication avec ce contact.";
|
||||
$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "une photo";
|
||||
$a->strings["No mirroring"] = "Pas de miroir";
|
||||
$a->strings["Mirror as forwarded posting"] = "";
|
||||
$a->strings["Mirror as my own posting"] = "";
|
||||
$a->strings["Return to contact editor"] = "Retour à l'éditeur de contact";
|
||||
$a->strings["Refetch contact data"] = "Récupérer à nouveau les données de contact";
|
||||
$a->strings["Remote Self"] = "Identité à distance";
|
||||
$a->strings["Mirror postings from this contact"] = "Copier les publications de ce contact";
|
||||
$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Marquer ce contact comme étant remote_self, friendica republiera alors les nouvelles entrées de ce contact.";
|
||||
$a->strings["Name"] = "Nom";
|
||||
$a->strings["Account Nickname"] = "Pseudo du compte";
|
||||
$a->strings["@Tagname - overrides Name/Nickname"] = "@NomEtiquette - prend le pas sur Nom/Pseudo";
|
||||
$a->strings["Account URL"] = "URL du compte";
|
||||
$a->strings["Friend Request URL"] = "Echec du téléversement de l'image.";
|
||||
$a->strings["Friend Confirm URL"] = "Accès public refusé.";
|
||||
$a->strings["Notification Endpoint URL"] = "Aucune photo sélectionnée";
|
||||
$a->strings["Poll/Feed URL"] = "Téléverser des photos";
|
||||
$a->strings["New photo from this URL"] = "Nouvelle photo depuis cette URL";
|
||||
$a->strings["No such group"] = "Groupe inexistant";
|
||||
$a->strings["Group: %s"] = "Group : %s";
|
||||
$a->strings["This entry was edited"] = "Cette entrée à été édité";
|
||||
$a->strings["%d comment"] = array(
|
||||
0 => "%d commentaire",
|
||||
1 => "%d commentaires",
|
||||
);
|
||||
$a->strings["Private Message"] = "Message privé";
|
||||
$a->strings["I like this (toggle)"] = "J'aime";
|
||||
$a->strings["like"] = "aime";
|
||||
$a->strings["I don't like this (toggle)"] = "Je n'aime pas";
|
||||
$a->strings["dislike"] = "n'aime pas";
|
||||
$a->strings["Share this"] = "Partager";
|
||||
$a->strings["share"] = "partager";
|
||||
$a->strings["This is you"] = "C'est vous";
|
||||
$a->strings["Comment"] = "Commenter";
|
||||
$a->strings["Bold"] = "Gras";
|
||||
$a->strings["Italic"] = "Italique";
|
||||
$a->strings["Underline"] = "Souligné";
|
||||
$a->strings["Quote"] = "Citation";
|
||||
$a->strings["Code"] = "Code";
|
||||
$a->strings["Image"] = "Image";
|
||||
$a->strings["Link"] = "Lien";
|
||||
$a->strings["Video"] = "Vidéo";
|
||||
$a->strings["Edit"] = "Éditer";
|
||||
$a->strings["add star"] = "mett en avant";
|
||||
$a->strings["remove star"] = "ne plus mettre en avant";
|
||||
$a->strings["toggle star status"] = "mettre en avant";
|
||||
$a->strings["starred"] = "mis en avant";
|
||||
$a->strings["add tag"] = "ajouter une étiquette";
|
||||
$a->strings["ignore thread"] = "ignorer le fil";
|
||||
$a->strings["unignore thread"] = "Ne plus ignorer le fil";
|
||||
$a->strings["toggle ignore status"] = "Ignorer le statut";
|
||||
$a->strings["save to folder"] = "sauver vers dossier";
|
||||
$a->strings["I will attend"] = "Je vais participer";
|
||||
$a->strings["I will not attend"] = "Je ne vais pas participer";
|
||||
$a->strings["I might attend"] = "Je vais peut-être participer";
|
||||
$a->strings["to"] = "à";
|
||||
$a->strings["Wall-to-Wall"] = "Inter-mur";
|
||||
$a->strings["via Wall-To-Wall:"] = "en Inter-mur:";
|
||||
$a->strings["Friend suggestion sent."] = "Suggestion d'amitié/contact envoyée.";
|
||||
$a->strings["Suggest Friends"] = "Suggérer des amis/contacts";
|
||||
$a->strings["Suggest a friend for %s"] = "Suggérer un ami/contact pour %s";
|
||||
$a->strings["Mood"] = "Humeur";
|
||||
$a->strings["Set your current mood and tell your friends"] = "Spécifiez votre humeur du moment, et informez vos amis";
|
||||
$a->strings["Poke/Prod"] = "Solliciter";
|
||||
$a->strings["poke, prod or do other things to somebody"] = "solliciter (poke/...) quelqu'un";
|
||||
$a->strings["Recipient"] = "Destinataire";
|
||||
$a->strings["Choose what you wish to do to recipient"] = "Choisissez ce que vous voulez faire au destinataire";
|
||||
$a->strings["Make this post private"] = "Rendez ce message privé";
|
||||
$a->strings["Image uploaded but image cropping failed."] = "Image envoyée, mais impossible de la retailler.";
|
||||
$a->strings["Image size reduction [%s] failed."] = "Réduction de la taille de l'image [%s] échouée.";
|
||||
$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement.";
|
||||
$a->strings["Unable to process image"] = "Impossible de traiter l'image";
|
||||
$a->strings["Image exceeds size limit of %s"] = "L'image dépasse la taille limite de %s";
|
||||
$a->strings["Unable to process image."] = "Impossible de traiter l'image.";
|
||||
$a->strings["Upload File:"] = "Fichier à téléverser:";
|
||||
$a->strings["Select a profile:"] = "Choisir un profil:";
|
||||
$a->strings["Upload"] = "Téléverser";
|
||||
$a->strings["or"] = "ou";
|
||||
$a->strings["skip this step"] = "ignorer cette étape";
|
||||
$a->strings["select a photo from your photo albums"] = "choisissez une photo depuis vos albums";
|
||||
$a->strings["Crop Image"] = "(Re)cadrer l'image";
|
||||
$a->strings["Please adjust the image cropping for optimum viewing."] = "Ajustez le cadre de l'image pour une visualisation optimale.";
|
||||
$a->strings["Done Editing"] = "Édition terminée";
|
||||
$a->strings["Image uploaded successfully."] = "Image téléversée avec succès.";
|
||||
$a->strings["Image upload failed."] = "Le téléversement de l'image a échoué.";
|
||||
$a->strings["Account approved."] = "Inscription validée.";
|
||||
$a->strings["Registration revoked for %s"] = "Inscription révoquée pour %s";
|
||||
$a->strings["Please login."] = "Merci de vous connecter.";
|
||||
$a->strings["Invalid request identifier."] = "Identifiant de demande invalide.";
|
||||
$a->strings["Discard"] = "Rejeter";
|
||||
$a->strings["Ignore"] = "Ignorer";
|
||||
$a->strings["Network Notifications"] = "Notifications du réseau";
|
||||
$a->strings["Personal Notifications"] = "Notifications personnelles";
|
||||
$a->strings["Home Notifications"] = "Notifications de page d'accueil";
|
||||
$a->strings["Show Ignored Requests"] = "Voir les demandes ignorées";
|
||||
$a->strings["Hide Ignored Requests"] = "Cacher les demandes ignorées";
|
||||
$a->strings["Notification type: "] = "Type de notification: ";
|
||||
$a->strings["suggested by %s"] = "suggéré(e) par %s";
|
||||
$a->strings["Hide this contact from others"] = "Cacher ce contact aux autres";
|
||||
$a->strings["Post a new friend activity"] = "Poster une nouvelle avtivité d'ami";
|
||||
$a->strings["if applicable"] = "si possible";
|
||||
$a->strings["Approve"] = "Approuver";
|
||||
$a->strings["Claims to be known to you: "] = "Prétend que vous le connaissez: ";
|
||||
$a->strings["yes"] = "oui";
|
||||
$a->strings["no"] = "non";
|
||||
$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Fan/Admirer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "Doit être votre connexion bidirectionnelle ou non? \"Ami\" implique que vous autorisiez à lire et vous vous abonnez à leurs postes. \"Fan / Admirateur\" signifie que vous permettez de lire, mais vous ne voulez pas lire les leurs. Approuver en:";
|
||||
$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Sharer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "Doit être votre connexion bidirectionnelle ou non? \"Ami\" implique que vous autorisiez à lire et vous vous abonnez à leurs postes. \"Fan / Admirateur\" signifie que vous permettez de lire, mais vous ne voulez pas lire les leurs. Approuver en:";
|
||||
$a->strings["Friend"] = "Ami";
|
||||
$a->strings["Sharer"] = "Initiateur du partage";
|
||||
$a->strings["Fan/Admirer"] = "Fan/Admirateur";
|
||||
$a->strings["Profile URL"] = "URL du Profil";
|
||||
$a->strings["No introductions."] = "Aucune demande d'introduction.";
|
||||
$a->strings["Show unread"] = "Afficher non-lus";
|
||||
$a->strings["Show all"] = "Tout afficher";
|
||||
$a->strings["No more %s notifications."] = "Aucune notification de %s";
|
||||
$a->strings["Profile not found."] = "Profil introuvable.";
|
||||
$a->strings["Profile deleted."] = "Profil supprimé.";
|
||||
$a->strings["Profile-"] = "Profil-";
|
||||
$a->strings["New profile created."] = "Nouveau profil créé.";
|
||||
$a->strings["Profile unavailable to clone."] = "Ce profil ne peut être cloné.";
|
||||
$a->strings["Profile Name is required."] = "Le nom du profil est requis.";
|
||||
$a->strings["Marital Status"] = "Statut marital";
|
||||
$a->strings["Romantic Partner"] = "Partenaire / conjoint";
|
||||
$a->strings["Work/Employment"] = "Travail / Occupation";
|
||||
$a->strings["Religion"] = "Religion";
|
||||
$a->strings["Political Views"] = "Tendance politique";
|
||||
$a->strings["Gender"] = "Sexe";
|
||||
$a->strings["Sexual Preference"] = "Préférence sexuelle";
|
||||
$a->strings["XMPP"] = "";
|
||||
$a->strings["Homepage"] = "Site internet";
|
||||
$a->strings["Interests"] = "Centres d'intérêt";
|
||||
$a->strings["Address"] = "Adresse";
|
||||
$a->strings["Location"] = "Localisation";
|
||||
$a->strings["Profile updated."] = "Profil mis à jour.";
|
||||
$a->strings[" and "] = " et ";
|
||||
$a->strings["public profile"] = "profil public";
|
||||
$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s a changé %2\$s en “%3\$s”";
|
||||
$a->strings[" - Visit %1\$s's %2\$s"] = "Visiter le %2\$s de %1\$s";
|
||||
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s a mis à jour son %2\$s, en modifiant %3\$s.";
|
||||
$a->strings["Hide contacts and friends:"] = "Cacher mes contacts et amis :";
|
||||
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Cacher ma liste d'amis / contacts des visiteurs de ce profil ?";
|
||||
$a->strings["Show more profile fields:"] = "Afficher plus d'infos de profil:";
|
||||
$a->strings["Profile Actions"] = "Actions de Profil";
|
||||
$a->strings["Edit Profile Details"] = "Éditer les détails du profil";
|
||||
$a->strings["Change Profile Photo"] = "Changer la photo du profil";
|
||||
$a->strings["View this profile"] = "Voir ce profil";
|
||||
$a->strings["Create a new profile using these settings"] = "Créer un nouveau profil en utilisant ces réglages";
|
||||
$a->strings["Clone this profile"] = "Cloner ce profil";
|
||||
$a->strings["Delete this profile"] = "Supprimer ce profil";
|
||||
$a->strings["Basic information"] = "Information de base";
|
||||
$a->strings["Profile picture"] = "Image de profil";
|
||||
$a->strings["Preferences"] = "Préférences";
|
||||
$a->strings["Status information"] = "Information sur le statut";
|
||||
$a->strings["Additional information"] = "Information additionnelle";
|
||||
$a->strings["Relation"] = "Relation";
|
||||
$a->strings["Your Gender:"] = "Votre genre :";
|
||||
$a->strings["<span class=\"heart\">♥</span> Marital Status:"] = "<span class=\"heart\">♥</span> Statut marital :";
|
||||
$a->strings["Example: fishing photography software"] = "Exemple : football dessin programmation";
|
||||
$a->strings["Profile Name:"] = "Nom du profil :";
|
||||
$a->strings["Required"] = "Requis";
|
||||
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Ceci est votre profil <strong>public</strong>.<br />Il <strong>peut</strong> être visible par n'importe quel utilisateur d'Internet.";
|
||||
$a->strings["Your Full Name:"] = "Votre nom complet :";
|
||||
$a->strings["Title/Description:"] = "Titre / Description :";
|
||||
$a->strings["Street Address:"] = "Adresse postale :";
|
||||
$a->strings["Locality/City:"] = "Ville / Localité :";
|
||||
$a->strings["Region/State:"] = "Région / État :";
|
||||
$a->strings["Postal/Zip Code:"] = "Code postal :";
|
||||
$a->strings["Country:"] = "Pays :";
|
||||
$a->strings["Who: (if applicable)"] = "Qui : (si pertinent)";
|
||||
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples: cathy123, Cathy Williams, cathy@example.com";
|
||||
$a->strings["Since [date]:"] = "Depuis [date] :";
|
||||
$a->strings["Tell us about yourself..."] = "Parlez-nous de vous...";
|
||||
$a->strings["XMPP (Jabber) address:"] = "";
|
||||
$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "";
|
||||
$a->strings["Homepage URL:"] = "Page personnelle :";
|
||||
$a->strings["Religious Views:"] = "Opinions religieuses :";
|
||||
$a->strings["Public Keywords:"] = "Mots-clés publics :";
|
||||
$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)";
|
||||
$a->strings["Private Keywords:"] = "Mots-clés privés :";
|
||||
$a->strings["(Used for searching profiles, never shown to others)"] = "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)";
|
||||
$a->strings["Musical interests"] = "Goûts musicaux";
|
||||
$a->strings["Books, literature"] = "Lectures";
|
||||
$a->strings["Television"] = "Télévision";
|
||||
$a->strings["Film/dance/culture/entertainment"] = "Cinéma / Danse / Culture / Divertissement";
|
||||
$a->strings["Hobbies/Interests"] = "Passe-temps / Centres d'intérêt";
|
||||
$a->strings["Love/romance"] = "Amour / Romance";
|
||||
$a->strings["Work/employment"] = "Activité professionnelle / Occupation";
|
||||
$a->strings["School/education"] = "Études / Formation";
|
||||
$a->strings["Contact information and Social Networks"] = "Coordonnées / Réseaux sociaux";
|
||||
$a->strings["Edit/Manage Profiles"] = "Editer / gérer les profils";
|
||||
$a->strings["No friends to display."] = "Pas d'amis à afficher.";
|
||||
$a->strings["Access to this profile has been restricted."] = "L'accès au profil a été restreint.";
|
||||
$a->strings["View"] = "Vue";
|
||||
$a->strings["Previous"] = "Précédent";
|
||||
$a->strings["Next"] = "Suivant";
|
||||
$a->strings["list"] = "";
|
||||
$a->strings["User not found"] = "Utilisateur introuvable";
|
||||
$a->strings["This calendar format is not supported"] = "Format de calendrier inconnu";
|
||||
$a->strings["No exportable data found"] = "Rien à exporter";
|
||||
$a->strings["calendar"] = "calendrier";
|
||||
$a->strings["No contacts in common."] = "Pas de contacts en commun.";
|
||||
$a->strings["Common Friends"] = "Amis communs";
|
||||
$a->strings["Not available."] = "Indisponible.";
|
||||
$a->strings["Global Directory"] = "Annuaire global";
|
||||
$a->strings["Find on this site"] = "Trouver sur ce site";
|
||||
$a->strings["Results for:"] = "Résultats pour :";
|
||||
$a->strings["Site Directory"] = "Annuaire local";
|
||||
$a->strings["No entries (some entries may be hidden)."] = "Aucune entrée (certaines peuvent être cachées).";
|
||||
$a->strings["People Search - %s"] = "Recherche de personne - %s";
|
||||
$a->strings["Forum Search - %s"] = "Recherche de Forum - %s";
|
||||
$a->strings["No matches"] = "Aucune correspondance";
|
||||
$a->strings["Item has been removed."] = "Cet élément a été enlevé.";
|
||||
$a->strings["Event can not end before it has started."] = "L'événement ne peut pas se terminer avant d'avoir commencé.";
|
||||
$a->strings["Event title and start time are required."] = "Vous devez donner un nom et un horaire de début à l'événement.";
|
||||
$a->strings["Create New Event"] = "Créer un nouvel événement";
|
||||
$a->strings["Event details"] = "Détails de l'événement";
|
||||
$a->strings["Starting date and Title are required."] = "La date de début et le titre sont requis.";
|
||||
$a->strings["Event Starts:"] = "Début de l'événement :";
|
||||
$a->strings["Finish date/time is not known or not relevant"] = "Date / heure de fin inconnue ou sans objet";
|
||||
$a->strings["Event Finishes:"] = "Fin de l'événement:";
|
||||
$a->strings["Adjust for viewer timezone"] = "Ajuster à la zone horaire du visiteur";
|
||||
$a->strings["Description:"] = "Description:";
|
||||
$a->strings["Title:"] = "Titre :";
|
||||
$a->strings["Share this event"] = "Partager cet événement";
|
||||
$a->strings["Credits"] = "Remerciements";
|
||||
$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica est un projet communautaire, qui ne serait pas possible sans l'aide de beaucoup de gens. Voici une liste de ceux qui ont contribué au code ou à la traduction de Friendica. Merci à tous!";
|
||||
$a->strings["System down for maintenance"] = "Système indisponible pour cause de maintenance";
|
||||
$a->strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut.";
|
||||
$a->strings["is interested in:"] = "s'intéresse à :";
|
||||
$a->strings["Profile Match"] = "Correpondance de profils";
|
||||
$a->strings["Tips for New Members"] = "Conseils aux nouveaux venus";
|
||||
$a->strings["Do you really want to delete this suggestion?"] = "Voulez-vous vraiment supprimer cette suggestion ?";
|
||||
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h.";
|
||||
$a->strings["Ignore/Hide"] = "Ignorer/cacher";
|
||||
$a->strings["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]";
|
||||
$a->strings["Recent Photos"] = "Photos récentes";
|
||||
$a->strings["Upload New Photos"] = "Téléverser de nouvelles photos";
|
||||
$a->strings["everybody"] = "tout le monde";
|
||||
$a->strings["Contact information unavailable"] = "Informations de contact indisponibles";
|
||||
$a->strings["Album not found."] = "Album introuvable.";
|
||||
$a->strings["Delete Album"] = "Effacer l'album";
|
||||
$a->strings["Do you really want to delete this photo album and all its photos?"] = "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?";
|
||||
$a->strings["Delete Photo"] = "Effacer la photo";
|
||||
$a->strings["Do you really want to delete this photo?"] = "Voulez-vous vraiment supprimer cette photo ?";
|
||||
$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s a été étiqueté dans %2\$s par %3\$s";
|
||||
$a->strings["a photo"] = "une photo";
|
||||
$a->strings["Image file is empty."] = "Fichier image vide.";
|
||||
$a->strings["No photos selected"] = "Aucune photo sélectionnée";
|
||||
$a->strings["Access to this item is restricted."] = "Accès restreint à cet élément.";
|
||||
$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos.";
|
||||
$a->strings["Upload Photos"] = "Téléverser des photos";
|
||||
$a->strings["New album name: "] = "Nom du nouvel album: ";
|
||||
$a->strings["or existing album name: "] = "ou nom d'un album existant: ";
|
||||
$a->strings["Do not show a status post for this upload"] = "Ne pas publier de notice de statut pour cet envoi";
|
||||
$a->strings["Show to Groups"] = "Montrer aux groupes";
|
||||
$a->strings["Show to Contacts"] = "Montrer aux Contacts";
|
||||
$a->strings["Private Photo"] = "Photo privée";
|
||||
$a->strings["Public Photo"] = "Photo publique";
|
||||
$a->strings["Edit Album"] = "Éditer l'album";
|
||||
$a->strings["Show Newest First"] = "Plus récent d'abord";
|
||||
$a->strings["Show Oldest First"] = "Plus ancien d'abord";
|
||||
$a->strings["View Photo"] = "Voir la photo";
|
||||
$a->strings["Permission denied. Access to this item may be restricted."] = "Interdit. L'accès à cet élément peut avoir été restreint.";
|
||||
$a->strings["Photo not available"] = "Photo indisponible";
|
||||
$a->strings["View photo"] = "Voir photo";
|
||||
$a->strings["Edit photo"] = "Éditer la photo";
|
||||
$a->strings["Use as profile photo"] = "Utiliser comme photo de profil";
|
||||
$a->strings["View Full Size"] = "Voir en taille réelle";
|
||||
$a->strings["Tags: "] = "Étiquettes:";
|
||||
$a->strings["[Remove any tag]"] = "[Retirer toutes les étiquettes]";
|
||||
$a->strings["New album name"] = "Nom du nouvel album";
|
||||
$a->strings["Caption"] = "Titre";
|
||||
$a->strings["Add a Tag"] = "Ajouter une étiquette";
|
||||
$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances";
|
||||
$a->strings["Do not rotate"] = "Pas de rotation";
|
||||
$a->strings["Rotate CW (right)"] = "Tourner dans le sens des aiguilles d'une montre (vers la droite)";
|
||||
$a->strings["Rotate CCW (left)"] = "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)";
|
||||
$a->strings["Private photo"] = "Photo privée";
|
||||
$a->strings["Public photo"] = "Photo publique";
|
||||
$a->strings["Map"] = "Carte";
|
||||
$a->strings["View Album"] = "Voir l'album";
|
||||
$a->strings["Registration successful. Please check your email for further instructions."] = "Inscription réussie. Vérifiez vos emails pour la suite des instructions.";
|
||||
$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Impossible d’envoyer le courriel de confirmation. Voici vos informations de connexion:<br> identifiant : %s<br> mot de passe : %s<br><br>Vous pourrez changer votre mot de passe une fois connecté.";
|
||||
$a->strings["Registration successful."] = "Inscription réussie.";
|
||||
$a->strings["Your registration can not be processed."] = "Votre inscription ne peut être traitée.";
|
||||
$a->strings["Your registration is pending approval by the site owner."] = "Votre inscription attend une validation du propriétaire du site.";
|
||||
$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\".";
|
||||
$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste.";
|
||||
$a->strings["Your OpenID (optional): "] = "Votre OpenID (facultatif): ";
|
||||
$a->strings["Include your profile in member directory?"] = "Inclure votre profil dans l'annuaire des membres?";
|
||||
$a->strings["Note for the admin"] = "";
|
||||
$a->strings["Leave a message for the admin, why you want to join this node"] = "";
|
||||
$a->strings["Membership on this site is by invitation only."] = "L'inscription à ce site se fait uniquement sur invitation.";
|
||||
$a->strings["Your invitation ID: "] = "Votre ID d'invitation: ";
|
||||
$a->strings["Registration"] = "Inscription";
|
||||
$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Votre nom complet (p. ex. Michel Dupont):";
|
||||
$a->strings["Your Email Address: "] = "Votre adresse courriel: ";
|
||||
$a->strings["New Password:"] = "Nouveau mot de passe:";
|
||||
$a->strings["Leave empty for an auto generated password."] = "Laisser ce champ libre pour obtenir un mot de passe généré automatiquement.";
|
||||
$a->strings["Confirm:"] = "Confirmer:";
|
||||
$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '<strong>pseudo@\$sitename</strong>'.";
|
||||
$a->strings["Choose a nickname: "] = "Choisir un pseudo: ";
|
||||
$a->strings["Import your profile to this friendica instance"] = "Importer votre profile dans cette instance de friendica";
|
||||
$a->strings["Account"] = "Compte";
|
||||
$a->strings["Additional features"] = "Fonctions supplémentaires";
|
||||
$a->strings["Display"] = "Afficher";
|
||||
$a->strings["Social Networks"] = "Réseaux sociaux";
|
||||
$a->strings["Plugins"] = "Extensions";
|
||||
$a->strings["Connected apps"] = "Applications connectées";
|
||||
$a->strings["Remove account"] = "Supprimer le compte";
|
||||
$a->strings["Missing some important data!"] = "Il manque certaines informations importantes!";
|
||||
$a->strings["Update"] = "Mises-à-jour";
|
||||
$a->strings["Failed to connect with email account using the settings provided."] = "Impossible de se connecter au compte courriel configuré.";
|
||||
$a->strings["Email settings updated."] = "Réglages de courriel mis-à-jour.";
|
||||
$a->strings["Features updated"] = "Fonctionnalités mises à jour";
|
||||
$a->strings["Relocate message has been send to your contacts"] = "Un message de relocalisation a été envoyé à vos contacts.";
|
||||
$a->strings["Empty passwords are not allowed. Password unchanged."] = "Les mots de passe vides sont interdits. Aucun changement appliqué.";
|
||||
$a->strings["Wrong password."] = "Mauvais mot de passe.";
|
||||
$a->strings["Password changed."] = "Mots de passe changés.";
|
||||
$a->strings["Password update failed. Please try again."] = "Le changement de mot de passe a échoué. Merci de recommencer.";
|
||||
$a->strings[" Please use a shorter name."] = " Merci d'utiliser un nom plus court.";
|
||||
$a->strings[" Name too short."] = " Nom trop court.";
|
||||
$a->strings["Wrong Password"] = "Mauvais mot de passe";
|
||||
$a->strings[" Not valid email."] = " Email invalide.";
|
||||
$a->strings[" Cannot change to that email."] = " Impossible de changer pour cet email.";
|
||||
$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut.";
|
||||
$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Ce forum privé n'a pas de paramètres de vie privée ni de paramètres de confidentialité par défaut.";
|
||||
$a->strings["Settings updated."] = "Réglages mis à jour.";
|
||||
$a->strings["Add application"] = "Ajouter une application";
|
||||
$a->strings["Save Settings"] = "Sauvegarder les paramétres";
|
||||
$a->strings["Consumer Key"] = "Clé utilisateur";
|
||||
$a->strings["Consumer Secret"] = "Secret utilisateur";
|
||||
$a->strings["Redirect"] = "Rediriger";
|
||||
$a->strings["Icon url"] = "URL de l'icône";
|
||||
$a->strings["You can't edit this application."] = "Vous ne pouvez pas éditer cette application.";
|
||||
$a->strings["Connected Apps"] = "Applications connectées";
|
||||
$a->strings["Client key starts with"] = "La clé cliente commence par";
|
||||
$a->strings["No name"] = "Sans nom";
|
||||
$a->strings["Remove authorization"] = "Révoquer l'autorisation";
|
||||
$a->strings["No Plugin settings configured"] = "Pas de réglages d'extensions configurés";
|
||||
$a->strings["Plugin Settings"] = "Extensions";
|
||||
$a->strings["Off"] = "Éteint";
|
||||
$a->strings["On"] = "Allumé";
|
||||
$a->strings["Additional Features"] = "Fonctions supplémentaires";
|
||||
$a->strings["General Social Media Settings"] = "Paramètres généraux des réseaux sociaux";
|
||||
$a->strings["Disable intelligent shortening"] = "Désactiver la réduction d'URL";
|
||||
$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Normalement, le système tente de trouver le meilleur lien à ajouter aux publications raccourcies. Si cette option est activée, les publications raccourcies dirigeront toujours vers leur publication d'origine sur Friendica.";
|
||||
$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Suivre automatiquement ceux qui me suivent ou me mentionnent sur GNU Social (OStatus)";
|
||||
$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "Si vous recevez un message d'un utilisateur OStatus inconnu, cette option détermine ce qui sera fait. Si elle est cochée, un nouveau contact sera créé pour chaque utilisateur inconnu.";
|
||||
$a->strings["Default group for OStatus contacts"] = "Groupe par défaut pour les contacts OStatus";
|
||||
$a->strings["Your legacy GNU Social account"] = "Le compte GNU Social que vous avez déjà";
|
||||
$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "Si vous entrez le nom de votre ancien compte GNU Social / StatusNet ici (utiliser le format utilisateur@domaine.tld), vos contacts seront ajoutés automatiquement. Le champ sera vidé lorsque ce sera terminé.";
|
||||
$a->strings["Repair OStatus subscriptions"] = "Réparer les abonnements OStatus";
|
||||
$a->strings["Built-in support for %s connectivity is %s"] = "Le support natif pour la connectivité %s est %s";
|
||||
$a->strings["enabled"] = "activé";
|
||||
$a->strings["disabled"] = "désactivé";
|
||||
$a->strings["GNU Social (OStatus)"] = "GNU Social (OStatus)";
|
||||
$a->strings["Email access is disabled on this site."] = "L'accès courriel est désactivé sur ce site.";
|
||||
$a->strings["Email/Mailbox Setup"] = "Réglages de courriel/boîte à lettre";
|
||||
$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte.";
|
||||
$a->strings["Last successful email check:"] = "Dernière vérification réussie des courriels:";
|
||||
$a->strings["IMAP server name:"] = "Nom du serveur IMAP:";
|
||||
$a->strings["IMAP port:"] = "Port IMAP:";
|
||||
$a->strings["Security:"] = "Sécurité:";
|
||||
$a->strings["None"] = "Aucun(e)";
|
||||
$a->strings["Email login name:"] = "Nom de connexion:";
|
||||
$a->strings["Email password:"] = "Mot de passe:";
|
||||
$a->strings["Reply-to address:"] = "Adresse de réponse:";
|
||||
$a->strings["Send public posts to all email contacts:"] = "Envoyer les publications publiques à tous les contacts courriels:";
|
||||
$a->strings["Action after import:"] = "Action après import:";
|
||||
$a->strings["Move to folder"] = "Déplacer vers";
|
||||
$a->strings["Move to folder:"] = "Déplacer vers:";
|
||||
$a->strings["No special theme for mobile devices"] = "Pas de thème particulier pour les terminaux mobiles";
|
||||
$a->strings["Display Settings"] = "Affichage";
|
||||
$a->strings["Display Theme:"] = "Thème d'affichage:";
|
||||
$a->strings["Mobile Theme:"] = "Thème mobile:";
|
||||
$a->strings["Suppress warning of insecure networks"] = "";
|
||||
$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "";
|
||||
$a->strings["Update browser every xx seconds"] = "Mettre-à-jour l'affichage toutes les xx secondes";
|
||||
$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum de 10 secondes. Saisir -1 pour désactiver.";
|
||||
$a->strings["Number of items to display per page:"] = "Nombre d’éléments par page:";
|
||||
$a->strings["Maximum of 100 items"] = "Maximum de 100 éléments";
|
||||
$a->strings["Number of items to display per page when viewed from mobile device:"] = "Nombre d'éléments a afficher par page pour un appareil mobile";
|
||||
$a->strings["Don't show emoticons"] = "Ne pas afficher les émoticônes (smileys grahiques)";
|
||||
$a->strings["Calendar"] = "Calendrier";
|
||||
$a->strings["Beginning of week:"] = "Début de la semaine :";
|
||||
$a->strings["Don't show notices"] = "Ne plus afficher les avis";
|
||||
$a->strings["Infinite scroll"] = "Défilement infini";
|
||||
$a->strings["Automatic updates only at the top of the network page"] = "Mises à jour automatiques seulement en haut de la page du réseau.";
|
||||
$a->strings["Bandwith Saver Mode"] = "";
|
||||
$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "";
|
||||
$a->strings["General Theme Settings"] = "Paramètres généraux de thème";
|
||||
$a->strings["Custom Theme Settings"] = "Paramètres personnalisés de thème";
|
||||
$a->strings["Content Settings"] = "Paramètres de contenu";
|
||||
$a->strings["Theme settings"] = "Réglages du thème graphique";
|
||||
$a->strings["Account Types"] = "";
|
||||
$a->strings["Personal Page Subtypes"] = "";
|
||||
$a->strings["Community Forum Subtypes"] = "";
|
||||
$a->strings["Personal Page"] = "";
|
||||
$a->strings["This account is a regular personal profile"] = "";
|
||||
$a->strings["Organisation Page"] = "";
|
||||
$a->strings["This account is a profile for an organisation"] = "";
|
||||
$a->strings["News Page"] = "";
|
||||
$a->strings["This account is a news account/reflector"] = "";
|
||||
$a->strings["Community Forum"] = "";
|
||||
$a->strings["This account is a community forum where people can discuss with each other"] = "";
|
||||
$a->strings["Normal Account Page"] = "Compte normal";
|
||||
$a->strings["This account is a normal personal profile"] = "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)";
|
||||
$a->strings["Soapbox Page"] = "Compte \"boîte à savon\"";
|
||||
$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'";
|
||||
$a->strings["Public Forum"] = "";
|
||||
$a->strings["Automatically approve all contact requests"] = "";
|
||||
$a->strings["Automatic Friend Page"] = "Compte d'\"amitié automatique\"";
|
||||
$a->strings["Automatically approve all connection/friend requests as friends"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis";
|
||||
$a->strings["Private Forum [Experimental]"] = "Forum privé [expérimental]";
|
||||
$a->strings["Private forum - approved members only"] = "Forum privé - modéré en inscription";
|
||||
$a->strings["OpenID:"] = "OpenID:";
|
||||
$a->strings["(Optional) Allow this OpenID to login to this account."] = "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte.";
|
||||
$a->strings["Publish your default profile in your local site directory?"] = "Publier votre profil par défaut sur l'annuaire local de ce site?";
|
||||
$a->strings["Publish your default profile in the global social directory?"] = "Publier votre profil par défaut sur l'annuaire social global?";
|
||||
$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?";
|
||||
$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Si activé, il est impossible de publier les messages publics sur Diaspora et autres réseaux.";
|
||||
$a->strings["Allow friends to post to your profile page?"] = "Autoriser vos amis à publier sur votre profil?";
|
||||
$a->strings["Allow friends to tag your posts?"] = "Autoriser vos amis à étiqueter vos publications?";
|
||||
$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?";
|
||||
$a->strings["Permit unknown people to send you private mail?"] = "Autoriser les messages privés d'inconnus?";
|
||||
$a->strings["Profile is <strong>not published</strong>."] = "Ce profil n'est <strong>pas publié</strong>.";
|
||||
$a->strings["Your Identity Address is <strong>'%s'</strong> or '%s'."] = "L’adresse de votre identité est <strong>'%s'</strong> or '%s'.";
|
||||
$a->strings["Automatically expire posts after this many days:"] = "Les publications expirent automatiquement après (en jours) :";
|
||||
$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Si ce champ est vide, les publications n'expireront pas. Les publications expirées seront supprimées";
|
||||
$a->strings["Advanced expiration settings"] = "Réglages avancés de l'expiration";
|
||||
$a->strings["Advanced Expiration"] = "Expiration (avancé)";
|
||||
$a->strings["Expire posts:"] = "Faire expirer les publications:";
|
||||
$a->strings["Expire personal notes:"] = "Faire expirer les notes personnelles:";
|
||||
$a->strings["Expire starred posts:"] = "Faire expirer les publications marqués:";
|
||||
$a->strings["Expire photos:"] = "Faire expirer les photos:";
|
||||
$a->strings["Only expire posts by others:"] = "Faire expirer seulement les publications des autres:";
|
||||
$a->strings["Account Settings"] = "Compte";
|
||||
$a->strings["Password Settings"] = "Réglages de mot de passe";
|
||||
$a->strings["Leave password fields blank unless changing"] = "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer";
|
||||
$a->strings["Current Password:"] = "Mot de passe actuel:";
|
||||
$a->strings["Your current password to confirm the changes"] = "Votre mot de passe actuel pour confirmer les modifications";
|
||||
$a->strings["Password:"] = "Mot de passe:";
|
||||
$a->strings["Basic Settings"] = "Réglages basiques";
|
||||
$a->strings["Email Address:"] = "Adresse courriel:";
|
||||
$a->strings["Your Timezone:"] = "Votre fuseau horaire:";
|
||||
$a->strings["Your Language:"] = "Votre langue :";
|
||||
$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Détermine la langue que nous utilisons pour afficher votre interface Friendica et pour vous envoyer des courriels";
|
||||
$a->strings["Default Post Location:"] = "Emplacement de publication par défaut:";
|
||||
$a->strings["Use Browser Location:"] = "Utiliser la localisation géographique du navigateur:";
|
||||
$a->strings["Security and Privacy Settings"] = "Réglages de sécurité et vie privée";
|
||||
$a->strings["Maximum Friend Requests/Day:"] = "Nombre maximal de requêtes d'amitié/jour:";
|
||||
$a->strings["(to prevent spam abuse)"] = "(pour limiter l'impact du spam)";
|
||||
$a->strings["Default Post Permissions"] = "Permissions de publication par défaut";
|
||||
$a->strings["(click to open/close)"] = "(cliquer pour ouvrir/fermer)";
|
||||
$a->strings["Default Private Post"] = "Message privé par défaut";
|
||||
$a->strings["Default Public Post"] = "Message publique par défaut";
|
||||
$a->strings["Default Permissions for New Posts"] = "Permissions par défaut pour les nouvelles publications";
|
||||
$a->strings["Maximum private messages per day from unknown people:"] = "Maximum de messages privés d'inconnus par jour:";
|
||||
$a->strings["Notification Settings"] = "Réglages de notification";
|
||||
$a->strings["By default post a status message when:"] = "Par défaut, poster un statut quand:";
|
||||
$a->strings["accepting a friend request"] = "j'accepte un ami";
|
||||
$a->strings["joining a forum/community"] = "joignant un forum/une communauté";
|
||||
$a->strings["making an <em>interesting</em> profile change"] = "je fais une modification <em>intéressante</em> de mon profil";
|
||||
$a->strings["Send a notification email when:"] = "Envoyer un courriel de notification quand:";
|
||||
$a->strings["You receive an introduction"] = "Vous recevez une introduction";
|
||||
$a->strings["Your introductions are confirmed"] = "Vos introductions sont confirmées";
|
||||
$a->strings["Someone writes on your profile wall"] = "Quelqu'un écrit sur votre mur";
|
||||
$a->strings["Someone writes a followup comment"] = "Quelqu'un vous commente";
|
||||
$a->strings["You receive a private message"] = "Vous recevez un message privé";
|
||||
$a->strings["You receive a friend suggestion"] = "Vous avez reçu une suggestion d'ami";
|
||||
$a->strings["You are tagged in a post"] = "Vous avez été étiquetté dans une publication";
|
||||
$a->strings["You are poked/prodded/etc. in a post"] = "Vous avez été sollicité dans une publication";
|
||||
$a->strings["Activate desktop notifications"] = "Activer les notifications de bureau";
|
||||
$a->strings["Show desktop popup on new notifications"] = "Afficher dans des pops-ups les nouvelles notifications";
|
||||
$a->strings["Text-only notification emails"] = "Courriels de notification en format texte";
|
||||
$a->strings["Send text only notification emails, without the html part"] = "Envoyer le texte des courriels de notification, sans la composante html";
|
||||
$a->strings["Advanced Account/Page Type Settings"] = "Paramètres avancés de compte/page";
|
||||
$a->strings["Change the behaviour of this account for special situations"] = "Modifier le comportement de ce compte dans certaines situations";
|
||||
$a->strings["Relocate"] = "Relocaliser";
|
||||
$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Si vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton.";
|
||||
$a->strings["Resend relocate message to contacts"] = "Renvoyer un message de relocalisation aux contacts.";
|
||||
$a->strings["Do you really want to delete this video?"] = "Voulez-vous vraiment supprimer cette vidéo?";
|
||||
$a->strings["Delete Video"] = "Supprimer la vidéo";
|
||||
$a->strings["No videos selected"] = "Pas de vidéo sélectionné";
|
||||
$a->strings["Recent Videos"] = "Vidéos récente";
|
||||
$a->strings["Upload New Videos"] = "Téléversé une nouvelle vidéo";
|
||||
$a->strings["Invalid request."] = "Requête invalide.";
|
||||
$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise";
|
||||
$a->strings["Or - did you try to upload an empty file?"] = "Ou — auriez-vous essayé de télécharger un fichier vide ?";
|
||||
$a->strings["File exceeds size limit of %s"] = "La taille du fichier dépasse la limite de %s";
|
||||
$a->strings["File upload failed."] = "Le téléversement a échoué.";
|
||||
$a->strings["Public access denied."] = "Accès public refusé.";
|
||||
$a->strings["Only logged in users are permitted to perform a probing."] = "";
|
||||
$a->strings["The post was created"] = "La publication a été créée";
|
||||
$a->strings["Help:"] = "Aide :";
|
||||
$a->strings["Not Found"] = "Non trouvé";
|
||||
$a->strings["Page not found."] = "Page introuvable.";
|
||||
$a->strings["Time Conversion"] = "Conversion temporelle";
|
||||
$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire.";
|
||||
$a->strings["UTC time: %s"] = "Temps UTC : %s";
|
||||
$a->strings["Current timezone: %s"] = "Zone de temps courante : %s";
|
||||
$a->strings["Converted localtime: %s"] = "Temps local converti : %s";
|
||||
$a->strings["Please select your timezone:"] = "Sélectionner votre zone :";
|
||||
$a->strings["Submit"] = "Envoyer";
|
||||
$a->strings["Post successful."] = "Publication réussie.";
|
||||
$a->strings["Theme settings updated."] = "Réglages du thème sauvés.";
|
||||
$a->strings["Site"] = "Site";
|
||||
$a->strings["Users"] = "Utilisateurs";
|
||||
$a->strings["Plugins"] = "Extensions";
|
||||
$a->strings["Themes"] = "Thèmes";
|
||||
$a->strings["Additional features"] = "Fonctions supplémentaires";
|
||||
$a->strings["DB updates"] = "Mise-à-jour de la base";
|
||||
$a->strings["Inspect Queue"] = "Inspecter la file d'attente";
|
||||
$a->strings["Server Blocklist"] = "Serveurs bloqués";
|
||||
$a->strings["Federation Statistics"] = "Statistiques Federation";
|
||||
$a->strings["Delete Item"] = "Supprimer un élément";
|
||||
$a->strings["Logs"] = "Journaux";
|
||||
$a->strings["View Logs"] = "Voir les logs";
|
||||
$a->strings["probe address"] = "Tester une adresse";
|
||||
|
|
@ -1464,10 +756,34 @@ $a->strings["check webfinger"] = "vérification de webfinger";
|
|||
$a->strings["Plugin Features"] = "Propriétés des extensions";
|
||||
$a->strings["diagnostics"] = "diagnostic";
|
||||
$a->strings["User registrations waiting for confirmation"] = "Inscriptions en attente de confirmation";
|
||||
$a->strings["unknown"] = "";
|
||||
$a->strings["The blocked domain"] = "Domaine bloqué";
|
||||
$a->strings["Reason for the block"] = "Raison du blocage.";
|
||||
$a->strings["The reason why you blocked this domain."] = "Raison pour laquelle vous souhaitez bloquer ce domaine.";
|
||||
$a->strings["Delete domain"] = "Supprimer le domaine.";
|
||||
$a->strings["Check to delete this entry from the blocklist"] = "Cochez la case pour retirer cette entrée de la liste noire";
|
||||
$a->strings["Administration"] = "Administration";
|
||||
$a->strings["This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server."] = "Cette page permet de créer une liste noire des serveurs de la fédération qui ne sont pas autorisés à interagir avec votre serveur. Pour chaque serveur bloqué, vous devez fournir la raison du blocage.";
|
||||
$a->strings["The list of blocked servers will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = "La liste des serveurs bloqués sera publiée sur la page /friendica pour que les utilisateurs rencontrant des problèmes de communication puissent en comprendre la raison.";
|
||||
$a->strings["Add new entry to block list"] = "Ajouter une nouvelle entrée à la liste noire";
|
||||
$a->strings["Server Domain"] = "Adresse du serveur";
|
||||
$a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = "Adresse du serveur à ajouter à la liste noire. Ne pas mettre le protocole.";
|
||||
$a->strings["Block reason"] = "Raison du blocage.";
|
||||
$a->strings["Add Entry"] = "Ajouter";
|
||||
$a->strings["Save changes to the blocklist"] = "Sauvegarder la liste noire";
|
||||
$a->strings["Current Entries in the Blocklist"] = "Entrées de la liste noire";
|
||||
$a->strings["Delete entry from blocklist"] = "Supprimer l'entrée de la liste noire";
|
||||
$a->strings["Delete entry from blocklist?"] = "Supprimer l'entrée de la liste noire ?";
|
||||
$a->strings["Server added to blocklist."] = "Serveur ajouté à la liste noire.";
|
||||
$a->strings["Site blocklist updated."] = "Liste noire mise à jour.";
|
||||
$a->strings["Delete this Item"] = "Supprimer l'élément";
|
||||
$a->strings["On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted."] = "Sur cette page, vous pouvez supprimer un élément de votre noeud. Si cet élément est le premier post d'un fil de discussion, le fil de discussion entier sera supprimé.";
|
||||
$a->strings["You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456."] = "Vous devez connaître le GUID de l'élément. Vous pouvez le trouver en sélectionnant l'élément puis en lisant l'URL. La dernière partie de l'URL est le GUID. Exemple: http://example.com/display/123456 a pour GUID: 123456.";
|
||||
$a->strings["GUID"] = "GUID";
|
||||
$a->strings["The GUID of the item you want to delete."] = "GUID de l'élément à supprimer.";
|
||||
$a->strings["Item marked for deletion."] = "L'élément va être supprimé.";
|
||||
$a->strings["unknown"] = "inconnu";
|
||||
$a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = "Cette page montre quelques statistiques de la partie connue du réseau social fédéré dont votre instance Friendica fait partie. Ces chiffres sont partiels et ne reflètent que la portion du réseau dont votre instance a connaissance.";
|
||||
$a->strings["The <em>Auto Discovered Contact Directory</em> feature is not enabled, it will improve the data displayed here."] = "En activant la fonctionnalité <em>Répertoire de Contacts Découverts Automatiquement</em>, cela améliorera la qualité des chiffres présentés ici.";
|
||||
$a->strings["Administration"] = "Administration";
|
||||
$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = "Actuellement cette instance est en relation avec %d autres instances des plate-formes suivantes :";
|
||||
$a->strings["ID"] = "ID";
|
||||
$a->strings["Recipient Name"] = "Nom du destinataire";
|
||||
|
|
@ -1475,28 +791,31 @@ $a->strings["Recipient Profile"] = "Profil du destinataire";
|
|||
$a->strings["Created"] = "Créé";
|
||||
$a->strings["Last Tried"] = "Dernier essai";
|
||||
$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = "Cette page présente le contenu de la file d'attente pour les publications sortantes. Ce sont des messages dont la première livraison a échoué. Ils seront réenvoyés plus tard et éventuellement supprimés si l'envoi échoue de façon permanente.";
|
||||
$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href=\"%s\">here</a> for a guide that may be helpful converting the table engines. You may also use the <tt>convert_innodb.sql</tt> in the <tt>/util</tt> directory of your Friendica installation.<br />"] = "";
|
||||
$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = "";
|
||||
$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href=\"%s\">here</a> for a guide that may be helpful converting the table engines. You may also use the command <tt>php include/dbstructure.php toinnodb</tt> of your Friendica installation for an automatic conversion.<br />"] = "Votre base de données fonctionne avec MyISAM. Vous devriez utiliser InnoDB comme type de moteur. Comme Friendica utilisera uniquement InnoDB dans le futur, vous devriez suivre cette recommandation. <a href=\"%s\">Ce guide</a> peut vous servir pour changer le type de moteur. Vous pouvez aussi utiliser la commande <tt>php include/dbstructure.php toinnodb</tt> de votre installation Friendica pour une conversion automatique. <br />";
|
||||
$a->strings["There is a new version of Friendica available for download. Your current version is %1\$s, upstream version is %2\$s"] = "Une nouvelle version de Friendica est disponible. Votre version est %1\$s, la nouvelle version est %2\$s";
|
||||
$a->strings["The database update failed. Please run \"php include/dbstructure.php update\" from the command line and have a look at the errors that might appear."] = "La mise à jour de la base de données a échoué. Exécutez \"php include/dbstructure.php update\" depuis un terminal et examinez les erreurs qui sont renvoyées.";
|
||||
$a->strings["The worker was never executed. Please check your database structure!"] = "Le 'worker' n'a pas encore été exécuté. Vérifiez la structure de votre base de données.";
|
||||
$a->strings["The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings."] = "La dernière exécution du 'worker' s'est déroulée à %s, c'est-à-dire il y a plus d'une heure. Vérifiez les réglages de crontab.";
|
||||
$a->strings["Normal Account"] = "Compte normal";
|
||||
$a->strings["Soapbox Account"] = "Compte \"boîte à savon\"";
|
||||
$a->strings["Community/Celebrity Account"] = "Compte de communauté/célébrité";
|
||||
$a->strings["Automatic Follower Account"] = "";
|
||||
$a->strings["Public Forum Account"] = "";
|
||||
$a->strings["Automatic Friend Account"] = "Compte auto-amical";
|
||||
$a->strings["Blog Account"] = "Compte de blog";
|
||||
$a->strings["Private Forum"] = "Forum privé";
|
||||
$a->strings["Private Forum Account"] = "";
|
||||
$a->strings["Message queues"] = "Files d'attente des messages";
|
||||
$a->strings["Summary"] = "Résumé";
|
||||
$a->strings["Registered users"] = "Utilisateurs inscrits";
|
||||
$a->strings["Pending registrations"] = "Inscriptions en attente";
|
||||
$a->strings["Version"] = "Versio";
|
||||
$a->strings["Active plugins"] = "Extensions activés";
|
||||
$a->strings["Version"] = "Version";
|
||||
$a->strings["Active plugins"] = "Extensions activées";
|
||||
$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Impossible d'analyser l'URL de base. Doit contenir au moins <scheme>://<domain>";
|
||||
$a->strings["RINO2 needs mcrypt php extension to work."] = "RINO2 a besoin du module php mcrypt pour fonctionner.";
|
||||
$a->strings["Site settings updated."] = "Réglages du site mis-à-jour.";
|
||||
$a->strings["No special theme for mobile devices"] = "Pas de thème particulier pour les terminaux mobiles";
|
||||
$a->strings["No community page"] = "Aucune page de communauté";
|
||||
$a->strings["Public postings from users of this site"] = "Publications publiques des utilisateurs de ce site";
|
||||
$a->strings["Global community page"] = "Page de la communauté globale";
|
||||
$a->strings["Never"] = "Jamais";
|
||||
$a->strings["At post arrival"] = "A l'arrivé d'une publication";
|
||||
$a->strings["At post arrival"] = "A l'arrivée d'une publication";
|
||||
$a->strings["Disabled"] = "Désactivé";
|
||||
$a->strings["Users, Global Contacts"] = "Utilisateurs, Contacts Globaux";
|
||||
$a->strings["Users, Global Contacts/fallback"] = "Utilisateurs, Contacts Globaux/alternative";
|
||||
|
|
@ -1511,6 +830,12 @@ $a->strings["Open"] = "Ouvert";
|
|||
$a->strings["No SSL policy, links will track page SSL state"] = "Pas de politique SSL, le liens conserveront l'état SSL de la page";
|
||||
$a->strings["Force all links to use SSL"] = "Forcer tous les liens à utiliser SSL";
|
||||
$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)";
|
||||
$a->strings["Don't check"] = "Ne pas rechercher";
|
||||
$a->strings["check the stable version"] = "Rechercher les versions stables";
|
||||
$a->strings["check the development version"] = "Rechercher les versions de développement";
|
||||
$a->strings["Save Settings"] = "Sauvegarder les paramètres";
|
||||
$a->strings["Republish users to directory"] = "";
|
||||
$a->strings["Registration"] = "Inscription";
|
||||
$a->strings["File upload"] = "Téléversement de fichier";
|
||||
$a->strings["Policies"] = "Politiques";
|
||||
$a->strings["Auto Discovered Contact Directory"] = "Répertoire de Contacts Découverts Automatiquement";
|
||||
|
|
@ -1537,16 +862,14 @@ $a->strings["SSL link policy"] = "Politique SSL pour les liens";
|
|||
$a->strings["Determines whether generated links should be forced to use SSL"] = "Détermine si les liens générés doivent forcer l'utilisation de SSL";
|
||||
$a->strings["Force SSL"] = "SSL obligatoire";
|
||||
$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Redirige toutes les requêtes en clair vers des requêtes SSL. Attention : sur certains systèmes cela peut conduire à des boucles de redirection infinies.";
|
||||
$a->strings["Old style 'Share'"] = "Anciens style 'Partage'";
|
||||
$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Désactive l'élément 'partage' de bbcode pour répéter les articles.";
|
||||
$a->strings["Hide help entry from navigation menu"] = "Cacher l'aide du menu de navigation";
|
||||
$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Cacher du menu de navigation le l'entrée des vers les pages d'aide. Vous pouvez toujours y accéder en tapant directement /help.";
|
||||
$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Cacher du menu de navigation l'entrée vers les pages d'aide. Vous pouvez toujours y accéder en tapant directement /help.";
|
||||
$a->strings["Single user instance"] = "Instance mono-utilisateur";
|
||||
$a->strings["Make this instance multi-user or single-user for the named user"] = "Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l'utilisateur.";
|
||||
$a->strings["Maximum image size"] = "Taille maximale des images";
|
||||
$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Taille maximale des images envoyées (en octets). 0 par défaut, c'est à dire \"aucune limite\".";
|
||||
$a->strings["Maximum image length"] = "Longueur maximale des images";
|
||||
$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Longueur maximale (en pixels) du plus long côté des images téléversées. La valeur par défaut est -1, soit une absence de limite.";
|
||||
$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Longueur maximale en pixels du plus long côté des images téléversées. La valeur par défaut est -1 : absence de limite.";
|
||||
$a->strings["JPEG image quality"] = "Qualité JPEG des images";
|
||||
$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale.";
|
||||
$a->strings["Register policy"] = "Politique d'inscription";
|
||||
|
|
@ -1584,16 +907,12 @@ $a->strings["OpenID support"] = "Support OpenID";
|
|||
$a->strings["OpenID support for registration and logins."] = "Supporter OpenID pour les inscriptions et connexions.";
|
||||
$a->strings["Fullname check"] = "Vérification du \"Prénom Nom\"";
|
||||
$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Imposer l'utilisation d'un espace entre le prénom et le nom (dans le Nom complet), pour limiter les abus";
|
||||
$a->strings["UTF-8 Regular expressions"] = "Regex UTF-8";
|
||||
$a->strings["Use PHP UTF8 regular expressions"] = "Utiliser les expressions rationnelles de PHP en UTF8";
|
||||
$a->strings["Community Page Style"] = "Style de la page de communauté";
|
||||
$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "Type de page de la communauté à afficher. « Communauté globale » montre toutes les publications publiques des réseaux distribués ouverts qui arrivent sur ce serveur.";
|
||||
$a->strings["Posts per user on community page"] = "Nombre de publications par utilisateur sur la page de la communauté (n'est pas valide pour ";
|
||||
$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "Nombre maximal de publications par utilisateurs sur la page de la communauté (ne s'applique pas pour « Communauté globale »).";
|
||||
$a->strings["Enable OStatus support"] = "Activer le support d'OStatus";
|
||||
$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fourni nativement la compatibilité avec OStatus (StatusNet, GNU Social etc.). Touts les communications utilisant OStatus sont public, des avertissements liés à la vie privée seront affichés si utile.";
|
||||
$a->strings["OStatus conversation completion interval"] = "Achèvement de l'intervalle de conversation OStatus ";
|
||||
$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Combien de fois le poller devra vérifier les nouvelles entrées dans les conversations OStatus? Cela peut utilisé beaucoup de ressources.";
|
||||
$a->strings["Only import OStatus threads from our contacts"] = "Importer seulement les fils OStatus de nos contacts";
|
||||
$a->strings["Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."] = "";
|
||||
$a->strings["OStatus support can only be enabled if threading is enabled."] = "Le support OStatus ne peut être activé que si l'imbrication des commentaires est activée.";
|
||||
|
|
@ -1608,14 +927,12 @@ $a->strings["Proxy user"] = "Utilisateur du proxy";
|
|||
$a->strings["Proxy URL"] = "URL du proxy";
|
||||
$a->strings["Network timeout"] = "Dépassement du délai d'attente du réseau";
|
||||
$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé).";
|
||||
$a->strings["Delivery interval"] = "Intervalle de transmission";
|
||||
$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."] = "Rallonge le processus de transmissions pour réduire la charge système (en secondes). Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS, 0-1 pour les gros servers dédiés.";
|
||||
$a->strings["Poll interval"] = "Intervalle de réception";
|
||||
$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Rajouter un délai - en secondes - au processus de 'polling', afin de réduire la charge système. Mettre à 0 pour utiliser l'intervalle d'émission.";
|
||||
$a->strings["Maximum Load Average"] = "Plafond de la charge moyenne";
|
||||
$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Charge système maximale à partir de laquelle l'émission et la réception seront soumises à un délai supplémentaire. Par défaut, 50.";
|
||||
$a->strings["Maximum Load Average (Frontend)"] = "Plafond de la charge moyenne (frontale)";
|
||||
$a->strings["Maximum system load before the frontend quits service - default 50."] = "Limite de charge système pour le rendu des pages - défaut 50.";
|
||||
$a->strings["Minimal Memory"] = "";
|
||||
$a->strings["Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)."] = "";
|
||||
$a->strings["Maximum table size for optimization"] = "Limite de taille de table pour l'optimisation";
|
||||
$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = "Limite de taille de table (en Mo) pour l'optimisation automatique - défaut 100 Mo. -1 pour désactiver la limite.";
|
||||
$a->strings["Minimum level of fragmentation"] = "Seuil de fragmentation";
|
||||
|
|
@ -1632,10 +949,8 @@ $a->strings["Search the local directory"] = "Chercher dans le répertoire local"
|
|||
$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = "Cherche dans le répertoire local au lieu du répertoire local. Quand une recherche locale est effectuée, la même recherche est effectuée dans le répertoire global en tâche de fond. Cela améliore les résultats de la recherche si elle est réitérée.";
|
||||
$a->strings["Publish server information"] = "Publier les informations du serveur";
|
||||
$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See <a href='http://the-federation.info/'>the-federation.info</a> for details."] = "Si cette option est activée, des informations sur le serveur et son utilisation seront publiées. Ces informations incluent le nom et la version du serveur, le nombre d’utilisateurs avec des profils publics, le nombre de messages, les protocoles supportés et les connecteurs disponibles. Plus de détails sur <a href='http://the-federation.info/'>the-federation.info</a>.";
|
||||
$a->strings["Use MySQL full text engine"] = "Utiliser le moteur de recherche plein texte de MySQL";
|
||||
$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus.";
|
||||
$a->strings["Suppress Language"] = "Supprimer un langage";
|
||||
$a->strings["Suppress language information in meta information about a posting."] = "Supprimer les informations de langue dans les métadonnées des publications.";
|
||||
$a->strings["Check upstream version"] = "Mises à jour";
|
||||
$a->strings["Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview."] = "Permet de vérifier la présence de nouvelles versions de Friendica sur github. Si une nouvelle version est disponible, vous recevrez une notification dans l'interface d'administration.";
|
||||
$a->strings["Suppress Tags"] = "Masquer les tags";
|
||||
$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Ne pas afficher la liste des hashtags à la fin d’un message.";
|
||||
$a->strings["Path to item cache"] = "Chemin vers le cache des objets.";
|
||||
|
|
@ -1644,34 +959,26 @@ $a->strings["Cache duration in seconds"] = "Durée du cache en secondes";
|
|||
$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "Combien de temps les fichiers de cache doivent être maintenu? La valeur par défaut est 86400 secondes (une journée). Pour désactiver le cache de l'item, définissez la valeur à -1.";
|
||||
$a->strings["Maximum numbers of comments per post"] = "Nombre maximum de commentaires par publication";
|
||||
$a->strings["How much comments should be shown for each post? Default value is 100."] = "Combien de commentaires doivent être affichés pour chaque publication? Valeur par défaut: 100.";
|
||||
$a->strings["Path for lock file"] = "Chemin vers le ficher de verrouillage";
|
||||
$a->strings["The lock file is used to avoid multiple pollers at one time. Only define a folder here."] = "";
|
||||
$a->strings["Temp path"] = "Chemin des fichiers temporaires";
|
||||
$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "";
|
||||
$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "Si vous n'avez pas la possibilité d'avoir accès au répertoire temp, entrez un autre répertoire ici.";
|
||||
$a->strings["Base path to installation"] = "Chemin de base de l'installation";
|
||||
$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "";
|
||||
$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "Si le système ne peut pas détecter le chemin de l'installation, entrez le bon chemin ici. Ce paramètre doit être utilisé uniquement si vous avez des accès restreints à votre système et que vous n'avez qu'un lien symbolique vers le répertoire web.";
|
||||
$a->strings["Disable picture proxy"] = "Désactiver le proxy image ";
|
||||
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Le proxy d'image augmente les performances et l'intimité. Il ne devrait pas être utilisé sur des systèmes avec une très faible bande passante.";
|
||||
$a->strings["Enable old style pager"] = "";
|
||||
$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "";
|
||||
$a->strings["Only search in tags"] = "Rechercher seulement dans les étiquettes";
|
||||
$a->strings["On large systems the text search can slow down the system extremely."] = "La recherche textuelle peut ralentir considérablement les systèmes de grande taille.";
|
||||
$a->strings["New base url"] = "Nouvelle URL de base";
|
||||
$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "Changer d'URL de base pour ce serveur. Envoie un message de relocalisation à tous les contacts des réseaux distribués d'amis et de relations (DFRN) de tous les utilisateurs.";
|
||||
$a->strings["Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users."] = "";
|
||||
$a->strings["RINO Encryption"] = "Chiffrement RINO";
|
||||
$a->strings["Encryption layer between nodes."] = "Couche de chiffrement entre les nœuds du réseau.";
|
||||
$a->strings["Embedly API key"] = "Clé API d'Embedly";
|
||||
$a->strings["<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for web pages. This is an optional parameter."] = "";
|
||||
$a->strings["Enable 'worker' background processing"] = "";
|
||||
$a->strings["The worker background processing limits the number of parallel background jobs to a maximum number and respects the system load."] = "";
|
||||
$a->strings["Maximum number of parallel workers"] = "Nombre maximum de processus simultanés";
|
||||
$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "Sur un hébergement partagé, mettez 2. Sur des serveurs plus puissants, 10 est une bonne idée. Le défaut est 4.";
|
||||
$a->strings["Don't use 'proc_open' with the worker"] = "Ne pas utiliser 'proc_open' pour les tâches de fond";
|
||||
$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = "Activez ceci si votre hébergement ne vous permet pas d'utiliser 'proc_open'. Cela arrive le plus souvent dans les hébergements partagés. Si vous l'activez, pensez à augmenter la fréquence de l'exécution des tâches de fond dans votre crontab.";
|
||||
$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of worker calls in your crontab."] = "Activez cette option si votre système ne permet pas d'utiliser 'proc_open'. Cela peut être le cas sur les hébergements partagés. Si vous activez cette option, vous devriez augmenter la fréquence d'appel du \"worker\" dans crontab.";
|
||||
$a->strings["Enable fastlane"] = "";
|
||||
$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "";
|
||||
$a->strings["Enable frontend worker"] = "";
|
||||
$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = "";
|
||||
$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call %s/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server."] = "";
|
||||
$a->strings["Update has been marked successful"] = "Mise-à-jour validée comme 'réussie'";
|
||||
$a->strings["Database structure update %s was successfully applied."] = "La structure de base de données pour la mise à jour %s a été appliquée avec succès.";
|
||||
$a->strings["Executing of database structure update %s failed with error: %s"] = "L'exécution de la mise à jour %s pour la structure de base de données a échoué avec l'erreur: %s";
|
||||
|
|
@ -1698,9 +1005,11 @@ $a->strings["%s user deleted"] = array(
|
|||
$a->strings["User '%s' deleted"] = "Utilisateur '%s' supprimé";
|
||||
$a->strings["User '%s' unblocked"] = "Utilisateur '%s' débloqué";
|
||||
$a->strings["User '%s' blocked"] = "Utilisateur '%s' bloqué";
|
||||
$a->strings["Name"] = "Nom";
|
||||
$a->strings["Register date"] = "Date d'inscription";
|
||||
$a->strings["Last login"] = "Dernière connexion";
|
||||
$a->strings["Last item"] = "Dernier élément";
|
||||
$a->strings["Account"] = "Compte";
|
||||
$a->strings["Add User"] = "Ajouter l'utilisateur";
|
||||
$a->strings["select all"] = "tout sélectionner";
|
||||
$a->strings["User registrations waiting for confirm"] = "Inscriptions d'utilisateurs en attente de confirmation";
|
||||
|
|
@ -1708,6 +1017,7 @@ $a->strings["User waiting for permanent deletion"] = "Utilisateur en attente de
|
|||
$a->strings["Request date"] = "Date de la demande";
|
||||
$a->strings["No registrations."] = "Pas d'inscriptions.";
|
||||
$a->strings["Note from the user"] = "";
|
||||
$a->strings["Approve"] = "Approuver";
|
||||
$a->strings["Deny"] = "Rejetter";
|
||||
$a->strings["Block"] = "Bloquer";
|
||||
$a->strings["Unblock"] = "Débloquer";
|
||||
|
|
@ -1726,14 +1036,14 @@ $a->strings["Plugin %s enabled."] = "Extension %s activée.";
|
|||
$a->strings["Disable"] = "Désactiver";
|
||||
$a->strings["Enable"] = "Activer";
|
||||
$a->strings["Toggle"] = "Activer/Désactiver";
|
||||
$a->strings["Author: "] = "Auteur: ";
|
||||
$a->strings["Maintainer: "] = "Mainteneur: ";
|
||||
$a->strings["Author: "] = "Auteur : ";
|
||||
$a->strings["Maintainer: "] = "Mainteneur : ";
|
||||
$a->strings["Reload active plugins"] = "Recharger les extensions actives";
|
||||
$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = "";
|
||||
$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = "Aucun plugin n'a été trouvé sur votre instance. Le répertoire officiel des plugins se trouve sur %1\$s. D'autres plugins sont disponibles sur %2\$s.";
|
||||
$a->strings["No themes found."] = "Aucun thème trouvé.";
|
||||
$a->strings["Screenshot"] = "Capture d'écran";
|
||||
$a->strings["Reload active themes"] = "Recharger les thèmes actifs";
|
||||
$a->strings["No themes found on the system. They should be paced in %1\$s"] = "";
|
||||
$a->strings["No themes found on the system. They should be paced in %1\$s"] = "Aucun thème n'a été trouvé. Vous devez placer les thèmes dans %1\$s";
|
||||
$a->strings["[Experimental]"] = "[Expérimental]";
|
||||
$a->strings["[Unsupported]"] = "[Non supporté]";
|
||||
$a->strings["Log settings updated."] = "Réglages des journaux mis-à-jour.";
|
||||
|
|
@ -1746,8 +1056,35 @@ $a->strings["Must be writable by web server. Relative to your Friendica top-leve
|
|||
$a->strings["Log level"] = "Niveau de journalisaton";
|
||||
$a->strings["PHP logging"] = "Log PHP";
|
||||
$a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "";
|
||||
$a->strings["Off"] = "Éteint";
|
||||
$a->strings["On"] = "Allumé";
|
||||
$a->strings["Lock feature %s"] = "Verouiller la fonctionnalité %s";
|
||||
$a->strings["Manage Additional Features"] = "Gérer les fonctionnalités avancées";
|
||||
$a->strings["No friends to display."] = "Pas d'amis à afficher.";
|
||||
$a->strings["Authorize application connection"] = "Autoriser l'application à se connecter";
|
||||
$a->strings["Return to your app and insert this Securty Code:"] = "Retournez à votre application et saisissez ce Code de Sécurité : ";
|
||||
$a->strings["Please login to continue."] = "Merci de vous connecter pour continuer.";
|
||||
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à créer des billets à votre place?";
|
||||
$a->strings["No"] = "Non";
|
||||
$a->strings["You must be logged in to use addons. "] = "Vous devez être connecté pour utiliser les greffons.";
|
||||
$a->strings["Applications"] = "Applications";
|
||||
$a->strings["No installed applications."] = "Pas d'application installée.";
|
||||
$a->strings["Item not available."] = "Elément non disponible.";
|
||||
$a->strings["Item was not found."] = "Element introuvable.";
|
||||
$a->strings["Access to this profile has been restricted."] = "L'accès au profil a été restreint.";
|
||||
$a->strings["View"] = "Vue";
|
||||
$a->strings["Previous"] = "Précédent";
|
||||
$a->strings["Next"] = "Suivant";
|
||||
$a->strings["list"] = "";
|
||||
$a->strings["User not found"] = "Utilisateur introuvable";
|
||||
$a->strings["This calendar format is not supported"] = "Format de calendrier inconnu";
|
||||
$a->strings["No exportable data found"] = "Rien à exporter";
|
||||
$a->strings["calendar"] = "calendrier";
|
||||
$a->strings["No contacts in common."] = "Pas de contacts en commun.";
|
||||
$a->strings["Common Friends"] = "Amis communs";
|
||||
$a->strings["Not available."] = "Indisponible.";
|
||||
$a->strings["No results."] = "Aucun résultat.";
|
||||
$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "";
|
||||
$a->strings["%d contact edited."] = array(
|
||||
0 => "%d contact mis à jour.",
|
||||
1 => "%d contacts mis à jour.",
|
||||
|
|
@ -1775,13 +1112,18 @@ $a->strings["Suggest friends"] = "Suggérer amitié/contact";
|
|||
$a->strings["Network type: %s"] = "Type de réseau %s";
|
||||
$a->strings["Communications lost with this contact!"] = "Communications perdues avec ce contact !";
|
||||
$a->strings["Fetch further information for feeds"] = "Chercher plus d'informations pour les flux";
|
||||
$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "";
|
||||
$a->strings["Fetch information"] = "Récupérer informations";
|
||||
$a->strings["Fetch keywords"] = "";
|
||||
$a->strings["Fetch information and keywords"] = "Récupérer informations";
|
||||
$a->strings["Disconnect/Unfollow"] = "";
|
||||
$a->strings["Contact"] = "Contact";
|
||||
$a->strings["Profile Visibility"] = "Visibilité du profil";
|
||||
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée.";
|
||||
$a->strings["Contact Information / Notes"] = "Informations de contact / Notes";
|
||||
$a->strings["Their personal note"] = "";
|
||||
$a->strings["Edit contact notes"] = "Éditer les notes des contacts";
|
||||
$a->strings["Visit %s's profile [%s]"] = "Visiter le profil de %s [%s]";
|
||||
$a->strings["Block/Unblock contact"] = "Bloquer/débloquer ce contact";
|
||||
$a->strings["Ignore contact"] = "Ignorer ce contact";
|
||||
$a->strings["Repair URL settings"] = "Réglages de réparation des URL";
|
||||
|
|
@ -1790,18 +1132,23 @@ $a->strings["Last update:"] = "Dernière mise-à-jour :";
|
|||
$a->strings["Update public posts"] = "Mettre à jour les publications publiques:";
|
||||
$a->strings["Update now"] = "Mettre à jour";
|
||||
$a->strings["Unignore"] = "Ne plus ignorer";
|
||||
$a->strings["Ignore"] = "Ignorer";
|
||||
$a->strings["Currently blocked"] = "Actuellement bloqué";
|
||||
$a->strings["Currently ignored"] = "Actuellement ignoré";
|
||||
$a->strings["Currently archived"] = "Actuellement archivé";
|
||||
$a->strings["Awaiting connection acknowledge"] = "";
|
||||
$a->strings["Hide this contact from others"] = "Cacher ce contact aux autres";
|
||||
$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Les réponses et \"j'aime\" à vos publications publiques <strong>peuvent</strong> être toujours visibles";
|
||||
$a->strings["Notification for new posts"] = "Notification des nouvelles publications";
|
||||
$a->strings["Send a notification of every new post of this contact"] = "Envoyer une notification de chaque nouveau message en provenance de ce contact";
|
||||
$a->strings["Blacklisted keywords"] = "Mots-clés sur la liste noire";
|
||||
$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Liste de mots-clés separés par des virgules qui ne doivent pas être converti en mots-dièse quand « Récupérer informations et mots-clés » est sélectionné.";
|
||||
$a->strings["Profile URL"] = "URL du Profil";
|
||||
$a->strings["Actions"] = "Actions";
|
||||
$a->strings["Contact Settings"] = "Paramètres du Contact";
|
||||
$a->strings["Suggestions"] = "Suggestions";
|
||||
$a->strings["Suggest potential friends"] = "Suggérer des amis potentiels";
|
||||
$a->strings["All Contacts"] = "Tous les contacts";
|
||||
$a->strings["Show all contacts"] = "Montrer tous les contacts";
|
||||
$a->strings["Unblocked"] = "Non-bloqués";
|
||||
$a->strings["Only show unblocked contacts"] = "Ne montrer que les contacts non-bloqués";
|
||||
|
|
@ -1814,6 +1161,8 @@ $a->strings["Only show archived contacts"] = "Ne montrer que les contacts archiv
|
|||
$a->strings["Hidden"] = "Cachés";
|
||||
$a->strings["Only show hidden contacts"] = "Ne montrer que les contacts masqués";
|
||||
$a->strings["Search your contacts"] = "Rechercher dans vos contacts";
|
||||
$a->strings["Results for: %s"] = "Résultats pour : %s";
|
||||
$a->strings["Update"] = "Mises-à-jour";
|
||||
$a->strings["Archive"] = "Archiver";
|
||||
$a->strings["Unarchive"] = "Désarchiver";
|
||||
$a->strings["Batch Actions"] = "Actions multiples";
|
||||
|
|
@ -1823,10 +1172,41 @@ $a->strings["Advanced Contact Settings"] = "Réglages avancés du contact";
|
|||
$a->strings["Mutual Friendship"] = "Relation réciproque";
|
||||
$a->strings["is a fan of yours"] = "Vous suit";
|
||||
$a->strings["you are a fan of"] = "Vous le/la suivez";
|
||||
$a->strings["Edit contact"] = "Éditer le contact";
|
||||
$a->strings["Toggle Blocked status"] = "(dés)activer l'état \"bloqué\"";
|
||||
$a->strings["Toggle Ignored status"] = "(dés)activer l'état \"ignoré\"";
|
||||
$a->strings["Toggle Archive status"] = "(dés)activer l'état \"archivé\"";
|
||||
$a->strings["Delete contact"] = "Effacer ce contact";
|
||||
$a->strings["Contact settings applied."] = "Réglages du contact appliqués.";
|
||||
$a->strings["Contact update failed."] = "Impossible d'appliquer les réglages.";
|
||||
$a->strings["Contact not found."] = "Contact introuvable.";
|
||||
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATTENTION: Manipulation réservée aux experts</strong>, toute information incorrecte pourrait empêcher la communication avec ce contact.";
|
||||
$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "une photo";
|
||||
$a->strings["No mirroring"] = "Pas de miroir";
|
||||
$a->strings["Mirror as forwarded posting"] = "";
|
||||
$a->strings["Mirror as my own posting"] = "";
|
||||
$a->strings["Return to contact editor"] = "Retour à l'éditeur de contact";
|
||||
$a->strings["Refetch contact data"] = "Récupérer à nouveau les données de contact";
|
||||
$a->strings["Remote Self"] = "Identité à distance";
|
||||
$a->strings["Mirror postings from this contact"] = "Copier les publications de ce contact";
|
||||
$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Marquer ce contact comme étant remote_self, friendica republiera alors les nouvelles entrées de ce contact.";
|
||||
$a->strings["Account Nickname"] = "Pseudo du compte";
|
||||
$a->strings["@Tagname - overrides Name/Nickname"] = "@NomEtiquette - prend le pas sur Nom/Pseudo";
|
||||
$a->strings["Account URL"] = "URL du compte";
|
||||
$a->strings["Friend Request URL"] = "Echec du téléversement de l'image.";
|
||||
$a->strings["Friend Confirm URL"] = "Accès public refusé.";
|
||||
$a->strings["Notification Endpoint URL"] = "Aucune photo sélectionnée";
|
||||
$a->strings["Poll/Feed URL"] = "Téléverser des photos";
|
||||
$a->strings["New photo from this URL"] = "Nouvelle photo depuis cette URL";
|
||||
$a->strings["No potential page delegates located."] = "Pas de délégataire potentiel.";
|
||||
$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue.";
|
||||
$a->strings["Existing Page Managers"] = "Gestionnaires existants";
|
||||
$a->strings["Existing Page Delegates"] = "Délégataires existants";
|
||||
$a->strings["Potential Delegates"] = "Délégataires potentiels";
|
||||
$a->strings["Remove"] = "Utiliser comme photo de profil";
|
||||
$a->strings["Add"] = "Ajouter";
|
||||
$a->strings["No entries."] = "Aucune entrée.";
|
||||
$a->strings["Profile not found."] = "Profil introuvable.";
|
||||
$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Ceci peut se produire lorsque le contact a été requis par les deux personnes et a déjà été approuvé.";
|
||||
$a->strings["Response from remote site was not understood."] = "Réponse du site distant incomprise.";
|
||||
$a->strings["Unexpected response from remote site: "] = "Réponse inattendue du site distant : ";
|
||||
|
|
@ -1844,6 +1224,7 @@ $a->strings["The ID provided by your system is a duplicate on our system. It sho
|
|||
$a->strings["Unable to set your contact credentials on our system."] = "Impossible de vous définir des permissions sur notre système.";
|
||||
$a->strings["Unable to update your contact profile details on our system"] = "Impossible de mettre les détails de votre profil à jour sur notre système";
|
||||
$a->strings["%1\$s has joined %2\$s"] = "%1\$s a rejoint %2\$s";
|
||||
$a->strings["%1\$s welcomes %2\$s"] = "%1\$s accueille %2\$s";
|
||||
$a->strings["This introduction has already been accepted."] = "Cette introduction a déjà été acceptée.";
|
||||
$a->strings["Profile location is not valid or does not contain profile information."] = "L'emplacement du profil est invalide ou ne contient pas de profil valide.";
|
||||
$a->strings["Warning: profile location has no identifiable owner name."] = "Attention: l'emplacement du profil n'a pas de nom identifiable.";
|
||||
|
|
@ -1876,18 +1257,77 @@ $a->strings["Please enter your 'Identity Address' from one of the following supp
|
|||
$a->strings["If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Si vous n’êtes pas encore membre du web social libre, <a href=\"%s/siteinfo\">suivez ce lien pour trouver un site Friendica ouvert au public et nous rejoindre dès aujourd’hui</a>.";
|
||||
$a->strings["Friend/Connection Request"] = "Requête de relation/amitié";
|
||||
$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
|
||||
$a->strings["Please answer the following:"] = "Merci de répondre à ce qui suit:";
|
||||
$a->strings["Please answer the following:"] = "Merci de répondre à ce qui suit :";
|
||||
$a->strings["Does %s know you?"] = "Est-ce que %s vous connaît?";
|
||||
$a->strings["Add a personal note:"] = "Ajouter une note personnelle:";
|
||||
$a->strings["Add a personal note:"] = "Ajouter une note personnelle :";
|
||||
$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
|
||||
$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - merci de ne pas utiliser ce formulaire. Entrez plutôt %s dans votre barre de recherche Diaspora.";
|
||||
$a->strings["Your Identity Address:"] = "Votre adresse d'identité:";
|
||||
$a->strings["Your Identity Address:"] = "Votre adresse d'identité :";
|
||||
$a->strings["Submit Request"] = "Envoyer la requête";
|
||||
$a->strings["Global Directory"] = "Annuaire global";
|
||||
$a->strings["Find on this site"] = "Trouver sur ce site";
|
||||
$a->strings["Results for:"] = "Résultats pour :";
|
||||
$a->strings["Site Directory"] = "Annuaire local";
|
||||
$a->strings["No entries (some entries may be hidden)."] = "Aucune entrée (certaines peuvent être cachées).";
|
||||
$a->strings["People Search - %s"] = "Recherche de personne - %s";
|
||||
$a->strings["Forum Search - %s"] = "Recherche de Forum - %s";
|
||||
$a->strings["No matches"] = "Aucune correspondance";
|
||||
$a->strings["Item has been removed."] = "Cet élément a été enlevé.";
|
||||
$a->strings["Item not found"] = "Élément introuvable";
|
||||
$a->strings["Edit post"] = "Éditer la publication";
|
||||
$a->strings["Event can not end before it has started."] = "L'événement ne peut pas se terminer avant d'avoir commencé.";
|
||||
$a->strings["Event title and start time are required."] = "Vous devez donner un nom et un horaire de début à l'événement.";
|
||||
$a->strings["Create New Event"] = "Créer un nouvel événement";
|
||||
$a->strings["Event details"] = "Détails de l'événement";
|
||||
$a->strings["Starting date and Title are required."] = "La date de début et le titre sont requis.";
|
||||
$a->strings["Event Starts:"] = "Début de l'événement :";
|
||||
$a->strings["Required"] = "Requis";
|
||||
$a->strings["Finish date/time is not known or not relevant"] = "Date / heure de fin inconnue ou sans objet";
|
||||
$a->strings["Event Finishes:"] = "Fin de l'événement :";
|
||||
$a->strings["Adjust for viewer timezone"] = "Ajuster à la zone horaire du visiteur";
|
||||
$a->strings["Description:"] = "Description :";
|
||||
$a->strings["Title:"] = "Titre :";
|
||||
$a->strings["Share this event"] = "Partager cet événement";
|
||||
$a->strings["Failed to remove event"] = "La suppression de l'événement a échoué.";
|
||||
$a->strings["Event removed"] = "Événement supprimé.";
|
||||
$a->strings["Files"] = "Fichiers";
|
||||
$a->strings["- select -"] = "- choisir -";
|
||||
$a->strings["Contact added"] = "Contact ajouté";
|
||||
$a->strings["You already added this contact."] = "Vous avez déjà ajouté ce contact.";
|
||||
$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Le support de Diaspora est désactivé. Le contact ne peut pas être ajouté.";
|
||||
$a->strings["OStatus support is disabled. Contact can't be added."] = "Le support d'OStatus est désactivé. Le contact ne peut pas être ajouté.";
|
||||
$a->strings["The network type couldn't be detected. Contact can't be added."] = "Impossible de détecter le type de réseau. Le contact ne peut pas être ajouté.";
|
||||
$a->strings["Contact added"] = "Contact ajouté";
|
||||
$a->strings["This is Friendica, version"] = "Motorisé par Friendica version";
|
||||
$a->strings["running at web location"] = "hébergé sur";
|
||||
$a->strings["Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more about the Friendica project."] = "Rendez-vous sur <a href=\"https://friendi.ca\">Friendi.ca</a> pour en savoir plus sur le projet Friendica.";
|
||||
$a->strings["Bug reports and issues: please visit"] = "Pour les rapports de bugs : rendez vous sur";
|
||||
$a->strings["the bugtracker at github"] = "le bugtracker sur GitHub";
|
||||
$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com";
|
||||
$a->strings["Installed plugins/addons/apps:"] = "Extensions/greffons/applications installées :";
|
||||
$a->strings["No installed plugins/addons/apps"] = "Extensions/greffons/applications non installées :";
|
||||
$a->strings["On this server the following remote servers are blocked."] = "Sur ce serveur, les serveurs suivants sont sur liste noire.";
|
||||
$a->strings["Friend suggestion sent."] = "Suggestion d'amitié/contact envoyée.";
|
||||
$a->strings["Suggest Friends"] = "Suggérer des amis/contacts";
|
||||
$a->strings["Suggest a friend for %s"] = "Suggérer un ami/contact pour %s";
|
||||
$a->strings["Group created."] = "Groupe créé.";
|
||||
$a->strings["Could not create group."] = "Impossible de créer le groupe.";
|
||||
$a->strings["Group not found."] = "Groupe introuvable.";
|
||||
$a->strings["Group name changed."] = "Groupe renommé.";
|
||||
$a->strings["Permission denied"] = "Permission refusée";
|
||||
$a->strings["Save Group"] = "Sauvegarder le groupe";
|
||||
$a->strings["Create a group of contacts/friends."] = "Créez un groupe de contacts/amis.";
|
||||
$a->strings["Group removed."] = "Groupe enlevé.";
|
||||
$a->strings["Unable to remove group."] = "Impossible d'enlever le groupe.";
|
||||
$a->strings["Delete Group"] = "Supprimer le groupe";
|
||||
$a->strings["Group Editor"] = "Éditeur de groupe";
|
||||
$a->strings["Edit Group Name"] = "Éditer le nom du groupe";
|
||||
$a->strings["Members"] = "Membres";
|
||||
$a->strings["Group is empty"] = "Groupe vide";
|
||||
$a->strings["Remove Contact"] = "Supprimer le contact";
|
||||
$a->strings["Add Contact"] = "Ajouter le contact";
|
||||
$a->strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le supprimer.";
|
||||
$a->strings["No profile"] = "Aucun profil";
|
||||
$a->strings["Welcome to %s"] = "Bienvenue sur %s";
|
||||
$a->strings["Friendica Communications Server - Setup"] = "Serveur de communications Friendica - Configuration";
|
||||
$a->strings["Could not connect to database."] = "Impossible de se connecter à la base.";
|
||||
$a->strings["Could not create table."] = "Impossible de créer une table.";
|
||||
|
|
@ -1904,20 +1344,21 @@ $a->strings["The database you specify below should already exist. If it does not
|
|||
$a->strings["Database Server Name"] = "Serveur de base de données";
|
||||
$a->strings["Database Login Name"] = "Nom d'utilisateur de la base";
|
||||
$a->strings["Database Login Password"] = "Mot de passe de la base";
|
||||
$a->strings["For security reasons the password must not be empty"] = "Pour des raisons de sécurité, le mot de passe ne peut pas être vide.";
|
||||
$a->strings["Database Name"] = "Nom de la base";
|
||||
$a->strings["Site administrator email address"] = "Adresse électronique de l'administrateur du site";
|
||||
$a->strings["Your account email address must match this in order to use the web admin panel."] = "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration.";
|
||||
$a->strings["Please select a default timezone for your website"] = "Sélectionner un fuseau horaire par défaut pour votre site";
|
||||
$a->strings["Site settings"] = "Réglages du site";
|
||||
$a->strings["System Language:"] = "Langue système:";
|
||||
$a->strings["System Language:"] = "Langue système :";
|
||||
$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Définit la langue par défaut pour l'interface de votre instance Friendica et les mails envoyés.";
|
||||
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web.";
|
||||
$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "Si vous n'avez pas une version en ligne de commande de PHP sur votre serveur, vous ne pourrez pas exécuter l'attente active ou « polling » en arrière-plan via cron. Voir <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>.";
|
||||
$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-worker'>'Setup the worker'</a>"] = "Si vous n'avez pas accès à PHP en lignes de commandes sur votre serveur, vous ne serez pas en mesure de faire fonctionner les tâches de fond. Voir <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-worker'>'Réglage du worker'</a>.";
|
||||
$a->strings["PHP executable path"] = "Chemin vers l'exécutable de PHP";
|
||||
$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation.";
|
||||
$a->strings["Command line PHP"] = "Version \"ligne de commande\" de PHP";
|
||||
$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)";
|
||||
$a->strings["Found PHP version: "] = "Version de PHP:";
|
||||
$a->strings["Found PHP version: "] = "Version de PHP :";
|
||||
$a->strings["PHP cli binary"] = "PHP cli binary";
|
||||
$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé.";
|
||||
$a->strings["This is required for message delivery to work."] = "Ceci est requis pour que la livraison des messages fonctionne.";
|
||||
|
|
@ -1928,9 +1369,8 @@ $a->strings["Generate encryption keys"] = "Générer les clés de chiffrement";
|
|||
$a->strings["libCurl PHP module"] = "Module libCurl de PHP";
|
||||
$a->strings["GD graphics PHP module"] = "Module GD (graphiques) de PHP";
|
||||
$a->strings["OpenSSL PHP module"] = "Module OpenSSL de PHP";
|
||||
$a->strings["mysqli PHP module"] = "Module Mysqli de PHP";
|
||||
$a->strings["PDO or MySQLi PHP module"] = "";
|
||||
$a->strings["mb_string PHP module"] = "Module mb_string de PHP";
|
||||
$a->strings["mcrypt PHP module"] = "Module PHP mcrypt";
|
||||
$a->strings["XML PHP module"] = "Module PHP XML";
|
||||
$a->strings["iconv module"] = "Module iconv";
|
||||
$a->strings["Apache mod_rewrite module"] = "Module mod_rewrite Apache";
|
||||
|
|
@ -1938,13 +1378,10 @@ $a->strings["Error: Apache webserver mod-rewrite module is required but not inst
|
|||
$a->strings["Error: libCURL PHP module required but not installed."] = "Erreur : Le module PHP \"libCURL\" est requis mais pas installé.";
|
||||
$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erreur : Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé.";
|
||||
$a->strings["Error: openssl PHP module required but not installed."] = "Erreur : Le module PHP \"openssl\" est requis mais pas installé.";
|
||||
$a->strings["Error: mysqli PHP module required but not installed."] = "Erreur : Le module PHP \"mysqli\" est requis mais pas installé.";
|
||||
$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "";
|
||||
$a->strings["Error: The MySQL driver for PDO is not installed."] = "";
|
||||
$a->strings["Error: mb_string PHP module required but not installed."] = "Erreur : le module PHP mb_string est requis mais pas installé.";
|
||||
$a->strings["Error: mcrypt PHP module required but not installed."] = "Erreur : le module PHP mcrypt est nécessaire, mais n'es pas installé.";
|
||||
$a->strings["Error: iconv PHP module required but not installed."] = "Erreur : Le module PHP iconv requis est absent.";
|
||||
$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = "Si vous utilisez php_cli, veuillez vous assurer que le module mcrypt est activé dans le fichier de configuration";
|
||||
$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "La fonction mcrypt_create_iv() n'est pas définie. Elle est requise pour activer le chiffrement RINO2.";
|
||||
$a->strings["mcrypt_create_iv() function"] = "fonction mcrypt_create_iv()";
|
||||
$a->strings["Error, XML PHP module required but not installed."] = "Erreur : le module PHP XML requis est absent.";
|
||||
$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable.";
|
||||
$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez.";
|
||||
|
|
@ -1958,12 +1395,35 @@ $a->strings["Note: as a security measure, you should give the web server write a
|
|||
$a->strings["view/smarty3 is writable"] = "view/smarty3 est autorisé à l écriture";
|
||||
$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur.";
|
||||
$a->strings["Url rewrite is working"] = "La réécriture d'URL fonctionne.";
|
||||
$a->strings["ImageMagick PHP extension is not installed"] = "";
|
||||
$a->strings["ImageMagick PHP extension is not installed"] = "L'extension PHP ImageMagick n'est pas installée";
|
||||
$a->strings["ImageMagick PHP extension is installed"] = "L’extension PHP ImageMagick est installée";
|
||||
$a->strings["ImageMagick supports GIF"] = "ImageMagick supporte le format GIF";
|
||||
$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement.";
|
||||
$a->strings["<h1>What next</h1>"] = "<h1>Ensuite</h1>";
|
||||
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le \"poller\".";
|
||||
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "IMPORTANT: vous devrez ajouter [manuellement] une tâche planifiée pour le 'worker'.";
|
||||
$a->strings["Total invitation limit exceeded."] = "La limite d'invitation totale est éxédée.";
|
||||
$a->strings["%s : Not a valid email address."] = "%s : Adresse de courriel invalide.";
|
||||
$a->strings["Please join us on Friendica"] = "Rejoignez-nous sur Friendica";
|
||||
$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site.";
|
||||
$a->strings["%s : Message delivery failed."] = "%s : L'envoi du message a échoué.";
|
||||
$a->strings["%d message sent."] = array(
|
||||
0 => "%d message envoyé.",
|
||||
1 => "%d messages envoyés.",
|
||||
);
|
||||
$a->strings["You have no more invitations available"] = "Vous n'avez plus d'invitations disponibles";
|
||||
$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux.";
|
||||
$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public.";
|
||||
$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre.";
|
||||
$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres.";
|
||||
$a->strings["To accept this invitation, please visit and register at %s."] = "Pour accepter cette invitation, rendez-vous sur %s et inscrivez-vous.";
|
||||
$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = "Les instances Friendica sont interconnectées pour créer un immense réseau social possédé et contrôlé par ses membres, et qui respecte leur vie privée. Ils peuvent aussi s'interconnecter avec d'autres réseaux sociaux traditionnels.";
|
||||
$a->strings["Send invitations"] = "Envoyer des invitations";
|
||||
$a->strings["Enter email addresses, one per line:"] = "Entrez les adresses email, une par ligne :";
|
||||
$a->strings["Your message:"] = "Votre message :";
|
||||
$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social.";
|
||||
$a->strings["You will need to supply this invitation code: \$invite_code"] = "Vous devrez fournir ce code d'invitation : \$invite_code";
|
||||
$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Une fois inscrit, connectez-vous à la page de mon profil sur :";
|
||||
$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "";
|
||||
$a->strings["Unable to locate original post."] = "Impossible de localiser la publication originale.";
|
||||
$a->strings["Empty post discarded."] = "Publication vide rejetée.";
|
||||
$a->strings["System error. Post not saved."] = "Erreur système. Publication non sauvée.";
|
||||
|
|
@ -1971,17 +1431,75 @@ $a->strings["This message was sent to you by %s, a member of the Friendica socia
|
|||
$a->strings["You may visit them online at %s"] = "Vous pouvez leur rendre visite sur %s";
|
||||
$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages.";
|
||||
$a->strings["%s posted an update."] = "%s a publié une mise à jour.";
|
||||
$a->strings["Remote privacy information not available."] = "Informations de confidentialité indisponibles.";
|
||||
$a->strings["Visible to:"] = "Visible par :";
|
||||
$a->strings["No valid account found."] = "Impossible de trouver un compte valide.";
|
||||
$a->strings["Password reset request issued. Check your email."] = "Réinitialisation du mot de passe en cours. Vérifiez votre courriel.";
|
||||
$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tChère/Cher %1\$s,\n\t\t\tNous avons reçu une demande de ré-initialisation du mot de passe de votre compte sur \"%2\$s\". Pour confirmer cette demande, veuillez cliquer sur le lien de vérification ci-dessous ou le coller dans la barre d’adresse de votre navigateur.\n\n\t\tSi vous n’êtes PAS à l’origine de cette demande, NE suivez PAS le lien—ignorez et/ou supprimez ce message.\n\n\t\tVotre mot de passe ne sera pas modifié si nous n’avons pas de confirmation que la demande émane de vous.";
|
||||
$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tSuivez ce lien pour confirmer votre identité :\n\n\t\t%1\$s\n\n\t\tVous recevrez alors a message contenant votre nouveau mot de passe.\n\t\tVous pourrez changer ce mot de passe depuis les paramètres de votre compte une fois connecté.\n\n\t\tInformations de connexion :\n\n\t\tAdresse :\t%2\$s\n\t\tIdentifiant :\t%3\$s";
|
||||
$a->strings["Password reset requested at %s"] = "Requête de réinitialisation de mot de passe à %s";
|
||||
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué.";
|
||||
$a->strings["Password Reset"] = "Réinitialiser le mot de passe";
|
||||
$a->strings["Your password has been reset as requested."] = "Votre mot de passe a bien été réinitialisé.";
|
||||
$a->strings["Your new password is"] = "Votre nouveau mot de passe est ";
|
||||
$a->strings["Save or copy your new password - and then"] = "Sauvez ou copiez ce nouveau mot de passe - puis";
|
||||
$a->strings["click here to login"] = "cliquez ici pour vous connecter";
|
||||
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Votre mot de passe peut être changé depuis la page <em>Réglages</em>, une fois que vous serez connecté.";
|
||||
$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tChère/Cher %1\$s,\n\t\t\t\t\tVotre mot de passe a été changé ainsi que vous l’avez demandé. Veuillez conserver cette informations dans vos archives (ou changer immédiatement votre mot de passe pour un autre dont vous vous souviendrez).\n\t\t\t";
|
||||
$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\n\t\t\t\tVoici vos informations de connexion :\n\n\t\t\t\tAdresse :\t%1\$s\n\t\t\t\tIdentifiant :\t%2\$s\n\t\t\t\tMot de passe :\t%3\$s\n\n\t\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\t\t\t";
|
||||
$a->strings["Your password has been changed at %s"] = "Votre mot de passe a été modifié à %s";
|
||||
$a->strings["Forgot your Password?"] = "Mot de passe oublié ?";
|
||||
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel.";
|
||||
$a->strings["Nickname or Email: "] = "Pseudo ou eMail : ";
|
||||
$a->strings["Reset"] = "Réinitialiser";
|
||||
$a->strings["Manage Identities and/or Pages"] = "Gérer les identités et/ou les pages";
|
||||
$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer.";
|
||||
$a->strings["Select an identity to manage: "] = "Choisir une identité à gérer: ";
|
||||
$a->strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut.";
|
||||
$a->strings["is interested in:"] = "s'intéresse à :";
|
||||
$a->strings["Profile Match"] = "Correpondance de profils";
|
||||
$a->strings["No recipient selected."] = "Pas de destinataire sélectionné.";
|
||||
$a->strings["Unable to locate contact information."] = "Impossible de localiser les informations du contact.";
|
||||
$a->strings["Message could not be sent."] = "Impossible d'envoyer le message.";
|
||||
$a->strings["Message collection failure."] = "Récupération des messages infructueuse.";
|
||||
$a->strings["Message sent."] = "Message envoyé.";
|
||||
$a->strings["Do you really want to delete this message?"] = "Voulez-vous vraiment supprimer ce message ?";
|
||||
$a->strings["Message deleted."] = "Message supprimé.";
|
||||
$a->strings["Conversation removed."] = "Conversation supprimée.";
|
||||
$a->strings["Send Private Message"] = "Envoyer un message privé";
|
||||
$a->strings["To:"] = "À:";
|
||||
$a->strings["Subject:"] = "Sujet:";
|
||||
$a->strings["No messages."] = "Aucun message.";
|
||||
$a->strings["Message not available."] = "Message indisponible.";
|
||||
$a->strings["Delete message"] = "Effacer message";
|
||||
$a->strings["Delete conversation"] = "Effacer conversation";
|
||||
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Pas de communications sécurisées possibles. Vous serez <strong>peut-être</strong> en mesure de répondre depuis la page de profil de l'émetteur.";
|
||||
$a->strings["Send Reply"] = "Répondre";
|
||||
$a->strings["Unknown sender - %s"] = "Émetteur inconnu - %s";
|
||||
$a->strings["You and %s"] = "Vous et %s";
|
||||
$a->strings["%s and You"] = "%s et vous";
|
||||
$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
|
||||
$a->strings["%d message"] = array(
|
||||
0 => "%d message",
|
||||
1 => "%d messages",
|
||||
);
|
||||
$a->strings["Mood"] = "Humeur";
|
||||
$a->strings["Set your current mood and tell your friends"] = "Spécifiez votre humeur du moment, et informez vos amis";
|
||||
$a->strings["Remove term"] = "Retirer le terme";
|
||||
$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array(
|
||||
0 => "",
|
||||
1 => "",
|
||||
);
|
||||
$a->strings["Messages in this group won't be send to these receivers."] = "";
|
||||
$a->strings["Messages in this group won't be send to these receivers."] = "Les messages dans ce groupe ne seront pas envoyés à ces destinataires.";
|
||||
$a->strings["No such group"] = "Groupe inexistant";
|
||||
$a->strings["Group: %s"] = "Group : %s";
|
||||
$a->strings["Private messages to this person are at risk of public disclosure."] = "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée.";
|
||||
$a->strings["Invalid contact."] = "Contact invalide.";
|
||||
$a->strings["Commented Order"] = "Tri par commentaires";
|
||||
$a->strings["Sort by Comment Date"] = "Trier par date de commentaire";
|
||||
$a->strings["Posted Order"] = "Tri des publications";
|
||||
$a->strings["Sort by Post Date"] = "Trier par date de publication";
|
||||
$a->strings["Personal"] = "Personnel";
|
||||
$a->strings["Posts that mention or involve you"] = "Publications qui vous concernent";
|
||||
$a->strings["New"] = "Nouveau";
|
||||
$a->strings["Activity Stream - by date"] = "Flux d'activités - par date";
|
||||
|
|
@ -1989,11 +1507,489 @@ $a->strings["Shared Links"] = "Liens partagés";
|
|||
$a->strings["Interesting Links"] = "Liens intéressants";
|
||||
$a->strings["Starred"] = "Mis en avant";
|
||||
$a->strings["Favourite Posts"] = "Publications favorites";
|
||||
$a->strings["Welcome to Friendica"] = "Bienvenue sur Friendica";
|
||||
$a->strings["New Member Checklist"] = "Checklist du nouvel utilisateur";
|
||||
$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement.";
|
||||
$a->strings["Getting Started"] = "Bien démarrer";
|
||||
$a->strings["Friendica Walk-Through"] = "Friendica pas-à-pas";
|
||||
$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sur votre page d'accueil, dans <em>Conseils aux nouveaux venus</em> - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre.";
|
||||
$a->strings["Go to Your Settings"] = "Éditer vos Réglages";
|
||||
$a->strings["On your <em>Settings</em> page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Sur la page des <em>Réglages</em> - changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre.";
|
||||
$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver.";
|
||||
$a->strings["Upload Profile Photo"] = "Téléverser une photo de profil";
|
||||
$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis.";
|
||||
$a->strings["Edit Your Profile"] = "Éditer votre Profil";
|
||||
$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Éditez votre profil <strong>par défaut</strong> à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus.";
|
||||
$a->strings["Profile Keywords"] = "Mots-clés du profil";
|
||||
$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent.";
|
||||
$a->strings["Connecting"] = "Connexions";
|
||||
$a->strings["Importing Emails"] = "Importer courriels";
|
||||
$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception.";
|
||||
$a->strings["Go to Your Contacts Page"] = "Consulter vos Contacts";
|
||||
$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire <em>Ajouter un nouveau contact</em>.";
|
||||
$a->strings["Go to Your Site's Directory"] = "Consulter l'Annuaire de votre Site";
|
||||
$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien <em>Relier</em> ou <em>Suivre</em> sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité.";
|
||||
$a->strings["Finding New People"] = "Trouver de nouvelles personnes";
|
||||
$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures.";
|
||||
$a->strings["Group Your Contacts"] = "Grouper vos contacts";
|
||||
$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau.";
|
||||
$a->strings["Why Aren't My Posts Public?"] = "Pourquoi mes éléments ne sont pas publics ?";
|
||||
$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus.";
|
||||
$a->strings["Getting Help"] = "Obtenir de l'aide";
|
||||
$a->strings["Go to the Help Section"] = "Aller à la section Aide";
|
||||
$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Nos pages d'<strong>aide</strong> peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources.";
|
||||
$a->strings["Contacts who are not members of a group"] = "Contacts qui n’appartiennent à aucun groupe";
|
||||
$a->strings["Invalid request identifier."] = "Identifiant de demande invalide.";
|
||||
$a->strings["Discard"] = "Rejeter";
|
||||
$a->strings["Network Notifications"] = "Notifications du réseau";
|
||||
$a->strings["System Notifications"] = "Notifications du système";
|
||||
$a->strings["Personal Notifications"] = "Notifications personnelles";
|
||||
$a->strings["Home Notifications"] = "Notifications de page d'accueil";
|
||||
$a->strings["Show Ignored Requests"] = "Voir les demandes ignorées";
|
||||
$a->strings["Hide Ignored Requests"] = "Cacher les demandes ignorées";
|
||||
$a->strings["Notification type: "] = "Type de notification : ";
|
||||
$a->strings["suggested by %s"] = "suggéré(e) par %s";
|
||||
$a->strings["Post a new friend activity"] = "Poster une nouvelle avtivité d'ami";
|
||||
$a->strings["if applicable"] = "si possible";
|
||||
$a->strings["Claims to be known to you: "] = "Prétend que vous le connaissez : ";
|
||||
$a->strings["yes"] = "oui";
|
||||
$a->strings["no"] = "non";
|
||||
$a->strings["Shall your connection be bidirectional or not?"] = "Souhaitez vous que votre connexion soit bi-directionnelle ?";
|
||||
$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "";
|
||||
$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "";
|
||||
$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "";
|
||||
$a->strings["Friend"] = "Ami";
|
||||
$a->strings["Sharer"] = "Initiateur du partage";
|
||||
$a->strings["Subscriber"] = "";
|
||||
$a->strings["No introductions."] = "Aucune demande d'introduction.";
|
||||
$a->strings["Show unread"] = "Afficher non-lus";
|
||||
$a->strings["Show all"] = "Tout afficher";
|
||||
$a->strings["No more %s notifications."] = "Aucune notification de %s";
|
||||
$a->strings["No more system notifications."] = "Pas plus de notifications système.";
|
||||
$a->strings["OpenID protocol error. No ID returned."] = "Erreur de protocole OpenID. Pas d'ID en retour.";
|
||||
$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site.";
|
||||
$a->strings["Subscribing to OStatus contacts"] = "Inscription aux contacts OStatus";
|
||||
$a->strings["No contact provided."] = "Pas de contact fourni.";
|
||||
$a->strings["Couldn't fetch information for contact."] = "Impossible de récupérer les informations pour ce contact.";
|
||||
$a->strings["Couldn't fetch friends for contact."] = "Impossible de récupérer les amis de ce contact.";
|
||||
$a->strings["Done"] = "Terminé";
|
||||
$a->strings["success"] = "réussite";
|
||||
$a->strings["failed"] = "échec";
|
||||
$a->strings["ignored"] = "ignoré";
|
||||
$a->strings["Keep this window open until done."] = "Veuillez garder cette fenêtre ouverte jusqu'à la fin.";
|
||||
$a->strings["Not Extended"] = "";
|
||||
$a->strings["Recent Photos"] = "Photos récentes";
|
||||
$a->strings["Upload New Photos"] = "Téléverser de nouvelles photos";
|
||||
$a->strings["everybody"] = "tout le monde";
|
||||
$a->strings["Contact information unavailable"] = "Informations de contact indisponibles";
|
||||
$a->strings["Album not found."] = "Album introuvable.";
|
||||
$a->strings["Delete Album"] = "Effacer l'album";
|
||||
$a->strings["Do you really want to delete this photo album and all its photos?"] = "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?";
|
||||
$a->strings["Delete Photo"] = "Effacer la photo";
|
||||
$a->strings["Do you really want to delete this photo?"] = "Voulez-vous vraiment supprimer cette photo ?";
|
||||
$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s a été étiqueté dans %2\$s par %3\$s";
|
||||
$a->strings["a photo"] = "une photo";
|
||||
$a->strings["Image exceeds size limit of %s"] = "L'image dépasse la taille limite de %s";
|
||||
$a->strings["Image file is empty."] = "Fichier image vide.";
|
||||
$a->strings["Unable to process image."] = "Impossible de traiter l'image.";
|
||||
$a->strings["Image upload failed."] = "Le téléversement de l'image a échoué.";
|
||||
$a->strings["No photos selected"] = "Aucune photo sélectionnée";
|
||||
$a->strings["Access to this item is restricted."] = "Accès restreint à cet élément.";
|
||||
$a->strings["Upload Photos"] = "Téléverser des photos";
|
||||
$a->strings["New album name: "] = "Nom du nouvel album : ";
|
||||
$a->strings["or existing album name: "] = "ou nom d'un album existant : ";
|
||||
$a->strings["Do not show a status post for this upload"] = "Ne pas publier de notice de statut pour cet envoi";
|
||||
$a->strings["Show to Groups"] = "Montrer aux groupes";
|
||||
$a->strings["Show to Contacts"] = "Montrer aux Contacts";
|
||||
$a->strings["Private Photo"] = "Photo privée";
|
||||
$a->strings["Public Photo"] = "Photo publique";
|
||||
$a->strings["Edit Album"] = "Éditer l'album";
|
||||
$a->strings["Show Newest First"] = "Plus récent d'abord";
|
||||
$a->strings["Show Oldest First"] = "Plus ancien d'abord";
|
||||
$a->strings["View Photo"] = "Voir la photo";
|
||||
$a->strings["Permission denied. Access to this item may be restricted."] = "Interdit. L'accès à cet élément peut avoir été restreint.";
|
||||
$a->strings["Photo not available"] = "Photo indisponible";
|
||||
$a->strings["View photo"] = "Voir photo";
|
||||
$a->strings["Edit photo"] = "Éditer la photo";
|
||||
$a->strings["Use as profile photo"] = "Utiliser comme photo de profil";
|
||||
$a->strings["Private Message"] = "Message privé";
|
||||
$a->strings["View Full Size"] = "Voir en taille réelle";
|
||||
$a->strings["Tags: "] = "Étiquettes :";
|
||||
$a->strings["[Remove any tag]"] = "[Retirer toutes les étiquettes]";
|
||||
$a->strings["New album name"] = "Nom du nouvel album";
|
||||
$a->strings["Caption"] = "Titre";
|
||||
$a->strings["Add a Tag"] = "Ajouter une étiquette";
|
||||
$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemples : @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances";
|
||||
$a->strings["Do not rotate"] = "Pas de rotation";
|
||||
$a->strings["Rotate CW (right)"] = "Tourner dans le sens des aiguilles d'une montre (vers la droite)";
|
||||
$a->strings["Rotate CCW (left)"] = "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)";
|
||||
$a->strings["Private photo"] = "Photo privée";
|
||||
$a->strings["Public photo"] = "Photo publique";
|
||||
$a->strings["I like this (toggle)"] = "J'aime";
|
||||
$a->strings["I don't like this (toggle)"] = "Je n'aime pas";
|
||||
$a->strings["This is you"] = "C'est vous";
|
||||
$a->strings["Comment"] = "Commenter";
|
||||
$a->strings["Map"] = "Carte";
|
||||
$a->strings["View Album"] = "Voir l'album";
|
||||
$a->strings["{0} wants to be your friend"] = "{0} souhaite être votre ami(e)";
|
||||
$a->strings["{0} sent you a message"] = "{0} vous a envoyé un message";
|
||||
$a->strings["{0} requested registration"] = "{0} a demandé à s'inscrire";
|
||||
$a->strings["Poke/Prod"] = "Solliciter";
|
||||
$a->strings["poke, prod or do other things to somebody"] = "solliciter (poke/...) quelqu'un";
|
||||
$a->strings["Recipient"] = "Destinataire";
|
||||
$a->strings["Choose what you wish to do to recipient"] = "Choisissez ce que vous voulez faire au destinataire";
|
||||
$a->strings["Make this post private"] = "Rendez ce message privé";
|
||||
$a->strings["Tips for New Members"] = "Conseils aux nouveaux venus";
|
||||
$a->strings["Image uploaded but image cropping failed."] = "Image envoyée, mais impossible de la retailler.";
|
||||
$a->strings["Image size reduction [%s] failed."] = "Réduction de la taille de l'image [%s] échouée.";
|
||||
$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement.";
|
||||
$a->strings["Unable to process image"] = "Impossible de traiter l'image";
|
||||
$a->strings["Upload File:"] = "Fichier à téléverser :";
|
||||
$a->strings["Select a profile:"] = "Choisir un profil :";
|
||||
$a->strings["Upload"] = "Téléverser";
|
||||
$a->strings["or"] = "ou";
|
||||
$a->strings["skip this step"] = "ignorer cette étape";
|
||||
$a->strings["select a photo from your photo albums"] = "choisissez une photo depuis vos albums";
|
||||
$a->strings["Crop Image"] = "(Re)cadrer l'image";
|
||||
$a->strings["Please adjust the image cropping for optimum viewing."] = "Ajustez le cadre de l'image pour une visualisation optimale.";
|
||||
$a->strings["Done Editing"] = "Édition terminée";
|
||||
$a->strings["Image uploaded successfully."] = "Image téléversée avec succès.";
|
||||
$a->strings["Profile deleted."] = "Profil supprimé.";
|
||||
$a->strings["Profile-"] = "Profil-";
|
||||
$a->strings["New profile created."] = "Nouveau profil créé.";
|
||||
$a->strings["Profile unavailable to clone."] = "Ce profil ne peut être cloné.";
|
||||
$a->strings["Profile Name is required."] = "Le nom du profil est requis.";
|
||||
$a->strings["Marital Status"] = "Statut marital";
|
||||
$a->strings["Romantic Partner"] = "Partenaire / conjoint";
|
||||
$a->strings["Work/Employment"] = "Travail / Occupation";
|
||||
$a->strings["Religion"] = "Religion";
|
||||
$a->strings["Political Views"] = "Tendance politique";
|
||||
$a->strings["Gender"] = "Sexe";
|
||||
$a->strings["Sexual Preference"] = "Préférence sexuelle";
|
||||
$a->strings["XMPP"] = "XMPP";
|
||||
$a->strings["Homepage"] = "Site internet";
|
||||
$a->strings["Interests"] = "Centres d'intérêt";
|
||||
$a->strings["Address"] = "Adresse";
|
||||
$a->strings["Location"] = "Localisation";
|
||||
$a->strings["Profile updated."] = "Profil mis à jour.";
|
||||
$a->strings[" and "] = " et ";
|
||||
$a->strings["public profile"] = "profil public";
|
||||
$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s a changé %2\$s en “%3\$s”";
|
||||
$a->strings[" - Visit %1\$s's %2\$s"] = "Visiter le %2\$s de %1\$s";
|
||||
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s a mis à jour son %2\$s, en modifiant %3\$s.";
|
||||
$a->strings["Hide contacts and friends:"] = "Cacher mes contacts et amis :";
|
||||
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Cacher ma liste d'amis / contacts des visiteurs de ce profil ?";
|
||||
$a->strings["Show more profile fields:"] = "Afficher plus d'infos de profil :";
|
||||
$a->strings["Profile Actions"] = "Actions de Profil";
|
||||
$a->strings["Edit Profile Details"] = "Éditer les détails du profil";
|
||||
$a->strings["Change Profile Photo"] = "Changer la photo du profil";
|
||||
$a->strings["View this profile"] = "Voir ce profil";
|
||||
$a->strings["Create a new profile using these settings"] = "Créer un nouveau profil en utilisant ces réglages";
|
||||
$a->strings["Clone this profile"] = "Cloner ce profil";
|
||||
$a->strings["Delete this profile"] = "Supprimer ce profil";
|
||||
$a->strings["Basic information"] = "Information de base";
|
||||
$a->strings["Profile picture"] = "Image de profil";
|
||||
$a->strings["Preferences"] = "Préférences";
|
||||
$a->strings["Status information"] = "Information sur le statut";
|
||||
$a->strings["Additional information"] = "Information additionnelle";
|
||||
$a->strings["Relation"] = "Relation";
|
||||
$a->strings["Your Gender:"] = "Votre genre :";
|
||||
$a->strings["<span class=\"heart\">♥</span> Marital Status:"] = "<span class=\"heart\">♥</span> Statut marital :";
|
||||
$a->strings["Example: fishing photography software"] = "Exemple : football dessin programmation";
|
||||
$a->strings["Profile Name:"] = "Nom du profil :";
|
||||
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Ceci est votre profil <strong>public</strong>.<br />Il <strong>peut</strong> être visible par n'importe quel utilisateur d'Internet.";
|
||||
$a->strings["Your Full Name:"] = "Votre nom complet :";
|
||||
$a->strings["Title/Description:"] = "Titre / Description :";
|
||||
$a->strings["Street Address:"] = "Adresse postale :";
|
||||
$a->strings["Locality/City:"] = "Ville :";
|
||||
$a->strings["Region/State:"] = "Région / État :";
|
||||
$a->strings["Postal/Zip Code:"] = "Code postal :";
|
||||
$a->strings["Country:"] = "Pays :";
|
||||
$a->strings["Who: (if applicable)"] = "Qui : (si pertinent)";
|
||||
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples: cathy123, Cathy Williams, cathy@example.com";
|
||||
$a->strings["Since [date]:"] = "Depuis [date] :";
|
||||
$a->strings["Tell us about yourself..."] = "Parlez-nous de vous...";
|
||||
$a->strings["XMPP (Jabber) address:"] = "Adresse XMPP (Jabber) :";
|
||||
$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "Votre adresse XMPP sera transmise à vos contacts pour qu'ils puissent vous suivre.";
|
||||
$a->strings["Homepage URL:"] = "Page personnelle :";
|
||||
$a->strings["Religious Views:"] = "Opinions religieuses :";
|
||||
$a->strings["Public Keywords:"] = "Mots-clés publics :";
|
||||
$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Utilisés pour vous suggérer des amis potentiels. Ils peuvent être vus par autrui)";
|
||||
$a->strings["Private Keywords:"] = "Mots-clés privés :";
|
||||
$a->strings["(Used for searching profiles, never shown to others)"] = "(Utilisés pour rechercher des profils. Ils ne seront jamais montrés à autrui)";
|
||||
$a->strings["Musical interests"] = "Goûts musicaux";
|
||||
$a->strings["Books, literature"] = "Lectures";
|
||||
$a->strings["Television"] = "Télévision";
|
||||
$a->strings["Film/dance/culture/entertainment"] = "Cinéma / Danse / Culture / Divertissement";
|
||||
$a->strings["Hobbies/Interests"] = "Passe-temps / Centres d'intérêt";
|
||||
$a->strings["Love/romance"] = "Amour / Romance";
|
||||
$a->strings["Work/employment"] = "Activité professionnelle / Occupation";
|
||||
$a->strings["School/education"] = "Études / Formation";
|
||||
$a->strings["Contact information and Social Networks"] = "Coordonnées / Réseaux sociaux";
|
||||
$a->strings["Edit/Manage Profiles"] = "Editer / gérer les profils";
|
||||
$a->strings["Invalid profile identifier."] = "Identifiant de profil invalide.";
|
||||
$a->strings["Profile Visibility Editor"] = "Éditer la visibilité du profil";
|
||||
$a->strings["Visible To"] = "Visible par";
|
||||
$a->strings["All Contacts (with secure profile access)"] = "Tous les contacts (ayant un accès sécurisé)";
|
||||
$a->strings["Registration successful. Please check your email for further instructions."] = "Inscription réussie. Vérifiez vos emails pour la suite des instructions.";
|
||||
$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Impossible d’envoyer le courriel de confirmation. Voici vos informations de connexion:<br> identifiant : %s<br> mot de passe : %s<br><br>Vous pourrez changer votre mot de passe une fois connecté.";
|
||||
$a->strings["Registration successful."] = "Inscription réussie.";
|
||||
$a->strings["Your registration can not be processed."] = "Votre inscription ne peut être traitée.";
|
||||
$a->strings["Your registration is pending approval by the site owner."] = "Votre inscription attend une validation du propriétaire du site.";
|
||||
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain.";
|
||||
$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\".";
|
||||
$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste.";
|
||||
$a->strings["Your OpenID (optional): "] = "Votre OpenID (facultatif): ";
|
||||
$a->strings["Include your profile in member directory?"] = "Inclure votre profil dans l'annuaire des membres?";
|
||||
$a->strings["Note for the admin"] = "Commentaire pour l'administrateur";
|
||||
$a->strings["Leave a message for the admin, why you want to join this node"] = "Indiquez à l'administrateur les raisons de votre inscription à cette instance.";
|
||||
$a->strings["Membership on this site is by invitation only."] = "L'inscription à ce site se fait uniquement sur invitation.";
|
||||
$a->strings["Your invitation ID: "] = "Votre ID d'invitation : ";
|
||||
$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Votre nom complet (p. ex. Michel Dupont):";
|
||||
$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "Votre courriel : (Des informations de connexion vont être envoyées à cette adresse; elle doit exister).";
|
||||
$a->strings["New Password:"] = "Nouveau mot de passe :";
|
||||
$a->strings["Leave empty for an auto generated password."] = "Laisser ce champ libre pour obtenir un mot de passe généré automatiquement.";
|
||||
$a->strings["Confirm:"] = "Confirmer :";
|
||||
$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '<strong>pseudo@\$sitename</strong>'.";
|
||||
$a->strings["Choose a nickname: "] = "Choisir un pseudo : ";
|
||||
$a->strings["Import"] = "Importer";
|
||||
$a->strings["Import your profile to this friendica instance"] = "Importer votre profile dans cette instance de friendica";
|
||||
$a->strings["Account approved."] = "Inscription validée.";
|
||||
$a->strings["Registration revoked for %s"] = "Inscription révoquée pour %s";
|
||||
$a->strings["Please login."] = "Merci de vous connecter.";
|
||||
$a->strings["Remove My Account"] = "Supprimer mon compte";
|
||||
$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Ceci supprimera totalement votre compte. Cette opération est irréversible.";
|
||||
$a->strings["Please enter your password for verification:"] = "Merci de saisir votre mot de passe pour vérification :";
|
||||
$a->strings["Resubscribing to OStatus contacts"] = "Réinscription aux contacts OStatus";
|
||||
$a->strings["Error"] = "Erreur";
|
||||
$a->strings["Only logged in users are permitted to perform a search."] = "Seuls les utilisateurs inscrits sont autorisés à lancer une recherche.";
|
||||
$a->strings["Too Many Requests"] = "Trop de requêtes";
|
||||
$a->strings["Only one search per minute is permitted for not logged in users."] = "Une seule recherche par minute pour les utilisateurs qui ne sont pas connectés.";
|
||||
$a->strings["Items tagged with: %s"] = "Éléments taggés %s";
|
||||
$a->strings["Display"] = "Afficher";
|
||||
$a->strings["Social Networks"] = "Réseaux sociaux";
|
||||
$a->strings["Connected apps"] = "Applications connectées";
|
||||
$a->strings["Export personal data"] = "Exporter";
|
||||
$a->strings["Remove account"] = "Supprimer le compte";
|
||||
$a->strings["Missing some important data!"] = "Il manque certaines informations importantes!";
|
||||
$a->strings["Failed to connect with email account using the settings provided."] = "Impossible de se connecter au compte courriel configuré.";
|
||||
$a->strings["Email settings updated."] = "Réglages de courriel mis-à-jour.";
|
||||
$a->strings["Features updated"] = "Fonctionnalités mises à jour";
|
||||
$a->strings["Relocate message has been send to your contacts"] = "Un message de relocalisation a été envoyé à vos contacts.";
|
||||
$a->strings["Empty passwords are not allowed. Password unchanged."] = "Les mots de passe vides sont interdits. Aucun changement appliqué.";
|
||||
$a->strings["Wrong password."] = "Mauvais mot de passe.";
|
||||
$a->strings["Password changed."] = "Mots de passe changés.";
|
||||
$a->strings["Password update failed. Please try again."] = "Le changement de mot de passe a échoué. Merci de recommencer.";
|
||||
$a->strings[" Please use a shorter name."] = " Merci d'utiliser un nom plus court.";
|
||||
$a->strings[" Name too short."] = " Nom trop court.";
|
||||
$a->strings["Wrong Password"] = "Mauvais mot de passe";
|
||||
$a->strings[" Not valid email."] = " Email invalide.";
|
||||
$a->strings[" Cannot change to that email."] = " Impossible de changer pour cet email.";
|
||||
$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut.";
|
||||
$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Ce forum privé n'a pas de paramètres de vie privée ni de paramètres de confidentialité par défaut.";
|
||||
$a->strings["Settings updated."] = "Réglages mis à jour.";
|
||||
$a->strings["Add application"] = "Ajouter une application";
|
||||
$a->strings["Consumer Key"] = "Clé utilisateur";
|
||||
$a->strings["Consumer Secret"] = "Secret utilisateur";
|
||||
$a->strings["Redirect"] = "Rediriger";
|
||||
$a->strings["Icon url"] = "URL de l'icône";
|
||||
$a->strings["You can't edit this application."] = "Vous ne pouvez pas éditer cette application.";
|
||||
$a->strings["Connected Apps"] = "Applications connectées";
|
||||
$a->strings["Edit"] = "Éditer";
|
||||
$a->strings["Client key starts with"] = "La clé cliente commence par";
|
||||
$a->strings["No name"] = "Sans nom";
|
||||
$a->strings["Remove authorization"] = "Révoquer l'autorisation";
|
||||
$a->strings["No Plugin settings configured"] = "Pas de réglages d'extensions configurés";
|
||||
$a->strings["Plugin Settings"] = "Extensions";
|
||||
$a->strings["Additional Features"] = "Fonctions supplémentaires";
|
||||
$a->strings["General Social Media Settings"] = "Paramètres généraux des réseaux sociaux";
|
||||
$a->strings["Disable intelligent shortening"] = "Désactiver la réduction d'URL";
|
||||
$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Normalement, le système tente de trouver le meilleur lien à ajouter aux publications raccourcies. Si cette option est activée, les publications raccourcies dirigeront toujours vers leur publication d'origine sur Friendica.";
|
||||
$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Suivre automatiquement ceux qui me suivent ou me mentionnent sur GNU Social (OStatus)";
|
||||
$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "Si vous recevez un message d'un utilisateur OStatus inconnu, cette option détermine ce qui sera fait. Si elle est cochée, un nouveau contact sera créé pour chaque utilisateur inconnu.";
|
||||
$a->strings["Default group for OStatus contacts"] = "Groupe par défaut pour les contacts OStatus";
|
||||
$a->strings["Your legacy GNU Social account"] = "Le compte GNU Social que vous avez déjà";
|
||||
$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "Si vous entrez le nom de votre ancien compte GNU Social / StatusNet ici (utiliser le format utilisateur@domaine.tld), vos contacts seront ajoutés automatiquement. Le champ sera vidé lorsque ce sera terminé.";
|
||||
$a->strings["Repair OStatus subscriptions"] = "Réparer les abonnements OStatus";
|
||||
$a->strings["Built-in support for %s connectivity is %s"] = "Le support natif pour la connectivité %s est %s";
|
||||
$a->strings["enabled"] = "activé";
|
||||
$a->strings["disabled"] = "désactivé";
|
||||
$a->strings["GNU Social (OStatus)"] = "GNU Social (OStatus)";
|
||||
$a->strings["Email access is disabled on this site."] = "L'accès courriel est désactivé sur ce site.";
|
||||
$a->strings["Email/Mailbox Setup"] = "Réglages de courriel/boîte à lettre";
|
||||
$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte.";
|
||||
$a->strings["Last successful email check:"] = "Dernière vérification réussie des courriels :";
|
||||
$a->strings["IMAP server name:"] = "Nom du serveur IMAP :";
|
||||
$a->strings["IMAP port:"] = "Port IMAP :";
|
||||
$a->strings["Security:"] = "Sécurité :";
|
||||
$a->strings["None"] = "Aucun(e)";
|
||||
$a->strings["Email login name:"] = "Nom de connexion :";
|
||||
$a->strings["Email password:"] = "Mot de passe :";
|
||||
$a->strings["Reply-to address:"] = "Adresse de réponse :";
|
||||
$a->strings["Send public posts to all email contacts:"] = "Envoyer les publications publiques à tous les contacts courriels :";
|
||||
$a->strings["Action after import:"] = "Action après import :";
|
||||
$a->strings["Move to folder"] = "Déplacer vers";
|
||||
$a->strings["Move to folder:"] = "Déplacer vers :";
|
||||
$a->strings["Display Settings"] = "Affichage";
|
||||
$a->strings["Display Theme:"] = "Thème d'affichage:";
|
||||
$a->strings["Mobile Theme:"] = "Thème mobile:";
|
||||
$a->strings["Suppress warning of insecure networks"] = "";
|
||||
$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "";
|
||||
$a->strings["Update browser every xx seconds"] = "Mettre-à-jour l'affichage toutes les xx secondes";
|
||||
$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum de 10 secondes. Saisir -1 pour désactiver.";
|
||||
$a->strings["Number of items to display per page:"] = "Nombre d’éléments par page:";
|
||||
$a->strings["Maximum of 100 items"] = "Maximum de 100 éléments";
|
||||
$a->strings["Number of items to display per page when viewed from mobile device:"] = "Nombre d'éléments a afficher par page pour un appareil mobile";
|
||||
$a->strings["Don't show emoticons"] = "Ne pas afficher les émoticônes (smileys grahiques)";
|
||||
$a->strings["Calendar"] = "Calendrier";
|
||||
$a->strings["Beginning of week:"] = "Début de la semaine :";
|
||||
$a->strings["Don't show notices"] = "Ne plus afficher les avis";
|
||||
$a->strings["Infinite scroll"] = "Défilement infini";
|
||||
$a->strings["Automatic updates only at the top of the network page"] = "Mises à jour automatiques seulement en haut de la page du réseau.";
|
||||
$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "";
|
||||
$a->strings["Bandwith Saver Mode"] = "";
|
||||
$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "";
|
||||
$a->strings["Smart Threading"] = "";
|
||||
$a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = "";
|
||||
$a->strings["General Theme Settings"] = "Paramètres généraux de thème";
|
||||
$a->strings["Custom Theme Settings"] = "Paramètres personnalisés de thème";
|
||||
$a->strings["Content Settings"] = "Paramètres de contenu";
|
||||
$a->strings["Theme settings"] = "Réglages du thème graphique";
|
||||
$a->strings["Account Types"] = "";
|
||||
$a->strings["Personal Page Subtypes"] = "";
|
||||
$a->strings["Community Forum Subtypes"] = "";
|
||||
$a->strings["Personal Page"] = "";
|
||||
$a->strings["Account for a personal profile."] = "";
|
||||
$a->strings["Organisation Page"] = "";
|
||||
$a->strings["Account for an organisation that automatically approves contact requests as \"Followers\"."] = "";
|
||||
$a->strings["News Page"] = "";
|
||||
$a->strings["Account for a news reflector that automatically approves contact requests as \"Followers\"."] = "";
|
||||
$a->strings["Community Forum"] = "";
|
||||
$a->strings["Account for community discussions."] = "";
|
||||
$a->strings["Normal Account Page"] = "Compte normal";
|
||||
$a->strings["Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"."] = "";
|
||||
$a->strings["Soapbox Page"] = "Compte \"boîte à savon\"";
|
||||
$a->strings["Account for a public profile that automatically approves contact requests as \"Followers\"."] = "";
|
||||
$a->strings["Public Forum"] = "";
|
||||
$a->strings["Automatically approves all contact requests."] = "";
|
||||
$a->strings["Automatic Friend Page"] = "Compte d'\"amitié automatique\"";
|
||||
$a->strings["Account for a popular profile that automatically approves contact requests as \"Friends\"."] = "";
|
||||
$a->strings["Private Forum [Experimental]"] = "Forum privé [expérimental]";
|
||||
$a->strings["Requires manual approval of contact requests."] = "";
|
||||
$a->strings["OpenID:"] = "OpenID:";
|
||||
$a->strings["(Optional) Allow this OpenID to login to this account."] = "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte.";
|
||||
$a->strings["Publish your default profile in your local site directory?"] = "Publier votre profil par défaut sur l'annuaire local de ce site ?";
|
||||
$a->strings["Your profile may be visible in public."] = "Votre profil peut être accessible publiquement.";
|
||||
$a->strings["Publish your default profile in the global social directory?"] = "Publier votre profil par défaut sur l'annuaire global ?";
|
||||
$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?";
|
||||
$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Si activé, il est impossible de publier les messages publics sur Diaspora et autres réseaux.";
|
||||
$a->strings["Allow friends to post to your profile page?"] = "Autoriser vos amis à publier sur votre profil ?";
|
||||
$a->strings["Allow friends to tag your posts?"] = "Autoriser vos amis à étiqueter vos publications?";
|
||||
$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?";
|
||||
$a->strings["Permit unknown people to send you private mail?"] = "Autoriser les messages privés d'inconnus?";
|
||||
$a->strings["Profile is <strong>not published</strong>."] = "Ce profil n'est <strong>pas publié</strong>.";
|
||||
$a->strings["Your Identity Address is <strong>'%s'</strong> or '%s'."] = "L’adresse de votre profil est <strong>'%s'</strong> ou '%s'.";
|
||||
$a->strings["Automatically expire posts after this many days:"] = "Les publications expirent automatiquement après (en jours) :";
|
||||
$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Si ce champ est vide, les publications n'expireront pas. Les publications expirées seront supprimées";
|
||||
$a->strings["Advanced expiration settings"] = "Réglages avancés de l'expiration";
|
||||
$a->strings["Advanced Expiration"] = "Expiration (avancé)";
|
||||
$a->strings["Expire posts:"] = "Faire expirer les publications :";
|
||||
$a->strings["Expire personal notes:"] = "Faire expirer les notes personnelles :";
|
||||
$a->strings["Expire starred posts:"] = "Faire expirer les publications marqués :";
|
||||
$a->strings["Expire photos:"] = "Faire expirer les photos :";
|
||||
$a->strings["Only expire posts by others:"] = "Faire expirer seulement les publications des autres:";
|
||||
$a->strings["Account Settings"] = "Compte";
|
||||
$a->strings["Password Settings"] = "Réglages de mot de passe";
|
||||
$a->strings["Leave password fields blank unless changing"] = "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer";
|
||||
$a->strings["Current Password:"] = "Mot de passe actuel :";
|
||||
$a->strings["Your current password to confirm the changes"] = "Votre mot de passe actuel pour confirmer les modifications";
|
||||
$a->strings["Password:"] = "Mot de passe :";
|
||||
$a->strings["Basic Settings"] = "Réglages basiques";
|
||||
$a->strings["Email Address:"] = "Adresse courriel :";
|
||||
$a->strings["Your Timezone:"] = "Votre fuseau horaire :";
|
||||
$a->strings["Your Language:"] = "Votre langue :";
|
||||
$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Détermine la langue que nous utilisons pour afficher votre interface Friendica et pour vous envoyer des courriels";
|
||||
$a->strings["Default Post Location:"] = "Emplacement de publication par défaut:";
|
||||
$a->strings["Use Browser Location:"] = "Utiliser la localisation géographique du navigateur:";
|
||||
$a->strings["Security and Privacy Settings"] = "Réglages de sécurité et vie privée";
|
||||
$a->strings["Maximum Friend Requests/Day:"] = "Nombre maximal de requêtes d'amitié par jour :";
|
||||
$a->strings["(to prevent spam abuse)"] = "(pour limiter l'impact du spam)";
|
||||
$a->strings["Default Post Permissions"] = "Permissions de publication par défaut";
|
||||
$a->strings["(click to open/close)"] = "(cliquer pour ouvrir/fermer)";
|
||||
$a->strings["Default Private Post"] = "Message privé par défaut";
|
||||
$a->strings["Default Public Post"] = "Message publique par défaut";
|
||||
$a->strings["Default Permissions for New Posts"] = "Permissions par défaut pour les nouvelles publications";
|
||||
$a->strings["Maximum private messages per day from unknown people:"] = "Maximum de messages privés d'inconnus par jour :";
|
||||
$a->strings["Notification Settings"] = "Réglages de notification";
|
||||
$a->strings["By default post a status message when:"] = "Par défaut, poster un message quand :";
|
||||
$a->strings["accepting a friend request"] = "Vous acceptez un ami";
|
||||
$a->strings["joining a forum/community"] = "Vous rejoignez un forum/une communauté";
|
||||
$a->strings["making an <em>interesting</em> profile change"] = "Vous faites une modification <em>intéressante</em> de votre profil";
|
||||
$a->strings["Send a notification email when:"] = "Envoyer un courriel de notification quand:";
|
||||
$a->strings["You receive an introduction"] = "Vous recevez une introduction";
|
||||
$a->strings["Your introductions are confirmed"] = "Vos introductions sont confirmées";
|
||||
$a->strings["Someone writes on your profile wall"] = "Quelqu'un écrit sur votre mur";
|
||||
$a->strings["Someone writes a followup comment"] = "Quelqu'un vous commente";
|
||||
$a->strings["You receive a private message"] = "Vous recevez un message privé";
|
||||
$a->strings["You receive a friend suggestion"] = "Vous avez reçu une suggestion d'ami";
|
||||
$a->strings["You are tagged in a post"] = "Vous avez été étiqueté dans une publication";
|
||||
$a->strings["You are poked/prodded/etc. in a post"] = "Vous avez été sollicité dans une publication";
|
||||
$a->strings["Activate desktop notifications"] = "Activer les notifications de bureau";
|
||||
$a->strings["Show desktop popup on new notifications"] = "Afficher dans des pop-ups les nouvelles notifications";
|
||||
$a->strings["Text-only notification emails"] = "Courriels de notification en format texte";
|
||||
$a->strings["Send text only notification emails, without the html part"] = "Envoyer le texte des courriels de notification, sans la composante html";
|
||||
$a->strings["Show detailled notifications"] = "Notifications détaillées";
|
||||
$a->strings["Per default the notificiation are condensed to a single notification per item. When enabled, every notification is displayed."] = "Par défaut, les notifications sont regroupées en une seule notification par item. Si cette fonction est activée, chaque notification est affichée.";
|
||||
$a->strings["Advanced Account/Page Type Settings"] = "Paramètres avancés de compte/page";
|
||||
$a->strings["Change the behaviour of this account for special situations"] = "Modifier le comportement de ce compte dans certaines situations";
|
||||
$a->strings["Relocate"] = "Relocaliser";
|
||||
$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Si vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton.";
|
||||
$a->strings["Resend relocate message to contacts"] = "Renvoyer un message de relocalisation aux contacts.";
|
||||
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit les %3\$s de %2\$s";
|
||||
$a->strings["Do you really want to delete this suggestion?"] = "Voulez-vous vraiment supprimer cette suggestion ?";
|
||||
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h.";
|
||||
$a->strings["Ignore/Hide"] = "Ignorer/cacher";
|
||||
$a->strings["Tag removed"] = "Étiquette supprimée";
|
||||
$a->strings["Remove Item Tag"] = "Enlever l'étiquette de l'élément";
|
||||
$a->strings["Select a tag to remove: "] = "Sélectionner une étiquette à supprimer :";
|
||||
$a->strings["Export account"] = "Exporter le compte";
|
||||
$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur.";
|
||||
$a->strings["Export all"] = "Tout exporter";
|
||||
$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos).";
|
||||
$a->strings["Move account"] = "Migrer le compte";
|
||||
$a->strings["You can import an account from another Friendica server."] = "Vous pouvez importer un compte d'un autre serveur Friendica.";
|
||||
$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici.";
|
||||
$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Cette fonctionalité est expérimentale. Il n'est pas possible d'importer des contacts depuis le réseau OStatus (GNU Social/Statusnet) ou depuis Diaspora.";
|
||||
$a->strings["Account file"] = "Fichier du compte";
|
||||
$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\"";
|
||||
$a->strings["Contact wasn't found or can't be unfollowed."] = "Le contact n'a pas été trouvé ou ne peut pas être suivi.";
|
||||
$a->strings["Contact unfollowed"] = "";
|
||||
$a->strings["You aren't a friend of this contact."] = "Vous n'êtes pas amis avec ce contact.";
|
||||
$a->strings["Unfollowing is currently not supported by your network."] = "";
|
||||
$a->strings["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]";
|
||||
$a->strings["Do you really want to delete this video?"] = "Voulez-vous vraiment supprimer cette vidéo?";
|
||||
$a->strings["Delete Video"] = "Supprimer la vidéo";
|
||||
$a->strings["No videos selected"] = "Pas de vidéo sélectionné";
|
||||
$a->strings["Recent Videos"] = "Vidéos récente";
|
||||
$a->strings["Upload New Videos"] = "Téléversé une nouvelle vidéo";
|
||||
$a->strings["No contacts."] = "Aucun contact.";
|
||||
$a->strings["via"] = "via";
|
||||
$a->strings["Access denied."] = "Accès refusé.";
|
||||
$a->strings["Invalid request."] = "Requête invalide.";
|
||||
$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise";
|
||||
$a->strings["Or - did you try to upload an empty file?"] = "Ou — auriez-vous essayé de télécharger un fichier vide ?";
|
||||
$a->strings["File exceeds size limit of %s"] = "La taille du fichier dépasse la limite de %s";
|
||||
$a->strings["File upload failed."] = "Le téléversement a échoué.";
|
||||
$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message.";
|
||||
$a->strings["Unable to check your home location."] = "Impossible de vérifier votre localisation.";
|
||||
$a->strings["No recipient."] = "Pas de destinataire.";
|
||||
$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus.";
|
||||
$a->strings["greenzero"] = "greenzero";
|
||||
$a->strings["purplezero"] = "purplezero";
|
||||
$a->strings["easterbunny"] = "easterbunny";
|
||||
$a->strings["darkzero"] = "darkzero";
|
||||
$a->strings["comix"] = "comix";
|
||||
$a->strings["slackr"] = "slackr";
|
||||
$a->strings["Variations"] = "Variations";
|
||||
$a->strings["Repeat the image"] = "Répéter l'image de fond";
|
||||
$a->strings["Will repeat your image to fill the background."] = "Répète l'image pour couvrir l'arrière-plan.";
|
||||
$a->strings["Stretch"] = "Etirer";
|
||||
|
|
@ -2003,7 +1999,7 @@ $a->strings["Resize to fill and retain aspect ratio."] = "Redimensionne en coupa
|
|||
$a->strings["Resize best fit"] = "Maintenir l'aspect sans couper";
|
||||
$a->strings["Resize to best fit and retain aspect ratio."] = "Redimensionne en conservant l'aspect sans couper.";
|
||||
$a->strings["Default"] = "Défaut";
|
||||
$a->strings["Note: "] = "Note: ";
|
||||
$a->strings["Note"] = "";
|
||||
$a->strings["Check image permissions if all users are allowed to visit the image"] = "Vérifiez que tous les utilisateurs du site sont autorisé à accéder à l'image.";
|
||||
$a->strings["Select scheme"] = "Sélectionnez la palette";
|
||||
$a->strings["Navigation bar background color"] = "Couleur d'arrière-plan de la barre de navigation";
|
||||
|
|
@ -2020,30 +2016,81 @@ $a->strings["Center"] = "Centre";
|
|||
$a->strings["Color scheme"] = "Palette de couleurs";
|
||||
$a->strings["Posts font size"] = "Taille de texte des publications";
|
||||
$a->strings["Textareas font size"] = "Taille de police des zones de texte";
|
||||
$a->strings["Community Profiles"] = "Profils communautaires";
|
||||
$a->strings["Last users"] = "Derniers utilisateurs";
|
||||
$a->strings["Find Friends"] = "Trouver des amis";
|
||||
$a->strings["Local Directory"] = "Annuaire local";
|
||||
$a->strings["Quick Start"] = "Démarrage rapide";
|
||||
$a->strings["Connect Services"] = "Connecter des services";
|
||||
$a->strings["Comma separated list of helper forums"] = "Liste de forums d'aide, séparés par des virgules";
|
||||
$a->strings["Set style"] = "Définir le style";
|
||||
$a->strings["Community Pages"] = "Pages de Communauté";
|
||||
$a->strings["Community Profiles"] = "Profils communautaires";
|
||||
$a->strings["Help or @NewHere ?"] = "Aide ou @NewHere?";
|
||||
$a->strings["greenzero"] = "greenzero";
|
||||
$a->strings["purplezero"] = "purplezero";
|
||||
$a->strings["easterbunny"] = "easterbunny";
|
||||
$a->strings["darkzero"] = "darkzero";
|
||||
$a->strings["comix"] = "comix";
|
||||
$a->strings["slackr"] = "slackr";
|
||||
$a->strings["Variations"] = "Variations";
|
||||
$a->strings["Connect Services"] = "Connecter des services";
|
||||
$a->strings["Find Friends"] = "Trouver des amis";
|
||||
$a->strings["Last users"] = "Derniers utilisateurs";
|
||||
$a->strings["Local Directory"] = "Annuaire local";
|
||||
$a->strings["External link to forum"] = "Lien sortant vers le forum";
|
||||
$a->strings["Quick Start"] = "Démarrage rapide";
|
||||
$a->strings["System"] = "Système";
|
||||
$a->strings["%s commented on %s's post"] = "%s a commenté la publication de %s";
|
||||
$a->strings["%s created a new post"] = "%s a créé une nouvelle publication";
|
||||
$a->strings["%s liked %s's post"] = "%s a aimé la publication de %s";
|
||||
$a->strings["%s disliked %s's post"] = "%s n'a pas aimé la publication de %s";
|
||||
$a->strings["%s is attending %s's event"] = "%s participe à l'événement de %s";
|
||||
$a->strings["%s is not attending %s's event"] = "%s ne participe pas à l'événement de %s";
|
||||
$a->strings["%s may attend %s's event"] = "%s participera peut-être à l'événement de %s";
|
||||
$a->strings["%s is now friends with %s"] = "%s est désormais ami(e) avec %s";
|
||||
$a->strings["Friend Suggestion"] = "Suggestion d'amitié/contact";
|
||||
$a->strings["Friend/Connect Request"] = "Demande de connexion/relation";
|
||||
$a->strings["New Follower"] = "Nouvel abonné";
|
||||
$a->strings["Delete this item?"] = "Effacer cet élément?";
|
||||
$a->strings["show fewer"] = "montrer moins";
|
||||
$a->strings["Drop Contact"] = "Supprimer le contact";
|
||||
$a->strings["Organisation"] = "";
|
||||
$a->strings["News"] = "";
|
||||
$a->strings["Forum"] = "Forum";
|
||||
$a->strings["This entry was edited"] = "Cette entrée à été édité";
|
||||
$a->strings["save to folder"] = "sauver vers dossier";
|
||||
$a->strings["I will attend"] = "Je vais participer";
|
||||
$a->strings["I will not attend"] = "Je ne vais pas participer";
|
||||
$a->strings["I might attend"] = "Je vais peut-être participer";
|
||||
$a->strings["add star"] = "mett en avant";
|
||||
$a->strings["remove star"] = "ne plus mettre en avant";
|
||||
$a->strings["toggle star status"] = "mettre en avant";
|
||||
$a->strings["starred"] = "mis en avant";
|
||||
$a->strings["ignore thread"] = "ignorer le fil";
|
||||
$a->strings["unignore thread"] = "Ne plus ignorer le fil";
|
||||
$a->strings["toggle ignore status"] = "Ignorer le statut";
|
||||
$a->strings["add tag"] = "ajouter une étiquette";
|
||||
$a->strings["like"] = "aime";
|
||||
$a->strings["dislike"] = "n'aime pas";
|
||||
$a->strings["Share this"] = "Partager";
|
||||
$a->strings["share"] = "partager";
|
||||
$a->strings["to"] = "à";
|
||||
$a->strings["via"] = "via";
|
||||
$a->strings["Wall-to-Wall"] = "Inter-mur";
|
||||
$a->strings["via Wall-To-Wall:"] = "en Inter-mur :";
|
||||
$a->strings["%d comment"] = array(
|
||||
0 => "%d commentaire",
|
||||
1 => "%d commentaires",
|
||||
);
|
||||
$a->strings["Bold"] = "Gras";
|
||||
$a->strings["Italic"] = "Italique";
|
||||
$a->strings["Underline"] = "Souligné";
|
||||
$a->strings["Quote"] = "Citation";
|
||||
$a->strings["Code"] = "Code";
|
||||
$a->strings["Image"] = "Image";
|
||||
$a->strings["Link"] = "Lien";
|
||||
$a->strings["Video"] = "Vidéo";
|
||||
$a->strings["%s\\'s birthday"] = "Anniversaire de %s";
|
||||
$a->strings["Sharing notification from Diaspora network"] = "Notification de partage du réseau Diaspora";
|
||||
$a->strings["Attachments:"] = "Pièces jointes : ";
|
||||
$a->strings["%s is now following %s."] = "%s suit désormais %s.";
|
||||
$a->strings["following"] = "following";
|
||||
$a->strings["%s stopped following %s."] = "%s ne suit plus %s.";
|
||||
$a->strings["stopped following"] = "retiré de la liste de suivi";
|
||||
$a->strings["(no subject)"] = "(sans titre)";
|
||||
$a->strings["Update %s failed. See error logs."] = "Mise-à-jour %s échouée. Voir les journaux d'erreur.";
|
||||
$a->strings["Create a New Account"] = "Créer un nouveau compte";
|
||||
$a->strings["Password: "] = "Mot de passe: ";
|
||||
$a->strings["Password: "] = "Mot de passe : ";
|
||||
$a->strings["Remember me"] = "Se souvenir de moi";
|
||||
$a->strings["Or login using OpenID: "] = "Ou connectez-vous via OpenID: ";
|
||||
$a->strings["Or login using OpenID: "] = "Ou connectez-vous via OpenID : ";
|
||||
$a->strings["Forgot your password?"] = "Mot de passe oublié?";
|
||||
$a->strings["Website Terms of Service"] = "Conditions d'utilisation du site internet";
|
||||
$a->strings["terms of service"] = "conditions d'utilisation";
|
||||
|
|
|
|||
|
|
@ -1,21 +0,0 @@
|
|||
|
||||
<h3>{{$title}}</h3>
|
||||
|
||||
<div id="mood-desc">{{$desc}}</div>
|
||||
|
||||
<form action="mood" method="get">
|
||||
<br />
|
||||
<br />
|
||||
|
||||
<input id="mood-parent" type="hidden" value="{{$parent}}" name="parent" />
|
||||
|
||||
<select name="verb" id="mood-verb-select" >
|
||||
{{foreach $verbs as $v}}
|
||||
<option value="{{$v.0}}">{{$v.1}}</option>
|
||||
{{/foreach}}
|
||||
</select>
|
||||
<br />
|
||||
<br />
|
||||
<input type="submit" name="submit" value="{{$submit|escape:'html'}}" />
|
||||
</form>
|
||||
|
||||
|
|
@ -1,104 +0,0 @@
|
|||
|
||||
{{*
|
||||
# LOGIN/REGISTER
|
||||
*}}
|
||||
<center>
|
||||
{{* Use nested if's since the Friendica template engine doesn't support AND or OR in if statements *}}
|
||||
{{if $nav.login}}
|
||||
<div id="navigation-login-wrapper" >
|
||||
{{else}}
|
||||
{{if $nav.register}}
|
||||
<div id="navigation-login-wrapper" >
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
{{if $nav.login}}<a id="navigation-login-link" class="navigation-link {{$nav.login.2}}" href="{{$nav.login.0}}" title="{{$nav.login.3}}" >{{$nav.login.1}}</a><br/> {{/if}}
|
||||
{{if $nav.register}}<a id="navigation-register-link" class="navigation-link {{$nav.register.2}} {{$sel.register}}" href="{{$nav.register.0}}" title="{{$nav.register.3}}" >{{$nav.register.1}}</a><br/>{{/if}}
|
||||
{{if $nav.login}}
|
||||
</div>
|
||||
{{else}}
|
||||
{{if $nav.register}}
|
||||
</div>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
||||
{{*
|
||||
# NETWORK/HOME
|
||||
*}}
|
||||
{{if $nav.network}}
|
||||
<div id="navigation-network-wrapper" >
|
||||
{{else}}
|
||||
{{if $nav.home}}
|
||||
<div id="navigation-network-wrapper" >
|
||||
{{else}}
|
||||
{{if $nav.community}}
|
||||
<div id="navigation-network-wrapper" >
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
{{if $nav.network}}
|
||||
<a id="navigation-network-link" class="navigation-link navigation-commlink {{$nav.network.2}} {{$sel.network}}" href="{{$nav.network.0}}" title="{{$nav.network.3}}" >{{$nav.network.1}}</a><br/>
|
||||
<a class="navigation-link navigation-commlink" href="{{$nav.net_reset.0}}" title="{{$nav.net_reset.3}}">{{$nav.net_reset.1}}</a><br/>
|
||||
{{/if}}
|
||||
{{if $nav.home}}
|
||||
<a id="navigation-home-link" class="navigation-link navigation-commlink {{$nav.home.2}} {{$sel.home}}" href="{{$nav.home.0}}" title="{{$nav.home.3}}" >{{$nav.home.1}}</a><br/>
|
||||
{{/if}}
|
||||
{{if $nav.community}}
|
||||
<a id="navigation-community-link" class="navigation-link navigation-commlink {{$nav.community.2}} {{$sel.community}}" href="{{$nav.community.0}}" title="{{$nav.community.3}}" >{{$nav.community.1}}</a><br/>
|
||||
{{/if}}
|
||||
{{if $nav.network}}
|
||||
</div>
|
||||
{{else}}
|
||||
{{if $nav.home}}
|
||||
</div>
|
||||
{{else}}
|
||||
{{if $nav.community}}
|
||||
</div>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
||||
{{*
|
||||
# PRIVATE MESSAGES
|
||||
*}}
|
||||
{{if $nav.messages}}
|
||||
<div id="navigation-messages-wrapper">
|
||||
<a id="navigation-messages-link" class="navigation-link navigation-commlink {{$nav.messages.2}} {{$sel.messages}}" href="{{$nav.messages.0}}" title="{{$nav.messages.3}}" >{{$nav.messages.1}}</a><br/>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
|
||||
{{*
|
||||
# CONTACTS
|
||||
*}}
|
||||
<div id="navigation-contacts-wrapper">
|
||||
{{if $nav.contacts}}<a id="navigation-contacts-link" class="navigation-link {{$nav.contacts.2}}" href="{{$nav.contacts.0}}" title="{{$nav.contacts.3}}" >{{$nav.contacts.1}}</a><br/>{{/if}}
|
||||
<a id="navigation-directory-link" class="navigation-link {{$nav.directory.2}}" href="{{$nav.directory.0}}" title="{{$nav.directory.3}}" >{{$nav.directory.1}}</a><br/>
|
||||
{{if $nav.introductions}}
|
||||
<a id="navigation-notify-link" class="navigation-link navigation-commlink {{$nav.introductions.2}} {{$sel.introductions}}" href="{{$nav.introductions.0}}" title="{{$nav.introductions.3}}" >{{$nav.introductions.1}}</a><br/>
|
||||
{{/if}}
|
||||
</div>
|
||||
|
||||
{{*
|
||||
# NOTIFICATIONS
|
||||
*}}
|
||||
{{if $nav.notifications}}
|
||||
<div id="navigation-notifications-wrapper">
|
||||
<a id="navigation-notifications-link" class="navigation-link navigation-commlink" href="{{$nav.notifications.0}}" rel="#navigation-notifications-menu" title="{{$nav.notifications.1}}">{{$nav.notifications.1}}</a><br/>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{*
|
||||
# MISCELLANEOUS
|
||||
*}}
|
||||
<div id="navigation-misc-wrapper">
|
||||
{{if $nav.settings}}<a id="navigation-settings-link" class="navigation-link {{$nav.settings.2}}" href="{{$nav.settings.0}}" title="{{$nav.settings.3}}">{{$nav.settings.1}}</a><br/>{{/if}}
|
||||
{{if $nav.manage}}<a id="navigation-manage-link" class="navigation-link navigation-commlink {{$nav.manage.2}} {{$sel.manage}}" href="{{$nav.manage.0}}" title="{{$nav.manage.3}}">{{$nav.manage.1}}</a><br/>{{/if}}
|
||||
{{if $nav.profiles}}<a id="navigation-profiles-link" class="navigation-link {{$nav.profiles.2}}" href="{{$nav.profiles.0}}" title="{{$nav.profiles.3}}" >{{$nav.profiles.1}}</a><br/>{{/if}}
|
||||
{{if $nav.admin}}<a id="navigation-admin-link" class="navigation-link {{$nav.admin.2}}" href="{{$nav.admin.0}}" title="{{$nav.admin.3}}" >{{$nav.admin.1}}</a><br/>{{/if}}
|
||||
<a id="navigation-search-link" class="navigation-link {{$nav.search.2}}" href="{{$nav.search.0}}" title="{{$nav.search.3}}" >{{$nav.search.1}}</a><br/>
|
||||
{{if $nav.apps}}<a id="navigation-apps-link" class="navigation-link {{$nav.apps.2}}" href="{{$nav.apps.0}}" title="{{$nav.apps.3}}" >{{$nav.apps.1}}</a><br/>{{/if}}
|
||||
{{if $nav.help}} <a id="navigation-help-link" class="navigation-link {{$nav.help.2}}" target="friendica-help" href="{{$nav.help.0}}" title="{{$nav.help.3}}" >{{$nav.help.1}}</a><br/>{{/if}}
|
||||
</div>
|
||||
|
||||
{{if $nav.logout}}<a id="navigation-logout-link" class="navigation-link {{$nav.logout.2}}" href="{{$nav.logout.0}}" title="{{$nav.logout.3}}" >{{$nav.logout.1}}</a><br/>{{/if}}
|
||||
</center>
|
||||
Loading…
Add table
Add a link
Reference in a new issue