This commit is contained in:
friendica 2012-10-03 18:28:27 -07:00
commit 0bfca14048
35 changed files with 903 additions and 533 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 528 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 346 B

View file

@ -102,13 +102,19 @@ function editpost_content(&$a) {
'$action' => 'item', '$action' => 'item',
'$share' => t('Edit'), '$share' => t('Edit'),
'$upload' => t('Upload photo'), '$upload' => t('Upload photo'),
'$shortupload' => t('upload photo'),
'$attach' => t('Attach file'), '$attach' => t('Attach file'),
'$shortattach' => t('attach file'),
'$weblink' => t('Insert web link'), '$weblink' => t('Insert web link'),
'$youtube' => t('Insert YouTube video'), '$shortweblink' => t('web link'),
'$video' => t('Insert Vorbis [.ogg] video'), '$video' => t('Insert video link'),
'$audio' => t('Insert Vorbis [.ogg] audio'), '$shortvideo' => t('video link'),
'$audio' => t('Insert audio link'),
'$shortaudio' => t('audio link'),
'$setloc' => t('Set your location'), '$setloc' => t('Set your location'),
'$shortsetloc' => t('set location'),
'$noloc' => t('Clear browser location'), '$noloc' => t('Clear browser location'),
'$shortnoloc' => t('clear location'),
'$wait' => t('Please wait'), '$wait' => t('Please wait'),
'$permset' => t('Permission settings'), '$permset' => t('Permission settings'),
'$ptyp' => $itm[0]['type'], '$ptyp' => $itm[0]['type'],

View file

@ -142,7 +142,7 @@ function network_init(&$a) {
if(x($_GET['nets']) && $_GET['nets'] === 'all') if(x($_GET['nets']) && $_GET['nets'] === 'all')
unset($_GET['nets']); unset($_GET['nets']);
$group_id = (($a->argc > 1 && intval($a->argv[1])) ? intval($a->argv[1]) : 0); $group_id = (($a->argc > 1 && is_numeric($a->argv[1])) ? intval($a->argv[1]) : 0);
set_pconfig(local_user(), 'network.view', 'group.selected', $group_id); set_pconfig(local_user(), 'network.view', 'group.selected', $group_id);

View file

@ -9,13 +9,26 @@ function search_saved_searches() {
); );
if(count($r)) { if(count($r)) {
$o .= '<div id="saved-search-list" class="widget">'; $saved = array();
$o .= '<h3>' . t('Saved Searches') . '</h3>' . "\r\n";
$o .= '<ul id="saved-search-ul">' . "\r\n";
foreach($r as $rr) { foreach($r as $rr) {
$o .= '<li class="saved-search-li clear"><a href="search/?f=&remove=1&search=' . $rr['term'] . '" class="icon drophide savedsearchdrop" title="' . t('Remove term') . '" onclick="return confirmDelete();" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a> <a href="search/?f=&search=' . $rr['term'] . '" class="savedsearchterm" >' . $rr['term'] . '</a></li>' . "\r\n"; $saved[] = array(
'id' => $rr['id'],
'term' => $rr['term'],
'encodedterm' => urlencode($rr['term']),
'delete' => t('Remove term'),
'selected' => ($search==$rr['term']),
);
} }
$o .= '</ul><div class="clear"></div></div>' . "\r\n";
$tpl = get_markup_template("saved_searches_aside.tpl");
$o .= replace_macros($tpl, array(
'$title' => t('Saved Searches'),
'$add' => '',
'$searchbox' => '',
'$saved' => $saved,
));
} }
return $o; return $o;

View file

@ -288,7 +288,7 @@ class Item extends BaseObject {
} }
if ($this->is_toplevel()) { if ($this->is_toplevel()) {
$result['total_comments_num'] = $total_children; $result['total_comments_num'] = "$total_children";
$result['total_comments_text'] = tt('comment', 'comments', $total_children); $result['total_comments_text'] = tt('comment', 'comments', $total_children);
} }

View file

