put tags in items

This commit is contained in:
friendica 2013-06-26 04:02:04 -07:00
parent 407473f2ce
commit bfc9cfb82f
4 changed files with 179 additions and 167 deletions

View File

@ -12,7 +12,7 @@ require_once('library/Mobile_Detect/Mobile_Detect.php');
require_once('include/features.php'); require_once('include/features.php');
define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_PLATFORM', 'Friendica');
define ( 'FRIENDICA_VERSION', '3.1.1738' ); define ( 'FRIENDICA_VERSION', '3.1.1743' );
define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
define ( 'DB_UPDATE_VERSION', 1163 ); define ( 'DB_UPDATE_VERSION', 1163 );
define ( 'EOL', "<br />\r\n" ); define ( 'EOL', "<br />\r\n" );

View File

@ -1269,11 +1269,42 @@ if(! function_exists('prepare_body')) {
* @hook prepare_body ('item'=>item array, 'html'=>body string) after first bbcode to html * @hook prepare_body ('item'=>item array, 'html'=>body string) after first bbcode to html
* @hook prepare_body_final ('item'=>item array, 'html'=>body string) after attach icons and blockquote special case handling (spoiler, author) * @hook prepare_body_final ('item'=>item array, 'html'=>body string) after attach icons and blockquote special case handling (spoiler, author)
*/ */
function prepare_body($item,$attach = false) { function prepare_body(&$item,$attach = false) {
$a = get_app(); $a = get_app();
call_hooks('prepare_body_init', $item); call_hooks('prepare_body_init', $item);
$searchpath = $a->get_baseurl()."/search?tag=";
$tags=array();
$hashtags = array();
$mentions = array();
if (!get_config('system','suppress_tags')) {
$taglist = q("SELECT `type`, `term`, `url` FROM `term` WHERE `otype` = %d AND `oid` = %d AND `type` IN (%d, %d) ORDER BY `tid`",
intval(TERM_OBJ_POST), intval($item['id']), intval(TERM_HASHTAG), intval(TERM_MENTION));
foreach($taglist as $tag) {
if ($tag["url"] == "")
$tag["url"] = $searchpath.strtolower($tag["term"]);
if ($tag["type"] == TERM_HASHTAG) {
$hashtags[] = "#<a href=\"".$tag["url"]."\" target=\"external-link\">".$tag["term"]."</a>";
$prefix = "#";
} elseif ($tag["type"] == TERM_MENTION) {
$mentions[] = "@<a href=\"".$tag["url"]."\" target=\"external-link\">".$tag["term"]."</a>";
$prefix = "@";
}
$tags[] = $prefix."<a href=\"".$tag["url"]."\" target=\"external-link\">".$tag["term"]."</a>";
}
}
$item['tags'] = $tags;
$item['hashtags'] = $hashtags;
$item['mentions'] = $mentions;
//$cachefile = get_cachefile($item["guid"]."-".strtotime($item["edited"])."-".hash("crc32", $item['body'])); //$cachefile = get_cachefile($item["guid"]."-".strtotime($item["edited"])."-".hash("crc32", $item['body']));
$cachefile = get_cachefile($item["guid"]."-".hash("md5", $item['body'])); $cachefile = get_cachefile($item["guid"]."-".hash("md5", $item['body']));

View File

@ -158,25 +158,6 @@ class Item extends BaseObject {
$hashtags = array(); $hashtags = array();
$mentions = array(); $mentions = array();
if (!get_config('system','suppress_tags')) {
$taglist = q("SELECT `type`, `term`, `url` FROM `term` WHERE `otype` = %d AND `oid` = %d AND `type` IN (%d, %d) ORDER BY `tid`",
intval(TERM_OBJ_POST), intval($item['id']), intval(TERM_HASHTAG), intval(TERM_MENTION));
foreach($taglist as $tag) {
if ($tag["url"] == "")
$tag["url"] = $searchpath.strtolower($tag["term"]);
if ($tag["type"] == TERM_HASHTAG) {
$hashtags[] = "#<a href=\"".$tag["url"]."\" target=\"external-link\">".$tag["term"]."</a>";
$prefix = "#";
} elseif ($tag["type"] == TERM_MENTION) {
$mentions[] = "@<a href=\"".$tag["url"]."\" target=\"external-link\">".$tag["term"]."</a>";
$prefix = "@";
}
$tags[] = $prefix."<a href=\"".$tag["url"]."\" target=\"external-link\">".$tag["term"]."</a>";
}
}
/*foreach(explode(',',$item['tag']) as $tag){ /*foreach(explode(',',$item['tag']) as $tag){
$tag = trim($tag); $tag = trim($tag);
@ -291,9 +272,9 @@ class Item extends BaseObject {
'template' => $this->get_template(), 'template' => $this->get_template(),
'type' => implode("",array_slice(explode("/",$item['verb']),-1)), 'type' => implode("",array_slice(explode("/",$item['verb']),-1)),
'tags' => $tags, 'tags' => $item['tags'],
'hashtags' => $hashtags, 'hashtags' => $item['hashtags'],
'mentions' => $mentions, 'mentions' => $item['mentions'],
'txt_cats' => t('Categories:'), 'txt_cats' => t('Categories:'),
'txt_folders' => t('Filed under:'), 'txt_folders' => t('Filed under:'),
'has_cats' => ((count($categories)) ? 'true' : ''), 'has_cats' => ((count($categories)) ? 'true' : ''),

View File

@ -6,9 +6,9 @@
#, fuzzy #, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 3.1.1738\n" "Project-Id-Version: 3.1.1743\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-06-21 00:01-0700\n" "POT-Creation-Date: 2013-06-26 00:01-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"
@ -21,7 +21,7 @@ msgstr ""
#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84 #: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
#: ../../include/nav.php:77 ../../mod/profperm.php:103 #: ../../include/nav.php:77 ../../mod/profperm.php:103
#: ../../mod/newmember.php:32 ../../view/theme/diabook/theme.php:88 #: ../../mod/newmember.php:32 ../../view/theme/diabook/theme.php:88
#: ../../boot.php:1947 #: ../../boot.php:1951
msgid "Profile" msgid "Profile"
msgstr "" msgstr ""
@ -30,7 +30,7 @@ msgid "Full Name:"
msgstr "" msgstr ""
#: ../../include/profile_advanced.php:17 ../../mod/directory.php:136 #: ../../include/profile_advanced.php:17 ../../mod/directory.php:136
#: ../../boot.php:1487 #: ../../boot.php:1491
msgid "Gender:" msgid "Gender:"
msgstr "" msgstr ""
@ -51,7 +51,7 @@ msgid "Age:"
msgstr "" msgstr ""
#: ../../include/profile_advanced.php:37 ../../mod/directory.php:138 #: ../../include/profile_advanced.php:37 ../../mod/directory.php:138
#: ../../boot.php:1490 #: ../../boot.php:1494
msgid "Status:" msgid "Status:"
msgstr "" msgstr ""
@ -65,7 +65,7 @@ msgid "Sexual Preference:"
msgstr "" msgstr ""
#: ../../include/profile_advanced.php:48 ../../mod/directory.php:140 #: ../../include/profile_advanced.php:48 ../../mod/directory.php:140
#: ../../boot.php:1492 #: ../../boot.php:1496
msgid "Homepage:" msgid "Homepage:"
msgstr "" msgstr ""
@ -468,7 +468,7 @@ msgid "Finishes:"
msgstr "" msgstr ""
#: ../../include/bb2diaspora.php:415 ../../include/event.php:40 #: ../../include/bb2diaspora.php:415 ../../include/event.php:40
#: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1485 #: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1489
msgid "Location:" msgid "Location:"
msgstr "" msgstr ""
@ -595,7 +595,7 @@ msgstr ""
msgid "An error occurred during registration. Please try again." msgid "An error occurred during registration. Please try again."
msgstr "" msgstr ""
#: ../../include/user.php:237 ../../include/text.php:1596 #: ../../include/user.php:237 ../../include/text.php:1618
msgid "default" msgid "default"
msgstr "" msgstr ""
@ -722,7 +722,7 @@ msgid "Example: bob@example.com, http://example.com/barbara"
msgstr "" msgstr ""
#: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88 #: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88
#: ../../mod/match.php:58 ../../boot.php:1417 #: ../../mod/match.php:58 ../../boot.php:1421
msgid "Connect" msgid "Connect"
msgstr "" msgstr ""
@ -799,7 +799,7 @@ msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../include/contact_widgets.php:204 ../../mod/content.php:629 #: ../../include/contact_widgets.php:204 ../../mod/content.php:629
#: ../../object/Item.php:365 ../../boot.php:671 #: ../../object/Item.php:365 ../../boot.php:675
msgid "show more" msgid "show more"
msgstr "" msgstr ""
@ -925,7 +925,7 @@ msgstr ""
msgid "Sharing notification from Diaspora network" msgid "Sharing notification from Diaspora network"
msgstr "" msgstr ""
#: ../../include/diaspora.php:1874 ../../include/text.php:1862 #: ../../include/diaspora.php:1874 ../../include/text.php:1884
#: ../../include/conversation.php:126 ../../include/conversation.php:254 #: ../../include/conversation.php:126 ../../include/conversation.php:254
#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:151 #: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:151
#: ../../view/theme/diabook/theme.php:464 #: ../../view/theme/diabook/theme.php:464
@ -1184,299 +1184,299 @@ msgstr ""
msgid "Cannot locate DNS info for database server '%s'" msgid "Cannot locate DNS info for database server '%s'"
msgstr "" msgstr ""
#: ../../include/text.php:294 #: ../../include/text.php:293
msgid "prev"
msgstr ""
#: ../../include/text.php:296
msgid "first"
msgstr ""
#: ../../include/text.php:325
msgid "last"
msgstr ""
#: ../../include/text.php:328
msgid "next"
msgstr ""
#: ../../include/text.php:352
msgid "newer" msgid "newer"
msgstr "" msgstr ""
#: ../../include/text.php:356 #: ../../include/text.php:295
msgid "older" msgid "older"
msgstr "" msgstr ""
#: ../../include/text.php:807 #: ../../include/text.php:300
msgid "prev"
msgstr ""
#: ../../include/text.php:302
msgid "first"
msgstr ""
#: ../../include/text.php:334
msgid "last"
msgstr ""
#: ../../include/text.php:337
msgid "next"
msgstr ""
#: ../../include/text.php:829
msgid "No contacts" msgid "No contacts"
msgstr "" msgstr ""
#: ../../include/text.php:816 #: ../../include/text.php:838
#, php-format #, php-format
msgid "%d Contact" msgid "%d Contact"
msgid_plural "%d Contacts" msgid_plural "%d Contacts"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../include/text.php:828 ../../mod/viewcontacts.php:76 #: ../../include/text.php:850 ../../mod/viewcontacts.php:76
msgid "View Contacts" msgid "View Contacts"
msgstr "" msgstr ""
#: ../../include/text.php:905 ../../include/text.php:906 #: ../../include/text.php:927 ../../include/text.php:928
#: ../../include/nav.php:118 ../../mod/search.php:99 #: ../../include/nav.php:118 ../../mod/search.php:99
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: ../../include/text.php:908 ../../mod/notes.php:63 ../../mod/filer.php:31 #: ../../include/text.php:930 ../../mod/notes.php:63 ../../mod/filer.php:31
msgid "Save" msgid "Save"
msgstr "" msgstr ""
#: ../../include/text.php:957 #: ../../include/text.php:979
msgid "poke" msgid "poke"
msgstr "" msgstr ""
#: ../../include/text.php:957 ../../include/conversation.php:211 #: ../../include/text.php:979 ../../include/conversation.php:211
msgid "poked" msgid "poked"
msgstr "" msgstr ""
#: ../../include/text.php:958 #: ../../include/text.php:980
msgid "ping" msgid "ping"
msgstr "" msgstr ""
#: ../../include/text.php:958 #: ../../include/text.php:980
msgid "pinged" msgid "pinged"
msgstr "" msgstr ""
#: ../../include/text.php:959 #: ../../include/text.php:981
msgid "prod" msgid "prod"
msgstr "" msgstr ""
#: ../../include/text.php:959 #: ../../include/text.php:981
msgid "prodded" msgid "prodded"
msgstr "" msgstr ""
#: ../../include/text.php:960 #: ../../include/text.php:982
msgid "slap" msgid "slap"
msgstr "" msgstr ""
#: ../../include/text.php:960 #: ../../include/text.php:982
msgid "slapped" msgid "slapped"
msgstr "" msgstr ""
#: ../../include/text.php:961 #: ../../include/text.php:983
msgid "finger" msgid "finger"
msgstr "" msgstr ""
#: ../../include/text.php:961 #: ../../include/text.php:983
msgid "fingered" msgid "fingered"
msgstr "" msgstr ""
#: ../../include/text.php:962 #: ../../include/text.php:984
msgid "rebuff" msgid "rebuff"
msgstr "" msgstr ""
#: ../../include/text.php:962 #: ../../include/text.php:984
msgid "rebuffed" msgid "rebuffed"
msgstr "" msgstr ""
#: ../../include/text.php:976 #: ../../include/text.php:998
msgid "happy" msgid "happy"
msgstr "" msgstr ""
#: ../../include/text.php:977 #: ../../include/text.php:999
msgid "sad" msgid "sad"
msgstr "" msgstr ""
#: ../../include/text.php:978 #: ../../include/text.php:1000
msgid "mellow" msgid "mellow"
msgstr "" msgstr ""
#: ../../include/text.php:979 #: ../../include/text.php:1001
msgid "tired" msgid "tired"
msgstr "" msgstr ""
#: ../../include/text.php:980 #: ../../include/text.php:1002
msgid "perky" msgid "perky"
msgstr "" msgstr ""
#: ../../include/text.php:981 #: ../../include/text.php:1003
msgid "angry" msgid "angry"
msgstr "" msgstr ""
#: ../../include/text.php:982 #: ../../include/text.php:1004
msgid "stupified" msgid "stupified"
msgstr "" msgstr ""
#: ../../include/text.php:983 #: ../../include/text.php:1005
msgid "puzzled" msgid "puzzled"
msgstr "" msgstr ""
#: ../../include/text.php:984 #: ../../include/text.php:1006
msgid "interested" msgid "interested"
msgstr "" msgstr ""
#: ../../include/text.php:985 #: ../../include/text.php:1007
msgid "bitter" msgid "bitter"
msgstr "" msgstr ""
#: ../../include/text.php:986 #: ../../include/text.php:1008
msgid "cheerful" msgid "cheerful"
msgstr "" msgstr ""
#: ../../include/text.php:987 #: ../../include/text.php:1009
msgid "alive" msgid "alive"
msgstr "" msgstr ""
#: ../../include/text.php:988 #: ../../include/text.php:1010
msgid "annoyed" msgid "annoyed"
msgstr "" msgstr ""
#: ../../include/text.php:989 #: ../../include/text.php:1011
msgid "anxious" msgid "anxious"
msgstr "" msgstr ""
#: ../../include/text.php:990 #: ../../include/text.php:1012
msgid "cranky" msgid "cranky"
msgstr "" msgstr ""
#: ../../include/text.php:991 #: ../../include/text.php:1013
msgid "disturbed" msgid "disturbed"
msgstr "" msgstr ""
#: ../../include/text.php:992 #: ../../include/text.php:1014
msgid "frustrated" msgid "frustrated"
msgstr "" msgstr ""
#: ../../include/text.php:993 #: ../../include/text.php:1015
msgid "motivated" msgid "motivated"
msgstr "" msgstr ""
#: ../../include/text.php:994 #: ../../include/text.php:1016
msgid "relaxed" msgid "relaxed"
msgstr "" msgstr ""
#: ../../include/text.php:995 #: ../../include/text.php:1017
msgid "surprised" msgid "surprised"
msgstr "" msgstr ""
#: ../../include/text.php:1163 #: ../../include/text.php:1185
msgid "Monday" msgid "Monday"
msgstr "" msgstr ""
#: ../../include/text.php:1163 #: ../../include/text.php:1185
msgid "Tuesday" msgid "Tuesday"
msgstr "" msgstr ""
#: ../../include/text.php:1163 #: ../../include/text.php:1185
msgid "Wednesday" msgid "Wednesday"
msgstr "" msgstr ""
#: ../../include/text.php:1163 #: ../../include/text.php:1185
msgid "Thursday" msgid "Thursday"
msgstr "" msgstr ""
#: ../../include/text.php:1163 #: ../../include/text.php:1185
msgid "Friday" msgid "Friday"
msgstr "" msgstr ""
#: ../../include/text.php:1163 #: ../../include/text.php:1185
msgid "Saturday" msgid "Saturday"
msgstr "" msgstr ""
#: ../../include/text.php:1163 #: ../../include/text.php:1185
msgid "Sunday" msgid "Sunday"
msgstr "" msgstr ""
#: ../../include/text.php:1167 #: ../../include/text.php:1189
msgid "January" msgid "January"
msgstr "" msgstr ""
#: ../../include/text.php:1167 #: ../../include/text.php:1189
msgid "February" msgid "February"
msgstr "" msgstr ""
#: ../../include/text.php:1167 #: ../../include/text.php:1189
msgid "March" msgid "March"
msgstr "" msgstr ""
#: ../../include/text.php:1167 #: ../../include/text.php:1189
msgid "April" msgid "April"
msgstr "" msgstr ""
#: ../../include/text.php:1167 #: ../../include/text.php:1189
msgid "May" msgid "May"
msgstr "" msgstr ""
#: ../../include/text.php:1167 #: ../../include/text.php:1189
msgid "June" msgid "June"
msgstr "" msgstr ""
#: ../../include/text.php:1167 #: ../../include/text.php:1189
msgid "July" msgid "July"
msgstr "" msgstr ""
#: ../../include/text.php:1167 #: ../../include/text.php:1189
msgid "August" msgid "August"
msgstr "" msgstr ""
#: ../../include/text.php:1167 #: ../../include/text.php:1189
msgid "September" msgid "September"
msgstr "" msgstr ""
#: ../../include/text.php:1167 #: ../../include/text.php:1189
msgid "October" msgid "October"
msgstr "" msgstr ""
#: ../../include/text.php:1167 #: ../../include/text.php:1189
msgid "November" msgid "November"
msgstr "" msgstr ""
#: ../../include/text.php:1167 #: ../../include/text.php:1189
msgid "December" msgid "December"
msgstr "" msgstr ""
#: ../../include/text.php:1323 ../../mod/videos.php:301 #: ../../include/text.php:1345 ../../mod/videos.php:301
msgid "View Video" msgid "View Video"
msgstr "" msgstr ""
#: ../../include/text.php:1355 #: ../../include/text.php:1377
msgid "bytes" msgid "bytes"
msgstr "" msgstr ""
#: ../../include/text.php:1379 ../../include/text.php:1391 #: ../../include/text.php:1401 ../../include/text.php:1413
msgid "Click to open/close" msgid "Click to open/close"
msgstr "" msgstr ""
#: ../../include/text.php:1553 ../../mod/events.php:335 #: ../../include/text.php:1575 ../../mod/events.php:335
msgid "link to source" msgid "link to source"
msgstr "" msgstr ""
#: ../../include/text.php:1608 #: ../../include/text.php:1630
msgid "Select an alternate language" msgid "Select an alternate language"
msgstr "" msgstr ""
#: ../../include/text.php:1860 ../../include/conversation.php:118 #: ../../include/text.php:1882 ../../include/conversation.php:118
#: ../../include/conversation.php:246 ../../view/theme/diabook/theme.php:456 #: ../../include/conversation.php:246 ../../view/theme/diabook/theme.php:456
msgid "event" msgid "event"
msgstr "" msgstr ""
#: ../../include/text.php:1864 #: ../../include/text.php:1886
msgid "activity" msgid "activity"
msgstr "" msgstr ""
#: ../../include/text.php:1866 ../../mod/content.php:628 #: ../../include/text.php:1888 ../../mod/content.php:628
#: ../../object/Item.php:364 ../../object/Item.php:377 #: ../../object/Item.php:364 ../../object/Item.php:377
msgid "comment" msgid "comment"
msgid_plural "comments" msgid_plural "comments"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../include/text.php:1867 #: ../../include/text.php:1889
msgid "post" msgid "post"
msgstr "" msgstr ""
#: ../../include/text.php:2022 #: ../../include/text.php:2044
msgid "Item filed" msgid "Item filed"
msgstr "" msgstr ""
@ -1998,7 +1998,7 @@ msgstr ""
msgid "Clear notifications" msgid "Clear notifications"
msgstr "" msgstr ""
#: ../../include/nav.php:73 ../../boot.php:1136 #: ../../include/nav.php:73 ../../boot.php:1140
msgid "Logout" msgid "Logout"
msgstr "" msgstr ""
@ -2006,7 +2006,7 @@ msgstr ""
msgid "End this session" msgid "End this session"
msgstr "" msgstr ""
#: ../../include/nav.php:76 ../../boot.php:1940 #: ../../include/nav.php:76 ../../boot.php:1944
msgid "Status" msgid "Status"
msgstr "" msgstr ""
@ -2020,7 +2020,7 @@ msgid "Your profile page"
msgstr "" msgstr ""
#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 #: ../../include/nav.php:78 ../../mod/fbrowser.php:25
#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1954 #: ../../view/theme/diabook/theme.php:90 ../../boot.php:1958
msgid "Photos" msgid "Photos"
msgstr "" msgstr ""
@ -2029,7 +2029,7 @@ msgid "Your photos"
msgstr "" msgstr ""
#: ../../include/nav.php:79 ../../mod/events.php:370 #: ../../include/nav.php:79 ../../mod/events.php:370
#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1971 #: ../../view/theme/diabook/theme.php:91 ../../boot.php:1975
msgid "Events" msgid "Events"
msgstr "" msgstr ""
@ -2045,7 +2045,7 @@ msgstr ""
msgid "Your personal photos" msgid "Your personal photos"
msgstr "" msgstr ""
#: ../../include/nav.php:91 ../../boot.php:1137 #: ../../include/nav.php:91 ../../boot.php:1141
msgid "Login" msgid "Login"
msgstr "" msgstr ""
@ -2062,7 +2062,7 @@ msgstr ""
msgid "Home Page" msgid "Home Page"
msgstr "" msgstr ""
#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1112 #: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1116
msgid "Register" msgid "Register"
msgstr "" msgstr ""
@ -2191,7 +2191,7 @@ msgstr ""
msgid "Account settings" msgid "Account settings"
msgstr "" msgstr ""
#: ../../include/nav.php:169 ../../boot.php:1439 #: ../../include/nav.php:169 ../../boot.php:1443
msgid "Profiles" msgid "Profiles"
msgstr "" msgstr ""
@ -2590,23 +2590,23 @@ msgstr ""
msgid "Edit/Manage Profiles" msgid "Edit/Manage Profiles"
msgstr "" msgstr ""
#: ../../mod/profiles.php:726 ../../boot.php:1445 ../../boot.php:1471 #: ../../mod/profiles.php:726 ../../boot.php:1449 ../../boot.php:1475
msgid "Change profile photo" msgid "Change profile photo"
msgstr "" msgstr ""
#: ../../mod/profiles.php:727 ../../boot.php:1446 #: ../../mod/profiles.php:727 ../../boot.php:1450
msgid "Create New Profile" msgid "Create New Profile"
msgstr "" msgstr ""
#: ../../mod/profiles.php:738 ../../boot.php:1456 #: ../../mod/profiles.php:738 ../../boot.php:1460
msgid "Profile Image" msgid "Profile Image"
msgstr "" msgstr ""
#: ../../mod/profiles.php:740 ../../boot.php:1459 #: ../../mod/profiles.php:740 ../../boot.php:1463
msgid "visible to everybody" msgid "visible to everybody"
msgstr "" msgstr ""
#: ../../mod/profiles.php:741 ../../boot.php:1460 #: ../../mod/profiles.php:741 ../../boot.php:1464
msgid "Edit visibility" msgid "Edit visibility"
msgstr "" msgstr ""
@ -2634,7 +2634,7 @@ msgstr ""
msgid "All Contacts (with secure profile access)" msgid "All Contacts (with secure profile access)"
msgstr "" msgstr ""
#: ../../mod/notes.php:44 ../../boot.php:1978 #: ../../mod/notes.php:44 ../../boot.php:1982
msgid "Personal Notes" msgid "Personal Notes"
msgstr "" msgstr ""
@ -5306,7 +5306,7 @@ msgid ""
"Password reset failed." "Password reset failed."
msgstr "" msgstr ""
#: ../../mod/lostpass.php:84 ../../boot.php:1151 #: ../../mod/lostpass.php:84 ../../boot.php:1155
msgid "Password Reset" msgid "Password Reset"
msgstr "" msgstr ""
@ -5703,7 +5703,7 @@ msgstr ""
msgid "Home Notifications" msgid "Home Notifications"
msgstr "" msgstr ""
#: ../../mod/photos.php:51 ../../boot.php:1957 #: ../../mod/photos.php:51 ../../boot.php:1961
msgid "Photo Albums" msgid "Photo Albums"
msgstr "" msgstr ""
@ -5899,7 +5899,7 @@ msgstr ""
#: ../../mod/photos.php:1551 ../../mod/photos.php:1595 #: ../../mod/photos.php:1551 ../../mod/photos.php:1595
#: ../../mod/photos.php:1678 ../../mod/content.php:732 #: ../../mod/photos.php:1678 ../../mod/content.php:732
#: ../../object/Item.php:338 ../../object/Item.php:652 ../../boot.php:670 #: ../../object/Item.php:338 ../../object/Item.php:652 ../../boot.php:674
msgid "Comment" msgid "Comment"
msgstr "" msgstr ""
@ -6088,7 +6088,7 @@ msgid ""
"features and resources." "features and resources."
msgstr "" msgstr ""
#: ../../mod/profile.php:21 ../../boot.php:1325 #: ../../mod/profile.php:21 ../../boot.php:1329
msgid "Requested profile is not available." msgid "Requested profile is not available."
msgstr "" msgstr ""
@ -6983,128 +6983,128 @@ msgstr ""
msgid "toggle mobile" msgid "toggle mobile"
msgstr "" msgstr ""
#: ../../boot.php:669 #: ../../boot.php:673
msgid "Delete this item?" msgid "Delete this item?"
msgstr "" msgstr ""
#: ../../boot.php:672 #: ../../boot.php:676
msgid "show fewer" msgid "show fewer"
msgstr "" msgstr ""
#: ../../boot.php:999 #: ../../boot.php:1003
#, php-format #, php-format
msgid "Update %s failed. See error logs." msgid "Update %s failed. See error logs."
msgstr "" msgstr ""
#: ../../boot.php:1001 #: ../../boot.php:1005
#, php-format #, php-format
msgid "Update Error at %s" msgid "Update Error at %s"
msgstr "" msgstr ""
#: ../../boot.php:1111 #: ../../boot.php:1115
msgid "Create a New Account" msgid "Create a New Account"
msgstr "" msgstr ""
#: ../../boot.php:1139 #: ../../boot.php:1143
msgid "Nickname or Email address: " msgid "Nickname or Email address: "
msgstr "" msgstr ""
#: ../../boot.php:1140 #: ../../boot.php:1144
msgid "Password: " msgid "Password: "
msgstr "" msgstr ""
#: ../../boot.php:1141 #: ../../boot.php:1145
msgid "Remember me" msgid "Remember me"
msgstr "" msgstr ""
#: ../../boot.php:1144 #: ../../boot.php:1148
msgid "Or login using OpenID: " msgid "Or login using OpenID: "
msgstr "" msgstr ""
#: ../../boot.php:1150 #: ../../boot.php:1154
msgid "Forgot your password?" msgid "Forgot your password?"
msgstr "" msgstr ""
#: ../../boot.php:1153 #: ../../boot.php:1157
msgid "Website Terms of Service" msgid "Website Terms of Service"
msgstr "" msgstr ""
#: ../../boot.php:1154 #: ../../boot.php:1158
msgid "terms of service" msgid "terms of service"
msgstr "" msgstr ""
#: ../../boot.php:1156 #: ../../boot.php:1160
msgid "Website Privacy Policy" msgid "Website Privacy Policy"
msgstr "" msgstr ""
#: ../../boot.php:1157 #: ../../boot.php:1161
msgid "privacy policy" msgid "privacy policy"
msgstr "" msgstr ""
#: ../../boot.php:1286 #: ../../boot.php:1290
msgid "Requested account is not available." msgid "Requested account is not available."
msgstr "" msgstr ""
#: ../../boot.php:1365 ../../boot.php:1469 #: ../../boot.php:1369 ../../boot.php:1473
msgid "Edit profile" msgid "Edit profile"
msgstr "" msgstr ""
#: ../../boot.php:1431 #: ../../boot.php:1435
msgid "Message" msgid "Message"
msgstr "" msgstr ""
#: ../../boot.php:1439 #: ../../boot.php:1443
msgid "Manage/edit profiles" msgid "Manage/edit profiles"
msgstr "" msgstr ""
#: ../../boot.php:1568 ../../boot.php:1654 #: ../../boot.php:1572 ../../boot.php:1658
msgid "g A l F d" msgid "g A l F d"
msgstr "" msgstr ""
#: ../../boot.php:1569 ../../boot.php:1655 #: ../../boot.php:1573 ../../boot.php:1659
msgid "F d" msgid "F d"
msgstr "" msgstr ""
#: ../../boot.php:1614 ../../boot.php:1695 #: ../../boot.php:1618 ../../boot.php:1699
msgid "[today]" msgid "[today]"
msgstr "" msgstr ""
#: ../../boot.php:1626 #: ../../boot.php:1630
msgid "Birthday Reminders" msgid "Birthday Reminders"
msgstr "" msgstr ""
#: ../../boot.php:1627 #: ../../boot.php:1631
msgid "Birthdays this week:" msgid "Birthdays this week:"
msgstr "" msgstr ""
#: ../../boot.php:1688 #: ../../boot.php:1692
msgid "[No description]" msgid "[No description]"
msgstr "" msgstr ""
#: ../../boot.php:1706 #: ../../boot.php:1710
msgid "Event Reminders" msgid "Event Reminders"
msgstr "" msgstr ""
#: ../../boot.php:1707 #: ../../boot.php:1711
msgid "Events this week:" msgid "Events this week:"
msgstr "" msgstr ""
#: ../../boot.php:1943 #: ../../boot.php:1947
msgid "Status Messages and Posts" msgid "Status Messages and Posts"
msgstr "" msgstr ""
#: ../../boot.php:1950 #: ../../boot.php:1954
msgid "Profile Details" msgid "Profile Details"
msgstr "" msgstr ""
#: ../../boot.php:1961 ../../boot.php:1964 #: ../../boot.php:1965 ../../boot.php:1968
msgid "Videos" msgid "Videos"
msgstr "" msgstr ""
#: ../../boot.php:1974 #: ../../boot.php:1978
msgid "Events and Calendar" msgid "Events and Calendar"
msgstr "" msgstr ""
#: ../../boot.php:1981 #: ../../boot.php:1985
msgid "Only You Can See This" msgid "Only You Can See This"
msgstr "" msgstr ""