redirect to profile photo upload on very first login

This commit is contained in:
Friendika 2011-04-23 17:31:23 -07:00
commit a0e7d8fa00
6 changed files with 274 additions and 239 deletions

View file

@ -2,7 +2,7 @@
set_time_limit(0); set_time_limit(0);
define ( 'FRIENDIKA_VERSION', '2.1.956' ); define ( 'FRIENDIKA_VERSION', '2.1.958' );
define ( 'DFRN_PROTOCOL_VERSION', '2.21' ); define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
define ( 'DB_UPDATE_VERSION', 1053 ); define ( 'DB_UPDATE_VERSION', 1053 );
@ -2125,7 +2125,7 @@ function smilies($s) {
$a = get_app(); $a = get_app();
return str_replace( return str_replace(
array( '<3', '</3', '<\\3', ':-)', ';-)', ':-(', ':(', ':-P', ':-"', ':-x', ':-X', ':-D', '8-|', '8-O'), array( '<3', '</3', '<\\3', ':-)', ';-)', ':-(', ':(', ':-P', ':P', ':-"', ':-x', ':-X', ':-D', '8-|', '8-O'),
array( array(
'<img src="' . $a->get_baseurl() . '/images/smiley-heart.gif" alt="<3" />', '<img src="' . $a->get_baseurl() . '/images/smiley-heart.gif" alt="<3" />',
'<img src="' . $a->get_baseurl() . '/images/smiley-brokenheart.gif" alt="</3" />', '<img src="' . $a->get_baseurl() . '/images/smiley-brokenheart.gif" alt="</3" />',
@ -2135,6 +2135,7 @@ function smilies($s) {
'<img src="' . $a->get_baseurl() . '/images/smiley-frown.gif" alt=":-(" />', '<img src="' . $a->get_baseurl() . '/images/smiley-frown.gif" alt=":-(" />',
'<img src="' . $a->get_baseurl() . '/images/smiley-frown.gif" alt=":(" />', '<img src="' . $a->get_baseurl() . '/images/smiley-frown.gif" alt=":(" />',
'<img src="' . $a->get_baseurl() . '/images/smiley-tongue-out.gif" alt=":-P" />', '<img src="' . $a->get_baseurl() . '/images/smiley-tongue-out.gif" alt=":-P" />',
'<img src="' . $a->get_baseurl() . '/images/smiley-tongue-out.gif" alt=":P" />',
'<img src="' . $a->get_baseurl() . '/images/smiley-kiss.gif" alt=":-\"" />', '<img src="' . $a->get_baseurl() . '/images/smiley-kiss.gif" alt=":-\"" />',
'<img src="' . $a->get_baseurl() . '/images/smiley-kiss.gif" alt=":-x" />', '<img src="' . $a->get_baseurl() . '/images/smiley-kiss.gif" alt=":-x" />',
'<img src="' . $a->get_baseurl() . '/images/smiley-kiss.gif" alt=":-X" />', '<img src="' . $a->get_baseurl() . '/images/smiley-kiss.gif" alt=":-X" />',

View file

@ -191,9 +191,17 @@ else {
$_SESSION['my_url'] = $a->get_baseurl() . '/profile/' . $record['nickname']; $_SESSION['my_url'] = $a->get_baseurl() . '/profile/' . $record['nickname'];
$_SESSION['addr'] = $_SERVER['REMOTE_ADDR']; $_SESSION['addr'] = $_SERVER['REMOTE_ADDR'];
notice( t("Welcome back ") . $record['username'] . EOL);
$a->user = $record; $a->user = $record;
if($a->user['login_date'] === '0000-00-00 00:00:00') {
$_SESSION['return_url'] = 'profile_photo/new';
$a->module = 'profile_photo';
notice( t("Welcome ") . $a->user['username'] . EOL);
notice( t('Please upload a profile photo.') . EOL);
}
else
notice( t("Welcome back ") . $a->user['username'] . EOL);
if(strlen($a->user['timezone'])) { if(strlen($a->user['timezone'])) {
date_default_timezone_set($a->user['timezone']); date_default_timezone_set($a->user['timezone']);
$a->timezone = $a->user['timezone']; $a->timezone = $a->user['timezone'];
@ -214,6 +222,8 @@ else {
$a->cid = $r[0]['id']; $a->cid = $r[0]['id'];
$_SESSION['cid'] = $a->cid; $_SESSION['cid'] = $a->cid;
} }
q("UPDATE `user` SET `login_date` = '%s' WHERE `uid` = %d LIMIT 1", q("UPDATE `user` SET `login_date` = '%s' WHERE `uid` = %d LIMIT 1",
dbesc(datetime_convert()), dbesc(datetime_convert()),
intval($_SESSION['uid']) intval($_SESSION['uid'])

View file

@ -70,9 +70,18 @@ function openid_content(&$a) {
$_SESSION['page_flags'] = $r[0]['page-flags']; $_SESSION['page_flags'] = $r[0]['page-flags'];
$_SESSION['my_url'] = $a->get_baseurl() . '/profile/' . $r[0]['nickname']; $_SESSION['my_url'] = $a->get_baseurl() . '/profile/' . $r[0]['nickname'];
notice( sprintf( t("Welcome back "), $r[0]['username']) . EOL);
$a->user = $r[0]; $a->user = $r[0];
if($a->user['login_date'] === '0000-00-00 00:00:00') {
$_SESSION['return_url'] = 'profile_photo/new';
$a->module = 'profile_photo';
notice( t("Welcome ") . $a->user['username'] . EOL);
notice( t('Please upload a profile photo.') . EOL);
}
else
notice( t("Welcome back ") . $a->user['username'] . EOL);
if(strlen($a->user['timezone'])) { if(strlen($a->user['timezone'])) {
date_default_timezone_set($a->user['timezone']); date_default_timezone_set($a->user['timezone']);
$a->timezone = $a->user['timezone']; $a->timezone = $a->user['timezone'];

View file

@ -134,6 +134,11 @@ function profile_photo_content(&$a) {
return; return;
} }
$newuser = false;
if($a->argc == 2 && $a->argv[1] === 'new')
$newuser = true;
if( $a->argv[1]=='use'){ if( $a->argv[1]=='use'){
if ($a->argc<3){ if ($a->argc<3){
notice( t('Permission denied.') . EOL ); notice( t('Permission denied.') . EOL );
@ -188,7 +193,7 @@ function profile_photo_content(&$a) {
'$lbl_upfile' => t('Upload File:'), '$lbl_upfile' => t('Upload File:'),
'$title' => t('Upload Profile Photo'), '$title' => t('Upload Profile Photo'),
'$submit' => t('Upload'), '$submit' => t('Upload'),
'$select' => sprintf('%s %s', t('or'), '<a href="'. $a->get_baseurl() . '/photos/' . $a->user['nickname'] . '">' . t('select a photo from your photo albums') . '</a>') '$select' => sprintf('%s %s', t('or'), ($newuser) ? '<a href="' . $a->get_baseurl() . '">' . t('skip this step') . '</a>' : '<a href="'. $a->get_baseurl() . '/photos/' . $a->user['nickname'] . '">' . t('select a photo from your photo albums') . '</a>')
)); ));
return $o; return $o;

View file

@ -6,9 +6,9 @@
#, fuzzy #, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 2.1.954\n" "Project-Id-Version: 2.1.958\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2011-04-20 04:49-0700\n" "POT-Creation-Date: 2011-04-23 17:31-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"
@ -29,18 +29,18 @@ msgstr ""
msgid "Contact update failed." msgid "Contact update failed."
msgstr "" msgstr ""
#: ../../mod/crepair.php:54 ../../mod/photos.php:85 ../../mod/photos.php:777 #: ../../mod/crepair.php:54 ../../mod/photos.php:89 ../../mod/photos.php:787
#: ../../mod/editpost.php:10 ../../mod/install.php:93 #: ../../mod/editpost.php:10 ../../mod/install.php:93
#: ../../mod/notifications.php:56 ../../mod/contacts.php:106 #: ../../mod/notifications.php:56 ../../mod/contacts.php:106
#: ../../mod/settings.php:15 ../../mod/settings.php:20 #: ../../mod/settings.php:15 ../../mod/settings.php:20
#: ../../mod/settings.php:251 ../../mod/manage.php:75 ../../mod/network.php:6 #: ../../mod/settings.php:251 ../../mod/manage.php:75 ../../mod/network.php:6
#: ../../mod/group.php:19 ../../mod/viewcontacts.php:13 #: ../../mod/group.php:19 ../../mod/viewcontacts.php:21
#: ../../mod/register.php:25 ../../mod/regmod.php:16 ../../mod/item.php:57 #: ../../mod/register.php:25 ../../mod/regmod.php:16 ../../mod/item.php:57
#: ../../mod/item.php:678 ../../mod/profile_photo.php:19 #: ../../mod/item.php:678 ../../mod/profile_photo.php:19
#: ../../mod/profile_photo.php:133 ../../mod/profile_photo.php:139 #: ../../mod/profile_photo.php:133 ../../mod/profile_photo.php:144
#: ../../mod/profile_photo.php:150 ../../mod/message.php:8 #: ../../mod/profile_photo.php:155 ../../mod/message.php:8
#: ../../mod/message.php:116 ../../mod/wall_upload.php:42 #: ../../mod/message.php:116 ../../mod/wall_upload.php:42
#: ../../mod/follow.php:8 ../../mod/display.php:133 ../../mod/profiles.php:7 #: ../../mod/follow.php:8 ../../mod/display.php:138 ../../mod/profiles.php:7
#: ../../mod/profiles.php:227 ../../mod/invite.php:13 ../../mod/invite.php:54 #: ../../mod/profiles.php:227 ../../mod/invite.php:13 ../../mod/invite.php:54
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:110 #: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:110
#: ../../wip/photos.php:77 ../../wip/photos.php:723 ../../wip/follow2.php:8 #: ../../wip/photos.php:77 ../../wip/photos.php:723 ../../wip/follow2.php:8
@ -98,8 +98,8 @@ msgstr ""
msgid "Poll/Feed URL" msgid "Poll/Feed URL"
msgstr "" msgstr ""
#: ../../mod/crepair.php:100 ../../mod/photos.php:805 ../../mod/photos.php:862 #: ../../mod/crepair.php:100 ../../mod/photos.php:815 ../../mod/photos.php:872
#: ../../mod/photos.php:1069 ../../mod/photos.php:1112 #: ../../mod/photos.php:1079 ../../mod/photos.php:1122
#: ../../mod/install.php:133 ../../mod/contacts.php:264 #: ../../mod/install.php:133 ../../mod/contacts.php:264
#: ../../mod/settings.php:426 ../../mod/manage.php:106 ../../mod/group.php:76 #: ../../mod/settings.php:426 ../../mod/manage.php:106 ../../mod/group.php:76
#: ../../mod/group.php:159 ../../mod/profiles.php:370 ../../mod/invite.php:68 #: ../../mod/group.php:159 ../../mod/profiles.php:370 ../../mod/invite.php:68
@ -125,7 +125,7 @@ msgid "Help"
msgstr "" msgstr ""
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
#: ../../mod/dfrn_request.php:634 ../../addon/js_upload/js_upload.php:41 #: ../../mod/dfrn_request.php:644 ../../addon/js_upload/js_upload.php:41
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -145,19 +145,19 @@ msgstr ""
msgid "Remove" msgid "Remove"
msgstr "" msgstr ""
#: ../../mod/dfrn_poll.php:79 ../../mod/dfrn_poll.php:504 #: ../../mod/dfrn_poll.php:84 ../../mod/dfrn_poll.php:510
#, php-format #, php-format
msgid "%s welcomes %s" msgid "%s welcomes %s"
msgstr "" msgstr ""
#: ../../mod/photos.php:30 ../../wip/photos.php:31 #: ../../mod/photos.php:34 ../../wip/photos.php:31
#: ../../wip/photos-chris.php:41 #: ../../wip/photos-chris.php:41
msgid "Photo Albums" msgid "Photo Albums"
msgstr "" msgstr ""
#: ../../mod/photos.php:34 ../../mod/photos.php:106 ../../mod/photos.php:785 #: ../../mod/photos.php:38 ../../mod/photos.php:110 ../../mod/photos.php:795
#: ../../mod/photos.php:854 ../../mod/photos.php:869 ../../mod/photos.php:1238 #: ../../mod/photos.php:864 ../../mod/photos.php:879 ../../mod/photos.php:1248
#: ../../mod/photos.php:1249 ../../include/Photo.php:225 #: ../../mod/photos.php:1259 ../../include/Photo.php:225
#: ../../include/Photo.php:232 ../../include/Photo.php:239 #: ../../include/Photo.php:232 ../../include/Photo.php:239
#: ../../include/items.php:1026 ../../include/items.php:1029 #: ../../include/items.php:1026 ../../include/items.php:1029
#: ../../include/items.php:1032 ../../wip/photos.php:35 #: ../../include/items.php:1032 ../../wip/photos.php:35
@ -170,17 +170,17 @@ msgstr ""
msgid "Contact Photos" msgid "Contact Photos"
msgstr "" msgstr ""
#: ../../mod/photos.php:95 ../../wip/photos.php:87 #: ../../mod/photos.php:99 ../../wip/photos.php:87
#: ../../wip/photos-chris.php:107 #: ../../wip/photos-chris.php:107
msgid "Contact information unavailable" msgid "Contact information unavailable"
msgstr "" msgstr ""
#: ../../mod/photos.php:106 ../../mod/photos.php:531 ../../mod/photos.php:854 #: ../../mod/photos.php:110 ../../mod/photos.php:535 ../../mod/photos.php:864
#: ../../mod/photos.php:869 ../../mod/register.php:288 #: ../../mod/photos.php:879 ../../mod/register.php:288
#: ../../mod/register.php:295 ../../mod/register.php:302 #: ../../mod/register.php:295 ../../mod/register.php:302
#: ../../mod/profile_photo.php:58 ../../mod/profile_photo.php:65 #: ../../mod/profile_photo.php:58 ../../mod/profile_photo.php:65
#: ../../mod/profile_photo.php:72 ../../mod/profile_photo.php:155 #: ../../mod/profile_photo.php:72 ../../mod/profile_photo.php:160
#: ../../mod/profile_photo.php:231 ../../mod/profile_photo.php:240 #: ../../mod/profile_photo.php:236 ../../mod/profile_photo.php:245
#: ../../wip/photos.php:98 ../../wip/photos.php:493 ../../wip/photos.php:785 #: ../../wip/photos.php:98 ../../wip/photos.php:493 ../../wip/photos.php:785
#: ../../wip/photos.php:800 ../../wip/photos-chris.php:118 #: ../../wip/photos.php:800 ../../wip/photos-chris.php:118
#: ../../wip/photos-chris.php:525 ../../wip/photos-chris.php:832 #: ../../wip/photos-chris.php:525 ../../wip/photos-chris.php:832
@ -188,203 +188,208 @@ msgstr ""
msgid "Profile Photos" msgid "Profile Photos"
msgstr "" msgstr ""
#: ../../mod/photos.php:116 ../../wip/photos.php:108 #: ../../mod/photos.php:120 ../../wip/photos.php:108
#: ../../wip/photos-chris.php:128 #: ../../wip/photos-chris.php:128
msgid "Album not found." msgid "Album not found."
msgstr "" msgstr ""
#: ../../mod/photos.php:134 ../../mod/photos.php:863 ../../wip/photos.php:126 #: ../../mod/photos.php:138 ../../mod/photos.php:873 ../../wip/photos.php:126
#: ../../wip/photos.php:794 ../../wip/photos-chris.php:146 #: ../../wip/photos.php:794 ../../wip/photos-chris.php:146
#: ../../wip/photos-chris.php:841 #: ../../wip/photos-chris.php:841
msgid "Delete Album" msgid "Delete Album"
msgstr "" msgstr ""
#: ../../mod/photos.php:197 ../../mod/photos.php:1070 ../../wip/photos.php:192 #: ../../mod/photos.php:201 ../../mod/photos.php:1080 ../../wip/photos.php:192
#: ../../wip/photos.php:955 ../../wip/photos-chris.php:212 #: ../../wip/photos.php:955 ../../wip/photos-chris.php:212
#: ../../wip/photos-chris.php:1002 #: ../../wip/photos-chris.php:1002
msgid "Delete Photo" msgid "Delete Photo"
msgstr "" msgstr ""
#: ../../mod/photos.php:469 ../../wip/photos.php:442 #: ../../mod/photos.php:473 ../../wip/photos.php:442
#: ../../wip/photos-chris.php:462 #: ../../wip/photos-chris.php:462
msgid "was tagged in a" msgid "was tagged in a"
msgstr "" msgstr ""
#: ../../mod/photos.php:469 ../../mod/like.php:110 #: ../../mod/photos.php:473 ../../mod/like.php:110
#: ../../include/conversation.php:20 ../../wip/photos.php:442 #: ../../include/conversation.php:20 ../../wip/photos.php:442
#: ../../wip/photos-chris.php:462 #: ../../wip/photos-chris.php:462
msgid "photo" msgid "photo"
msgstr "" msgstr ""
#: ../../mod/photos.php:469 ../../wip/photos.php:442 #: ../../mod/photos.php:473 ../../wip/photos.php:442
#: ../../wip/photos-chris.php:462 #: ../../wip/photos-chris.php:462
msgid "by" msgid "by"
msgstr "" msgstr ""
#: ../../mod/photos.php:559 ../../addon/js_upload/js_upload.php:306 #: ../../mod/photos.php:563 ../../addon/js_upload/js_upload.php:306
#: ../../wip/photos.php:511 ../../wip/photos-chris.php:555 #: ../../wip/photos.php:511 ../../wip/photos-chris.php:555
msgid "Image exceeds size limit of " msgid "Image exceeds size limit of "
msgstr "" msgstr ""
#: ../../mod/photos.php:571 ../../mod/profile_photo.php:118 #: ../../mod/photos.php:575 ../../mod/profile_photo.php:118
#: ../../mod/wall_upload.php:65 ../../wip/photos.php:520 #: ../../mod/wall_upload.php:65 ../../wip/photos.php:520
#: ../../wip/photos-chris.php:567 #: ../../wip/photos-chris.php:567
msgid "Unable to process image." msgid "Unable to process image."
msgstr "" msgstr ""
#: ../../mod/photos.php:589 ../../mod/profile_photo.php:236 #: ../../mod/photos.php:593 ../../mod/profile_photo.php:241
#: ../../mod/wall_upload.php:82 ../../wip/photos.php:537 #: ../../mod/wall_upload.php:82 ../../wip/photos.php:537
#: ../../wip/photos-chris.php:585 #: ../../wip/photos-chris.php:585
msgid "Image upload failed." msgid "Image upload failed."
msgstr "" msgstr ""
#: ../../mod/photos.php:665 ../../wip/photos.php:611 #: ../../mod/photos.php:665 ../../mod/dfrn_request.php:591
#: ../../mod/viewcontacts.php:16 ../../mod/display.php:7
#: ../../mod/search.php:13 ../../mod/directory.php:18
msgid "Public access denied."
msgstr ""
#: ../../mod/photos.php:675 ../../wip/photos.php:611
#: ../../wip/photos-chris.php:658 #: ../../wip/photos-chris.php:658
msgid "No photos selected" msgid "No photos selected"
msgstr "" msgstr ""
#: ../../mod/photos.php:812 ../../wip/photos.php:742 #: ../../mod/photos.php:822 ../../wip/photos.php:742
#: ../../wip/photos-chris.php:789 #: ../../wip/photos-chris.php:789
msgid "Upload Photos" msgid "Upload Photos"
msgstr "" msgstr ""
#: ../../mod/photos.php:815 ../../mod/photos.php:858 ../../wip/photos.php:745 #: ../../mod/photos.php:825 ../../mod/photos.php:868 ../../wip/photos.php:745
#: ../../wip/photos.php:789 ../../wip/photos-chris.php:792 #: ../../wip/photos.php:789 ../../wip/photos-chris.php:792
#: ../../wip/photos-chris.php:836 #: ../../wip/photos-chris.php:836
msgid "New album name: " msgid "New album name: "
msgstr "" msgstr ""
#: ../../mod/photos.php:816 ../../wip/photos.php:746 #: ../../mod/photos.php:826 ../../wip/photos.php:746
#: ../../wip/photos-chris.php:793 #: ../../wip/photos-chris.php:793
msgid "or existing album name: " msgid "or existing album name: "
msgstr "" msgstr ""
#: ../../mod/photos.php:818 ../../mod/photos.php:1065 ../../wip/photos.php:749 #: ../../mod/photos.php:828 ../../mod/photos.php:1075 ../../wip/photos.php:749
#: ../../wip/photos-chris.php:796 #: ../../wip/photos-chris.php:796
msgid "Permissions" msgid "Permissions"
msgstr "" msgstr ""
#: ../../mod/photos.php:873 ../../wip/photos.php:804 #: ../../mod/photos.php:883 ../../wip/photos.php:804
#: ../../wip/photos-chris.php:851 #: ../../wip/photos-chris.php:851
msgid "Edit Album" msgid "Edit Album"
msgstr "" msgstr ""
#: ../../mod/photos.php:883 ../../mod/photos.php:1267 ../../wip/photos.php:814 #: ../../mod/photos.php:893 ../../mod/photos.php:1277 ../../wip/photos.php:814
#: ../../wip/photos.php:1141 ../../wip/photos-chris.php:861 #: ../../wip/photos.php:1141 ../../wip/photos-chris.php:861
#: ../../wip/photos-chris.php:1188 #: ../../wip/photos-chris.php:1188
msgid "View Photo" msgid "View Photo"
msgstr "" msgstr ""
#: ../../mod/photos.php:912 ../../wip/photos.php:843 #: ../../mod/photos.php:922 ../../wip/photos.php:843
#: ../../wip/photos-chris.php:890 #: ../../wip/photos-chris.php:890
msgid "Photo not available" msgid "Photo not available"
msgstr "" msgstr ""
#: ../../mod/photos.php:959 ../../wip/photos.php:864 #: ../../mod/photos.php:969 ../../wip/photos.php:864
#: ../../wip/photos-chris.php:911 #: ../../wip/photos-chris.php:911
msgid "Edit photo" msgid "Edit photo"
msgstr "" msgstr ""
#: ../../mod/photos.php:961 #: ../../mod/photos.php:971
msgid "Use as profile photo" msgid "Use as profile photo"
msgstr "" msgstr ""
#: ../../mod/photos.php:965 ../../include/conversation.php:316 #: ../../mod/photos.php:975 ../../include/conversation.php:316
msgid "Private Message" msgid "Private Message"
msgstr "" msgstr ""
#: ../../mod/photos.php:972 #: ../../mod/photos.php:982
msgid "<< Prev" msgid "<< Prev"
msgstr "" msgstr ""
#: ../../mod/photos.php:976 ../../wip/photos.php:870 #: ../../mod/photos.php:986 ../../wip/photos.php:870
#: ../../wip/photos-chris.php:917 #: ../../wip/photos-chris.php:917
msgid "View Full Size" msgid "View Full Size"
msgstr "" msgstr ""
#: ../../mod/photos.php:980 #: ../../mod/photos.php:990
msgid "Next >>" msgid "Next >>"
msgstr "" msgstr ""
#: ../../mod/photos.php:1039 ../../wip/photos.php:928 #: ../../mod/photos.php:1049 ../../wip/photos.php:928
#: ../../wip/photos-chris.php:975 #: ../../wip/photos-chris.php:975
msgid "Tags: " msgid "Tags: "
msgstr "" msgstr ""
#: ../../mod/photos.php:1049 ../../wip/photos.php:938 #: ../../mod/photos.php:1059 ../../wip/photos.php:938
#: ../../wip/photos-chris.php:985 #: ../../wip/photos-chris.php:985
msgid "[Remove any tag]" msgid "[Remove any tag]"
msgstr "" msgstr ""
#: ../../mod/photos.php:1058 #: ../../mod/photos.php:1068
msgid "New album name" msgid "New album name"
msgstr "" msgstr ""
#: ../../mod/photos.php:1061 ../../wip/photos.php:948 #: ../../mod/photos.php:1071 ../../wip/photos.php:948
#: ../../wip/photos-chris.php:995 #: ../../wip/photos-chris.php:995
msgid "Caption" msgid "Caption"
msgstr "" msgstr ""
#: ../../mod/photos.php:1063 ../../wip/photos.php:950 #: ../../mod/photos.php:1073 ../../wip/photos.php:950
#: ../../wip/photos-chris.php:997 #: ../../wip/photos-chris.php:997
msgid "Add a Tag" msgid "Add a Tag"
msgstr "" msgstr ""
#: ../../mod/photos.php:1067 ../../wip/photos.php:952 #: ../../mod/photos.php:1077 ../../wip/photos.php:952
#: ../../wip/photos-chris.php:999 #: ../../wip/photos-chris.php:999
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:1087 ../../include/conversation.php:364 #: ../../mod/photos.php:1097 ../../include/conversation.php:364
msgid "I like this (toggle)" msgid "I like this (toggle)"
msgstr "" msgstr ""
#: ../../mod/photos.php:1088 ../../include/conversation.php:365 #: ../../mod/photos.php:1098 ../../include/conversation.php:365
msgid "I don't like this (toggle)" msgid "I don't like this (toggle)"
msgstr "" msgstr ""
#: ../../mod/photos.php:1089 ../../mod/network.php:134 #: ../../mod/photos.php:1099 ../../include/conversation.php:366
#: ../../mod/profile.php:181 ../../include/conversation.php:366 #: ../../include/conversation.php:733
msgid "Share" msgid "Share"
msgstr "" msgstr ""
#: ../../mod/photos.php:1090 ../../mod/editpost.php:95 #: ../../mod/photos.php:1100 ../../mod/editpost.php:95
#: ../../mod/network.php:143 ../../mod/message.php:190 #: ../../mod/message.php:190 ../../mod/message.php:324
#: ../../mod/message.php:324 ../../mod/profile.php:190 #: ../../include/conversation.php:367 ../../include/conversation.php:742
#: ../../include/conversation.php:367
msgid "Please wait" msgid "Please wait"
msgstr "" msgstr ""
#: ../../mod/photos.php:1109 ../../mod/photos.php:1151 #: ../../mod/photos.php:1119 ../../mod/photos.php:1161
#: ../../mod/photos.php:1180 ../../include/conversation.php:380 #: ../../mod/photos.php:1190 ../../include/conversation.php:380
#: ../../wip/photos.php:986 ../../wip/photos.php:1025 #: ../../wip/photos.php:986 ../../wip/photos.php:1025
#: ../../wip/photos.php:1053 ../../wip/photos-chris.php:1033 #: ../../wip/photos.php:1053 ../../wip/photos-chris.php:1033
#: ../../wip/photos-chris.php:1072 ../../wip/photos-chris.php:1100 #: ../../wip/photos-chris.php:1072 ../../wip/photos-chris.php:1100
msgid "This is you" msgid "This is you"
msgstr "" msgstr ""
#: ../../mod/photos.php:1111 ../../include/conversation.php:382 #: ../../mod/photos.php:1121 ../../include/conversation.php:382
#: ../../boot.php:373 #: ../../boot.php:373
msgid "Comment" msgid "Comment"
msgstr "" msgstr ""
#: ../../mod/photos.php:1208 ../../mod/group.php:146 #: ../../mod/photos.php:1218 ../../mod/group.php:146
#: ../../include/conversation.php:182 ../../include/conversation.php:393 #: ../../include/conversation.php:182 ../../include/conversation.php:393
#: ../../wip/group.php:162 #: ../../wip/group.php:162
msgid "Delete" msgid "Delete"
msgstr "" msgstr ""
#: ../../mod/photos.php:1254 ../../wip/photos.php:1127 #: ../../mod/photos.php:1264 ../../wip/photos.php:1127
#: ../../wip/photos-chris.php:1174 #: ../../wip/photos-chris.php:1174
msgid "Recent Photos" msgid "Recent Photos"
msgstr "" msgstr ""
#: ../../mod/photos.php:1258 ../../wip/photos.php:1131 #: ../../mod/photos.php:1268 ../../wip/photos.php:1131
#: ../../wip/photos-chris.php:1178 #: ../../wip/photos-chris.php:1178
msgid "Upload New Photos" msgid "Upload New Photos"
msgstr "" msgstr ""
#: ../../mod/photos.php:1271 ../../wip/photos.php:1147 #: ../../mod/photos.php:1281 ../../wip/photos.php:1147
#: ../../wip/photos-chris.php:1194 #: ../../wip/photos-chris.php:1194
msgid "View Album" msgid "View Album"
msgstr "" msgstr ""
@ -397,8 +402,7 @@ msgstr ""
msgid "Edit post" msgid "Edit post"
msgstr "" msgstr ""
#: ../../mod/editpost.php:74 ../../mod/network.php:122 #: ../../mod/editpost.php:74 ../../include/conversation.php:722
#: ../../mod/profile.php:169
msgid "Post to Email" msgid "Post to Email"
msgstr "" msgstr ""
@ -407,172 +411,162 @@ msgstr ""
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
#: ../../mod/editpost.php:88 ../../mod/network.php:135 #: ../../mod/editpost.php:88 ../../mod/message.php:188
#: ../../mod/message.php:188 ../../mod/message.php:322 #: ../../mod/message.php:322 ../../include/conversation.php:734
#: ../../mod/profile.php:182
msgid "Upload photo" msgid "Upload photo"
msgstr "" msgstr ""
#: ../../mod/editpost.php:89 ../../mod/network.php:136 #: ../../mod/editpost.php:89 ../../mod/message.php:189
#: ../../mod/message.php:189 ../../mod/message.php:323 #: ../../mod/message.php:323 ../../include/conversation.php:735
#: ../../mod/profile.php:183
msgid "Insert web link" msgid "Insert web link"
msgstr "" msgstr ""
#: ../../mod/editpost.php:90 ../../mod/network.php:137 #: ../../mod/editpost.php:90 ../../include/conversation.php:736
#: ../../mod/profile.php:184
msgid "Insert YouTube video" msgid "Insert YouTube video"
msgstr "" msgstr ""
#: ../../mod/editpost.php:91 ../../mod/network.php:138 #: ../../mod/editpost.php:91 ../../include/conversation.php:737
#: ../../mod/profile.php:185
msgid "Insert Vorbis [.ogg] video" msgid "Insert Vorbis [.ogg] video"
msgstr "" msgstr ""
#: ../../mod/editpost.php:92 ../../mod/network.php:139 #: ../../mod/editpost.php:92 ../../include/conversation.php:738
#: ../../mod/profile.php:186
msgid "Insert Vorbis [.ogg] audio" msgid "Insert Vorbis [.ogg] audio"
msgstr "" msgstr ""
#: ../../mod/editpost.php:93 ../../mod/network.php:140 #: ../../mod/editpost.php:93 ../../include/conversation.php:739
#: ../../mod/profile.php:187
msgid "Set your location" msgid "Set your location"
msgstr "" msgstr ""
#: ../../mod/editpost.php:94 ../../mod/network.php:141 #: ../../mod/editpost.php:94 ../../include/conversation.php:740
#: ../../mod/profile.php:188
msgid "Clear browser location" msgid "Clear browser location"
msgstr "" msgstr ""
#: ../../mod/editpost.php:96 ../../mod/network.php:144 #: ../../mod/editpost.php:96 ../../include/conversation.php:743
#: ../../mod/profile.php:191
msgid "Permission settings" msgid "Permission settings"
msgstr "" msgstr ""
#: ../../mod/editpost.php:102 ../../mod/network.php:150 #: ../../mod/editpost.php:102 ../../include/conversation.php:749
#: ../../mod/profile.php:198
msgid "CC: email addresses" msgid "CC: email addresses"
msgstr "" msgstr ""
#: ../../mod/editpost.php:104 ../../mod/network.php:152 #: ../../mod/editpost.php:104 ../../include/conversation.php:751
#: ../../mod/profile.php:200
msgid "Example: bob@example.com, mary@example.com" msgid "Example: bob@example.com, mary@example.com"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:92 #: ../../mod/dfrn_request.php:96
msgid "This introduction has already been accepted." msgid "This introduction has already been accepted."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:116 ../../mod/dfrn_request.php:347 #: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:351
msgid "Profile location is not valid or does not contain profile information." msgid "Profile location is not valid or does not contain profile information."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:121 ../../mod/dfrn_request.php:352 #: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:356
msgid "Warning: profile location has no identifiable owner name." msgid "Warning: profile location has no identifiable owner name."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:354 #: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:358
msgid "Warning: profile location has no profile photo." msgid "Warning: profile location has no profile photo."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:126 ../../mod/dfrn_request.php:357 #: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:361
#, php-format #, php-format
msgid "%d required parameter was not found at the given location" msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location" msgid_plural "%d required parameters were not found at the given location"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../mod/dfrn_request.php:164 #: ../../mod/dfrn_request.php:168
msgid "Introduction complete." msgid "Introduction complete."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:188 #: ../../mod/dfrn_request.php:192
msgid "Unrecoverable protocol error." msgid "Unrecoverable protocol error."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:216 #: ../../mod/dfrn_request.php:220
msgid "Profile unavailable." msgid "Profile unavailable."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:241 #: ../../mod/dfrn_request.php:245
#, php-format #, php-format
msgid "%s has received too many connection requests today." msgid "%s has received too many connection requests today."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:242 #: ../../mod/dfrn_request.php:246
msgid "Spam protection measures have been invoked." msgid "Spam protection measures have been invoked."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:243 #: ../../mod/dfrn_request.php:247
msgid "Friends are advised to please try again in 24 hours." msgid "Friends are advised to please try again in 24 hours."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:273 #: ../../mod/dfrn_request.php:277
msgid "Invalid locator" msgid "Invalid locator"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:292 #: ../../mod/dfrn_request.php:296
msgid "Unable to resolve your name at the provided location." msgid "Unable to resolve your name at the provided location."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:305 #: ../../mod/dfrn_request.php:309
msgid "You have already introduced yourself here." msgid "You have already introduced yourself here."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:309 #: ../../mod/dfrn_request.php:313
#, php-format #, php-format
msgid "Apparently you are already friends with %s." msgid "Apparently you are already friends with %s."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:330 #: ../../mod/dfrn_request.php:334
msgid "Invalid profile URL." msgid "Invalid profile URL."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:336 ../../mod/follow.php:16 #: ../../mod/dfrn_request.php:340 ../../mod/follow.php:16
msgid "Disallowed profile URL." msgid "Disallowed profile URL."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:402 ../../mod/contacts.php:90 #: ../../mod/dfrn_request.php:406 ../../mod/contacts.php:90
msgid "Failed to update contact record." msgid "Failed to update contact record."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:423 #: ../../mod/dfrn_request.php:427
msgid "Your introduction has been sent." msgid "Your introduction has been sent."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:477 #: ../../mod/dfrn_request.php:481
msgid "Please login to confirm introduction." msgid "Please login to confirm introduction."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:491 #: ../../mod/dfrn_request.php:495
msgid "" msgid ""
"Incorrect identity currently logged in. Please login to <strong>this</" "Incorrect identity currently logged in. Please login to <strong>this</"
"strong> profile." "strong> profile."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:503 #: ../../mod/dfrn_request.php:507
#, php-format #, php-format
msgid "Welcome home %s." msgid "Welcome home %s."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:504 #: ../../mod/dfrn_request.php:508
#, php-format #, php-format
msgid "Please confirm your introduction/connection request to %s." msgid "Please confirm your introduction/connection request to %s."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:505 #: ../../mod/dfrn_request.php:509
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:538 ../../include/items.php:1409 #: ../../mod/dfrn_request.php:542 ../../include/items.php:1409
msgid "[Name Withheld]" msgid "[Name Withheld]"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:545 #: ../../mod/dfrn_request.php:549
msgid "Introduction received at " msgid "Introduction received at "
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:547 ../../mod/lostpass.php:40 #: ../../mod/dfrn_request.php:551 ../../mod/lostpass.php:40
#: ../../mod/lostpass.php:102 ../../mod/register.php:333 #: ../../mod/lostpass.php:102 ../../mod/register.php:333
#: ../../mod/register.php:373 ../../mod/regmod.php:94 ../../mod/item.php:480 #: ../../mod/register.php:373 ../../mod/regmod.php:94 ../../mod/item.php:480
#: ../../mod/item.php:506 ../../mod/dfrn_notify.php:189 #: ../../mod/item.php:506 ../../mod/dfrn_notify.php:189
@ -581,67 +575,67 @@ msgstr ""
msgid "Administrator" msgid "Administrator"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:620 #: ../../mod/dfrn_request.php:630
msgid "Friend/Connection Request" msgid "Friend/Connection Request"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:621 #: ../../mod/dfrn_request.php:631
msgid "" msgid ""
"Examples: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, " "Examples: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, "
"testuser@identi.ca" "testuser@identi.ca"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:622 #: ../../mod/dfrn_request.php:632
msgid "Please answer the following:" msgid "Please answer the following:"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:623 #: ../../mod/dfrn_request.php:633
msgid "Does $name know you?" msgid "Does $name know you?"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:624 ../../mod/settings.php:350 #: ../../mod/dfrn_request.php:634 ../../mod/settings.php:350
#: ../../mod/settings.php:362 ../../mod/register.php:444 #: ../../mod/settings.php:362 ../../mod/register.php:444
#: ../../mod/profiles.php:355 #: ../../mod/profiles.php:355
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:625 ../../mod/settings.php:351 #: ../../mod/dfrn_request.php:635 ../../mod/settings.php:351
#: ../../mod/settings.php:363 ../../mod/register.php:445 #: ../../mod/settings.php:363 ../../mod/register.php:445
#: ../../mod/profiles.php:356 #: ../../mod/profiles.php:356
msgid "No" msgid "No"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:626 #: ../../mod/dfrn_request.php:636
msgid "Add a personal note:" msgid "Add a personal note:"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:627 #: ../../mod/dfrn_request.php:637
msgid "" msgid ""
"Please enter your 'Identity Address' from one of the following supported " "Please enter your 'Identity Address' from one of the following supported "
"social networks:" "social networks:"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:628 #: ../../mod/dfrn_request.php:638
msgid "Friendika" msgid "Friendika"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:629 #: ../../mod/dfrn_request.php:639
msgid "StatusNet/Federated Social Web" msgid "StatusNet/Federated Social Web"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:630 #: ../../mod/dfrn_request.php:640
msgid "Private (secure) network" msgid "Private (secure) network"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:631 #: ../../mod/dfrn_request.php:641
msgid "Public (insecure) network" msgid "Public (insecure) network"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:632 #: ../../mod/dfrn_request.php:642
msgid "Your Identity Address:" msgid "Your Identity Address:"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:633 #: ../../mod/dfrn_request.php:643
msgid "Submit Request" msgid "Submit Request"
msgstr "" msgstr ""
@ -1129,15 +1123,15 @@ msgstr ""
msgid "Hide Blocked Connections" msgid "Hide Blocked Connections"
msgstr "" msgstr ""
#: ../../mod/contacts.php:326 ../../mod/directory.php:38 #: ../../mod/contacts.php:326 ../../mod/directory.php:44
msgid "Finding: " msgid "Finding: "
msgstr "" msgstr ""
#: ../../mod/contacts.php:327 ../../mod/directory.php:40 #: ../../mod/contacts.php:327 ../../mod/directory.php:46
msgid "Find" msgid "Find"
msgstr "" msgstr ""
#: ../../mod/contacts.php:387 ../../mod/viewcontacts.php:44 #: ../../mod/contacts.php:387 ../../mod/viewcontacts.php:52
msgid "Visit $username's profile" msgid "Visit $username's profile"
msgstr "" msgstr ""
@ -1304,7 +1298,7 @@ msgstr ""
msgid "Profile is <strong>not published</strong>." msgid "Profile is <strong>not published</strong>."
msgstr "" msgstr ""
#: ../../mod/settings.php:398 ../../mod/profile_photo.php:191 #: ../../mod/settings.php:398 ../../mod/profile_photo.php:196
msgid "or" msgid "or"
msgstr "" msgstr ""
@ -1509,61 +1503,32 @@ msgstr ""
msgid "Private messages to this group are at risk of public disclosure." msgid "Private messages to this group are at risk of public disclosure."
msgstr "" msgstr ""
#: ../../mod/network.php:82 ../../mod/message.php:172 #: ../../mod/network.php:126
#: ../../mod/profile.php:131
msgid "Please enter a link URL:"
msgstr ""
#: ../../mod/network.php:83 ../../mod/profile.php:132
msgid "Please enter a YouTube link:"
msgstr ""
#: ../../mod/network.php:84 ../../mod/profile.php:133
msgid "Please enter a video(.ogg) link/URL:"
msgstr ""
#: ../../mod/network.php:85 ../../mod/profile.php:134
msgid "Please enter an audio(.ogg) link/URL:"
msgstr ""
#: ../../mod/network.php:86 ../../mod/profile.php:135
msgid "Where are you right now?"
msgstr ""
#: ../../mod/network.php:87 ../../mod/profile.php:136
msgid "Enter a title for this item"
msgstr ""
#: ../../mod/network.php:142 ../../mod/profile.php:189
msgid "Set title"
msgstr ""
#: ../../mod/network.php:196
msgid "No such group" msgid "No such group"
msgstr "" msgstr ""
#: ../../mod/network.php:207 #: ../../mod/network.php:137
msgid "Group is empty" msgid "Group is empty"
msgstr "" msgstr ""
#: ../../mod/network.php:211 #: ../../mod/network.php:141
msgid "Group: " msgid "Group: "
msgstr "" msgstr ""
#: ../../mod/network.php:221 #: ../../mod/network.php:151
msgid "Contact: " msgid "Contact: "
msgstr "" msgstr ""
#: ../../mod/network.php:223 #: ../../mod/network.php:153
msgid "Private messages to this person are at risk of public disclosure." msgid "Private messages to this person are at risk of public disclosure."
msgstr "" msgstr ""
#: ../../mod/network.php:228 #: ../../mod/network.php:158
msgid "Invalid contact." msgid "Invalid contact."
msgstr "" msgstr ""
#: ../../mod/network.php:327 ../../mod/register.php:450 #: ../../mod/network.php:257 ../../mod/register.php:450
#: ../../mod/profile.php:322 ../../mod/display.php:142 #: ../../mod/profile.php:262 ../../mod/display.php:147
msgid "" msgid ""
"Shared content is covered by the <a href=\"http://creativecommons.org/" "Shared content is covered by the <a href=\"http://creativecommons.org/"
"licenses/by/3.0/\">Creative Commons Attribution 3.0</a> license." "licenses/by/3.0/\">Creative Commons Attribution 3.0</a> license."
@ -1632,7 +1597,7 @@ msgstr ""
msgid "Profile Visibility Editor" msgid "Profile Visibility Editor"
msgstr "" msgstr ""
#: ../../mod/profperm.php:94 ../../mod/profile.php:104 #: ../../mod/profperm.php:94 ../../mod/profile.php:113
#: ../../include/profile_advanced.php:7 #: ../../include/profile_advanced.php:7
msgid "Profile" msgid "Profile"
msgstr "" msgstr ""
@ -1645,11 +1610,11 @@ msgstr ""
msgid "All Contacts (with secure profile access)" msgid "All Contacts (with secure profile access)"
msgstr "" msgstr ""
#: ../../mod/viewcontacts.php:17 ../../boot.php:1997 #: ../../mod/viewcontacts.php:25 ../../boot.php:1997
msgid "View Contacts" msgid "View Contacts"
msgstr "" msgstr ""
#: ../../mod/viewcontacts.php:32 #: ../../mod/viewcontacts.php:40
msgid "No contacts." msgid "No contacts."
msgstr "" msgstr ""
@ -1897,7 +1862,7 @@ msgstr ""
msgid "%s posted an update." msgid "%s posted an update."
msgstr "" msgstr ""
#: ../../mod/item.php:608 ../../mod/display.php:20 ../../mod/display.php:137 #: ../../mod/item.php:608 ../../mod/display.php:25 ../../mod/display.php:142
msgid "Item not found." msgid "Item not found."
msgstr "" msgstr ""
@ -1906,7 +1871,7 @@ msgid "Image uploaded but image cropping failed."
msgstr "" msgstr ""
#: ../../mod/profile_photo.php:61 ../../mod/profile_photo.php:68 #: ../../mod/profile_photo.php:61 ../../mod/profile_photo.php:68
#: ../../mod/profile_photo.php:75 ../../mod/profile_photo.php:243 #: ../../mod/profile_photo.php:75 ../../mod/profile_photo.php:248
#, php-format #, php-format
msgid "Image size reduction [%s] failed." msgid "Image size reduction [%s] failed."
msgstr "" msgstr ""
@ -1920,35 +1885,39 @@ msgstr ""
msgid "Image exceeds size limit of %d" msgid "Image exceeds size limit of %d"
msgstr "" msgstr ""
#: ../../mod/profile_photo.php:188 #: ../../mod/profile_photo.php:193
msgid "Upload File:" msgid "Upload File:"
msgstr "" msgstr ""
#: ../../mod/profile_photo.php:189 #: ../../mod/profile_photo.php:194
msgid "Upload Profile Photo" msgid "Upload Profile Photo"
msgstr "" msgstr ""
#: ../../mod/profile_photo.php:190 #: ../../mod/profile_photo.php:195
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
#: ../../mod/profile_photo.php:191 #: ../../mod/profile_photo.php:196
msgid "skip this step"
msgstr ""
#: ../../mod/profile_photo.php:196
msgid "select a photo from your photo albums" msgid "select a photo from your photo albums"
msgstr "" msgstr ""
#: ../../mod/profile_photo.php:204 #: ../../mod/profile_photo.php:209
msgid "Crop Image" msgid "Crop Image"
msgstr "" msgstr ""
#: ../../mod/profile_photo.php:205 #: ../../mod/profile_photo.php:210
msgid "Please adjust the image cropping for optimum viewing." msgid "Please adjust the image cropping for optimum viewing."
msgstr "" msgstr ""
#: ../../mod/profile_photo.php:206 #: ../../mod/profile_photo.php:211
msgid "Done Editing" msgid "Done Editing"
msgstr "" msgstr ""
#: ../../mod/profile_photo.php:234 #: ../../mod/profile_photo.php:239
msgid "Image uploaded successfully." msgid "Image uploaded successfully."
msgstr "" msgstr ""
@ -2010,6 +1979,10 @@ msgstr ""
msgid "Conversation removed." msgid "Conversation removed."
msgstr "" msgstr ""
#: ../../mod/message.php:172 ../../include/conversation.php:689
msgid "Please enter a link URL:"
msgstr ""
#: ../../mod/message.php:180 #: ../../mod/message.php:180
msgid "Send Private Message" msgid "Send Private Message"
msgstr "" msgstr ""
@ -2050,24 +2023,32 @@ msgstr ""
msgid "Send Reply" msgid "Send Reply"
msgstr "" msgstr ""
#: ../../mod/profile.php:8 ../../boot.php:2198 #: ../../mod/profile.php:11 ../../boot.php:2199
msgid "No profile" msgid "No profile"
msgstr "" msgstr ""
#: ../../mod/profile.php:103 #: ../../mod/profile.php:112
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: ../../mod/profile.php:105 #: ../../mod/profile.php:114
msgid "Photos" msgid "Photos"
msgstr "" msgstr ""
#: ../../mod/openid.php:62 ../../mod/openid.php:109 ../../include/auth.php:105 #: ../../mod/openid.php:62 ../../mod/openid.php:118 ../../include/auth.php:105
#: ../../include/auth.php:130 ../../include/auth.php:183 #: ../../include/auth.php:130 ../../include/auth.php:183
msgid "Login failed." msgid "Login failed."
msgstr "" msgstr ""
#: ../../mod/openid.php:73 ../../include/auth.php:194 #: ../../mod/openid.php:78 ../../include/auth.php:199
msgid "Welcome "
msgstr ""
#: ../../mod/openid.php:79 ../../include/auth.php:200
msgid "Please upload a profile photo."
msgstr ""
#: ../../mod/openid.php:82 ../../include/auth.php:203
msgid "Welcome back " msgid "Welcome back "
msgstr "" msgstr ""
@ -2089,7 +2070,7 @@ msgstr ""
msgid "following" msgid "following"
msgstr "" msgstr ""
#: ../../mod/display.php:130 #: ../../mod/display.php:135
msgid "Item has been removed." msgid "Item has been removed."
msgstr "" msgstr ""
@ -2110,11 +2091,11 @@ msgstr ""
msgid "Applications" msgid "Applications"
msgstr "" msgstr ""
#: ../../mod/search.php:21 ../../include/nav.php:71 ../../boot.php:2043 #: ../../mod/search.php:26 ../../include/nav.php:71 ../../boot.php:2043
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: ../../mod/search.php:64 #: ../../mod/search.php:69
msgid "No results." msgid "No results."
msgstr "" msgstr ""
@ -2305,7 +2286,7 @@ msgid ""
"be visible to anybody using the internet." "be visible to anybody using the internet."
msgstr "" msgstr ""
#: ../../mod/profiles.php:421 ../../mod/directory.php:91 #: ../../mod/profiles.php:421 ../../mod/directory.php:97
msgid "Age: " msgid "Age: "
msgstr "" msgstr ""
@ -2333,19 +2314,19 @@ msgstr ""
msgid "Edit visibility" msgid "Edit visibility"
msgstr "" msgstr ""
#: ../../mod/directory.php:32 #: ../../mod/directory.php:38
msgid "Global Directory" msgid "Global Directory"
msgstr "" msgstr ""
#: ../../mod/directory.php:39 #: ../../mod/directory.php:45
msgid "Site Directory" msgid "Site Directory"
msgstr "" msgstr ""
#: ../../mod/directory.php:94 #: ../../mod/directory.php:100
msgid "Gender: " msgid "Gender: "
msgstr "" msgstr ""
#: ../../mod/directory.php:120 #: ../../mod/directory.php:126
msgid "No entries (some entries may be hidden)." msgid "No entries (some entries may be hidden)."
msgstr "" msgstr ""
@ -2714,7 +2695,7 @@ msgstr ""
msgid "Send public postings to Twitter" msgid "Send public postings to Twitter"
msgstr "" msgstr ""
#: ../../include/profile_advanced.php:23 ../../boot.php:2277 #: ../../include/profile_advanced.php:23 ../../boot.php:2285
msgid "Gender:" msgid "Gender:"
msgstr "" msgstr ""
@ -2738,7 +2719,7 @@ msgstr ""
msgid "<span class=\"heart\">&hearts;</span> Status:" msgid "<span class=\"heart\">&hearts;</span> Status:"
msgstr "" msgstr ""
#: ../../include/profile_advanced.php:103 ../../boot.php:2283 #: ../../include/profile_advanced.php:103 ../../boot.php:2291
msgid "Homepage:" msgid "Homepage:"
msgstr "" msgstr ""
@ -3277,6 +3258,30 @@ msgstr ""
msgid "%s don't like this." msgid "%s don't like this."
msgstr "" msgstr ""
#: ../../include/conversation.php:690
msgid "Please enter a YouTube link:"
msgstr ""
#: ../../include/conversation.php:691
msgid "Please enter a video(.ogg) link/URL:"
msgstr ""
#: ../../include/conversation.php:692
msgid "Please enter an audio(.ogg) link/URL:"
msgstr ""
#: ../../include/conversation.php:693
msgid "Where are you right now?"
msgstr ""
#: ../../include/conversation.php:694
msgid "Enter a title for this item"
msgstr ""
#: ../../include/conversation.php:741
msgid "Set title"
msgstr ""
#: ../../boot.php:372 #: ../../boot.php:372
msgid "Delete this item?" msgid "Delete this item?"
msgstr "" msgstr ""
@ -3332,119 +3337,119 @@ msgid_plural "%d Contacts"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../boot.php:2255 #: ../../boot.php:2258
msgid "Connect" msgid "Connect"
msgstr "" msgstr ""
#: ../../boot.php:2265 #: ../../boot.php:2273
msgid "Location:" msgid "Location:"
msgstr "" msgstr ""
#: ../../boot.php:2269 #: ../../boot.php:2277
msgid ", " msgid ", "
msgstr "" msgstr ""
#: ../../boot.php:2281 #: ../../boot.php:2289
msgid "Status:" msgid "Status:"
msgstr "" msgstr ""
#: ../../boot.php:2374 #: ../../boot.php:2382
msgid "Monday" msgid "Monday"
msgstr "" msgstr ""
#: ../../boot.php:2374 #: ../../boot.php:2382
msgid "Tuesday" msgid "Tuesday"
msgstr "" msgstr ""
#: ../../boot.php:2374 #: ../../boot.php:2382
msgid "Wednesday" msgid "Wednesday"
msgstr "" msgstr ""
#: ../../boot.php:2374 #: ../../boot.php:2382
msgid "Thursday" msgid "Thursday"
msgstr "" msgstr ""
#: ../../boot.php:2374 #: ../../boot.php:2382
msgid "Friday" msgid "Friday"
msgstr "" msgstr ""
#: ../../boot.php:2374 #: ../../boot.php:2382
msgid "Saturday" msgid "Saturday"
msgstr "" msgstr ""
#: ../../boot.php:2374 #: ../../boot.php:2382
msgid "Sunday" msgid "Sunday"
msgstr "" msgstr ""
#: ../../boot.php:2378 #: ../../boot.php:2386
msgid "January" msgid "January"
msgstr "" msgstr ""
#: ../../boot.php:2378 #: ../../boot.php:2386
msgid "February" msgid "February"
msgstr "" msgstr ""
#: ../../boot.php:2378 #: ../../boot.php:2386
msgid "March" msgid "March"
msgstr "" msgstr ""
#: ../../boot.php:2378 #: ../../boot.php:2386
msgid "April" msgid "April"
msgstr "" msgstr ""
#: ../../boot.php:2378 #: ../../boot.php:2386
msgid "May" msgid "May"
msgstr "" msgstr ""
#: ../../boot.php:2378 #: ../../boot.php:2386
msgid "June" msgid "June"
msgstr "" msgstr ""
#: ../../boot.php:2378 #: ../../boot.php:2386
msgid "July" msgid "July"
msgstr "" msgstr ""
#: ../../boot.php:2378 #: ../../boot.php:2386
msgid "August" msgid "August"
msgstr "" msgstr ""
#: ../../boot.php:2378 #: ../../boot.php:2386
msgid "September" msgid "September"
msgstr "" msgstr ""
#: ../../boot.php:2378 #: ../../boot.php:2386
msgid "October" msgid "October"
msgstr "" msgstr ""
#: ../../boot.php:2378 #: ../../boot.php:2386
msgid "November" msgid "November"
msgstr "" msgstr ""
#: ../../boot.php:2378 #: ../../boot.php:2386
msgid "December" msgid "December"
msgstr "" msgstr ""
#: ../../boot.php:2393 #: ../../boot.php:2401
msgid "g A l F d" msgid "g A l F d"
msgstr "" msgstr ""
#: ../../boot.php:2410 #: ../../boot.php:2418
msgid "Birthday Reminders" msgid "Birthday Reminders"
msgstr "" msgstr ""
#: ../../boot.php:2411 #: ../../boot.php:2419
msgid "Birthdays this week:" msgid "Birthdays this week:"
msgstr "" msgstr ""
#: ../../boot.php:2412 #: ../../boot.php:2420
msgid "(Adjusted for local time)" msgid "(Adjusted for local time)"
msgstr "" msgstr ""
#: ../../boot.php:2423 #: ../../boot.php:2431
msgid "[today]" msgid "[today]"
msgstr "" msgstr ""
#: ../../boot.php:2624 #: ../../boot.php:2632
msgid "link to source" msgid "link to source"
msgstr "" msgstr ""

View file

@ -143,6 +143,7 @@ $a->strings['Remote site reported: '] = 'Remote site reported: ';
$a->strings["Temporary failure. Please wait and try again."] = "Temporary failure. Please wait and try again."; $a->strings["Temporary failure. Please wait and try again."] = "Temporary failure. Please wait and try again.";
$a->strings["Introduction failed or was revoked."] = "Introduction failed or was revoked."; $a->strings["Introduction failed or was revoked."] = "Introduction failed or was revoked.";
$a->strings['Unable to set contact photo.'] = 'Unable to set contact photo.'; $a->strings['Unable to set contact photo.'] = 'Unable to set contact photo.';
$a->strings['%1$s is now friends with %2$s'] = '%1$s is now friends with %2$s';
$a->strings['Our site encryption key is apparently messed up.'] = 'Our site encryption key is apparently messed up.'; $a->strings['Our site encryption key is apparently messed up.'] = 'Our site encryption key is apparently messed up.';
$a->strings['Empty site URL was provided or URL could not be decrypted by us.'] = 'Empty site URL was provided or URL could not be decrypted by us.'; $a->strings['Empty site URL was provided or URL could not be decrypted by us.'] = 'Empty site URL was provided or URL could not be decrypted by us.';
$a->strings['Contact record was not found for you on our site.'] = 'Contact record was not found for you on our site.'; $a->strings['Contact record was not found for you on our site.'] = 'Contact record was not found for you on our site.';
@ -177,6 +178,7 @@ $a->strings['Please confirm your introduction/connection request to %s.'] = 'Ple
$a->strings['Confirm'] = 'Confirm'; $a->strings['Confirm'] = 'Confirm';
$a->strings['[Name Withheld]'] = '[Name Withheld]'; $a->strings['[Name Withheld]'] = '[Name Withheld]';
$a->strings["Introduction received at "] = "Introduction received at "; $a->strings["Introduction received at "] = "Introduction received at ";
$a->strings['Public access denied.'] = 'Public access denied.';
$a->strings['Friend/Connection Request'] = 'Friend/Connection Request'; $a->strings['Friend/Connection Request'] = 'Friend/Connection Request';
$a->strings['Examples: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, testuser@identi.ca'] = 'Examples: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, testuser@identi.ca'; $a->strings['Examples: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, testuser@identi.ca'] = 'Examples: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, testuser@identi.ca';
$a->strings['Please answer the following:'] = 'Please answer the following:'; $a->strings['Please answer the following:'] = 'Please answer the following:';
@ -354,13 +356,6 @@ $a->strings['Normal View'] = 'Normal View';
$a->strings['New Item View'] = 'New Item View'; $a->strings['New Item View'] = 'New Item View';
$a->strings['Warning: This group contains %s from an insecure network.'] = 'Warning: This group contains %s from an insecure network.'; $a->strings['Warning: This group contains %s from an insecure network.'] = 'Warning: This group contains %s from an insecure network.';
$a->strings['Private messages to this group are at risk of public disclosure.'] = 'Private messages to this group are at risk of public disclosure.'; $a->strings['Private messages to this group are at risk of public disclosure.'] = 'Private messages to this group are at risk of public disclosure.';
$a->strings['Please enter a YouTube link:'] = 'Please enter a YouTube link:';
$a->strings["Please enter a video\x28.ogg\x29 link/URL:"] = "Please enter a video\x28.ogg\x29 link/URL:";
$a->strings["Please enter an audio\x28.ogg\x29 link/URL:"] = "Please enter an audio\x28.ogg\x29 link/URL:";
$a->strings['Where are you right now?'] = 'Where are you right now?';
$a->strings['Enter a title for this item'] = 'Enter a title for this item';
$a->strings['Share'] = 'Share';
$a->strings['Set title'] = 'Set title';
$a->strings['No such group'] = 'No such group'; $a->strings['No such group'] = 'No such group';
$a->strings['Group is empty'] = 'Group is empty'; $a->strings['Group is empty'] = 'Group is empty';
$a->strings['Group: '] = 'Group: '; $a->strings['Group: '] = 'Group: ';
@ -393,6 +388,8 @@ $a->strings['Deny'] = 'Deny';
$a->strings['No registrations.'] = 'No registrations.'; $a->strings['No registrations.'] = 'No registrations.';
$a->strings['Post successful.'] = 'Post successful.'; $a->strings['Post successful.'] = 'Post successful.';
$a->strings['Login failed.'] = 'Login failed.'; $a->strings['Login failed.'] = 'Login failed.';
$a->strings["Welcome "] = "Welcome ";
$a->strings['Please upload a profile photo.'] = 'Please upload a profile photo.';
$a->strings["Welcome back "] = "Welcome back "; $a->strings["Welcome back "] = "Welcome back ";
$a->strings['Photo Albums'] = 'Photo Albums'; $a->strings['Photo Albums'] = 'Photo Albums';
$a->strings['Contact Photos'] = 'Contact Photos'; $a->strings['Contact Photos'] = 'Contact Photos';
@ -427,6 +424,7 @@ $a->strings['Add a Tag'] = 'Add a Tag';
$a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'] = 'Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'; $a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'] = 'Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping';
$a->strings["I like this \x28toggle\x29"] = "I like this \x28toggle\x29"; $a->strings["I like this \x28toggle\x29"] = "I like this \x28toggle\x29";
$a->strings["I don't like this \x28toggle\x29"] = "I don't like this \x28toggle\x29"; $a->strings["I don't like this \x28toggle\x29"] = "I don't like this \x28toggle\x29";
$a->strings['Share'] = 'Share';
$a->strings['This is you'] = 'This is you'; $a->strings['This is you'] = 'This is you';
$a->strings['Recent Photos'] = 'Recent Photos'; $a->strings['Recent Photos'] = 'Recent Photos';
$a->strings['Upload New Photos'] = 'Upload New Photos'; $a->strings['Upload New Photos'] = 'Upload New Photos';
@ -440,6 +438,7 @@ $a->strings['Upload File:'] = 'Upload File:';
$a->strings['Upload Profile Photo'] = 'Upload Profile Photo'; $a->strings['Upload Profile Photo'] = 'Upload Profile Photo';
$a->strings['Upload'] = 'Upload'; $a->strings['Upload'] = 'Upload';
$a->strings['or'] = 'or'; $a->strings['or'] = 'or';
$a->strings['skip this step'] = 'skip this step';
$a->strings['select a photo from your photo albums'] = 'select a photo from your photo albums'; $a->strings['select a photo from your photo albums'] = 'select a photo from your photo albums';
$a->strings['Crop Image'] = 'Crop Image'; $a->strings['Crop Image'] = 'Crop Image';
$a->strings['Please adjust the image cropping for optimum viewing.'] = 'Please adjust the image cropping for optimum viewing.'; $a->strings['Please adjust the image cropping for optimum viewing.'] = 'Please adjust the image cropping for optimum viewing.';
@ -633,6 +632,12 @@ $a->strings['and'] = 'and';
$a->strings[', and %d other people'] = ', and %d other people'; $a->strings[', and %d other people'] = ', and %d other people';
$a->strings['%s like this.'] = '%s like this.'; $a->strings['%s like this.'] = '%s like this.';
$a->strings['%s don\'t like this.'] = '%s don\'t like this.'; $a->strings['%s don\'t like this.'] = '%s don\'t like this.';
$a->strings['Please enter a YouTube link:'] = 'Please enter a YouTube link:';
$a->strings["Please enter a video\x28.ogg\x29 link/URL:"] = "Please enter a video\x28.ogg\x29 link/URL:";
$a->strings["Please enter an audio\x28.ogg\x29 link/URL:"] = "Please enter an audio\x28.ogg\x29 link/URL:";
$a->strings['Where are you right now?'] = 'Where are you right now?';
$a->strings['Enter a title for this item'] = 'Enter a title for this item';
$a->strings['Set title'] = 'Set title';
$a->strings['Miscellaneous'] = 'Miscellaneous'; $a->strings['Miscellaneous'] = 'Miscellaneous';
$a->strings['less than a second ago'] = 'less than a second ago'; $a->strings['less than a second ago'] = 'less than a second ago';
$a->strings['year'] = 'year'; $a->strings['year'] = 'year';