@ -8,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: friendica\n" "Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
"POT-Creation-Date: 2012-09-25 10:00-0700\n" "POT-Creation-Date: 2012-09-29 10:00-0700\n"
"PO-Revision-Date: 2012-09-26 08:15+0000\n" "PO-Revision-Date: 2012-10-02 20:11+0000\n"
"Last-Translator: Michal Šupler <msupler@gmail.com>\n" "Last-Translator: Michal Šupler <msupler@gmail.com>\n"
"Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n" "Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -59,7 +59,7 @@ msgstr "Aktualizace kontaktu selhala."
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510 #: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510
#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159 #: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159
#: ../../addon/fbpost/fbpost.php:165 #: ../../addon/fbpost/fbpost.php:165
#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3908 #: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3913
#: ../../index.php:317 #: ../../index.php:317
msgid "Permission denied." msgid "Permission denied."
msgstr "Přístup odmítnut." msgstr "Přístup odmítnut."
@ -128,9 +128,9 @@ msgstr "Nové foto z této URL adresy"
#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107 #: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
#: ../../mod/events.php:455 ../../mod/photos.php:1005 #: ../../mod/events.php:455 ../../mod/photos.php:1005
#: ../../mod/photos.php:1081 ../../mod/photos.php:1338 #: ../../mod/photos.php:1081 ../../mod/photos.php:1344
#: ../../mod/photos.php:1378 ../../mod/photos.php:1419 #: ../../mod/photos.php:1384 ../../mod/photos.php:1427
#: ../../mod/photos.php:1451 ../../mod/install.php:246 #: ../../mod/photos.php:1459 ../../mod/install.php:246
#: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199 #: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199
#: ../../mod/content.php:693 ../../mod/contacts.php:348 #: ../../mod/content.php:693 ../../mod/contacts.php:348
#: ../../mod/settings.php:543 ../../mod/settings.php:697 #: ../../mod/settings.php:543 ../../mod/settings.php:697
@ -149,7 +149,7 @@ msgstr "Nové foto z této URL adresy"
#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93 #: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
#: ../../addon/drpost/drpost.php:110 ../../addon/startpage/startpage.php:92 #: ../../addon/drpost/drpost.php:110 ../../addon/startpage/startpage.php:92
#: ../../addon/geonames/geonames.php:187 ../../addon/oembed.old/oembed.php:41 #: ../../addon/geonames/geonames.php:187 ../../addon/oembed.old/oembed.php:41
#: ../../addon/forumlist/forumlist.php:169 #: ../../addon/forumlist/forumlist.php:163
#: ../../addon/impressum/impressum.php:83 #: ../../addon/impressum/impressum.php:83
#: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57 #: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57
#: ../../addon/qcomment/qcomment.php:61 #: ../../addon/qcomment/qcomment.php:61
@ -177,7 +177,7 @@ msgstr "Nové foto z této URL adresy"
#: ../../view/theme/diabook/theme.php:757 #: ../../view/theme/diabook/theme.php:757
#: ../../view/theme/diabook/config.php:190 #: ../../view/theme/diabook/config.php:190
#: ../../view/theme/quattro/config.php:53 ../../view/theme/dispy/config.php:70 #: ../../view/theme/quattro/config.php:53 ../../view/theme/dispy/config.php:70
#: ../../include/conversation.php:607 ../../object/Item.php:559 #: ../../object/Item.php:558
msgid "Submit" msgid "Submit"
msgstr "Odeslat" msgstr "Odeslat"
@ -308,7 +308,7 @@ msgstr "Sdílet tuto událost"
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:136 #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:136
#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544 #: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544
#: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45 #: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45
#: ../../include/conversation.php:1307 #: ../../include/conversation.php:948
msgid "Cancel" msgid "Cancel"
msgstr "Zrušit" msgstr "Zrušit"
@ -382,13 +382,13 @@ msgstr "Fotoalba"
#: ../../mod/photos.php:54 ../../mod/photos.php:149 ../../mod/photos.php:986 #: ../../mod/photos.php:54 ../../mod/photos.php:149 ../../mod/photos.php:986
#: ../../mod/photos.php:1073 ../../mod/photos.php:1088 #: ../../mod/photos.php:1073 ../../mod/photos.php:1088
#: ../../mod/photos.php:1530 ../../mod/photos.php:1542 #: ../../mod/photos.php:1538 ../../mod/photos.php:1550
#: ../../addon/communityhome/communityhome.php:110 #: ../../addon/communityhome/communityhome.php:110
#: ../../view/theme/diabook/theme.php:598 #: ../../view/theme/diabook/theme.php:598
msgid "Contact Photos" msgid "Contact Photos"
msgstr "Fotogalerie kontaktu" msgstr "Fotogalerie kontaktu"
#: ../../mod/photos.php:61 ../../mod/photos.php:1104 ../../mod/photos.php:1580 #: ../../mod/photos.php:61 ../../mod/photos.php:1104 ../../mod/photos.php:1588
msgid "Upload New Photos" msgid "Upload New Photos"
msgstr "Nahrát nové fotografie" msgstr "Nahrát nové fotografie"
@ -419,7 +419,7 @@ msgstr "Album nenalezeno."
msgid "Delete Album" msgid "Delete Album"
msgstr "Smazat album" msgstr "Smazat album"
#: ../../mod/photos.php:240 ../../mod/photos.php:1339 #: ../../mod/photos.php:240 ../../mod/photos.php:1345
msgid "Delete Photo" msgid "Delete Photo"
msgstr "Smazat fotografii" msgstr "Smazat fotografii"
@ -427,8 +427,8 @@ msgstr "Smazat fotografii"
msgid "was tagged in a" msgid "was tagged in a"
msgstr "štítek byl přidán v" msgstr "štítek byl přidán v"
#: ../../mod/photos.php:584 ../../mod/like.php:145 ../../mod/tagger.php:62 #: ../../mod/photos.php:584 ../../mod/like.php:145 ../../mod/subthread.php:87
#: ../../addon/communityhome/communityhome.php:163 #: ../../mod/tagger.php:62 ../../addon/communityhome/communityhome.php:163
#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1439 #: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1439
#: ../../include/diaspora.php:1824 ../../include/conversation.php:125 #: ../../include/diaspora.php:1824 ../../include/conversation.php:125
#: ../../include/conversation.php:253 #: ../../include/conversation.php:253
@ -497,7 +497,7 @@ msgstr "nebo stávající název alba: "
msgid "Do not show a status post for this upload" msgid "Do not show a status post for this upload"
msgstr "Nezobrazovat stav pro tento upload" msgstr "Nezobrazovat stav pro tento upload"
#: ../../mod/photos.php:1032 ../../mod/photos.php:1334 #: ../../mod/photos.php:1032 ../../mod/photos.php:1340
msgid "Permissions" msgid "Permissions"
msgstr "Oprávnění:" msgstr "Oprávnění:"
@ -513,7 +513,7 @@ msgstr "Zobrazit nejprve nejnovější:"
msgid "Show Oldest First" msgid "Show Oldest First"
msgstr "Zobrazit nejprve nejstarší:" msgstr "Zobrazit nejprve nejstarší:"
#: ../../mod/photos.php:1124 ../../mod/photos.php:1563 #: ../../mod/photos.php:1124 ../../mod/photos.php:1571
msgid "View Photo" msgid "View Photo"
msgstr "Zobraz fotografii" msgstr "Zobraz fotografii"
@ -538,7 +538,7 @@ msgid "Use as profile photo"
msgstr "Použít jako profilovou fotografii" msgstr "Použít jako profilovou fotografii"
#: ../../mod/photos.php:1224 ../../mod/content.php:603 #: ../../mod/photos.php:1224 ../../mod/content.php:603
#: ../../include/conversation.php:436 ../../object/Item.php:103 #: ../../object/Item.php:103
msgid "Private Message" msgid "Private Message"
msgstr "Soukromá zpráva" msgstr "Soukromá zpráva"
@ -546,94 +546,91 @@ msgstr "Soukromá zpráva"
msgid "View Full Size" msgid "View Full Size"
msgstr "Zobrazit v plné velikosti" msgstr "Zobrazit v plné velikosti"
#: ../../mod/photos.php:1311 #: ../../mod/photos.php:1317
msgid "Tags: " msgid "Tags: "
msgstr "Štítky: " msgstr "Štítky: "
#: ../../mod/photos.php:1314 #: ../../mod/photos.php:1320
msgid "[Remove any tag]" msgid "[Remove any tag]"
msgstr "[Odstranit všechny štítky]" msgstr "[Odstranit všechny štítky]"
#: ../../mod/photos.php:1324 #: ../../mod/photos.php:1330
msgid "Rotate CW (right)" msgid "Rotate CW (right)"
msgstr "Rotovat po směru hodinových ručiček (doprava)" msgstr "Rotovat po směru hodinových ručiček (doprava)"
#: ../../mod/photos.php:1325 #: ../../mod/photos.php:1331
msgid "Rotate CCW (left)" msgid "Rotate CCW (left)"
msgstr "Rotovat proti směru hodinových ručiček (doleva)" msgstr "Rotovat proti směru hodinových ručiček (doleva)"
#: ../../mod/photos.php:1327 #: ../../mod/photos.php:1333
msgid "New album name" msgid "New album name"
msgstr "Nové jméno alba" msgstr "Nové jméno alba"
#: ../../mod/photos.php:1330 #: ../../mod/photos.php:1336
msgid "Caption" msgid "Caption"
msgstr "Titulek" msgstr "Titulek"
#: ../../mod/photos.php:1332 #: ../../mod/photos.php:1338
msgid "Add a Tag" msgid "Add a Tag"
msgstr "Přidat štítek" msgstr "Přidat štítek"
#: ../../mod/photos.php:1336 #: ../../mod/photos.php:1342
msgid "" msgid ""
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
#: ../../mod/photos.php:1356 ../../mod/content.php:667 #: ../../mod/photos.php:1362 ../../mod/content.php:667
#: ../../include/conversation.php:581 ../../object/Item.php:195 #: ../../object/Item.php:196
msgid "I like this (toggle)" msgid "I like this (toggle)"
msgstr "Líbí se mi to (přepínač)" msgstr "Líbí se mi to (přepínač)"
#: ../../mod/photos.php:1357 ../../mod/content.php:668 #: ../../mod/photos.php:1363 ../../mod/content.php:668
#: ../../include/conversation.php:582 ../../object/Item.php:196 #: ../../object/Item.php:197
msgid "I don't like this (toggle)" msgid "I don't like this (toggle)"
msgstr "Nelíbí se mi to (přepínač)" msgstr "Nelíbí se mi to (přepínač)"
#: ../../mod/photos.php:1358 ../../include/conversation.php:1268 #: ../../mod/photos.php:1364 ../../include/conversation.php:909
msgid "Share" msgid "Share"
msgstr "Sdílet" msgstr "Sdílet"
#: ../../mod/photos.php:1359 ../../mod/editpost.php:112 #: ../../mod/photos.php:1365 ../../mod/editpost.php:112
#: ../../mod/content.php:482 ../../mod/content.php:845 #: ../../mod/content.php:482 ../../mod/content.php:845
#: ../../mod/wallmessage.php:152 ../../mod/message.php:293 #: ../../mod/wallmessage.php:152 ../../mod/message.php:293
#: ../../mod/message.php:481 ../../include/conversation.php:686 #: ../../mod/message.php:481 ../../include/conversation.php:573
#: ../../include/conversation.php:944 ../../include/conversation.php:1287 #: ../../include/conversation.php:928 ../../object/Item.php:258
#: ../../object/Item.php:257
msgid "Please wait" msgid "Please wait"
msgstr "Čekejte prosím" msgstr "Čekejte prosím"
#: ../../mod/photos.php:1375 ../../mod/photos.php:1416 #: ../../mod/photos.php:1381 ../../mod/photos.php:1424
#: ../../mod/photos.php:1448 ../../mod/content.php:690 #: ../../mod/photos.php:1456 ../../mod/content.php:690
#: ../../include/conversation.php:604 ../../object/Item.php:556 #: ../../object/Item.php:555
msgid "This is you" msgid "This is you"
msgstr "Nastavte Vaši polohu" msgstr "Nastavte Vaši polohu"
#: ../../mod/photos.php:1377 ../../mod/photos.php:1418 #: ../../mod/photos.php:1383 ../../mod/photos.php:1426
#: ../../mod/photos.php:1450 ../../mod/content.php:692 #: ../../mod/photos.php:1458 ../../mod/content.php:692 ../../boot.php:574
#: ../../include/conversation.php:606 ../../boot.php:574 #: ../../object/Item.php:557
#: ../../object/Item.php:558
msgid "Comment" msgid "Comment"
msgstr "Okomentovat" msgstr "Okomentovat"
#: ../../mod/photos.php:1379 ../../mod/editpost.php:133 #: ../../mod/photos.php:1385 ../../mod/editpost.php:133
#: ../../mod/content.php:702 ../../include/conversation.php:616 #: ../../mod/content.php:702 ../../include/conversation.php:946
#: ../../include/conversation.php:1305 ../../object/Item.php:568 #: ../../object/Item.php:567
msgid "Preview" msgid "Preview"
msgstr "Náhled" msgstr "Náhled"
#: ../../mod/photos.php:1479 ../../mod/content.php:439 #: ../../mod/photos.php:1487 ../../mod/content.php:439
#: ../../mod/content.php:723 ../../mod/settings.php:606 #: ../../mod/content.php:723 ../../mod/settings.php:606
#: ../../mod/settings.php:695 ../../mod/group.php:168 ../../mod/admin.php:696 #: ../../mod/settings.php:695 ../../mod/group.php:168 ../../mod/admin.php:696
#: ../../include/conversation.php:448 ../../include/conversation.php:889 #: ../../include/conversation.php:518 ../../object/Item.php:117
#: ../../object/Item.php:116
msgid "Delete" msgid "Delete"
msgstr "Odstranit" msgstr "Odstranit"
#: ../../mod/photos.php:1569 #: ../../mod/photos.php:1577
msgid "View Album" msgid "View Album"
msgstr "Zobrazit album" msgstr "Zobrazit album"
#: ../../mod/photos.php:1578 #: ../../mod/photos.php:1586
msgid "Recent Photos" msgid "Recent Photos"
msgstr "Aktuální fotografie" msgstr "Aktuální fotografie"
@ -691,29 +688,28 @@ msgstr "Položka nenalezena"
msgid "Edit post" msgid "Edit post"
msgstr "Upravit příspěvek" msgstr "Upravit příspěvek"
#: ../../mod/editpost.php:88 ../../include/conversation.php:1254 #: ../../mod/editpost.php:88 ../../include/conversation.php:895
msgid "Post to Email" msgid "Post to Email"
msgstr "Poslat příspěvek na e-mail" msgstr "Poslat příspěvek na e-mail"
#: ../../mod/editpost.php:103 ../../mod/content.php:710 #: ../../mod/editpost.php:103 ../../mod/content.php:710
#: ../../mod/settings.php:605 ../../include/conversation.php:441 #: ../../mod/settings.php:605 ../../object/Item.php:107
#: ../../object/Item.php:107
msgid "Edit" msgid "Edit"
msgstr "Upravit" msgstr "Upravit"
#: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150 #: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150
#: ../../mod/message.php:291 ../../mod/message.php:478 #: ../../mod/message.php:291 ../../mod/message.php:478
#: ../../include/conversation.php:1269 #: ../../include/conversation.php:910
msgid "Upload photo" msgid "Upload photo"
msgstr "Nahrát fotografii" msgstr "Nahrát fotografii"
#: ../../mod/editpost.php:105 ../../include/conversation.php:1271 #: ../../mod/editpost.php:105 ../../include/conversation.php:912
msgid "Attach file" msgid "Attach file"
msgstr "Přiložit soubor" msgstr "Přiložit soubor"
#: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151 #: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151
#: ../../mod/message.php:292 ../../mod/message.php:479 #: ../../mod/message.php:292 ../../mod/message.php:479
#: ../../include/conversation.php:1273 #: ../../include/conversation.php:914
msgid "Insert web link" msgid "Insert web link"
msgstr "Vložit webový odkaz" msgstr "Vložit webový odkaz"
@ -729,35 +725,35 @@ msgstr "Vložit Vorbis [.ogg] video"
msgid "Insert Vorbis [.ogg] audio" msgid "Insert Vorbis [.ogg] audio"
msgstr "Vložit Vorbis [.ogg] audio" msgstr "Vložit Vorbis [.ogg] audio"
#: ../../mod/editpost.php:110 ../../include/conversation.php:1279 #: ../../mod/editpost.php:110 ../../include/conversation.php:920
msgid "Set your location" msgid "Set your location"
msgstr "Nastavte vaši polohu" msgstr "Nastavte vaši polohu"
#: ../../mod/editpost.php:111 ../../include/conversation.php:1281 #: ../../mod/editpost.php:111 ../../include/conversation.php:922
msgid "Clear browser location" msgid "Clear browser location"
msgstr "Odstranit adresu v prohlížeči" msgstr "Odstranit adresu v prohlížeči"
#: ../../mod/editpost.php:113 ../../include/conversation.php:1288 #: ../../mod/editpost.php:113 ../../include/conversation.php:929
msgid "Permission settings" msgid "Permission settings"
msgstr "Nastavení oprávnění" msgstr "Nastavení oprávnění"
#: ../../mod/editpost.php:121 ../../include/conversation.php:1297 #: ../../mod/editpost.php:121 ../../include/conversation.php:938
msgid "CC: email addresses" msgid "CC: email addresses"
msgstr "skrytá kopie: e-mailové adresy" msgstr "skrytá kopie: e-mailové adresy"
#: ../../mod/editpost.php:122 ../../include/conversation.php:1298 #: ../../mod/editpost.php:122 ../../include/conversation.php:939
msgid "Public post" msgid "Public post"
msgstr "Veřejný příspěvek" msgstr "Veřejný příspěvek"
#: ../../mod/editpost.php:125 ../../include/conversation.php:1284 #: ../../mod/editpost.php:125 ../../include/conversation.php:925
msgid "Set title" msgid "Set title"
msgstr "Nastavit titulek" msgstr "Nastavit titulek"
#: ../../mod/editpost.php:127 ../../include/conversation.php:1286 #: ../../mod/editpost.php:127 ../../include/conversation.php:927
msgid "Categories (comma-separated list)" msgid "Categories (comma-separated list)"
msgstr "Kategorie (čárkou oddělený seznam)" msgstr "Kategorie (čárkou oddělený seznam)"
#: ../../mod/editpost.php:128 ../../include/conversation.php:1300 #: ../../mod/editpost.php:128 ../../include/conversation.php:941
msgid "Example: bob@example.com, mary@example.com" msgid "Example: bob@example.com, mary@example.com"
msgstr "Příklad: bob@example.com, mary@example.com" msgstr "Příklad: bob@example.com, mary@example.com"
@ -879,7 +875,7 @@ msgstr "Prosím potvrďte Vaši žádost o propojení %s."
msgid "Confirm" msgid "Confirm"
msgstr "Potvrdit" msgstr "Potvrdit"
#: ../../mod/dfrn_request.php:715 ../../include/items.php:3287 #: ../../mod/dfrn_request.php:715 ../../include/items.php:3292
msgid "[Name Withheld]" msgid "[Name Withheld]"
msgstr "[Jméno odepřeno]" msgstr "[Jméno odepřeno]"
@ -1301,32 +1297,28 @@ msgid "Group: "
msgstr "Skupina: " msgstr "Skupina: "
#: ../../mod/content.php:438 ../../mod/content.php:722 #: ../../mod/content.php:438 ../../mod/content.php:722
#: ../../include/conversation.php:447 ../../include/conversation.php:888 #: ../../include/conversation.php:517 ../../object/Item.php:116
#: ../../object/Item.php:115
msgid "Select" msgid "Select"
msgstr "Vybrat" msgstr "Vybrat"
#: ../../mod/content.php:455 ../../mod/content.php:815 #: ../../mod/content.php:455 ../../mod/content.php:815
#: ../../mod/content.php:816 ../../include/conversation.php:654 #: ../../mod/content.php:816 ../../include/conversation.php:536
#: ../../include/conversation.php:655 ../../include/conversation.php:907 #: ../../object/Item.php:227 ../../object/Item.php:228
#: ../../object/Item.php:226 ../../object/Item.php:227
#, php-format #, php-format
msgid "View %s's profile @ %s" msgid "View %s's profile @ %s"
msgstr "Zobrazit profil uživatele %s na %s" msgstr "Zobrazit profil uživatele %s na %s"
#: ../../mod/content.php:465 ../../mod/content.php:827 #: ../../mod/content.php:465 ../../mod/content.php:827
#: ../../include/conversation.php:668 ../../include/conversation.php:927 #: ../../include/conversation.php:556 ../../object/Item.php:240
#: ../../object/Item.php:239
#, php-format #, php-format
msgid "%s from %s" msgid "%s from %s"
msgstr "%s od %s" msgstr "%s od %s"
#: ../../mod/content.php:480 ../../include/conversation.php:942 #: ../../mod/content.php:480 ../../include/conversation.php:571
msgid "View in context" msgid "View in context"
msgstr "Pohled v kontextu" msgstr "Pohled v kontextu"
#: ../../mod/content.php:586 ../../include/conversation.php:695 #: ../../mod/content.php:586 ../../object/Item.php:277
#: ../../object/Item.php:276
#, php-format #, php-format
msgid "%d comment" msgid "%d comment"
msgid_plural "%d comments" msgid_plural "%d comments"
@ -1335,8 +1327,7 @@ msgstr[1] "%d komentářů"
msgstr[2] "%d komentářů" msgstr[2] "%d komentářů"
#: ../../mod/content.php:588 ../../include/text.php:1443 #: ../../mod/content.php:588 ../../include/text.php:1443
#: ../../include/conversation.php:697 ../../object/Item.php:278 #: ../../object/Item.php:279 ../../object/Item.php:292
#: ../../object/Item.php:291
msgid "comment" msgid "comment"
msgid_plural "comments" msgid_plural "comments"
msgstr[0] "" msgstr[0] ""
@ -1345,113 +1336,92 @@ msgstr[2] "komentář"
#: ../../mod/content.php:589 ../../addon/page/page.php:76 #: ../../mod/content.php:589 ../../addon/page/page.php:76
#: ../../addon/page/page.php:110 ../../addon/showmore/showmore.php:119 #: ../../addon/page/page.php:110 ../../addon/showmore/showmore.php:119
#: ../../include/contact_widgets.php:195 ../../include/conversation.php:698 #: ../../include/contact_widgets.php:195 ../../boot.php:575
#: ../../boot.php:575 ../../object/Item.php:279 #: ../../object/Item.php:280
msgid "show more" msgid "show more"
msgstr "zobrazit více" msgstr "zobrazit více"
#: ../../mod/content.php:667 ../../include/conversation.php:581 #: ../../mod/content.php:667 ../../object/Item.php:196
#: ../../object/Item.php:195
msgid "like" msgid "like"
msgstr "má rád" msgstr "má rád"
#: ../../mod/content.php:668 ../../include/conversation.php:582 #: ../../mod/content.php:668 ../../object/Item.php:197
#: ../../object/Item.php:196
msgid "dislike" msgid "dislike"
msgstr "nemá rád" msgstr "nemá rád"
#: ../../mod/content.php:670 ../../include/conversation.php:584 #: ../../mod/content.php:670 ../../object/Item.php:199
#: ../../object/Item.php:198
msgid "Share this" msgid "Share this"
msgstr "Sdílet toto" msgstr "Sdílet toto"
#: ../../mod/content.php:670 ../../include/conversation.php:584 #: ../../mod/content.php:670 ../../object/Item.php:199
#: ../../object/Item.php:198
msgid "share" msgid "share"
msgstr "sdílí" msgstr "sdílí"
#: ../../mod/content.php:694 ../../include/conversation.php:608 #: ../../mod/content.php:694 ../../object/Item.php:559
#: ../../object/Item.php:560
msgid "Bold" msgid "Bold"
msgstr "Tučné" msgstr "Tučné"
#: ../../mod/content.php:695 ../../include/conversation.php:609 #: ../../mod/content.php:695 ../../object/Item.php:560
#: ../../object/Item.php:561
msgid "Italic" msgid "Italic"
msgstr "Kurzíva" msgstr "Kurzíva"
#: ../../mod/content.php:696 ../../include/conversation.php:610 #: ../../mod/content.php:696 ../../object/Item.php:561
#: ../../object/Item.php:562
msgid "Underline" msgid "Underline"
msgstr "Podrtžené" msgstr "Podrtžené"
#: ../../mod/content.php:697 ../../include/conversation.php:611 #: ../../mod/content.php:697 ../../object/Item.php:562
#: ../../object/Item.php:563
msgid "Quote" msgid "Quote"
msgstr "Citovat" msgstr "Citovat"
#: ../../mod/content.php:698 ../../include/conversation.php:612 #: ../../mod/content.php:698 ../../object/Item.php:563
#: ../../object/Item.php:564
msgid "Code" msgid "Code"
msgstr "Kód" msgstr "Kód"
#: ../../mod/content.php:699 ../../include/conversation.php:613 #: ../../mod/content.php:699 ../../object/Item.php:564
#: ../../object/Item.php:565
msgid "Image" msgid "Image"
msgstr "Obrázek" msgstr "Obrázek"
#: ../../mod/content.php:700 ../../include/conversation.php:614 #: ../../mod/content.php:700 ../../object/Item.php:565
#: ../../object/Item.php:566
msgid "Link" msgid "Link"
msgstr "Odkaz" msgstr "Odkaz"
#: ../../mod/content.php:701 ../../include/conversation.php:615 #: ../../mod/content.php:701 ../../object/Item.php:566
#: ../../object/Item.php:567
msgid "Video" msgid "Video"
msgstr "Video" msgstr "Video"
#: ../../mod/content.php:735 ../../include/conversation.php:545 #: ../../mod/content.php:735 ../../object/Item.php:180
#: ../../object/Item.php:179
msgid "add star" msgid "add star"
msgstr "přidat hvězdu" msgstr "přidat hvězdu"
#: ../../mod/content.php:736 ../../include/conversation.php:546 #: ../../mod/content.php:736 ../../object/Item.php:181
#: ../../object/Item.php:180
msgid "remove star" msgid "remove star"
msgstr "odebrat hvězdu" msgstr "odebrat hvězdu"
#: ../../mod/content.php:737 ../../include/conversation.php:547 #: ../../mod/content.php:737 ../../object/Item.php:182
#: ../../object/Item.php:181
msgid "toggle star status" msgid "toggle star status"
msgstr "přepnout hvězdu" msgstr "přepnout hvězdu"
#: ../../mod/content.php:740 ../../include/conversation.php:550 #: ../../mod/content.php:740 ../../object/Item.php:185
#: ../../object/Item.php:184
msgid "starred" msgid "starred"
msgstr "označeno hvězdou" msgstr "označeno hvězdou"
#: ../../mod/content.php:741 ../../include/conversation.php:551 #: ../../mod/content.php:741 ../../object/Item.php:186
#: ../../object/Item.php:185
msgid "add tag" msgid "add tag"
msgstr "přidat štítek" msgstr "přidat štítek"
#: ../../mod/content.php:745 ../../include/conversation.php:451 #: ../../mod/content.php:745 ../../object/Item.php:120
#: ../../object/Item.php:119
msgid "save to folder" msgid "save to folder"
msgstr "uložit do složky" msgstr "uložit do složky"
#: ../../mod/content.php:817 ../../include/conversation.php:656 #: ../../mod/content.php:817 ../../object/Item.php:229
#: ../../object/Item.php:228
msgid "to" msgid "to"
msgstr "pro" msgstr "pro"
#: ../../mod/content.php:818 ../../include/conversation.php:657 #: ../../mod/content.php:818 ../../object/Item.php:230
#: ../../object/Item.php:229
msgid "Wall-to-Wall" msgid "Wall-to-Wall"
msgstr "Zeď-na-Zeď" msgstr "Zeď-na-Zeď"
#: ../../mod/content.php:819 ../../include/conversation.php:658 #: ../../mod/content.php:819 ../../object/Item.php:231
#: ../../object/Item.php:230
msgid "via Wall-To-Wall:" msgid "via Wall-To-Wall:"
msgstr "přes Zeď-na-Zeď " msgstr "přes Zeď-na-Zeď "
@ -1970,7 +1940,7 @@ msgstr "Na %s bylo zažádáno o resetování hesla"
#: ../../addon/facebook/facebook.php:702 #: ../../addon/facebook/facebook.php:702
#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661 #: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661
#: ../../addon/public_server/public_server.php:62 #: ../../addon/public_server/public_server.php:62
#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3296 #: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3301
#: ../../boot.php:788 #: ../../boot.php:788
msgid "Administrator" msgid "Administrator"
msgstr "Administrátor" msgstr "Administrátor"
@ -2290,7 +2260,7 @@ msgstr "Minimum 10 sekund, žádné maximum."
#: ../../mod/settings.php:776 #: ../../mod/settings.php:776
msgid "Number of items to display per page:" msgid "Number of items to display per page:"
msgstr "" msgstr "Počet položek zobrazených na stránce:"
#: ../../mod/settings.php:776 #: ../../mod/settings.php:776
msgid "Maximum of 100 items" msgid "Maximum of 100 items"
@ -2704,7 +2674,7 @@ msgstr "Žádný příjemce."
#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131 #: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131
#: ../../mod/message.php:242 ../../mod/message.php:250 #: ../../mod/message.php:242 ../../mod/message.php:250
#: ../../include/conversation.php:1205 ../../include/conversation.php:1222 #: ../../include/conversation.php:846 ../../include/conversation.php:863
msgid "Please enter a link URL:" msgid "Please enter a link URL:"
msgstr "Zadejte prosím URL odkaz:" msgstr "Zadejte prosím URL odkaz:"
@ -3104,8 +3074,8 @@ msgstr "Registrovat"
msgid "People Search" msgid "People Search"
msgstr "Vyhledávání lidí" msgstr "Vyhledávání lidí"
#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/tagger.php:62 #: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/subthread.php:87
#: ../../addon/facebook/facebook.php:1598 #: ../../mod/tagger.php:62 ../../addon/facebook/facebook.php:1598
#: ../../addon/communityhome/communityhome.php:158 #: ../../addon/communityhome/communityhome.php:158
#: ../../addon/communityhome/communityhome.php:167 #: ../../addon/communityhome/communityhome.php:167
#: ../../view/theme/diabook/theme.php:565 #: ../../view/theme/diabook/theme.php:565
@ -3130,7 +3100,7 @@ msgstr "%1$s nemá rád %2$s na %3$s"
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159 #: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159
#: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:29 #: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:29
#: ../../mod/display.php:145 ../../include/items.php:3774 #: ../../mod/display.php:145 ../../include/items.php:3779
msgid "Item not found." msgid "Item not found."
msgstr "Položka nenalezena." msgstr "Položka nenalezena."
@ -3204,7 +3174,7 @@ msgstr "%s poslal aktualizaci."
#: ../../mod/mood.php:62 ../../include/conversation.php:226 #: ../../mod/mood.php:62 ../../include/conversation.php:226
#, php-format #, php-format
msgid "%1$s is currently %2$s" msgid "%1$s is currently %2$s"
msgstr "" msgstr "%1$s je právě %2$s"
#: ../../mod/mood.php:133 #: ../../mod/mood.php:133
msgid "Mood" msgid "Mood"
@ -3656,13 +3626,13 @@ msgstr "Povolit zpracování obsahu tohoto webu neomezeným počtem paralelních
#: ../../mod/admin.php:470 #: ../../mod/admin.php:470
msgid "Private posts by default for new users" msgid "Private posts by default for new users"
msgstr "" msgstr "Nastavit pro nové uživatele příspěvky jako soukromé"
#: ../../mod/admin.php:470 #: ../../mod/admin.php:470
msgid "" msgid ""
"Set default post permissions for all new members to the default privacy " "Set default post permissions for all new members to the default privacy "
"group rather than public." "group rather than public."
msgstr "" msgstr "Nastavit defaultní práva pro příspěvky od všech nových členů na výchozí soukromou skupinu raději než jako veřejné."
#: ../../mod/admin.php:472 #: ../../mod/admin.php:472
msgid "Block multiple registrations" msgid "Block multiple registrations"
@ -4030,48 +4000,48 @@ msgstr "Přístup na tento profil byl omezen."
msgid "Tips for New Members" msgid "Tips for New Members"
msgstr "Tipy pro nové členy" msgstr "Tipy pro nové členy"
#: ../../mod/ping.php:235 #: ../../mod/ping.php:238
msgid "{0} wants to be your friend" msgid "{0} wants to be your friend"
msgstr "{0} chce být Vaším přítelem" msgstr "{0} chce být Vaším přítelem"
#: ../../mod/ping.php:240 #: ../../mod/ping.php:243
msgid "{0} sent you a message" msgid "{0} sent you a message"
msgstr "{0} vám poslal zprávu" msgstr "{0} vám poslal zprávu"
#: ../../mod/ping.php:245 #: ../../mod/ping.php:248
msgid "{0} requested registration" msgid "{0} requested registration"
msgstr "{0} požaduje registraci" msgstr "{0} požaduje registraci"
#: ../../mod/ping.php:251 #: ../../mod/ping.php:254
#, php-format #, php-format
msgid "{0} commented %s's post" msgid "{0} commented %s's post"
msgstr "{0} komentoval příspěvek uživatele %s" msgstr "{0} komentoval příspěvek uživatele %s"
#: ../../mod/ping.php:256 #: ../../mod/ping.php:259
#, php-format #, php-format
msgid "{0} liked %s's post" msgid "{0} liked %s's post"
msgstr "{0} má rád příspěvek uživatele %s" msgstr "{0} má rád příspěvek uživatele %s"
#: ../../mod/ping.php:261 #: ../../mod/ping.php:264
#, php-format #, php-format
msgid "{0} disliked %s's post" msgid "{0} disliked %s's post"
msgstr "{0} nemá rád příspěvek uživatele %s" msgstr "{0} nemá rád příspěvek uživatele %s"
#: ../../mod/ping.php:266 #: ../../mod/ping.php:269
#, php-format #, php-format
msgid "{0} is now friends with %s" msgid "{0} is now friends with %s"
msgstr "{0} se skamarádil s %s" msgstr "{0} se skamarádil s %s"
#: ../../mod/ping.php:271 #: ../../mod/ping.php:274
msgid "{0} posted" msgid "{0} posted"
msgstr "{0} zasláno" msgstr "{0} zasláno"
#: ../../mod/ping.php:276 #: ../../mod/ping.php:279
#, php-format #, php-format
msgid "{0} tagged %s's post with #%s" msgid "{0} tagged %s's post with #%s"
msgstr "{0} označen %s' příspěvek s #%s" msgstr "{0} označen %s' příspěvek s #%s"
#: ../../mod/ping.php:282 #: ../../mod/ping.php:285
msgid "{0} mentioned you in a post" msgid "{0} mentioned you in a post"
msgstr "{0} vás zmínil v příspěvku" msgstr "{0} vás zmínil v příspěvku"
@ -4105,6 +4075,11 @@ msgstr "Společní přátelé"
msgid "No contacts in common." msgid "No contacts in common."
msgstr "Žádné společné kontakty." msgstr "Žádné společné kontakty."
#: ../../mod/subthread.php:103
#, php-format
msgid "%1$s is following %2$s's %3$s"
msgstr "%1$s následuje %3$s uživatele %2$s"
#: ../../mod/share.php:28 #: ../../mod/share.php:28
msgid "link" msgid "link"
msgstr "odkaz" msgstr "odkaz"
@ -4433,8 +4408,8 @@ msgstr "viditelné pro všechny"
msgid "Edit visibility" msgid "Edit visibility"
msgstr "Upravit viditelnost" msgstr "Upravit viditelnost"
#: ../../mod/filer.php:29 ../../include/conversation.php:1209 #: ../../mod/filer.php:29 ../../include/conversation.php:850
#: ../../include/conversation.php:1226 #: ../../include/conversation.php:867
msgid "Save to Folder:" msgid "Save to Folder:"
msgstr "Uložit do složky:" msgstr "Uložit do složky:"
@ -5095,11 +5070,11 @@ msgstr ""
#: ../../addon/morepokes/morepokes.php:22 #: ../../addon/morepokes/morepokes.php:22
msgid "point out the poke feature to" msgid "point out the poke feature to"
msgstr "" msgstr "upozornit na poke funkci uživatele"
#: ../../addon/morepokes/morepokes.php:22 #: ../../addon/morepokes/morepokes.php:22
msgid "pointed out the poke feature to" msgid "pointed out the poke feature to"
msgstr "" msgstr "upozorněn na poke funkci "
#: ../../addon/morepokes/morepokes.php:23 #: ../../addon/morepokes/morepokes.php:23
msgid "declare undying love for" msgid "declare undying love for"
@ -5300,11 +5275,11 @@ msgid "%s - Click to open/close"
msgstr "%s - Klikněte pro otevření/zavření" msgstr "%s - Klikněte pro otevření/zavření"
#: ../../addon/page/page.php:61 ../../addon/page/page.php:91 #: ../../addon/page/page.php:61 ../../addon/page/page.php:91
#: ../../addon/forumlist/forumlist.php:54 #: ../../addon/forumlist/forumlist.php:55
msgid "Forums" msgid "Forums"
msgstr "Fóra" msgstr "Fóra"
#: ../../addon/page/page.php:129 ../../addon/forumlist/forumlist.php:88 #: ../../addon/page/page.php:129 ../../addon/forumlist/forumlist.php:89
msgid "Forums:" msgid "Forums:"
msgstr "Fóra:" msgstr "Fóra:"
@ -5316,7 +5291,7 @@ msgstr "Nastavení stránky aktualizováno."
msgid "Page Settings" msgid "Page Settings"
msgstr "Nastavení stránky" msgstr "Nastavení stránky"
#: ../../addon/page/page.php:196 ../../addon/forumlist/forumlist.php:155 #: ../../addon/page/page.php:196
msgid "How many forums to display on sidebar without paging" msgid "How many forums to display on sidebar without paging"
msgstr "Kolik diskuzních fór zobrazit v bočním panelu bez použití stránkování" msgstr "Kolik diskuzních fór zobrazit v bočním panelu bez použití stránkování"
@ -6149,7 +6124,7 @@ msgstr "Použití OEmbed pro videa na YouTube"
msgid "URL to embed:" msgid "URL to embed:"
msgstr "URL adresa k vložení:" msgstr "URL adresa k vložení:"
#: ../../addon/forumlist/forumlist.php:57 #: ../../addon/forumlist/forumlist.php:58
msgid "show/hide" msgid "show/hide"
msgstr "zobrazit/skrýt" msgstr "zobrazit/skrýt"
@ -6157,21 +6132,21 @@ msgstr "zobrazit/skrýt"
msgid "No forum subscriptions" msgid "No forum subscriptions"
msgstr "Žádné registrace k fórům" msgstr "Žádné registrace k fórům"
#: ../../addon/forumlist/forumlist.php:124 #: ../../addon/forumlist/forumlist.php:125
msgid "Forumlist settings updated." msgid "Forumlist settings updated."
msgstr "Nastavení Forumlist aktualizováno." msgstr "Nastavení Forumlist aktualizováno."
#: ../../addon/forumlist/forumlist.php:153 #: ../../addon/forumlist/forumlist.php:150
msgid "Forumlist Settings" msgid "Forumlist Settings"
msgstr "Nastavení Forumlist" msgstr "Nastavení Forumlist"
#: ../../addon/forumlist/forumlist.php:158 #: ../../addon/forumlist/forumlist.php:152
msgid "Randomise Forumlist/Forum list" msgid "Randomise forum list"
msgstr "Náhodně rozdělit seznam Forumlist/Forum" msgstr "Zamíchat list fór"
#: ../../addon/forumlist/forumlist.php:161 #: ../../addon/forumlist/forumlist.php:155
msgid "Show forumlists/forums on profile forumlist" msgid "Show forums on profile page"
msgstr "Zobrazit forumlists/forums na profilu forumlist" msgstr "Zobrazit fóra na profilové stránce"
#: ../../addon/impressum/impressum.php:37 #: ../../addon/impressum/impressum.php:37
msgid "Impressum" msgid "Impressum"
@ -6562,15 +6537,15 @@ msgstr "Jabber server"
#: ../../addon/jappixmini/jappixmini.php:281 #: ../../addon/jappixmini/jappixmini.php:281
msgid "Jabber BOSH host" msgid "Jabber BOSH host"
msgstr "" msgstr "Jabber BOSH host"
#: ../../addon/jappixmini/jappixmini.php:285 #: ../../addon/jappixmini/jappixmini.php:285
msgid "Jabber password" msgid "Jabber password"
msgstr "" msgstr "Jabber heslo"
#: ../../addon/jappixmini/jappixmini.php:290 #: ../../addon/jappixmini/jappixmini.php:290
msgid "Encrypt Jabber password with Friendica password (recommended)" msgid "Encrypt Jabber password with Friendica password (recommended)"
msgstr "" msgstr "Zašifrovat Jabber heslo s heslem Friendica (doporučeno)"
#: ../../addon/jappixmini/jappixmini.php:293 #: ../../addon/jappixmini/jappixmini.php:293
msgid "Friendica password" msgid "Friendica password"
@ -6578,11 +6553,11 @@ msgstr "Friendica heslo"
#: ../../addon/jappixmini/jappixmini.php:296 #: ../../addon/jappixmini/jappixmini.php:296
msgid "Approve subscription requests from Friendica contacts automatically" msgid "Approve subscription requests from Friendica contacts automatically"
msgstr "" msgstr "Automaticky schválit požadavek na členství od Friedica kontaktů."
#: ../../addon/jappixmini/jappixmini.php:299 #: ../../addon/jappixmini/jappixmini.php:299
msgid "Subscribe to Friendica contacts automatically" msgid "Subscribe to Friendica contacts automatically"
msgstr "" msgstr "Automaticky zaslat požadavek na členství Friedica kontaktům."
#: ../../addon/jappixmini/jappixmini.php:302 #: ../../addon/jappixmini/jappixmini.php:302
msgid "Purge internal list of jabber addresses of contacts" msgid "Purge internal list of jabber addresses of contacts"
@ -6964,20 +6939,20 @@ msgstr "Oblíbené kanály"
#: ../../addon/fromapp/fromapp.php:38 #: ../../addon/fromapp/fromapp.php:38
msgid "Fromapp settings updated." msgid "Fromapp settings updated."
msgstr "" msgstr "Fromapp nastavení aktualizováno."
#: ../../addon/fromapp/fromapp.php:64 #: ../../addon/fromapp/fromapp.php:64
msgid "FromApp Settings" msgid "FromApp Settings"
msgstr "" msgstr "FromApp nastavení"
#: ../../addon/fromapp/fromapp.php:66 #: ../../addon/fromapp/fromapp.php:66
msgid "" msgid ""
"The application name you would like to show your posts originating from." "The application name you would like to show your posts originating from."
msgstr "" msgstr "Jméno aplikace, které chcete aby bylo jako zdroj u vašich příspěvků"
#: ../../addon/fromapp/fromapp.php:70 #: ../../addon/fromapp/fromapp.php:70
msgid "Use this application name even if another application was used." msgid "Use this application name even if another application was used."
msgstr "" msgstr "Použij toto jméno aplikace i když byla použita jiná aplikace"
#: ../../addon/blogger/blogger.php:42 #: ../../addon/blogger/blogger.php:42
msgid "Post to blogger" msgid "Post to blogger"
@ -8155,12 +8130,12 @@ msgstr "sekund"
msgid "%1$d %2$s ago" msgid "%1$d %2$s ago"
msgstr "před %1$d %2$s" msgstr "před %1$d %2$s"
#: ../../include/datetime.php:472 ../../include/items.php:1683 #: ../../include/datetime.php:472 ../../include/items.php:1688
#, php-format #, php-format
msgid "%s's birthday" msgid "%s's birthday"
msgstr "%s má narozeniny" msgstr "%s má narozeniny"
#: ../../include/datetime.php:473 ../../include/items.php:1684 #: ../../include/datetime.php:473 ../../include/items.php:1689
#, php-format #, php-format
msgid "Happy Birthday %s" msgid "Happy Birthday %s"
msgstr "Veselé narozeniny %s" msgstr "Veselé narozeniny %s"
@ -8435,15 +8410,15 @@ msgstr "Nepodařilo se získat kontaktní informace."
msgid "following" msgid "following"
msgstr "následující" msgstr "následující"
#: ../../include/items.php:3294 #: ../../include/items.php:3299
msgid "A new person is sharing with you at " msgid "A new person is sharing with you at "
msgstr "Nový člověk si s vámi sdílí na" msgstr "Nový člověk si s vámi sdílí na"
#: ../../include/items.php:3294 #: ../../include/items.php:3299
msgid "You have a new follower at " msgid "You have a new follower at "
msgstr "Máte nového následovníka na" msgstr "Máte nového následovníka na"
#: ../../include/items.php:3975 #: ../../include/items.php:3980
msgid "Archives" msgid "Archives"
msgstr "Archív" msgstr "Archív"
@ -8537,34 +8512,34 @@ msgstr "Formulářový bezpečnostní token nebyl správný. To pravděpodobně
msgid "stopped following" msgid "stopped following"
msgstr "následování zastaveno" msgstr "následování zastaveno"
#: ../../include/Contact.php:220 ../../include/conversation.php:1106 #: ../../include/Contact.php:220 ../../include/conversation.php:743
msgid "Poke" msgid "Poke"
msgstr "Šťouchnout" msgstr "Šťouchnout"
#: ../../include/Contact.php:221 ../../include/conversation.php:1100 #: ../../include/Contact.php:221 ../../include/conversation.php:737
msgid "View Status" msgid "View Status"
msgstr "Zobrazit Status" msgstr "Zobrazit Status"
#: ../../include/Contact.php:222 ../../include/conversation.php:1101 #: ../../include/Contact.php:222 ../../include/conversation.php:738
msgid "View Profile" msgid "View Profile"
msgstr "Zobrazit Profil" msgstr "Zobrazit Profil"
#: ../../include/Contact.php:223 ../../include/conversation.php:1102 #: ../../include/Contact.php:223 ../../include/conversation.php:739
msgid "View Photos" msgid "View Photos"
msgstr "Zobrazit Fotky" msgstr "Zobrazit Fotky"
#: ../../include/Contact.php:224 ../../include/Contact.php:237 #: ../../include/Contact.php:224 ../../include/Contact.php:237
#: ../../include/conversation.php:1103 #: ../../include/conversation.php:740
msgid "Network Posts" msgid "Network Posts"
msgstr "Zobrazit Příspěvky sítě" msgstr "Zobrazit Příspěvky sítě"
#: ../../include/Contact.php:225 ../../include/Contact.php:237 #: ../../include/Contact.php:225 ../../include/Contact.php:237
#: ../../include/conversation.php:1104 #: ../../include/conversation.php:741
msgid "Edit Contact" msgid "Edit Contact"
msgstr "Editovat Kontakty" msgstr "Editovat Kontakty"
#: ../../include/Contact.php:226 ../../include/Contact.php:237 #: ../../include/Contact.php:226 ../../include/Contact.php:237
#: ../../include/conversation.php:1105 #: ../../include/conversation.php:742
msgid "Send PM" msgid "Send PM"
msgstr "Poslat soukromou zprávu" msgstr "Poslat soukromou zprávu"
@ -8582,120 +8557,122 @@ msgstr "příspěvek/položka"
msgid "%1$s marked %2$s's %3$s as favorite" msgid "%1$s marked %2$s's %3$s as favorite"
msgstr "uživatel %1$s označil %2$s's %3$s jako oblíbeného" msgstr "uživatel %1$s označil %2$s's %3$s jako oblíbeného"
#: ../../include/conversation.php:645 ../../include/conversation.php:919 #: ../../include/conversation.php:548 ../../object/Item.php:218
#: ../../object/Item.php:217
msgid "Categories:" msgid "Categories:"
msgstr "" msgstr "Kategorie:"
#: ../../include/conversation.php:646 ../../include/conversation.php:920 #: ../../include/conversation.php:549 ../../object/Item.php:219
#: ../../object/Item.php:218
msgid "Filed under:" msgid "Filed under:"
msgstr "" msgstr "Vyplněn pod:"
#: ../../include/conversation.php:1002 #: ../../include/conversation.php:633
msgid "remove" msgid "remove"
msgstr "odstranit" msgstr "odstranit"
#: ../../include/conversation.php:1006 #: ../../include/conversation.php:637
msgid "Delete Selected Items" msgid "Delete Selected Items"
msgstr "Smazat vybrané položky" msgstr "Smazat vybrané položky"
#: ../../include/conversation.php:1164 #: ../../include/conversation.php:736
msgid "Follow Thread"
msgstr "Následovat vlákno"
#: ../../include/conversation.php:805
#, php-format #, php-format
msgid "%s likes this." msgid "%s likes this."
msgstr "%s se to líbí." msgstr "%s se to líbí."
#: ../../include/conversation.php:1164 #: ../../include/conversation.php:805
#, php-format #, php-format
msgid "%s doesn't like this." msgid "%s doesn't like this."
msgstr "%s se to nelíbí." msgstr "%s se to nelíbí."
#: ../../include/conversation.php:1168 #: ../../include/conversation.php:809
#, php-format #, php-format
msgid "<span %1$s>%2$d people</span> like this." msgid "<span %1$s>%2$d people</span> like this."
msgstr "<span %1$s>%2$d lidem</span> se to líbí." msgstr "<span %1$s>%2$d lidem</span> se to líbí."
#: ../../include/conversation.php:1170 #: ../../include/conversation.php:811
#, php-format #, php-format
msgid "<span %1$s>%2$d people</span> don't like this." msgid "<span %1$s>%2$d people</span> don't like this."
msgstr "<span %1$s>%2$d lidem</span> se to nelíbí." msgstr "<span %1$s>%2$d lidem</span> se to nelíbí."
#: ../../include/conversation.php:1176 #: ../../include/conversation.php:817
msgid "and" msgid "and"
msgstr "a" msgstr "a"
#: ../../include/conversation.php:1179 #: ../../include/conversation.php:820
#, php-format #, php-format
msgid ", and %d other people" msgid ", and %d other people"
msgstr ", a %d dalších lidí" msgstr ", a %d dalších lidí"
#: ../../include/conversation.php:1180 #: ../../include/conversation.php:821
#, php-format #, php-format
msgid "%s like this." msgid "%s like this."
msgstr "%s se to líbí." msgstr "%s se to líbí."
#: ../../include/conversation.php:1180 #: ../../include/conversation.php:821
#, php-format #, php-format
msgid "%s don't like this." msgid "%s don't like this."
msgstr "%s se to nelíbí." msgstr "%s se to nelíbí."
#: ../../include/conversation.php:1204 ../../include/conversation.php:1221 #: ../../include/conversation.php:845 ../../include/conversation.php:862
msgid "Visible to <strong>everybody</strong>" msgid "Visible to <strong>everybody</strong>"
msgstr "Viditelné pro <strong>všechny</strong>" msgstr "Viditelné pro <strong>všechny</strong>"
#: ../../include/conversation.php:1206 ../../include/conversation.php:1223 #: ../../include/conversation.php:847 ../../include/conversation.php:864
msgid "Please enter a video link/URL:" msgid "Please enter a video link/URL:"
msgstr "Prosím zadejte URL adresu videa:" msgstr "Prosím zadejte URL adresu videa:"
#: ../../include/conversation.php:1207 ../../include/conversation.php:1224 #: ../../include/conversation.php:848 ../../include/conversation.php:865
msgid "Please enter an audio link/URL:" msgid "Please enter an audio link/URL:"
msgstr "Prosím zadejte URL adresu zvukového záznamu:" msgstr "Prosím zadejte URL adresu zvukového záznamu:"
#: ../../include/conversation.php:1208 ../../include/conversation.php:1225 #: ../../include/conversation.php:849 ../../include/conversation.php:866
msgid "Tag term:" msgid "Tag term:"
msgstr "Štítek:" msgstr "Štítek:"
#: ../../include/conversation.php:1210 ../../include/conversation.php:1227 #: ../../include/conversation.php:851 ../../include/conversation.php:868
msgid "Where are you right now?" msgid "Where are you right now?"
msgstr "Kde právě jste?" msgstr "Kde právě jste?"
#: ../../include/conversation.php:1270 #: ../../include/conversation.php:911
msgid "upload photo" msgid "upload photo"
msgstr "nahrát fotky" msgstr "nahrát fotky"
#: ../../include/conversation.php:1272 #: ../../include/conversation.php:913
msgid "attach file" msgid "attach file"
msgstr "přidat soubor" msgstr "přidat soubor"
#: ../../include/conversation.php:1274 #: ../../include/conversation.php:915
msgid "web link" msgid "web link"
msgstr "webový odkaz" msgstr "webový odkaz"
#: ../../include/conversation.php:1275 #: ../../include/conversation.php:916
msgid "Insert video link" msgid "Insert video link"
msgstr "Zadejte odkaz na video" msgstr "Zadejte odkaz na video"
#: ../../include/conversation.php:1276 #: ../../include/conversation.php:917
msgid "video link" msgid "video link"
msgstr "odkaz na video" msgstr "odkaz na video"
#: ../../include/conversation.php:1277 #: ../../include/conversation.php:918
msgid "Insert audio link" msgid "Insert audio link"
msgstr "Zadejte odkaz na zvukový záznam" msgstr "Zadejte odkaz na zvukový záznam"
#: ../../include/conversation.php:1278 #: ../../include/conversation.php:919
msgid "audio link" msgid "audio link"
msgstr "odkaz na audio" msgstr "odkaz na audio"
#: ../../include/conversation.php:1280 #: ../../include/conversation.php:921
msgid "set location" msgid "set location"
msgstr "nastavit místo" msgstr "nastavit místo"
#: ../../include/conversation.php:1282 #: ../../include/conversation.php:923
msgid "clear location" msgid "clear location"
msgstr "vymazat místo" msgstr "vymazat místo"
#: ../../include/conversation.php:1289 #: ../../include/conversation.php:930
msgid "permissions" msgid "permissions"
msgstr "oprávnění" msgstr "oprávnění"

