Merge branch 'master' of http://github.com/friendica/friendica
This commit is contained in:
commit
c44d068adf
2
boot.php
2
boot.php
|
@ -11,7 +11,7 @@ require_once('include/cache.php');
|
||||||
require_once('library/Mobile_Detect/Mobile_Detect.php');
|
require_once('library/Mobile_Detect/Mobile_Detect.php');
|
||||||
|
|
||||||
define ( 'FRIENDICA_PLATFORM', 'Friendica');
|
define ( 'FRIENDICA_PLATFORM', 'Friendica');
|
||||||
define ( 'FRIENDICA_VERSION', '3.0.1473' );
|
define ( 'FRIENDICA_VERSION', '3.0.1475' );
|
||||||
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
|
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
|
||||||
define ( 'DB_UPDATE_VERSION', 1156 );
|
define ( 'DB_UPDATE_VERSION', 1156 );
|
||||||
|
|
||||||
|
|
|
@ -626,13 +626,12 @@ function prepare_threads_body($a, $items, $cmnt_tpl, $page_writeable, $mode, $pr
|
||||||
if(strcmp(datetime_convert('UTC','UTC',$item['created']),datetime_convert('UTC','UTC','now - 12 hours')) > 0)
|
if(strcmp(datetime_convert('UTC','UTC',$item['created']),datetime_convert('UTC','UTC','now - 12 hours')) > 0)
|
||||||
$indent .= ' shiny';
|
$indent .= ' shiny';
|
||||||
|
|
||||||
|
|
||||||
localize_item($item);
|
localize_item($item);
|
||||||
|
|
||||||
$body = prepare_body($item,true);
|
$body = prepare_body($item,true);
|
||||||
|
|
||||||
list($categories, $folders) = get_cats_and_terms($item);
|
list($categories,$folders) = get_cats_and_terms($item);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$tmp_item = array(
|
$tmp_item = array(
|
||||||
// collapse comments in template. I don't like this much...
|
// collapse comments in template. I don't like this much...
|
||||||
|
@ -645,6 +644,10 @@ function prepare_threads_body($a, $items, $cmnt_tpl, $page_writeable, $mode, $pr
|
||||||
'tags' => template_escape($tags),
|
'tags' => template_escape($tags),
|
||||||
'hashtags' => template_escape($hashtags),
|
'hashtags' => template_escape($hashtags),
|
||||||
'mentions' => template_escape($mentions),
|
'mentions' => template_escape($mentions),
|
||||||
|
'txt_cats' => t('Categories:'),
|
||||||
|
'txt_folders' => t('Filed under:'),
|
||||||
|
'has_cats' => ((count($categories)) ? 'true' : ''),
|
||||||
|
'has_folders' => ((count($folders)) ? 'true' : ''),
|
||||||
'categories' => $categories,
|
'categories' => $categories,
|
||||||
'folders' => $folders,
|
'folders' => $folders,
|
||||||
'body' => template_escape($body),
|
'body' => template_escape($body),
|
||||||
|
@ -899,6 +902,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) {
|
||||||
|
|
||||||
$body = prepare_body($item,true);
|
$body = prepare_body($item,true);
|
||||||
|
|
||||||
|
|
||||||
list($categories, $folders) = get_cats_and_terms($item);
|
list($categories, $folders) = get_cats_and_terms($item);
|
||||||
//$tmp_item = replace_macros($tpl,array(
|
//$tmp_item = replace_macros($tpl,array(
|
||||||
$tmp_item = array(
|
$tmp_item = array(
|
||||||
|
@ -916,6 +920,10 @@ function conversation(&$a, $items, $mode, $update, $preview = false) {
|
||||||
'tags' => template_escape($tags),
|
'tags' => template_escape($tags),
|
||||||
'hashtags' => template_escape($hashtags),
|
'hashtags' => template_escape($hashtags),
|
||||||
'mentions' => template_escape($mentions),
|
'mentions' => template_escape($mentions),
|
||||||
|
'txt_cats' => t('Categories:'),
|
||||||
|
'txt_folders' => t('Filed under:'),
|
||||||
|
'has_cats' => ((count($categories)) ? 'true' : ''),
|
||||||
|
'has_folders' => ((count($folders)) ? 'true' : ''),
|
||||||
'categories' => $categories,
|
'categories' => $categories,
|
||||||
'folders' => $folders,
|
'folders' => $folders,
|
||||||
'text' => strip_tags(template_escape($body)),
|
'text' => strip_tags(template_escape($body)),
|
||||||
|
|
|
@ -1115,24 +1115,25 @@ function get_cats_and_terms($item) {
|
||||||
if (count($categories)) $categories[count($categories)-1]['last'] = true;
|
if (count($categories)) $categories[count($categories)-1]['last'] = true;
|
||||||
|
|
||||||
|
|
||||||
|
if(local_user() == $item['uid']) {
|
||||||
$matches = false; $first = true;
|
$matches = false; $first = true;
|
||||||
$cnt = preg_match_all('/\[(.*?)\]/',$item['file'],$matches,PREG_SET_ORDER);
|
$cnt = preg_match_all('/\[(.*?)\]/',$item['file'],$matches,PREG_SET_ORDER);
|
||||||
if($cnt) {
|
if($cnt) {
|
||||||
foreach($matches as $mtch) {
|
foreach($matches as $mtch) {
|
||||||
$folders[] = array(
|
$folders[] = array(
|
||||||
'name' => xmlify(file_tag_decode($mtch[1])),
|
'name' => xmlify(file_tag_decode($mtch[1])),
|
||||||
'url' => "#",
|
'url' => "#",
|
||||||
'removeurl' => ((local_user() == $item['uid'])?$a->get_baseurl() . '/filerm/' . $item['id'] . '?f=&term=' . xmlify(file_tag_decode($mtch[1])):""),
|
'removeurl' => ((local_user() == $item['uid'])?$a->get_baseurl() . '/filerm/' . $item['id'] . '?f=&term=' . xmlify(file_tag_decode($mtch[1])):""),
|
||||||
'first' => $first,
|
'first' => $first,
|
||||||
'last' => false
|
'last' => false
|
||||||
);
|
);
|
||||||
$first = false;
|
$first = false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (count($folders)) $folders[count($folders)-1]['last'] = true;
|
if (count($folders)) $folders[count($folders)-1]['last'] = true;
|
||||||
|
|
||||||
return array($categories, $folders);
|
return array($categories, $folders);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -214,6 +214,10 @@ class Item extends BaseObject {
|
||||||
'tags' => $tags,
|
'tags' => $tags,
|
||||||
'hashtags' => $hashtags,
|
'hashtags' => $hashtags,
|
||||||
'mentions' => $mentions,
|
'mentions' => $mentions,
|
||||||
|
'txt_cats' => t('Categories:'),
|
||||||
|
'txt_folders' => t('Filed under:'),
|
||||||
|
'has_cats' => ((count($categories)) ? 'true' : ''),
|
||||||
|
'has_folders' => ((count($folders)) ? 'true' : ''),
|
||||||
'categories' => $categories,
|
'categories' => $categories,
|
||||||
'folders' => $folders,
|
'folders' => $folders,
|
||||||
'body' => template_escape($body),
|
'body' => template_escape($body),
|
||||||
|
|
308
util/messages.po
308
util/messages.po
|
@ -6,9 +6,9 @@
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: 3.0.1473\n"
|
"Project-Id-Version: 3.0.1475\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2012-09-21 10:00-0700\n"
|
"POT-Creation-Date: 2012-09-23 10:00-0700\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -131,7 +131,7 @@ msgstr ""
|
||||||
#: ../../mod/photos.php:1378 ../../mod/photos.php:1419
|
#: ../../mod/photos.php:1378 ../../mod/photos.php:1419
|
||||||
#: ../../mod/photos.php:1451 ../../mod/install.php:246
|
#: ../../mod/photos.php:1451 ../../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:691 ../../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
|
||||||
#: ../../mod/settings.php:769 ../../mod/settings.php:976
|
#: ../../mod/settings.php:769 ../../mod/settings.php:976
|
||||||
#: ../../mod/group.php:85 ../../mod/mood.php:137 ../../mod/message.php:294
|
#: ../../mod/group.php:85 ../../mod/mood.php:137 ../../mod/message.php:294
|
||||||
|
@ -176,7 +176,7 @@ msgstr ""
|
||||||
#: ../../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:608 ../../object/Item.php:532
|
#: ../../include/conversation.php:609 ../../object/Item.php:555
|
||||||
msgid "Submit"
|
msgid "Submit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -231,7 +231,7 @@ msgstr ""
|
||||||
msgid "Edit event"
|
msgid "Edit event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/events.php:323 ../../include/text.php:1147
|
#: ../../mod/events.php:323 ../../include/text.php:1186
|
||||||
msgid "link to source"
|
msgid "link to source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -307,7 +307,7 @@ msgstr ""
|
||||||
#: ../../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:1290
|
#: ../../include/conversation.php:1303
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -428,7 +428,7 @@ msgstr ""
|
||||||
|
|
||||||
#: ../../mod/photos.php:584 ../../mod/like.php:145 ../../mod/tagger.php:62
|
#: ../../mod/photos.php:584 ../../mod/like.php:145 ../../mod/tagger.php:62
|
||||||
#: ../../addon/communityhome/communityhome.php:163
|
#: ../../addon/communityhome/communityhome.php:163
|
||||||
#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1399
|
#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1438
|
||||||
#: ../../include/diaspora.php:1824 ../../include/conversation.php:125
|
#: ../../include/diaspora.php:1824 ../../include/conversation.php:125
|
||||||
#: ../../include/conversation.php:253
|
#: ../../include/conversation.php:253
|
||||||
msgid "photo"
|
msgid "photo"
|
||||||
|
@ -536,8 +536,8 @@ msgstr ""
|
||||||
msgid "Use as profile photo"
|
msgid "Use as profile photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/photos.php:1224 ../../mod/content.php:601
|
#: ../../mod/photos.php:1224 ../../mod/content.php:603
|
||||||
#: ../../include/conversation.php:435 ../../object/Item.php:103
|
#: ../../include/conversation.php:436 ../../object/Item.php:103
|
||||||
msgid "Private Message"
|
msgid "Private Message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -577,52 +577,52 @@ msgstr ""
|
||||||
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/photos.php:1356 ../../mod/content.php:665
|
#: ../../mod/photos.php:1356 ../../mod/content.php:667
|
||||||
#: ../../include/conversation.php:582 ../../object/Item.php:185
|
#: ../../include/conversation.php:583 ../../object/Item.php:195
|
||||||
msgid "I like this (toggle)"
|
msgid "I like this (toggle)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/photos.php:1357 ../../mod/content.php:666
|
#: ../../mod/photos.php:1357 ../../mod/content.php:668
|
||||||
#: ../../include/conversation.php:583 ../../object/Item.php:186
|
#: ../../include/conversation.php:584 ../../object/Item.php:196
|
||||||
msgid "I don't like this (toggle)"
|
msgid "I don't like this (toggle)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/photos.php:1358 ../../include/conversation.php:1251
|
#: ../../mod/photos.php:1358 ../../include/conversation.php:1264
|
||||||
msgid "Share"
|
msgid "Share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/photos.php:1359 ../../mod/editpost.php:112
|
#: ../../mod/photos.php:1359 ../../mod/editpost.php:112
|
||||||
#: ../../mod/content.php:482 ../../mod/content.php:843
|
#: ../../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:678
|
#: ../../mod/message.php:481 ../../include/conversation.php:685
|
||||||
#: ../../include/conversation.php:928 ../../include/conversation.php:1270
|
#: ../../include/conversation.php:940 ../../include/conversation.php:1283
|
||||||
#: ../../object/Item.php:237
|
#: ../../object/Item.php:253
|
||||||
msgid "Please wait"
|
msgid "Please wait"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/photos.php:1375 ../../mod/photos.php:1416
|
#: ../../mod/photos.php:1375 ../../mod/photos.php:1416
|
||||||
#: ../../mod/photos.php:1448 ../../mod/content.php:688
|
#: ../../mod/photos.php:1448 ../../mod/content.php:690
|
||||||
#: ../../include/conversation.php:605 ../../object/Item.php:529
|
#: ../../include/conversation.php:606 ../../object/Item.php:552
|
||||||
msgid "This is you"
|
msgid "This is you"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/photos.php:1377 ../../mod/photos.php:1418
|
#: ../../mod/photos.php:1377 ../../mod/photos.php:1418
|
||||||
#: ../../mod/photos.php:1450 ../../mod/content.php:690
|
#: ../../mod/photos.php:1450 ../../mod/content.php:692
|
||||||
#: ../../include/conversation.php:607 ../../boot.php:574
|
#: ../../include/conversation.php:608 ../../boot.php:574
|
||||||
#: ../../object/Item.php:531
|
#: ../../object/Item.php:554
|
||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/photos.php:1379 ../../mod/editpost.php:133
|
#: ../../mod/photos.php:1379 ../../mod/editpost.php:133
|
||||||
#: ../../mod/content.php:700 ../../include/conversation.php:617
|
#: ../../mod/content.php:702 ../../include/conversation.php:618
|
||||||
#: ../../include/conversation.php:1288 ../../object/Item.php:541
|
#: ../../include/conversation.php:1301 ../../object/Item.php:564
|
||||||
msgid "Preview"
|
msgid "Preview"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/photos.php:1479 ../../mod/content.php:439
|
#: ../../mod/photos.php:1479 ../../mod/content.php:439
|
||||||
#: ../../mod/content.php:721 ../../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:447 ../../include/conversation.php:881
|
#: ../../include/conversation.php:448 ../../include/conversation.php:890
|
||||||
#: ../../object/Item.php:116
|
#: ../../object/Item.php:116
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -689,29 +689,29 @@ msgstr ""
|
||||||
msgid "Edit post"
|
msgid "Edit post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/editpost.php:88 ../../include/conversation.php:1237
|
#: ../../mod/editpost.php:88 ../../include/conversation.php:1250
|
||||||
msgid "Post to Email"
|
msgid "Post to Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/editpost.php:103 ../../mod/content.php:708
|
#: ../../mod/editpost.php:103 ../../mod/content.php:710
|
||||||
#: ../../mod/settings.php:605 ../../include/conversation.php:440
|
#: ../../mod/settings.php:605 ../../include/conversation.php:441
|
||||||
#: ../../object/Item.php:107
|
#: ../../object/Item.php:107
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../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:1252
|
#: ../../include/conversation.php:1265
|
||||||
msgid "Upload photo"
|
msgid "Upload photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/editpost.php:105 ../../include/conversation.php:1254
|
#: ../../mod/editpost.php:105 ../../include/conversation.php:1267
|
||||||
msgid "Attach file"
|
msgid "Attach file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../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:1256
|
#: ../../include/conversation.php:1269
|
||||||
msgid "Insert web link"
|
msgid "Insert web link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -727,35 +727,35 @@ msgstr ""
|
||||||
msgid "Insert Vorbis [.ogg] audio"
|
msgid "Insert Vorbis [.ogg] audio"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/editpost.php:110 ../../include/conversation.php:1262
|
#: ../../mod/editpost.php:110 ../../include/conversation.php:1275
|
||||||
msgid "Set your location"
|
msgid "Set your location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/editpost.php:111 ../../include/conversation.php:1264
|
#: ../../mod/editpost.php:111 ../../include/conversation.php:1277
|
||||||
msgid "Clear browser location"
|
msgid "Clear browser location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/editpost.php:113 ../../include/conversation.php:1271
|
#: ../../mod/editpost.php:113 ../../include/conversation.php:1284
|
||||||
msgid "Permission settings"
|
msgid "Permission settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/editpost.php:121 ../../include/conversation.php:1280
|
#: ../../mod/editpost.php:121 ../../include/conversation.php:1293
|
||||||
msgid "CC: email addresses"
|
msgid "CC: email addresses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/editpost.php:122 ../../include/conversation.php:1281
|
#: ../../mod/editpost.php:122 ../../include/conversation.php:1294
|
||||||
msgid "Public post"
|
msgid "Public post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/editpost.php:125 ../../include/conversation.php:1267
|
#: ../../mod/editpost.php:125 ../../include/conversation.php:1280
|
||||||
msgid "Set title"
|
msgid "Set title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/editpost.php:127 ../../include/conversation.php:1269
|
#: ../../mod/editpost.php:127 ../../include/conversation.php:1282
|
||||||
msgid "Categories (comma-separated list)"
|
msgid "Categories (comma-separated list)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/editpost.php:128 ../../include/conversation.php:1283
|
#: ../../mod/editpost.php:128 ../../include/conversation.php:1296
|
||||||
msgid "Example: bob@example.com, mary@example.com"
|
msgid "Example: bob@example.com, mary@example.com"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1296,148 +1296,156 @@ msgstr ""
|
||||||
msgid "Group: "
|
msgid "Group: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/content.php:438 ../../mod/content.php:720
|
#: ../../mod/content.php:438 ../../mod/content.php:722
|
||||||
#: ../../include/conversation.php:446 ../../include/conversation.php:880
|
#: ../../include/conversation.php:447 ../../include/conversation.php:889
|
||||||
#: ../../object/Item.php:115
|
#: ../../object/Item.php:115
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/content.php:455 ../../mod/content.php:813
|
#: ../../mod/content.php:455 ../../mod/content.php:815
|
||||||
#: ../../mod/content.php:814 ../../include/conversation.php:646
|
#: ../../mod/content.php:816 ../../include/conversation.php:653
|
||||||
#: ../../include/conversation.php:647 ../../include/conversation.php:897
|
#: ../../include/conversation.php:654 ../../include/conversation.php:907
|
||||||
#: ../../object/Item.php:206 ../../object/Item.php:207
|
#: ../../object/Item.php:222 ../../object/Item.php:223
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "View %s's profile @ %s"
|
msgid "View %s's profile @ %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/content.php:465 ../../mod/content.php:825
|
#: ../../mod/content.php:465 ../../mod/content.php:827
|
||||||
#: ../../include/conversation.php:660 ../../include/conversation.php:911
|
#: ../../include/conversation.php:667 ../../include/conversation.php:923
|
||||||
#: ../../object/Item.php:219
|
#: ../../object/Item.php:235
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s from %s"
|
msgid "%s from %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/content.php:480 ../../include/conversation.php:926
|
#: ../../mod/content.php:480 ../../include/conversation.php:938
|
||||||
msgid "View in context"
|
msgid "View in context"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/content.php:586 ../../include/conversation.php:687
|
#: ../../mod/content.php:586 ../../include/conversation.php:694
|
||||||
#: ../../object/Item.php:256
|
#: ../../object/Item.php:272
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%d comment"
|
msgid "%d comment"
|
||||||
msgid_plural "%d comments"
|
msgid_plural "%d comments"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: ../../mod/content.php:587 ../../addon/page/page.php:76
|
#: ../../mod/content.php:588 ../../include/text.php:1442
|
||||||
|
#: ../../include/conversation.php:696 ../../object/Item.php:274
|
||||||
|
#: ../../object/Item.php:287
|
||||||
|
msgid "comment"
|
||||||
|
msgid_plural "comments"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: ../../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:688
|
#: ../../include/contact_widgets.php:195 ../../include/conversation.php:697
|
||||||
#: ../../boot.php:575 ../../object/Item.php:257
|
#: ../../boot.php:575 ../../object/Item.php:275
|
||||||
msgid "show more"
|
msgid "show more"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/content.php:665 ../../include/conversation.php:582
|
#: ../../mod/content.php:667 ../../include/conversation.php:583
|
||||||
#: ../../object/Item.php:185
|
#: ../../object/Item.php:195
|
||||||
msgid "like"
|
msgid "like"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/content.php:666 ../../include/conversation.php:583
|
#: ../../mod/content.php:668 ../../include/conversation.php:584
|
||||||
#: ../../object/Item.php:186
|
#: ../../object/Item.php:196
|
||||||
msgid "dislike"
|
msgid "dislike"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/content.php:668 ../../include/conversation.php:585
|
#: ../../mod/content.php:670 ../../include/conversation.php:586
|
||||||
#: ../../object/Item.php:188
|
#: ../../object/Item.php:198
|
||||||
msgid "Share this"
|
msgid "Share this"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/content.php:668 ../../include/conversation.php:585
|
#: ../../mod/content.php:670 ../../include/conversation.php:586
|
||||||
#: ../../object/Item.php:188
|
#: ../../object/Item.php:198
|
||||||
msgid "share"
|
msgid "share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/content.php:692 ../../include/conversation.php:609
|
#: ../../mod/content.php:694 ../../include/conversation.php:610
|
||||||
#: ../../object/Item.php:533
|
#: ../../object/Item.php:556
|
||||||
msgid "Bold"
|
msgid "Bold"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/content.php:693 ../../include/conversation.php:610
|
#: ../../mod/content.php:695 ../../include/conversation.php:611
|
||||||
#: ../../object/Item.php:534
|
#: ../../object/Item.php:557
|
||||||
msgid "Italic"
|
msgid "Italic"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/content.php:694 ../../include/conversation.php:611
|
#: ../../mod/content.php:696 ../../include/conversation.php:612
|
||||||
#: ../../object/Item.php:535
|
#: ../../object/Item.php:558
|
||||||
msgid "Underline"
|
msgid "Underline"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/content.php:695 ../../include/conversation.php:612
|
#: ../../mod/content.php:697 ../../include/conversation.php:613
|
||||||
#: ../../object/Item.php:536
|
#: ../../object/Item.php:559
|
||||||
msgid "Quote"
|
msgid "Quote"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/content.php:696 ../../include/conversation.php:613
|
#: ../../mod/content.php:698 ../../include/conversation.php:614
|
||||||
#: ../../object/Item.php:537
|
#: ../../object/Item.php:560
|
||||||
msgid "Code"
|
msgid "Code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/content.php:697 ../../include/conversation.php:614
|
#: ../../mod/content.php:699 ../../include/conversation.php:615
|
||||||
#: ../../object/Item.php:538
|
#: ../../object/Item.php:561
|
||||||
msgid "Image"
|
msgid "Image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/content.php:698 ../../include/conversation.php:615
|
#: ../../mod/content.php:700 ../../include/conversation.php:616
|
||||||
#: ../../object/Item.php:539
|
#: ../../object/Item.php:562
|
||||||
msgid "Link"
|
msgid "Link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/content.php:699 ../../include/conversation.php:616
|
#: ../../mod/content.php:701 ../../include/conversation.php:617
|
||||||
#: ../../object/Item.php:540
|
#: ../../object/Item.php:563
|
||||||
msgid "Video"
|
msgid "Video"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/content.php:733 ../../include/conversation.php:546
|
#: ../../mod/content.php:735 ../../include/conversation.php:547
|
||||||
#: ../../object/Item.php:169
|
#: ../../object/Item.php:179
|
||||||
msgid "add star"
|
msgid "add star"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/content.php:734 ../../include/conversation.php:547
|
#: ../../mod/content.php:736 ../../include/conversation.php:548
|
||||||
#: ../../object/Item.php:170
|
#: ../../object/Item.php:180
|
||||||
msgid "remove star"
|
msgid "remove star"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/content.php:735 ../../include/conversation.php:548
|
#: ../../mod/content.php:737 ../../include/conversation.php:549
|
||||||
#: ../../object/Item.php:171
|
#: ../../object/Item.php:181
|
||||||
msgid "toggle star status"
|
msgid "toggle star status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/content.php:738 ../../include/conversation.php:551
|
#: ../../mod/content.php:740 ../../include/conversation.php:552
|
||||||
#: ../../object/Item.php:174
|
#: ../../object/Item.php:184
|
||||||
msgid "starred"
|
msgid "starred"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/content.php:739 ../../include/conversation.php:552
|
#: ../../mod/content.php:741 ../../include/conversation.php:553
|
||||||
#: ../../object/Item.php:175
|
#: ../../object/Item.php:185
|
||||||
msgid "add tag"
|
msgid "add tag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/content.php:743 ../../include/conversation.php:450
|
#: ../../mod/content.php:745 ../../include/conversation.php:451
|
||||||
#: ../../object/Item.php:119
|
#: ../../object/Item.php:119
|
||||||
msgid "save to folder"
|
msgid "save to folder"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/content.php:815 ../../include/conversation.php:648
|
#: ../../mod/content.php:817 ../../include/conversation.php:655
|
||||||
#: ../../object/Item.php:208
|
#: ../../object/Item.php:224
|
||||||
msgid "to"
|
msgid "to"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/content.php:816 ../../include/conversation.php:649
|
#: ../../mod/content.php:818 ../../include/conversation.php:656
|
||||||
#: ../../object/Item.php:209
|
#: ../../object/Item.php:225
|
||||||
msgid "Wall-to-Wall"
|
msgid "Wall-to-Wall"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/content.php:817 ../../include/conversation.php:650
|
#: ../../mod/content.php:819 ../../include/conversation.php:657
|
||||||
#: ../../object/Item.php:210
|
#: ../../object/Item.php:226
|
||||||
msgid "via Wall-To-Wall:"
|
msgid "via Wall-To-Wall:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -2687,7 +2695,7 @@ msgstr ""
|
||||||
|
|
||||||
#: ../../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:1188 ../../include/conversation.php:1205
|
#: ../../include/conversation.php:1201 ../../include/conversation.php:1218
|
||||||
msgid "Please enter a link URL:"
|
msgid "Please enter a link URL:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4412,8 +4420,8 @@ msgstr ""
|
||||||
msgid "Edit visibility"
|
msgid "Edit visibility"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/filer.php:29 ../../include/conversation.php:1192
|
#: ../../mod/filer.php:29 ../../include/conversation.php:1205
|
||||||
#: ../../include/conversation.php:1209
|
#: ../../include/conversation.php:1222
|
||||||
msgid "Save to Folder:"
|
msgid "Save to Folder:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -5345,7 +5353,7 @@ msgid "Latest likes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../addon/communityhome/communityhome.php:155
|
#: ../../addon/communityhome/communityhome.php:155
|
||||||
#: ../../view/theme/diabook/theme.php:562 ../../include/text.php:1397
|
#: ../../view/theme/diabook/theme.php:562 ../../include/text.php:1436
|
||||||
#: ../../include/conversation.php:117 ../../include/conversation.php:245
|
#: ../../include/conversation.php:117 ../../include/conversation.php:245
|
||||||
msgid "event"
|
msgid "event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -7804,47 +7812,27 @@ msgstr ""
|
||||||
msgid "bytes"
|
msgid "bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/text.php:1027 ../../include/text.php:1042
|
#: ../../include/text.php:1034 ../../include/text.php:1046
|
||||||
msgid "remove"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../include/text.php:1027 ../../include/text.php:1042
|
|
||||||
msgid "[remove]"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../include/text.php:1030
|
|
||||||
msgid "Categories:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../include/text.php:1045
|
|
||||||
msgid "Filed under:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../include/text.php:1061 ../../include/text.php:1073
|
|
||||||
msgid "Click to open/close"
|
msgid "Click to open/close"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/text.php:1179 ../../include/user.php:236
|
#: ../../include/text.php:1218 ../../include/user.php:236
|
||||||
msgid "default"
|
msgid "default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/text.php:1191
|
#: ../../include/text.php:1230
|
||||||
msgid "Select an alternate language"
|
msgid "Select an alternate language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/text.php:1401
|
#: ../../include/text.php:1440
|
||||||
msgid "activity"
|
msgid "activity"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/text.php:1403
|
#: ../../include/text.php:1443
|
||||||
msgid "comment"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../include/text.php:1404
|
|
||||||
msgid "post"
|
msgid "post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/text.php:1559
|
#: ../../include/text.php:1598
|
||||||
msgid "Item filed"
|
msgid "Item filed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -8518,34 +8506,34 @@ msgstr ""
|
||||||
msgid "stopped following"
|
msgid "stopped following"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/Contact.php:220 ../../include/conversation.php:1089
|
#: ../../include/Contact.php:220 ../../include/conversation.php:1102
|
||||||
msgid "Poke"
|
msgid "Poke"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/Contact.php:221 ../../include/conversation.php:1083
|
#: ../../include/Contact.php:221 ../../include/conversation.php:1096
|
||||||
msgid "View Status"
|
msgid "View Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/Contact.php:222 ../../include/conversation.php:1084
|
#: ../../include/Contact.php:222 ../../include/conversation.php:1097
|
||||||
msgid "View Profile"
|
msgid "View Profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/Contact.php:223 ../../include/conversation.php:1085
|
#: ../../include/Contact.php:223 ../../include/conversation.php:1098
|
||||||
msgid "View Photos"
|
msgid "View Photos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/Contact.php:224 ../../include/Contact.php:237
|
#: ../../include/Contact.php:224 ../../include/Contact.php:237
|
||||||
#: ../../include/conversation.php:1086
|
#: ../../include/conversation.php:1099
|
||||||
msgid "Network Posts"
|
msgid "Network Posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/Contact.php:225 ../../include/Contact.php:237
|
#: ../../include/Contact.php:225 ../../include/Contact.php:237
|
||||||
#: ../../include/conversation.php:1087
|
#: ../../include/conversation.php:1100
|
||||||
msgid "Edit Contact"
|
msgid "Edit Contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/Contact.php:226 ../../include/Contact.php:237
|
#: ../../include/Contact.php:226 ../../include/Contact.php:237
|
||||||
#: ../../include/conversation.php:1088
|
#: ../../include/conversation.php:1101
|
||||||
msgid "Send PM"
|
msgid "Send PM"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -8563,106 +8551,110 @@ msgstr ""
|
||||||
msgid "%1$s marked %2$s's %3$s as favorite"
|
msgid "%1$s marked %2$s's %3$s as favorite"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:989
|
#: ../../include/conversation.php:998
|
||||||
|
msgid "remove"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../include/conversation.php:1002
|
||||||
msgid "Delete Selected Items"
|
msgid "Delete Selected Items"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:1147
|
#: ../../include/conversation.php:1160
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s likes this."
|
msgid "%s likes this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:1147
|
#: ../../include/conversation.php:1160
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s doesn't like this."
|
msgid "%s doesn't like this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:1151
|
#: ../../include/conversation.php:1164
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "<span %1$s>%2$d people</span> like this."
|
msgid "<span %1$s>%2$d people</span> like this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:1153
|
#: ../../include/conversation.php:1166
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "<span %1$s>%2$d people</span> don't like this."
|
msgid "<span %1$s>%2$d people</span> don't like this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:1159
|
#: ../../include/conversation.php:1172
|
||||||
msgid "and"
|
msgid "and"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:1162
|
#: ../../include/conversation.php:1175
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ", and %d other people"
|
msgid ", and %d other people"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:1163
|
#: ../../include/conversation.php:1176
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s like this."
|
msgid "%s like this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:1163
|
#: ../../include/conversation.php:1176
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s don't like this."
|
msgid "%s don't like this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:1187 ../../include/conversation.php:1204
|
#: ../../include/conversation.php:1200 ../../include/conversation.php:1217
|
||||||
msgid "Visible to <strong>everybody</strong>"
|
msgid "Visible to <strong>everybody</strong>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:1189 ../../include/conversation.php:1206
|
#: ../../include/conversation.php:1202 ../../include/conversation.php:1219
|
||||||
msgid "Please enter a video link/URL:"
|
msgid "Please enter a video link/URL:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:1190 ../../include/conversation.php:1207
|
#: ../../include/conversation.php:1203 ../../include/conversation.php:1220
|
||||||
msgid "Please enter an audio link/URL:"
|
msgid "Please enter an audio link/URL:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:1191 ../../include/conversation.php:1208
|
#: ../../include/conversation.php:1204 ../../include/conversation.php:1221
|
||||||
msgid "Tag term:"
|
msgid "Tag term:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:1193 ../../include/conversation.php:1210
|
#: ../../include/conversation.php:1206 ../../include/conversation.php:1223
|
||||||
msgid "Where are you right now?"
|
msgid "Where are you right now?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:1253
|
#: ../../include/conversation.php:1266
|
||||||
msgid "upload photo"
|
msgid "upload photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:1255
|
#: ../../include/conversation.php:1268
|
||||||
msgid "attach file"
|
msgid "attach file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:1257
|
#: ../../include/conversation.php:1270
|
||||||
msgid "web link"
|
msgid "web link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:1258
|
#: ../../include/conversation.php:1271
|
||||||
msgid "Insert video link"
|
msgid "Insert video link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:1259
|
#: ../../include/conversation.php:1272
|
||||||
msgid "video link"
|
msgid "video link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:1260
|
#: ../../include/conversation.php:1273
|
||||||
msgid "Insert audio link"
|
msgid "Insert audio link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:1261
|
#: ../../include/conversation.php:1274
|
||||||
msgid "audio link"
|
msgid "audio link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:1263
|
#: ../../include/conversation.php:1276
|
||||||
msgid "set location"
|
msgid "set location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:1265
|
#: ../../include/conversation.php:1278
|
||||||
msgid "clear location"
|
msgid "clear location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/conversation.php:1272
|
#: ../../include/conversation.php:1285
|
||||||
msgid "permissions"
|
msgid "permissions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -860,6 +860,7 @@ $a->strings["Request date"] = "Anfragedatum";
|
||||||
$a->strings["Email"] = "E-Mail";
|
$a->strings["Email"] = "E-Mail";
|
||||||
$a->strings["No registrations."] = "Keine Neuanmeldungen.";
|
$a->strings["No registrations."] = "Keine Neuanmeldungen.";
|
||||||
$a->strings["Deny"] = "Verwehren";
|
$a->strings["Deny"] = "Verwehren";
|
||||||
|
$a->strings["Site admin"] = "Seitenadministrator";
|
||||||
$a->strings["Register date"] = "Anmeldedatum";
|
$a->strings["Register date"] = "Anmeldedatum";
|
||||||
$a->strings["Last login"] = "Letzte Anmeldung";
|
$a->strings["Last login"] = "Letzte Anmeldung";
|
||||||
$a->strings["Last item"] = "Letzter Beitrag";
|
$a->strings["Last item"] = "Letzter Beitrag";
|
||||||
|
|
|
@ -30,6 +30,15 @@
|
||||||
<div class="wall-item-title" id="wall-item-title-$item.id">$item.title</div>
|
<div class="wall-item-title" id="wall-item-title-$item.id">$item.title</div>
|
||||||
<div class="wall-item-title-end"></div>
|
<div class="wall-item-title-end"></div>
|
||||||
<div class="wall-item-body" id="wall-item-body-$item.id" >$item.body</div>
|
<div class="wall-item-body" id="wall-item-body-$item.id" >$item.body</div>
|
||||||
|
{{ if $item.has_cats }}
|
||||||
|
<div class="categorytags"><span>$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"><span>$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 class="wall-item-tools" id="wall-item-tools-$item.id">
|
<div class="wall-item-tools" id="wall-item-tools-$item.id">
|
||||||
<div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-$item.id" >
|
<div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-$item.id" >
|
||||||
|
|
|
@ -36,6 +36,15 @@
|
||||||
<span class='tag'>$tag</span>
|
<span class='tag'>$tag</span>
|
||||||
{{ endfor }}
|
{{ endfor }}
|
||||||
</div>
|
</div>
|
||||||
|
{{ if $item.has_cats }}
|
||||||
|
<div class="categorytags"><span>$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"><span>$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">
|
||||||
|
|
|
@ -47,6 +47,15 @@
|
||||||
<span class='tag'>$tag</span>
|
<span class='tag'>$tag</span>
|
||||||
{{ endfor }}
|
{{ endfor }}
|
||||||
</div>
|
</div>
|
||||||
|
{{ if $item.has_cats }}
|
||||||
|
<div class="categorytags"><span>$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"><span>$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">
|
||||||
|
|
|
@ -40,6 +40,15 @@
|
||||||
<span class='tag'>$tag</span>
|
<span class='tag'>$tag</span>
|
||||||
{{ endfor }}
|
{{ endfor }}
|
||||||
</div>
|
</div>
|
||||||
|
{{ if $item.has_cats }}
|
||||||
|
<div class="categorytags"><span>$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"><span>$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">
|
||||||
|
|
|
@ -47,6 +47,15 @@
|
||||||
<span class='tag'>$tag</span>
|
<span class='tag'>$tag</span>
|
||||||
{{ endfor }}
|
{{ endfor }}
|
||||||
</div>
|
</div>
|
||||||
|
{{ if $item.has_cats }}
|
||||||
|
<div class="categorytags"><span>$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"><span>$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">
|
||||||
|
|
Loading…
Reference in a new issue