View file

@ -502,7 +502,7 @@ $a->strings["Display Theme:"] = "Vybrat grafickou šablonu:";
$a->strings["Mobile Theme:"] = "Téma pro mobilní zařízení:"; $a->strings["Mobile Theme:"] = "Téma pro mobilní zařízení:";
$a->strings["Update browser every xx seconds"] = "Aktualizovat prohlížeč každých xx sekund"; $a->strings["Update browser every xx seconds"] = "Aktualizovat prohlížeč každých xx sekund";
$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 sekund, žádné maximum."; $a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 sekund, žádné maximum.";
$a->strings["Number of items to display per page:"] = ""; $a->strings["Number of items to display per page:"] = "Počet položek zobrazených na stránce:";
$a->strings["Maximum of 100 items"] = "Maximum 100 položek"; $a->strings["Maximum of 100 items"] = "Maximum 100 položek";
$a->strings["Don't show emoticons"] = "Nezobrazovat emotikony"; $a->strings["Don't show emoticons"] = "Nezobrazovat emotikony";
$a->strings["Normal Account Page"] = "Normální stránka účtu"; $a->strings["Normal Account Page"] = "Normální stránka účtu";
@ -706,7 +706,7 @@ $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"] = "Můžete je navštívit online na adrese %s"; $a->strings["You may visit them online at %s"] = "Můžete je navštívit online na adrese %s";
$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam."; $a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam.";
$a->strings["%s posted an update."] = "%s poslal aktualizaci."; $a->strings["%s posted an update."] = "%s poslal aktualizaci.";
$a->strings["%1\$s is currently %2\$s"] = ""; $a->strings["%1\$s is currently %2\$s"] = "%1\$s je právě %2\$s";
$a->strings["Mood"] = "Nálada"; $a->strings["Mood"] = "Nálada";
$a->strings["Set your current mood and tell your friends"] = "Nastavte svou aktuální náladu a řekněte to Vašim přátelům"; $a->strings["Set your current mood and tell your friends"] = "Nastavte svou aktuální náladu a řekněte to Vašim přátelům";
$a->strings["Image uploaded but image cropping failed."] = "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo."; $a->strings["Image uploaded but image cropping failed."] = "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo.";
@ -813,8 +813,8 @@ $a->strings["Global directory update URL"] = "aktualizace URL adresy Globálníh
$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL adresa k aktualizaci globálního adresáře. Pokud není zadáno, funkce globálního adresáře není dostupná žádné aplikaci."; $a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL adresa k aktualizaci globálního adresáře. Pokud není zadáno, funkce globálního adresáře není dostupná žádné aplikaci.";
$a->strings["Allow threaded items"] = "Povolit vícevláknové zpracování obsahu"; $a->strings["Allow threaded items"] = "Povolit vícevláknové zpracování obsahu";
$a->strings["Allow infinite level threading for items on this site."] = "Povolit zpracování obsahu tohoto webu neomezeným počtem paralelních vláken."; $a->strings["Allow infinite level threading for items on this site."] = "Povolit zpracování obsahu tohoto webu neomezeným počtem paralelních vláken.";
$a->strings["Private posts by default for new users"] = ""; $a->strings["Private posts by default for new users"] = "Nastavit pro nové uživatele příspěvky jako soukromé";
$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = ""; $a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Nastavit defaultní práva pro příspěvky od všech nových členů na výchozí soukromou skupinu raději než jako veřejné.";
$a->strings["Block multiple registrations"] = "Blokovat více registrací"; $a->strings["Block multiple registrations"] = "Blokovat více registrací";
$a->strings["Disallow users to register additional accounts for use as pages."] = "Znemožnit uživatelům registraci dodatečných účtů k použití jako stránky."; $a->strings["Disallow users to register additional accounts for use as pages."] = "Znemožnit uživatelům registraci dodatečných účtů k použití jako stránky.";
$a->strings["OpenID support"] = "podpora OpenID"; $a->strings["OpenID support"] = "podpora OpenID";
@ -921,6 +921,7 @@ $a->strings["Login failed."] = "Přihlášení se nezdařilo.";
$a->strings["Contact added"] = "Kontakt přidán"; $a->strings["Contact added"] = "Kontakt přidán";
$a->strings["Common Friends"] = "Společní přátelé"; $a->strings["Common Friends"] = "Společní přátelé";
$a->strings["No contacts in common."] = "Žádné společné kontakty."; $a->strings["No contacts in common."] = "Žádné společné kontakty.";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s následuje %3\$s uživatele %2\$s";
$a->strings["link"] = "odkaz"; $a->strings["link"] = "odkaz";
$a->strings["Item has been removed."] = "Položka byla odstraněna."; $a->strings["Item has been removed."] = "Položka byla odstraněna.";
$a->strings["Applications"] = "Aplikace"; $a->strings["Applications"] = "Aplikace";
@ -1156,8 +1157,8 @@ $a->strings["shag"] = "";
$a->strings["shagged"] = ""; $a->strings["shagged"] = "";
$a->strings["do something obscenely biological to"] = ""; $a->strings["do something obscenely biological to"] = "";
$a->strings["did something obscenely biological to"] = ""; $a->strings["did something obscenely biological to"] = "";
$a->strings["point out the poke feature to"] = ""; $a->strings["point out the poke feature to"] = "upozornit na poke funkci uživatele";
$a->strings["pointed out the poke feature to"] = ""; $a->strings["pointed out the poke feature to"] = "upozorněn na poke funkci ";
$a->strings["declare undying love for"] = "vyjadřit nehynoucí lásku ke"; $a->strings["declare undying love for"] = "vyjadřit nehynoucí lásku ke";
$a->strings["declared undying love for"] = "vyjadřil nehynoucí lásku ke"; $a->strings["declared undying love for"] = "vyjadřil nehynoucí lásku ke";
$a->strings["patent"] = "patentovat"; $a->strings["patent"] = "patentovat";
@ -1402,8 +1403,8 @@ $a->strings["show/hide"] = "zobrazit/skrýt";
$a->strings["No forum subscriptions"] = "Žádné registrace k fórům"; $a->strings["No forum subscriptions"] = "Žádné registrace k fórům";
$a->strings["Forumlist settings updated."] = "Nastavení Forumlist aktualizováno."; $a->strings["Forumlist settings updated."] = "Nastavení Forumlist aktualizováno.";
$a->strings["Forumlist Settings"] = "Nastavení Forumlist"; $a->strings["Forumlist Settings"] = "Nastavení Forumlist";
$a->strings["Randomise Forumlist/Forum list"] = "Náhodně rozdělit seznam Forumlist/Forum"; $a->strings["Randomise forum list"] = "Zamíchat list fór";
$a->strings["Show forumlists/forums on profile forumlist"] = "Zobrazit forumlists/forums na profilu forumlist"; $a->strings["Show forums on profile page"] = "Zobrazit fóra na profilové stránce";
$a->strings["Impressum"] = "Impressum"; $a->strings["Impressum"] = "Impressum";
$a->strings["Site Owner"] = "Vlastník webu"; $a->strings["Site Owner"] = "Vlastník webu";
$a->strings["Email Address"] = "E-mailová adresa"; $a->strings["Email Address"] = "E-mailová adresa";
@ -1491,12 +1492,12 @@ $a->strings["Activate addon"] = "Aktivovat rozšíření";
$a->strings["Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"] = "<em>Nevlkádejte</em> Jappixmini Chat-Widget do webového rozhraní"; $a->strings["Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"] = "<em>Nevlkádejte</em> Jappixmini Chat-Widget do webového rozhraní";
$a->strings["Jabber username"] = "Jabber uživatelské jméno"; $a->strings["Jabber username"] = "Jabber uživatelské jméno";
$a->strings["Jabber server"] = "Jabber server"; $a->strings["Jabber server"] = "Jabber server";
$a->strings["Jabber BOSH host"] = ""; $a->strings["Jabber BOSH host"] = "Jabber BOSH host";
$a->strings["Jabber password"] = ""; $a->strings["Jabber password"] = "Jabber heslo";
$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = ""; $a->strings["Encrypt Jabber password with Friendica password (recommended)"] = "Zašifrovat Jabber heslo s heslem Friendica (doporučeno)";
$a->strings["Friendica password"] = "Friendica heslo"; $a->strings["Friendica password"] = "Friendica heslo";
$a->strings["Approve subscription requests from Friendica contacts automatically"] = ""; $a->strings["Approve subscription requests from Friendica contacts automatically"] = "Automaticky schválit požadavek na členství od Friedica kontaktů.";
$a->strings["Subscribe to Friendica contacts automatically"] = ""; $a->strings["Subscribe to Friendica contacts automatically"] = "Automaticky zaslat požadavek na členství Friedica kontaktům.";
$a->strings["Purge internal list of jabber addresses of contacts"] = ""; $a->strings["Purge internal list of jabber addresses of contacts"] = "";
$a->strings["Add contact"] = "Přidat kontakt"; $a->strings["Add contact"] = "Přidat kontakt";
$a->strings["View Source"] = "Zobrazit zdroj"; $a->strings["View Source"] = "Zobrazit zdroj";
@ -1580,10 +1581,10 @@ $a->strings["Popular Channels (comma separated)"] = "Oblíbené Kanály (odděle
$a->strings["IRC settings saved."] = "Nastavení IRC uloženo."; $a->strings["IRC settings saved."] = "Nastavení IRC uloženo.";
$a->strings["IRC Chatroom"] = "IRC Místnost"; $a->strings["IRC Chatroom"] = "IRC Místnost";
$a->strings["Popular Channels"] = "Oblíbené kanály"; $a->strings["Popular Channels"] = "Oblíbené kanály";
$a->strings["Fromapp settings updated."] = ""; $a->strings["Fromapp settings updated."] = "Fromapp nastavení aktualizováno.";
$a->strings["FromApp Settings"] = ""; $a->strings["FromApp Settings"] = "FromApp nastavení";
$a->strings["The application name you would like to show your posts originating from."] = ""; $a->strings["The application name you would like to show your posts originating from."] = "Jméno aplikace, které chcete aby bylo jako zdroj u vašich příspěvků";
$a->strings["Use this application name even if another application was used."] = ""; $a->strings["Use this application name even if another application was used."] = "Použij toto jméno aplikace i když byla použita jiná aplikace";
$a->strings["Post to blogger"] = "Poslat na blogger"; $a->strings["Post to blogger"] = "Poslat na blogger";
$a->strings["Blogger Post Settings"] = "Nastavení příspěvků na Blogger "; $a->strings["Blogger Post Settings"] = "Nastavení příspěvků na Blogger ";
$a->strings["Enable Blogger Post Plugin"] = "Povolit Blogger Post Plugin"; $a->strings["Enable Blogger Post Plugin"] = "Povolit Blogger Post Plugin";
@ -1963,10 +1964,11 @@ $a->strings["Send PM"] = "Poslat soukromou zprávu";
$a->strings["%1\$s poked %2\$s"] = "%1\$s šťouchnul %2\$s"; $a->strings["%1\$s poked %2\$s"] = "%1\$s šťouchnul %2\$s";
$a->strings["post/item"] = "příspěvek/položka"; $a->strings["post/item"] = "příspěvek/položka";
$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "uživatel %1\$s označil %2\$s's %3\$s jako oblíbeného"; $a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "uživatel %1\$s označil %2\$s's %3\$s jako oblíbeného";
$a->strings["Categories:"] = ""; $a->strings["Categories:"] = "Kategorie:";
$a->strings["Filed under:"] = ""; $a->strings["Filed under:"] = "Vyplněn pod:";
$a->strings["remove"] = "odstranit"; $a->strings["remove"] = "odstranit";
$a->strings["Delete Selected Items"] = "Smazat vybrané položky"; $a->strings["Delete Selected Items"] = "Smazat vybrané položky";
$a->strings["Follow Thread"] = "Následovat vlákno";
$a->strings["%s likes this."] = "%s se to líbí."; $a->strings["%s likes this."] = "%s se to líbí.";
$a->strings["%s doesn't like this."] = "%s se to nelíbí."; $a->strings["%s doesn't like this."] = "%s se to nelíbí.";
$a->strings["<span %1\$s>%2\$d people</span> like this."] = "<span %1\$s>%2\$d lidem</span> se to líbí."; $a->strings["<span %1\$s>%2\$d people</span> like this."] = "<span %1\$s>%2\$d lidem</span> se to líbí.";

View file

@ -22,8 +22,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: friendica\n" "Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
"POT-Creation-Date: 2012-09-27 10:00-0700\n" "POT-Creation-Date: 2012-09-29 10:00-0700\n"
"PO-Revision-Date: 2012-09-30 06:05+0000\n" "PO-Revision-Date: 2012-10-03 05:50+0000\n"
"Last-Translator: bavatar <tobias.diekershoff@gmx.net>\n" "Last-Translator: bavatar <tobias.diekershoff@gmx.net>\n"
"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n" "Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -142,9 +142,9 @@ msgstr "Neues Foto von dieser URL"
#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107 #: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
#: ../../mod/events.php:455 ../../mod/photos.php:1005 #: ../../mod/events.php:455 ../../mod/photos.php:1005
#: ../../mod/photos.php:1081 ../../mod/photos.php:1338 #: ../../mod/photos.php:1081 ../../mod/photos.php:1344
#: ../../mod/photos.php:1378 ../../mod/photos.php:1419 #: ../../mod/photos.php:1384 ../../mod/photos.php:1427
#: ../../mod/photos.php:1451 ../../mod/install.php:246 #: ../../mod/photos.php:1459 ../../mod/install.php:246
#: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199 #: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199
#: ../../mod/content.php:693 ../../mod/contacts.php:348 #: ../../mod/content.php:693 ../../mod/contacts.php:348
#: ../../mod/settings.php:543 ../../mod/settings.php:697 #: ../../mod/settings.php:543 ../../mod/settings.php:697
@ -191,7 +191,7 @@ msgstr "Neues Foto von dieser URL"
#: ../../view/theme/diabook/theme.php:757 #: ../../view/theme/diabook/theme.php:757
#: ../../view/theme/diabook/config.php:190 #: ../../view/theme/diabook/config.php:190
#: ../../view/theme/quattro/config.php:53 ../../view/theme/dispy/config.php:70 #: ../../view/theme/quattro/config.php:53 ../../view/theme/dispy/config.php:70
#: ../../object/Item.php:560 #: ../../object/Item.php:558
msgid "Submit" msgid "Submit"
msgstr "Senden" msgstr "Senden"
@ -322,7 +322,7 @@ msgstr "Veranstaltung teilen"
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:136 #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:136
#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544 #: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544
#: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45 #: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45
#: ../../include/conversation.php:935 #: ../../include/conversation.php:948
msgid "Cancel" msgid "Cancel"
msgstr "Abbrechen" msgstr "Abbrechen"
@ -396,13 +396,13 @@ msgstr "Fotoalben"
#: ../../mod/photos.php:54 ../../mod/photos.php:149 ../../mod/photos.php:986 #: ../../mod/photos.php:54 ../../mod/photos.php:149 ../../mod/photos.php:986
#: ../../mod/photos.php:1073 ../../mod/photos.php:1088 #: ../../mod/photos.php:1073 ../../mod/photos.php:1088
#: ../../mod/photos.php:1530 ../../mod/photos.php:1542 #: ../../mod/photos.php:1538 ../../mod/photos.php:1550
#: ../../addon/communityhome/communityhome.php:110 #: ../../addon/communityhome/communityhome.php:110
#: ../../view/theme/diabook/theme.php:598 #: ../../view/theme/diabook/theme.php:598
msgid "Contact Photos" msgid "Contact Photos"
msgstr "Kontaktbilder" msgstr "Kontaktbilder"
#: ../../mod/photos.php:61 ../../mod/photos.php:1104 ../../mod/photos.php:1580 #: ../../mod/photos.php:61 ../../mod/photos.php:1104 ../../mod/photos.php:1588
msgid "Upload New Photos" msgid "Upload New Photos"
msgstr "Weitere Fotos hochladen" msgstr "Weitere Fotos hochladen"
@ -433,7 +433,7 @@ msgstr "Album nicht gefunden."
msgid "Delete Album" msgid "Delete Album"
msgstr "Album löschen" msgstr "Album löschen"
#: ../../mod/photos.php:240 ../../mod/photos.php:1339 #: ../../mod/photos.php:240 ../../mod/photos.php:1345
msgid "Delete Photo" msgid "Delete Photo"
msgstr "Foto löschen" msgstr "Foto löschen"
@ -441,8 +441,8 @@ msgstr "Foto löschen"
msgid "was tagged in a" msgid "was tagged in a"
msgstr "wurde getaggt in einem" msgstr "wurde getaggt in einem"
#: ../../mod/photos.php:584 ../../mod/like.php:145 ../../mod/tagger.php:62 #: ../../mod/photos.php:584 ../../mod/like.php:145 ../../mod/subthread.php:87
#: ../../addon/communityhome/communityhome.php:163 #: ../../mod/tagger.php:62 ../../addon/communityhome/communityhome.php:163
#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1439 #: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1439
#: ../../include/diaspora.php:1824 ../../include/conversation.php:125 #: ../../include/diaspora.php:1824 ../../include/conversation.php:125
#: ../../include/conversation.php:253 #: ../../include/conversation.php:253
@ -511,7 +511,7 @@ msgstr "oder existierender Albumname: "
msgid "Do not show a status post for this upload" msgid "Do not show a status post for this upload"
msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
#: ../../mod/photos.php:1032 ../../mod/photos.php:1334 #: ../../mod/photos.php:1032 ../../mod/photos.php:1340
msgid "Permissions" msgid "Permissions"
msgstr "Berechtigungen" msgstr "Berechtigungen"
@ -527,7 +527,7 @@ msgstr "Zeige neueste zuerst"
msgid "Show Oldest First" msgid "Show Oldest First"
msgstr "Zeige älteste zuerst" msgstr "Zeige älteste zuerst"
#: ../../mod/photos.php:1124 ../../mod/photos.php:1563 #: ../../mod/photos.php:1124 ../../mod/photos.php:1571
msgid "View Photo" msgid "View Photo"
msgstr "Fotos betrachten" msgstr "Fotos betrachten"
@ -560,91 +560,91 @@ msgstr "Private Nachricht"
msgid "View Full Size" msgid "View Full Size"
msgstr "Betrachte Originalgröße" msgstr "Betrachte Originalgröße"
#: ../../mod/photos.php:1311 #: ../../mod/photos.php:1317
msgid "Tags: " msgid "Tags: "
msgstr "Tags: " msgstr "Tags: "
#: ../../mod/photos.php:1314 #: ../../mod/photos.php:1320
msgid "[Remove any tag]" msgid "[Remove any tag]"
msgstr "[Tag entfernen]" msgstr "[Tag entfernen]"
#: ../../mod/photos.php:1324 #: ../../mod/photos.php:1330
msgid "Rotate CW (right)" msgid "Rotate CW (right)"
msgstr "Drehen US (rechts)" msgstr "Drehen US (rechts)"
#: ../../mod/photos.php:1325 #: ../../mod/photos.php:1331
msgid "Rotate CCW (left)" msgid "Rotate CCW (left)"
msgstr "Drehen EUS (links)" msgstr "Drehen EUS (links)"
#: ../../mod/photos.php:1327 #: ../../mod/photos.php:1333
msgid "New album name" msgid "New album name"
msgstr "Name des neuen Albums" msgstr "Name des neuen Albums"
#: ../../mod/photos.php:1330 #: ../../mod/photos.php:1336
msgid "Caption" msgid "Caption"
msgstr "Bildunterschrift" msgstr "Bildunterschrift"
#: ../../mod/photos.php:1332 #: ../../mod/photos.php:1338
msgid "Add a Tag" msgid "Add a Tag"
msgstr "Tag hinzufügen" msgstr "Tag hinzufügen"
#: ../../mod/photos.php:1336 #: ../../mod/photos.php:1342
msgid "" msgid ""
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
#: ../../mod/photos.php:1356 ../../mod/content.php:667 #: ../../mod/photos.php:1362 ../../mod/content.php:667
#: ../../object/Item.php:196 #: ../../object/Item.php:196
msgid "I like this (toggle)" msgid "I like this (toggle)"
msgstr "Ich mag das (toggle)" msgstr "Ich mag das (toggle)"
#: ../../mod/photos.php:1357 ../../mod/content.php:668 #: ../../mod/photos.php:1363 ../../mod/content.php:668
#: ../../object/Item.php:197 #: ../../object/Item.php:197
msgid "I don't like this (toggle)" msgid "I don't like this (toggle)"
msgstr "Ich mag das nicht (toggle)" msgstr "Ich mag das nicht (toggle)"
#: ../../mod/photos.php:1358 ../../include/conversation.php:896 #: ../../mod/photos.php:1364 ../../include/conversation.php:909
msgid "Share" msgid "Share"
msgstr "Teilen" msgstr "Teilen"
#: ../../mod/photos.php:1359 ../../mod/editpost.php:112 #: ../../mod/photos.php:1365 ../../mod/editpost.php:112
#: ../../mod/content.php:482 ../../mod/content.php:845 #: ../../mod/content.php:482 ../../mod/content.php:845
#: ../../mod/wallmessage.php:152 ../../mod/message.php:293 #: ../../mod/wallmessage.php:152 ../../mod/message.php:293
#: ../../mod/message.php:481 ../../include/conversation.php:570 #: ../../mod/message.php:481 ../../include/conversation.php:573
#: ../../include/conversation.php:915 ../../object/Item.php:258 #: ../../include/conversation.php:928 ../../object/Item.php:258
msgid "Please wait" msgid "Please wait"
msgstr "Bitte warten" msgstr "Bitte warten"
#: ../../mod/photos.php:1375 ../../mod/photos.php:1416 #: ../../mod/photos.php:1381 ../../mod/photos.php:1424
#: ../../mod/photos.php:1448 ../../mod/content.php:690 #: ../../mod/photos.php:1456 ../../mod/content.php:690
#: ../../object/Item.php:557 #: ../../object/Item.php:555
msgid "This is you" msgid "This is you"
msgstr "Das bist du" msgstr "Das bist du"
#: ../../mod/photos.php:1377 ../../mod/photos.php:1418 #: ../../mod/photos.php:1383 ../../mod/photos.php:1426
#: ../../mod/photos.php:1450 ../../mod/content.php:692 ../../boot.php:574 #: ../../mod/photos.php:1458 ../../mod/content.php:692 ../../boot.php:574
#: ../../object/Item.php:559 #: ../../object/Item.php:557
msgid "Comment" msgid "Comment"
msgstr "Kommentar" msgstr "Kommentar"
#: ../../mod/photos.php:1379 ../../mod/editpost.php:133 #: ../../mod/photos.php:1385 ../../mod/editpost.php:133
#: ../../mod/content.php:702 ../../include/conversation.php:933 #: ../../mod/content.php:702 ../../include/conversation.php:946
#: ../../object/Item.php:569 #: ../../object/Item.php:567
msgid "Preview" msgid "Preview"
msgstr "Vorschau" msgstr "Vorschau"
#: ../../mod/photos.php:1479 ../../mod/content.php:439 #: ../../mod/photos.php:1487 ../../mod/content.php:439
#: ../../mod/content.php:723 ../../mod/settings.php:606 #: ../../mod/content.php:723 ../../mod/settings.php:606
#: ../../mod/settings.php:695 ../../mod/group.php:168 ../../mod/admin.php:696 #: ../../mod/settings.php:695 ../../mod/group.php:168 ../../mod/admin.php:696
#: ../../include/conversation.php:515 ../../object/Item.php:117 #: ../../include/conversation.php:518 ../../object/Item.php:117
msgid "Delete" msgid "Delete"
msgstr "Löschen" msgstr "Löschen"
#: ../../mod/photos.php:1569 #: ../../mod/photos.php:1577
msgid "View Album" msgid "View Album"
msgstr "Album betrachten" msgstr "Album betrachten"
#: ../../mod/photos.php:1578 #: ../../mod/photos.php:1586
msgid "Recent Photos" msgid "Recent Photos"
msgstr "Neueste Fotos" msgstr "Neueste Fotos"
@ -702,7 +702,7 @@ msgstr "Beitrag nicht gefunden"
msgid "Edit post" msgid "Edit post"
msgstr "Beitrag bearbeiten" msgstr "Beitrag bearbeiten"
#: ../../mod/editpost.php:88 ../../include/conversation.php:882 #: ../../mod/editpost.php:88 ../../include/conversation.php:895
msgid "Post to Email" msgid "Post to Email"
msgstr "An E-Mail senden" msgstr "An E-Mail senden"
@ -713,17 +713,17 @@ msgstr "Bearbeiten"
#: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150 #: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150
#: ../../mod/message.php:291 ../../mod/message.php:478 #: ../../mod/message.php:291 ../../mod/message.php:478
#: ../../include/conversation.php:897 #: ../../include/conversation.php:910
msgid "Upload photo" msgid "Upload photo"
msgstr "Foto hochladen" msgstr "Foto hochladen"
#: ../../mod/editpost.php:105 ../../include/conversation.php:899 #: ../../mod/editpost.php:105 ../../include/conversation.php:912
msgid "Attach file" msgid "Attach file"
msgstr "Datei anhängen" msgstr "Datei anhängen"
#: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151 #: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151
#: ../../mod/message.php:292 ../../mod/message.php:479 #: ../../mod/message.php:292 ../../mod/message.php:479
#: ../../include/conversation.php:901 #: ../../include/conversation.php:914
msgid "Insert web link" msgid "Insert web link"
msgstr "einen Link einfügen" msgstr "einen Link einfügen"
@ -739,35 +739,35 @@ msgstr "Vorbis [.ogg] Video einfügen"
msgid "Insert Vorbis [.ogg] audio" msgid "Insert Vorbis [.ogg] audio"
msgstr "Vorbis [.ogg] Audio einfügen" msgstr "Vorbis [.ogg] Audio einfügen"
#: ../../mod/editpost.php:110 ../../include/conversation.php:907 #: ../../mod/editpost.php:110 ../../include/conversation.php:920
msgid "Set your location" msgid "Set your location"
msgstr "Deinen Standort festlegen" msgstr "Deinen Standort festlegen"
#: ../../mod/editpost.php:111 ../../include/conversation.php:909 #: ../../mod/editpost.php:111 ../../include/conversation.php:922
msgid "Clear browser location" msgid "Clear browser location"
msgstr "Browser-Standort leeren" msgstr "Browser-Standort leeren"
#: ../../mod/editpost.php:113 ../../include/conversation.php:916 #: ../../mod/editpost.php:113 ../../include/conversation.php:929
msgid "Permission settings" msgid "Permission settings"
msgstr "Berechtigungseinstellungen" msgstr "Berechtigungseinstellungen"
#: ../../mod/editpost.php:121 ../../include/conversation.php:925 #: ../../mod/editpost.php:121 ../../include/conversation.php:938
msgid "CC: email addresses" msgid "CC: email addresses"
msgstr "Cc:-E-Mail-Addressen" msgstr "Cc:-E-Mail-Addressen"
#: ../../mod/editpost.php:122 ../../include/conversation.php:926 #: ../../mod/editpost.php:122 ../../include/conversation.php:939
msgid "Public post" msgid "Public post"
msgstr "Öffentlicher Beitrag" msgstr "Öffentlicher Beitrag"
#: ../../mod/editpost.php:125 ../../include/conversation.php:912 #: ../../mod/editpost.php:125 ../../include/conversation.php:925
msgid "Set title" msgid "Set title"
msgstr "Titel setzen" msgstr "Titel setzen"
#: ../../mod/editpost.php:127 ../../include/conversation.php:914 #: ../../mod/editpost.php:127 ../../include/conversation.php:927
msgid "Categories (comma-separated list)" msgid "Categories (comma-separated list)"
msgstr "Kategorien (kommasepariert)" msgstr "Kategorien (kommasepariert)"
#: ../../mod/editpost.php:128 ../../include/conversation.php:928 #: ../../mod/editpost.php:128 ../../include/conversation.php:941
msgid "Example: bob@example.com, mary@example.com" msgid "Example: bob@example.com, mary@example.com"
msgstr "Z.B.: bob@example.com, mary@example.com" msgstr "Z.B.: bob@example.com, mary@example.com"
@ -1310,24 +1310,24 @@ msgid "Group: "
msgstr "Gruppe: " msgstr "Gruppe: "
#: ../../mod/content.php:438 ../../mod/content.php:722 #: ../../mod/content.php:438 ../../mod/content.php:722
#: ../../include/conversation.php:514 ../../object/Item.php:116 #: ../../include/conversation.php:517 ../../object/Item.php:116
msgid "Select" msgid "Select"
msgstr "Auswählen" msgstr "Auswählen"
#: ../../mod/content.php:455 ../../mod/content.php:815 #: ../../mod/content.php:455 ../../mod/content.php:815
#: ../../mod/content.php:816 ../../include/conversation.php:533 #: ../../mod/content.php:816 ../../include/conversation.php:536
#: ../../object/Item.php:227 ../../object/Item.php:228 #: ../../object/Item.php:227 ../../object/Item.php:228
#, php-format #, php-format
msgid "View %s's profile @ %s" msgid "View %s's profile @ %s"
msgstr "Das Profil von %s auf %s betrachten." msgstr "Das Profil von %s auf %s betrachten."
#: ../../mod/content.php:465 ../../mod/content.php:827 #: ../../mod/content.php:465 ../../mod/content.php:827
#: ../../include/conversation.php:553 ../../object/Item.php:240 #: ../../include/conversation.php:556 ../../object/Item.php:240
#, php-format #, php-format
msgid "%s from %s" msgid "%s from %s"
msgstr "%s von %s" msgstr "%s von %s"
#: ../../mod/content.php:480 ../../include/conversation.php:568 #: ../../mod/content.php:480 ../../include/conversation.php:571
msgid "View in context" msgid "View in context"
msgstr "Im Zusammenhang betrachten" msgstr "Im Zusammenhang betrachten"
@ -1368,35 +1368,35 @@ msgstr "Weitersagen"
msgid "share" msgid "share"
msgstr "Teilen" msgstr "Teilen"
#: ../../mod/content.php:694 ../../object/Item.php:561 #: ../../mod/content.php:694 ../../object/Item.php:559
msgid "Bold" msgid "Bold"
msgstr "Fett" msgstr "Fett"
#: ../../mod/content.php:695 ../../object/Item.php:562 #: ../../mod/content.php:695 ../../object/Item.php:560
msgid "Italic" msgid "Italic"
msgstr "Kursiv" msgstr "Kursiv"
#: ../../mod/content.php:696 ../../object/Item.php:563 #: ../../mod/content.php:696 ../../object/Item.php:561
msgid "Underline" msgid "Underline"
msgstr "Unterstrichen" msgstr "Unterstrichen"
#: ../../mod/content.php:697 ../../object/Item.php:564 #: ../../mod/content.php:697 ../../object/Item.php:562
msgid "Quote" msgid "Quote"
msgstr "Zitat" msgstr "Zitat"
#: ../../mod/content.php:698 ../../object/Item.php:565 #: ../../mod/content.php:698 ../../object/Item.php:563
msgid "Code" msgid "Code"
msgstr "Code" msgstr "Code"
#: ../../mod/content.php:699 ../../object/Item.php:566 #: ../../mod/content.php:699 ../../object/Item.php:564
msgid "Image" msgid "Image"
msgstr "Bild" msgstr "Bild"
#: ../../mod/content.php:700 ../../object/Item.php:567 #: ../../mod/content.php:700 ../../object/Item.php:565
msgid "Link" msgid "Link"
msgstr "Verweis" msgstr "Verweis"
#: ../../mod/content.php:701 ../../object/Item.php:568 #: ../../mod/content.php:701 ../../object/Item.php:566
msgid "Video" msgid "Video"
msgstr "Video" msgstr "Video"
@ -2683,7 +2683,7 @@ msgstr "Kein Empfänger."
#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131 #: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131
#: ../../mod/message.php:242 ../../mod/message.php:250 #: ../../mod/message.php:242 ../../mod/message.php:250
#: ../../include/conversation.php:833 ../../include/conversation.php:850 #: ../../include/conversation.php:846 ../../include/conversation.php:863
msgid "Please enter a link URL:" msgid "Please enter a link URL:"
msgstr "Bitte gib die URL des Links ein:" msgstr "Bitte gib die URL des Links ein:"
@ -3083,8 +3083,8 @@ msgstr "Registrieren"
msgid "People Search" msgid "People Search"
msgstr "Personensuche" msgstr "Personensuche"
#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/tagger.php:62 #: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/subthread.php:87
#: ../../addon/facebook/facebook.php:1598 #: ../../mod/tagger.php:62 ../../addon/facebook/facebook.php:1598
#: ../../addon/communityhome/communityhome.php:158 #: ../../addon/communityhome/communityhome.php:158
#: ../../addon/communityhome/communityhome.php:167 #: ../../addon/communityhome/communityhome.php:167
#: ../../view/theme/diabook/theme.php:565 #: ../../view/theme/diabook/theme.php:565
@ -4081,6 +4081,11 @@ msgstr "Gemeinsame Freunde"
msgid "No contacts in common." msgid "No contacts in common."
msgstr "Keine gemeinsamen Kontakte." msgstr "Keine gemeinsamen Kontakte."
#: ../../mod/subthread.php:103
#, php-format
msgid "%1$s is following %2$s's %3$s"
msgstr "%1$s folgt %2$s %3$s"
#: ../../mod/share.php:28 #: ../../mod/share.php:28
msgid "link" msgid "link"
msgstr "Link" msgstr "Link"
@ -4409,8 +4414,8 @@ msgstr "sichtbar für jeden"
msgid "Edit visibility" msgid "Edit visibility"
msgstr "Sichtbarkeit bearbeiten" msgstr "Sichtbarkeit bearbeiten"
#: ../../mod/filer.php:29 ../../include/conversation.php:837 #: ../../mod/filer.php:29 ../../include/conversation.php:850
#: ../../include/conversation.php:854 #: ../../include/conversation.php:867
msgid "Save to Folder:" msgid "Save to Folder:"
msgstr "In diesen Ordner verschieben:" msgstr "In diesen Ordner verschieben:"
@ -8508,34 +8513,34 @@ msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das
msgid "stopped following" msgid "stopped following"
msgstr "wird nicht mehr gefolgt" msgstr "wird nicht mehr gefolgt"
#: ../../include/Contact.php:220 ../../include/conversation.php:734 #: ../../include/Contact.php:220 ../../include/conversation.php:743
msgid "Poke" msgid "Poke"
msgstr "Anstupsen" msgstr "Anstupsen"
#: ../../include/Contact.php:221 ../../include/conversation.php:728 #: ../../include/Contact.php:221 ../../include/conversation.php:737
msgid "View Status" msgid "View Status"
msgstr "Pinnwand anschauen" msgstr "Pinnwand anschauen"
#: ../../include/Contact.php:222 ../../include/conversation.php:729 #: ../../include/Contact.php:222 ../../include/conversation.php:738
msgid "View Profile" msgid "View Profile"
msgstr "Profil anschauen" msgstr "Profil anschauen"
#: ../../include/Contact.php:223 ../../include/conversation.php:730 #: ../../include/Contact.php:223 ../../include/conversation.php:739
msgid "View Photos" msgid "View Photos"
msgstr "Bilder anschauen" msgstr "Bilder anschauen"
#: ../../include/Contact.php:224 ../../include/Contact.php:237 #: ../../include/Contact.php:224 ../../include/Contact.php:237
#: ../../include/conversation.php:731 #: ../../include/conversation.php:740
msgid "Network Posts" msgid "Network Posts"
msgstr "Netzwerkbeiträge" msgstr "Netzwerkbeiträge"
#: ../../include/Contact.php:225 ../../include/Contact.php:237 #: ../../include/Contact.php:225 ../../include/Contact.php:237
#: ../../include/conversation.php:732 #: ../../include/conversation.php:741
msgid "Edit Contact" msgid "Edit Contact"
msgstr "Kontakt bearbeiten" msgstr "Kontakt bearbeiten"
#: ../../include/Contact.php:226 ../../include/Contact.php:237 #: ../../include/Contact.php:226 ../../include/Contact.php:237
#: ../../include/conversation.php:733 #: ../../include/conversation.php:742
msgid "Send PM" msgid "Send PM"
msgstr "Private Nachricht senden" msgstr "Private Nachricht senden"
@ -8553,118 +8558,122 @@ msgstr "Nachricht/Beitrag"
msgid "%1$s marked %2$s's %3$s as favorite" msgid "%1$s marked %2$s's %3$s as favorite"
msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert" msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
#: ../../include/conversation.php:545 ../../object/Item.php:218 #: ../../include/conversation.php:548 ../../object/Item.php:218
msgid "Categories:" msgid "Categories:"
msgstr "Kategorien" msgstr "Kategorien"
#: ../../include/conversation.php:546 ../../object/Item.php:219 #: ../../include/conversation.php:549 ../../object/Item.php:219
msgid "Filed under:" msgid "Filed under:"
msgstr "Abgelegt unter:" msgstr "Abgelegt unter:"
#: ../../include/conversation.php:630 #: ../../include/conversation.php:633
msgid "remove" msgid "remove"
msgstr "löschen" msgstr "löschen"
#: ../../include/conversation.php:634 #: ../../include/conversation.php:637
msgid "Delete Selected Items" msgid "Delete Selected Items"
msgstr "Lösche die markierten Beiträge" msgstr "Lösche die markierten Beiträge"
#: ../../include/conversation.php:792 #: ../../include/conversation.php:736
msgid "Follow Thread"
msgstr "Folge der Unterhaltung"
#: ../../include/conversation.php:805
#, php-format #, php-format
msgid "%s likes this." msgid "%s likes this."
msgstr "%s mag das." msgstr "%s mag das."
#: ../../include/conversation.php:792 #: ../../include/conversation.php:805
#, php-format #, php-format
msgid "%s doesn't like this." msgid "%s doesn't like this."
msgstr "%s mag das nicht." msgstr "%s mag das nicht."
#: ../../include/conversation.php:796 #: ../../include/conversation.php:809
#, php-format #, php-format
msgid "<span %1$s>%2$d people</span> like this." msgid "<span %1$s>%2$d people</span> like this."
msgstr "<span %1$s>%2$d Leute</span> mögen das." msgstr "<span %1$s>%2$d Leute</span> mögen das."
#: ../../include/conversation.php:798 #: ../../include/conversation.php:811
#, php-format #, php-format
msgid "<span %1$s>%2$d people</span> don't like this." msgid "<span %1$s>%2$d people</span> don't like this."
msgstr "<span %1$s>%2$d Leute</span> mögen das nicht." msgstr "<span %1$s>%2$d Leute</span> mögen das nicht."
#: ../../include/conversation.php:804 #: ../../include/conversation.php:817
msgid "and" msgid "and"
msgstr "und" msgstr "und"
#: ../../include/conversation.php:807 #: ../../include/conversation.php:820
#, php-format #, php-format
msgid ", and %d other people" msgid ", and %d other people"
msgstr " und %d andere" msgstr " und %d andere"
#: ../../include/conversation.php:808 #: ../../include/conversation.php:821
#, php-format #, php-format
msgid "%s like this." msgid "%s like this."
msgstr "%s mögen das." msgstr "%s mögen das."
#: ../../include/conversation.php:808 #: ../../include/conversation.php:821
#, php-format #, php-format
msgid "%s don't like this." msgid "%s don't like this."
msgstr "%s mögen das nicht." msgstr "%s mögen das nicht."
#: ../../include/conversation.php:832 ../../include/conversation.php:849 #: ../../include/conversation.php:845 ../../include/conversation.php:862
msgid "Visible to <strong>everybody</strong>" msgid "Visible to <strong>everybody</strong>"
msgstr "Für <strong>jedermann</strong> sichtbar" msgstr "Für <strong>jedermann</strong> sichtbar"
#: ../../include/conversation.php:834 ../../include/conversation.php:851 #: ../../include/conversation.php:847 ../../include/conversation.php:864
msgid "Please enter a video link/URL:" msgid "Please enter a video link/URL:"
msgstr "Bitte Link/URL zum Video einfügen:" msgstr "Bitte Link/URL zum Video einfügen:"
#: ../../include/conversation.php:835 ../../include/conversation.php:852 #: ../../include/conversation.php:848 ../../include/conversation.php:865
msgid "Please enter an audio link/URL:" msgid "Please enter an audio link/URL:"
msgstr "Bitte Link/URL zum Audio einfügen:" msgstr "Bitte Link/URL zum Audio einfügen:"
#: ../../include/conversation.php:836 ../../include/conversation.php:853 #: ../../include/conversation.php:849 ../../include/conversation.php:866
msgid "Tag term:" msgid "Tag term:"
msgstr "Tag:" msgstr "Tag:"
#: ../../include/conversation.php:838 ../../include/conversation.php:855 #: ../../include/conversation.php:851 ../../include/conversation.php:868
msgid "Where are you right now?" msgid "Where are you right now?"
msgstr "Wo hältst du dich jetzt gerade auf?" msgstr "Wo hältst du dich jetzt gerade auf?"
#: ../../include/conversation.php:898 #: ../../include/conversation.php:911
msgid "upload photo" msgid "upload photo"
msgstr "Bild hochladen" msgstr "Bild hochladen"
#: ../../include/conversation.php:900 #: ../../include/conversation.php:913
msgid "attach file" msgid "attach file"
msgstr "Datei anhängen" msgstr "Datei anhängen"
#: ../../include/conversation.php:902 #: ../../include/conversation.php:915
msgid "web link" msgid "web link"
msgstr "Weblink" msgstr "Weblink"
#: ../../include/conversation.php:903 #: ../../include/conversation.php:916
msgid "Insert video link" msgid "Insert video link"
msgstr "Video-Adresse einfügen" msgstr "Video-Adresse einfügen"
#: ../../include/conversation.php:904 #: ../../include/conversation.php:917
msgid "video link" msgid "video link"
msgstr "Video-Link" msgstr "Video-Link"
#: ../../include/conversation.php:905 #: ../../include/conversation.php:918
msgid "Insert audio link" msgid "Insert audio link"
msgstr "Audio-Adresse einfügen" msgstr "Audio-Adresse einfügen"
#: ../../include/conversation.php:906 #: ../../include/conversation.php:919
msgid "audio link" msgid "audio link"
msgstr "Audio-Link" msgstr "Audio-Link"
#: ../../include/conversation.php:908 #: ../../include/conversation.php:921
msgid "set location" msgid "set location"
msgstr "Ort setzen" msgstr "Ort setzen"
#: ../../include/conversation.php:910 #: ../../include/conversation.php:923
msgid "clear location" msgid "clear location"
msgstr "Ort löschen" msgstr "Ort löschen"
#: ../../include/conversation.php:917 #: ../../include/conversation.php:930
msgid "permissions" msgid "permissions"
msgstr "Zugriffsrechte" msgstr "Zugriffsrechte"

View file

@ -913,6 +913,7 @@ $a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
$a->strings["Contact added"] = "Kontakt hinzugefügt"; $a->strings["Contact added"] = "Kontakt hinzugefügt";
$a->strings["Common Friends"] = "Gemeinsame Freunde"; $a->strings["Common Friends"] = "Gemeinsame Freunde";
$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte."; $a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
$a->strings["link"] = "Link"; $a->strings["link"] = "Link";
$a->strings["Item has been removed."] = "Eintrag wurde entfernt."; $a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
$a->strings["Applications"] = "Anwendungen"; $a->strings["Applications"] = "Anwendungen";
@ -1954,6 +1955,7 @@ $a->strings["Categories:"] = "Kategorien";
$a->strings["Filed under:"] = "Abgelegt unter:"; $a->strings["Filed under:"] = "Abgelegt unter:";
$a->strings["remove"] = "löschen"; $a->strings["remove"] = "löschen";
$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge"; $a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge";
$a->strings["Follow Thread"] = "Folge der Unterhaltung";
$a->strings["%s likes this."] = "%s mag das."; $a->strings["%s likes this."] = "%s mag das.";
$a->strings["%s doesn't like this."] = "%s mag das nicht."; $a->strings["%s doesn't like this."] = "%s mag das nicht.";
$a->strings["<span %1\$s>%2\$d people</span> like this."] = "<span %1\$s>%2\$d Leute</span> mögen das."; $a->strings["<span %1\$s>%2\$d people</span> like this."] = "<span %1\$s>%2\$d Leute</span> mögen das.";

View file

@ -9,8 +9,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: friendica\n" "Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
"POT-Creation-Date: 2012-09-27 10:00-0700\n" "POT-Creation-Date: 2012-09-29 10:00-0700\n"
"PO-Revision-Date: 2012-09-28 14:23+0000\n" "PO-Revision-Date: 2012-10-01 11:39+0000\n"
"Last-Translator: Olivier <olivier+transifex@migeot.org>\n" "Last-Translator: Olivier <olivier+transifex@migeot.org>\n"
"Language-Team: French (http://www.transifex.com/projects/p/friendica/language/fr/)\n" "Language-Team: French (http://www.transifex.com/projects/p/friendica/language/fr/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -129,9 +129,9 @@ msgstr "Nouvelle photo depuis cette URL"
#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107 #: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
#: ../../mod/events.php:455 ../../mod/photos.php:1005 #: ../../mod/events.php:455 ../../mod/photos.php:1005
#: ../../mod/photos.php:1081 ../../mod/photos.php:1338 #: ../../mod/photos.php:1081 ../../mod/photos.php:1344
#: ../../mod/photos.php:1378 ../../mod/photos.php:1419 #: ../../mod/photos.php:1384 ../../mod/photos.php:1427
#: ../../mod/photos.php:1451 ../../mod/install.php:246 #: ../../mod/photos.php:1459 ../../mod/install.php:246
#: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199 #: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199
#: ../../mod/content.php:693 ../../mod/contacts.php:348 #: ../../mod/content.php:693 ../../mod/contacts.php:348
#: ../../mod/settings.php:543 ../../mod/settings.php:697 #: ../../mod/settings.php:543 ../../mod/settings.php:697
@ -178,7 +178,7 @@ msgstr "Nouvelle photo depuis cette URL"
#: ../../view/theme/diabook/theme.php:757 #: ../../view/theme/diabook/theme.php:757
#: ../../view/theme/diabook/config.php:190 #: ../../view/theme/diabook/config.php:190
#: ../../view/theme/quattro/config.php:53 ../../view/theme/dispy/config.php:70 #: ../../view/theme/quattro/config.php:53 ../../view/theme/dispy/config.php:70
#: ../../object/Item.php:560 #: ../../object/Item.php:558
msgid "Submit" msgid "Submit"
msgstr "Envoyer" msgstr "Envoyer"
@ -309,7 +309,7 @@ msgstr "Partager cet événement"
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:136 #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:136
#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544 #: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544
#: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45 #: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45
#: ../../include/conversation.php:935 #: ../../include/conversation.php:948
msgid "Cancel" msgid "Cancel"
msgstr "Annuler" msgstr "Annuler"
@ -383,13 +383,13 @@ msgstr "Albums photo"
#: ../../mod/photos.php:54 ../../mod/photos.php:149 ../../mod/photos.php:986 #: ../../mod/photos.php:54 ../../mod/photos.php:149 ../../mod/photos.php:986
#: ../../mod/photos.php:1073 ../../mod/photos.php:1088 #: ../../mod/photos.php:1073 ../../mod/photos.php:1088
#: ../../mod/photos.php:1530 ../../mod/photos.php:1542 #: ../../mod/photos.php:1538 ../../mod/photos.php:1550
#: ../../addon/communityhome/communityhome.php:110 #: ../../addon/communityhome/communityhome.php:110
#: ../../view/theme/diabook/theme.php:598 #: ../../view/theme/diabook/theme.php:598
msgid "Contact Photos" msgid "Contact Photos"
msgstr "Photos du contact" msgstr "Photos du contact"
#: ../../mod/photos.php:61 ../../mod/photos.php:1104 ../../mod/photos.php:1580 #: ../../mod/photos.php:61 ../../mod/photos.php:1104 ../../mod/photos.php:1588
msgid "Upload New Photos" msgid "Upload New Photos"
msgstr "Téléverser de nouvelles photos" msgstr "Téléverser de nouvelles photos"
@ -420,7 +420,7 @@ msgstr "Album introuvable."
msgid "Delete Album" msgid "Delete Album"
msgstr "Effacer l'album" msgstr "Effacer l'album"
#: ../../mod/photos.php:240 ../../mod/photos.php:1339 #: ../../mod/photos.php:240 ../../mod/photos.php:1345
msgid "Delete Photo" msgid "Delete Photo"
msgstr "Effacer la photo" msgstr "Effacer la photo"
@ -428,8 +428,8 @@ msgstr "Effacer la photo"
msgid "was tagged in a" msgid "was tagged in a"
msgstr "a été identifié dans" msgstr "a été identifié dans"
#: ../../mod/photos.php:584 ../../mod/like.php:145 ../../mod/tagger.php:62 #: ../../mod/photos.php:584 ../../mod/like.php:145 ../../mod/subthread.php:87
#: ../../addon/communityhome/communityhome.php:163 #: ../../mod/tagger.php:62 ../../addon/communityhome/communityhome.php:163
#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1439 #: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1439
#: ../../include/diaspora.php:1824 ../../include/conversation.php:125 #: ../../include/diaspora.php:1824 ../../include/conversation.php:125
#: ../../include/conversation.php:253 #: ../../include/conversation.php:253
@ -498,7 +498,7 @@ msgstr "ou nom d'un album existant: "
msgid "Do not show a status post for this upload" msgid "Do not show a status post for this upload"
msgstr "Ne pas publier de notice pour cet envoi" msgstr "Ne pas publier de notice pour cet envoi"
#: ../../mod/photos.php:1032 ../../mod/photos.php:1334 #: ../../mod/photos.php:1032 ../../mod/photos.php:1340
msgid "Permissions" msgid "Permissions"
msgstr "Permissions" msgstr "Permissions"
@ -514,7 +514,7 @@ msgstr "Plus récent d'abord"
msgid "Show Oldest First" msgid "Show Oldest First"
msgstr "Plus ancien d'abord" msgstr "Plus ancien d'abord"
#: ../../mod/photos.php:1124 ../../mod/photos.php:1563 #: ../../mod/photos.php:1124 ../../mod/photos.php:1571
msgid "View Photo" msgid "View Photo"
msgstr "Voir la photo" msgstr "Voir la photo"
@ -547,91 +547,91 @@ msgstr "Message privé"
msgid "View Full Size" msgid "View Full Size"
msgstr "Voir en taille réelle" msgstr "Voir en taille réelle"
#: ../../mod/photos.php:1311 #: ../../mod/photos.php:1317
msgid "Tags: " msgid "Tags: "
msgstr "Étiquettes: " msgstr "Étiquettes: "
#: ../../mod/photos.php:1314 #: ../../mod/photos.php:1320
msgid "[Remove any tag]" msgid "[Remove any tag]"
msgstr "[Retirer toutes les étiquettes]" msgstr "[Retirer toutes les étiquettes]"
#: ../../mod/photos.php:1324 #: ../../mod/photos.php:1330
msgid "Rotate CW (right)" msgid "Rotate CW (right)"
msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)" msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)"
#: ../../mod/photos.php:1325 #: ../../mod/photos.php:1331
msgid "Rotate CCW (left)" msgid "Rotate CCW (left)"
msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)" msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)"
#: ../../mod/photos.php:1327 #: ../../mod/photos.php:1333
msgid "New album name" msgid "New album name"
msgstr "Nom du nouvel album" msgstr "Nom du nouvel album"
#: ../../mod/photos.php:1330 #: ../../mod/photos.php:1336
msgid "Caption" msgid "Caption"
msgstr "Titre" msgstr "Titre"
#: ../../mod/photos.php:1332 #: ../../mod/photos.php:1338
msgid "Add a Tag" msgid "Add a Tag"
msgstr "Ajouter une étiquette" msgstr "Ajouter une étiquette"
#: ../../mod/photos.php:1336 #: ../../mod/photos.php:1342
msgid "" msgid ""
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances" msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances"
#: ../../mod/photos.php:1356 ../../mod/content.php:667 #: ../../mod/photos.php:1362 ../../mod/content.php:667
#: ../../object/Item.php:196 #: ../../object/Item.php:196
msgid "I like this (toggle)" msgid "I like this (toggle)"
msgstr "J'aime (bascule)" msgstr "J'aime (bascule)"
#: ../../mod/photos.php:1357 ../../mod/content.php:668 #: ../../mod/photos.php:1363 ../../mod/content.php:668
#: ../../object/Item.php:197 #: ../../object/Item.php:197
msgid "I don't like this (toggle)" msgid "I don't like this (toggle)"
msgstr "Je n'aime pas (bascule)" msgstr "Je n'aime pas (bascule)"
#: ../../mod/photos.php:1358 ../../include/conversation.php:896 #: ../../mod/photos.php:1364 ../../include/conversation.php:909
msgid "Share" msgid "Share"
msgstr "Partager" msgstr "Partager"
#: ../../mod/photos.php:1359 ../../mod/editpost.php:112 #: ../../mod/photos.php:1365 ../../mod/editpost.php:112
#: ../../mod/content.php:482 ../../mod/content.php:845 #: ../../mod/content.php:482 ../../mod/content.php:845
#: ../../mod/wallmessage.php:152 ../../mod/message.php:293 #: ../../mod/wallmessage.php:152 ../../mod/message.php:293
#: ../../mod/message.php:481 ../../include/conversation.php:570 #: ../../mod/message.php:481 ../../include/conversation.php:573
#: ../../include/conversation.php:915 ../../object/Item.php:258 #: ../../include/conversation.php:928 ../../object/Item.php:258
msgid "Please wait" msgid "Please wait"
msgstr "Patientez" msgstr "Patientez"
#: ../../mod/photos.php:1375 ../../mod/photos.php:1416 #: ../../mod/photos.php:1381 ../../mod/photos.php:1424
#: ../../mod/photos.php:1448 ../../mod/content.php:690 #: ../../mod/photos.php:1456 ../../mod/content.php:690
#: ../../object/Item.php:557 #: ../../object/Item.php:555
msgid "This is you" msgid "This is you"
msgstr "C'est vous" msgstr "C'est vous"
#: ../../mod/photos.php:1377 ../../mod/photos.php:1418 #: ../../mod/photos.php:1383 ../../mod/photos.php:1426
#: ../../mod/photos.php:1450 ../../mod/content.php:692 ../../boot.php:574 #: ../../mod/photos.php:1458 ../../mod/content.php:692 ../../boot.php:574
#: ../../object/Item.php:559 #: ../../object/Item.php:557
msgid "Comment" msgid "Comment"
msgstr "Commenter" msgstr "Commenter"
#: ../../mod/photos.php:1379 ../../mod/editpost.php:133 #: ../../mod/photos.php:1385 ../../mod/editpost.php:133
#: ../../mod/content.php:702 ../../include/conversation.php:933 #: ../../mod/content.php:702 ../../include/conversation.php:946
#: ../../object/Item.php:569 #: ../../object/Item.php:567
msgid "Preview" msgid "Preview"
msgstr "Aperçu" msgstr "Aperçu"
#: ../../mod/photos.php:1479 ../../mod/content.php:439 #: ../../mod/photos.php:1487 ../../mod/content.php:439
#: ../../mod/content.php:723 ../../mod/settings.php:606 #: ../../mod/content.php:723 ../../mod/settings.php:606
#: ../../mod/settings.php:695 ../../mod/group.php:168 ../../mod/admin.php:696 #: ../../mod/settings.php:695 ../../mod/group.php:168 ../../mod/admin.php:696
#: ../../include/conversation.php:515 ../../object/Item.php:117 #: ../../include/conversation.php:518 ../../object/Item.php:117
msgid "Delete" msgid "Delete"
msgstr "Supprimer" msgstr "Supprimer"
#: ../../mod/photos.php:1569 #: ../../mod/photos.php:1577
msgid "View Album" msgid "View Album"
msgstr "Voir l'album" msgstr "Voir l'album"
#: ../../mod/photos.php:1578 #: ../../mod/photos.php:1586
msgid "Recent Photos" msgid "Recent Photos"
msgstr "Photos récentes" msgstr "Photos récentes"
@ -689,7 +689,7 @@ msgstr "Élément introuvable"
msgid "Edit post" msgid "Edit post"
msgstr "Éditer la publication" msgstr "Éditer la publication"
#: ../../mod/editpost.php:88 ../../include/conversation.php:882 #: ../../mod/editpost.php:88 ../../include/conversation.php:895
msgid "Post to Email" msgid "Post to Email"
msgstr "Publier aussi par courriel" msgstr "Publier aussi par courriel"
@ -700,17 +700,17 @@ msgstr "Éditer"
#: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150 #: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150
#: ../../mod/message.php:291 ../../mod/message.php:478 #: ../../mod/message.php:291 ../../mod/message.php:478
#: ../../include/conversation.php:897 #: ../../include/conversation.php:910
msgid "Upload photo" msgid "Upload photo"
msgstr "Joindre photo" msgstr "Joindre photo"
#: ../../mod/editpost.php:105 ../../include/conversation.php:899 #: ../../mod/editpost.php:105 ../../include/conversation.php:912
msgid "Attach file" msgid "Attach file"
msgstr "Joindre fichier" msgstr "Joindre fichier"
#: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151 #: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151
#: ../../mod/message.php:292 ../../mod/message.php:479 #: ../../mod/message.php:292 ../../mod/message.php:479
#: ../../include/conversation.php:901 #: ../../include/conversation.php:914
msgid "Insert web link" msgid "Insert web link"
msgstr "Insérer lien web" msgstr "Insérer lien web"
@ -726,35 +726,35 @@ msgstr "Insérer un lien vidéo Vorbis [.ogg]"
msgid "Insert Vorbis [.ogg] audio" msgid "Insert Vorbis [.ogg] audio"
msgstr "Insérer un lien audio Vorbis [.ogg]" msgstr "Insérer un lien audio Vorbis [.ogg]"
#: ../../mod/editpost.php:110 ../../include/conversation.php:907 #: ../../mod/editpost.php:110 ../../include/conversation.php:920
msgid "Set your location" msgid "Set your location"
msgstr "Définir votre localisation" msgstr "Définir votre localisation"
#: ../../mod/editpost.php:111 ../../include/conversation.php:909 #: ../../mod/editpost.php:111 ../../include/conversation.php:922
msgid "Clear browser location" msgid "Clear browser location"
msgstr "Effacer la localisation du navigateur" msgstr "Effacer la localisation du navigateur"
#: ../../mod/editpost.php:113 ../../include/conversation.php:916 #: ../../mod/editpost.php:113 ../../include/conversation.php:929
msgid "Permission settings" msgid "Permission settings"
msgstr "Réglages des permissions" msgstr "Réglages des permissions"
#: ../../mod/editpost.php:121 ../../include/conversation.php:925 #: ../../mod/editpost.php:121 ../../include/conversation.php:938
msgid "CC: email addresses" msgid "CC: email addresses"
msgstr "CC: adresses de courriel" msgstr "CC: adresses de courriel"
#: ../../mod/editpost.php:122 ../../include/conversation.php:926 #: ../../mod/editpost.php:122 ../../include/conversation.php:939
msgid "Public post" msgid "Public post"
msgstr "Notice publique" msgstr "Notice publique"
#: ../../mod/editpost.php:125 ../../include/conversation.php:912 #: ../../mod/editpost.php:125 ../../include/conversation.php:925
msgid "Set title" msgid "Set title"
msgstr "Définir un titre" msgstr "Définir un titre"
#: ../../mod/editpost.php:127 ../../include/conversation.php:914 #: ../../mod/editpost.php:127 ../../include/conversation.php:927
msgid "Categories (comma-separated list)" msgid "Categories (comma-separated list)"
msgstr "Catégories (séparées par des virgules)" msgstr "Catégories (séparées par des virgules)"
#: ../../mod/editpost.php:128 ../../include/conversation.php:928 #: ../../mod/editpost.php:128 ../../include/conversation.php:941
msgid "Example: bob@example.com, mary@example.com" msgid "Example: bob@example.com, mary@example.com"
msgstr "Exemple: bob@exemple.com, mary@exemple.com" msgstr "Exemple: bob@exemple.com, mary@exemple.com"
@ -1297,24 +1297,24 @@ msgid "Group: "
msgstr "Groupe: " msgstr "Groupe: "
#: ../../mod/content.php:438 ../../mod/content.php:722 #: ../../mod/content.php:438 ../../mod/content.php:722
#: ../../include/conversation.php:514 ../../object/Item.php:116 #: ../../include/conversation.php:517 ../../object/Item.php:116
msgid "Select" msgid "Select"
msgstr "Sélectionner" msgstr "Sélectionner"
#: ../../mod/content.php:455 ../../mod/content.php:815 #: ../../mod/content.php:455 ../../mod/content.php:815
#: ../../mod/content.php:816 ../../include/conversation.php:533 #: ../../mod/content.php:816 ../../include/conversation.php:536
#: ../../object/Item.php:227 ../../object/Item.php:228 #: ../../object/Item.php:227 ../../object/Item.php:228
#, php-format #, php-format
msgid "View %s's profile @ %s" msgid "View %s's profile @ %s"
msgstr "Voir le profil de %s @ %s" msgstr "Voir le profil de %s @ %s"
#: ../../mod/content.php:465 ../../mod/content.php:827 #: ../../mod/content.php:465 ../../mod/content.php:827
#: ../../include/conversation.php:553 ../../object/Item.php:240 #: ../../include/conversation.php:556 ../../object/Item.php:240
#, php-format #, php-format
msgid "%s from %s" msgid "%s from %s"
msgstr "%s de %s" msgstr "%s de %s"
#: ../../mod/content.php:480 ../../include/conversation.php:568 #: ../../mod/content.php:480 ../../include/conversation.php:571
msgid "View in context" msgid "View in context"
msgstr "Voir dans le contexte" msgstr "Voir dans le contexte"
@ -1355,35 +1355,35 @@ msgstr "Partager"
msgid "share" msgid "share"
msgstr "partager" msgstr "partager"
#: ../../mod/content.php:694 ../../object/Item.php:561 #: ../../mod/content.php:694 ../../object/Item.php:559
msgid "Bold" msgid "Bold"
msgstr "Gras" msgstr "Gras"
#: ../../mod/content.php:695 ../../object/Item.php:562 #: ../../mod/content.php:695 ../../object/Item.php:560
msgid "Italic" msgid "Italic"
msgstr "Italique" msgstr "Italique"
#: ../../mod/content.php:696 ../../object/Item.php:563 #: ../../mod/content.php:696 ../../object/Item.php:561
msgid "Underline" msgid "Underline"
msgstr "Souligné" msgstr "Souligné"
#: ../../mod/content.php:697 ../../object/Item.php:564 #: ../../mod/content.php:697 ../../object/Item.php:562
msgid "Quote" msgid "Quote"
msgstr "Citation" msgstr "Citation"
#: ../../mod/content.php:698 ../../object/Item.php:565 #: ../../mod/content.php:698 ../../object/Item.php:563
msgid "Code" msgid "Code"
msgstr "Code" msgstr "Code"
#: ../../mod/content.php:699 ../../object/Item.php:566 #: ../../mod/content.php:699 ../../object/Item.php:564
msgid "Image" msgid "Image"
msgstr "Image" msgstr "Image"
#: ../../mod/content.php:700 ../../object/Item.php:567 #: ../../mod/content.php:700 ../../object/Item.php:565
msgid "Link" msgid "Link"
msgstr "Lien" msgstr "Lien"
#: ../../mod/content.php:701 ../../object/Item.php:568 #: ../../mod/content.php:701 ../../object/Item.php:566
msgid "Video" msgid "Video"
msgstr "Vidéo" msgstr "Vidéo"
@ -2560,7 +2560,7 @@ msgstr "ajouter"
#: ../../mod/network.php:287 #: ../../mod/network.php:287
msgid "Commented Order" msgid "Commented Order"
msgstr "Dans l'ordre des commentaires" msgstr "Tri par commentaires"
#: ../../mod/network.php:290 #: ../../mod/network.php:290
msgid "Sort by Comment Date" msgid "Sort by Comment Date"
@ -2568,7 +2568,7 @@ msgstr "Trier par date de commentaire"
#: ../../mod/network.php:293 #: ../../mod/network.php:293
msgid "Posted Order" msgid "Posted Order"
msgstr "Dans l'ordre des notices" msgstr "Tri par publications"
#: ../../mod/network.php:296 #: ../../mod/network.php:296
msgid "Sort by Post Date" msgid "Sort by Post Date"
@ -2670,7 +2670,7 @@ msgstr "Pas de destinataire."
#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131 #: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131
#: ../../mod/message.php:242 ../../mod/message.php:250 #: ../../mod/message.php:242 ../../mod/message.php:250
#: ../../include/conversation.php:833 ../../include/conversation.php:850 #: ../../include/conversation.php:846 ../../include/conversation.php:863
msgid "Please enter a link URL:" msgid "Please enter a link URL:"
msgstr "Entrez un lien web:" msgstr "Entrez un lien web:"
@ -3070,8 +3070,8 @@ msgstr "S'inscrire"
msgid "People Search" msgid "People Search"
msgstr "Recherche de personnes" msgstr "Recherche de personnes"
#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/tagger.php:62 #: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/subthread.php:87
#: ../../addon/facebook/facebook.php:1598 #: ../../mod/tagger.php:62 ../../addon/facebook/facebook.php:1598
#: ../../addon/communityhome/communityhome.php:158 #: ../../addon/communityhome/communityhome.php:158
#: ../../addon/communityhome/communityhome.php:167 #: ../../addon/communityhome/communityhome.php:167
#: ../../view/theme/diabook/theme.php:565 #: ../../view/theme/diabook/theme.php:565
@ -3621,13 +3621,13 @@ msgstr "Permettre une imbrication infinie des commentaires."
#: ../../mod/admin.php:470 #: ../../mod/admin.php:470
msgid "Private posts by default for new users" msgid "Private posts by default for new users"
msgstr "" msgstr "Publications privées par défaut pour les nouveaux utilisateurs"
#: ../../mod/admin.php:470 #: ../../mod/admin.php:470
msgid "" msgid ""
"Set default post permissions for all new members to the default privacy " "Set default post permissions for all new members to the default privacy "
"group rather than public." "group rather than public."
msgstr "" msgstr "Rendre les posts de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde."
#: ../../mod/admin.php:472 #: ../../mod/admin.php:472
msgid "Block multiple registrations" msgid "Block multiple registrations"
@ -3859,7 +3859,7 @@ msgstr "Rejetter"
#: ../../mod/admin.php:699 #: ../../mod/admin.php:699
msgid "Site admin" msgid "Site admin"
msgstr "" msgstr "Administration du Site"
#: ../../mod/admin.php:702 #: ../../mod/admin.php:702
msgid "Register date" msgid "Register date"
@ -4068,6 +4068,11 @@ msgstr "Amis communs"
msgid "No contacts in common." msgid "No contacts in common."
msgstr "Pas de contacts en commun." msgstr "Pas de contacts en commun."
#: ../../mod/subthread.php:103
#, php-format
msgid "%1$s is following %2$s's %3$s"
msgstr ""
#: ../../mod/share.php:28 #: ../../mod/share.php:28
msgid "link" msgid "link"
msgstr "lien" msgstr "lien"
@ -4396,8 +4401,8 @@ msgstr "visible par tous"
msgid "Edit visibility" msgid "Edit visibility"
msgstr "Changer la visibilité" msgstr "Changer la visibilité"
#: ../../mod/filer.php:29 ../../include/conversation.php:837 #: ../../mod/filer.php:29 ../../include/conversation.php:850
#: ../../include/conversation.php:854 #: ../../include/conversation.php:867
msgid "Save to Folder:" msgid "Save to Folder:"
msgstr "Sauver dans le Dossier:" msgstr "Sauver dans le Dossier:"
@ -6127,11 +6132,11 @@ msgstr "Paramètres de la liste des forums"
#: ../../addon/forumlist/forumlist.php:152 #: ../../addon/forumlist/forumlist.php:152
msgid "Randomise forum list" msgid "Randomise forum list"
msgstr "" msgstr "Mélanger la liste de forums"
#: ../../addon/forumlist/forumlist.php:155 #: ../../addon/forumlist/forumlist.php:155
msgid "Show forums on profile page" msgid "Show forums on profile page"
msgstr "" msgstr "Montrer les forums sur le profil"
#: ../../addon/impressum/impressum.php:37 #: ../../addon/impressum/impressum.php:37
msgid "Impressum" msgid "Impressum"
@ -8495,34 +8500,34 @@ msgstr "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probab
msgid "stopped following" msgid "stopped following"
msgstr "retiré de la liste de suivi" msgstr "retiré de la liste de suivi"
#: ../../include/Contact.php:220 ../../include/conversation.php:734 #: ../../include/Contact.php:220 ../../include/conversation.php:743
msgid "Poke" msgid "Poke"
msgstr "" msgstr ""
#: ../../include/Contact.php:221 ../../include/conversation.php:728 #: ../../include/Contact.php:221 ../../include/conversation.php:737
msgid "View Status" msgid "View Status"
msgstr "Voir les statuts" msgstr "Voir les statuts"
#: ../../include/Contact.php:222 ../../include/conversation.php:729 #: ../../include/Contact.php:222 ../../include/conversation.php:738
msgid "View Profile" msgid "View Profile"
msgstr "Voir le profil" msgstr "Voir le profil"
#: ../../include/Contact.php:223 ../../include/conversation.php:730 #: ../../include/Contact.php:223 ../../include/conversation.php:739
msgid "View Photos" msgid "View Photos"
msgstr "Voir les photos" msgstr "Voir les photos"
#: ../../include/Contact.php:224 ../../include/Contact.php:237 #: ../../include/Contact.php:224 ../../include/Contact.php:237
#: ../../include/conversation.php:731 #: ../../include/conversation.php:740
msgid "Network Posts" msgid "Network Posts"
msgstr "Posts du Réseau" msgstr "Posts du Réseau"
#: ../../include/Contact.php:225 ../../include/Contact.php:237 #: ../../include/Contact.php:225 ../../include/Contact.php:237
#: ../../include/conversation.php:732 #: ../../include/conversation.php:741
msgid "Edit Contact" msgid "Edit Contact"
msgstr "Éditer le contact" msgstr "Éditer le contact"
#: ../../include/Contact.php:226 ../../include/Contact.php:237 #: ../../include/Contact.php:226 ../../include/Contact.php:237
#: ../../include/conversation.php:733 #: ../../include/conversation.php:742
msgid "Send PM" msgid "Send PM"
msgstr "Message privé" msgstr "Message privé"
@ -8540,118 +8545,122 @@ msgstr "publication/élément"
msgid "%1$s marked %2$s's %3$s as favorite" msgid "%1$s marked %2$s's %3$s as favorite"
msgstr "%1$s a marqué le %3$s de %2$s comme favori" msgstr "%1$s a marqué le %3$s de %2$s comme favori"
#: ../../include/conversation.php:545 ../../object/Item.php:218 #: ../../include/conversation.php:548 ../../object/Item.php:218
msgid "Categories:" msgid "Categories:"
msgstr "Catégories:" msgstr "Catégories:"
#: ../../include/conversation.php:546 ../../object/Item.php:219 #: ../../include/conversation.php:549 ../../object/Item.php:219
msgid "Filed under:" msgid "Filed under:"
msgstr "Rangé sous:" msgstr "Rangé sous:"
#: ../../include/conversation.php:630 #: ../../include/conversation.php:633
msgid "remove" msgid "remove"
msgstr "enlever" msgstr "enlever"
#: ../../include/conversation.php:634 #: ../../include/conversation.php:637
msgid "Delete Selected Items" msgid "Delete Selected Items"
msgstr "Supprimer les éléments sélectionnés" msgstr "Supprimer les éléments sélectionnés"
#: ../../include/conversation.php:792 #: ../../include/conversation.php:736
msgid "Follow Thread"
msgstr "Suivre le fil"
#: ../../include/conversation.php:805
#, php-format #, php-format
msgid "%s likes this." msgid "%s likes this."
msgstr "%s aime ça." msgstr "%s aime ça."
#: ../../include/conversation.php:792 #: ../../include/conversation.php:805
#, php-format #, php-format
msgid "%s doesn't like this." msgid "%s doesn't like this."
msgstr "%s n'aime pas ça." msgstr "%s n'aime pas ça."
#: ../../include/conversation.php:796 #: ../../include/conversation.php:809
#, php-format #, php-format
msgid "<span %1$s>%2$d people</span> like this." msgid "<span %1$s>%2$d people</span> like this."
msgstr "<span %1$s>%2$d personnes</span> aiment ça." msgstr "<span %1$s>%2$d personnes</span> aiment ça."
#: ../../include/conversation.php:798 #: ../../include/conversation.php:811
#, php-format #, php-format
msgid "<span %1$s>%2$d people</span> don't like this." msgid "<span %1$s>%2$d people</span> don't like this."
msgstr "<span %1$s>%2$d personnes</span> n'aiment pas ça." msgstr "<span %1$s>%2$d personnes</span> n'aiment pas ça."
#: ../../include/conversation.php:804 #: ../../include/conversation.php:817
msgid "and" msgid "and"
msgstr "et" msgstr "et"
#: ../../include/conversation.php:807 #: ../../include/conversation.php:820
#, php-format #, php-format
msgid ", and %d other people" msgid ", and %d other people"
msgstr ", et %d autres personnes" msgstr ", et %d autres personnes"
#: ../../include/conversation.php:808 #: ../../include/conversation.php:821
#, php-format #, php-format
msgid "%s like this." msgid "%s like this."
msgstr "%s aiment ça." msgstr "%s aiment ça."
#: ../../include/conversation.php:808 #: ../../include/conversation.php:821
#, php-format #, php-format
msgid "%s don't like this." msgid "%s don't like this."
msgstr "%s n'aiment pas ça." msgstr "%s n'aiment pas ça."
#: ../../include/conversation.php:832 ../../include/conversation.php:849 #: ../../include/conversation.php:845 ../../include/conversation.php:862
msgid "Visible to <strong>everybody</strong>" msgid "Visible to <strong>everybody</strong>"
msgstr "Visible par <strong>tout le monde</strong>" msgstr "Visible par <strong>tout le monde</strong>"
#: ../../include/conversation.php:834 ../../include/conversation.php:851 #: ../../include/conversation.php:847 ../../include/conversation.php:864
msgid "Please enter a video link/URL:" msgid "Please enter a video link/URL:"
msgstr "Entrez un lien/URL video :" msgstr "Entrez un lien/URL video :"
#: ../../include/conversation.php:835 ../../include/conversation.php:852 #: ../../include/conversation.php:848 ../../include/conversation.php:865
msgid "Please enter an audio link/URL:" msgid "Please enter an audio link/URL:"
msgstr "Entrez un lien/URL audio :" msgstr "Entrez un lien/URL audio :"
#: ../../include/conversation.php:836 ../../include/conversation.php:853 #: ../../include/conversation.php:849 ../../include/conversation.php:866
msgid "Tag term:" msgid "Tag term:"
msgstr "Tag : " msgstr "Tag : "
#: ../../include/conversation.php:838 ../../include/conversation.php:855 #: ../../include/conversation.php:851 ../../include/conversation.php:868
msgid "Where are you right now?" msgid "Where are you right now?"
msgstr "Où êtes-vous présentemment?" msgstr "Où êtes-vous présentemment?"
#: ../../include/conversation.php:898 #: ../../include/conversation.php:911
msgid "upload photo" msgid "upload photo"
msgstr "envoi image" msgstr "envoi image"
#: ../../include/conversation.php:900 #: ../../include/conversation.php:913
msgid "attach file" msgid "attach file"
msgstr "ajout fichier" msgstr "ajout fichier"
#: ../../include/conversation.php:902 #: ../../include/conversation.php:915
msgid "web link" msgid "web link"
msgstr "lien web" msgstr "lien web"
#: ../../include/conversation.php:903 #: ../../include/conversation.php:916
msgid "Insert video link" msgid "Insert video link"
msgstr "Insérer un lien video" msgstr "Insérer un lien video"
#: ../../include/conversation.php:904 #: ../../include/conversation.php:917
msgid "video link" msgid "video link"
msgstr "lien vidéo" msgstr "lien vidéo"
#: ../../include/conversation.php:905 #: ../../include/conversation.php:918
msgid "Insert audio link" msgid "Insert audio link"
msgstr "Insérer un lien audio" msgstr "Insérer un lien audio"
#: ../../include/conversation.php:906 #: ../../include/conversation.php:919
msgid "audio link" msgid "audio link"
msgstr "lien audio" msgstr "lien audio"
#: ../../include/conversation.php:908 #: ../../include/conversation.php:921
msgid "set location" msgid "set location"
msgstr "spéc. localisation" msgstr "spéc. localisation"
#: ../../include/conversation.php:910 #: ../../include/conversation.php:923
msgid "clear location" msgid "clear location"
msgstr "supp. localisation" msgstr "supp. localisation"
#: ../../include/conversation.php:917 #: ../../include/conversation.php:930
msgid "permissions" msgid "permissions"
msgstr "permissions" msgstr "permissions"

View file

@ -573,9 +573,9 @@ $a->strings["Search Results For:"] = "Résultats pour:";
$a->strings["Remove term"] = "Retirer le terme"; $a->strings["Remove term"] = "Retirer le terme";
$a->strings["Saved Searches"] = "Recherches"; $a->strings["Saved Searches"] = "Recherches";
$a->strings["add"] = "ajouter"; $a->strings["add"] = "ajouter";
$a->strings["Commented Order"] = "Dans l'ordre des commentaires"; $a->strings["Commented Order"] = "Tri par commentaires";
$a->strings["Sort by Comment Date"] = "Trier par date de commentaire"; $a->strings["Sort by Comment Date"] = "Trier par date de commentaire";
$a->strings["Posted Order"] = "Dans l'ordre des notices"; $a->strings["Posted Order"] = "Tri par publications";
$a->strings["Sort by Post Date"] = "Trier par date de publication"; $a->strings["Sort by Post Date"] = "Trier par date de publication";
$a->strings["Posts that mention or involve you"] = "Publications qui vous concernent"; $a->strings["Posts that mention or involve you"] = "Publications qui vous concernent";
$a->strings["New"] = "Nouveau"; $a->strings["New"] = "Nouveau";
@ -807,8 +807,8 @@ $a->strings["Global directory update URL"] = "URL de mise-à-jour de l'annuaire
$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL de mise-à-jour de l'annuaire global. Si vide, l'annuaire global sera complètement indisponible."; $a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL de mise-à-jour de l'annuaire global. Si vide, l'annuaire global sera complètement indisponible.";
$a->strings["Allow threaded items"] = "Activer les commentaires imbriqués"; $a->strings["Allow threaded items"] = "Activer les commentaires imbriqués";
$a->strings["Allow infinite level threading for items on this site."] = "Permettre une imbrication infinie des commentaires."; $a->strings["Allow infinite level threading for items on this site."] = "Permettre une imbrication infinie des commentaires.";
$a->strings["Private posts by default for new users"] = ""; $a->strings["Private posts by default for new users"] = "Publications privées par défaut pour les nouveaux utilisateurs";
$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = ""; $a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Rendre les posts de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde.";
$a->strings["Block multiple registrations"] = "Interdire les inscriptions multiples"; $a->strings["Block multiple registrations"] = "Interdire les inscriptions multiples";
$a->strings["Disallow users to register additional accounts for use as pages."] = "Ne pas permettre l'inscription de comptes multiples comme des pages."; $a->strings["Disallow users to register additional accounts for use as pages."] = "Ne pas permettre l'inscription de comptes multiples comme des pages.";
$a->strings["OpenID support"] = "Support OpenID"; $a->strings["OpenID support"] = "Support OpenID";
@ -864,7 +864,7 @@ $a->strings["Request date"] = "Date de la demande";
$a->strings["Email"] = "Courriel"; $a->strings["Email"] = "Courriel";
$a->strings["No registrations."] = "Pas d'inscriptions."; $a->strings["No registrations."] = "Pas d'inscriptions.";
$a->strings["Deny"] = "Rejetter"; $a->strings["Deny"] = "Rejetter";
$a->strings["Site admin"] = ""; $a->strings["Site admin"] = "Administration du Site";
$a->strings["Register date"] = "Date d'inscription"; $a->strings["Register date"] = "Date d'inscription";
$a->strings["Last login"] = "Dernière connexion"; $a->strings["Last login"] = "Dernière connexion";
$a->strings["Last item"] = "Dernier élément"; $a->strings["Last item"] = "Dernier élément";
@ -913,6 +913,7 @@ $a->strings["Login failed."] = "Échec de connexion.";
$a->strings["Contact added"] = "Contact ajouté"; $a->strings["Contact added"] = "Contact ajouté";
$a->strings["Common Friends"] = "Amis communs"; $a->strings["Common Friends"] = "Amis communs";
$a->strings["No contacts in common."] = "Pas de contacts en commun."; $a->strings["No contacts in common."] = "Pas de contacts en commun.";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "";
$a->strings["link"] = "lien"; $a->strings["link"] = "lien";
$a->strings["Item has been removed."] = "Cet élément a été enlevé."; $a->strings["Item has been removed."] = "Cet élément a été enlevé.";
$a->strings["Applications"] = "Applications"; $a->strings["Applications"] = "Applications";
@ -1391,8 +1392,8 @@ $a->strings["show/hide"] = "Montrer/cacher";
$a->strings["No forum subscriptions"] = "Pas d'abonnement au forum"; $a->strings["No forum subscriptions"] = "Pas d'abonnement au forum";
$a->strings["Forumlist settings updated."] = "Paramètres de la liste des forums mis à jour."; $a->strings["Forumlist settings updated."] = "Paramètres de la liste des forums mis à jour.";
$a->strings["Forumlist Settings"] = "Paramètres de la liste des forums"; $a->strings["Forumlist Settings"] = "Paramètres de la liste des forums";
$a->strings["Randomise forum list"] = ""; $a->strings["Randomise forum list"] = "Mélanger la liste de forums";
$a->strings["Show forums on profile page"] = ""; $a->strings["Show forums on profile page"] = "Montrer les forums sur le profil";
$a->strings["Impressum"] = "Impressum"; $a->strings["Impressum"] = "Impressum";
$a->strings["Site Owner"] = "Propriétaire du site"; $a->strings["Site Owner"] = "Propriétaire du site";
$a->strings["Email Address"] = "Adresse courriel"; $a->strings["Email Address"] = "Adresse courriel";
@ -1954,6 +1955,7 @@ $a->strings["Categories:"] = "Catégories:";
$a->strings["Filed under:"] = "Rangé sous:"; $a->strings["Filed under:"] = "Rangé sous:";
$a->strings["remove"] = "enlever"; $a->strings["remove"] = "enlever";
$a->strings["Delete Selected Items"] = "Supprimer les éléments sélectionnés"; $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 likes this."] = "%s aime ça.";
$a->strings["%s doesn't like this."] = "%s n'aime pas ça."; $a->strings["%s doesn't like this."] = "%s n'aime pas ça.";
$a->strings["<span %1\$s>%2\$d people</span> like this."] = "<span %1\$s>%2\$d personnes</span> aiment ça."; $a->strings["<span %1\$s>%2\$d people</span> like this."] = "<span %1\$s>%2\$d personnes</span> aiment ça.";

View file

@ -42,13 +42,22 @@ function insertFormatting(comment,BBcode,id) {
return true; return true;
} }
function cmtBbOpen(id) { function cmtBbOpen(comment, id) {
$(".comment-edit-bb-" + id).show(); if($(comment).hasClass('comment-edit-text-full')) {
$(".comment-edit-bb-" + id).show();
return true;
}
return false;
} }
function cmtBbClose(comment, id) { function cmtBbClose(comment, id) {
$(".comment-edit-bb-" + id).hide(); // if($(comment).hasClass('comment-edit-text-empty')) {
// $(".comment-edit-bb-" + id).hide();
// return true;
// }
return false;
} }
$(document).ready(function() { $(document).ready(function() {
$('.group-edit-icon').hover( $('.group-edit-icon').hover(

View file

@ -4,7 +4,7 @@
* Name: Frost--mobile version * Name: Frost--mobile version
* Description: Like frosted glass * Description: Like frosted glass
* Credits: Navigation icons taken from http://iconza.com. Other icons taken from http://thenounproject.com, including: Like, Dislike, Black Lock, Unlock, Pencil, Tag, Camera, Paperclip (Marie Coons), Folder (Sergio Calcara), Chain-link (Andrew Fortnum), Speaker (Harold Kim), Quotes (Henry Ryder), Video Camera (Anas Ramadan), and Left Arrow, Right Arrow, and Delete X (all three P.J. Onori). All under Attribution (CC BY 3.0). Others from The Noun Project are public domain or No Rights Reserved (CC0). * Credits: Navigation icons taken from http://iconza.com. Other icons taken from http://thenounproject.com, including: Like, Dislike, Black Lock, Unlock, Pencil, Tag, Camera, Paperclip (Marie Coons), Folder (Sergio Calcara), Chain-link (Andrew Fortnum), Speaker (Harold Kim), Quotes (Henry Ryder), Video Camera (Anas Ramadan), and Left Arrow, Right Arrow, and Delete X (all three P.J. Onori). All under Attribution (CC BY 3.0). Others from The Noun Project are public domain or No Rights Reserved (CC0).
* Version: Version 0.2.13 * Version: Version 0.2.14
* Author: Zach P <techcity@f.shmuz.in> * Author: Zach P <techcity@f.shmuz.in>
* Maintainer: Zach P <techcity@f.shmuz.in> * Maintainer: Zach P <techcity@f.shmuz.in>
*/ */

View file

@ -50,6 +50,15 @@
<span class='body-tag tag'>$tag</span> <span class='body-tag tag'>$tag</span>
{{ endfor }} {{ endfor }}
<!--</div>--> <!--</div>-->
{{ if $item.has_cats }}
<div class="categorytags">$item.txt_cats {{ for $item.categories as $cat }}$cat.name <a href="$cat.removeurl" title="$remove">[$remove]</a> {{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }}
</div>
{{ endif }}
{{ if $item.has_folders }}
<div class="filesavetags">$item.txt_folders {{ for $item.folders as $cat }}$cat.name <a href="$cat.removeurl" title="$remove">[$remove]</a> {{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }}
</div>
{{ endif }}
</div> </div>
</div> </div>
<div class="wall-item-tools" id="wall-item-tools-$item.id"> <div class="wall-item-tools" id="wall-item-tools-$item.id">

View file

@ -4,7 +4,7 @@
* Name: Frost * Name: Frost
* Description: Like frosted glass * Description: Like frosted glass
* Credits: Navigation icons taken from http://iconza.com. Other icons taken from http://thenounproject.com, including: Like, Dislike, Black Lock, Unlock, Pencil, Tag, Camera, Paperclip (Marie Coons), Folder (Sergio Calcara), Chain-link (Andrew Fortnum), Speaker (Harold Kim), Quotes (Henry Ryder), Video Camera (Anas Ramadan), and Left Arrow, Right Arrow, and Delete X (all three P.J. Onori). All under Attribution (CC BY 3.0). Others from The Noun Project are public domain or No Rights Reserved (CC0). * Credits: Navigation icons taken from http://iconza.com. Other icons taken from http://thenounproject.com, including: Like, Dislike, Black Lock, Unlock, Pencil, Tag, Camera, Paperclip (Marie Coons), Folder (Sergio Calcara), Chain-link (Andrew Fortnum), Speaker (Harold Kim), Quotes (Henry Ryder), Video Camera (Anas Ramadan), and Left Arrow, Right Arrow, and Delete X (all three P.J. Onori). All under Attribution (CC BY 3.0). Others from The Noun Project are public domain or No Rights Reserved (CC0).
* Version: Version 0.2.11 * Version: Version 0.2.12
* Author: Zach P <techcity@f.shmuz.in> * Author: Zach P <techcity@f.shmuz.in>
* Maintainer: Zach P <techcity@f.shmuz.in> * Maintainer: Zach P <techcity@f.shmuz.in>
*/ */

View file

@ -49,6 +49,15 @@
<span class='body-tag tag'>$tag</span> <span class='body-tag tag'>$tag</span>
{{ endfor }} {{ endfor }}
<!--</div>--> <!--</div>-->
{{ if $item.has_cats }}
<div class="categorytags">$item.txt_cats {{ for $item.categories as $cat }}$cat.name <a href="$cat.removeurl" title="$remove">[$remove]</a> {{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }}
</div>
{{ endif }}
{{ if $item.has_folders }}
<div class="filesavetags">$item.txt_folders {{ for $item.folders as $cat }}$cat.name <a href="$cat.removeurl" title="$remove">[$remove]</a> {{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }}
</div>
{{ endif }}
</div> </div>
</div> </div>
<div class="wall-item-tools" id="wall-item-tools-$item.id"> <div class="wall-item-tools" id="wall-item-tools-$item.id">

View file

@ -1,5 +1,6 @@
all: all:
cd dark; make; cd .. cd dark; make; cd ..
cd green; make; cd .. cd green; make; cd ..
cd lilac; make; cd ..

View file

@ -11,8 +11,10 @@ function theme_content(&$a){
$align = get_pconfig(local_user(), 'quattro', 'align' ); $align = get_pconfig(local_user(), 'quattro', 'align' );
$color = get_pconfig(local_user(), 'quattro', 'color' ); $color = get_pconfig(local_user(), 'quattro', 'color' );
$tfs = get_pconfig(local_user(),"quattro","tfs");
return quattro_form($a,$align, $color); $pfs = get_pconfig(local_user(),"quattro","pfs");
return quattro_form($a,$align, $color, $tfs, $pfs);
} }
function theme_post(&$a){ function theme_post(&$a){
@ -22,6 +24,8 @@ function theme_post(&$a){
if (isset($_POST['quattro-settings-submit'])){ if (isset($_POST['quattro-settings-submit'])){
set_pconfig(local_user(), 'quattro', 'align', $_POST['quattro_align']); set_pconfig(local_user(), 'quattro', 'align', $_POST['quattro_align']);
set_pconfig(local_user(), 'quattro', 'color', $_POST['quattro_color']); set_pconfig(local_user(), 'quattro', 'color', $_POST['quattro_color']);
set_pconfig(local_user(), 'quattro', 'tfs', $_POST['quattro_tfs']);
set_pconfig(local_user(), 'quattro', 'pfs', $_POST['quattro_pfs']);
} }
} }
@ -29,25 +33,32 @@ function theme_post(&$a){
function theme_admin(&$a){ function theme_admin(&$a){
$align = get_config('quattro', 'align' ); $align = get_config('quattro', 'align' );
$color = get_config('quattro', 'color' ); $color = get_config('quattro', 'color' );
$tfs = get_config("quattro","tfs");
return quattro_form($a,$align, $color); $pfs = get_config("quattro","pfs");
return quattro_form($a,$align, $color, $tfs, $pfs);
} }
function theme_admin_post(&$a){ function theme_admin_post(&$a){
if (isset($_POST['quattro-settings-submit'])){ if (isset($_POST['quattro-settings-submit'])){
set_config('quattro', 'align', $_POST['quattro_align']); set_config('quattro', 'align', $_POST['quattro_align']);
set_config('quattro', 'color', $_POST['quattro_color']); set_config('quattro', 'color', $_POST['quattro_color']);
set_config('quattro', 'tfs', $_POST['quattro_tfs']);
set_config('quattro', 'pfs', $_POST['quattro_pfs']);
} }
} }
function quattro_form(&$a, $align, $color){ function quattro_form(&$a, $align, $color, $tfs, $pfs){
$colors = array( $colors = array(
"dark"=>"Quattro", "dark"=>"Quattro",
"lilac"=>"Lilac", "lilac"=>"Lilac",
"green"=>"Green" "green"=>"Green"
); );
if ($tfs===false) $tfs="20";
if ($pfs===false) $pfs="12";
$t = file_get_contents( dirname(__file__). "/theme_settings.tpl" ); $t = file_get_contents( dirname(__file__). "/theme_settings.tpl" );
$o .= replace_macros($t, array( $o .= replace_macros($t, array(
'$submit' => t('Submit'), '$submit' => t('Submit'),
@ -55,6 +66,8 @@ function quattro_form(&$a, $align, $color){
'$title' => t("Theme settings"), '$title' => t("Theme settings"),
'$align' => array('quattro_align', t('Alignment'), $align, '', array('left'=>t('Left'), 'center'=>t('Center'))), '$align' => array('quattro_align', t('Alignment'), $align, '', array('left'=>t('Left'), 'center'=>t('Center'))),
'$color' => array('quattro_color', t('Color scheme'), $color, '', $colors), '$color' => array('quattro_color', t('Color scheme'), $color, '', $colors),
'$pfs' => array('quattro_pfs', t('Posts font size'), $pfs),
'$tfs' => array('quattro_tfs',t('Textareas font size'), $tfs),
)); ));
return $o; return $o;
} }

View file

@ -89,6 +89,7 @@
@CommentBoxFullBorderColor: @Grey5; @CommentBoxFullBorderColor: @Grey5;
@TagColor: @Grey1; @TagColor: @Grey1;
@MentionColor: @Grey4;
@JotToolsBackgroundColor: @Metalic4; @JotToolsBackgroundColor: @Metalic4;
@JotToolsBorderColor: @Metalic2; @JotToolsBorderColor: @Metalic2;

View file

@ -404,9 +404,6 @@ code {
padding: 10px; padding: 10px;
margin-top: 20px; margin-top: 20px;
} }
textarea {
font-size: 20px;
}
#panel { #panel {
position: absolute; position: absolute;
width: 10em; width: 10em;
@ -1088,7 +1085,6 @@ section {
padding: 0.3em; padding: 0.3em;
} }
.wall-item-comment-wrapper .comment-edit-text-full { .wall-item-comment-wrapper .comment-edit-text-full {
font-size: 20px;
height: 4em; height: 4em;
color: #2d2d2d; color: #2d2d2d;
border: 1px solid #2d2d2d; border: 1px solid #2d2d2d;
@ -1142,23 +1138,46 @@ section {
padding-top: 5px; padding-top: 5px;
} }
.tag { .tag {
background: url("../../../images/tag_b.png") no-repeat center left; background: url("icons/tag.png") no-repeat center right;
color: #ffffff; color: #ffffff;
padding-right: 8px;
padding-left: 3px; padding-left: 3px;
} }
.tag a { .tag a {
padding-right: 8px;
background: url("../../../images/tag.png") no-repeat center right;
color: #ffffff; color: #ffffff;
} }
.filesavetags { .mention {
padding: 3px 0px 3px 0px; background: url("icons/men.png") no-repeat 1px center;
opacity: 0.5; color: #666666;
padding-right: 3px;
padding-left: 18px;
} }
.mention a {
color: #666666;
}
.folder {
background: url("icons/folder.png") no-repeat 1px center;
color: #666666;
padding-right: 3px;
padding-left: 15px;
}
.folder a {
color: #666666;
}
.category {
background: url("icons/category.png") no-repeat 1px center;
color: #666666;
padding-right: 3px;
padding-left: 15px;
}
.category a {
color: #666666;
}
/*.filesavetags {
padding: 3px 0px 3px 0px;
opacity: 0.5;
}*/
.wwto { .wwto {
position: absolute !important;
width: 25px;
height: 25px;
background: #FFFFFF; background: #FFFFFF;
border: 2px solid #364e59; border: 2px solid #364e59;
height: 25px; height: 25px;
@ -1334,9 +1353,6 @@ span[id^="showmore-wrap"] {
border: 1px solid #999999; border: 1px solid #999999;
padding: 0.3em; padding: 0.3em;
} }
#jot .profile-jot-text:focus {
font-size: 20px;
}
#jot #jot-tools { #jot #jot-tools {
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
@ -2147,3 +2163,47 @@ footer {
.videobb:hover { .videobb:hover {
background-position: -112px -16px; background-position: -112px -16px;
} }
/** range input css **/
/* slider root element */
.slider {
height: 2px;
position: relative;
cursor: pointer;
border: 1px solid #333;
width: 200px;
margin: 10px 0px 10px 0px;
float: left;
}
/* progress bar (enabled with progress: true) */
.progress {
height: 9px;
background-color: #C5FF00;
display: none;
opacity: 0.6;
}
/* drag handle */
.handle {
background-color: #ccc;
height: 16px;
width: 8px;
top: -8px;
position: absolute;
display: block;
margin-top: 1px;
border: 1px solid #000;
cursor: move;
-moz-border-radius: 0 0 5px 5px;
-webkit-border-radius: 0 0 5px 5px;
border-radius: 0 0 5px 5px;
-webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
}
/* the input field */
.range {
width: 20px!important;
font-size: 8pt;
margin-left: 10px;
border: 0px;
color: #999999;
}

View file

@ -87,6 +87,7 @@
@CommentBoxFullBorderColor: @Grey5; @CommentBoxFullBorderColor: @Grey5;
@TagColor: @Grey1; @TagColor: @Grey1;
@MentionColor: @Grey4;
@JotToolsBackgroundColor: @Green3; @JotToolsBackgroundColor: @Green3;
@JotToolsBorderColor: @Metalic2; @JotToolsBorderColor: @Metalic2;

View file

@ -404,9 +404,6 @@ code {
padding: 10px; padding: 10px;
margin-top: 20px; margin-top: 20px;
} }
textarea {
font-size: 20px;
}
#panel { #panel {
position: absolute; position: absolute;
width: 10em; width: 10em;
@ -1088,7 +1085,6 @@ section {
padding: 0.3em; padding: 0.3em;
} }
.wall-item-comment-wrapper .comment-edit-text-full { .wall-item-comment-wrapper .comment-edit-text-full {
font-size: 20px;
height: 4em; height: 4em;
color: #2d2d2d; color: #2d2d2d;
border: 1px solid #2d2d2d; border: 1px solid #2d2d2d;
@ -1142,23 +1138,46 @@ section {
padding-top: 5px; padding-top: 5px;
} }
.tag { .tag {
background: url("../../../images/tag_b.png") no-repeat center left; background: url("icons/tag.png") no-repeat center right;
color: #ffffff; color: #ffffff;
padding-right: 8px;
padding-left: 3px; padding-left: 3px;
} }
.tag a { .tag a {
padding-right: 8px;
background: url("../../../images/tag.png") no-repeat center right;
color: #ffffff; color: #ffffff;
} }
.filesavetags { .mention {
padding: 3px 0px 3px 0px; background: url("icons/men.png") no-repeat 1px center;
opacity: 0.5; color: #666666;
padding-right: 3px;
padding-left: 18px;
} }
.mention a {
color: #666666;
}
.folder {
background: url("icons/folder.png") no-repeat 1px center;
color: #666666;
padding-right: 3px;
padding-left: 15px;
}
.folder a {
color: #666666;
}
.category {
background: url("icons/category.png") no-repeat 1px center;
color: #666666;
padding-right: 3px;
padding-left: 15px;
}
.category a {
color: #666666;
}
/*.filesavetags {
padding: 3px 0px 3px 0px;
opacity: 0.5;
}*/
.wwto { .wwto {
position: absolute !important;
width: 25px;
height: 25px;
background: #FFFFFF; background: #FFFFFF;
border: 2px solid #364e59; border: 2px solid #364e59;
height: 25px; height: 25px;
@ -1334,9 +1353,6 @@ span[id^="showmore-wrap"] {
border: 1px solid #999999; border: 1px solid #999999;
padding: 0.3em; padding: 0.3em;
} }
#jot .profile-jot-text:focus {
font-size: 20px;
}
#jot #jot-tools { #jot #jot-tools {
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
@ -2147,3 +2163,47 @@ footer {
.videobb:hover { .videobb:hover {
background-position: -112px -16px; background-position: -112px -16px;
} }
/** range input css **/
/* slider root element */
.slider {
height: 2px;
position: relative;
cursor: pointer;
border: 1px solid #333;
width: 200px;
margin: 10px 0px 10px 0px;
float: left;
}
/* progress bar (enabled with progress: true) */
.progress {
height: 9px;
background-color: #C5FF00;
display: none;
opacity: 0.6;
}
/* drag handle */
.handle {
background-color: #ccc;
height: 16px;
width: 8px;
top: -8px;
position: absolute;
display: block;
margin-top: 1px;
border: 1px solid #000;
cursor: move;
-moz-border-radius: 0 0 5px 5px;
-webkit-border-radius: 0 0 5px 5px;
border-radius: 0 0 5px 5px;
-webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
}
/* the input field */
.range {
width: 20px!important;
font-size: 8pt;
margin-left: 10px;
border: 0px;
color: #999999;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 550 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 472 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 394 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 661 B

View file

@ -20,7 +20,7 @@
<li><a href="#" onclick="return false;" id="wall-image-upload" title="$upload">$shortupload</a></a></li> <li><a href="#" onclick="return false;" id="wall-image-upload" title="$upload">$shortupload</a></a></li>
<li><a href="#" onclick="return false;" id="wall-file-upload" title="$attach">$shortattach</a></li> <li><a href="#" onclick="return false;" id="wall-file-upload" title="$attach">$shortattach</a></li>
<li><a id="profile-link" ondragenter="return linkdropper(event);" ondragover="return linkdropper(event);" ondrop="linkdrop(event);" onclick="jotGetLink(); return false;" title="$weblink">$shortweblink</a></li> <li><a id="profile-link" ondragenter="return linkdropper(event);" ondragover="return linkdropper(event);" ondrop="linkdrop(event);" onclick="jotGetLink(); return false;" title="$weblink">$shortweblink</a></li>
<li><a id="profile-video" onclick="jotVideoURL();return false;" title="$gvideo">$shortvideo</a></li> <li><a id="profile-video" onclick="jotVideoURL();return false;" title="$video">$shortvideo</a></li>
<li><a id="profile-audio" onclick="jotAudioURL();return false;" title="$audio">$shortaudio</a></li> <li><a id="profile-audio" onclick="jotAudioURL();return false;" title="$audio">$shortaudio</a></li>
<!-- TODO: waiting for a better placement <!-- TODO: waiting for a better placement
<li><a id="profile-location" onclick="jotGetLocation();return false;" title="$setloc">$shortsetloc</a></li> <li><a id="profile-location" onclick="jotGetLocation();return false;" title="$setloc">$shortsetloc</a></li>

11
view/theme/quattro/jquery.tools.min.js vendored Normal file
View file

@ -0,0 +1,11 @@
/*!
* jQuery Tools v1.2.7 - The missing UI library for the Web
*
* rangeinput/rangeinput.js
*
* NO COPYRIGHTS OR LICENSES. DO WHAT YOU LIKE.
*
* http://flowplayer.org/tools/
*
*/
(function(a){a.tools=a.tools||{version:"v1.2.7"};var b;b=a.tools.rangeinput={conf:{min:0,max:100,step:"any",steps:0,value:0,precision:undefined,vertical:0,keyboard:!0,progress:!1,speed:100,css:{input:"range",slider:"slider",progress:"progress",handle:"handle"}}};var c,d;a.fn.drag=function(b){document.ondragstart=function(){return!1},b=a.extend({x:!0,y:!0,drag:!0},b),c=c||a(document).on("mousedown mouseup",function(e){var f=a(e.target);if(e.type=="mousedown"&&f.data("drag")){var g=f.position(),h=e.pageX-g.left,i=e.pageY-g.top,j=!0;c.on("mousemove.drag",function(a){var c=a.pageX-h,e=a.pageY-i,g={};b.x&&(g.left=c),b.y&&(g.top=e),j&&(f.trigger("dragStart"),j=!1),b.drag&&f.css(g),f.trigger("drag",[e,c]),d=f}),e.preventDefault()}else try{d&&d.trigger("dragEnd")}finally{c.off("mousemove.drag"),d=null}});return this.data("drag",!0)};function e(a,b){var c=Math.pow(10,b);return Math.round(a*c)/c}function f(a,b){var c=parseInt(a.css(b),10);if(c)return c;var d=a[0].currentStyle;return d&&d.width&&parseInt(d.width,10)}function g(a){var b=a.data("events");return b&&b.onSlide}function h(b,c){var d=this,h=c.css,i=a("<div><div/><a href='#'/></div>").data("rangeinput",d),j,k,l,m,n;b.before(i);var o=i.addClass(h.slider).find("a").addClass(h.handle),p=i.find("div").addClass(h.progress);a.each("min,max,step,value".split(","),function(a,d){var e=b.attr(d);parseFloat(e)&&(c[d]=parseFloat(e,10))});var q=c.max-c.min,r=c.step=="any"?0:c.step,s=c.precision;s===undefined&&(s=r.toString().split("."),s=s.length===2?s[1].length:0);if(b.attr("type")=="range"){var t=b.clone().wrap("<div/>").parent().html(),u=a(t.replace(/type/i,"type=text data-orig-type"));u.val(c.value),b.replaceWith(u),b=u}b.addClass(h.input);var v=a(d).add(b),w=!0;function x(a,f,g,h){g===undefined?g=f/m*q:h&&(g-=c.min),r&&(g=Math.round(g/r)*r);if(f===undefined||r)f=g*m/q;if(isNaN(g))return d;f=Math.max(0,Math.min(f,m)),g=f/m*q;if(h||!j)g+=c.min;j&&(h?f=m-f:g=c.max-g),g=e(g,s);var i=a.type=="click";if(w&&k!==undefined&&!i){a.type="onSlide",v.trigger(a,[g,f]);if(a.isDefaultPrevented())return d}var l=i?c.speed:0,t=i?function(){a.type="change",v.trigger(a,[g])}:null;j?(o.animate({top:f},l,t),c.progress&&p.animate({height:m-f+o.height()/2},l)):(o.animate({left:f},l,t),c.progress&&p.animate({width:f+o.width()/2},l)),k=g,n=f,b.val(g);return d}a.extend(d,{getValue:function(){return k},setValue:function(b,c){y();return x(c||a.Event("api"),undefined,b,!0)},getConf:function(){return c},getProgress:function(){return p},getHandle:function(){return o},getInput:function(){return b},step:function(b,e){e=e||a.Event();var f=c.step=="any"?1:c.step;d.setValue(k+f*(b||1),e)},stepUp:function(a){return d.step(a||1)},stepDown:function(a){return d.step(-a||-1)}}),a.each("onSlide,change".split(","),function(b,e){a.isFunction(c[e])&&a(d).on(e,c[e]),d[e]=function(b){b&&a(d).on(e,b);return d}}),o.drag({drag:!1}).on("dragStart",function(){y(),w=g(a(d))||g(b)}).on("drag",function(a,c,d){if(b.is(":disabled"))return!1;x(a,j?c:d)}).on("dragEnd",function(a){a.isDefaultPrevented()||(a.type="change",v.trigger(a,[k]))}).click(function(a){return a.preventDefault()}),i.click(function(a){if(b.is(":disabled")||a.target==o[0])return a.preventDefault();y();var c=j?o.height()/2:o.width()/2;x(a,j?m-l-c+a.pageY:a.pageX-l-c)}),c.keyboard&&b.keydown(function(c){if(!b.attr("readonly")){var e=c.keyCode,f=a([75,76,38,33,39]).index(e)!=-1,g=a([74,72,40,34,37]).index(e)!=-1;if((f||g)&&!(c.shiftKey||c.altKey||c.ctrlKey)){f?d.step(e==33?10:1,c):g&&d.step(e==34?-10:-1,c);return c.preventDefault()}}}),b.blur(function(b){var c=a(this).val();c!==k&&d.setValue(c,b)}),a.extend(b[0],{stepUp:d.stepUp,stepDown:d.stepDown});function y(){j=c.vertical||f(i,"height")>f(i,"width"),j?(m=f(i,"height")-f(o,"height"),l=i.offset().top+m):(m=f(i,"width")-f(o,"width"),l=i.offset().left)}function z(){y(),d.setValue(c.value!==undefined?c.value:c.min)}z(),m||a(window).load(z)}a.expr[":"].range=function(b){var c=b.getAttribute("type");return c&&c=="range"||a(b).filter("input").data("rangeinput")},a.fn.rangeinput=function(c){if(this.data("rangeinput"))return this;c=a.extend(!0,{},b.conf,c);var d;this.each(function(){var b=new h(a(this),a.extend(!0,{},c)),e=b.getInput().data("rangeinput",b);d=d?d.add(e):e});return d?d:this}})(jQuery);

View file

@ -92,6 +92,7 @@
@CommentBoxFullBorderColor: @Grey5; @CommentBoxFullBorderColor: @Grey5;
@TagColor: @Grey1; @TagColor: @Grey1;
@MentionColor: @Grey4;
@JotToolsBackgroundColor: @lilacDark; @JotToolsBackgroundColor: @lilacDark;
@JotToolsBorderColor: @Metalic2; @JotToolsBorderColor: @Metalic2;

View file

@ -404,9 +404,6 @@ code {
padding: 10px; padding: 10px;
margin-top: 20px; margin-top: 20px;
} }
textarea {
font-size: 20px;
}
#panel { #panel {
position: absolute; position: absolute;
width: 10em; width: 10em;
@ -1088,7 +1085,6 @@ section {
padding: 0.3em; padding: 0.3em;
} }
.wall-item-comment-wrapper .comment-edit-text-full { .wall-item-comment-wrapper .comment-edit-text-full {
font-size: 20px;
height: 4em; height: 4em;
color: #2d2d2d; color: #2d2d2d;
border: 1px solid #2d2d2d; border: 1px solid #2d2d2d;
@ -1142,23 +1138,46 @@ section {
padding-top: 5px; padding-top: 5px;
} }
.tag { .tag {
background: url("../../../images/tag_b.png") no-repeat center left; background: url("icons/tag.png") no-repeat center right;
color: #ffffff; color: #ffffff;
padding-right: 8px;
padding-left: 3px; padding-left: 3px;
} }
.tag a { .tag a {
padding-right: 8px;
background: url("../../../images/tag.png") no-repeat center right;
color: #ffffff; color: #ffffff;
} }
.filesavetags { .mention {
padding: 3px 0px 3px 0px; background: url("icons/men.png") no-repeat 1px center;
opacity: 0.5; color: #666666;
padding-right: 3px;
padding-left: 18px;
} }
.mention a {
color: #666666;
}
.folder {
background: url("icons/folder.png") no-repeat 1px center;
color: #666666;
padding-right: 3px;
padding-left: 15px;
}
.folder a {
color: #666666;
}
.category {
background: url("icons/category.png") no-repeat 1px center;
color: #666666;
padding-right: 3px;
padding-left: 15px;
}
.category a {
color: #666666;
}
/*.filesavetags {
padding: 3px 0px 3px 0px;
opacity: 0.5;
}*/
.wwto { .wwto {
position: absolute !important;
width: 25px;
height: 25px;
background: #FFFFFF; background: #FFFFFF;
border: 2px solid #364e59; border: 2px solid #364e59;
height: 25px; height: 25px;
@ -1334,9 +1353,6 @@ span[id^="showmore-wrap"] {
border: 1px solid #999999; border: 1px solid #999999;
padding: 0.3em; padding: 0.3em;
} }
#jot .profile-jot-text:focus {
font-size: 20px;
}
#jot #jot-tools { #jot #jot-tools {
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
@ -2147,3 +2163,47 @@ footer {
.videobb:hover { .videobb:hover {
background-position: -112px -16px; background-position: -112px -16px;
} }
/** range input css **/
/* slider root element */
.slider {
height: 2px;
position: relative;
cursor: pointer;
border: 1px solid #333;
width: 200px;
margin: 10px 0px 10px 0px;
float: left;
}
/* progress bar (enabled with progress: true) */
.progress {
height: 9px;
background-color: #C5FF00;
display: none;
opacity: 0.6;
}
/* drag handle */
.handle {
background-color: #ccc;
height: 16px;
width: 8px;
top: -8px;
position: absolute;
display: block;
margin-top: 1px;
border: 1px solid #000;
cursor: move;
-moz-border-radius: 0 0 5px 5px;
-webkit-border-radius: 0 0 5px 5px;
border-radius: 0 0 5px 5px;
-webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
}
/* the input field */
.range {
width: 20px!important;
font-size: 8pt;
margin-left: 10px;
border: 0px;
color: #999999;
}

View file

@ -71,9 +71,6 @@ code {
margin-top: 20px; margin-top: 20px;
} }
textarea { font-size: 20px; }
#panel { #panel {
position: absolute; position: absolute;
width: 10em; width: 10em;
@ -554,7 +551,6 @@ section {
padding:0.3em; padding:0.3em;
} }
.comment-edit-text-full { .comment-edit-text-full {
font-size: 20px;
height: 4em; height: 4em;
color: @CommentBoxFullColor; color: @CommentBoxFullColor;
border: 1px solid @CommentBoxFullBorderColor; border: 1px solid @CommentBoxFullBorderColor;
@ -595,19 +591,37 @@ section {
.wall-item-tags { padding-top: 5px; } .wall-item-tags { padding-top: 5px; }
.tag { .tag {
background: url("../../../images/tag_b.png") no-repeat center left; background: url("icons/tag.png") no-repeat center right;
color: @TagColor; color: @TagColor;
padding-right: 8px;
padding-left: 3px; padding-left: 3px;
a { a { color: @TagColor; }
padding-right: 8px;
background: url("../../../images/tag.png") no-repeat center right;
color: @TagColor;
}
} }
.filesavetags { .mention {
background: url("icons/men.png") no-repeat 1px center;
color: @MentionColor;
padding-right: 3px;
padding-left: 18px;
a { color: @MentionColor; }
}
.folder {
background: url("icons/folder.png") no-repeat 1px center;
color: @MentionColor;
padding-right: 3px;
padding-left: 15px;
a { color: @MentionColor; }
}
.category {
background: url("icons/category.png") no-repeat 1px center;
color: @MentionColor;
padding-right: 3px;
padding-left: 15px;
a { color: @MentionColor; }
}
/*.filesavetags {
padding: 3px 0px 3px 0px; padding: 3px 0px 3px 0px;
opacity: 0.5; opacity: 0.5;
} }*/
.wwto { .wwto {
position: absolute !important; position: absolute !important;
@ -756,8 +770,6 @@ span[id^="showmore-wrap"] {
color: @CommentBoxEmptyColor; color: @CommentBoxEmptyColor;
border: 1px solid @CommentBoxEmptyBorderColor; border: 1px solid @CommentBoxEmptyBorderColor;
padding:0.3em; padding:0.3em;
&:focus { font-size: 20px; }
} }
#jot-tools { #jot-tools {
@ -1463,3 +1475,48 @@ footer { height: 100px; display: table-row; }
.videobb:hover { background-position: -112px -16px; } .videobb:hover { background-position: -112px -16px; }
/** range input css **/
/* slider root element */
.slider {
height:2px;
position:relative;
cursor:pointer;
border:1px solid #333;
width:200px;
margin:10px 0px 10px 0px;
float: left;
}
/* progress bar (enabled with progress: true) */
.progress {
height:9px;
background-color:#C5FF00;
display:none;
opacity:0.6;
}
/* drag handle */
.handle {
background-color:#ccc;
height:16px;
width:8px;
top:-8px;
position:absolute;
display:block;
margin-top:1px;
border:1px solid #000;
cursor:move;
.roundbottom();
.shadow();
}
/* the input field */
.range {
width: 20px!important;
font-size: 8pt;
margin-left: 10px;
border: 0px;
color: @FieldHelpColor;
}

View file

@ -28,3 +28,28 @@
} }
"; ";
} }
$textarea_font_size = false;
$post_font_size = false;
$site_textarea_font_size = get_config("quattro","tfs");
$site_post_font_size = get_config("quattro","pfs");
if ($site_textarea_font_size===false) $site_textarea_font_size="20";
if ($site_post_font_size===false) $site_post_font_size="12";
if (local_user()) {
$textarea_font_size = get_pconfig(local_user(), "quattro","tfs");
$post_font_size = get_pconfig(local_user(), "quattro","pfs");
}
if ($textarea_font_size===false) $textarea_font_size = $site_textarea_font_size;
if ($post_font_size===false) $post_font_size = $site_post_font_size;
echo "
textarea { font-size: ${textarea_font_size}px; }
.wall-item-comment-wrapper .comment-edit-text-full { font-size: ${textarea_font_size}px; }
#jot .profile-jot-text:focus { font-size: ${textarea_font_size}px; }
.wall-item-container .wall-item-content { font-size: ${post_font_size}px; }
";

View file

@ -1,8 +1,32 @@
<script src="$baseurl/view/theme/quattro/jquery.tools.min.js"></script>
{{inc field_select.tpl with $field=$color}}{{endinc}} {{inc field_select.tpl with $field=$color}}{{endinc}}
{{inc field_select.tpl with $field=$align}}{{endinc}} {{inc field_select.tpl with $field=$align}}{{endinc}}
<div class="field">
<label for="id_$pfs.0">$pfs.1</label>
<input type="range" class="inputRange" id="id_$pfs.0" name="$pfs.0" value="$pfs.2" min="10" max="22" step="1" />
<span class="field_help"></span>
</div>
<div class="field">
<label for="id_$tfs.0">$tfs.1</label>
<input type="range" class="inputRange" id="id_$tfs.0" name="$tfs.0" value="$tfs.2" min="10" max="22" step="1" />
<span class="field_help"></span>
</div>
<div class="settings-submit-wrapper"> <div class="settings-submit-wrapper">
<input type="submit" value="$submit" class="settings-submit" name="quattro-settings-submit" /> <input type="submit" value="$submit" class="settings-submit" name="quattro-settings-submit" />
</div> </div>
<script>
$(".inputRange").rangeinput();
</script>

View file

@ -60,9 +60,18 @@
<div class="wall-item-links"> <div class="wall-item-links">
</div> </div>
<div class="wall-item-tags"> <div class="wall-item-tags">
{{ for $item.tags as $tag }} {{ for $item.hashtags as $tag }}
<span class='tag'>$tag</span> <span class='tag'>$tag</span>
{{ endfor }} {{ endfor }}
{{ for $item.mentions as $tag }}
<span class='mention'>$tag</span>
{{ endfor }}
{{ for $item.folders as $cat }}
<span class='folder'>$cat.name</a>{{if $cat.removeurl}} (<a href="$cat.removeurl" title="$remove">x</a>) {{endif}} </span>
{{ endfor }}
{{ for $item.categories as $cat }}
<span class='category'>$cat.name</a>{{if $cat.removeurl}} (<a href="$cat.removeurl" title="$remove">x</a>) {{endif}} </span>
{{ endfor }}
</div> </div>
</div> </div>
<div class="wall-item-bottom"> <div class="wall-item-bottom">